strings.po 411 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR ORGANIZATION
  3. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: \n"
  8. "POT-Creation-Date: 2019-06-22 16:41+0300\n"
  9. "PO-Revision-Date: 2019-06-22 16:41+0300\n"
  10. "Last-Translator: \n"
  11. "Language-Team: \n"
  12. "Language: en\n"
  13. "MIME-Version: 1.0\n"
  14. "Content-Type: text/plain; charset=UTF-8\n"
  15. "Content-Transfer-Encoding: 8bit\n"
  16. "Generated-By: pygettext.py 1.5\n"
  17. "X-Generator: Poedit 2.2.1\n"
  18. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  19. "X-Poedit-Basepath: ../../..\n"
  20. "X-Poedit-SearchPath-0: .\n"
  21. "X-Poedit-SearchPathExcluded-0: build\n"
  22. "X-Poedit-SearchPathExcluded-1: doc\n"
  23. "X-Poedit-SearchPathExcluded-2: tests\n"
  24. #: FlatCAMApp.py:925
  25. msgid "[ERROR] Could not find the Language files. The App strings are missing."
  26. msgstr ""
  27. "[ERROR] Could not find the Language files. The App strings are missing."
  28. #: FlatCAMApp.py:2018 ObjectCollection.py:80 flatcamTools/ToolImage.py:213
  29. #: flatcamTools/ToolPcbWizard.py:299 flatcamTools/ToolPcbWizard.py:322
  30. msgid "Open cancelled."
  31. msgstr "Open cancelled."
  32. #: FlatCAMApp.py:2032
  33. msgid "Open Config file failed."
  34. msgstr "Open Config file failed."
  35. #: FlatCAMApp.py:2046
  36. msgid "Open Script file failed."
  37. msgstr "Open Script file failed."
  38. #: FlatCAMApp.py:2235
  39. msgid "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit."
  40. msgstr "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit."
  41. #: FlatCAMApp.py:2245
  42. msgid ""
  43. "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo "
  44. "Geometry is not possible.\n"
  45. "Edit only one geometry at a time."
  46. msgstr ""
  47. "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo "
  48. "Geometry is not possible.\n"
  49. "Edit only one geometry at a time."
  50. #: FlatCAMApp.py:2289
  51. msgid "[WARNING_NOTCL] Editor is activated ..."
  52. msgstr "[WARNING_NOTCL] Editor is activated ..."
  53. #: FlatCAMApp.py:2307
  54. msgid "Do you want to save the edited object?"
  55. msgstr "Do you want to save the edited object?"
  56. #: FlatCAMApp.py:2308 flatcamGUI/FlatCAMGUI.py:1618
  57. msgid "Close Editor"
  58. msgstr "Close Editor"
  59. #: FlatCAMApp.py:2311 FlatCAMApp.py:3403 FlatCAMApp.py:5908
  60. #: FlatCAMTranslation.py:89 flatcamGUI/FlatCAMGUI.py:3730
  61. msgid "Yes"
  62. msgstr "Yes"
  63. #: FlatCAMApp.py:2312 FlatCAMApp.py:3404 FlatCAMApp.py:5909
  64. #: FlatCAMTranslation.py:90 flatcamGUI/FlatCAMGUI.py:3731
  65. msgid "No"
  66. msgstr "No"
  67. #: FlatCAMApp.py:2313 FlatCAMApp.py:3405 FlatCAMApp.py:3754 FlatCAMApp.py:5910
  68. msgid "Cancel"
  69. msgstr "Cancel"
  70. #: FlatCAMApp.py:2340
  71. msgid "[WARNING] Object empty after edit."
  72. msgstr "[WARNING] Object empty after edit."
  73. #: FlatCAMApp.py:2362 FlatCAMApp.py:2381 FlatCAMApp.py:2393
  74. msgid "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update."
  75. msgstr ""
  76. "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update."
  77. #: FlatCAMApp.py:2365
  78. #, python-format
  79. msgid "[selected] %s is updated, returning to App..."
  80. msgstr "[selected] %s is updated, returning to App..."
  81. #: FlatCAMApp.py:2730
  82. msgid "[ERROR] Could not load defaults file."
  83. msgstr "[ERROR] Could not load defaults file."
  84. #: FlatCAMApp.py:2742
  85. msgid "[ERROR] Failed to parse defaults file."
  86. msgstr "[ERROR] Failed to parse defaults file."
  87. #: FlatCAMApp.py:2763 FlatCAMApp.py:2767
  88. msgid "Import FlatCAM Preferences"
  89. msgstr "Import FlatCAM Preferences"
  90. #: FlatCAMApp.py:2773
  91. msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled."
  92. msgstr "[WARNING_NOTCL] FlatCAM preferences import cancelled."
  93. #: FlatCAMApp.py:2781 FlatCAMApp.py:2835 FlatCAMApp.py:3282
  94. msgid "[ERROR_NOTCL] Could not load defaults file."
  95. msgstr "[ERROR_NOTCL] Could not load defaults file."
  96. #: FlatCAMApp.py:2789 FlatCAMApp.py:3291
  97. msgid "[ERROR_NOTCL] Failed to parse defaults file."
  98. msgstr "[ERROR_NOTCL] Failed to parse defaults file."
  99. #: FlatCAMApp.py:2792
  100. #, python-format
  101. msgid "[success] Imported Defaults from %s"
  102. msgstr "[success] Imported Defaults from %s"
  103. #: FlatCAMApp.py:2807 FlatCAMApp.py:2812
  104. msgid "Export FlatCAM Preferences"
  105. msgstr "Export FlatCAM Preferences"
  106. #: FlatCAMApp.py:2819
  107. msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled."
  108. msgstr "[WARNING_NOTCL] FlatCAM preferences export cancelled."
  109. #: FlatCAMApp.py:2854 FlatCAMApp.py:3336
  110. msgid "[ERROR_NOTCL] Failed to write defaults to file."
  111. msgstr "[ERROR_NOTCL] Failed to write defaults to file."
  112. #: FlatCAMApp.py:2907
  113. msgid "[ERROR_NOTCL] Failed to open recent files file for writing."
  114. msgstr "[ERROR_NOTCL] Failed to open recent files file for writing."
  115. #: FlatCAMApp.py:2984 camlib.py:4457
  116. msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
  117. msgstr "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
  118. #: FlatCAMApp.py:2985
  119. #, python-brace-format
  120. msgid ""
  121. "Object ({kind}) failed because: {error} \n"
  122. "\n"
  123. msgstr ""
  124. "Object ({kind}) failed because: {error} \n"
  125. "\n"
  126. #: FlatCAMApp.py:3005
  127. msgid "Converting units to "
  128. msgstr "Converting units to "
  129. #: FlatCAMApp.py:3084 FlatCAMApp.py:3087 FlatCAMApp.py:3090 FlatCAMApp.py:3093
  130. #, python-brace-format
  131. msgid ""
  132. "[selected] {kind} created/selected: <span style=\"color:{color};\">{name}</"
  133. "span>"
  134. msgstr ""
  135. "[selected] {kind} created/selected: <span style=\"color:{color};\">{name}</"
  136. "span>"
  137. #: FlatCAMApp.py:3187
  138. #, python-brace-format
  139. msgid ""
  140. "<font size=8><B>FlatCAM</B></font><BR>Version {version} {beta} ({date}) - "
  141. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  142. "<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> Main Contributors:</"
  143. "B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu "
  144. "Berthomé<BR>and many others found <a href = \"https://bitbucket.org/jpcgt/"
  145. "flatcam/pull-requests/?state=MERGED\">here.</a><BR><BR>Development is done "
  146. "<a href = \"https://bitbucket.org/jpcgt/flatcam/src/Beta/\">here.</"
  147. "a><BR>DOWNLOAD area <a href = \"https://bitbucket.org/jpcgt/flatcam/"
  148. "downloads/\">here.</a><BR>"
  149. msgstr ""
  150. "<font size=8><B>FlatCAM</B></font><BR>Version {version} {beta} ({date}) - "
  151. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  152. "<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> Main Contributors:</"
  153. "B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu "
  154. "Berthomé<BR>and many others found <a href = \"https://bitbucket.org/jpcgt/"
  155. "flatcam/pull-requests/?state=MERGED\">here.</a><BR><BR>Development is done "
  156. "<a href = \"https://bitbucket.org/jpcgt/flatcam/src/Beta/\">here.</"
  157. "a><BR>DOWNLOAD area <a href = \"https://bitbucket.org/jpcgt/flatcam/"
  158. "downloads/\">here.</a><BR>"
  159. #: FlatCAMApp.py:3340
  160. msgid "[success] Defaults saved."
  161. msgstr "[success] Defaults saved."
  162. #: FlatCAMApp.py:3361
  163. msgid "[ERROR_NOTCL] Could not load factory defaults file."
  164. msgstr "[ERROR_NOTCL] Could not load factory defaults file."
  165. #: FlatCAMApp.py:3370
  166. msgid "[ERROR_NOTCL] Failed to parse factory defaults file."
  167. msgstr "[ERROR_NOTCL] Failed to parse factory defaults file."
  168. #: FlatCAMApp.py:3384
  169. msgid "[ERROR_NOTCL] Failed to write factory defaults to file."
  170. msgstr "[ERROR_NOTCL] Failed to write factory defaults to file."
  171. #: FlatCAMApp.py:3388
  172. msgid "Factory defaults saved."
  173. msgstr "Factory defaults saved."
  174. #: FlatCAMApp.py:3393 flatcamGUI/FlatCAMGUI.py:3106
  175. msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  176. msgstr "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  177. #: FlatCAMApp.py:3398
  178. msgid ""
  179. "There are files/objects modified in FlatCAM. \n"
  180. "Do you want to Save the project?"
  181. msgstr ""
  182. "There are files/objects modified in FlatCAM. \n"
  183. "Do you want to Save the project?"
  184. #: FlatCAMApp.py:3401 FlatCAMApp.py:5906
  185. msgid "Save changes"
  186. msgstr "Save changes"
  187. #: FlatCAMApp.py:3468
  188. msgid ""
  189. "[ERROR] Failed join. The Geometry objects are of different types.\n"
  190. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  191. "is to convert from one to another and retry joining \n"
  192. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  193. "be lost and the result may not be what was expected. \n"
  194. "Check the generated GCODE."
  195. msgstr ""
  196. "[ERROR] Failed join. The Geometry objects are of different types.\n"
  197. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  198. "is to convert from one to another and retry joining \n"
  199. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  200. "be lost and the result may not be what was expected. \n"
  201. "Check the generated GCODE."
  202. #: FlatCAMApp.py:3509
  203. msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects."
  204. msgstr "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects."
  205. #: FlatCAMApp.py:3531
  206. msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects."
  207. msgstr "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects."
  208. #: FlatCAMApp.py:3546 FlatCAMApp.py:3571
  209. msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again."
  210. msgstr "[ERROR_NOTCL] Failed. Select a Geometry Object and try again."
  211. #: FlatCAMApp.py:3550 FlatCAMApp.py:3575
  212. #, python-format
  213. msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
  214. msgstr "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
  215. #: FlatCAMApp.py:3563
  216. msgid "[success] A Geometry object was converted to MultiGeo type."
  217. msgstr "[success] A Geometry object was converted to MultiGeo type."
  218. #: FlatCAMApp.py:3589
  219. msgid "[success] A Geometry object was converted to SingleGeo type."
  220. msgstr "[success] A Geometry object was converted to SingleGeo type."
  221. #: FlatCAMApp.py:3753 FlatCAMApp.py:4593 FlatCAMApp.py:6181 FlatCAMApp.py:6192
  222. #: FlatCAMApp.py:6432 FlatCAMApp.py:6442
  223. msgid "Ok"
  224. msgstr "Ok"
  225. #: FlatCAMApp.py:3799
  226. #, python-format
  227. msgid "[success] Converted units to %s"
  228. msgstr "[success] Converted units to %s"
  229. #: FlatCAMApp.py:3810
  230. msgid "[WARNING_NOTCL] Units conversion cancelled."
  231. msgstr "[WARNING_NOTCL] Units conversion cancelled."
  232. #: FlatCAMApp.py:4462
  233. msgid "Open file"
  234. msgstr "Open file"
  235. #: FlatCAMApp.py:4493 FlatCAMApp.py:4498
  236. msgid "Export G-Code ..."
  237. msgstr "Export G-Code ..."
  238. #: FlatCAMApp.py:4501
  239. msgid "[WARNING_NOTCL] Export Code cancelled."
  240. msgstr "[WARNING_NOTCL] Export Code cancelled."
  241. #: FlatCAMApp.py:4511
  242. msgid "[WARNING] No such file or directory"
  243. msgstr "[WARNING] No such file or directory"
  244. #: FlatCAMApp.py:4518
  245. #, python-format
  246. msgid "Saved to: %s"
  247. msgstr "Saved to: %s"
  248. #: FlatCAMApp.py:4581 FlatCAMApp.py:4614 FlatCAMApp.py:4625 FlatCAMApp.py:4636
  249. #: flatcamTools/ToolNonCopperClear.py:489 flatcamTools/ToolSolderPaste.py:765
  250. msgid ""
  251. "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
  252. "format."
  253. msgstr ""
  254. "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
  255. "format."
  256. #: FlatCAMApp.py:4586 FlatCAMApp.py:4619 FlatCAMApp.py:4630 FlatCAMApp.py:4641
  257. #: flatcamGUI/FlatCAMGUI.py:3001
  258. msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
  259. msgstr "[WARNING_NOTCL] Adding Tool cancelled ..."
  260. #: FlatCAMApp.py:4589
  261. msgid ""
  262. "Adding Tool works only when Advanced is checked.\n"
  263. "Go to Preferences -> General - Show Advanced Options."
  264. msgstr ""
  265. "Adding Tool works only when Advanced is checked.\n"
  266. "Go to Preferences -> General - Show Advanced Options."
  267. #: FlatCAMApp.py:4702
  268. msgid "Object(s) deleted ..."
  269. msgstr "Object(s) deleted ..."
  270. #: FlatCAMApp.py:4706
  271. msgid "Failed. No object(s) selected..."
  272. msgstr "Failed. No object(s) selected..."
  273. #: FlatCAMApp.py:4708
  274. msgid "Save the work in Editor and try again ..."
  275. msgstr "Save the work in Editor and try again ..."
  276. #: FlatCAMApp.py:4721
  277. msgid "Click to set the origin ..."
  278. msgstr "Click to set the origin ..."
  279. #: FlatCAMApp.py:4733
  280. msgid "Jump to ..."
  281. msgstr "Jump to ..."
  282. #: FlatCAMApp.py:4734
  283. msgid "Enter the coordinates in format X,Y:"
  284. msgstr "Enter the coordinates in format X,Y:"
  285. #: FlatCAMApp.py:4741
  286. msgid "Wrong coordinates. Enter coordinates in format: X,Y"
  287. msgstr "Wrong coordinates. Enter coordinates in format: X,Y"
  288. #: FlatCAMApp.py:4759 flatcamEditors/FlatCAMExcEditor.py:2320
  289. #: flatcamEditors/FlatCAMExcEditor.py:2327
  290. #: flatcamEditors/FlatCAMGeoEditor.py:3648
  291. #: flatcamEditors/FlatCAMGeoEditor.py:3662
  292. #: flatcamEditors/FlatCAMGrbEditor.py:1040
  293. #: flatcamEditors/FlatCAMGrbEditor.py:1141
  294. #: flatcamEditors/FlatCAMGrbEditor.py:1409
  295. #: flatcamEditors/FlatCAMGrbEditor.py:1666
  296. #: flatcamEditors/FlatCAMGrbEditor.py:3960
  297. #: flatcamEditors/FlatCAMGrbEditor.py:3974 flatcamGUI/FlatCAMGUI.py:2414
  298. #: flatcamGUI/FlatCAMGUI.py:2426
  299. msgid "[success] Done."
  300. msgstr "[success] Done."
  301. #: FlatCAMApp.py:4891 FlatCAMApp.py:4958
  302. msgid "[WARNING_NOTCL] No object is selected. Select an object and try again."
  303. msgstr "[WARNING_NOTCL] No object is selected. Select an object and try again."
  304. #: FlatCAMApp.py:4999
  305. msgid "[success] Origin set ..."
  306. msgstr "[success] Origin set ..."
  307. #: FlatCAMApp.py:5019
  308. msgid "Preferences"
  309. msgstr "Preferences"
  310. #: FlatCAMApp.py:5039
  311. msgid "[WARNING_NOTCL] No object selected to Flip on Y axis."
  312. msgstr "[WARNING_NOTCL] No object selected to Flip on Y axis."
  313. #: FlatCAMApp.py:5064
  314. msgid "[success] Flip on Y axis done."
  315. msgstr "[success] Flip on Y axis done."
  316. #: FlatCAMApp.py:5066 FlatCAMApp.py:5106
  317. #: flatcamEditors/FlatCAMGeoEditor.py:1355
  318. #: flatcamEditors/FlatCAMGrbEditor.py:5343 flatcamTools/ToolTransform.py:748
  319. #, python-format
  320. msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
  321. msgstr "[ERROR_NOTCL] Due of %s, Flip action was not executed."
  322. #: FlatCAMApp.py:5079
  323. msgid "[WARNING_NOTCL] No object selected to Flip on X axis."
  324. msgstr "[WARNING_NOTCL] No object selected to Flip on X axis."
  325. #: FlatCAMApp.py:5104
  326. msgid "[success] Flip on X axis done."
  327. msgstr "[success] Flip on X axis done."
  328. #: FlatCAMApp.py:5119
  329. msgid "[WARNING_NOTCL] No object selected to Rotate."
  330. msgstr "[WARNING_NOTCL] No object selected to Rotate."
  331. #: FlatCAMApp.py:5122 FlatCAMApp.py:5167 FlatCAMApp.py:5198
  332. msgid "Transform"
  333. msgstr "Transform"
  334. #: FlatCAMApp.py:5122 FlatCAMApp.py:5167 FlatCAMApp.py:5198
  335. msgid "Enter the Angle value:"
  336. msgstr "Enter the Angle value:"
  337. #: FlatCAMApp.py:5152
  338. msgid "[success] Rotation done."
  339. msgstr "[success] Rotation done."
  340. #: FlatCAMApp.py:5154 flatcamEditors/FlatCAMGeoEditor.py:1298
  341. #: flatcamEditors/FlatCAMGrbEditor.py:5272 flatcamTools/ToolTransform.py:677
  342. #, python-format
  343. msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
  344. msgstr "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
  345. #: FlatCAMApp.py:5165
  346. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
  347. msgstr "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
  348. #: FlatCAMApp.py:5186
  349. msgid "[success] Skew on X axis done."
  350. msgstr "[success] Skew on X axis done."
  351. #: FlatCAMApp.py:5196
  352. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
  353. msgstr "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
  354. #: FlatCAMApp.py:5217
  355. msgid "[success] Skew on Y axis done."
  356. msgstr "[success] Skew on Y axis done."
  357. #: FlatCAMApp.py:5287
  358. msgid "Grid On/Off"
  359. msgstr "Grid On/Off"
  360. #: FlatCAMApp.py:5300 flatcamEditors/FlatCAMGeoEditor.py:937
  361. #: flatcamEditors/FlatCAMGrbEditor.py:2381
  362. #: flatcamEditors/FlatCAMGrbEditor.py:4861 flatcamGUI/ObjectUI.py:991
  363. #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208
  364. #: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131
  365. #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:479
  366. #: flatcamTools/ToolTransform.py:337
  367. msgid "Add"
  368. msgstr "Add"
  369. #: FlatCAMApp.py:5301 FlatCAMObj.py:3296
  370. #: flatcamEditors/FlatCAMGrbEditor.py:2386 flatcamGUI/FlatCAMGUI.py:527
  371. #: flatcamGUI/FlatCAMGUI.py:724 flatcamGUI/FlatCAMGUI.py:1616
  372. #: flatcamGUI/FlatCAMGUI.py:1953 flatcamGUI/ObjectUI.py:1007
  373. #: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143
  374. #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:481
  375. msgid "Delete"
  376. msgstr "Delete"
  377. #: FlatCAMApp.py:5314
  378. msgid "New Grid ..."
  379. msgstr "New Grid ..."
  380. #: FlatCAMApp.py:5315
  381. msgid "Enter a Grid Value:"
  382. msgstr "Enter a Grid Value:"
  383. #: FlatCAMApp.py:5323 FlatCAMApp.py:5350
  384. msgid ""
  385. "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
  386. "format."
  387. msgstr ""
  388. "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
  389. "format."
  390. #: FlatCAMApp.py:5329
  391. msgid "[success] New Grid added ..."
  392. msgstr "[success] New Grid added ..."
  393. #: FlatCAMApp.py:5332
  394. msgid "[WARNING_NOTCL] Grid already exists ..."
  395. msgstr "[WARNING_NOTCL] Grid already exists ..."
  396. #: FlatCAMApp.py:5335
  397. msgid "[WARNING_NOTCL] Adding New Grid cancelled ..."
  398. msgstr "[WARNING_NOTCL] Adding New Grid cancelled ..."
  399. #: FlatCAMApp.py:5357
  400. msgid "[ERROR_NOTCL] Grid Value does not exist ..."
  401. msgstr "[ERROR_NOTCL] Grid Value does not exist ..."
  402. #: FlatCAMApp.py:5360
  403. msgid "[success] Grid Value deleted ..."
  404. msgstr "[success] Grid Value deleted ..."
  405. #: FlatCAMApp.py:5363
  406. msgid "[WARNING_NOTCL] Delete Grid value cancelled ..."
  407. msgstr "[WARNING_NOTCL] Delete Grid value cancelled ..."
  408. #: FlatCAMApp.py:5402
  409. msgid "[WARNING_NOTCL] No object selected to copy it's name"
  410. msgstr "[WARNING_NOTCL] No object selected to copy it's name"
  411. #: FlatCAMApp.py:5406
  412. msgid "Name copied on clipboard ..."
  413. msgstr "Name copied on clipboard ..."
  414. #: FlatCAMApp.py:5448 flatcamEditors/FlatCAMGrbEditor.py:3901
  415. msgid "[success] Coordinates copied to clipboard."
  416. msgstr "[success] Coordinates copied to clipboard."
  417. #: FlatCAMApp.py:5704 FlatCAMApp.py:5707 FlatCAMApp.py:5710 FlatCAMApp.py:5713
  418. #: FlatCAMApp.py:5728 FlatCAMApp.py:5731 FlatCAMApp.py:5734 FlatCAMApp.py:5737
  419. #: FlatCAMApp.py:5777 FlatCAMApp.py:5780 FlatCAMApp.py:5783 FlatCAMApp.py:5786
  420. #: ObjectCollection.py:719 ObjectCollection.py:722 ObjectCollection.py:725
  421. #: ObjectCollection.py:728
  422. #, python-brace-format
  423. msgid "[selected]<span style=\"color:{color};\">{name}</span> selected"
  424. msgstr "[selected]<span style=\"color:{color};\">{name}</span> selected"
  425. #: FlatCAMApp.py:5903
  426. msgid ""
  427. "There are files/objects opened in FlatCAM.\n"
  428. "Creating a New project will delete them.\n"
  429. "Do you want to Save the project?"
  430. msgstr ""
  431. "There are files/objects opened in FlatCAM.\n"
  432. "Creating a New project will delete them.\n"
  433. "Do you want to Save the project?"
  434. #: FlatCAMApp.py:5924
  435. msgid "[success] New Project created..."
  436. msgstr "[success] New Project created..."
  437. #: FlatCAMApp.py:6040 FlatCAMApp.py:6043 flatcamGUI/FlatCAMGUI.py:608
  438. #: flatcamGUI/FlatCAMGUI.py:1832
  439. msgid "Open Gerber"
  440. msgstr "Open Gerber"
  441. #: FlatCAMApp.py:6048
  442. msgid "[WARNING_NOTCL] Open Gerber cancelled."
  443. msgstr "[WARNING_NOTCL] Open Gerber cancelled."
  444. #: FlatCAMApp.py:6069 FlatCAMApp.py:6072 flatcamGUI/FlatCAMGUI.py:609
  445. #: flatcamGUI/FlatCAMGUI.py:1833
  446. msgid "Open Excellon"
  447. msgstr "Open Excellon"
  448. #: FlatCAMApp.py:6077
  449. msgid "[WARNING_NOTCL] Open Excellon cancelled."
  450. msgstr "[WARNING_NOTCL] Open Excellon cancelled."
  451. #: FlatCAMApp.py:6099 FlatCAMApp.py:6102
  452. msgid "Open G-Code"
  453. msgstr "Open G-Code"
  454. #: FlatCAMApp.py:6107
  455. msgid "[WARNING_NOTCL] Open G-Code cancelled."
  456. msgstr "[WARNING_NOTCL] Open G-Code cancelled."
  457. #: FlatCAMApp.py:6125 FlatCAMApp.py:6128
  458. msgid "Open Project"
  459. msgstr "Open Project"
  460. #: FlatCAMApp.py:6136
  461. msgid "[WARNING_NOTCL] Open Project cancelled."
  462. msgstr "[WARNING_NOTCL] Open Project cancelled."
  463. #: FlatCAMApp.py:6155 FlatCAMApp.py:6158
  464. msgid "Open Configuration File"
  465. msgstr "Open Configuration File"
  466. #: FlatCAMApp.py:6162
  467. msgid "[WARNING_NOTCL] Open Config cancelled."
  468. msgstr "[WARNING_NOTCL] Open Config cancelled."
  469. #: FlatCAMApp.py:6177 FlatCAMApp.py:6428 FlatCAMApp.py:8581 FlatCAMApp.py:8601
  470. #: FlatCAMApp.py:8622 FlatCAMApp.py:8644
  471. msgid "[WARNING_NOTCL] No object selected."
  472. msgstr "[WARNING_NOTCL] No object selected."
  473. #: FlatCAMApp.py:6178 FlatCAMApp.py:6429
  474. msgid "Please Select a Geometry object to export"
  475. msgstr "Please Select a Geometry object to export"
  476. #: FlatCAMApp.py:6189
  477. msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  478. msgstr "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  479. #: FlatCAMApp.py:6202 FlatCAMApp.py:6206
  480. msgid "Export SVG"
  481. msgstr "Export SVG"
  482. #: FlatCAMApp.py:6211
  483. msgid "[WARNING_NOTCL] Export SVG cancelled."
  484. msgstr "[WARNING_NOTCL] Export SVG cancelled."
  485. #: FlatCAMApp.py:6230
  486. msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  487. msgstr "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  488. #: FlatCAMApp.py:6236 FlatCAMApp.py:6240
  489. msgid "Export PNG Image"
  490. msgstr "Export PNG Image"
  491. #: FlatCAMApp.py:6245
  492. msgid "Export PNG cancelled."
  493. msgstr "Export PNG cancelled."
  494. #: FlatCAMApp.py:6264
  495. msgid ""
  496. "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  497. msgstr ""
  498. "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  499. #: FlatCAMApp.py:6269 FlatCAMApp.py:6392
  500. msgid ""
  501. "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  502. msgstr ""
  503. "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  504. #: FlatCAMApp.py:6281
  505. msgid "Save Gerber source file"
  506. msgstr "Save Gerber source file"
  507. #: FlatCAMApp.py:6286
  508. msgid "[WARNING_NOTCL] Save Gerber source file cancelled."
  509. msgstr "[WARNING_NOTCL] Save Gerber source file cancelled."
  510. #: FlatCAMApp.py:6305
  511. msgid ""
  512. "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
  513. "export."
  514. msgstr ""
  515. "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
  516. "export."
  517. #: FlatCAMApp.py:6310 FlatCAMApp.py:6351
  518. msgid ""
  519. "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  520. msgstr ""
  521. "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  522. #: FlatCAMApp.py:6318 FlatCAMApp.py:6322
  523. msgid "Save Excellon source file"
  524. msgstr "Save Excellon source file"
  525. #: FlatCAMApp.py:6327
  526. msgid "[WARNING_NOTCL] Saving Excellon source file cancelled."
  527. msgstr "[WARNING_NOTCL] Saving Excellon source file cancelled."
  528. #: FlatCAMApp.py:6346
  529. msgid ""
  530. "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
  531. "export."
  532. msgstr ""
  533. "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
  534. "export."
  535. #: FlatCAMApp.py:6359 FlatCAMApp.py:6363
  536. msgid "Export Excellon"
  537. msgstr "Export Excellon"
  538. #: FlatCAMApp.py:6368
  539. msgid "[WARNING_NOTCL] Export Excellon cancelled."
  540. msgstr "[WARNING_NOTCL] Export Excellon cancelled."
  541. #: FlatCAMApp.py:6387
  542. msgid ""
  543. "[WARNING_NOTCL] No object selected. Please Select an Gerber object to export."
  544. msgstr ""
  545. "[WARNING_NOTCL] No object selected. Please Select an Gerber object to export."
  546. #: FlatCAMApp.py:6400 FlatCAMApp.py:6404
  547. msgid "Export Gerber"
  548. msgstr "Export Gerber"
  549. #: FlatCAMApp.py:6409
  550. msgid "[WARNING_NOTCL] Export Gerber cancelled."
  551. msgstr "[WARNING_NOTCL] Export Gerber cancelled."
  552. #: FlatCAMApp.py:6439
  553. msgid "[ERROR_NOTCL] Only Geometry objects can be used."
  554. msgstr "[ERROR_NOTCL] Only Geometry objects can be used."
  555. #: FlatCAMApp.py:6453 FlatCAMApp.py:6457
  556. msgid "Export DXF"
  557. msgstr "Export DXF"
  558. #: FlatCAMApp.py:6463
  559. msgid "[WARNING_NOTCL] Export DXF cancelled."
  560. msgstr "[WARNING_NOTCL] Export DXF cancelled."
  561. #: FlatCAMApp.py:6483 FlatCAMApp.py:6486
  562. msgid "Import SVG"
  563. msgstr "Import SVG"
  564. #: FlatCAMApp.py:6495
  565. msgid "[WARNING_NOTCL] Open SVG cancelled."
  566. msgstr "[WARNING_NOTCL] Open SVG cancelled."
  567. #: FlatCAMApp.py:6514 FlatCAMApp.py:6518
  568. msgid "Import DXF"
  569. msgstr "Import DXF"
  570. #: FlatCAMApp.py:6527
  571. msgid "[WARNING_NOTCL] Open DXF cancelled."
  572. msgstr "[WARNING_NOTCL] Open DXF cancelled."
  573. #: FlatCAMApp.py:6545
  574. #, python-format
  575. msgid "%s"
  576. msgstr "%s"
  577. #: FlatCAMApp.py:6565
  578. msgid ""
  579. "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  580. msgstr ""
  581. "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  582. #: FlatCAMApp.py:6572
  583. msgid ""
  584. "[WARNING_NOTCL] There is no selected object for which to see it's source "
  585. "file code."
  586. msgstr ""
  587. "[WARNING_NOTCL] There is no selected object for which to see it's source "
  588. "file code."
  589. #: FlatCAMApp.py:6580
  590. msgid "Source Editor"
  591. msgstr "Source Editor"
  592. #: FlatCAMApp.py:6590
  593. #, python-format
  594. msgid "[ERROR]App.on_view_source() -->%s"
  595. msgstr "[ERROR]App.on_view_source() -->%s"
  596. #: FlatCAMApp.py:6602 FlatCAMApp.py:7744 FlatCAMObj.py:5581
  597. #: flatcamTools/ToolSolderPaste.py:1278
  598. msgid "Code Editor"
  599. msgstr "Code Editor"
  600. #: FlatCAMApp.py:6614
  601. msgid "Script Editor"
  602. msgstr "Script Editor"
  603. #: FlatCAMApp.py:6617
  604. msgid ""
  605. "#\n"
  606. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  607. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  608. "html\n"
  609. "#\n"
  610. "\n"
  611. "# FlatCAM commands list:\n"
  612. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  613. "AlignDrillGrid, ClearShell, Cncjob,\n"
  614. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  615. "GeoUnion, GetNames, GetSys,\n"
  616. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  617. "ListSys, MillHoles, Mirror, New,\n"
  618. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  619. "Options, Paint, Panelize,\n"
  620. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  621. "SubtractRectangle, Version,\n"
  622. "# WriteGCode\n"
  623. "#\n"
  624. "\n"
  625. msgstr ""
  626. "#\n"
  627. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  628. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  629. "html\n"
  630. "#\n"
  631. "\n"
  632. "# FlatCAM commands list:\n"
  633. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  634. "AlignDrillGrid, ClearShell, Cncjob,\n"
  635. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  636. "GeoUnion, GetNames, GetSys,\n"
  637. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  638. "ListSys, MillHoles, Mirror, New,\n"
  639. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  640. "Options, Paint, Panelize,\n"
  641. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  642. "SubtractRectangle, Version,\n"
  643. "# WriteGCode\n"
  644. "#\n"
  645. "\n"
  646. #: FlatCAMApp.py:6640 FlatCAMApp.py:6643
  647. msgid "Open TCL script"
  648. msgstr "Open TCL script"
  649. #: FlatCAMApp.py:6651
  650. msgid "[WARNING_NOTCL] Open TCL script cancelled."
  651. msgstr "[WARNING_NOTCL] Open TCL script cancelled."
  652. #: FlatCAMApp.py:6663
  653. #, python-format
  654. msgid "[ERROR]App.on_fileopenscript() -->%s"
  655. msgstr "[ERROR]App.on_fileopenscript() -->%s"
  656. #: FlatCAMApp.py:6689 FlatCAMApp.py:6692
  657. msgid "Run TCL script"
  658. msgstr "Run TCL script"
  659. #: FlatCAMApp.py:6700
  660. msgid "[WARNING_NOTCL] Run TCL script cancelled."
  661. msgstr "[WARNING_NOTCL] Run TCL script cancelled."
  662. #: FlatCAMApp.py:6750 FlatCAMApp.py:6754
  663. msgid "Save Project As ..."
  664. msgstr "Save Project As ..."
  665. #: FlatCAMApp.py:6751
  666. #, python-brace-format
  667. msgid "{l_save}/Project_{date}"
  668. msgstr "{l_save}/Project_{date}"
  669. #: FlatCAMApp.py:6759
  670. msgid "[WARNING_NOTCL] Save Project cancelled."
  671. msgstr "[WARNING_NOTCL] Save Project cancelled."
  672. #: FlatCAMApp.py:6803
  673. msgid "Exporting SVG"
  674. msgstr "Exporting SVG"
  675. #: FlatCAMApp.py:6837 FlatCAMApp.py:6943 FlatCAMApp.py:7058
  676. #, python-format
  677. msgid "[success] SVG file exported to %s"
  678. msgstr "[success] SVG file exported to %s"
  679. #: FlatCAMApp.py:6868 FlatCAMApp.py:6989
  680. #, python-format
  681. msgid "[WARNING_NOTCL] No object Box. Using instead %s"
  682. msgstr "[WARNING_NOTCL] No object Box. Using instead %s"
  683. #: FlatCAMApp.py:6946 FlatCAMApp.py:7061
  684. msgid "Generating Film ... Please wait."
  685. msgstr "Generating Film ... Please wait."
  686. #: FlatCAMApp.py:7209
  687. #, python-format
  688. msgid "[success] Excellon file exported to %s"
  689. msgstr "[success] Excellon file exported to %s"
  690. #: FlatCAMApp.py:7216
  691. msgid "Exporting Excellon"
  692. msgstr "Exporting Excellon"
  693. #: FlatCAMApp.py:7221 FlatCAMApp.py:7228
  694. msgid "[ERROR_NOTCL] Could not export Excellon file."
  695. msgstr "[ERROR_NOTCL] Could not export Excellon file."
  696. #: FlatCAMApp.py:7326
  697. #, python-format
  698. msgid "[success] Gerber file exported to %s"
  699. msgstr "[success] Gerber file exported to %s"
  700. #: FlatCAMApp.py:7333
  701. msgid "Exporting Gerber"
  702. msgstr "Exporting Gerber"
  703. #: FlatCAMApp.py:7338 FlatCAMApp.py:7345
  704. msgid "[ERROR_NOTCL] Could not export Gerber file."
  705. msgstr "[ERROR_NOTCL] Could not export Gerber file."
  706. #: FlatCAMApp.py:7385
  707. #, python-format
  708. msgid "[success] DXF file exported to %s"
  709. msgstr "[success] DXF file exported to %s"
  710. #: FlatCAMApp.py:7391
  711. msgid "Exporting DXF"
  712. msgstr "Exporting DXF"
  713. #: FlatCAMApp.py:7396 FlatCAMApp.py:7403
  714. msgid "[[WARNING_NOTCL]] Could not export DXF file."
  715. msgstr "[[WARNING_NOTCL]] Could not export DXF file."
  716. #: FlatCAMApp.py:7423 FlatCAMApp.py:7465 FlatCAMApp.py:7509
  717. msgid ""
  718. "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
  719. "Gerber are supported"
  720. msgstr ""
  721. "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
  722. "Gerber are supported"
  723. #: FlatCAMApp.py:7433
  724. msgid "Importing SVG"
  725. msgstr "Importing SVG"
  726. #: FlatCAMApp.py:7444 FlatCAMApp.py:7486 FlatCAMApp.py:7529 FlatCAMApp.py:7606
  727. #: FlatCAMApp.py:7667 FlatCAMApp.py:7730 flatcamTools/ToolPDF.py:212
  728. #, python-format
  729. msgid "[success] Opened: %s"
  730. msgstr "[success] Opened: %s"
  731. #: FlatCAMApp.py:7475
  732. msgid "Importing DXF"
  733. msgstr "Importing DXF"
  734. #: FlatCAMApp.py:7517
  735. msgid "Importing Image"
  736. msgstr "Importing Image"
  737. #: FlatCAMApp.py:7558 FlatCAMApp.py:7560
  738. #, python-format
  739. msgid "[ERROR_NOTCL] Failed to open file: %s"
  740. msgstr "[ERROR_NOTCL] Failed to open file: %s"
  741. #: FlatCAMApp.py:7563
  742. #, python-brace-format
  743. msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  744. msgstr "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  745. #: FlatCAMApp.py:7570 FlatCAMObj.py:4259
  746. #: flatcamEditors/FlatCAMExcEditor.py:2077
  747. msgid "[ERROR] An internal error has ocurred. See shell.\n"
  748. msgstr "[ERROR] An internal error has ocurred. See shell.\n"
  749. #: FlatCAMApp.py:7579
  750. msgid ""
  751. "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  752. msgstr ""
  753. "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  754. #: FlatCAMApp.py:7587
  755. msgid "Opening Gerber"
  756. msgstr "Opening Gerber"
  757. #: FlatCAMApp.py:7597
  758. msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  759. msgstr "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  760. #: FlatCAMApp.py:7630 flatcamTools/ToolPcbWizard.py:421
  761. msgid "[ERROR_NOTCL] This is not Excellon file."
  762. msgstr "[ERROR_NOTCL] This is not Excellon file."
  763. #: FlatCAMApp.py:7633
  764. #, python-format
  765. msgid "[ERROR_NOTCL] Cannot open file: %s"
  766. msgstr "[ERROR_NOTCL] Cannot open file: %s"
  767. #: FlatCAMApp.py:7638 flatcamTools/ToolPcbWizard.py:429
  768. msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  769. msgstr "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  770. #: FlatCAMApp.py:7651 flatcamTools/ToolPDF.py:262
  771. #: flatcamTools/ToolPcbWizard.py:442
  772. #, python-format
  773. msgid "[ERROR_NOTCL] No geometry found in file: %s"
  774. msgstr "[ERROR_NOTCL] No geometry found in file: %s"
  775. #: FlatCAMApp.py:7654
  776. msgid "Opening Excellon."
  777. msgstr "Opening Excellon."
  778. #: FlatCAMApp.py:7660
  779. msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  780. msgstr ""
  781. "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  782. #: FlatCAMApp.py:7697
  783. #, python-format
  784. msgid "[ERROR_NOTCL] Failed to open %s"
  785. msgstr "[ERROR_NOTCL] Failed to open %s"
  786. #: FlatCAMApp.py:7707
  787. msgid "[ERROR_NOTCL] This is not GCODE"
  788. msgstr "[ERROR_NOTCL] This is not GCODE"
  789. #: FlatCAMApp.py:7713
  790. msgid "Opening G-Code."
  791. msgstr "Opening G-Code."
  792. #: FlatCAMApp.py:7721
  793. msgid ""
  794. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  795. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  796. "processing"
  797. msgstr ""
  798. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  799. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  800. "processing"
  801. #: FlatCAMApp.py:7761
  802. #, python-format
  803. msgid "[ERROR_NOTCL] Failed to open config file: %s"
  804. msgstr "[ERROR_NOTCL] Failed to open config file: %s"
  805. #: FlatCAMApp.py:7787 FlatCAMApp.py:7804
  806. #, python-format
  807. msgid "[ERROR_NOTCL] Failed to open project file: %s"
  808. msgstr "[ERROR_NOTCL] Failed to open project file: %s"
  809. #: FlatCAMApp.py:7827
  810. #, python-format
  811. msgid "[success] Project loaded from: %s"
  812. msgstr "[success] Project loaded from: %s"
  813. #: FlatCAMApp.py:7932
  814. msgid "Available commands:\n"
  815. msgstr "Available commands:\n"
  816. #: FlatCAMApp.py:7934
  817. msgid ""
  818. "\n"
  819. "\n"
  820. "Type help <command_name> for usage.\n"
  821. " Example: help open_gerber"
  822. msgstr ""
  823. "\n"
  824. "\n"
  825. "Type help <command_name> for usage.\n"
  826. " Example: help open_gerber"
  827. #: FlatCAMApp.py:8084
  828. msgid "Shows list of commands."
  829. msgstr "Shows list of commands."
  830. #: FlatCAMApp.py:8141
  831. msgid "[ERROR_NOTCL] Failed to load recent item list."
  832. msgstr "[ERROR_NOTCL] Failed to load recent item list."
  833. #: FlatCAMApp.py:8148
  834. msgid "[ERROR_NOTCL] Failed to parse recent item list."
  835. msgstr "[ERROR_NOTCL] Failed to parse recent item list."
  836. #: FlatCAMApp.py:8192
  837. msgid "Clear Recent files"
  838. msgstr "Clear Recent files"
  839. #: FlatCAMApp.py:8209 flatcamGUI/FlatCAMGUI.py:968
  840. msgid "<b>Shortcut Key List</b>"
  841. msgstr "<b>Shortcut Key List</b>"
  842. #: FlatCAMApp.py:8216
  843. msgid ""
  844. "\n"
  845. "<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from "
  846. "Project Tab</strong></span></p>\n"
  847. "\n"
  848. "<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
  849. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  850. "\n"
  851. "<ol>\n"
  852. "\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, "
  853. "DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, "
  854. "toolbars, key shortcuts or even dragging and dropping the files on the GUI."
  855. "<br />\n"
  856. "\t<br />\n"
  857. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  858. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  859. "through the menu/toolbar links offered within the app.</span><br />\n"
  860. "\t&nbsp;</li>\n"
  861. "\t<li><span style=\"font-size:10px\">Once an object is available in the "
  862. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  863. "strong>(more simpler is to double click the object name in the Project Tab), "
  864. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  865. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  866. ">\n"
  867. "\t<br />\n"
  868. "\tIf the selection of the object is done on the canvas by single click "
  869. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  870. "properties will be displayed into the Selected Tab. Alternatively, double "
  871. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  872. "strong> and populate it even if it was out of focus.<br />\n"
  873. "\t<br />\n"
  874. "\tYou can change the parameters in this screen and the flow direction is "
  875. "like this:<br />\n"
  876. "\t<br />\n"
  877. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  878. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  879. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  880. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  881. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  882. "span></li>\n"
  883. "</ol>\n"
  884. "\n"
  885. "<p><span style=\"font-size:10px\">A list of key shortcuts is available "
  886. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  887. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  888. "\n"
  889. " "
  890. msgstr ""
  891. "\n"
  892. "<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from "
  893. "Project Tab</strong></span></p>\n"
  894. "\n"
  895. "<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
  896. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  897. "\n"
  898. "<ol>\n"
  899. "\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, "
  900. "DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, "
  901. "toolbars, key shortcuts or even dragging and dropping the files on the GUI."
  902. "<br />\n"
  903. "\t<br />\n"
  904. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  905. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  906. "through the menu/toolbar links offered within the app.</span><br />\n"
  907. "\t&nbsp;</li>\n"
  908. "\t<li><span style=\"font-size:10px\">Once an object is available in the "
  909. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  910. "strong>(more simpler is to double click the object name in the Project Tab), "
  911. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  912. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  913. ">\n"
  914. "\t<br />\n"
  915. "\tIf the selection of the object is done on the canvas by single click "
  916. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  917. "properties will be displayed into the Selected Tab. Alternatively, double "
  918. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  919. "strong> and populate it even if it was out of focus.<br />\n"
  920. "\t<br />\n"
  921. "\tYou can change the parameters in this screen and the flow direction is "
  922. "like this:<br />\n"
  923. "\t<br />\n"
  924. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  925. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  926. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  927. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  928. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  929. "span></li>\n"
  930. "</ol>\n"
  931. "\n"
  932. "<p><span style=\"font-size:10px\">A list of key shortcuts is available "
  933. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  934. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  935. "\n"
  936. " "
  937. #: FlatCAMApp.py:8323
  938. msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  939. msgstr "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  940. #: FlatCAMApp.py:8330
  941. msgid "[ERROR_NOTCL] Could not parse information about latest version."
  942. msgstr "[ERROR_NOTCL] Could not parse information about latest version."
  943. #: FlatCAMApp.py:8340
  944. msgid "[success] FlatCAM is up to date!"
  945. msgstr "[success] FlatCAM is up to date!"
  946. #: FlatCAMApp.py:8345
  947. msgid "Newer Version Available"
  948. msgstr "Newer Version Available"
  949. #: FlatCAMApp.py:8346
  950. msgid ""
  951. "There is a newer version of FlatCAM available for download:\n"
  952. "\n"
  953. msgstr ""
  954. "There is a newer version of FlatCAM available for download:\n"
  955. "\n"
  956. #: FlatCAMApp.py:8348
  957. msgid "info"
  958. msgstr "info"
  959. #: FlatCAMApp.py:8367
  960. msgid "[success] All plots disabled."
  961. msgstr "[success] All plots disabled."
  962. #: FlatCAMApp.py:8373
  963. msgid "[success] All non selected plots disabled."
  964. msgstr "[success] All non selected plots disabled."
  965. #: FlatCAMApp.py:8379
  966. msgid "[success] All plots enabled."
  967. msgstr "[success] All plots enabled."
  968. #: FlatCAMApp.py:8385
  969. msgid "[success] Selected plots enabled..."
  970. msgstr "[success] Selected plots enabled..."
  971. #: FlatCAMApp.py:8393
  972. msgid "[success] Selected plots disabled..."
  973. msgstr "[success] Selected plots disabled..."
  974. #: FlatCAMApp.py:8403 FlatCAMApp.py:8416
  975. msgid "Working ..."
  976. msgstr "Working ..."
  977. #: FlatCAMApp.py:8450
  978. msgid "Saving FlatCAM Project"
  979. msgstr "Saving FlatCAM Project"
  980. #: FlatCAMApp.py:8471 FlatCAMApp.py:8502
  981. #, python-format
  982. msgid "[success] Project saved to: %s"
  983. msgstr "[success] Project saved to: %s"
  984. #: FlatCAMApp.py:8489
  985. #, python-format
  986. msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  987. msgstr "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  988. #: FlatCAMApp.py:8496
  989. #, python-format
  990. msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  991. msgstr ""
  992. "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  993. #: FlatCAMApp.py:8504
  994. #, python-format
  995. msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  996. msgstr "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  997. #: FlatCAMObj.py:207
  998. #, python-brace-format
  999. msgid "[success] Name changed from {old} to {new}"
  1000. msgstr "[success] Name changed from {old} to {new}"
  1001. #: FlatCAMObj.py:553 FlatCAMObj.py:2035 FlatCAMObj.py:3301 FlatCAMObj.py:5478
  1002. msgid "<span style=\"color:green;\"><b>Basic</b></span>"
  1003. msgstr "<span style=\"color:green;\"><b>Basic</b></span>"
  1004. #: FlatCAMObj.py:565 FlatCAMObj.py:2051 FlatCAMObj.py:3323 FlatCAMObj.py:5484
  1005. msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
  1006. msgstr "<span style=\"color:red;\"><b>Advanced</b></span>"
  1007. #: FlatCAMObj.py:928 FlatCAMObj.py:983
  1008. #, python-format
  1009. msgid "[success] Isolation geometry created: %s"
  1010. msgstr "[success] Isolation geometry created: %s"
  1011. #: FlatCAMObj.py:1162
  1012. msgid "Plotting Apertures"
  1013. msgstr "Plotting Apertures"
  1014. #: FlatCAMObj.py:1878 flatcamEditors/FlatCAMExcEditor.py:1368
  1015. msgid "Total Drills"
  1016. msgstr "Total Drills"
  1017. #: FlatCAMObj.py:1904 flatcamEditors/FlatCAMExcEditor.py:1400
  1018. msgid "Total Slots"
  1019. msgstr "Total Slots"
  1020. #: FlatCAMObj.py:2107 FlatCAMObj.py:3375 FlatCAMObj.py:3675 FlatCAMObj.py:3862
  1021. #: FlatCAMObj.py:3875 FlatCAMObj.py:3992 FlatCAMObj.py:4409 FlatCAMObj.py:4647
  1022. #: FlatCAMObj.py:5060 flatcamEditors/FlatCAMExcEditor.py:1474
  1023. #: flatcamTools/ToolCalculators.py:307 flatcamTools/ToolCalculators.py:318
  1024. #: flatcamTools/ToolCalculators.py:330 flatcamTools/ToolCalculators.py:345
  1025. #: flatcamTools/ToolCalculators.py:358 flatcamTools/ToolCalculators.py:372
  1026. #: flatcamTools/ToolCalculators.py:383 flatcamTools/ToolCalculators.py:394
  1027. #: flatcamTools/ToolCalculators.py:405 flatcamTools/ToolFilm.py:241
  1028. #: flatcamTools/ToolFilm.py:248 flatcamTools/ToolNonCopperClear.py:480
  1029. #: flatcamTools/ToolNonCopperClear.py:551
  1030. #: flatcamTools/ToolNonCopperClear.py:627
  1031. #: flatcamTools/ToolNonCopperClear.py:644 flatcamTools/ToolPaint.py:538
  1032. #: flatcamTools/ToolPaint.py:608 flatcamTools/ToolPaint.py:743
  1033. #: flatcamTools/ToolPaint.py:844 flatcamTools/ToolPaint.py:999
  1034. #: flatcamTools/ToolPanelize.py:385 flatcamTools/ToolPanelize.py:397
  1035. #: flatcamTools/ToolPanelize.py:410 flatcamTools/ToolPanelize.py:423
  1036. #: flatcamTools/ToolPanelize.py:435 flatcamTools/ToolPanelize.py:446
  1037. #: flatcamTools/ToolSolderPaste.py:756 flatcamTools/ToolSolderPaste.py:827
  1038. msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
  1039. msgstr "[ERROR_NOTCL] Wrong value format entered, use a number."
  1040. #: FlatCAMObj.py:2331 FlatCAMObj.py:2423 FlatCAMObj.py:2546
  1041. msgid ""
  1042. "[ERROR_NOTCL] Please select one or more tools from the list and try again."
  1043. msgstr ""
  1044. "[ERROR_NOTCL] Please select one or more tools from the list and try again."
  1045. #: FlatCAMObj.py:2338
  1046. msgid ""
  1047. "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  1048. msgstr ""
  1049. "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  1050. #: FlatCAMObj.py:2352 FlatCAMObj.py:2447 FlatCAMObj.py:2566
  1051. msgid "Tool_nr"
  1052. msgstr "Tool_nr"
  1053. #: FlatCAMObj.py:2352 FlatCAMObj.py:2447 FlatCAMObj.py:2566
  1054. #: flatcamEditors/FlatCAMExcEditor.py:819
  1055. #: flatcamEditors/FlatCAMExcEditor.py:2020 flatcamGUI/ObjectUI.py:556
  1056. #: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80
  1057. #: flatcamTools/ToolPcbWizard.py:78 flatcamTools/ToolSolderPaste.py:81
  1058. msgid "Diameter"
  1059. msgstr "Diameter"
  1060. #: FlatCAMObj.py:2352 FlatCAMObj.py:2447 FlatCAMObj.py:2566
  1061. msgid "Drills_Nr"
  1062. msgstr "Drills_Nr"
  1063. #: FlatCAMObj.py:2352 FlatCAMObj.py:2447 FlatCAMObj.py:2566
  1064. msgid "Slots_Nr"
  1065. msgstr "Slots_Nr"
  1066. #: FlatCAMObj.py:2433
  1067. msgid ""
  1068. "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  1069. msgstr ""
  1070. "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  1071. #: FlatCAMObj.py:2608 FlatCAMObj.py:4297 FlatCAMObj.py:4513 FlatCAMObj.py:4830
  1072. msgid ""
  1073. "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self."
  1074. "options[\"z_pdepth\"]"
  1075. msgstr ""
  1076. "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self."
  1077. "options[\"z_pdepth\"]"
  1078. #: FlatCAMObj.py:2620 FlatCAMObj.py:4309 FlatCAMObj.py:4525 FlatCAMObj.py:4842
  1079. msgid ""
  1080. "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or "
  1081. "self.options[\"feedrate_probe\"]"
  1082. msgstr ""
  1083. "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or "
  1084. "self.options[\"feedrate_probe\"]"
  1085. #: FlatCAMObj.py:2652 FlatCAMObj.py:4718 FlatCAMObj.py:4723 FlatCAMObj.py:4873
  1086. msgid "Generating CNC Code"
  1087. msgstr "Generating CNC Code"
  1088. #: FlatCAMObj.py:2678 FlatCAMObj.py:5019 camlib.py:5167 camlib.py:5626
  1089. #: camlib.py:5889
  1090. msgid ""
  1091. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
  1092. "format (x, y) \n"
  1093. "but now there is only one value, not two. "
  1094. msgstr ""
  1095. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
  1096. "format (x, y) \n"
  1097. "but now there is only one value, not two. "
  1098. #: FlatCAMObj.py:2998 FlatCAMObj.py:3918 FlatCAMObj.py:3919 FlatCAMObj.py:3928
  1099. msgid "Iso"
  1100. msgstr "Iso"
  1101. #: FlatCAMObj.py:2998 FlatCAMObj.py:3258 FlatCAMObj.py:3540
  1102. msgid "Rough"
  1103. msgstr "Rough"
  1104. #: FlatCAMObj.py:2998
  1105. msgid "Finish"
  1106. msgstr "Finish"
  1107. #: FlatCAMObj.py:3294 flatcamGUI/FlatCAMGUI.py:526 flatcamGUI/FlatCAMGUI.py:722
  1108. #: flatcamGUI/FlatCAMGUI.py:1615 flatcamGUI/FlatCAMGUI.py:1951
  1109. #: flatcamGUI/ObjectUI.py:999
  1110. msgid "Copy"
  1111. msgstr "Copy"
  1112. #: FlatCAMObj.py:3510
  1113. msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  1114. msgstr "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  1115. #: FlatCAMObj.py:3585
  1116. msgid "[success] Tool added in Tool Table."
  1117. msgstr "[success] Tool added in Tool Table."
  1118. #: FlatCAMObj.py:3590
  1119. msgid "[ERROR_NOTCL] Default Tool added. Wrong value format entered."
  1120. msgstr "[ERROR_NOTCL] Default Tool added. Wrong value format entered."
  1121. #: FlatCAMObj.py:3620 FlatCAMObj.py:3630
  1122. msgid "[WARNING_NOTCL] Failed. Select a tool to copy."
  1123. msgstr "[WARNING_NOTCL] Failed. Select a tool to copy."
  1124. #: FlatCAMObj.py:3659
  1125. msgid "[success] Tool was copied in Tool Table."
  1126. msgstr "[success] Tool was copied in Tool Table."
  1127. #: FlatCAMObj.py:3692
  1128. msgid "[success] Tool was edited in Tool Table."
  1129. msgstr "[success] Tool was edited in Tool Table."
  1130. #: FlatCAMObj.py:3723 FlatCAMObj.py:3733
  1131. msgid "[WARNING_NOTCL] Failed. Select a tool to delete."
  1132. msgstr "[WARNING_NOTCL] Failed. Select a tool to delete."
  1133. #: FlatCAMObj.py:3757
  1134. msgid "[success] Tool was deleted in Tool Table."
  1135. msgstr "[success] Tool was deleted in Tool Table."
  1136. #: FlatCAMObj.py:4178
  1137. #, python-format
  1138. msgid ""
  1139. "[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry."
  1140. msgstr ""
  1141. "[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry."
  1142. #: FlatCAMObj.py:4195
  1143. msgid "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number."
  1144. msgstr "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number."
  1145. #: FlatCAMObj.py:4222
  1146. msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  1147. msgstr "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  1148. #: FlatCAMObj.py:4260
  1149. #, python-format
  1150. msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1151. msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1152. #: FlatCAMObj.py:4418 FlatCAMObj.py:4656
  1153. msgid ""
  1154. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  1155. "Add a Tool Offset or change the Offset Type."
  1156. msgstr ""
  1157. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  1158. "Add a Tool Offset or change the Offset Type."
  1159. #: FlatCAMObj.py:4537 flatcamTools/ToolSolderPaste.py:1107
  1160. #: flatcamTools/ToolSolderPaste.py:1162
  1161. msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  1162. msgstr "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  1163. #: FlatCAMObj.py:4906 FlatCAMObj.py:4916 camlib.py:3348 camlib.py:3357
  1164. msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  1165. msgstr "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  1166. #: FlatCAMObj.py:4954
  1167. msgid "[success] Geometry Scale done."
  1168. msgstr "[success] Geometry Scale done."
  1169. #: FlatCAMObj.py:4971 camlib.py:3426
  1170. msgid ""
  1171. "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only "
  1172. "one value in the Offset field."
  1173. msgstr ""
  1174. "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only "
  1175. "one value in the Offset field."
  1176. #: FlatCAMObj.py:4991
  1177. msgid "[success] Geometry Offset done."
  1178. msgstr "[success] Geometry Offset done."
  1179. #: FlatCAMObj.py:5546 FlatCAMObj.py:5551 flatcamTools/ToolSolderPaste.py:1361
  1180. msgid "Export Machine Code ..."
  1181. msgstr "Export Machine Code ..."
  1182. #: FlatCAMObj.py:5557 flatcamTools/ToolSolderPaste.py:1364
  1183. msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
  1184. msgstr "[WARNING_NOTCL] Export Machine Code cancelled ..."
  1185. #: FlatCAMObj.py:5570
  1186. #, python-format
  1187. msgid "[success] Machine Code file saved to: %s"
  1188. msgstr "[success] Machine Code file saved to: %s"
  1189. #: FlatCAMObj.py:5592
  1190. #, python-format
  1191. msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  1192. msgstr "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  1193. #: FlatCAMObj.py:5709
  1194. #, python-format
  1195. msgid ""
  1196. "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s "
  1197. "CNCJob object."
  1198. msgstr ""
  1199. "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s "
  1200. "CNCJob object."
  1201. #: FlatCAMObj.py:5762
  1202. msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  1203. msgstr "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  1204. #: FlatCAMObj.py:5775
  1205. msgid ""
  1206. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  1207. "empty."
  1208. msgstr ""
  1209. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  1210. "empty."
  1211. #: FlatCAMObj.py:5782
  1212. msgid "[success] Toolchange G-code was replaced by a custom code."
  1213. msgstr "[success] Toolchange G-code was replaced by a custom code."
  1214. #: FlatCAMObj.py:5797 flatcamTools/ToolSolderPaste.py:1390
  1215. msgid "[WARNING_NOTCL] No such file or directory"
  1216. msgstr "[WARNING_NOTCL] No such file or directory"
  1217. #: FlatCAMObj.py:5817 FlatCAMObj.py:5829
  1218. msgid ""
  1219. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  1220. "'toolchange_custom'"
  1221. msgstr ""
  1222. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  1223. "'toolchange_custom'"
  1224. #: FlatCAMObj.py:5835
  1225. msgid "[ERROR] There is no postprocessor file."
  1226. msgstr "[ERROR] There is no postprocessor file."
  1227. #: ObjectCollection.py:420
  1228. #, python-brace-format
  1229. msgid "Object renamed from <b>{old}</b> to <b>{new}</b>"
  1230. msgstr "Object renamed from <b>{old}</b> to <b>{new}</b>"
  1231. #: ObjectCollection.py:759
  1232. #, python-format
  1233. msgid "[ERROR] Cause of error: %s"
  1234. msgstr "[ERROR] Cause of error: %s"
  1235. #: camlib.py:197
  1236. msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  1237. msgstr "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  1238. #: camlib.py:1391
  1239. msgid "[success] Object was mirrored ..."
  1240. msgstr "[success] Object was mirrored ..."
  1241. #: camlib.py:1393
  1242. msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
  1243. msgstr "[ERROR_NOTCL] Failed to mirror. No object selected"
  1244. #: camlib.py:1429
  1245. msgid "[success] Object was rotated ..."
  1246. msgstr "[success] Object was rotated ..."
  1247. #: camlib.py:1431
  1248. msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
  1249. msgstr "[ERROR_NOTCL] Failed to rotate. No object selected"
  1250. #: camlib.py:1465
  1251. msgid "[success] Object was skewed ..."
  1252. msgstr "[success] Object was skewed ..."
  1253. #: camlib.py:1467
  1254. msgid "[ERROR_NOTCL] Failed to skew. No object selected"
  1255. msgstr "[ERROR_NOTCL] Failed to skew. No object selected"
  1256. #: camlib.py:2728 camlib.py:2813
  1257. #, python-format
  1258. msgid "[WARNING] Coordinates missing, line ignored: %s"
  1259. msgstr "[WARNING] Coordinates missing, line ignored: %s"
  1260. #: camlib.py:2729 camlib.py:2814
  1261. msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  1262. msgstr "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  1263. #: camlib.py:2778
  1264. #, python-format
  1265. msgid ""
  1266. "[ERROR] Region does not have enough points. File will be processed but there "
  1267. "are parser errors. Line number: %s"
  1268. msgstr ""
  1269. "[ERROR] Region does not have enough points. File will be processed but there "
  1270. "are parser errors. Line number: %s"
  1271. #: camlib.py:3170
  1272. #, python-format
  1273. msgid ""
  1274. "[ERROR]Gerber Parser ERROR.\n"
  1275. "%s:"
  1276. msgstr ""
  1277. "[ERROR]Gerber Parser ERROR.\n"
  1278. "%s:"
  1279. #: camlib.py:3394
  1280. msgid "[success] Gerber Scale done."
  1281. msgstr "[success] Gerber Scale done."
  1282. #: camlib.py:3459
  1283. msgid "[success] Gerber Offset done."
  1284. msgstr "[success] Gerber Offset done."
  1285. #: camlib.py:3513
  1286. msgid "[success] Gerber Mirror done."
  1287. msgstr "[success] Gerber Mirror done."
  1288. #: camlib.py:3559
  1289. msgid "[success] Gerber Skew done."
  1290. msgstr "[success] Gerber Skew done."
  1291. #: camlib.py:3597
  1292. msgid "[success] Gerber Rotate done."
  1293. msgstr "[success] Gerber Rotate done."
  1294. #: camlib.py:3878
  1295. #, python-format
  1296. msgid "[ERROR_NOTCL] This is GCODE mark: %s"
  1297. msgstr "[ERROR_NOTCL] This is GCODE mark: %s"
  1298. #: camlib.py:3993
  1299. #, python-format
  1300. msgid ""
  1301. "[WARNING] No tool diameter info's. See shell.\n"
  1302. "A tool change event: T%s was found but the Excellon file have no "
  1303. "informations regarding the tool diameters therefore the application will try "
  1304. "to load it by using some 'fake' diameters.\n"
  1305. "The user needs to edit the resulting Excellon object and change the "
  1306. "diameters to reflect the real diameters."
  1307. msgstr ""
  1308. "[WARNING] No tool diameter info's. See shell.\n"
  1309. "A tool change event: T%s was found but the Excellon file have no "
  1310. "informations regarding the tool diameters therefore the application will try "
  1311. "to load it by using some 'fake' diameters.\n"
  1312. "The user needs to edit the resulting Excellon object and change the "
  1313. "diameters to reflect the real diameters."
  1314. #: camlib.py:4458
  1315. #, python-brace-format
  1316. msgid ""
  1317. "[ERROR] Excellon Parser error.\n"
  1318. "Parsing Failed. Line {l_nr}: {line}\n"
  1319. msgstr ""
  1320. "[ERROR] Excellon Parser error.\n"
  1321. "Parsing Failed. Line {l_nr}: {line}\n"
  1322. #: camlib.py:4537
  1323. msgid ""
  1324. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  1325. "not having a tool associated.\n"
  1326. "Check the resulting GCode."
  1327. msgstr ""
  1328. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  1329. "not having a tool associated.\n"
  1330. "Check the resulting GCode."
  1331. #: camlib.py:5076
  1332. #, python-format
  1333. msgid "[ERROR] There is no such parameter: %s"
  1334. msgstr "[ERROR] There is no such parameter: %s"
  1335. #: camlib.py:5146
  1336. msgid ""
  1337. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1338. "drill into material.\n"
  1339. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1340. "therefore the app will convert the value to negative. Check the resulting "
  1341. "CNC code (Gcode etc)."
  1342. msgstr ""
  1343. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1344. "drill into material.\n"
  1345. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1346. "therefore the app will convert the value to negative. Check the resulting "
  1347. "CNC code (Gcode etc)."
  1348. #: camlib.py:5153 camlib.py:5649 camlib.py:5912
  1349. #, python-format
  1350. msgid ""
  1351. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  1352. msgstr ""
  1353. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  1354. #: camlib.py:5382 camlib.py:5479 camlib.py:5537
  1355. msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..."
  1356. msgstr "[ERROR_NOTCL] The loaded Excellon file has no drills ..."
  1357. #: camlib.py:5484
  1358. msgid "[ERROR_NOTCL] Wrong optimization type selected."
  1359. msgstr "[ERROR_NOTCL] Wrong optimization type selected."
  1360. #: camlib.py:5637 camlib.py:5900
  1361. msgid ""
  1362. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  1363. "combinations of other parameters."
  1364. msgstr ""
  1365. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  1366. "combinations of other parameters."
  1367. #: camlib.py:5642 camlib.py:5905
  1368. msgid ""
  1369. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1370. "cut into material.\n"
  1371. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1372. "therefore the app will convert the value to negative.Check the resulting CNC "
  1373. "code (Gcode etc)."
  1374. msgstr ""
  1375. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1376. "cut into material.\n"
  1377. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1378. "therefore the app will convert the value to negative.Check the resulting CNC "
  1379. "code (Gcode etc)."
  1380. #: camlib.py:5654 camlib.py:5917
  1381. msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
  1382. msgstr "[ERROR_NOTCL] Travel Z parameter is None or zero."
  1383. #: camlib.py:5658 camlib.py:5921
  1384. msgid ""
  1385. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  1386. "to travel between cuts.\n"
  1387. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  1388. "therefore the app will convert the value to positive.Check the resulting CNC "
  1389. "code (Gcode etc)."
  1390. msgstr ""
  1391. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  1392. "to travel between cuts.\n"
  1393. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  1394. "therefore the app will convert the value to positive.Check the resulting CNC "
  1395. "code (Gcode etc)."
  1396. #: camlib.py:5665 camlib.py:5928
  1397. #, python-format
  1398. msgid ""
  1399. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  1400. msgstr ""
  1401. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  1402. #: camlib.py:5795
  1403. #, python-format
  1404. msgid "[ERROR]Expected a Geometry, got %s"
  1405. msgstr "[ERROR]Expected a Geometry, got %s"
  1406. #: camlib.py:5801
  1407. msgid ""
  1408. "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without "
  1409. "solid_geometry."
  1410. msgstr ""
  1411. "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without "
  1412. "solid_geometry."
  1413. #: camlib.py:5840
  1414. msgid ""
  1415. "[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
  1416. "current_geometry.\n"
  1417. "Raise the value (in module) and try again."
  1418. msgstr ""
  1419. "[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
  1420. "current_geometry.\n"
  1421. "Raise the value (in module) and try again."
  1422. #: camlib.py:6052
  1423. msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  1424. msgstr "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  1425. #: flatcamEditors/FlatCAMExcEditor.py:37 flatcamEditors/FlatCAMExcEditor.py:143
  1426. #: flatcamEditors/FlatCAMGrbEditor.py:229
  1427. #: flatcamEditors/FlatCAMGrbEditor.py:234
  1428. msgid "Click to place ..."
  1429. msgstr "Click to place ..."
  1430. #: flatcamEditors/FlatCAMExcEditor.py:46
  1431. msgid "[WARNING_NOTCL] To add a drill first select a tool"
  1432. msgstr "[WARNING_NOTCL] To add a drill first select a tool"
  1433. #: flatcamEditors/FlatCAMExcEditor.py:62 flatcamEditors/FlatCAMExcEditor.py:165
  1434. #: flatcamEditors/FlatCAMExcEditor.py:450
  1435. #: flatcamEditors/FlatCAMExcEditor.py:475
  1436. #: flatcamEditors/FlatCAMGrbEditor.py:451
  1437. #: flatcamEditors/FlatCAMGrbEditor.py:1776
  1438. #: flatcamEditors/FlatCAMGrbEditor.py:1804
  1439. msgid "Click on target location ..."
  1440. msgstr "Click on target location ..."
  1441. #: flatcamEditors/FlatCAMExcEditor.py:108
  1442. msgid "[success] Done. Drill added."
  1443. msgstr "[success] Done. Drill added."
  1444. #: flatcamEditors/FlatCAMExcEditor.py:150
  1445. msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1446. msgstr ""
  1447. "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1448. #: flatcamEditors/FlatCAMExcEditor.py:182
  1449. msgid "Click on the Drill Circular Array Start position"
  1450. msgstr "Click on the Drill Circular Array Start position"
  1451. #: flatcamEditors/FlatCAMExcEditor.py:204
  1452. #: flatcamEditors/FlatCAMGrbEditor.py:494
  1453. msgid ""
  1454. "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
  1455. "separator."
  1456. msgstr ""
  1457. "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
  1458. "separator."
  1459. #: flatcamEditors/FlatCAMExcEditor.py:207
  1460. #, python-format
  1461. msgid "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
  1462. msgstr "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
  1463. #: flatcamEditors/FlatCAMExcEditor.py:305
  1464. msgid "[WARNING_NOTCL] Too many drills for the selected spacing angle."
  1465. msgstr "[WARNING_NOTCL] Too many drills for the selected spacing angle."
  1466. #: flatcamEditors/FlatCAMExcEditor.py:322
  1467. msgid "[success] Done. Drill Array added."
  1468. msgstr "[success] Done. Drill Array added."
  1469. #: flatcamEditors/FlatCAMExcEditor.py:333
  1470. msgid "Click on the Drill(s) to resize ..."
  1471. msgstr "Click on the Drill(s) to resize ..."
  1472. #: flatcamEditors/FlatCAMExcEditor.py:354
  1473. msgid ""
  1474. "[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
  1475. msgstr ""
  1476. "[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
  1477. #: flatcamEditors/FlatCAMExcEditor.py:424
  1478. msgid "[success] Done. Drill Resize completed."
  1479. msgstr "[success] Done. Drill Resize completed."
  1480. #: flatcamEditors/FlatCAMExcEditor.py:427
  1481. msgid "[WARNING_NOTCL] Cancelled. No drills selected for resize ..."
  1482. msgstr "[WARNING_NOTCL] Cancelled. No drills selected for resize ..."
  1483. #: flatcamEditors/FlatCAMExcEditor.py:452
  1484. #: flatcamEditors/FlatCAMGrbEditor.py:1778
  1485. msgid "Click on reference location ..."
  1486. msgstr "Click on reference location ..."
  1487. #: flatcamEditors/FlatCAMExcEditor.py:507
  1488. msgid "[success] Done. Drill(s) Move completed."
  1489. msgstr "[success] Done. Drill(s) Move completed."
  1490. #: flatcamEditors/FlatCAMExcEditor.py:592
  1491. msgid "[success] Done. Drill(s) copied."
  1492. msgstr "[success] Done. Drill(s) copied."
  1493. #: flatcamEditors/FlatCAMExcEditor.py:792 flatcamGUI/FlatCAMGUI.py:5008
  1494. msgid "Excellon Editor"
  1495. msgstr "Excellon Editor"
  1496. #: flatcamEditors/FlatCAMExcEditor.py:799
  1497. #: flatcamEditors/FlatCAMGrbEditor.py:2266
  1498. msgid "Name:"
  1499. msgstr "Name:"
  1500. #: flatcamEditors/FlatCAMExcEditor.py:805 flatcamTools/ToolNonCopperClear.py:72
  1501. #: flatcamTools/ToolPaint.py:69 flatcamTools/ToolSolderPaste.py:70
  1502. msgid "Tools Table"
  1503. msgstr "Tools Table"
  1504. #: flatcamEditors/FlatCAMExcEditor.py:807 flatcamGUI/ObjectUI.py:538
  1505. msgid ""
  1506. "Tools in this Excellon object\n"
  1507. "when are used for drilling."
  1508. msgstr ""
  1509. "Tools in this Excellon object\n"
  1510. "when are used for drilling."
  1511. #: flatcamEditors/FlatCAMExcEditor.py:827
  1512. msgid "Add/Delete Tool"
  1513. msgstr "Add/Delete Tool"
  1514. #: flatcamEditors/FlatCAMExcEditor.py:829
  1515. msgid ""
  1516. "Add/Delete a tool to the tool list\n"
  1517. "for this Excellon object."
  1518. msgstr ""
  1519. "Add/Delete a tool to the tool list\n"
  1520. "for this Excellon object."
  1521. #: flatcamEditors/FlatCAMExcEditor.py:837 flatcamTools/ToolCutOut.py:77
  1522. msgid "Tool Dia:"
  1523. msgstr "Tool Dia:"
  1524. #: flatcamEditors/FlatCAMExcEditor.py:839 flatcamGUI/FlatCAMGUI.py:5037
  1525. #: flatcamGUI/ObjectUI.py:978
  1526. msgid "Diameter for the new tool"
  1527. msgstr "Diameter for the new tool"
  1528. #: flatcamEditors/FlatCAMExcEditor.py:847
  1529. msgid "Add Tool"
  1530. msgstr "Add Tool"
  1531. #: flatcamEditors/FlatCAMExcEditor.py:849
  1532. msgid ""
  1533. "Add a new tool to the tool list\n"
  1534. "with the diameter specified above."
  1535. msgstr ""
  1536. "Add a new tool to the tool list\n"
  1537. "with the diameter specified above."
  1538. #: flatcamEditors/FlatCAMExcEditor.py:861
  1539. msgid "Delete Tool"
  1540. msgstr "Delete Tool"
  1541. #: flatcamEditors/FlatCAMExcEditor.py:863
  1542. msgid ""
  1543. "Delete a tool in the tool list\n"
  1544. "by selecting a row in the tool table."
  1545. msgstr ""
  1546. "Delete a tool in the tool list\n"
  1547. "by selecting a row in the tool table."
  1548. #: flatcamEditors/FlatCAMExcEditor.py:881
  1549. msgid "Resize Drill(s)"
  1550. msgstr "Resize Drill(s)"
  1551. #: flatcamEditors/FlatCAMExcEditor.py:883
  1552. msgid "Resize a drill or a selection of drills."
  1553. msgstr "Resize a drill or a selection of drills."
  1554. #: flatcamEditors/FlatCAMExcEditor.py:890
  1555. msgid "Resize Dia:"
  1556. msgstr "Resize Dia:"
  1557. #: flatcamEditors/FlatCAMExcEditor.py:892
  1558. msgid "Diameter to resize to."
  1559. msgstr "Diameter to resize to."
  1560. #: flatcamEditors/FlatCAMExcEditor.py:900
  1561. msgid "Resize"
  1562. msgstr "Resize"
  1563. #: flatcamEditors/FlatCAMExcEditor.py:902
  1564. msgid "Resize drill(s)"
  1565. msgstr "Resize drill(s)"
  1566. #: flatcamEditors/FlatCAMExcEditor.py:924 flatcamGUI/FlatCAMGUI.py:1612
  1567. msgid "Add Drill Array"
  1568. msgstr "Add Drill Array"
  1569. #: flatcamEditors/FlatCAMExcEditor.py:926
  1570. msgid "Add an array of drills (linear or circular array)"
  1571. msgstr "Add an array of drills (linear or circular array)"
  1572. #: flatcamEditors/FlatCAMExcEditor.py:932
  1573. msgid ""
  1574. "Select the type of drills array to create.\n"
  1575. "It can be Linear X(Y) or Circular"
  1576. msgstr ""
  1577. "Select the type of drills array to create.\n"
  1578. "It can be Linear X(Y) or Circular"
  1579. #: flatcamEditors/FlatCAMExcEditor.py:935
  1580. #: flatcamEditors/FlatCAMGrbEditor.py:2499
  1581. msgid "Linear"
  1582. msgstr "Linear"
  1583. #: flatcamEditors/FlatCAMExcEditor.py:936
  1584. #: flatcamEditors/FlatCAMGrbEditor.py:2500
  1585. msgid "Circular"
  1586. msgstr "Circular"
  1587. #: flatcamEditors/FlatCAMExcEditor.py:944 flatcamGUI/FlatCAMGUI.py:5047
  1588. msgid "Nr of drills:"
  1589. msgstr "Nr of drills:"
  1590. #: flatcamEditors/FlatCAMExcEditor.py:946 flatcamGUI/FlatCAMGUI.py:5049
  1591. msgid "Specify how many drills to be in the array."
  1592. msgstr "Specify how many drills to be in the array."
  1593. #: flatcamEditors/FlatCAMExcEditor.py:964
  1594. #: flatcamEditors/FlatCAMExcEditor.py:1010
  1595. #: flatcamEditors/FlatCAMGrbEditor.py:2526
  1596. #: flatcamEditors/FlatCAMGrbEditor.py:2571
  1597. msgid "Direction:"
  1598. msgstr "Direction:"
  1599. #: flatcamEditors/FlatCAMExcEditor.py:966
  1600. #: flatcamEditors/FlatCAMGrbEditor.py:2528 flatcamGUI/FlatCAMGUI.py:5064
  1601. msgid ""
  1602. "Direction on which the linear array is oriented:\n"
  1603. "- 'X' - horizontal axis \n"
  1604. "- 'Y' - vertical axis or \n"
  1605. "- 'Angle' - a custom angle for the array inclination"
  1606. msgstr ""
  1607. "Direction on which the linear array is oriented:\n"
  1608. "- 'X' - horizontal axis \n"
  1609. "- 'Y' - vertical axis or \n"
  1610. "- 'Angle' - a custom angle for the array inclination"
  1611. #: flatcamEditors/FlatCAMExcEditor.py:979
  1612. #: flatcamEditors/FlatCAMGrbEditor.py:2541 flatcamGUI/FlatCAMGUI.py:5078
  1613. msgid "Pitch:"
  1614. msgstr "Pitch:"
  1615. #: flatcamEditors/FlatCAMExcEditor.py:981
  1616. #: flatcamEditors/FlatCAMGrbEditor.py:2543 flatcamGUI/FlatCAMGUI.py:5080
  1617. msgid "Pitch = Distance between elements of the array."
  1618. msgstr "Pitch = Distance between elements of the array."
  1619. #: flatcamEditors/FlatCAMExcEditor.py:989
  1620. #: flatcamEditors/FlatCAMExcEditor.py:1024
  1621. #: flatcamEditors/FlatCAMGeoEditor.py:665
  1622. #: flatcamEditors/FlatCAMGrbEditor.py:2550
  1623. #: flatcamEditors/FlatCAMGrbEditor.py:2586
  1624. #: flatcamEditors/FlatCAMGrbEditor.py:4588 flatcamGUI/FlatCAMGUI.py:5089
  1625. #: flatcamTools/ToolTransform.py:68
  1626. msgid "Angle:"
  1627. msgstr "Angle:"
  1628. #: flatcamEditors/FlatCAMExcEditor.py:991
  1629. #: flatcamEditors/FlatCAMGrbEditor.py:2552
  1630. msgid ""
  1631. "Angle at which the linear array is placed.\n"
  1632. "The precision is of max 2 decimals.\n"
  1633. "Min value is: -359.99 degrees.\n"
  1634. "Max value is: 360.00 degrees."
  1635. msgstr ""
  1636. "Angle at which the linear array is placed.\n"
  1637. "The precision is of max 2 decimals.\n"
  1638. "Min value is: -359.99 degrees.\n"
  1639. "Max value is: 360.00 degrees."
  1640. #: flatcamEditors/FlatCAMExcEditor.py:1012
  1641. #: flatcamEditors/FlatCAMGrbEditor.py:2573
  1642. msgid ""
  1643. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1644. "clockwise."
  1645. msgstr ""
  1646. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1647. "clockwise."
  1648. #: flatcamEditors/FlatCAMExcEditor.py:1026
  1649. #: flatcamEditors/FlatCAMGrbEditor.py:2588 flatcamGUI/FlatCAMGUI.py:5091
  1650. #: flatcamGUI/FlatCAMGUI.py:5117
  1651. msgid "Angle at which each element in circular array is placed."
  1652. msgstr "Angle at which each element in circular array is placed."
  1653. #: flatcamEditors/FlatCAMExcEditor.py:1487
  1654. msgid ""
  1655. "[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
  1656. "Save and reedit Excellon if you need to add this tool. "
  1657. msgstr ""
  1658. "[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
  1659. "Save and reedit Excellon if you need to add this tool. "
  1660. #: flatcamEditors/FlatCAMExcEditor.py:1496 flatcamGUI/FlatCAMGUI.py:2997
  1661. #, python-brace-format
  1662. msgid "[success] Added new tool with dia: {dia} {units}"
  1663. msgstr "[success] Added new tool with dia: {dia} {units}"
  1664. #: flatcamEditors/FlatCAMExcEditor.py:1528
  1665. msgid "[WARNING_NOTCL] Select a tool in Tool Table"
  1666. msgstr "[WARNING_NOTCL] Select a tool in Tool Table"
  1667. #: flatcamEditors/FlatCAMExcEditor.py:1560
  1668. #, python-brace-format
  1669. msgid "[success] Deleted tool with dia: {del_dia} {units}"
  1670. msgstr "[success] Deleted tool with dia: {del_dia} {units}"
  1671. #: flatcamEditors/FlatCAMExcEditor.py:2074
  1672. msgid ""
  1673. "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
  1674. "creation."
  1675. msgstr ""
  1676. "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
  1677. "creation."
  1678. #: flatcamEditors/FlatCAMExcEditor.py:2083
  1679. msgid "Creating Excellon."
  1680. msgstr "Creating Excellon."
  1681. #: flatcamEditors/FlatCAMExcEditor.py:2092
  1682. msgid "[success] Excellon editing finished."
  1683. msgstr "[success] Excellon editing finished."
  1684. #: flatcamEditors/FlatCAMExcEditor.py:2109
  1685. msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
  1686. msgstr "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
  1687. #: flatcamEditors/FlatCAMExcEditor.py:2637
  1688. msgid "[success] Done. Drill(s) deleted."
  1689. msgstr "[success] Done. Drill(s) deleted."
  1690. #: flatcamEditors/FlatCAMExcEditor.py:2705
  1691. #: flatcamEditors/FlatCAMGrbEditor.py:4350
  1692. msgid "Click on the circular array Center position"
  1693. msgstr "Click on the circular array Center position"
  1694. #: flatcamEditors/FlatCAMGeoEditor.py:80
  1695. #: flatcamEditors/FlatCAMGrbEditor.py:2416
  1696. msgid "Buffer distance:"
  1697. msgstr "Buffer distance:"
  1698. #: flatcamEditors/FlatCAMGeoEditor.py:81
  1699. #: flatcamEditors/FlatCAMGrbEditor.py:2417
  1700. msgid "Buffer corner:"
  1701. msgstr "Buffer corner:"
  1702. #: flatcamEditors/FlatCAMGeoEditor.py:83
  1703. msgid ""
  1704. "There are 3 types of corners:\n"
  1705. " - 'Round': the corner is rounded for exterior buffer.\n"
  1706. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  1707. " - 'Beveled:' the corner is a line that directly connects the features "
  1708. "meeting in the corner"
  1709. msgstr ""
  1710. "There are 3 types of corners:\n"
  1711. " - 'Round': the corner is rounded for exterior buffer.\n"
  1712. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  1713. " - 'Beveled:' the corner is a line that directly connects the features "
  1714. "meeting in the corner"
  1715. #: flatcamEditors/FlatCAMGeoEditor.py:89
  1716. #: flatcamEditors/FlatCAMGrbEditor.py:2425
  1717. msgid "Round"
  1718. msgstr "Round"
  1719. #: flatcamEditors/FlatCAMGeoEditor.py:90
  1720. #: flatcamEditors/FlatCAMGrbEditor.py:2426
  1721. msgid "Square"
  1722. msgstr "Square"
  1723. #: flatcamEditors/FlatCAMGeoEditor.py:91
  1724. #: flatcamEditors/FlatCAMGrbEditor.py:2427
  1725. msgid "Beveled"
  1726. msgstr "Beveled"
  1727. #: flatcamEditors/FlatCAMGeoEditor.py:98
  1728. msgid "Buffer Interior"
  1729. msgstr "Buffer Interior"
  1730. #: flatcamEditors/FlatCAMGeoEditor.py:100
  1731. msgid "Buffer Exterior"
  1732. msgstr "Buffer Exterior"
  1733. #: flatcamEditors/FlatCAMGeoEditor.py:106
  1734. msgid "Full Buffer"
  1735. msgstr "Full Buffer"
  1736. #: flatcamEditors/FlatCAMGeoEditor.py:127
  1737. #: flatcamEditors/FlatCAMGeoEditor.py:2682
  1738. msgid "Buffer Tool"
  1739. msgstr "Buffer Tool"
  1740. #: flatcamEditors/FlatCAMGeoEditor.py:138
  1741. #: flatcamEditors/FlatCAMGeoEditor.py:155
  1742. #: flatcamEditors/FlatCAMGeoEditor.py:172
  1743. #: flatcamEditors/FlatCAMGeoEditor.py:2700
  1744. #: flatcamEditors/FlatCAMGeoEditor.py:2726
  1745. #: flatcamEditors/FlatCAMGeoEditor.py:2752
  1746. #: flatcamEditors/FlatCAMGrbEditor.py:4402
  1747. msgid ""
  1748. "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
  1749. "retry."
  1750. msgstr ""
  1751. "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
  1752. "retry."
  1753. #: flatcamEditors/FlatCAMGeoEditor.py:343
  1754. msgid "Text Tool"
  1755. msgstr "Text Tool"
  1756. #: flatcamEditors/FlatCAMGeoEditor.py:401 flatcamGUI/FlatCAMGUI.py:803
  1757. msgid "Tool"
  1758. msgstr "Tool"
  1759. #: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:4054
  1760. #: flatcamGUI/FlatCAMGUI.py:5163 flatcamGUI/FlatCAMGUI.py:5597
  1761. #: flatcamGUI/FlatCAMGUI.py:5874 flatcamGUI/FlatCAMGUI.py:6014
  1762. #: flatcamGUI/ObjectUI.py:260
  1763. msgid "Tool dia:"
  1764. msgstr "Tool dia:"
  1765. #: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:6016
  1766. msgid ""
  1767. "Diameter of the tool to\n"
  1768. "be used in the operation."
  1769. msgstr ""
  1770. "Diameter of the tool to\n"
  1771. "be used in the operation."
  1772. #: flatcamEditors/FlatCAMGeoEditor.py:443 flatcamGUI/FlatCAMGUI.py:5780
  1773. #: flatcamGUI/FlatCAMGUI.py:6025 flatcamTools/ToolNonCopperClear.py:165
  1774. #: flatcamTools/ToolPaint.py:160
  1775. msgid "Overlap Rate:"
  1776. msgstr "Overlap Rate:"
  1777. #: flatcamEditors/FlatCAMGeoEditor.py:445 flatcamTools/ToolPaint.py:162
  1778. #, python-format
  1779. msgid ""
  1780. "How much (fraction) of the tool width to overlap each tool pass.\n"
  1781. "Example:\n"
  1782. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  1783. "\n"
  1784. "Adjust the value starting with lower values\n"
  1785. "and increasing it if areas that should be painted are still \n"
  1786. "not painted.\n"
  1787. "Lower values = faster processing, faster execution on PCB.\n"
  1788. "Higher values = slow processing and slow execution on CNC\n"
  1789. "due of too many paths."
  1790. msgstr ""
  1791. "How much (fraction) of the tool width to overlap each tool pass.\n"
  1792. "Example:\n"
  1793. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  1794. "\n"
  1795. "Adjust the value starting with lower values\n"
  1796. "and increasing it if areas that should be painted are still \n"
  1797. "not painted.\n"
  1798. "Lower values = faster processing, faster execution on PCB.\n"
  1799. "Higher values = slow processing and slow execution on CNC\n"
  1800. "due of too many paths."
  1801. #: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5796
  1802. #: flatcamGUI/FlatCAMGUI.py:5882 flatcamGUI/FlatCAMGUI.py:6035
  1803. #: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:181
  1804. #: flatcamTools/ToolPaint.py:177
  1805. msgid "Margin:"
  1806. msgstr "Margin:"
  1807. #: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:6037
  1808. #: flatcamTools/ToolPaint.py:179
  1809. msgid ""
  1810. "Distance by which to avoid\n"
  1811. "the edges of the polygon to\n"
  1812. "be painted."
  1813. msgstr ""
  1814. "Distance by which to avoid\n"
  1815. "the edges of the polygon to\n"
  1816. "be painted."
  1817. #: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5805
  1818. #: flatcamGUI/FlatCAMGUI.py:6046 flatcamTools/ToolNonCopperClear.py:190
  1819. #: flatcamTools/ToolPaint.py:188
  1820. msgid "Method:"
  1821. msgstr "Method:"
  1822. #: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:6048
  1823. msgid ""
  1824. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  1825. "<BR><B>Seed-based</B>: Outwards from seed."
  1826. msgstr ""
  1827. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  1828. "<BR><B>Seed-based</B>: Outwards from seed."
  1829. #: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5821
  1830. #: flatcamGUI/FlatCAMGUI.py:6061 flatcamTools/ToolNonCopperClear.py:206
  1831. #: flatcamTools/ToolPaint.py:204
  1832. msgid "Connect:"
  1833. msgstr "Connect:"
  1834. #: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/FlatCAMGUI.py:5823
  1835. #: flatcamGUI/FlatCAMGUI.py:6063 flatcamTools/ToolNonCopperClear.py:208
  1836. #: flatcamTools/ToolPaint.py:206
  1837. msgid ""
  1838. "Draw lines between resulting\n"
  1839. "segments to minimize tool lifts."
  1840. msgstr ""
  1841. "Draw lines between resulting\n"
  1842. "segments to minimize tool lifts."
  1843. #: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5830
  1844. #: flatcamGUI/FlatCAMGUI.py:6071 flatcamTools/ToolNonCopperClear.py:215
  1845. #: flatcamTools/ToolPaint.py:213
  1846. msgid "Contour:"
  1847. msgstr "Contour:"
  1848. #: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/FlatCAMGUI.py:5832
  1849. #: flatcamGUI/FlatCAMGUI.py:6073 flatcamTools/ToolNonCopperClear.py:217
  1850. #: flatcamTools/ToolPaint.py:215
  1851. msgid ""
  1852. "Cut around the perimeter of the polygon\n"
  1853. "to trim rough edges."
  1854. msgstr ""
  1855. "Cut around the perimeter of the polygon\n"
  1856. "to trim rough edges."
  1857. #: flatcamEditors/FlatCAMGeoEditor.py:509
  1858. msgid "Paint"
  1859. msgstr "Paint"
  1860. #: flatcamEditors/FlatCAMGeoEditor.py:527 flatcamGUI/FlatCAMGUI.py:643
  1861. #: flatcamGUI/FlatCAMGUI.py:1866 flatcamGUI/ObjectUI.py:1314
  1862. #: flatcamTools/ToolPaint.py:341
  1863. msgid "Paint Tool"
  1864. msgstr "Paint Tool"
  1865. #: flatcamEditors/FlatCAMGeoEditor.py:563
  1866. msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
  1867. msgstr "[WARNING_NOTCL] Paint cancelled. No shape selected."
  1868. #: flatcamEditors/FlatCAMGeoEditor.py:574 flatcamTools/ToolCutOut.py:355
  1869. #: flatcamTools/ToolCutOut.py:518 flatcamTools/ToolCutOut.py:657
  1870. #: flatcamTools/ToolCutOut.py:762 flatcamTools/ToolDblSided.py:363
  1871. msgid ""
  1872. "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
  1873. "retry."
  1874. msgstr ""
  1875. "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
  1876. "retry."
  1877. #: flatcamEditors/FlatCAMGeoEditor.py:585
  1878. msgid ""
  1879. "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  1880. msgstr ""
  1881. "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  1882. #: flatcamEditors/FlatCAMGeoEditor.py:597
  1883. msgid ""
  1884. "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
  1885. "retry."
  1886. msgstr ""
  1887. "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
  1888. "retry."
  1889. #: flatcamEditors/FlatCAMGeoEditor.py:606
  1890. #: flatcamEditors/FlatCAMGeoEditor.py:2707
  1891. #: flatcamEditors/FlatCAMGeoEditor.py:2733
  1892. #: flatcamEditors/FlatCAMGeoEditor.py:2759
  1893. #: flatcamTools/ToolNonCopperClear.py:813 flatcamTools/ToolProperties.py:104
  1894. msgid "Tools"
  1895. msgstr "Tools"
  1896. #: flatcamEditors/FlatCAMGeoEditor.py:617
  1897. #: flatcamEditors/FlatCAMGeoEditor.py:990
  1898. #: flatcamEditors/FlatCAMGrbEditor.py:4539
  1899. #: flatcamEditors/FlatCAMGrbEditor.py:4924 flatcamGUI/FlatCAMGUI.py:654
  1900. #: flatcamGUI/FlatCAMGUI.py:1879 flatcamTools/ToolTransform.py:398
  1901. msgid "Transform Tool"
  1902. msgstr "Transform Tool"
  1903. #: flatcamEditors/FlatCAMGeoEditor.py:618
  1904. #: flatcamEditors/FlatCAMGeoEditor.py:679
  1905. #: flatcamEditors/FlatCAMGrbEditor.py:4540
  1906. #: flatcamEditors/FlatCAMGrbEditor.py:4602 flatcamTools/ToolTransform.py:24
  1907. #: flatcamTools/ToolTransform.py:82
  1908. msgid "Rotate"
  1909. msgstr "Rotate"
  1910. #: flatcamEditors/FlatCAMGeoEditor.py:619
  1911. #: flatcamEditors/FlatCAMGrbEditor.py:4541 flatcamTools/ToolTransform.py:25
  1912. msgid "Skew/Shear"
  1913. msgstr "Skew/Shear"
  1914. #: flatcamEditors/FlatCAMGeoEditor.py:620
  1915. #: flatcamEditors/FlatCAMGrbEditor.py:2471
  1916. #: flatcamEditors/FlatCAMGrbEditor.py:4542 flatcamGUI/FlatCAMGUI.py:718
  1917. #: flatcamGUI/FlatCAMGUI.py:1947 flatcamGUI/ObjectUI.py:100
  1918. #: flatcamTools/ToolTransform.py:26
  1919. msgid "Scale"
  1920. msgstr "Scale"
  1921. #: flatcamEditors/FlatCAMGeoEditor.py:621
  1922. #: flatcamEditors/FlatCAMGrbEditor.py:4543 flatcamTools/ToolTransform.py:27
  1923. msgid "Mirror (Flip)"
  1924. msgstr "Mirror (Flip)"
  1925. #: flatcamEditors/FlatCAMGeoEditor.py:622
  1926. #: flatcamEditors/FlatCAMGrbEditor.py:4544 flatcamGUI/ObjectUI.py:127
  1927. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  1928. #: flatcamTools/ToolTransform.py:28
  1929. msgid "Offset"
  1930. msgstr "Offset"
  1931. #: flatcamEditors/FlatCAMGeoEditor.py:633
  1932. #: flatcamEditors/FlatCAMGrbEditor.py:4556
  1933. #, python-format
  1934. msgid "Editor %s"
  1935. msgstr "Editor %s"
  1936. #: flatcamEditors/FlatCAMGeoEditor.py:667
  1937. #: flatcamEditors/FlatCAMGrbEditor.py:4590 flatcamTools/ToolTransform.py:70
  1938. msgid ""
  1939. "Angle for Rotation action, in degrees.\n"
  1940. "Float number between -360 and 359.\n"
  1941. "Positive numbers for CW motion.\n"
  1942. "Negative numbers for CCW motion."
  1943. msgstr ""
  1944. "Angle for Rotation action, in degrees.\n"
  1945. "Float number between -360 and 359.\n"
  1946. "Positive numbers for CW motion.\n"
  1947. "Negative numbers for CCW motion."
  1948. #: flatcamEditors/FlatCAMGeoEditor.py:681
  1949. #: flatcamEditors/FlatCAMGrbEditor.py:4604
  1950. msgid ""
  1951. "Rotate the selected shape(s).\n"
  1952. "The point of reference is the middle of\n"
  1953. "the bounding box for all selected shapes."
  1954. msgstr ""
  1955. "Rotate the selected shape(s).\n"
  1956. "The point of reference is the middle of\n"
  1957. "the bounding box for all selected shapes."
  1958. #: flatcamEditors/FlatCAMGeoEditor.py:704
  1959. #: flatcamEditors/FlatCAMGrbEditor.py:4627 flatcamTools/ToolTransform.py:107
  1960. msgid "Angle X:"
  1961. msgstr "Angle X:"
  1962. #: flatcamEditors/FlatCAMGeoEditor.py:706
  1963. #: flatcamEditors/FlatCAMGeoEditor.py:724
  1964. #: flatcamEditors/FlatCAMGrbEditor.py:4629
  1965. #: flatcamEditors/FlatCAMGrbEditor.py:4647 flatcamTools/ToolTransform.py:109
  1966. #: flatcamTools/ToolTransform.py:127
  1967. msgid ""
  1968. "Angle for Skew action, in degrees.\n"
  1969. "Float number between -360 and 359."
  1970. msgstr ""
  1971. "Angle for Skew action, in degrees.\n"
  1972. "Float number between -360 and 359."
  1973. #: flatcamEditors/FlatCAMGeoEditor.py:715
  1974. #: flatcamEditors/FlatCAMGrbEditor.py:4638 flatcamTools/ToolTransform.py:118
  1975. msgid "Skew X"
  1976. msgstr "Skew X"
  1977. #: flatcamEditors/FlatCAMGeoEditor.py:717
  1978. #: flatcamEditors/FlatCAMGeoEditor.py:735
  1979. #: flatcamEditors/FlatCAMGrbEditor.py:4640
  1980. #: flatcamEditors/FlatCAMGrbEditor.py:4658
  1981. msgid ""
  1982. "Skew/shear the selected shape(s).\n"
  1983. "The point of reference is the middle of\n"
  1984. "the bounding box for all selected shapes."
  1985. msgstr ""
  1986. "Skew/shear the selected shape(s).\n"
  1987. "The point of reference is the middle of\n"
  1988. "the bounding box for all selected shapes."
  1989. #: flatcamEditors/FlatCAMGeoEditor.py:722
  1990. #: flatcamEditors/FlatCAMGrbEditor.py:4645 flatcamTools/ToolTransform.py:125
  1991. msgid "Angle Y:"
  1992. msgstr "Angle Y:"
  1993. #: flatcamEditors/FlatCAMGeoEditor.py:733
  1994. #: flatcamEditors/FlatCAMGrbEditor.py:4656 flatcamTools/ToolTransform.py:136
  1995. msgid "Skew Y"
  1996. msgstr "Skew Y"
  1997. #: flatcamEditors/FlatCAMGeoEditor.py:761
  1998. #: flatcamEditors/FlatCAMGrbEditor.py:4684 flatcamTools/ToolTransform.py:164
  1999. msgid "Factor X:"
  2000. msgstr "Factor X:"
  2001. #: flatcamEditors/FlatCAMGeoEditor.py:763
  2002. #: flatcamEditors/FlatCAMGrbEditor.py:4686 flatcamTools/ToolTransform.py:166
  2003. msgid "Factor for Scale action over X axis."
  2004. msgstr "Factor for Scale action over X axis."
  2005. #: flatcamEditors/FlatCAMGeoEditor.py:771
  2006. #: flatcamEditors/FlatCAMGrbEditor.py:4694 flatcamTools/ToolTransform.py:174
  2007. msgid "Scale X"
  2008. msgstr "Scale X"
  2009. #: flatcamEditors/FlatCAMGeoEditor.py:773
  2010. #: flatcamEditors/FlatCAMGeoEditor.py:790
  2011. #: flatcamEditors/FlatCAMGrbEditor.py:4696
  2012. #: flatcamEditors/FlatCAMGrbEditor.py:4713
  2013. msgid ""
  2014. "Scale the selected shape(s).\n"
  2015. "The point of reference depends on \n"
  2016. "the Scale reference checkbox state."
  2017. msgstr ""
  2018. "Scale the selected shape(s).\n"
  2019. "The point of reference depends on \n"
  2020. "the Scale reference checkbox state."
  2021. #: flatcamEditors/FlatCAMGeoEditor.py:778
  2022. #: flatcamEditors/FlatCAMGrbEditor.py:4701 flatcamTools/ToolTransform.py:181
  2023. msgid "Factor Y:"
  2024. msgstr "Factor Y:"
  2025. #: flatcamEditors/FlatCAMGeoEditor.py:780
  2026. #: flatcamEditors/FlatCAMGrbEditor.py:4703 flatcamTools/ToolTransform.py:183
  2027. msgid "Factor for Scale action over Y axis."
  2028. msgstr "Factor for Scale action over Y axis."
  2029. #: flatcamEditors/FlatCAMGeoEditor.py:788
  2030. #: flatcamEditors/FlatCAMGrbEditor.py:4711 flatcamTools/ToolTransform.py:191
  2031. msgid "Scale Y"
  2032. msgstr "Scale Y"
  2033. #: flatcamEditors/FlatCAMGeoEditor.py:797
  2034. #: flatcamEditors/FlatCAMGrbEditor.py:4720 flatcamGUI/FlatCAMGUI.py:6420
  2035. #: flatcamTools/ToolTransform.py:200
  2036. msgid "Link"
  2037. msgstr "Link"
  2038. #: flatcamEditors/FlatCAMGeoEditor.py:799
  2039. #: flatcamEditors/FlatCAMGrbEditor.py:4722
  2040. msgid ""
  2041. "Scale the selected shape(s)\n"
  2042. "using the Scale Factor X for both axis."
  2043. msgstr ""
  2044. "Scale the selected shape(s)\n"
  2045. "using the Scale Factor X for both axis."
  2046. #: flatcamEditors/FlatCAMGeoEditor.py:805
  2047. #: flatcamEditors/FlatCAMGrbEditor.py:4728 flatcamGUI/FlatCAMGUI.py:6428
  2048. #: flatcamTools/ToolTransform.py:208
  2049. msgid "Scale Reference"
  2050. msgstr "Scale Reference"
  2051. #: flatcamEditors/FlatCAMGeoEditor.py:807
  2052. #: flatcamEditors/FlatCAMGrbEditor.py:4730
  2053. msgid ""
  2054. "Scale the selected shape(s)\n"
  2055. "using the origin reference when checked,\n"
  2056. "and the center of the biggest bounding box\n"
  2057. "of the selected shapes when unchecked."
  2058. msgstr ""
  2059. "Scale the selected shape(s)\n"
  2060. "using the origin reference when checked,\n"
  2061. "and the center of the biggest bounding box\n"
  2062. "of the selected shapes when unchecked."
  2063. #: flatcamEditors/FlatCAMGeoEditor.py:835
  2064. #: flatcamEditors/FlatCAMGrbEditor.py:4759 flatcamTools/ToolTransform.py:238
  2065. msgid "Value X:"
  2066. msgstr "Value X:"
  2067. #: flatcamEditors/FlatCAMGeoEditor.py:837
  2068. #: flatcamEditors/FlatCAMGrbEditor.py:4761 flatcamTools/ToolTransform.py:240
  2069. msgid "Value for Offset action on X axis."
  2070. msgstr "Value for Offset action on X axis."
  2071. #: flatcamEditors/FlatCAMGeoEditor.py:845
  2072. #: flatcamEditors/FlatCAMGrbEditor.py:4769 flatcamTools/ToolTransform.py:248
  2073. msgid "Offset X"
  2074. msgstr "Offset X"
  2075. #: flatcamEditors/FlatCAMGeoEditor.py:847
  2076. #: flatcamEditors/FlatCAMGeoEditor.py:865
  2077. #: flatcamEditors/FlatCAMGrbEditor.py:4771
  2078. #: flatcamEditors/FlatCAMGrbEditor.py:4789
  2079. msgid ""
  2080. "Offset the selected shape(s).\n"
  2081. "The point of reference is the middle of\n"
  2082. "the bounding box for all selected shapes.\n"
  2083. msgstr ""
  2084. "Offset the selected shape(s).\n"
  2085. "The point of reference is the middle of\n"
  2086. "the bounding box for all selected shapes.\n"
  2087. #: flatcamEditors/FlatCAMGeoEditor.py:853
  2088. #: flatcamEditors/FlatCAMGrbEditor.py:4777 flatcamTools/ToolTransform.py:255
  2089. msgid "Value Y:"
  2090. msgstr "Value Y:"
  2091. #: flatcamEditors/FlatCAMGeoEditor.py:855
  2092. #: flatcamEditors/FlatCAMGrbEditor.py:4779 flatcamTools/ToolTransform.py:257
  2093. msgid "Value for Offset action on Y axis."
  2094. msgstr "Value for Offset action on Y axis."
  2095. #: flatcamEditors/FlatCAMGeoEditor.py:863
  2096. #: flatcamEditors/FlatCAMGrbEditor.py:4787 flatcamTools/ToolTransform.py:265
  2097. msgid "Offset Y"
  2098. msgstr "Offset Y"
  2099. #: flatcamEditors/FlatCAMGeoEditor.py:894
  2100. #: flatcamEditors/FlatCAMGrbEditor.py:4818 flatcamTools/ToolTransform.py:295
  2101. msgid "Flip on X"
  2102. msgstr "Flip on X"
  2103. #: flatcamEditors/FlatCAMGeoEditor.py:896
  2104. #: flatcamEditors/FlatCAMGeoEditor.py:904
  2105. #: flatcamEditors/FlatCAMGrbEditor.py:4820
  2106. #: flatcamEditors/FlatCAMGrbEditor.py:4828
  2107. msgid ""
  2108. "Flip the selected shape(s) over the X axis.\n"
  2109. "Does not create a new shape."
  2110. msgstr ""
  2111. "Flip the selected shape(s) over the X axis.\n"
  2112. "Does not create a new shape."
  2113. #: flatcamEditors/FlatCAMGeoEditor.py:902
  2114. #: flatcamEditors/FlatCAMGrbEditor.py:4826 flatcamTools/ToolTransform.py:303
  2115. msgid "Flip on Y"
  2116. msgstr "Flip on Y"
  2117. #: flatcamEditors/FlatCAMGeoEditor.py:911
  2118. #: flatcamEditors/FlatCAMGrbEditor.py:4835 flatcamTools/ToolTransform.py:312
  2119. msgid "Ref Pt"
  2120. msgstr "Ref Pt"
  2121. #: flatcamEditors/FlatCAMGeoEditor.py:913
  2122. #: flatcamEditors/FlatCAMGrbEditor.py:4837
  2123. msgid ""
  2124. "Flip the selected shape(s)\n"
  2125. "around the point in Point Entry Field.\n"
  2126. "\n"
  2127. "The point coordinates can be captured by\n"
  2128. "left click on canvas together with pressing\n"
  2129. "SHIFT key. \n"
  2130. "Then click Add button to insert coordinates.\n"
  2131. "Or enter the coords in format (x, y) in the\n"
  2132. "Point Entry field and click Flip on X(Y)"
  2133. msgstr ""
  2134. "Flip the selected shape(s)\n"
  2135. "around the point in Point Entry Field.\n"
  2136. "\n"
  2137. "The point coordinates can be captured by\n"
  2138. "left click on canvas together with pressing\n"
  2139. "SHIFT key. \n"
  2140. "Then click Add button to insert coordinates.\n"
  2141. "Or enter the coords in format (x, y) in the\n"
  2142. "Point Entry field and click Flip on X(Y)"
  2143. #: flatcamEditors/FlatCAMGeoEditor.py:925
  2144. #: flatcamEditors/FlatCAMGrbEditor.py:4849 flatcamTools/ToolTransform.py:325
  2145. msgid "Point:"
  2146. msgstr "Point:"
  2147. #: flatcamEditors/FlatCAMGeoEditor.py:927
  2148. #: flatcamEditors/FlatCAMGrbEditor.py:4851
  2149. msgid ""
  2150. "Coordinates in format (x, y) used as reference for mirroring.\n"
  2151. "The 'x' in (x, y) will be used when using Flip on X and\n"
  2152. "the 'y' in (x, y) will be used when using Flip on Y."
  2153. msgstr ""
  2154. "Coordinates in format (x, y) used as reference for mirroring.\n"
  2155. "The 'x' in (x, y) will be used when using Flip on X and\n"
  2156. "the 'y' in (x, y) will be used when using Flip on Y."
  2157. #: flatcamEditors/FlatCAMGeoEditor.py:939
  2158. #: flatcamEditors/FlatCAMGrbEditor.py:4863 flatcamTools/ToolTransform.py:339
  2159. msgid ""
  2160. "The point coordinates can be captured by\n"
  2161. "left click on canvas together with pressing\n"
  2162. "SHIFT key. Then click Add button to insert."
  2163. msgstr ""
  2164. "The point coordinates can be captured by\n"
  2165. "left click on canvas together with pressing\n"
  2166. "SHIFT key. Then click Add button to insert."
  2167. #: flatcamEditors/FlatCAMGeoEditor.py:1054
  2168. #: flatcamEditors/FlatCAMGrbEditor.py:4988
  2169. msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  2170. msgstr "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  2171. #: flatcamEditors/FlatCAMGeoEditor.py:1075
  2172. #: flatcamEditors/FlatCAMGrbEditor.py:5008 flatcamTools/ToolTransform.py:468
  2173. msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
  2174. msgstr "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
  2175. #: flatcamEditors/FlatCAMGeoEditor.py:1112
  2176. #: flatcamEditors/FlatCAMGrbEditor.py:5051 flatcamTools/ToolTransform.py:502
  2177. msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
  2178. msgstr "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
  2179. #: flatcamEditors/FlatCAMGeoEditor.py:1133
  2180. #: flatcamEditors/FlatCAMGrbEditor.py:5078 flatcamTools/ToolTransform.py:520
  2181. msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
  2182. msgstr "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
  2183. #: flatcamEditors/FlatCAMGeoEditor.py:1154
  2184. #: flatcamEditors/FlatCAMGrbEditor.py:5105 flatcamTools/ToolTransform.py:538
  2185. msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
  2186. msgstr "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
  2187. #: flatcamEditors/FlatCAMGeoEditor.py:1191
  2188. #: flatcamEditors/FlatCAMGrbEditor.py:5146 flatcamTools/ToolTransform.py:572
  2189. msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
  2190. msgstr "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
  2191. #: flatcamEditors/FlatCAMGeoEditor.py:1223
  2192. #: flatcamEditors/FlatCAMGrbEditor.py:5184 flatcamTools/ToolTransform.py:601
  2193. msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
  2194. msgstr "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
  2195. #: flatcamEditors/FlatCAMGeoEditor.py:1244
  2196. #: flatcamEditors/FlatCAMGrbEditor.py:5210 flatcamTools/ToolTransform.py:619
  2197. msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
  2198. msgstr "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
  2199. #: flatcamEditors/FlatCAMGeoEditor.py:1262
  2200. #: flatcamEditors/FlatCAMGrbEditor.py:5233
  2201. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  2202. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  2203. #: flatcamEditors/FlatCAMGeoEditor.py:1265
  2204. #: flatcamEditors/FlatCAMGrbEditor.py:5236 flatcamTools/ToolTransform.py:640
  2205. msgid "Appying Rotate"
  2206. msgstr "Appying Rotate"
  2207. #: flatcamEditors/FlatCAMGeoEditor.py:1293
  2208. #: flatcamEditors/FlatCAMGrbEditor.py:5269
  2209. msgid "[success] Done. Rotate completed."
  2210. msgstr "[success] Done. Rotate completed."
  2211. #: flatcamEditors/FlatCAMGeoEditor.py:1309
  2212. #: flatcamEditors/FlatCAMGrbEditor.py:5288
  2213. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  2214. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  2215. #: flatcamEditors/FlatCAMGeoEditor.py:1312
  2216. #: flatcamEditors/FlatCAMGrbEditor.py:5291 flatcamTools/ToolTransform.py:691
  2217. msgid "Applying Flip"
  2218. msgstr "Applying Flip"
  2219. #: flatcamEditors/FlatCAMGeoEditor.py:1342
  2220. #: flatcamEditors/FlatCAMGrbEditor.py:5330 flatcamTools/ToolTransform.py:733
  2221. msgid "[success] Flip on the Y axis done ..."
  2222. msgstr "[success] Flip on the Y axis done ..."
  2223. #: flatcamEditors/FlatCAMGeoEditor.py:1345
  2224. #: flatcamEditors/FlatCAMGrbEditor.py:5338 flatcamTools/ToolTransform.py:742
  2225. msgid "[success] Flip on the X axis done ..."
  2226. msgstr "[success] Flip on the X axis done ..."
  2227. #: flatcamEditors/FlatCAMGeoEditor.py:1364
  2228. #: flatcamEditors/FlatCAMGrbEditor.py:5358
  2229. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  2230. msgstr ""
  2231. "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  2232. #: flatcamEditors/FlatCAMGeoEditor.py:1367
  2233. #: flatcamEditors/FlatCAMGrbEditor.py:5361 flatcamTools/ToolTransform.py:760
  2234. msgid "Applying Skew"
  2235. msgstr "Applying Skew"
  2236. #: flatcamEditors/FlatCAMGeoEditor.py:1392
  2237. #: flatcamEditors/FlatCAMGrbEditor.py:5396 flatcamTools/ToolTransform.py:791
  2238. #, python-format
  2239. msgid "[success] Skew on the %s axis done ..."
  2240. msgstr "[success] Skew on the %s axis done ..."
  2241. #: flatcamEditors/FlatCAMGeoEditor.py:1396
  2242. #: flatcamEditors/FlatCAMGrbEditor.py:5400 flatcamTools/ToolTransform.py:795
  2243. #, python-format
  2244. msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  2245. msgstr "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  2246. #: flatcamEditors/FlatCAMGeoEditor.py:1407
  2247. #: flatcamEditors/FlatCAMGrbEditor.py:5419
  2248. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  2249. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  2250. #: flatcamEditors/FlatCAMGeoEditor.py:1410
  2251. #: flatcamEditors/FlatCAMGrbEditor.py:5422 flatcamTools/ToolTransform.py:809
  2252. msgid "Applying Scale"
  2253. msgstr "Applying Scale"
  2254. #: flatcamEditors/FlatCAMGeoEditor.py:1443
  2255. #: flatcamEditors/FlatCAMGrbEditor.py:5460 flatcamTools/ToolTransform.py:848
  2256. #, python-format
  2257. msgid "[success] Scale on the %s axis done ..."
  2258. msgstr "[success] Scale on the %s axis done ..."
  2259. #: flatcamEditors/FlatCAMGeoEditor.py:1446
  2260. #: flatcamEditors/FlatCAMGrbEditor.py:5463 flatcamTools/ToolTransform.py:851
  2261. #, python-format
  2262. msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  2263. msgstr "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  2264. #: flatcamEditors/FlatCAMGeoEditor.py:1455
  2265. #: flatcamEditors/FlatCAMGrbEditor.py:5476
  2266. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  2267. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  2268. #: flatcamEditors/FlatCAMGeoEditor.py:1458
  2269. #: flatcamEditors/FlatCAMGrbEditor.py:5479 flatcamTools/ToolTransform.py:861
  2270. msgid "Applying Offset"
  2271. msgstr "Applying Offset"
  2272. #: flatcamEditors/FlatCAMGeoEditor.py:1469
  2273. #: flatcamEditors/FlatCAMGrbEditor.py:5501 flatcamTools/ToolTransform.py:880
  2274. #, python-format
  2275. msgid "[success] Offset on the %s axis done ..."
  2276. msgstr "[success] Offset on the %s axis done ..."
  2277. #: flatcamEditors/FlatCAMGeoEditor.py:1473
  2278. #: flatcamEditors/FlatCAMGrbEditor.py:5505 flatcamTools/ToolTransform.py:884
  2279. #, python-format
  2280. msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  2281. msgstr "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  2282. #: flatcamEditors/FlatCAMGeoEditor.py:1477
  2283. #: flatcamEditors/FlatCAMGrbEditor.py:5509
  2284. msgid "Rotate ..."
  2285. msgstr "Rotate ..."
  2286. #: flatcamEditors/FlatCAMGeoEditor.py:1478
  2287. #: flatcamEditors/FlatCAMGeoEditor.py:1535
  2288. #: flatcamEditors/FlatCAMGeoEditor.py:1552
  2289. #: flatcamEditors/FlatCAMGrbEditor.py:5510
  2290. #: flatcamEditors/FlatCAMGrbEditor.py:5567
  2291. #: flatcamEditors/FlatCAMGrbEditor.py:5584
  2292. msgid "Enter an Angle Value (degrees):"
  2293. msgstr "Enter an Angle Value (degrees):"
  2294. #: flatcamEditors/FlatCAMGeoEditor.py:1487
  2295. #: flatcamEditors/FlatCAMGrbEditor.py:5519
  2296. msgid "[success] Geometry shape rotate done..."
  2297. msgstr "[success] Geometry shape rotate done..."
  2298. #: flatcamEditors/FlatCAMGeoEditor.py:1492
  2299. #: flatcamEditors/FlatCAMGrbEditor.py:5524
  2300. msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  2301. msgstr "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  2302. #: flatcamEditors/FlatCAMGeoEditor.py:1498
  2303. #: flatcamEditors/FlatCAMGrbEditor.py:5530
  2304. msgid "Offset on X axis ..."
  2305. msgstr "Offset on X axis ..."
  2306. #: flatcamEditors/FlatCAMGeoEditor.py:1499
  2307. #: flatcamEditors/FlatCAMGeoEditor.py:1518
  2308. #: flatcamEditors/FlatCAMGrbEditor.py:5531
  2309. #: flatcamEditors/FlatCAMGrbEditor.py:5550
  2310. #, python-format
  2311. msgid "Enter a distance Value (%s):"
  2312. msgstr "Enter a distance Value (%s):"
  2313. #: flatcamEditors/FlatCAMGeoEditor.py:1508
  2314. #: flatcamEditors/FlatCAMGrbEditor.py:5540
  2315. msgid "[success] Geometry shape offset on X axis done..."
  2316. msgstr "[success] Geometry shape offset on X axis done..."
  2317. #: flatcamEditors/FlatCAMGeoEditor.py:1512
  2318. #: flatcamEditors/FlatCAMGrbEditor.py:5544
  2319. msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  2320. msgstr "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  2321. #: flatcamEditors/FlatCAMGeoEditor.py:1517
  2322. #: flatcamEditors/FlatCAMGrbEditor.py:5549
  2323. msgid "Offset on Y axis ..."
  2324. msgstr "Offset on Y axis ..."
  2325. #: flatcamEditors/FlatCAMGeoEditor.py:1527
  2326. #: flatcamEditors/FlatCAMGrbEditor.py:5559
  2327. msgid "[success] Geometry shape offset on Y axis done..."
  2328. msgstr "[success] Geometry shape offset on Y axis done..."
  2329. #: flatcamEditors/FlatCAMGeoEditor.py:1531
  2330. #: flatcamEditors/FlatCAMGrbEditor.py:5563
  2331. msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  2332. msgstr "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  2333. #: flatcamEditors/FlatCAMGeoEditor.py:1534
  2334. #: flatcamEditors/FlatCAMGrbEditor.py:5566
  2335. msgid "Skew on X axis ..."
  2336. msgstr "Skew on X axis ..."
  2337. #: flatcamEditors/FlatCAMGeoEditor.py:1544
  2338. #: flatcamEditors/FlatCAMGrbEditor.py:5576
  2339. msgid "[success] Geometry shape skew on X axis done..."
  2340. msgstr "[success] Geometry shape skew on X axis done..."
  2341. #: flatcamEditors/FlatCAMGeoEditor.py:1548
  2342. #: flatcamEditors/FlatCAMGrbEditor.py:5580
  2343. msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  2344. msgstr "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  2345. #: flatcamEditors/FlatCAMGeoEditor.py:1551
  2346. #: flatcamEditors/FlatCAMGrbEditor.py:5583
  2347. msgid "Skew on Y axis ..."
  2348. msgstr "Skew on Y axis ..."
  2349. #: flatcamEditors/FlatCAMGeoEditor.py:1561
  2350. #: flatcamEditors/FlatCAMGrbEditor.py:5593
  2351. msgid "[success] Geometry shape skew on Y axis done..."
  2352. msgstr "[success] Geometry shape skew on Y axis done..."
  2353. #: flatcamEditors/FlatCAMGeoEditor.py:1565
  2354. #: flatcamEditors/FlatCAMGrbEditor.py:5597
  2355. msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  2356. msgstr "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  2357. #: flatcamEditors/FlatCAMGeoEditor.py:1929
  2358. #: flatcamEditors/FlatCAMGeoEditor.py:1980
  2359. #: flatcamEditors/FlatCAMGrbEditor.py:1361
  2360. #: flatcamEditors/FlatCAMGrbEditor.py:1430
  2361. msgid "Click on Center point ..."
  2362. msgstr "Click on Center point ..."
  2363. #: flatcamEditors/FlatCAMGeoEditor.py:1936
  2364. #: flatcamEditors/FlatCAMGrbEditor.py:1369
  2365. msgid "Click on Perimeter point to complete ..."
  2366. msgstr "Click on Perimeter point to complete ..."
  2367. #: flatcamEditors/FlatCAMGeoEditor.py:1965
  2368. msgid "[success] Done. Adding Circle completed."
  2369. msgstr "[success] Done. Adding Circle completed."
  2370. #: flatcamEditors/FlatCAMGeoEditor.py:2000
  2371. #: flatcamEditors/FlatCAMGrbEditor.py:1462
  2372. msgid "Click on Start point ..."
  2373. msgstr "Click on Start point ..."
  2374. #: flatcamEditors/FlatCAMGeoEditor.py:2002
  2375. #: flatcamEditors/FlatCAMGrbEditor.py:1464
  2376. msgid "Click on Point3 ..."
  2377. msgstr "Click on Point3 ..."
  2378. #: flatcamEditors/FlatCAMGeoEditor.py:2004
  2379. #: flatcamEditors/FlatCAMGrbEditor.py:1466
  2380. msgid "Click on Stop point ..."
  2381. msgstr "Click on Stop point ..."
  2382. #: flatcamEditors/FlatCAMGeoEditor.py:2009
  2383. #: flatcamEditors/FlatCAMGrbEditor.py:1471
  2384. msgid "Click on Stop point to complete ..."
  2385. msgstr "Click on Stop point to complete ..."
  2386. #: flatcamEditors/FlatCAMGeoEditor.py:2011
  2387. #: flatcamEditors/FlatCAMGrbEditor.py:1473
  2388. msgid "Click on Point2 to complete ..."
  2389. msgstr "Click on Point2 to complete ..."
  2390. #: flatcamEditors/FlatCAMGeoEditor.py:2013
  2391. #: flatcamEditors/FlatCAMGrbEditor.py:1475
  2392. msgid "Click on Center point to complete ..."
  2393. msgstr "Click on Center point to complete ..."
  2394. #: flatcamEditors/FlatCAMGeoEditor.py:2025
  2395. #: flatcamEditors/FlatCAMGrbEditor.py:1487
  2396. #, python-format
  2397. msgid "Direction: %s"
  2398. msgstr "Direction: %s"
  2399. #: flatcamEditors/FlatCAMGeoEditor.py:2035
  2400. #: flatcamEditors/FlatCAMGrbEditor.py:1497
  2401. msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
  2402. msgstr "Mode: Start -> Stop -> Center. Click on Start point ..."
  2403. #: flatcamEditors/FlatCAMGeoEditor.py:2038
  2404. #: flatcamEditors/FlatCAMGrbEditor.py:1500
  2405. msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
  2406. msgstr "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
  2407. #: flatcamEditors/FlatCAMGeoEditor.py:2041
  2408. #: flatcamEditors/FlatCAMGrbEditor.py:1503
  2409. msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
  2410. msgstr "Mode: Center -> Start -> Stop. Click on Center point ..."
  2411. #: flatcamEditors/FlatCAMGeoEditor.py:2179
  2412. msgid "[success] Done. Arc completed."
  2413. msgstr "[success] Done. Arc completed."
  2414. #: flatcamEditors/FlatCAMGeoEditor.py:2198
  2415. #: flatcamEditors/FlatCAMGeoEditor.py:2251
  2416. #: flatcamEditors/FlatCAMGeoEditor.py:2626
  2417. msgid "Click on 1st corner ..."
  2418. msgstr "Click on 1st corner ..."
  2419. #: flatcamEditors/FlatCAMGeoEditor.py:2204
  2420. msgid "Click on opposite corner to complete ..."
  2421. msgstr "Click on opposite corner to complete ..."
  2422. #: flatcamEditors/FlatCAMGeoEditor.py:2232
  2423. msgid "[success] Done. Rectangle completed."
  2424. msgstr "[success] Done. Rectangle completed."
  2425. #: flatcamEditors/FlatCAMGeoEditor.py:2258
  2426. msgid "Click on next Point or click right mouse button to complete ..."
  2427. msgstr "Click on next Point or click right mouse button to complete ..."
  2428. #: flatcamEditors/FlatCAMGeoEditor.py:2286
  2429. msgid "[success] Done. Polygon completed."
  2430. msgstr "[success] Done. Polygon completed."
  2431. #: flatcamEditors/FlatCAMGeoEditor.py:2296
  2432. #: flatcamEditors/FlatCAMGeoEditor.py:2342
  2433. #: flatcamEditors/FlatCAMGrbEditor.py:1058
  2434. #: flatcamEditors/FlatCAMGrbEditor.py:1252
  2435. msgid "Backtracked one point ..."
  2436. msgstr "Backtracked one point ..."
  2437. #: flatcamEditors/FlatCAMGeoEditor.py:2324
  2438. msgid "[success] Done. Path completed."
  2439. msgstr "[success] Done. Path completed."
  2440. #: flatcamEditors/FlatCAMGeoEditor.py:2447
  2441. msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
  2442. msgstr "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
  2443. #: flatcamEditors/FlatCAMGeoEditor.py:2449
  2444. #: flatcamEditors/FlatCAMGeoEditor.py:2461
  2445. msgid " MOVE: Click on reference point ..."
  2446. msgstr " MOVE: Click on reference point ..."
  2447. #: flatcamEditors/FlatCAMGeoEditor.py:2452
  2448. msgid " Click on destination point ..."
  2449. msgstr " Click on destination point ..."
  2450. #: flatcamEditors/FlatCAMGeoEditor.py:2486
  2451. msgid "[success] Done. Geometry(s) Move completed."
  2452. msgstr "[success] Done. Geometry(s) Move completed."
  2453. #: flatcamEditors/FlatCAMGeoEditor.py:2606
  2454. msgid "[success] Done. Geometry(s) Copy completed."
  2455. msgstr "[success] Done. Geometry(s) Copy completed."
  2456. #: flatcamEditors/FlatCAMGeoEditor.py:2640
  2457. #, python-format
  2458. msgid ""
  2459. "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
  2460. "supported. Error: %s"
  2461. msgstr ""
  2462. "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
  2463. "supported. Error: %s"
  2464. #: flatcamEditors/FlatCAMGeoEditor.py:2650
  2465. msgid "[success] Done. Adding Text completed."
  2466. msgstr "[success] Done. Adding Text completed."
  2467. #: flatcamEditors/FlatCAMGeoEditor.py:2678
  2468. msgid "Create buffer geometry ..."
  2469. msgstr "Create buffer geometry ..."
  2470. #: flatcamEditors/FlatCAMGeoEditor.py:2689
  2471. #: flatcamEditors/FlatCAMGeoEditor.py:2715
  2472. #: flatcamEditors/FlatCAMGeoEditor.py:2741
  2473. msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  2474. msgstr "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  2475. #: flatcamEditors/FlatCAMGeoEditor.py:2711
  2476. #: flatcamEditors/FlatCAMGrbEditor.py:4447
  2477. msgid "[success] Done. Buffer Tool completed."
  2478. msgstr "[success] Done. Buffer Tool completed."
  2479. #: flatcamEditors/FlatCAMGeoEditor.py:2737
  2480. msgid "[success] Done. Buffer Int Tool completed."
  2481. msgstr "[success] Done. Buffer Int Tool completed."
  2482. #: flatcamEditors/FlatCAMGeoEditor.py:2763
  2483. msgid "[success] Done. Buffer Ext Tool completed."
  2484. msgstr "[success] Done. Buffer Ext Tool completed."
  2485. #: flatcamEditors/FlatCAMGeoEditor.py:2798
  2486. #: flatcamEditors/FlatCAMGrbEditor.py:1983
  2487. msgid "Select a shape to act as deletion area ..."
  2488. msgstr "Select a shape to act as deletion area ..."
  2489. #: flatcamEditors/FlatCAMGeoEditor.py:2800
  2490. #: flatcamEditors/FlatCAMGeoEditor.py:2819
  2491. #: flatcamEditors/FlatCAMGeoEditor.py:2825
  2492. #: flatcamEditors/FlatCAMGrbEditor.py:1985
  2493. msgid "Click to pick-up the erase shape..."
  2494. msgstr "Click to pick-up the erase shape..."
  2495. #: flatcamEditors/FlatCAMGeoEditor.py:2829
  2496. #: flatcamEditors/FlatCAMGrbEditor.py:2042
  2497. msgid "Click to erase ..."
  2498. msgstr "Click to erase ..."
  2499. #: flatcamEditors/FlatCAMGeoEditor.py:2858
  2500. #: flatcamEditors/FlatCAMGrbEditor.py:2075
  2501. msgid "[success] Done. Eraser tool action completed."
  2502. msgstr "[success] Done. Eraser tool action completed."
  2503. #: flatcamEditors/FlatCAMGeoEditor.py:2901
  2504. msgid "Create Paint geometry ..."
  2505. msgstr "Create Paint geometry ..."
  2506. #: flatcamEditors/FlatCAMGeoEditor.py:2915
  2507. #: flatcamEditors/FlatCAMGrbEditor.py:2217
  2508. msgid "Shape transformations ..."
  2509. msgstr "Shape transformations ..."
  2510. #: flatcamEditors/FlatCAMGeoEditor.py:3419
  2511. #, python-brace-format
  2512. msgid ""
  2513. "[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
  2514. msgstr ""
  2515. "[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
  2516. #: flatcamEditors/FlatCAMGeoEditor.py:3796
  2517. msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
  2518. msgstr "[WARNING_NOTCL] Copy cancelled. No shape selected."
  2519. #: flatcamEditors/FlatCAMGeoEditor.py:3803 flatcamGUI/FlatCAMGUI.py:2727
  2520. #: flatcamGUI/FlatCAMGUI.py:2773 flatcamGUI/FlatCAMGUI.py:2791
  2521. #: flatcamGUI/FlatCAMGUI.py:2922 flatcamGUI/FlatCAMGUI.py:2934
  2522. #: flatcamGUI/FlatCAMGUI.py:2968
  2523. msgid "Click on target point."
  2524. msgstr "Click on target point."
  2525. #: flatcamEditors/FlatCAMGeoEditor.py:4047
  2526. #: flatcamEditors/FlatCAMGeoEditor.py:4082
  2527. msgid ""
  2528. "[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
  2529. "Intersection."
  2530. msgstr ""
  2531. "[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
  2532. "Intersection."
  2533. #: flatcamEditors/FlatCAMGeoEditor.py:4166
  2534. #: flatcamEditors/FlatCAMGeoEditor.py:4204
  2535. #: flatcamEditors/FlatCAMGeoEditor.py:4280
  2536. msgid ""
  2537. "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to "
  2538. "generate an 'inside' shape"
  2539. msgstr ""
  2540. "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to "
  2541. "generate an 'inside' shape"
  2542. #: flatcamEditors/FlatCAMGeoEditor.py:4175
  2543. #: flatcamEditors/FlatCAMGeoEditor.py:4213
  2544. #: flatcamEditors/FlatCAMGeoEditor.py:4288
  2545. msgid "[WARNING_NOTCL] Nothing selected for buffering."
  2546. msgstr "[WARNING_NOTCL] Nothing selected for buffering."
  2547. #: flatcamEditors/FlatCAMGeoEditor.py:4179
  2548. #: flatcamEditors/FlatCAMGeoEditor.py:4217
  2549. #: flatcamEditors/FlatCAMGeoEditor.py:4292
  2550. msgid "[WARNING_NOTCL] Invalid distance for buffering."
  2551. msgstr "[WARNING_NOTCL] Invalid distance for buffering."
  2552. #: flatcamEditors/FlatCAMGeoEditor.py:4189
  2553. #: flatcamEditors/FlatCAMGeoEditor.py:4301
  2554. msgid ""
  2555. "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
  2556. msgstr ""
  2557. "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
  2558. #: flatcamEditors/FlatCAMGeoEditor.py:4197
  2559. msgid "[success] Full buffer geometry created."
  2560. msgstr "[success] Full buffer geometry created."
  2561. #: flatcamEditors/FlatCAMGeoEditor.py:4227
  2562. msgid ""
  2563. "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
  2564. msgstr ""
  2565. "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
  2566. #: flatcamEditors/FlatCAMGeoEditor.py:4242
  2567. msgid "[success] Interior buffer geometry created."
  2568. msgstr "[success] Interior buffer geometry created."
  2569. #: flatcamEditors/FlatCAMGeoEditor.py:4313
  2570. msgid "[success] Exterior buffer geometry created."
  2571. msgstr "[success] Exterior buffer geometry created."
  2572. #: flatcamEditors/FlatCAMGeoEditor.py:4377
  2573. msgid "[WARNING_NOTCL] Nothing selected for painting."
  2574. msgstr "[WARNING_NOTCL] Nothing selected for painting."
  2575. #: flatcamEditors/FlatCAMGeoEditor.py:4383
  2576. msgid "[WARNING] Invalid value for {}"
  2577. msgstr "[WARNING] Invalid value for {}"
  2578. #: flatcamEditors/FlatCAMGeoEditor.py:4389
  2579. msgid ""
  2580. "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
  2581. "(100%)."
  2582. msgstr ""
  2583. "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
  2584. "(100%)."
  2585. #: flatcamEditors/FlatCAMGeoEditor.py:4448
  2586. #, python-format
  2587. msgid ""
  2588. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  2589. "different method of Paint\n"
  2590. "%s"
  2591. msgstr ""
  2592. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  2593. "different method of Paint\n"
  2594. "%s"
  2595. #: flatcamEditors/FlatCAMGeoEditor.py:4459
  2596. msgid "[success] Paint done."
  2597. msgstr "[success] Paint done."
  2598. #: flatcamEditors/FlatCAMGrbEditor.py:200
  2599. msgid "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
  2600. msgstr ""
  2601. "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
  2602. #: flatcamEditors/FlatCAMGrbEditor.py:206
  2603. #: flatcamEditors/FlatCAMGrbEditor.py:398
  2604. msgid ""
  2605. "[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
  2606. msgstr ""
  2607. "[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
  2608. #: flatcamEditors/FlatCAMGrbEditor.py:357
  2609. #: flatcamEditors/FlatCAMGrbEditor.py:662
  2610. msgid ""
  2611. "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2612. msgstr ""
  2613. "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2614. #: flatcamEditors/FlatCAMGrbEditor.py:369
  2615. msgid "[success] Done. Adding Pad completed."
  2616. msgstr "[success] Done. Adding Pad completed."
  2617. #: flatcamEditors/FlatCAMGrbEditor.py:391
  2618. msgid ""
  2619. "[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
  2620. msgstr ""
  2621. "[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
  2622. #: flatcamEditors/FlatCAMGrbEditor.py:468
  2623. msgid "Click on the Pad Circular Array Start position"
  2624. msgstr "Click on the Pad Circular Array Start position"
  2625. #: flatcamEditors/FlatCAMGrbEditor.py:497
  2626. msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
  2627. msgstr "[ERROR_NOTCL] The value is mistyped. Check the value."
  2628. #: flatcamEditors/FlatCAMGrbEditor.py:687
  2629. msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
  2630. msgstr "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
  2631. #: flatcamEditors/FlatCAMGrbEditor.py:709
  2632. msgid "[success] Done. Pad Array added."
  2633. msgstr "[success] Done. Pad Array added."
  2634. #: flatcamEditors/FlatCAMGrbEditor.py:730
  2635. msgid "Select shape(s) and then click ..."
  2636. msgstr "Select shape(s) and then click ..."
  2637. #: flatcamEditors/FlatCAMGrbEditor.py:741
  2638. msgid "[ERROR_NOTCL] Failed. Nothing selected."
  2639. msgstr "[ERROR_NOTCL] Failed. Nothing selected."
  2640. #: flatcamEditors/FlatCAMGrbEditor.py:756
  2641. msgid ""
  2642. "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the "
  2643. "same aperture."
  2644. msgstr ""
  2645. "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the "
  2646. "same aperture."
  2647. #: flatcamEditors/FlatCAMGrbEditor.py:809
  2648. msgid "[success] Done. Poligonize completed."
  2649. msgstr "[success] Done. Poligonize completed."
  2650. #: flatcamEditors/FlatCAMGrbEditor.py:860
  2651. #: flatcamEditors/FlatCAMGrbEditor.py:1075
  2652. #: flatcamEditors/FlatCAMGrbEditor.py:1099
  2653. msgid "Corner Mode 1: 45 degrees ..."
  2654. msgstr "Corner Mode 1: 45 degrees ..."
  2655. #: flatcamEditors/FlatCAMGrbEditor.py:862
  2656. msgid "Click on 1st point ..."
  2657. msgstr "Click on 1st point ..."
  2658. #: flatcamEditors/FlatCAMGrbEditor.py:872
  2659. #: flatcamEditors/FlatCAMGrbEditor.py:1170
  2660. msgid "Click on next Point or click Right mouse button to complete ..."
  2661. msgstr "Click on next Point or click Right mouse button to complete ..."
  2662. #: flatcamEditors/FlatCAMGrbEditor.py:1063
  2663. #: flatcamEditors/FlatCAMGrbEditor.py:1096
  2664. msgid "Corner Mode 2: Reverse 45 degrees ..."
  2665. msgstr "Corner Mode 2: Reverse 45 degrees ..."
  2666. #: flatcamEditors/FlatCAMGrbEditor.py:1066
  2667. #: flatcamEditors/FlatCAMGrbEditor.py:1093
  2668. msgid "Corner Mode 3: 90 degrees ..."
  2669. msgstr "Corner Mode 3: 90 degrees ..."
  2670. #: flatcamEditors/FlatCAMGrbEditor.py:1069
  2671. #: flatcamEditors/FlatCAMGrbEditor.py:1090
  2672. msgid "Corner Mode 4: Reverse 90 degrees ..."
  2673. msgstr "Corner Mode 4: Reverse 90 degrees ..."
  2674. #: flatcamEditors/FlatCAMGrbEditor.py:1072
  2675. #: flatcamEditors/FlatCAMGrbEditor.py:1087
  2676. msgid "Corner Mode 5: Free angle ..."
  2677. msgstr "Corner Mode 5: Free angle ..."
  2678. #: flatcamEditors/FlatCAMGrbEditor.py:1126
  2679. #: flatcamEditors/FlatCAMGrbEditor.py:1284
  2680. #: flatcamEditors/FlatCAMGrbEditor.py:1323
  2681. msgid "Track Mode 1: 45 degrees ..."
  2682. msgstr "Track Mode 1: 45 degrees ..."
  2683. #: flatcamEditors/FlatCAMGrbEditor.py:1264
  2684. #: flatcamEditors/FlatCAMGrbEditor.py:1318
  2685. msgid "Track Mode 2: Reverse 45 degrees ..."
  2686. msgstr "Track Mode 2: Reverse 45 degrees ..."
  2687. #: flatcamEditors/FlatCAMGrbEditor.py:1269
  2688. #: flatcamEditors/FlatCAMGrbEditor.py:1313
  2689. msgid "Track Mode 3: 90 degrees ..."
  2690. msgstr "Track Mode 3: 90 degrees ..."
  2691. #: flatcamEditors/FlatCAMGrbEditor.py:1274
  2692. #: flatcamEditors/FlatCAMGrbEditor.py:1308
  2693. msgid "Track Mode 4: Reverse 90 degrees ..."
  2694. msgstr "Track Mode 4: Reverse 90 degrees ..."
  2695. #: flatcamEditors/FlatCAMGrbEditor.py:1279
  2696. #: flatcamEditors/FlatCAMGrbEditor.py:1303
  2697. msgid "Track Mode 5: Free angle ..."
  2698. msgstr "Track Mode 5: Free angle ..."
  2699. #: flatcamEditors/FlatCAMGrbEditor.py:1683
  2700. msgid "Scale the selected Gerber apertures ..."
  2701. msgstr "Scale the selected Gerber apertures ..."
  2702. #: flatcamEditors/FlatCAMGrbEditor.py:1725
  2703. msgid "Buffer the selected apertures ..."
  2704. msgstr "Buffer the selected apertures ..."
  2705. #: flatcamEditors/FlatCAMGrbEditor.py:1769
  2706. msgid "[WARNING_NOTCL] Nothing selected to move ..."
  2707. msgstr "[WARNING_NOTCL] Nothing selected to move ..."
  2708. #: flatcamEditors/FlatCAMGrbEditor.py:1892
  2709. msgid "[success] Done. Apertures Move completed."
  2710. msgstr "[success] Done. Apertures Move completed."
  2711. #: flatcamEditors/FlatCAMGrbEditor.py:1968
  2712. msgid "[success] Done. Apertures copied."
  2713. msgstr "[success] Done. Apertures copied."
  2714. #: flatcamEditors/FlatCAMGrbEditor.py:2259 flatcamGUI/FlatCAMGUI.py:1604
  2715. #: flatcamGUI/FlatCAMGUI.py:4323
  2716. msgid "Gerber Editor"
  2717. msgstr "Gerber Editor"
  2718. #: flatcamEditors/FlatCAMGrbEditor.py:2278 flatcamGUI/ObjectUI.py:192
  2719. msgid "<b>Apertures:</b>"
  2720. msgstr "<b>Apertures:</b>"
  2721. #: flatcamEditors/FlatCAMGrbEditor.py:2280 flatcamGUI/ObjectUI.py:194
  2722. msgid "Apertures Table for the Gerber Object."
  2723. msgstr "Apertures Table for the Gerber Object."
  2724. #: flatcamEditors/FlatCAMGrbEditor.py:2291
  2725. #: flatcamEditors/FlatCAMGrbEditor.py:3601 flatcamGUI/ObjectUI.py:228
  2726. msgid "Code"
  2727. msgstr "Code"
  2728. #: flatcamEditors/FlatCAMGrbEditor.py:2291
  2729. #: flatcamEditors/FlatCAMGrbEditor.py:3601 flatcamGUI/ObjectUI.py:228
  2730. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  2731. msgid "Type"
  2732. msgstr "Type"
  2733. #: flatcamEditors/FlatCAMGrbEditor.py:2291
  2734. #: flatcamEditors/FlatCAMGrbEditor.py:3601 flatcamGUI/ObjectUI.py:228
  2735. msgid "Size"
  2736. msgstr "Size"
  2737. #: flatcamEditors/FlatCAMGrbEditor.py:2291
  2738. #: flatcamEditors/FlatCAMGrbEditor.py:3601 flatcamGUI/ObjectUI.py:228
  2739. msgid "Dim"
  2740. msgstr "Dim"
  2741. #: flatcamEditors/FlatCAMGrbEditor.py:2295 flatcamGUI/ObjectUI.py:232
  2742. msgid "Index"
  2743. msgstr "Index"
  2744. #: flatcamEditors/FlatCAMGrbEditor.py:2297 flatcamGUI/ObjectUI.py:234
  2745. msgid "Aperture Code"
  2746. msgstr "Aperture Code"
  2747. #: flatcamEditors/FlatCAMGrbEditor.py:2299 flatcamGUI/ObjectUI.py:236
  2748. msgid "Type of aperture: circular, rectangle, macros etc"
  2749. msgstr "Type of aperture: circular, rectangle, macros etc"
  2750. #: flatcamEditors/FlatCAMGrbEditor.py:2301
  2751. #: flatcamEditors/FlatCAMGrbEditor.py:2334 flatcamGUI/ObjectUI.py:238
  2752. msgid "Aperture Size:"
  2753. msgstr "Aperture Size:"
  2754. #: flatcamEditors/FlatCAMGrbEditor.py:2303 flatcamGUI/ObjectUI.py:240
  2755. msgid ""
  2756. "Aperture Dimensions:\n"
  2757. " - (width, height) for R, O type.\n"
  2758. " - (dia, nVertices) for P type"
  2759. msgstr ""
  2760. "Aperture Dimensions:\n"
  2761. " - (width, height) for R, O type.\n"
  2762. " - (dia, nVertices) for P type"
  2763. #: flatcamEditors/FlatCAMGrbEditor.py:2324
  2764. msgid "Aperture Code:"
  2765. msgstr "Aperture Code:"
  2766. #: flatcamEditors/FlatCAMGrbEditor.py:2326
  2767. msgid "Code for the new aperture"
  2768. msgstr "Code for the new aperture"
  2769. #: flatcamEditors/FlatCAMGrbEditor.py:2336
  2770. msgid ""
  2771. "Size for the new aperture.\n"
  2772. "If aperture type is 'R' or 'O' then\n"
  2773. "this value is automatically\n"
  2774. "calculated as:\n"
  2775. "sqrt(width**2 + height**2)"
  2776. msgstr ""
  2777. "Size for the new aperture.\n"
  2778. "If aperture type is 'R' or 'O' then\n"
  2779. "this value is automatically\n"
  2780. "calculated as:\n"
  2781. "sqrt(width**2 + height**2)"
  2782. #: flatcamEditors/FlatCAMGrbEditor.py:2348
  2783. msgid "Aperture Type:"
  2784. msgstr "Aperture Type:"
  2785. #: flatcamEditors/FlatCAMGrbEditor.py:2350
  2786. msgid ""
  2787. "Select the type of new aperture. Can be:\n"
  2788. "C = circular\n"
  2789. "R = rectangular\n"
  2790. "O = oblong"
  2791. msgstr ""
  2792. "Select the type of new aperture. Can be:\n"
  2793. "C = circular\n"
  2794. "R = rectangular\n"
  2795. "O = oblong"
  2796. #: flatcamEditors/FlatCAMGrbEditor.py:2361
  2797. msgid "Aperture Dim:"
  2798. msgstr "Aperture Dim:"
  2799. #: flatcamEditors/FlatCAMGrbEditor.py:2363
  2800. msgid ""
  2801. "Dimensions for the new aperture.\n"
  2802. "Active only for rectangular apertures (type R).\n"
  2803. "The format is (width, height)"
  2804. msgstr ""
  2805. "Dimensions for the new aperture.\n"
  2806. "Active only for rectangular apertures (type R).\n"
  2807. "The format is (width, height)"
  2808. #: flatcamEditors/FlatCAMGrbEditor.py:2372
  2809. msgid "Add/Delete Aperture:"
  2810. msgstr "Add/Delete Aperture:"
  2811. #: flatcamEditors/FlatCAMGrbEditor.py:2374
  2812. msgid "Add/Delete an aperture in the aperture table"
  2813. msgstr "Add/Delete an aperture in the aperture table"
  2814. #: flatcamEditors/FlatCAMGrbEditor.py:2383
  2815. msgid "Add a new aperture to the aperture list."
  2816. msgstr "Add a new aperture to the aperture list."
  2817. #: flatcamEditors/FlatCAMGrbEditor.py:2388
  2818. msgid "Delete a aperture in the aperture list"
  2819. msgstr "Delete a aperture in the aperture list"
  2820. #: flatcamEditors/FlatCAMGrbEditor.py:2404
  2821. msgid "Buffer Aperture:"
  2822. msgstr "Buffer Aperture:"
  2823. #: flatcamEditors/FlatCAMGrbEditor.py:2406
  2824. msgid "Buffer a aperture in the aperture list"
  2825. msgstr "Buffer a aperture in the aperture list"
  2826. #: flatcamEditors/FlatCAMGrbEditor.py:2419
  2827. msgid ""
  2828. "There are 3 types of corners:\n"
  2829. " - 'Round': the corner is rounded.\n"
  2830. " - 'Square:' the corner is met in a sharp angle.\n"
  2831. " - 'Beveled:' the corner is a line that directly connects the features "
  2832. "meeting in the corner"
  2833. msgstr ""
  2834. "There are 3 types of corners:\n"
  2835. " - 'Round': the corner is rounded.\n"
  2836. " - 'Square:' the corner is met in a sharp angle.\n"
  2837. " - 'Beveled:' the corner is a line that directly connects the features "
  2838. "meeting in the corner"
  2839. #: flatcamEditors/FlatCAMGrbEditor.py:2434 flatcamGUI/FlatCAMGUI.py:717
  2840. #: flatcamGUI/FlatCAMGUI.py:1946
  2841. msgid "Buffer"
  2842. msgstr "Buffer"
  2843. #: flatcamEditors/FlatCAMGrbEditor.py:2448
  2844. msgid "Scale Aperture:"
  2845. msgstr "Scale Aperture:"
  2846. #: flatcamEditors/FlatCAMGrbEditor.py:2450
  2847. msgid "Scale a aperture in the aperture list"
  2848. msgstr "Scale a aperture in the aperture list"
  2849. #: flatcamEditors/FlatCAMGrbEditor.py:2458
  2850. msgid "Scale factor:"
  2851. msgstr "Scale factor:"
  2852. #: flatcamEditors/FlatCAMGrbEditor.py:2460
  2853. msgid ""
  2854. "The factor by which to scale the selected aperture.\n"
  2855. "Values can be between 0.0000 and 999.9999"
  2856. msgstr ""
  2857. "The factor by which to scale the selected aperture.\n"
  2858. "Values can be between 0.0000 and 999.9999"
  2859. #: flatcamEditors/FlatCAMGrbEditor.py:2488 flatcamGUI/FlatCAMGUI.py:707
  2860. #: flatcamGUI/FlatCAMGUI.py:1936
  2861. msgid "Add Pad Array"
  2862. msgstr "Add Pad Array"
  2863. #: flatcamEditors/FlatCAMGrbEditor.py:2490
  2864. msgid "Add an array of pads (linear or circular array)"
  2865. msgstr "Add an array of pads (linear or circular array)"
  2866. #: flatcamEditors/FlatCAMGrbEditor.py:2496
  2867. msgid ""
  2868. "Select the type of pads array to create.\n"
  2869. "It can be Linear X(Y) or Circular"
  2870. msgstr ""
  2871. "Select the type of pads array to create.\n"
  2872. "It can be Linear X(Y) or Circular"
  2873. #: flatcamEditors/FlatCAMGrbEditor.py:2507
  2874. msgid "Nr of pads:"
  2875. msgstr "Nr of pads:"
  2876. #: flatcamEditors/FlatCAMGrbEditor.py:2509
  2877. msgid "Specify how many pads to be in the array."
  2878. msgstr "Specify how many pads to be in the array."
  2879. #: flatcamEditors/FlatCAMGrbEditor.py:2986
  2880. #: flatcamEditors/FlatCAMGrbEditor.py:2990
  2881. msgid ""
  2882. "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and "
  2883. "retry."
  2884. msgstr ""
  2885. "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and "
  2886. "retry."
  2887. #: flatcamEditors/FlatCAMGrbEditor.py:3026
  2888. msgid ""
  2889. "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it "
  2890. "in format (width, height) and retry."
  2891. msgstr ""
  2892. "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it "
  2893. "in format (width, height) and retry."
  2894. #: flatcamEditors/FlatCAMGrbEditor.py:3038
  2895. msgid ""
  2896. "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and "
  2897. "retry."
  2898. msgstr ""
  2899. "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and "
  2900. "retry."
  2901. #: flatcamEditors/FlatCAMGrbEditor.py:3049
  2902. msgid "[WARNING_NOTCL] Aperture already in the aperture table."
  2903. msgstr "[WARNING_NOTCL] Aperture already in the aperture table."
  2904. #: flatcamEditors/FlatCAMGrbEditor.py:3056
  2905. #, python-brace-format
  2906. msgid "[success] Added new aperture with code: {apid}"
  2907. msgstr "[success] Added new aperture with code: {apid}"
  2908. #: flatcamEditors/FlatCAMGrbEditor.py:3084
  2909. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table"
  2910. msgstr "[WARNING_NOTCL] Select an aperture in Aperture Table"
  2911. #: flatcamEditors/FlatCAMGrbEditor.py:3090
  2912. #, python-format
  2913. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
  2914. msgstr "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
  2915. #: flatcamEditors/FlatCAMGrbEditor.py:3113
  2916. #, python-brace-format
  2917. msgid "[success] Deleted aperture with code: {del_dia}"
  2918. msgstr "[success] Deleted aperture with code: {del_dia}"
  2919. #: flatcamEditors/FlatCAMGrbEditor.py:3533
  2920. #, python-format
  2921. msgid "Adding aperture: %s geo ..."
  2922. msgstr "Adding aperture: %s geo ..."
  2923. #: flatcamEditors/FlatCAMGrbEditor.py:3718
  2924. msgid ""
  2925. "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber "
  2926. "creation."
  2927. msgstr ""
  2928. "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber "
  2929. "creation."
  2930. #: flatcamEditors/FlatCAMGrbEditor.py:3721
  2931. msgid "[ERROR] An internal error has occurred. See shell.\n"
  2932. msgstr "[ERROR] An internal error has occurred. See shell.\n"
  2933. #: flatcamEditors/FlatCAMGrbEditor.py:3726
  2934. msgid "Creating Gerber."
  2935. msgstr "Creating Gerber."
  2936. #: flatcamEditors/FlatCAMGrbEditor.py:3734
  2937. msgid "[success] Gerber editing finished."
  2938. msgstr "[success] Gerber editing finished."
  2939. #: flatcamEditors/FlatCAMGrbEditor.py:3750
  2940. msgid "[WARNING_NOTCL] Cancelled. No aperture is selected"
  2941. msgstr "[WARNING_NOTCL] Cancelled. No aperture is selected"
  2942. #: flatcamEditors/FlatCAMGrbEditor.py:4280
  2943. msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected."
  2944. msgstr "[ERROR_NOTCL] Failed. No aperture geometry is selected."
  2945. #: flatcamEditors/FlatCAMGrbEditor.py:4288
  2946. msgid "[success] Done. Apertures geometry deleted."
  2947. msgstr "[success] Done. Apertures geometry deleted."
  2948. #: flatcamEditors/FlatCAMGrbEditor.py:4431
  2949. msgid ""
  2950. "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try "
  2951. "again."
  2952. msgstr ""
  2953. "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try "
  2954. "again."
  2955. #: flatcamEditors/FlatCAMGrbEditor.py:4444
  2956. #, python-format
  2957. msgid ""
  2958. "[ERROR_NOTCL] Failed.\n"
  2959. "%s"
  2960. msgstr ""
  2961. "[ERROR_NOTCL] Failed.\n"
  2962. "%s"
  2963. #: flatcamEditors/FlatCAMGrbEditor.py:4461
  2964. msgid ""
  2965. "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
  2966. "retry."
  2967. msgstr ""
  2968. "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
  2969. "retry."
  2970. #: flatcamEditors/FlatCAMGrbEditor.py:4494
  2971. msgid ""
  2972. "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
  2973. "again."
  2974. msgstr ""
  2975. "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
  2976. "again."
  2977. #: flatcamEditors/FlatCAMGrbEditor.py:4510
  2978. msgid "[success] Done. Scale Tool completed."
  2979. msgstr "[success] Done. Scale Tool completed."
  2980. #: flatcamGUI/FlatCAMGUI.py:50
  2981. msgid "&File"
  2982. msgstr "&File"
  2983. #: flatcamGUI/FlatCAMGUI.py:55
  2984. msgid "&New Project ...\tCTRL+N"
  2985. msgstr "&New Project ...\tCTRL+N"
  2986. #: flatcamGUI/FlatCAMGUI.py:57
  2987. msgid "Will create a new, blank project"
  2988. msgstr "Will create a new, blank project"
  2989. #: flatcamGUI/FlatCAMGUI.py:62
  2990. msgid "&New"
  2991. msgstr "&New"
  2992. #: flatcamGUI/FlatCAMGUI.py:65
  2993. msgid "Geometry\tN"
  2994. msgstr "Geometry\tN"
  2995. #: flatcamGUI/FlatCAMGUI.py:67
  2996. msgid "Will create a new, empty Geometry Object."
  2997. msgstr "Will create a new, empty Geometry Object."
  2998. #: flatcamGUI/FlatCAMGUI.py:69
  2999. msgid "Gerber\tB"
  3000. msgstr "Gerber\tB"
  3001. #: flatcamGUI/FlatCAMGUI.py:71
  3002. msgid "Will create a new, empty Gerber Object."
  3003. msgstr "Will create a new, empty Gerber Object."
  3004. #: flatcamGUI/FlatCAMGUI.py:73
  3005. msgid "Excellon\tL"
  3006. msgstr "Excellon\tL"
  3007. #: flatcamGUI/FlatCAMGUI.py:75
  3008. msgid "Will create a new, empty Excellon Object."
  3009. msgstr "Will create a new, empty Excellon Object."
  3010. #: flatcamGUI/FlatCAMGUI.py:78 flatcamTools/ToolPcbWizard.py:63
  3011. #: flatcamTools/ToolPcbWizard.py:71
  3012. msgid "Open"
  3013. msgstr "Open"
  3014. #: flatcamGUI/FlatCAMGUI.py:83
  3015. msgid "Open &Gerber ...\tCTRL+G"
  3016. msgstr "Open &Gerber ...\tCTRL+G"
  3017. #: flatcamGUI/FlatCAMGUI.py:90
  3018. msgid "Open &Excellon ...\tCTRL+E"
  3019. msgstr "Open &Excellon ...\tCTRL+E"
  3020. #: flatcamGUI/FlatCAMGUI.py:95
  3021. msgid "Open G-&Code ..."
  3022. msgstr "Open G-&Code ..."
  3023. #: flatcamGUI/FlatCAMGUI.py:99
  3024. msgid "Open &Project ..."
  3025. msgstr "Open &Project ..."
  3026. #: flatcamGUI/FlatCAMGUI.py:105
  3027. msgid "Open Config ..."
  3028. msgstr "Open Config ..."
  3029. #: flatcamGUI/FlatCAMGUI.py:109
  3030. msgid "Recent files"
  3031. msgstr "Recent files"
  3032. #: flatcamGUI/FlatCAMGUI.py:115
  3033. msgid "Scripting"
  3034. msgstr "Scripting"
  3035. #: flatcamGUI/FlatCAMGUI.py:118
  3036. msgid "New Script ..."
  3037. msgstr "New Script ..."
  3038. #: flatcamGUI/FlatCAMGUI.py:120
  3039. msgid "Open Script ..."
  3040. msgstr "Open Script ..."
  3041. #: flatcamGUI/FlatCAMGUI.py:122
  3042. msgid "Run Script ...\tSHIFT+S"
  3043. msgstr "Run Script ...\tSHIFT+S"
  3044. #: flatcamGUI/FlatCAMGUI.py:125
  3045. msgid ""
  3046. "Will run the opened Tcl Script thus\n"
  3047. "enabling the automation of certain\n"
  3048. "functions of FlatCAM."
  3049. msgstr ""
  3050. "Will run the opened Tcl Script thus\n"
  3051. "enabling the automation of certain\n"
  3052. "functions of FlatCAM."
  3053. #: flatcamGUI/FlatCAMGUI.py:138
  3054. msgid "Import"
  3055. msgstr "Import"
  3056. #: flatcamGUI/FlatCAMGUI.py:140
  3057. msgid "&SVG as Geometry Object ..."
  3058. msgstr "&SVG as Geometry Object ..."
  3059. #: flatcamGUI/FlatCAMGUI.py:143
  3060. msgid "&SVG as Gerber Object ..."
  3061. msgstr "&SVG as Gerber Object ..."
  3062. #: flatcamGUI/FlatCAMGUI.py:148
  3063. msgid "&DXF as Geometry Object ..."
  3064. msgstr "&DXF as Geometry Object ..."
  3065. #: flatcamGUI/FlatCAMGUI.py:151
  3066. msgid "&DXF as Gerber Object ..."
  3067. msgstr "&DXF as Gerber Object ..."
  3068. #: flatcamGUI/FlatCAMGUI.py:156
  3069. msgid "Export"
  3070. msgstr "Export"
  3071. #: flatcamGUI/FlatCAMGUI.py:159
  3072. msgid "Export &SVG ..."
  3073. msgstr "Export &SVG ..."
  3074. #: flatcamGUI/FlatCAMGUI.py:162
  3075. msgid "Export DXF ..."
  3076. msgstr "Export DXF ..."
  3077. #: flatcamGUI/FlatCAMGUI.py:167
  3078. msgid "Export &PNG ..."
  3079. msgstr "Export &PNG ..."
  3080. #: flatcamGUI/FlatCAMGUI.py:169
  3081. msgid ""
  3082. "Will export an image in PNG format,\n"
  3083. "the saved image will contain the visual \n"
  3084. "information currently in FlatCAM Plot Area."
  3085. msgstr ""
  3086. "Will export an image in PNG format,\n"
  3087. "the saved image will contain the visual \n"
  3088. "information currently in FlatCAM Plot Area."
  3089. #: flatcamGUI/FlatCAMGUI.py:177
  3090. msgid "Export &Excellon ..."
  3091. msgstr "Export &Excellon ..."
  3092. #: flatcamGUI/FlatCAMGUI.py:180
  3093. msgid ""
  3094. "Will export an Excellon Object as Excellon file,\n"
  3095. "the coordinates format, the file units and zeros\n"
  3096. "are set in Preferences -> Excellon Export."
  3097. msgstr ""
  3098. "Will export an Excellon Object as Excellon file,\n"
  3099. "the coordinates format, the file units and zeros\n"
  3100. "are set in Preferences -> Excellon Export."
  3101. #: flatcamGUI/FlatCAMGUI.py:186
  3102. msgid "Export &Gerber ..."
  3103. msgstr "Export &Gerber ..."
  3104. #: flatcamGUI/FlatCAMGUI.py:189
  3105. msgid ""
  3106. "Will export an Gerber Object as Gerber file,\n"
  3107. "the coordinates format, the file units and zeros\n"
  3108. "are set in Preferences -> Gerber Export."
  3109. msgstr ""
  3110. "Will export an Gerber Object as Gerber file,\n"
  3111. "the coordinates format, the file units and zeros\n"
  3112. "are set in Preferences -> Gerber Export."
  3113. #: flatcamGUI/FlatCAMGUI.py:199
  3114. msgid "Save &Defaults"
  3115. msgstr "Save &Defaults"
  3116. #: flatcamGUI/FlatCAMGUI.py:205 flatcamGUI/FlatCAMGUI.py:528
  3117. msgid "Save"
  3118. msgstr "Save"
  3119. #: flatcamGUI/FlatCAMGUI.py:208
  3120. msgid "&Save Project ..."
  3121. msgstr "&Save Project ..."
  3122. #: flatcamGUI/FlatCAMGUI.py:213
  3123. msgid "Save Project &As ...\tCTRL+S"
  3124. msgstr "Save Project &As ...\tCTRL+S"
  3125. #: flatcamGUI/FlatCAMGUI.py:217
  3126. msgid "Save Project C&opy ..."
  3127. msgstr "Save Project C&opy ..."
  3128. #: flatcamGUI/FlatCAMGUI.py:225
  3129. msgid "E&xit"
  3130. msgstr "E&xit"
  3131. #: flatcamGUI/FlatCAMGUI.py:231
  3132. msgid "&Edit"
  3133. msgstr "&Edit"
  3134. #: flatcamGUI/FlatCAMGUI.py:234
  3135. msgid "Edit Object\tE"
  3136. msgstr "Edit Object\tE"
  3137. #: flatcamGUI/FlatCAMGUI.py:235
  3138. msgid "Close Editor\tCTRL+S"
  3139. msgstr "Close Editor\tCTRL+S"
  3140. #: flatcamGUI/FlatCAMGUI.py:243
  3141. msgid "Conversion"
  3142. msgstr "Conversion"
  3143. #: flatcamGUI/FlatCAMGUI.py:245
  3144. msgid "&Join Geo/Gerber/Exc -> Geo"
  3145. msgstr "&Join Geo/Gerber/Exc -> Geo"
  3146. #: flatcamGUI/FlatCAMGUI.py:247
  3147. msgid ""
  3148. "Merge a selection of objects, which can be of type:\n"
  3149. "- Gerber\n"
  3150. "- Excellon\n"
  3151. "- Geometry\n"
  3152. "into a new combo Geometry object."
  3153. msgstr ""
  3154. "Merge a selection of objects, which can be of type:\n"
  3155. "- Gerber\n"
  3156. "- Excellon\n"
  3157. "- Geometry\n"
  3158. "into a new combo Geometry object."
  3159. #: flatcamGUI/FlatCAMGUI.py:254
  3160. msgid "Join Excellon(s) -> Excellon"
  3161. msgstr "Join Excellon(s) -> Excellon"
  3162. #: flatcamGUI/FlatCAMGUI.py:256
  3163. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  3164. msgstr ""
  3165. "Merge a selection of Excellon objects into a new combo Excellon object."
  3166. #: flatcamGUI/FlatCAMGUI.py:259
  3167. msgid "Join Gerber(s) -> Gerber"
  3168. msgstr "Join Gerber(s) -> Gerber"
  3169. #: flatcamGUI/FlatCAMGUI.py:261
  3170. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  3171. msgstr "Merge a selection of Gerber objects into a new combo Gerber object."
  3172. #: flatcamGUI/FlatCAMGUI.py:266
  3173. msgid "Convert Single to MultiGeo"
  3174. msgstr "Convert Single to MultiGeo"
  3175. #: flatcamGUI/FlatCAMGUI.py:268
  3176. msgid ""
  3177. "Will convert a Geometry object from single_geometry type\n"
  3178. "to a multi_geometry type."
  3179. msgstr ""
  3180. "Will convert a Geometry object from single_geometry type\n"
  3181. "to a multi_geometry type."
  3182. #: flatcamGUI/FlatCAMGUI.py:272
  3183. msgid "Convert Multi to SingleGeo"
  3184. msgstr "Convert Multi to SingleGeo"
  3185. #: flatcamGUI/FlatCAMGUI.py:274
  3186. msgid ""
  3187. "Will convert a Geometry object from multi_geometry type\n"
  3188. "to a single_geometry type."
  3189. msgstr ""
  3190. "Will convert a Geometry object from multi_geometry type\n"
  3191. "to a single_geometry type."
  3192. #: flatcamGUI/FlatCAMGUI.py:280
  3193. msgid "Convert Any to Geo"
  3194. msgstr "Convert Any to Geo"
  3195. #: flatcamGUI/FlatCAMGUI.py:282
  3196. msgid "Convert Any to Gerber"
  3197. msgstr "Convert Any to Gerber"
  3198. #: flatcamGUI/FlatCAMGUI.py:287
  3199. msgid "&Copy\tCTRL+C"
  3200. msgstr "&Copy\tCTRL+C"
  3201. #: flatcamGUI/FlatCAMGUI.py:291
  3202. msgid "&Delete\tDEL"
  3203. msgstr "&Delete\tDEL"
  3204. #: flatcamGUI/FlatCAMGUI.py:295
  3205. msgid "Se&t Origin\tO"
  3206. msgstr "Se&t Origin\tO"
  3207. #: flatcamGUI/FlatCAMGUI.py:296
  3208. msgid "Jump to Location\tJ"
  3209. msgstr "Jump to Location\tJ"
  3210. #: flatcamGUI/FlatCAMGUI.py:301
  3211. msgid "Toggle Units\tQ"
  3212. msgstr "Toggle Units\tQ"
  3213. #: flatcamGUI/FlatCAMGUI.py:303
  3214. msgid "&Select All\tCTRL+A"
  3215. msgstr "&Select All\tCTRL+A"
  3216. #: flatcamGUI/FlatCAMGUI.py:307
  3217. msgid "&Preferences\tSHIFT+P"
  3218. msgstr "&Preferences\tSHIFT+P"
  3219. #: flatcamGUI/FlatCAMGUI.py:310
  3220. msgid "&Options"
  3221. msgstr "&Options"
  3222. #: flatcamGUI/FlatCAMGUI.py:325
  3223. msgid "&Rotate Selection\tSHIFT+(R)"
  3224. msgstr "&Rotate Selection\tSHIFT+(R)"
  3225. #: flatcamGUI/FlatCAMGUI.py:330
  3226. msgid "&Skew on X axis\tSHIFT+X"
  3227. msgstr "&Skew on X axis\tSHIFT+X"
  3228. #: flatcamGUI/FlatCAMGUI.py:332
  3229. msgid "S&kew on Y axis\tSHIFT+Y"
  3230. msgstr "S&kew on Y axis\tSHIFT+Y"
  3231. #: flatcamGUI/FlatCAMGUI.py:337
  3232. msgid "Flip on &X axis\tX"
  3233. msgstr "Flip on &X axis\tX"
  3234. #: flatcamGUI/FlatCAMGUI.py:339
  3235. msgid "Flip on &Y axis\tY"
  3236. msgstr "Flip on &Y axis\tY"
  3237. #: flatcamGUI/FlatCAMGUI.py:344
  3238. msgid "View source\tALT+S"
  3239. msgstr "View source\tALT+S"
  3240. #: flatcamGUI/FlatCAMGUI.py:349
  3241. msgid "&View"
  3242. msgstr "&View"
  3243. #: flatcamGUI/FlatCAMGUI.py:350
  3244. msgid "Enable all plots\tALT+1"
  3245. msgstr "Enable all plots\tALT+1"
  3246. #: flatcamGUI/FlatCAMGUI.py:352
  3247. msgid "Disable all plots\tALT+2"
  3248. msgstr "Disable all plots\tALT+2"
  3249. #: flatcamGUI/FlatCAMGUI.py:354
  3250. msgid "Disable non-selected\tALT+3"
  3251. msgstr "Disable non-selected\tALT+3"
  3252. #: flatcamGUI/FlatCAMGUI.py:357
  3253. msgid "&Zoom Fit\tV"
  3254. msgstr "&Zoom Fit\tV"
  3255. #: flatcamGUI/FlatCAMGUI.py:358
  3256. msgid "&Zoom In\t="
  3257. msgstr "&Zoom In\t="
  3258. #: flatcamGUI/FlatCAMGUI.py:359
  3259. msgid "&Zoom Out\t-"
  3260. msgstr "&Zoom Out\t-"
  3261. #: flatcamGUI/FlatCAMGUI.py:363
  3262. msgid "Toggle Code Editor\tCTRL+E"
  3263. msgstr "Toggle Code Editor\tCTRL+E"
  3264. #: flatcamGUI/FlatCAMGUI.py:366
  3265. msgid "&Toggle FullScreen\tALT+F10"
  3266. msgstr "&Toggle FullScreen\tALT+F10"
  3267. #: flatcamGUI/FlatCAMGUI.py:368
  3268. msgid "&Toggle Plot Area\tCTRL+F10"
  3269. msgstr "&Toggle Plot Area\tCTRL+F10"
  3270. #: flatcamGUI/FlatCAMGUI.py:370
  3271. msgid "&Toggle Project/Sel/Tool\t`"
  3272. msgstr "&Toggle Project/Sel/Tool\t`"
  3273. #: flatcamGUI/FlatCAMGUI.py:373
  3274. msgid "&Toggle Grid Snap\tG"
  3275. msgstr "&Toggle Grid Snap\tG"
  3276. #: flatcamGUI/FlatCAMGUI.py:375
  3277. msgid "&Toggle Axis\tSHIFT+G"
  3278. msgstr "&Toggle Axis\tSHIFT+G"
  3279. #: flatcamGUI/FlatCAMGUI.py:378
  3280. msgid "Toggle Workspace\tSHIFT+W"
  3281. msgstr "Toggle Workspace\tSHIFT+W"
  3282. #: flatcamGUI/FlatCAMGUI.py:381
  3283. msgid "&Tool"
  3284. msgstr "&Tool"
  3285. #: flatcamGUI/FlatCAMGUI.py:383
  3286. msgid "&Command Line\tS"
  3287. msgstr "&Command Line\tS"
  3288. #: flatcamGUI/FlatCAMGUI.py:386
  3289. msgid "&Help"
  3290. msgstr "&Help"
  3291. #: flatcamGUI/FlatCAMGUI.py:387
  3292. msgid "Help\tF1"
  3293. msgstr "Help\tF1"
  3294. #: flatcamGUI/FlatCAMGUI.py:388
  3295. msgid "FlatCAM.org"
  3296. msgstr "FlatCAM.org"
  3297. #: flatcamGUI/FlatCAMGUI.py:391
  3298. msgid "Shortcuts List\tF3"
  3299. msgstr "Shortcuts List\tF3"
  3300. #: flatcamGUI/FlatCAMGUI.py:392
  3301. msgid "YouTube Channel\tF4"
  3302. msgstr "YouTube Channel\tF4"
  3303. #: flatcamGUI/FlatCAMGUI.py:394
  3304. msgid "About"
  3305. msgstr "About"
  3306. #: flatcamGUI/FlatCAMGUI.py:401
  3307. msgid "Add Circle\tO"
  3308. msgstr "Add Circle\tO"
  3309. #: flatcamGUI/FlatCAMGUI.py:403
  3310. msgid "Add Arc\tA"
  3311. msgstr "Add Arc\tA"
  3312. #: flatcamGUI/FlatCAMGUI.py:406
  3313. msgid "Add Rectangle\tR"
  3314. msgstr "Add Rectangle\tR"
  3315. #: flatcamGUI/FlatCAMGUI.py:409
  3316. msgid "Add Polygon\tN"
  3317. msgstr "Add Polygon\tN"
  3318. #: flatcamGUI/FlatCAMGUI.py:411
  3319. msgid "Add Path\tP"
  3320. msgstr "Add Path\tP"
  3321. #: flatcamGUI/FlatCAMGUI.py:413
  3322. msgid "Add Text\tT"
  3323. msgstr "Add Text\tT"
  3324. #: flatcamGUI/FlatCAMGUI.py:416
  3325. msgid "Polygon Union\tU"
  3326. msgstr "Polygon Union\tU"
  3327. #: flatcamGUI/FlatCAMGUI.py:418
  3328. msgid "Polygon Intersection\tE"
  3329. msgstr "Polygon Intersection\tE"
  3330. #: flatcamGUI/FlatCAMGUI.py:420
  3331. msgid "Polygon Subtraction\tS"
  3332. msgstr "Polygon Subtraction\tS"
  3333. #: flatcamGUI/FlatCAMGUI.py:424
  3334. msgid "Cut Path\tX"
  3335. msgstr "Cut Path\tX"
  3336. #: flatcamGUI/FlatCAMGUI.py:426
  3337. msgid "Copy Geom\tC"
  3338. msgstr "Copy Geom\tC"
  3339. #: flatcamGUI/FlatCAMGUI.py:428
  3340. msgid "Delete Shape\tDEL"
  3341. msgstr "Delete Shape\tDEL"
  3342. #: flatcamGUI/FlatCAMGUI.py:431 flatcamGUI/FlatCAMGUI.py:503
  3343. msgid "Move\tM"
  3344. msgstr "Move\tM"
  3345. #: flatcamGUI/FlatCAMGUI.py:433
  3346. msgid "Buffer Tool\tB"
  3347. msgstr "Buffer Tool\tB"
  3348. #: flatcamGUI/FlatCAMGUI.py:436
  3349. msgid "Paint Tool\tI"
  3350. msgstr "Paint Tool\tI"
  3351. #: flatcamGUI/FlatCAMGUI.py:439
  3352. msgid "Transform Tool\tALT+R"
  3353. msgstr "Transform Tool\tALT+R"
  3354. #: flatcamGUI/FlatCAMGUI.py:443
  3355. msgid "Toggle Corner Snap\tK"
  3356. msgstr "Toggle Corner Snap\tK"
  3357. #: flatcamGUI/FlatCAMGUI.py:446
  3358. msgid ">Excellon Editor<"
  3359. msgstr ">Excellon Editor<"
  3360. #: flatcamGUI/FlatCAMGUI.py:450
  3361. msgid "Add Drill Array\tA"
  3362. msgstr "Add Drill Array\tA"
  3363. #: flatcamGUI/FlatCAMGUI.py:452
  3364. msgid "Add Drill\tD"
  3365. msgstr "Add Drill\tD"
  3366. #: flatcamGUI/FlatCAMGUI.py:456
  3367. msgid "Resize Drill(S)\tR"
  3368. msgstr "Resize Drill(S)\tR"
  3369. #: flatcamGUI/FlatCAMGUI.py:458 flatcamGUI/FlatCAMGUI.py:496
  3370. msgid "Copy\tC"
  3371. msgstr "Copy\tC"
  3372. #: flatcamGUI/FlatCAMGUI.py:460 flatcamGUI/FlatCAMGUI.py:498
  3373. msgid "Delete\tDEL"
  3374. msgstr "Delete\tDEL"
  3375. #: flatcamGUI/FlatCAMGUI.py:465
  3376. msgid "Move Drill(s)\tM"
  3377. msgstr "Move Drill(s)\tM"
  3378. #: flatcamGUI/FlatCAMGUI.py:468
  3379. msgid ">Gerber Editor<"
  3380. msgstr ">Gerber Editor<"
  3381. #: flatcamGUI/FlatCAMGUI.py:472
  3382. msgid "Add Pad\tP"
  3383. msgstr "Add Pad\tP"
  3384. #: flatcamGUI/FlatCAMGUI.py:474
  3385. msgid "Add Pad Array\tA"
  3386. msgstr "Add Pad Array\tA"
  3387. #: flatcamGUI/FlatCAMGUI.py:476
  3388. msgid "Add Track\tT"
  3389. msgstr "Add Track\tT"
  3390. #: flatcamGUI/FlatCAMGUI.py:478
  3391. msgid "Add Region\tN"
  3392. msgstr "Add Region\tN"
  3393. #: flatcamGUI/FlatCAMGUI.py:482
  3394. msgid "Poligonize\tALT+N"
  3395. msgstr "Poligonize\tALT+N"
  3396. #: flatcamGUI/FlatCAMGUI.py:484
  3397. msgid "Add SemiDisc\tE"
  3398. msgstr "Add SemiDisc\tE"
  3399. #: flatcamGUI/FlatCAMGUI.py:486
  3400. msgid "Add Disc\tD"
  3401. msgstr "Add Disc\tD"
  3402. #: flatcamGUI/FlatCAMGUI.py:488
  3403. msgid "Buffer\tB"
  3404. msgstr "Buffer\tB"
  3405. #: flatcamGUI/FlatCAMGUI.py:490
  3406. msgid "Scale\tS"
  3407. msgstr "Scale\tS"
  3408. #: flatcamGUI/FlatCAMGUI.py:492
  3409. msgid "Transform\tALT+R"
  3410. msgstr "Transform\tALT+R"
  3411. #: flatcamGUI/FlatCAMGUI.py:519
  3412. msgid "Enable Plot"
  3413. msgstr "Enable Plot"
  3414. #: flatcamGUI/FlatCAMGUI.py:520 flatcamGUI/FlatCAMGUI.py:1577
  3415. msgid "Disable Plot"
  3416. msgstr "Disable Plot"
  3417. #: flatcamGUI/FlatCAMGUI.py:522
  3418. msgid "Generate CNC"
  3419. msgstr "Generate CNC"
  3420. #: flatcamGUI/FlatCAMGUI.py:523
  3421. msgid "View Source"
  3422. msgstr "View Source"
  3423. #: flatcamGUI/FlatCAMGUI.py:525 flatcamGUI/FlatCAMGUI.py:1617
  3424. msgid "Edit"
  3425. msgstr "Edit"
  3426. #: flatcamGUI/FlatCAMGUI.py:531 flatcamGUI/FlatCAMGUI.py:1623
  3427. #: flatcamTools/ToolProperties.py:25
  3428. msgid "Properties"
  3429. msgstr "Properties"
  3430. #: flatcamGUI/FlatCAMGUI.py:560
  3431. msgid "File Toolbar"
  3432. msgstr "File Toolbar"
  3433. #: flatcamGUI/FlatCAMGUI.py:564
  3434. msgid "Edit Toolbar"
  3435. msgstr "Edit Toolbar"
  3436. #: flatcamGUI/FlatCAMGUI.py:568
  3437. msgid "View Toolbar"
  3438. msgstr "View Toolbar"
  3439. #: flatcamGUI/FlatCAMGUI.py:572
  3440. msgid "Shell Toolbar"
  3441. msgstr "Shell Toolbar"
  3442. #: flatcamGUI/FlatCAMGUI.py:576
  3443. msgid "Tools Toolbar"
  3444. msgstr "Tools Toolbar"
  3445. #: flatcamGUI/FlatCAMGUI.py:580
  3446. msgid "Excellon Editor Toolbar"
  3447. msgstr "Excellon Editor Toolbar"
  3448. #: flatcamGUI/FlatCAMGUI.py:584
  3449. msgid "Geometry Editor Toolbar"
  3450. msgstr "Geometry Editor Toolbar"
  3451. #: flatcamGUI/FlatCAMGUI.py:588
  3452. msgid "Gerber Editor Toolbar"
  3453. msgstr "Gerber Editor Toolbar"
  3454. #: flatcamGUI/FlatCAMGUI.py:592
  3455. msgid "Grid Toolbar"
  3456. msgstr "Grid Toolbar"
  3457. #: flatcamGUI/FlatCAMGUI.py:611 flatcamGUI/FlatCAMGUI.py:1835
  3458. msgid "Open project"
  3459. msgstr "Open project"
  3460. #: flatcamGUI/FlatCAMGUI.py:612 flatcamGUI/FlatCAMGUI.py:1836
  3461. msgid "Save project"
  3462. msgstr "Save project"
  3463. #: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1839
  3464. msgid "New Blank Geometry"
  3465. msgstr "New Blank Geometry"
  3466. #: flatcamGUI/FlatCAMGUI.py:616
  3467. msgid "New Blank Gerber"
  3468. msgstr "New Blank Gerber"
  3469. #: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1840
  3470. msgid "New Blank Excellon"
  3471. msgstr "New Blank Excellon"
  3472. #: flatcamGUI/FlatCAMGUI.py:619 flatcamGUI/FlatCAMGUI.py:1842
  3473. msgid "Editor"
  3474. msgstr "Editor"
  3475. #: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1844
  3476. msgid "Save Object and close the Editor"
  3477. msgstr "Save Object and close the Editor"
  3478. #: flatcamGUI/FlatCAMGUI.py:625 flatcamGUI/FlatCAMGUI.py:1848
  3479. msgid "&Delete"
  3480. msgstr "&Delete"
  3481. #: flatcamGUI/FlatCAMGUI.py:628 flatcamGUI/FlatCAMGUI.py:1851
  3482. msgid "&Replot"
  3483. msgstr "&Replot"
  3484. #: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1852
  3485. msgid "&Clear plot"
  3486. msgstr "&Clear plot"
  3487. #: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1853
  3488. msgid "Zoom In"
  3489. msgstr "Zoom In"
  3490. #: flatcamGUI/FlatCAMGUI.py:631 flatcamGUI/FlatCAMGUI.py:1854
  3491. msgid "Zoom Out"
  3492. msgstr "Zoom Out"
  3493. #: flatcamGUI/FlatCAMGUI.py:632 flatcamGUI/FlatCAMGUI.py:1592
  3494. #: flatcamGUI/FlatCAMGUI.py:1855
  3495. msgid "Zoom Fit"
  3496. msgstr "Zoom Fit"
  3497. #: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1860
  3498. msgid "&Command Line"
  3499. msgstr "&Command Line"
  3500. #: flatcamGUI/FlatCAMGUI.py:640 flatcamGUI/FlatCAMGUI.py:1863
  3501. msgid "2Sided Tool"
  3502. msgstr "2Sided Tool"
  3503. #: flatcamGUI/FlatCAMGUI.py:641 flatcamGUI/FlatCAMGUI.py:1864
  3504. msgid "&Cutout Tool"
  3505. msgstr "&Cutout Tool"
  3506. #: flatcamGUI/FlatCAMGUI.py:642 flatcamGUI/FlatCAMGUI.py:1865
  3507. #: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:285
  3508. msgid "NCC Tool"
  3509. msgstr "NCC Tool"
  3510. #: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1869
  3511. msgid "Panel Tool"
  3512. msgstr "Panel Tool"
  3513. #: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1870
  3514. #: flatcamTools/ToolFilm.py:204
  3515. msgid "Film Tool"
  3516. msgstr "Film Tool"
  3517. #: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1872
  3518. #: flatcamTools/ToolSolderPaste.py:451
  3519. msgid "SolderPaste Tool"
  3520. msgstr "SolderPaste Tool"
  3521. #: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1873
  3522. #: flatcamTools/ToolSub.py:26
  3523. msgid "Substract Tool"
  3524. msgstr "Substract Tool"
  3525. #: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1878
  3526. msgid "Calculators Tool"
  3527. msgstr "Calculators Tool"
  3528. #: flatcamGUI/FlatCAMGUI.py:657 flatcamGUI/FlatCAMGUI.py:671
  3529. #: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:1882
  3530. #: flatcamGUI/FlatCAMGUI.py:1934
  3531. msgid "Select"
  3532. msgstr "Select"
  3533. #: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1883
  3534. msgid "Add Drill Hole"
  3535. msgstr "Add Drill Hole"
  3536. #: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:1885
  3537. msgid "Add Drill Hole Array"
  3538. msgstr "Add Drill Hole Array"
  3539. #: flatcamGUI/FlatCAMGUI.py:661 flatcamGUI/FlatCAMGUI.py:1886
  3540. msgid "Resize Drill"
  3541. msgstr "Resize Drill"
  3542. #: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:1889
  3543. msgid "Copy Drill"
  3544. msgstr "Copy Drill"
  3545. #: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1891
  3546. msgid "Delete Drill"
  3547. msgstr "Delete Drill"
  3548. #: flatcamGUI/FlatCAMGUI.py:668 flatcamGUI/FlatCAMGUI.py:1894
  3549. msgid "Move Drill"
  3550. msgstr "Move Drill"
  3551. #: flatcamGUI/FlatCAMGUI.py:672 flatcamGUI/FlatCAMGUI.py:1898
  3552. msgid "Add Circle"
  3553. msgstr "Add Circle"
  3554. #: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1899
  3555. msgid "Add Arc"
  3556. msgstr "Add Arc"
  3557. #: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:1901
  3558. msgid "Add Rectangle"
  3559. msgstr "Add Rectangle"
  3560. #: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1904
  3561. msgid "Add Path"
  3562. msgstr "Add Path"
  3563. #: flatcamGUI/FlatCAMGUI.py:679 flatcamGUI/FlatCAMGUI.py:1906
  3564. msgid "Add Polygon"
  3565. msgstr "Add Polygon"
  3566. #: flatcamGUI/FlatCAMGUI.py:681 flatcamGUI/FlatCAMGUI.py:1908
  3567. msgid "Add Text"
  3568. msgstr "Add Text"
  3569. #: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1910
  3570. msgid "Add Buffer"
  3571. msgstr "Add Buffer"
  3572. #: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1911
  3573. msgid "Paint Shape"
  3574. msgstr "Paint Shape"
  3575. #: flatcamGUI/FlatCAMGUI.py:684 flatcamGUI/FlatCAMGUI.py:719
  3576. #: flatcamGUI/FlatCAMGUI.py:1912 flatcamGUI/FlatCAMGUI.py:1948
  3577. msgid "Eraser"
  3578. msgstr "Eraser"
  3579. #: flatcamGUI/FlatCAMGUI.py:687 flatcamGUI/FlatCAMGUI.py:1916
  3580. msgid "Polygon Union"
  3581. msgstr "Polygon Union"
  3582. #: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:1918
  3583. msgid "Polygon Intersection"
  3584. msgstr "Polygon Intersection"
  3585. #: flatcamGUI/FlatCAMGUI.py:691 flatcamGUI/FlatCAMGUI.py:1920
  3586. msgid "Polygon Subtraction"
  3587. msgstr "Polygon Subtraction"
  3588. #: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:1923
  3589. msgid "Cut Path"
  3590. msgstr "Cut Path"
  3591. #: flatcamGUI/FlatCAMGUI.py:695
  3592. msgid "Copy Shape(s)"
  3593. msgstr "Copy Shape(s)"
  3594. #: flatcamGUI/FlatCAMGUI.py:698
  3595. msgid "Delete Shape '-'"
  3596. msgstr "Delete Shape '-'"
  3597. #: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:726
  3598. #: flatcamGUI/FlatCAMGUI.py:1928 flatcamGUI/FlatCAMGUI.py:1955
  3599. msgid "Transformations"
  3600. msgstr "Transformations"
  3601. #: flatcamGUI/FlatCAMGUI.py:702
  3602. msgid "Move Objects "
  3603. msgstr "Move Objects "
  3604. #: flatcamGUI/FlatCAMGUI.py:706 flatcamGUI/FlatCAMGUI.py:1935
  3605. msgid "Add Pad"
  3606. msgstr "Add Pad"
  3607. #: flatcamGUI/FlatCAMGUI.py:708 flatcamGUI/FlatCAMGUI.py:1937
  3608. msgid "Add Track"
  3609. msgstr "Add Track"
  3610. #: flatcamGUI/FlatCAMGUI.py:709 flatcamGUI/FlatCAMGUI.py:1938
  3611. msgid "Add Region"
  3612. msgstr "Add Region"
  3613. #: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:1940
  3614. msgid "Poligonize"
  3615. msgstr "Poligonize"
  3616. #: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1942
  3617. msgid "SemiDisc"
  3618. msgstr "SemiDisc"
  3619. #: flatcamGUI/FlatCAMGUI.py:714 flatcamGUI/FlatCAMGUI.py:1943
  3620. msgid "Disc"
  3621. msgstr "Disc"
  3622. #: flatcamGUI/FlatCAMGUI.py:728 flatcamGUI/FlatCAMGUI.py:1602
  3623. #: flatcamGUI/FlatCAMGUI.py:1622 flatcamGUI/FlatCAMGUI.py:1957
  3624. #: flatcamTools/ToolMove.py:26
  3625. msgid "Move"
  3626. msgstr "Move"
  3627. #: flatcamGUI/FlatCAMGUI.py:734 flatcamGUI/FlatCAMGUI.py:1963
  3628. msgid "Snap to grid"
  3629. msgstr "Snap to grid"
  3630. #: flatcamGUI/FlatCAMGUI.py:737 flatcamGUI/FlatCAMGUI.py:1966
  3631. msgid "Grid X snapping distance"
  3632. msgstr "Grid X snapping distance"
  3633. #: flatcamGUI/FlatCAMGUI.py:742 flatcamGUI/FlatCAMGUI.py:1971
  3634. msgid "Grid Y snapping distance"
  3635. msgstr "Grid Y snapping distance"
  3636. #: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:1977
  3637. msgid ""
  3638. "When active, value on Grid_X\n"
  3639. "is copied to the Grid_Y value."
  3640. msgstr ""
  3641. "When active, value on Grid_X\n"
  3642. "is copied to the Grid_Y value."
  3643. #: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:1983
  3644. msgid "Snap to corner"
  3645. msgstr "Snap to corner"
  3646. #: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:1987
  3647. #: flatcamGUI/FlatCAMGUI.py:3344
  3648. msgid "Max. magnet distance"
  3649. msgstr "Max. magnet distance"
  3650. #: flatcamGUI/FlatCAMGUI.py:786 flatcamGUI/FlatCAMGUI.py:1586
  3651. msgid "Project"
  3652. msgstr "Project"
  3653. #: flatcamGUI/FlatCAMGUI.py:796
  3654. msgid "Selected"
  3655. msgstr "Selected"
  3656. #: flatcamGUI/FlatCAMGUI.py:815 flatcamGUI/FlatCAMGUI.py:823
  3657. msgid "Plot Area"
  3658. msgstr "Plot Area"
  3659. #: flatcamGUI/FlatCAMGUI.py:847
  3660. msgid "General"
  3661. msgstr "General"
  3662. #: flatcamGUI/FlatCAMGUI.py:856
  3663. msgid "APP. DEFAULTS"
  3664. msgstr "APP. DEFAULTS"
  3665. #: flatcamGUI/FlatCAMGUI.py:857
  3666. msgid "PROJ. OPTIONS "
  3667. msgstr "PROJ. OPTIONS "
  3668. #: flatcamGUI/FlatCAMGUI.py:868
  3669. msgid "GERBER"
  3670. msgstr "GERBER"
  3671. #: flatcamGUI/FlatCAMGUI.py:877
  3672. msgid "EXCELLON"
  3673. msgstr "EXCELLON"
  3674. #: flatcamGUI/FlatCAMGUI.py:886
  3675. msgid "GEOMETRY"
  3676. msgstr "GEOMETRY"
  3677. #: flatcamGUI/FlatCAMGUI.py:896
  3678. msgid "CNC-JOB"
  3679. msgstr "CNC-JOB"
  3680. #: flatcamGUI/FlatCAMGUI.py:905
  3681. msgid "TOOLS"
  3682. msgstr "TOOLS"
  3683. #: flatcamGUI/FlatCAMGUI.py:922
  3684. msgid "Import Preferences"
  3685. msgstr "Import Preferences"
  3686. #: flatcamGUI/FlatCAMGUI.py:925
  3687. msgid ""
  3688. "Import a full set of FlatCAM settings from a file\n"
  3689. "previously saved on HDD.\n"
  3690. "\n"
  3691. "FlatCAM automatically save a 'factory_defaults' file\n"
  3692. "on the first start. Do not delete that file."
  3693. msgstr ""
  3694. "Import a full set of FlatCAM settings from a file\n"
  3695. "previously saved on HDD.\n"
  3696. "\n"
  3697. "FlatCAM automatically save a 'factory_defaults' file\n"
  3698. "on the first start. Do not delete that file."
  3699. #: flatcamGUI/FlatCAMGUI.py:932
  3700. msgid "Export Preferences"
  3701. msgstr "Export Preferences"
  3702. #: flatcamGUI/FlatCAMGUI.py:935
  3703. msgid ""
  3704. "Export a full set of FlatCAM settings in a file\n"
  3705. "that is saved on HDD."
  3706. msgstr ""
  3707. "Export a full set of FlatCAM settings in a file\n"
  3708. "that is saved on HDD."
  3709. #: flatcamGUI/FlatCAMGUI.py:940
  3710. msgid "Open Pref Folder"
  3711. msgstr "Open Pref Folder"
  3712. #: flatcamGUI/FlatCAMGUI.py:943
  3713. msgid "Open the folder where FlatCAM save the preferences files."
  3714. msgstr "Open the folder where FlatCAM save the preferences files."
  3715. #: flatcamGUI/FlatCAMGUI.py:951
  3716. msgid "Save Preferences"
  3717. msgstr "Save Preferences"
  3718. #: flatcamGUI/FlatCAMGUI.py:954
  3719. msgid ""
  3720. "Save the current settings in the 'current_defaults' file\n"
  3721. "which is the file storing the working default preferences."
  3722. msgstr ""
  3723. "Save the current settings in the 'current_defaults' file\n"
  3724. "which is the file storing the working default preferences."
  3725. #: flatcamGUI/FlatCAMGUI.py:980
  3726. msgid ""
  3727. "<b>General Shortcut list</b><br>\n"
  3728. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3729. "\"width:283px\">\n"
  3730. " <tbody>\n"
  3731. " <tr height=\"20\">\n"
  3732. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  3733. "td>\n"
  3734. " <td width=\"194\"><span style=\"color:"
  3735. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  3736. " </tr>\n"
  3737. " <tr height=\"20\">\n"
  3738. " <td height=\"20\">&nbsp;</td>\n"
  3739. " <td>&nbsp;</td>\n"
  3740. " </tr>\n"
  3741. " <tr height=\"20\">\n"
  3742. " <td height=\"20\"><strong>1</strong></td>\n"
  3743. " <td>&nbsp;Switch to Project Tab</td>\n"
  3744. " </tr>\n"
  3745. " <tr height=\"20\">\n"
  3746. " <td height=\"20\"><strong>2</strong></td>\n"
  3747. " <td>&nbsp;Switch to Selected Tab</td>\n"
  3748. " </tr>\n"
  3749. " <tr height=\"20\">\n"
  3750. " <td height=\"20\"><strong>3</strong></td>\n"
  3751. " <td>&nbsp;Switch to Tool Tab</td>\n"
  3752. " </tr>\n"
  3753. " <tr height=\"20\">\n"
  3754. " <td height=\"20\">&nbsp;</td>\n"
  3755. " <td>&nbsp;</td>\n"
  3756. " </tr>\n"
  3757. " <tr height=\"20\">\n"
  3758. " <td height=\"20\"><strong>B</strong></td>\n"
  3759. " <td>&nbsp;New Gerber</td>\n"
  3760. " </tr>\n"
  3761. " <tr height=\"20\">\n"
  3762. " <td height=\"20\"><strong>E</strong></td>\n"
  3763. " <td>&nbsp;Edit Object (if selected)</td>\n"
  3764. " </tr>\n"
  3765. " <tr height=\"20\">\n"
  3766. " <td height=\"20\"><strong>G</strong></td>\n"
  3767. " <td>&nbsp;Grid On/Off</td>\n"
  3768. " </tr>\n"
  3769. " <tr height=\"20\">\n"
  3770. " <td height=\"20\"><strong>J</strong></td>\n"
  3771. " <td>&nbsp;Jump to Coordinates</td>\n"
  3772. " </tr>\n"
  3773. " <tr height=\"20\">\n"
  3774. " <td height=\"20\"><strong>L</strong></td>\n"
  3775. " <td>&nbsp;New Excellon</td>\n"
  3776. " </tr>\n"
  3777. " <tr height=\"20\">\n"
  3778. " <td height=\"20\"><strong>M</strong></td>\n"
  3779. " <td>&nbsp;Move Obj</td>\n"
  3780. " </tr>\n"
  3781. " <tr height=\"20\">\n"
  3782. " <td height=\"20\"><strong>N</strong></td>\n"
  3783. " <td>&nbsp;New Geometry</td>\n"
  3784. " </tr>\n"
  3785. " <tr height=\"20\">\n"
  3786. " <td height=\"20\"><strong>O</strong></td>\n"
  3787. " <td>&nbsp;Set Origin</td>\n"
  3788. " </tr>\n"
  3789. " <tr height=\"20\">\n"
  3790. " <td height=\"20\"><strong>Q</strong></td>\n"
  3791. " <td>&nbsp;Change Units</td>\n"
  3792. " </tr>\n"
  3793. " <tr height=\"20\">\n"
  3794. " <td height=\"20\"><strong>P</strong></td>\n"
  3795. " <td>&nbsp;Open Properties Tool</td>\n"
  3796. " </tr>\n"
  3797. " <tr height=\"20\">\n"
  3798. " <td height=\"20\"><strong>R</strong></td>\n"
  3799. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  3800. " </tr>\n"
  3801. " <tr height=\"20\">\n"
  3802. " <td height=\"20\"><strong>S</strong></td>\n"
  3803. " <td>&nbsp;Shell Toggle</td>\n"
  3804. " </tr>\n"
  3805. " <tr height=\"20\">\n"
  3806. " <td height=\"20\"><strong>T</strong></td>\n"
  3807. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  3808. "or in Tools NCC or Tools Paint)</td>\n"
  3809. " </tr>\n"
  3810. " <tr height=\"20\">\n"
  3811. " <td height=\"20\"><strong>V</strong></td>\n"
  3812. " <td>&nbsp;Zoom Fit</td>\n"
  3813. " </tr>\n"
  3814. " <tr height=\"20\">\n"
  3815. " <td height=\"20\"><strong>X</strong></td>\n"
  3816. " <td>&nbsp;Flip on X_axis</td>\n"
  3817. " </tr>\n"
  3818. " <tr height=\"20\">\n"
  3819. " <td height=\"20\"><strong>Y</strong></td>\n"
  3820. " <td>&nbsp;Flip on Y_axis</td>\n"
  3821. " </tr>\n"
  3822. " <tr height=\"20\">\n"
  3823. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  3824. " <td>&nbsp;Zoom Out</td>\n"
  3825. " </tr>\n"
  3826. " <tr height=\"20\">\n"
  3827. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  3828. " <td>&nbsp;Zoom In</td>\n"
  3829. " </tr>\n"
  3830. " <tr height=\"20\">\n"
  3831. " <td height=\"20\">&nbsp;</td>\n"
  3832. " <td>&nbsp;</td>\n"
  3833. " </tr>\n"
  3834. " <tr height=\"20\">\n"
  3835. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  3836. " <td>&nbsp;Select All</td>\n"
  3837. " </tr>\n"
  3838. " <tr height=\"20\">\n"
  3839. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  3840. " <td>&nbsp;Copy Obj</td>\n"
  3841. " </tr>\n"
  3842. " <tr height=\"20\">\n"
  3843. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  3844. " <td>&nbsp;Open Excellon File</td>\n"
  3845. " </tr>\n"
  3846. " <tr height=\"20\">\n"
  3847. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  3848. " <td>&nbsp;Open Gerber File</td>\n"
  3849. " </tr>\n"
  3850. " <tr height=\"20\">\n"
  3851. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  3852. " <td>&nbsp;New Project</td>\n"
  3853. " </tr>\n"
  3854. " <tr height=\"20\">\n"
  3855. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3856. " <td>&nbsp;Measurement Tool</td>\n"
  3857. " </tr>\n"
  3858. " <tr height=\"20\">\n"
  3859. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  3860. " <td>&nbsp;Open Project</td>\n"
  3861. " </tr>\n"
  3862. " <tr height=\"20\">\n"
  3863. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3864. " <td>&nbsp;Save Project As</td>\n"
  3865. " </tr>\n"
  3866. " <tr height=\"20\">\n"
  3867. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  3868. " <td>&nbsp;Toggle Plot Area</td>\n"
  3869. " </tr>\n"
  3870. " <tr height=\"20\">\n"
  3871. " <td height=\"20\">&nbsp;</td>\n"
  3872. " <td>&nbsp;</td>\n"
  3873. " </tr>\n"
  3874. " <tr height=\"20\">\n"
  3875. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  3876. " <td>&nbsp;Copy Obj_Name</td>\n"
  3877. " </tr>\n"
  3878. " <tr height=\"20\">\n"
  3879. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  3880. " <td>&nbsp;Toggle Code Editor</td>\n"
  3881. " </tr>\n"
  3882. " <tr height=\"20\">\n"
  3883. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  3884. " <td>&nbsp;Toggle the axis</td>\n"
  3885. " </tr>\n"
  3886. " <tr height=\"20\">\n"
  3887. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  3888. " <td>&nbsp;Open Preferences Window</td>\n"
  3889. " </tr>\n"
  3890. " <tr height=\"20\">\n"
  3891. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  3892. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  3893. " </tr>\n"
  3894. " <tr height=\"20\">\n"
  3895. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  3896. " <td>&nbsp;Run a Script</td>\n"
  3897. " </tr>\n"
  3898. " <tr height=\"20\">\n"
  3899. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  3900. " <td>&nbsp;Toggle the workspace</td>\n"
  3901. " </tr>\n"
  3902. " <tr height=\"20\">\n"
  3903. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3904. " <td>&nbsp;Skew on X axis</td>\n"
  3905. " </tr>\n"
  3906. " <tr height=\"20\">\n"
  3907. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3908. " <td>&nbsp;Skew on Y axis</td>\n"
  3909. " </tr>\n"
  3910. " <tr height=\"20\">\n"
  3911. " <td height=\"20\">&nbsp;</td>\n"
  3912. " <td>&nbsp;</td>\n"
  3913. " </tr>\n"
  3914. " <tr height=\"20\">\n"
  3915. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  3916. " <td>&nbsp;Calculators Tool</td>\n"
  3917. " </tr>\n"
  3918. " <tr height=\"20\">\n"
  3919. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  3920. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  3921. " </tr>\n"
  3922. " <tr height=\"20\">\n"
  3923. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  3924. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  3925. " </tr>\n"
  3926. " <tr height=\"20\">\n"
  3927. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  3928. " <td>&nbsp;Film PCB Tool</td>\n"
  3929. " </tr>\n"
  3930. " <tr height=\"20\">\n"
  3931. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  3932. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  3933. " </tr>\n"
  3934. " <tr height=\"20\">\n"
  3935. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  3936. " <td>&nbsp;Paint Area Tool</td>\n"
  3937. " </tr>\n"
  3938. " <tr height=\"20\">\n"
  3939. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  3940. " <td>&nbsp;PDF Import Tool</td>\n"
  3941. " </tr>\n"
  3942. " <tr height=\"20\">\n"
  3943. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3944. " <td>&nbsp;Transformations Tool</td>\n"
  3945. " </tr>\n"
  3946. " <tr height=\"20\">\n"
  3947. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  3948. " <td>&nbsp;View File Source</td>\n"
  3949. " </tr>\n"
  3950. " <tr height=\"20\">\n"
  3951. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  3952. " <td>&nbsp;Cutout PCB Tool</td>\n"
  3953. " </tr>\n"
  3954. " <tr height=\"20\">\n"
  3955. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  3956. " <td>&nbsp;Enable all Plots</td>\n"
  3957. " </tr>\n"
  3958. " <tr height=\"20\">\n"
  3959. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  3960. " <td>&nbsp;Disable all Plots</td>\n"
  3961. " </tr>\n"
  3962. " <tr height=\"20\">\n"
  3963. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  3964. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  3965. " </tr>\n"
  3966. " <tr height=\"20\">\n"
  3967. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  3968. " <td>&nbsp;Toggle Full Screen</td>\n"
  3969. " </tr>\n"
  3970. " <tr height=\"20\">\n"
  3971. " <td height=\"20\">&nbsp;</td>\n"
  3972. " <td>&nbsp;</td>\n"
  3973. " </tr>\n"
  3974. " <tr height=\"20\">\n"
  3975. " <td height=\"20\"><strong>F1</strong></td>\n"
  3976. " <td>&nbsp;Open Online Manual</td>\n"
  3977. " </tr>\n"
  3978. " <tr height=\"20\">\n"
  3979. " <td height=\"20\"><strong>F4</strong></td>\n"
  3980. " <td>&nbsp;Open Online Tutorials</td>\n"
  3981. " </tr>\n"
  3982. " <tr height=\"20\">\n"
  3983. " <td height=\"20\"><strong>Del</strong></td>\n"
  3984. " <td>&nbsp;Delete Object</td>\n"
  3985. " </tr>\n"
  3986. " <tr height=\"20\">\n"
  3987. " <td height=\"20\"><strong>Del</strong></td>\n"
  3988. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  3989. " </tr>\n"
  3990. " <tr height=\"20\">\n"
  3991. " <td height=\"20\"><strong>'`'</strong></td>\n"
  3992. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  3993. "Side)</td>\n"
  3994. " </tr>\n"
  3995. " <tr height=\"20\">\n"
  3996. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  3997. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  3998. " </tr>\n"
  3999. " <tr height=\"20\">\n"
  4000. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4001. " <td>&nbsp;Deselects all objects</td>\n"
  4002. " </tr>\n"
  4003. " </tbody>\n"
  4004. " </table>\n"
  4005. " \n"
  4006. " "
  4007. msgstr ""
  4008. "<b>General Shortcut list</b><br>\n"
  4009. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4010. "\"width:283px\">\n"
  4011. " <tbody>\n"
  4012. " <tr height=\"20\">\n"
  4013. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  4014. "td>\n"
  4015. " <td width=\"194\"><span style=\"color:"
  4016. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  4017. " </tr>\n"
  4018. " <tr height=\"20\">\n"
  4019. " <td height=\"20\">&nbsp;</td>\n"
  4020. " <td>&nbsp;</td>\n"
  4021. " </tr>\n"
  4022. " <tr height=\"20\">\n"
  4023. " <td height=\"20\"><strong>1</strong></td>\n"
  4024. " <td>&nbsp;Switch to Project Tab</td>\n"
  4025. " </tr>\n"
  4026. " <tr height=\"20\">\n"
  4027. " <td height=\"20\"><strong>2</strong></td>\n"
  4028. " <td>&nbsp;Switch to Selected Tab</td>\n"
  4029. " </tr>\n"
  4030. " <tr height=\"20\">\n"
  4031. " <td height=\"20\"><strong>3</strong></td>\n"
  4032. " <td>&nbsp;Switch to Tool Tab</td>\n"
  4033. " </tr>\n"
  4034. " <tr height=\"20\">\n"
  4035. " <td height=\"20\">&nbsp;</td>\n"
  4036. " <td>&nbsp;</td>\n"
  4037. " </tr>\n"
  4038. " <tr height=\"20\">\n"
  4039. " <td height=\"20\"><strong>B</strong></td>\n"
  4040. " <td>&nbsp;New Gerber</td>\n"
  4041. " </tr>\n"
  4042. " <tr height=\"20\">\n"
  4043. " <td height=\"20\"><strong>E</strong></td>\n"
  4044. " <td>&nbsp;Edit Object (if selected)</td>\n"
  4045. " </tr>\n"
  4046. " <tr height=\"20\">\n"
  4047. " <td height=\"20\"><strong>G</strong></td>\n"
  4048. " <td>&nbsp;Grid On/Off</td>\n"
  4049. " </tr>\n"
  4050. " <tr height=\"20\">\n"
  4051. " <td height=\"20\"><strong>J</strong></td>\n"
  4052. " <td>&nbsp;Jump to Coordinates</td>\n"
  4053. " </tr>\n"
  4054. " <tr height=\"20\">\n"
  4055. " <td height=\"20\"><strong>L</strong></td>\n"
  4056. " <td>&nbsp;New Excellon</td>\n"
  4057. " </tr>\n"
  4058. " <tr height=\"20\">\n"
  4059. " <td height=\"20\"><strong>M</strong></td>\n"
  4060. " <td>&nbsp;Move Obj</td>\n"
  4061. " </tr>\n"
  4062. " <tr height=\"20\">\n"
  4063. " <td height=\"20\"><strong>N</strong></td>\n"
  4064. " <td>&nbsp;New Geometry</td>\n"
  4065. " </tr>\n"
  4066. " <tr height=\"20\">\n"
  4067. " <td height=\"20\"><strong>O</strong></td>\n"
  4068. " <td>&nbsp;Set Origin</td>\n"
  4069. " </tr>\n"
  4070. " <tr height=\"20\">\n"
  4071. " <td height=\"20\"><strong>Q</strong></td>\n"
  4072. " <td>&nbsp;Change Units</td>\n"
  4073. " </tr>\n"
  4074. " <tr height=\"20\">\n"
  4075. " <td height=\"20\"><strong>P</strong></td>\n"
  4076. " <td>&nbsp;Open Properties Tool</td>\n"
  4077. " </tr>\n"
  4078. " <tr height=\"20\">\n"
  4079. " <td height=\"20\"><strong>R</strong></td>\n"
  4080. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  4081. " </tr>\n"
  4082. " <tr height=\"20\">\n"
  4083. " <td height=\"20\"><strong>S</strong></td>\n"
  4084. " <td>&nbsp;Shell Toggle</td>\n"
  4085. " </tr>\n"
  4086. " <tr height=\"20\">\n"
  4087. " <td height=\"20\"><strong>T</strong></td>\n"
  4088. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  4089. "or in Tools NCC or Tools Paint)</td>\n"
  4090. " </tr>\n"
  4091. " <tr height=\"20\">\n"
  4092. " <td height=\"20\"><strong>V</strong></td>\n"
  4093. " <td>&nbsp;Zoom Fit</td>\n"
  4094. " </tr>\n"
  4095. " <tr height=\"20\">\n"
  4096. " <td height=\"20\"><strong>X</strong></td>\n"
  4097. " <td>&nbsp;Flip on X_axis</td>\n"
  4098. " </tr>\n"
  4099. " <tr height=\"20\">\n"
  4100. " <td height=\"20\"><strong>Y</strong></td>\n"
  4101. " <td>&nbsp;Flip on Y_axis</td>\n"
  4102. " </tr>\n"
  4103. " <tr height=\"20\">\n"
  4104. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  4105. " <td>&nbsp;Zoom Out</td>\n"
  4106. " </tr>\n"
  4107. " <tr height=\"20\">\n"
  4108. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  4109. " <td>&nbsp;Zoom In</td>\n"
  4110. " </tr>\n"
  4111. " <tr height=\"20\">\n"
  4112. " <td height=\"20\">&nbsp;</td>\n"
  4113. " <td>&nbsp;</td>\n"
  4114. " </tr>\n"
  4115. " <tr height=\"20\">\n"
  4116. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  4117. " <td>&nbsp;Select All</td>\n"
  4118. " </tr>\n"
  4119. " <tr height=\"20\">\n"
  4120. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  4121. " <td>&nbsp;Copy Obj</td>\n"
  4122. " </tr>\n"
  4123. " <tr height=\"20\">\n"
  4124. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4125. " <td>&nbsp;Open Excellon File</td>\n"
  4126. " </tr>\n"
  4127. " <tr height=\"20\">\n"
  4128. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  4129. " <td>&nbsp;Open Gerber File</td>\n"
  4130. " </tr>\n"
  4131. " <tr height=\"20\">\n"
  4132. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  4133. " <td>&nbsp;New Project</td>\n"
  4134. " </tr>\n"
  4135. " <tr height=\"20\">\n"
  4136. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4137. " <td>&nbsp;Measurement Tool</td>\n"
  4138. " </tr>\n"
  4139. " <tr height=\"20\">\n"
  4140. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  4141. " <td>&nbsp;Open Project</td>\n"
  4142. " </tr>\n"
  4143. " <tr height=\"20\">\n"
  4144. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4145. " <td>&nbsp;Save Project As</td>\n"
  4146. " </tr>\n"
  4147. " <tr height=\"20\">\n"
  4148. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  4149. " <td>&nbsp;Toggle Plot Area</td>\n"
  4150. " </tr>\n"
  4151. " <tr height=\"20\">\n"
  4152. " <td height=\"20\">&nbsp;</td>\n"
  4153. " <td>&nbsp;</td>\n"
  4154. " </tr>\n"
  4155. " <tr height=\"20\">\n"
  4156. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  4157. " <td>&nbsp;Copy Obj_Name</td>\n"
  4158. " </tr>\n"
  4159. " <tr height=\"20\">\n"
  4160. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  4161. " <td>&nbsp;Toggle Code Editor</td>\n"
  4162. " </tr>\n"
  4163. " <tr height=\"20\">\n"
  4164. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  4165. " <td>&nbsp;Toggle the axis</td>\n"
  4166. " </tr>\n"
  4167. " <tr height=\"20\">\n"
  4168. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  4169. " <td>&nbsp;Open Preferences Window</td>\n"
  4170. " </tr>\n"
  4171. " <tr height=\"20\">\n"
  4172. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  4173. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  4174. " </tr>\n"
  4175. " <tr height=\"20\">\n"
  4176. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  4177. " <td>&nbsp;Run a Script</td>\n"
  4178. " </tr>\n"
  4179. " <tr height=\"20\">\n"
  4180. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  4181. " <td>&nbsp;Toggle the workspace</td>\n"
  4182. " </tr>\n"
  4183. " <tr height=\"20\">\n"
  4184. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4185. " <td>&nbsp;Skew on X axis</td>\n"
  4186. " </tr>\n"
  4187. " <tr height=\"20\">\n"
  4188. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4189. " <td>&nbsp;Skew on Y axis</td>\n"
  4190. " </tr>\n"
  4191. " <tr height=\"20\">\n"
  4192. " <td height=\"20\">&nbsp;</td>\n"
  4193. " <td>&nbsp;</td>\n"
  4194. " </tr>\n"
  4195. " <tr height=\"20\">\n"
  4196. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  4197. " <td>&nbsp;Calculators Tool</td>\n"
  4198. " </tr>\n"
  4199. " <tr height=\"20\">\n"
  4200. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  4201. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  4202. " </tr>\n"
  4203. " <tr height=\"20\">\n"
  4204. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  4205. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  4206. " </tr>\n"
  4207. " <tr height=\"20\">\n"
  4208. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4209. " <td>&nbsp;Film PCB Tool</td>\n"
  4210. " </tr>\n"
  4211. " <tr height=\"20\">\n"
  4212. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4213. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  4214. " </tr>\n"
  4215. " <tr height=\"20\">\n"
  4216. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4217. " <td>&nbsp;Paint Area Tool</td>\n"
  4218. " </tr>\n"
  4219. " <tr height=\"20\">\n"
  4220. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4221. " <td>&nbsp;PDF Import Tool</td>\n"
  4222. " </tr>\n"
  4223. " <tr height=\"20\">\n"
  4224. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4225. " <td>&nbsp;Transformations Tool</td>\n"
  4226. " </tr>\n"
  4227. " <tr height=\"20\">\n"
  4228. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4229. " <td>&nbsp;View File Source</td>\n"
  4230. " </tr>\n"
  4231. " <tr height=\"20\">\n"
  4232. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4233. " <td>&nbsp;Cutout PCB Tool</td>\n"
  4234. " </tr>\n"
  4235. " <tr height=\"20\">\n"
  4236. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4237. " <td>&nbsp;Enable all Plots</td>\n"
  4238. " </tr>\n"
  4239. " <tr height=\"20\">\n"
  4240. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4241. " <td>&nbsp;Disable all Plots</td>\n"
  4242. " </tr>\n"
  4243. " <tr height=\"20\">\n"
  4244. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4245. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  4246. " </tr>\n"
  4247. " <tr height=\"20\">\n"
  4248. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4249. " <td>&nbsp;Toggle Full Screen</td>\n"
  4250. " </tr>\n"
  4251. " <tr height=\"20\">\n"
  4252. " <td height=\"20\">&nbsp;</td>\n"
  4253. " <td>&nbsp;</td>\n"
  4254. " </tr>\n"
  4255. " <tr height=\"20\">\n"
  4256. " <td height=\"20\"><strong>F1</strong></td>\n"
  4257. " <td>&nbsp;Open Online Manual</td>\n"
  4258. " </tr>\n"
  4259. " <tr height=\"20\">\n"
  4260. " <td height=\"20\"><strong>F4</strong></td>\n"
  4261. " <td>&nbsp;Open Online Tutorials</td>\n"
  4262. " </tr>\n"
  4263. " <tr height=\"20\">\n"
  4264. " <td height=\"20\"><strong>Del</strong></td>\n"
  4265. " <td>&nbsp;Delete Object</td>\n"
  4266. " </tr>\n"
  4267. " <tr height=\"20\">\n"
  4268. " <td height=\"20\"><strong>Del</strong></td>\n"
  4269. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  4270. " </tr>\n"
  4271. " <tr height=\"20\">\n"
  4272. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4273. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  4274. "Side)</td>\n"
  4275. " </tr>\n"
  4276. " <tr height=\"20\">\n"
  4277. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4278. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  4279. " </tr>\n"
  4280. " <tr height=\"20\">\n"
  4281. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4282. " <td>&nbsp;Deselects all objects</td>\n"
  4283. " </tr>\n"
  4284. " </tbody>\n"
  4285. " </table>\n"
  4286. " \n"
  4287. " "
  4288. #: flatcamGUI/FlatCAMGUI.py:1265
  4289. msgid ""
  4290. "<b>Editor Shortcut list</b><br>\n"
  4291. " <br>\n"
  4292. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  4293. "strong><br>\n"
  4294. " \n"
  4295. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4296. "\"width:283px\">\n"
  4297. " <tbody>\n"
  4298. " <tr height=\"20\">\n"
  4299. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4300. "td>\n"
  4301. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  4302. " </tr>\n"
  4303. " <tr height=\"20\">\n"
  4304. " <td height=\"20\"><strong>B</strong></td>\n"
  4305. " <td>&nbsp;Buffer Tool</td>\n"
  4306. " </tr>\n"
  4307. " <tr height=\"20\">\n"
  4308. " <td height=\"20\"><strong>C</strong></td>\n"
  4309. " <td>&nbsp;Copy Geo Item</td>\n"
  4310. " </tr>\n"
  4311. " <tr height=\"20\">\n"
  4312. " <td height=\"20\"><strong>D</strong></td>\n"
  4313. " <td>&nbsp;Within Add Arc will toogle the ARC "
  4314. "direction: CW or CCW</td>\n"
  4315. " </tr>\n"
  4316. " <tr height=\"20\">\n"
  4317. " <td height=\"20\"><strong>E</strong></td>\n"
  4318. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  4319. " </tr>\n"
  4320. " <tr height=\"20\">\n"
  4321. " <td height=\"20\"><strong>I</strong></td>\n"
  4322. " <td>&nbsp;Paint Tool</td>\n"
  4323. " </tr>\n"
  4324. " <tr height=\"20\">\n"
  4325. " <td height=\"20\"><strong>J</strong></td>\n"
  4326. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4327. " </tr>\n"
  4328. " <tr height=\"20\">\n"
  4329. " <td height=\"20\"><strong>K</strong></td>\n"
  4330. " <td>&nbsp;Toggle Corner Snap</td>\n"
  4331. " </tr>\n"
  4332. " <tr height=\"20\">\n"
  4333. " <td height=\"20\"><strong>M</strong></td>\n"
  4334. " <td>&nbsp;Move Geo Item</td>\n"
  4335. " </tr>\n"
  4336. " <tr height=\"20\">\n"
  4337. " <td height=\"20\"><strong>M</strong></td>\n"
  4338. " <td>&nbsp;Within Add Arc will cycle through the ARC "
  4339. "modes</td>\n"
  4340. " </tr>\n"
  4341. " <tr height=\"20\">\n"
  4342. " <td height=\"20\"><strong>N</strong></td>\n"
  4343. " <td>&nbsp;Draw a Polygon</td>\n"
  4344. " </tr>\n"
  4345. " <tr height=\"20\">\n"
  4346. " <td height=\"20\"><strong>O</strong></td>\n"
  4347. " <td>&nbsp;Draw a Circle</td>\n"
  4348. " </tr>\n"
  4349. " <tr height=\"20\">\n"
  4350. " <td height=\"20\"><strong>P</strong></td>\n"
  4351. " <td>&nbsp;Draw a Path</td>\n"
  4352. " </tr>\n"
  4353. " <tr height=\"20\">\n"
  4354. " <td height=\"20\"><strong>R</strong></td>\n"
  4355. " <td>&nbsp;Draw Rectangle</td>\n"
  4356. " </tr>\n"
  4357. " <tr height=\"20\">\n"
  4358. " <td height=\"20\"><strong>S</strong></td>\n"
  4359. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  4360. " </tr>\n"
  4361. " <tr height=\"20\">\n"
  4362. " <td height=\"20\"><strong>T</strong></td>\n"
  4363. " <td>&nbsp;Add Text Tool</td>\n"
  4364. " </tr>\n"
  4365. " <tr height=\"20\">\n"
  4366. " <td height=\"20\"><strong>U</strong></td>\n"
  4367. " <td>&nbsp;Polygon Union Tool</td>\n"
  4368. " </tr>\n"
  4369. " <tr height=\"20\">\n"
  4370. " <td height=\"20\"><strong>X</strong></td>\n"
  4371. " <td>&nbsp;Flip shape on X axis</td>\n"
  4372. " </tr>\n"
  4373. " <tr height=\"20\">\n"
  4374. " <td height=\"20\"><strong>Y</strong></td>\n"
  4375. " <td>&nbsp;Flip shape on Y axis</td>\n"
  4376. " </tr>\n"
  4377. " <tr height=\"20\">\n"
  4378. " <td height=\"20\">&nbsp;</td>\n"
  4379. " <td>&nbsp;</td>\n"
  4380. " </tr>\n"
  4381. " <tr height=\"20\">\n"
  4382. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4383. " <td>&nbsp;Skew shape on X axis</td>\n"
  4384. " </tr>\n"
  4385. " <tr height=\"20\">\n"
  4386. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4387. " <td>&nbsp;Skew shape on Y axis</td>\n"
  4388. " </tr>\n"
  4389. " <tr height=\"20\">\n"
  4390. " <td height=\"20\">&nbsp;</td>\n"
  4391. " <td>&nbsp;</td>\n"
  4392. " </tr>\n"
  4393. " <tr height=\"20\">\n"
  4394. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4395. " <td>&nbsp;Editor Transformation Tool</td>\n"
  4396. " </tr>\n"
  4397. " <tr height=\"20\">\n"
  4398. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4399. " <td>&nbsp;Offset shape on X axis</td>\n"
  4400. " </tr>\n"
  4401. " <tr height=\"20\">\n"
  4402. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4403. " <td>&nbsp;Offset shape on Y axis</td>\n"
  4404. " </tr>\n"
  4405. " <tr height=\"20\">\n"
  4406. " <td height=\"20\">&nbsp;</td>\n"
  4407. " <td>&nbsp;</td>\n"
  4408. " </tr>\n"
  4409. " <tr height=\"20\">\n"
  4410. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4411. " <td>&nbsp;Measurement Tool</td>\n"
  4412. " </tr>\n"
  4413. " <tr height=\"20\">\n"
  4414. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4415. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4416. " </tr>\n"
  4417. " <tr height=\"20\">\n"
  4418. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4419. " <td>&nbsp;Polygon Cut Tool</td>\n"
  4420. " </tr>\n"
  4421. " <tr height=\"20\">\n"
  4422. " <td height=\"20\">&nbsp;</td>\n"
  4423. " <td>&nbsp;</td>\n"
  4424. " </tr>\n"
  4425. " <tr height=\"20\">\n"
  4426. " <td height=\"20\"><strong>Space</strong></td>\n"
  4427. " <td>&nbsp;Rotate Geometry</td>\n"
  4428. " </tr>\n"
  4429. " <tr height=\"20\">\n"
  4430. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4431. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  4432. " </tr>\n"
  4433. " <tr height=\"20\">\n"
  4434. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4435. " <td>&nbsp;Abort and return to Select</td>\n"
  4436. " </tr>\n"
  4437. " <tr height=\"20\">\n"
  4438. " <td height=\"20\"><strong>Del</strong></td>\n"
  4439. " <td>&nbsp;Delete Shape</td>\n"
  4440. " </tr>\n"
  4441. " </tbody>\n"
  4442. " </table>\n"
  4443. " <br>\n"
  4444. " <br>\n"
  4445. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  4446. "strong><br>\n"
  4447. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4448. "\"width:283px\">\n"
  4449. " <tbody>\n"
  4450. " <tr height=\"20\">\n"
  4451. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4452. "td>\n"
  4453. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  4454. " </tr>\n"
  4455. " <tr height=\"20\">\n"
  4456. " <td height=\"20\"><strong>C</strong></td>\n"
  4457. " <td>&nbsp;Copy Drill(s)</td>\n"
  4458. " </tr>\n"
  4459. " <tr height=\"20\">\n"
  4460. " <td height=\"20\"><strong>D</strong></td>\n"
  4461. " <td>&nbsp;Add Drill</td>\n"
  4462. " </tr>\n"
  4463. " <tr height=\"20\">\n"
  4464. " <td height=\"20\"><strong>J</strong></td>\n"
  4465. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4466. " </tr>\n"
  4467. " <tr height=\"20\">\n"
  4468. " <td height=\"20\"><strong>M</strong></td>\n"
  4469. " <td>&nbsp;Move Drill(s)</td>\n"
  4470. " </tr>\n"
  4471. " <tr height=\"20\">\n"
  4472. " <td height=\"20\"><strong>R</strong></td>\n"
  4473. " <td>&nbsp;Resize Drill(s)</td>\n"
  4474. " </tr>\n"
  4475. " <tr height=\"20\">\n"
  4476. " <td height=\"20\"><strong>T</strong></td>\n"
  4477. " <td>&nbsp;Add a new Tool</td>\n"
  4478. " </tr>\n"
  4479. " <tr height=\"20\">\n"
  4480. " <td height=\"20\">&nbsp;</td>\n"
  4481. " <td>&nbsp;</td>\n"
  4482. " </tr>\n"
  4483. " <tr height=\"20\">\n"
  4484. " <td height=\"20\"><strong>Del</strong></td>\n"
  4485. " <td>&nbsp;Delete Drill(s)</td>\n"
  4486. " </tr>\n"
  4487. " <tr height=\"20\">\n"
  4488. " <td height=\"20\"><strong>Del</strong></td>\n"
  4489. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  4490. " </tr>\n"
  4491. " <tr height=\"20\">\n"
  4492. " <td height=\"20\">&nbsp;</td>\n"
  4493. " <td>&nbsp;</td>\n"
  4494. " </tr>\n"
  4495. " <tr height=\"20\">\n"
  4496. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4497. " <td>&nbsp;Abort and return to Select</td>\n"
  4498. " </tr>\n"
  4499. " <tr height=\"20\">\n"
  4500. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4501. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4502. " </tr>\n"
  4503. " </tbody>\n"
  4504. " </table>\n"
  4505. " <br>\n"
  4506. " <br>\n"
  4507. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  4508. "strong><br>\n"
  4509. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4510. "\"width:283px\">\n"
  4511. " <tbody>\n"
  4512. " <tr height=\"20\">\n"
  4513. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4514. "td>\n"
  4515. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  4516. " </tr>\n"
  4517. " <tr height=\"20\">\n"
  4518. " <td height=\"20\"><strong>B</strong></td>\n"
  4519. " <td>&nbsp;Buffer</td>\n"
  4520. " </tr>\n"
  4521. " <tr height=\"20\">\n"
  4522. " <td height=\"20\"><strong>C</strong></td>\n"
  4523. " <td>&nbsp;Copy</td>\n"
  4524. " </tr>\n"
  4525. " <tr height=\"20\">\n"
  4526. " <td height=\"20\"><strong>D</strong></td>\n"
  4527. " <td>&nbsp;Add Disc</td>\n"
  4528. " </tr>\n"
  4529. " <tr height=\"20\">\n"
  4530. " <td height=\"20\"><strong>E</strong></td>\n"
  4531. " <td>&nbsp;Add SemiDisc</td>\n"
  4532. " </tr>\n"
  4533. " <tr height=\"20\">\n"
  4534. " <td height=\"20\"><strong>J</strong></td>\n"
  4535. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4536. " </tr>\n"
  4537. " <tr height=\"20\">\n"
  4538. " <td height=\"20\"><strong>M</strong></td>\n"
  4539. " <td>&nbsp;Move</td>\n"
  4540. " </tr>\n"
  4541. " <tr height=\"20\">\n"
  4542. " <td height=\"20\"><strong>N</strong></td>\n"
  4543. " <td>&nbsp;Add Region</td>\n"
  4544. " </tr>\n"
  4545. " <tr height=\"20\">\n"
  4546. " <td height=\"20\"><strong>P</strong></td>\n"
  4547. " <td>&nbsp;Add Pad</td>\n"
  4548. " </tr>\n"
  4549. " <tr height=\"20\">\n"
  4550. " <td height=\"20\"><strong>R</strong></td>\n"
  4551. " <td>&nbsp;Within Track & Region Tools will cycle in "
  4552. "REVERSE the bend modes</td>\n"
  4553. " </tr>\n"
  4554. " <tr height=\"20\">\n"
  4555. " <td height=\"20\"><strong>S</strong></td>\n"
  4556. " <td>&nbsp;Scale</td>\n"
  4557. " </tr>\n"
  4558. " <tr height=\"20\">\n"
  4559. " <td height=\"20\"><strong>T</strong></td>\n"
  4560. " <td>&nbsp;Add Track</td>\n"
  4561. " </tr>\n"
  4562. " <tr height=\"20\">\n"
  4563. " <td height=\"20\"><strong>T</strong></td>\n"
  4564. " <td>&nbsp;Within Track & Region Tools will cycle "
  4565. "FORWARD the bend modes</td>\n"
  4566. " </tr>\n"
  4567. " <tr height=\"20\">\n"
  4568. " <td height=\"20\">&nbsp;</td>\n"
  4569. " <td>&nbsp;</td>\n"
  4570. " </tr>\n"
  4571. " <tr height=\"20\">\n"
  4572. " <td height=\"20\"><strong>Del</strong></td>\n"
  4573. " <td>&nbsp;Delete</td>\n"
  4574. " </tr>\n"
  4575. " <tr height=\"20\">\n"
  4576. " <td height=\"20\"><strong>Del</strong></td>\n"
  4577. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  4578. " </tr>\n"
  4579. " <tr height=\"20\">\n"
  4580. " <td height=\"20\">&nbsp;</td>\n"
  4581. " <td>&nbsp;</td>\n"
  4582. " </tr>\n"
  4583. " <tr height=\"20\">\n"
  4584. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4585. " <td>&nbsp;Abort and return to Select</td>\n"
  4586. " </tr>\n"
  4587. " <tr height=\"20\">\n"
  4588. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4589. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4590. " </tr>\n"
  4591. " <tr height=\"20\">\n"
  4592. " <td height=\"20\">&nbsp;</td>\n"
  4593. " <td>&nbsp;</td>\n"
  4594. " </tr>\n"
  4595. " <tr height=\"20\">\n"
  4596. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4597. " <td>&nbsp;Transformation Tool</td>\n"
  4598. " </tr>\n"
  4599. " </tbody>\n"
  4600. " </table>\n"
  4601. " "
  4602. msgstr ""
  4603. "<b>Editor Shortcut list</b><br>\n"
  4604. " <br>\n"
  4605. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  4606. "strong><br>\n"
  4607. " \n"
  4608. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4609. "\"width:283px\">\n"
  4610. " <tbody>\n"
  4611. " <tr height=\"20\">\n"
  4612. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4613. "td>\n"
  4614. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  4615. " </tr>\n"
  4616. " <tr height=\"20\">\n"
  4617. " <td height=\"20\"><strong>B</strong></td>\n"
  4618. " <td>&nbsp;Buffer Tool</td>\n"
  4619. " </tr>\n"
  4620. " <tr height=\"20\">\n"
  4621. " <td height=\"20\"><strong>C</strong></td>\n"
  4622. " <td>&nbsp;Copy Geo Item</td>\n"
  4623. " </tr>\n"
  4624. " <tr height=\"20\">\n"
  4625. " <td height=\"20\"><strong>D</strong></td>\n"
  4626. " <td>&nbsp;Within Add Arc will toogle the ARC "
  4627. "direction: CW or CCW</td>\n"
  4628. " </tr>\n"
  4629. " <tr height=\"20\">\n"
  4630. " <td height=\"20\"><strong>E</strong></td>\n"
  4631. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  4632. " </tr>\n"
  4633. " <tr height=\"20\">\n"
  4634. " <td height=\"20\"><strong>I</strong></td>\n"
  4635. " <td>&nbsp;Paint Tool</td>\n"
  4636. " </tr>\n"
  4637. " <tr height=\"20\">\n"
  4638. " <td height=\"20\"><strong>J</strong></td>\n"
  4639. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4640. " </tr>\n"
  4641. " <tr height=\"20\">\n"
  4642. " <td height=\"20\"><strong>K</strong></td>\n"
  4643. " <td>&nbsp;Toggle Corner Snap</td>\n"
  4644. " </tr>\n"
  4645. " <tr height=\"20\">\n"
  4646. " <td height=\"20\"><strong>M</strong></td>\n"
  4647. " <td>&nbsp;Move Geo Item</td>\n"
  4648. " </tr>\n"
  4649. " <tr height=\"20\">\n"
  4650. " <td height=\"20\"><strong>M</strong></td>\n"
  4651. " <td>&nbsp;Within Add Arc will cycle through the ARC "
  4652. "modes</td>\n"
  4653. " </tr>\n"
  4654. " <tr height=\"20\">\n"
  4655. " <td height=\"20\"><strong>N</strong></td>\n"
  4656. " <td>&nbsp;Draw a Polygon</td>\n"
  4657. " </tr>\n"
  4658. " <tr height=\"20\">\n"
  4659. " <td height=\"20\"><strong>O</strong></td>\n"
  4660. " <td>&nbsp;Draw a Circle</td>\n"
  4661. " </tr>\n"
  4662. " <tr height=\"20\">\n"
  4663. " <td height=\"20\"><strong>P</strong></td>\n"
  4664. " <td>&nbsp;Draw a Path</td>\n"
  4665. " </tr>\n"
  4666. " <tr height=\"20\">\n"
  4667. " <td height=\"20\"><strong>R</strong></td>\n"
  4668. " <td>&nbsp;Draw Rectangle</td>\n"
  4669. " </tr>\n"
  4670. " <tr height=\"20\">\n"
  4671. " <td height=\"20\"><strong>S</strong></td>\n"
  4672. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  4673. " </tr>\n"
  4674. " <tr height=\"20\">\n"
  4675. " <td height=\"20\"><strong>T</strong></td>\n"
  4676. " <td>&nbsp;Add Text Tool</td>\n"
  4677. " </tr>\n"
  4678. " <tr height=\"20\">\n"
  4679. " <td height=\"20\"><strong>U</strong></td>\n"
  4680. " <td>&nbsp;Polygon Union Tool</td>\n"
  4681. " </tr>\n"
  4682. " <tr height=\"20\">\n"
  4683. " <td height=\"20\"><strong>X</strong></td>\n"
  4684. " <td>&nbsp;Flip shape on X axis</td>\n"
  4685. " </tr>\n"
  4686. " <tr height=\"20\">\n"
  4687. " <td height=\"20\"><strong>Y</strong></td>\n"
  4688. " <td>&nbsp;Flip shape on Y axis</td>\n"
  4689. " </tr>\n"
  4690. " <tr height=\"20\">\n"
  4691. " <td height=\"20\">&nbsp;</td>\n"
  4692. " <td>&nbsp;</td>\n"
  4693. " </tr>\n"
  4694. " <tr height=\"20\">\n"
  4695. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4696. " <td>&nbsp;Skew shape on X axis</td>\n"
  4697. " </tr>\n"
  4698. " <tr height=\"20\">\n"
  4699. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4700. " <td>&nbsp;Skew shape on Y axis</td>\n"
  4701. " </tr>\n"
  4702. " <tr height=\"20\">\n"
  4703. " <td height=\"20\">&nbsp;</td>\n"
  4704. " <td>&nbsp;</td>\n"
  4705. " </tr>\n"
  4706. " <tr height=\"20\">\n"
  4707. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4708. " <td>&nbsp;Editor Transformation Tool</td>\n"
  4709. " </tr>\n"
  4710. " <tr height=\"20\">\n"
  4711. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4712. " <td>&nbsp;Offset shape on X axis</td>\n"
  4713. " </tr>\n"
  4714. " <tr height=\"20\">\n"
  4715. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4716. " <td>&nbsp;Offset shape on Y axis</td>\n"
  4717. " </tr>\n"
  4718. " <tr height=\"20\">\n"
  4719. " <td height=\"20\">&nbsp;</td>\n"
  4720. " <td>&nbsp;</td>\n"
  4721. " </tr>\n"
  4722. " <tr height=\"20\">\n"
  4723. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4724. " <td>&nbsp;Measurement Tool</td>\n"
  4725. " </tr>\n"
  4726. " <tr height=\"20\">\n"
  4727. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4728. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4729. " </tr>\n"
  4730. " <tr height=\"20\">\n"
  4731. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4732. " <td>&nbsp;Polygon Cut Tool</td>\n"
  4733. " </tr>\n"
  4734. " <tr height=\"20\">\n"
  4735. " <td height=\"20\">&nbsp;</td>\n"
  4736. " <td>&nbsp;</td>\n"
  4737. " </tr>\n"
  4738. " <tr height=\"20\">\n"
  4739. " <td height=\"20\"><strong>Space</strong></td>\n"
  4740. " <td>&nbsp;Rotate Geometry</td>\n"
  4741. " </tr>\n"
  4742. " <tr height=\"20\">\n"
  4743. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4744. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  4745. " </tr>\n"
  4746. " <tr height=\"20\">\n"
  4747. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4748. " <td>&nbsp;Abort and return to Select</td>\n"
  4749. " </tr>\n"
  4750. " <tr height=\"20\">\n"
  4751. " <td height=\"20\"><strong>Del</strong></td>\n"
  4752. " <td>&nbsp;Delete Shape</td>\n"
  4753. " </tr>\n"
  4754. " </tbody>\n"
  4755. " </table>\n"
  4756. " <br>\n"
  4757. " <br>\n"
  4758. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  4759. "strong><br>\n"
  4760. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4761. "\"width:283px\">\n"
  4762. " <tbody>\n"
  4763. " <tr height=\"20\">\n"
  4764. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4765. "td>\n"
  4766. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  4767. " </tr>\n"
  4768. " <tr height=\"20\">\n"
  4769. " <td height=\"20\"><strong>C</strong></td>\n"
  4770. " <td>&nbsp;Copy Drill(s)</td>\n"
  4771. " </tr>\n"
  4772. " <tr height=\"20\">\n"
  4773. " <td height=\"20\"><strong>D</strong></td>\n"
  4774. " <td>&nbsp;Add Drill</td>\n"
  4775. " </tr>\n"
  4776. " <tr height=\"20\">\n"
  4777. " <td height=\"20\"><strong>J</strong></td>\n"
  4778. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4779. " </tr>\n"
  4780. " <tr height=\"20\">\n"
  4781. " <td height=\"20\"><strong>M</strong></td>\n"
  4782. " <td>&nbsp;Move Drill(s)</td>\n"
  4783. " </tr>\n"
  4784. " <tr height=\"20\">\n"
  4785. " <td height=\"20\"><strong>R</strong></td>\n"
  4786. " <td>&nbsp;Resize Drill(s)</td>\n"
  4787. " </tr>\n"
  4788. " <tr height=\"20\">\n"
  4789. " <td height=\"20\"><strong>T</strong></td>\n"
  4790. " <td>&nbsp;Add a new Tool</td>\n"
  4791. " </tr>\n"
  4792. " <tr height=\"20\">\n"
  4793. " <td height=\"20\">&nbsp;</td>\n"
  4794. " <td>&nbsp;</td>\n"
  4795. " </tr>\n"
  4796. " <tr height=\"20\">\n"
  4797. " <td height=\"20\"><strong>Del</strong></td>\n"
  4798. " <td>&nbsp;Delete Drill(s)</td>\n"
  4799. " </tr>\n"
  4800. " <tr height=\"20\">\n"
  4801. " <td height=\"20\"><strong>Del</strong></td>\n"
  4802. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  4803. " </tr>\n"
  4804. " <tr height=\"20\">\n"
  4805. " <td height=\"20\">&nbsp;</td>\n"
  4806. " <td>&nbsp;</td>\n"
  4807. " </tr>\n"
  4808. " <tr height=\"20\">\n"
  4809. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4810. " <td>&nbsp;Abort and return to Select</td>\n"
  4811. " </tr>\n"
  4812. " <tr height=\"20\">\n"
  4813. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4814. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4815. " </tr>\n"
  4816. " </tbody>\n"
  4817. " </table>\n"
  4818. " <br>\n"
  4819. " <br>\n"
  4820. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  4821. "strong><br>\n"
  4822. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4823. "\"width:283px\">\n"
  4824. " <tbody>\n"
  4825. " <tr height=\"20\">\n"
  4826. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4827. "td>\n"
  4828. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  4829. " </tr>\n"
  4830. " <tr height=\"20\">\n"
  4831. " <td height=\"20\"><strong>B</strong></td>\n"
  4832. " <td>&nbsp;Buffer</td>\n"
  4833. " </tr>\n"
  4834. " <tr height=\"20\">\n"
  4835. " <td height=\"20\"><strong>C</strong></td>\n"
  4836. " <td>&nbsp;Copy</td>\n"
  4837. " </tr>\n"
  4838. " <tr height=\"20\">\n"
  4839. " <td height=\"20\"><strong>D</strong></td>\n"
  4840. " <td>&nbsp;Add Disc</td>\n"
  4841. " </tr>\n"
  4842. " <tr height=\"20\">\n"
  4843. " <td height=\"20\"><strong>E</strong></td>\n"
  4844. " <td>&nbsp;Add SemiDisc</td>\n"
  4845. " </tr>\n"
  4846. " <tr height=\"20\">\n"
  4847. " <td height=\"20\"><strong>J</strong></td>\n"
  4848. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4849. " </tr>\n"
  4850. " <tr height=\"20\">\n"
  4851. " <td height=\"20\"><strong>M</strong></td>\n"
  4852. " <td>&nbsp;Move</td>\n"
  4853. " </tr>\n"
  4854. " <tr height=\"20\">\n"
  4855. " <td height=\"20\"><strong>N</strong></td>\n"
  4856. " <td>&nbsp;Add Region</td>\n"
  4857. " </tr>\n"
  4858. " <tr height=\"20\">\n"
  4859. " <td height=\"20\"><strong>P</strong></td>\n"
  4860. " <td>&nbsp;Add Pad</td>\n"
  4861. " </tr>\n"
  4862. " <tr height=\"20\">\n"
  4863. " <td height=\"20\"><strong>R</strong></td>\n"
  4864. " <td>&nbsp;Within Track & Region Tools will cycle in "
  4865. "REVERSE the bend modes</td>\n"
  4866. " </tr>\n"
  4867. " <tr height=\"20\">\n"
  4868. " <td height=\"20\"><strong>S</strong></td>\n"
  4869. " <td>&nbsp;Scale</td>\n"
  4870. " </tr>\n"
  4871. " <tr height=\"20\">\n"
  4872. " <td height=\"20\"><strong>T</strong></td>\n"
  4873. " <td>&nbsp;Add Track</td>\n"
  4874. " </tr>\n"
  4875. " <tr height=\"20\">\n"
  4876. " <td height=\"20\"><strong>T</strong></td>\n"
  4877. " <td>&nbsp;Within Track & Region Tools will cycle "
  4878. "FORWARD the bend modes</td>\n"
  4879. " </tr>\n"
  4880. " <tr height=\"20\">\n"
  4881. " <td height=\"20\">&nbsp;</td>\n"
  4882. " <td>&nbsp;</td>\n"
  4883. " </tr>\n"
  4884. " <tr height=\"20\">\n"
  4885. " <td height=\"20\"><strong>Del</strong></td>\n"
  4886. " <td>&nbsp;Delete</td>\n"
  4887. " </tr>\n"
  4888. " <tr height=\"20\">\n"
  4889. " <td height=\"20\"><strong>Del</strong></td>\n"
  4890. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  4891. " </tr>\n"
  4892. " <tr height=\"20\">\n"
  4893. " <td height=\"20\">&nbsp;</td>\n"
  4894. " <td>&nbsp;</td>\n"
  4895. " </tr>\n"
  4896. " <tr height=\"20\">\n"
  4897. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4898. " <td>&nbsp;Abort and return to Select</td>\n"
  4899. " </tr>\n"
  4900. " <tr height=\"20\">\n"
  4901. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4902. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4903. " </tr>\n"
  4904. " <tr height=\"20\">\n"
  4905. " <td height=\"20\">&nbsp;</td>\n"
  4906. " <td>&nbsp;</td>\n"
  4907. " </tr>\n"
  4908. " <tr height=\"20\">\n"
  4909. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4910. " <td>&nbsp;Transformation Tool</td>\n"
  4911. " </tr>\n"
  4912. " </tbody>\n"
  4913. " </table>\n"
  4914. " "
  4915. #: flatcamGUI/FlatCAMGUI.py:1578
  4916. msgid "Toggle Panel"
  4917. msgstr "Toggle Panel"
  4918. #: flatcamGUI/FlatCAMGUI.py:1581
  4919. msgid "New"
  4920. msgstr "New"
  4921. #: flatcamGUI/FlatCAMGUI.py:1582
  4922. msgid "Geometry"
  4923. msgstr "Geometry"
  4924. #: flatcamGUI/FlatCAMGUI.py:1584
  4925. msgid "Excellon"
  4926. msgstr "Excellon"
  4927. #: flatcamGUI/FlatCAMGUI.py:1589
  4928. msgid "Grids"
  4929. msgstr "Grids"
  4930. #: flatcamGUI/FlatCAMGUI.py:1591
  4931. msgid "View"
  4932. msgstr "View"
  4933. #: flatcamGUI/FlatCAMGUI.py:1593
  4934. msgid "Clear Plot"
  4935. msgstr "Clear Plot"
  4936. #: flatcamGUI/FlatCAMGUI.py:1594
  4937. msgid "Replot"
  4938. msgstr "Replot"
  4939. #: flatcamGUI/FlatCAMGUI.py:1597
  4940. msgid "Geo Editor"
  4941. msgstr "Geo Editor"
  4942. #: flatcamGUI/FlatCAMGUI.py:1598
  4943. msgid "Line"
  4944. msgstr "Line"
  4945. #: flatcamGUI/FlatCAMGUI.py:1599
  4946. msgid "Rectangle"
  4947. msgstr "Rectangle"
  4948. #: flatcamGUI/FlatCAMGUI.py:1600
  4949. msgid "Cut"
  4950. msgstr "Cut"
  4951. #: flatcamGUI/FlatCAMGUI.py:1605
  4952. msgid "Pad"
  4953. msgstr "Pad"
  4954. #: flatcamGUI/FlatCAMGUI.py:1606
  4955. msgid "Pad Array"
  4956. msgstr "Pad Array"
  4957. #: flatcamGUI/FlatCAMGUI.py:1607
  4958. msgid "Track"
  4959. msgstr "Track"
  4960. #: flatcamGUI/FlatCAMGUI.py:1608
  4961. msgid "Region"
  4962. msgstr "Region"
  4963. #: flatcamGUI/FlatCAMGUI.py:1610
  4964. msgid "Exc Editor"
  4965. msgstr "Exc Editor"
  4966. #: flatcamGUI/FlatCAMGUI.py:1611
  4967. msgid "Add Drill"
  4968. msgstr "Add Drill"
  4969. #: flatcamGUI/FlatCAMGUI.py:1643
  4970. msgid "Print Preview"
  4971. msgstr "Print Preview"
  4972. #: flatcamGUI/FlatCAMGUI.py:1644
  4973. msgid "Print Code"
  4974. msgstr "Print Code"
  4975. #: flatcamGUI/FlatCAMGUI.py:1645
  4976. msgid "Find in Code"
  4977. msgstr "Find in Code"
  4978. #: flatcamGUI/FlatCAMGUI.py:1650
  4979. msgid "Replace With"
  4980. msgstr "Replace With"
  4981. #: flatcamGUI/FlatCAMGUI.py:1654
  4982. msgid "All"
  4983. msgstr "All"
  4984. #: flatcamGUI/FlatCAMGUI.py:1656
  4985. msgid ""
  4986. "When checked it will replace all instances in the 'Find' box\n"
  4987. "with the text in the 'Replace' box.."
  4988. msgstr ""
  4989. "When checked it will replace all instances in the 'Find' box\n"
  4990. "with the text in the 'Replace' box.."
  4991. #: flatcamGUI/FlatCAMGUI.py:1659
  4992. msgid "Open Code"
  4993. msgstr "Open Code"
  4994. #: flatcamGUI/FlatCAMGUI.py:1660
  4995. msgid "Save Code"
  4996. msgstr "Save Code"
  4997. #: flatcamGUI/FlatCAMGUI.py:1695
  4998. msgid ""
  4999. "Relative neasurement.\n"
  5000. "Reference is last click position"
  5001. msgstr ""
  5002. "Relative neasurement.\n"
  5003. "Reference is last click position"
  5004. #: flatcamGUI/FlatCAMGUI.py:1701
  5005. msgid ""
  5006. "Absolute neasurement.\n"
  5007. "Reference is (X=0, Y= 0) position"
  5008. msgstr ""
  5009. "Absolute neasurement.\n"
  5010. "Reference is (X=0, Y= 0) position"
  5011. #: flatcamGUI/FlatCAMGUI.py:1897
  5012. msgid "Select 'Esc'"
  5013. msgstr "Select 'Esc'"
  5014. #: flatcamGUI/FlatCAMGUI.py:1924
  5015. msgid "Copy Objects"
  5016. msgstr "Copy Objects"
  5017. #: flatcamGUI/FlatCAMGUI.py:1926
  5018. msgid "Delete Shape"
  5019. msgstr "Delete Shape"
  5020. #: flatcamGUI/FlatCAMGUI.py:1931
  5021. msgid "Move Objects"
  5022. msgstr "Move Objects"
  5023. #: flatcamGUI/FlatCAMGUI.py:2360
  5024. msgid ""
  5025. "Please first select a geometry item to be cutted\n"
  5026. "then select the geometry item that will be cutted\n"
  5027. "out of the first item. In the end press ~X~ key or\n"
  5028. "the toolbar button."
  5029. msgstr ""
  5030. "Please first select a geometry item to be cutted\n"
  5031. "then select the geometry item that will be cutted\n"
  5032. "out of the first item. In the end press ~X~ key or\n"
  5033. "the toolbar button."
  5034. #: flatcamGUI/FlatCAMGUI.py:2367 flatcamGUI/FlatCAMGUI.py:2504
  5035. #: flatcamGUI/FlatCAMGUI.py:2563 flatcamGUI/FlatCAMGUI.py:2583
  5036. msgid "Warning"
  5037. msgstr "Warning"
  5038. #: flatcamGUI/FlatCAMGUI.py:2434 flatcamGUI/FlatCAMGUI.py:2633
  5039. #: flatcamGUI/FlatCAMGUI.py:2844
  5040. msgid "[WARNING_NOTCL] Cancelled."
  5041. msgstr "[WARNING_NOTCL] Cancelled."
  5042. #: flatcamGUI/FlatCAMGUI.py:2499
  5043. msgid ""
  5044. "Please select geometry items \n"
  5045. "on which to perform Intersection Tool."
  5046. msgstr ""
  5047. "Please select geometry items \n"
  5048. "on which to perform Intersection Tool."
  5049. #: flatcamGUI/FlatCAMGUI.py:2558
  5050. msgid ""
  5051. "Please select geometry items \n"
  5052. "on which to perform Substraction Tool."
  5053. msgstr ""
  5054. "Please select geometry items \n"
  5055. "on which to perform Substraction Tool."
  5056. #: flatcamGUI/FlatCAMGUI.py:2578
  5057. msgid ""
  5058. "Please select geometry items \n"
  5059. "on which to perform union."
  5060. msgstr ""
  5061. "Please select geometry items \n"
  5062. "on which to perform union."
  5063. #: flatcamGUI/FlatCAMGUI.py:2649 flatcamGUI/FlatCAMGUI.py:2861
  5064. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  5065. msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  5066. #: flatcamGUI/FlatCAMGUI.py:2733 flatcamGUI/FlatCAMGUI.py:2928
  5067. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  5068. msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  5069. #: flatcamGUI/FlatCAMGUI.py:2779 flatcamGUI/FlatCAMGUI.py:2974
  5070. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  5071. msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  5072. #: flatcamGUI/FlatCAMGUI.py:2988
  5073. msgid "New Tool ..."
  5074. msgstr "New Tool ..."
  5075. #: flatcamGUI/FlatCAMGUI.py:2989
  5076. msgid "Enter a Tool Diameter:"
  5077. msgstr "Enter a Tool Diameter:"
  5078. #: flatcamGUI/FlatCAMGUI.py:3032
  5079. msgid "Measurement Tool exit..."
  5080. msgstr "Measurement Tool exit..."
  5081. #: flatcamGUI/FlatCAMGUI.py:3323
  5082. msgid "GUI Preferences"
  5083. msgstr "GUI Preferences"
  5084. #: flatcamGUI/FlatCAMGUI.py:3329
  5085. msgid "Grid X value:"
  5086. msgstr "Grid X value:"
  5087. #: flatcamGUI/FlatCAMGUI.py:3331
  5088. msgid "This is the Grid snap value on X axis."
  5089. msgstr "This is the Grid snap value on X axis."
  5090. #: flatcamGUI/FlatCAMGUI.py:3336
  5091. msgid "Grid Y value:"
  5092. msgstr "Grid Y value:"
  5093. #: flatcamGUI/FlatCAMGUI.py:3338
  5094. msgid "This is the Grid snap value on Y axis."
  5095. msgstr "This is the Grid snap value on Y axis."
  5096. #: flatcamGUI/FlatCAMGUI.py:3343
  5097. msgid "Snap Max:"
  5098. msgstr "Snap Max:"
  5099. #: flatcamGUI/FlatCAMGUI.py:3348
  5100. msgid "Workspace:"
  5101. msgstr "Workspace:"
  5102. #: flatcamGUI/FlatCAMGUI.py:3350
  5103. msgid ""
  5104. "Draw a delimiting rectangle on canvas.\n"
  5105. "The purpose is to illustrate the limits for our work."
  5106. msgstr ""
  5107. "Draw a delimiting rectangle on canvas.\n"
  5108. "The purpose is to illustrate the limits for our work."
  5109. #: flatcamGUI/FlatCAMGUI.py:3353
  5110. msgid "Wk. format:"
  5111. msgstr "Wk. format:"
  5112. #: flatcamGUI/FlatCAMGUI.py:3355
  5113. msgid ""
  5114. "Select the type of rectangle to be used on canvas,\n"
  5115. "as valid workspace."
  5116. msgstr ""
  5117. "Select the type of rectangle to be used on canvas,\n"
  5118. "as valid workspace."
  5119. #: flatcamGUI/FlatCAMGUI.py:3368
  5120. msgid "Plot Fill:"
  5121. msgstr "Plot Fill:"
  5122. #: flatcamGUI/FlatCAMGUI.py:3370
  5123. msgid ""
  5124. "Set the fill color for plotted objects.\n"
  5125. "First 6 digits are the color and the last 2\n"
  5126. "digits are for alpha (transparency) level."
  5127. msgstr ""
  5128. "Set the fill color for plotted objects.\n"
  5129. "First 6 digits are the color and the last 2\n"
  5130. "digits are for alpha (transparency) level."
  5131. #: flatcamGUI/FlatCAMGUI.py:3384 flatcamGUI/FlatCAMGUI.py:3434
  5132. #: flatcamGUI/FlatCAMGUI.py:3484
  5133. msgid "Alpha Level:"
  5134. msgstr "Alpha Level:"
  5135. #: flatcamGUI/FlatCAMGUI.py:3386
  5136. msgid "Set the fill transparency for plotted objects."
  5137. msgstr "Set the fill transparency for plotted objects."
  5138. #: flatcamGUI/FlatCAMGUI.py:3403
  5139. msgid "Plot Line:"
  5140. msgstr "Plot Line:"
  5141. #: flatcamGUI/FlatCAMGUI.py:3405
  5142. msgid "Set the line color for plotted objects."
  5143. msgstr "Set the line color for plotted objects."
  5144. #: flatcamGUI/FlatCAMGUI.py:3417
  5145. msgid "Sel. Fill:"
  5146. msgstr "Sel. Fill:"
  5147. #: flatcamGUI/FlatCAMGUI.py:3419
  5148. msgid ""
  5149. "Set the fill color for the selection box\n"
  5150. "in case that the selection is done from left to right.\n"
  5151. "First 6 digits are the color and the last 2\n"
  5152. "digits are for alpha (transparency) level."
  5153. msgstr ""
  5154. "Set the fill color for the selection box\n"
  5155. "in case that the selection is done from left to right.\n"
  5156. "First 6 digits are the color and the last 2\n"
  5157. "digits are for alpha (transparency) level."
  5158. #: flatcamGUI/FlatCAMGUI.py:3436
  5159. msgid "Set the fill transparency for the 'left to right' selection box."
  5160. msgstr "Set the fill transparency for the 'left to right' selection box."
  5161. #: flatcamGUI/FlatCAMGUI.py:3453
  5162. msgid "Sel. Line:"
  5163. msgstr "Sel. Line:"
  5164. #: flatcamGUI/FlatCAMGUI.py:3455
  5165. msgid "Set the line color for the 'left to right' selection box."
  5166. msgstr "Set the line color for the 'left to right' selection box."
  5167. #: flatcamGUI/FlatCAMGUI.py:3467
  5168. msgid "Sel2. Fill:"
  5169. msgstr "Sel2. Fill:"
  5170. #: flatcamGUI/FlatCAMGUI.py:3469
  5171. msgid ""
  5172. "Set the fill color for the selection box\n"
  5173. "in case that the selection is done from right to left.\n"
  5174. "First 6 digits are the color and the last 2\n"
  5175. "digits are for alpha (transparency) level."
  5176. msgstr ""
  5177. "Set the fill color for the selection box\n"
  5178. "in case that the selection is done from right to left.\n"
  5179. "First 6 digits are the color and the last 2\n"
  5180. "digits are for alpha (transparency) level."
  5181. #: flatcamGUI/FlatCAMGUI.py:3486
  5182. msgid "Set the fill transparency for selection 'right to left' box."
  5183. msgstr "Set the fill transparency for selection 'right to left' box."
  5184. #: flatcamGUI/FlatCAMGUI.py:3503
  5185. msgid "Sel2. Line:"
  5186. msgstr "Sel2. Line:"
  5187. #: flatcamGUI/FlatCAMGUI.py:3505
  5188. msgid "Set the line color for the 'right to left' selection box."
  5189. msgstr "Set the line color for the 'right to left' selection box."
  5190. #: flatcamGUI/FlatCAMGUI.py:3517
  5191. msgid "Editor Draw:"
  5192. msgstr "Editor Draw:"
  5193. #: flatcamGUI/FlatCAMGUI.py:3519
  5194. msgid "Set the color for the shape."
  5195. msgstr "Set the color for the shape."
  5196. #: flatcamGUI/FlatCAMGUI.py:3531
  5197. msgid "Editor Draw Sel.:"
  5198. msgstr "Editor Draw Sel.:"
  5199. #: flatcamGUI/FlatCAMGUI.py:3533
  5200. msgid "Set the color of the shape when selected."
  5201. msgstr "Set the color of the shape when selected."
  5202. #: flatcamGUI/FlatCAMGUI.py:3545
  5203. msgid "Project Items:"
  5204. msgstr "Project Items:"
  5205. #: flatcamGUI/FlatCAMGUI.py:3547
  5206. msgid "Set the color of the items in Project Tab Tree."
  5207. msgstr "Set the color of the items in Project Tab Tree."
  5208. #: flatcamGUI/FlatCAMGUI.py:3558
  5209. msgid "Proj. Dis. Items:"
  5210. msgstr "Proj. Dis. Items:"
  5211. #: flatcamGUI/FlatCAMGUI.py:3560
  5212. msgid ""
  5213. "Set the color of the items in Project Tab Tree,\n"
  5214. "for the case when the items are disabled."
  5215. msgstr ""
  5216. "Set the color of the items in Project Tab Tree,\n"
  5217. "for the case when the items are disabled."
  5218. #: flatcamGUI/FlatCAMGUI.py:3611
  5219. msgid "GUI Settings"
  5220. msgstr "GUI Settings"
  5221. #: flatcamGUI/FlatCAMGUI.py:3617
  5222. msgid "Layout:"
  5223. msgstr "Layout:"
  5224. #: flatcamGUI/FlatCAMGUI.py:3619
  5225. msgid ""
  5226. "Select an layout for FlatCAM.\n"
  5227. "It is applied immediately."
  5228. msgstr ""
  5229. "Select an layout for FlatCAM.\n"
  5230. "It is applied immediately."
  5231. #: flatcamGUI/FlatCAMGUI.py:3635
  5232. msgid "Style:"
  5233. msgstr "Style:"
  5234. #: flatcamGUI/FlatCAMGUI.py:3637
  5235. msgid ""
  5236. "Select an style for FlatCAM.\n"
  5237. "It will be applied at the next app start."
  5238. msgstr ""
  5239. "Select an style for FlatCAM.\n"
  5240. "It will be applied at the next app start."
  5241. #: flatcamGUI/FlatCAMGUI.py:3648
  5242. msgid "HDPI Support:"
  5243. msgstr "HDPI Support:"
  5244. #: flatcamGUI/FlatCAMGUI.py:3650
  5245. msgid ""
  5246. "Enable High DPI support for FlatCAM.\n"
  5247. "It will be applied at the next app start."
  5248. msgstr ""
  5249. "Enable High DPI support for FlatCAM.\n"
  5250. "It will be applied at the next app start."
  5251. #: flatcamGUI/FlatCAMGUI.py:3663
  5252. msgid "Clear GUI Settings:"
  5253. msgstr "Clear GUI Settings:"
  5254. #: flatcamGUI/FlatCAMGUI.py:3665
  5255. msgid ""
  5256. "Clear the GUI settings for FlatCAM,\n"
  5257. "such as: layout, gui state, style, hdpi support etc."
  5258. msgstr ""
  5259. "Clear the GUI settings for FlatCAM,\n"
  5260. "such as: layout, gui state, style, hdpi support etc."
  5261. #: flatcamGUI/FlatCAMGUI.py:3668
  5262. msgid "Clear"
  5263. msgstr "Clear"
  5264. #: flatcamGUI/FlatCAMGUI.py:3672
  5265. msgid "Hover Shape:"
  5266. msgstr "Hover Shape:"
  5267. #: flatcamGUI/FlatCAMGUI.py:3674
  5268. msgid ""
  5269. "Enable display of a hover shape for FlatCAM objects.\n"
  5270. "It is displayed whenever the mouse cursor is hovering\n"
  5271. "over any kind of not-selected object."
  5272. msgstr ""
  5273. "Enable display of a hover shape for FlatCAM objects.\n"
  5274. "It is displayed whenever the mouse cursor is hovering\n"
  5275. "over any kind of not-selected object."
  5276. #: flatcamGUI/FlatCAMGUI.py:3681
  5277. msgid "Sel. Shape:"
  5278. msgstr "Sel. Shape:"
  5279. #: flatcamGUI/FlatCAMGUI.py:3683
  5280. msgid ""
  5281. "Enable the display of a selection shape for FlatCAM objects.\n"
  5282. "It is displayed whenever the mouse selects an object\n"
  5283. "either by clicking or dragging mouse from left to right or\n"
  5284. "right to left."
  5285. msgstr ""
  5286. "Enable the display of a selection shape for FlatCAM objects.\n"
  5287. "It is displayed whenever the mouse selects an object\n"
  5288. "either by clicking or dragging mouse from left to right or\n"
  5289. "right to left."
  5290. #: flatcamGUI/FlatCAMGUI.py:3725
  5291. msgid "Are you sure you want to delete the GUI Settings? \n"
  5292. msgstr "Are you sure you want to delete the GUI Settings? \n"
  5293. #: flatcamGUI/FlatCAMGUI.py:3728
  5294. msgid "Clear GUI Settings"
  5295. msgstr "Clear GUI Settings"
  5296. #: flatcamGUI/FlatCAMGUI.py:3749
  5297. msgid "App Preferences"
  5298. msgstr "App Preferences"
  5299. #: flatcamGUI/FlatCAMGUI.py:3755
  5300. msgid "<b>Units:</b>"
  5301. msgstr "<b>Units:</b>"
  5302. #: flatcamGUI/FlatCAMGUI.py:3756
  5303. msgid ""
  5304. "The default value for FlatCAM units.\n"
  5305. "Whatever is selected here is set every time\n"
  5306. "FLatCAM is started."
  5307. msgstr ""
  5308. "The default value for FlatCAM units.\n"
  5309. "Whatever is selected here is set every time\n"
  5310. "FLatCAM is started."
  5311. #: flatcamGUI/FlatCAMGUI.py:3763
  5312. msgid "<b>APP. LEVEL:</b>"
  5313. msgstr "<b>APP. LEVEL:</b>"
  5314. #: flatcamGUI/FlatCAMGUI.py:3764
  5315. msgid ""
  5316. "Choose the default level of usage for FlatCAM.\n"
  5317. "BASIC level -> reduced functionality, best for beginner's.\n"
  5318. "ADVANCED level -> full functionality.\n"
  5319. "\n"
  5320. "The choice here will influence the parameters in\n"
  5321. "the Selected Tab for all kinds of FlatCAM objects."
  5322. msgstr ""
  5323. "Choose the default level of usage for FlatCAM.\n"
  5324. "BASIC level -> reduced functionality, best for beginner's.\n"
  5325. "ADVANCED level -> full functionality.\n"
  5326. "\n"
  5327. "The choice here will influence the parameters in\n"
  5328. "the Selected Tab for all kinds of FlatCAM objects."
  5329. #: flatcamGUI/FlatCAMGUI.py:3769
  5330. msgid "Basic"
  5331. msgstr "Basic"
  5332. #: flatcamGUI/FlatCAMGUI.py:3770
  5333. msgid "Advanced"
  5334. msgstr "Advanced"
  5335. #: flatcamGUI/FlatCAMGUI.py:3773
  5336. msgid "<b>Languages:</b>"
  5337. msgstr "<b>Languages:</b>"
  5338. #: flatcamGUI/FlatCAMGUI.py:3774
  5339. msgid "Set the language used throughout FlatCAM."
  5340. msgstr "Set the language used throughout FlatCAM."
  5341. #: flatcamGUI/FlatCAMGUI.py:3777
  5342. msgid "Apply Language"
  5343. msgstr "Apply Language"
  5344. #: flatcamGUI/FlatCAMGUI.py:3778
  5345. msgid ""
  5346. "Set the language used throughout FlatCAM.\n"
  5347. "The app will restart after click.Windows: When FlatCAM is installed in "
  5348. "Program Files\n"
  5349. "directory, it is possible that the app will not\n"
  5350. "restart after the button is clicked due of Windows\n"
  5351. "security features. In this case the language will be\n"
  5352. "applied at the next app start."
  5353. msgstr ""
  5354. "Set the language used throughout FlatCAM.\n"
  5355. "The app will restart after click.Windows: When FlatCAM is installed in "
  5356. "Program Files\n"
  5357. "directory, it is possible that the app will not\n"
  5358. "restart after the button is clicked due of Windows\n"
  5359. "security features. In this case the language will be\n"
  5360. "applied at the next app start."
  5361. #: flatcamGUI/FlatCAMGUI.py:3787
  5362. msgid "Shell at StartUp:"
  5363. msgstr "Shell at StartUp:"
  5364. #: flatcamGUI/FlatCAMGUI.py:3789 flatcamGUI/FlatCAMGUI.py:3794
  5365. msgid ""
  5366. "Check this box if you want the shell to\n"
  5367. "start automatically at startup."
  5368. msgstr ""
  5369. "Check this box if you want the shell to\n"
  5370. "start automatically at startup."
  5371. #: flatcamGUI/FlatCAMGUI.py:3799
  5372. msgid "Version Check:"
  5373. msgstr "Version Check:"
  5374. #: flatcamGUI/FlatCAMGUI.py:3801 flatcamGUI/FlatCAMGUI.py:3806
  5375. msgid ""
  5376. "Check this box if you want to check\n"
  5377. "for a new version automatically at startup."
  5378. msgstr ""
  5379. "Check this box if you want to check\n"
  5380. "for a new version automatically at startup."
  5381. #: flatcamGUI/FlatCAMGUI.py:3811
  5382. msgid "Send Stats:"
  5383. msgstr "Send Stats:"
  5384. #: flatcamGUI/FlatCAMGUI.py:3813 flatcamGUI/FlatCAMGUI.py:3818
  5385. msgid ""
  5386. "Check this box if you agree to send anonymous\n"
  5387. "stats automatically at startup, to help improve FlatCAM."
  5388. msgstr ""
  5389. "Check this box if you agree to send anonymous\n"
  5390. "stats automatically at startup, to help improve FlatCAM."
  5391. #: flatcamGUI/FlatCAMGUI.py:3825
  5392. msgid "<b>Pan Button:</b>"
  5393. msgstr "<b>Pan Button:</b>"
  5394. #: flatcamGUI/FlatCAMGUI.py:3826
  5395. msgid ""
  5396. "Select the mouse button to use for panning:\n"
  5397. "- MMB --> Middle Mouse Button\n"
  5398. "- RMB --> Right Mouse Button"
  5399. msgstr ""
  5400. "Select the mouse button to use for panning:\n"
  5401. "- MMB --> Middle Mouse Button\n"
  5402. "- RMB --> Right Mouse Button"
  5403. #: flatcamGUI/FlatCAMGUI.py:3833
  5404. msgid "<b>Multiple Sel:</b>"
  5405. msgstr "<b>Multiple Sel:</b>"
  5406. #: flatcamGUI/FlatCAMGUI.py:3834
  5407. msgid "Select the key used for multiple selection."
  5408. msgstr "Select the key used for multiple selection."
  5409. #: flatcamGUI/FlatCAMGUI.py:3839
  5410. msgid "Project at StartUp:"
  5411. msgstr "Project at StartUp:"
  5412. #: flatcamGUI/FlatCAMGUI.py:3841 flatcamGUI/FlatCAMGUI.py:3846
  5413. msgid ""
  5414. "Check this box if you want the project/selected/tool tab area to\n"
  5415. "to be shown automatically at startup."
  5416. msgstr ""
  5417. "Check this box if you want the project/selected/tool tab area to\n"
  5418. "to be shown automatically at startup."
  5419. #: flatcamGUI/FlatCAMGUI.py:3851
  5420. msgid "Project AutoHide:"
  5421. msgstr "Project AutoHide:"
  5422. #: flatcamGUI/FlatCAMGUI.py:3853 flatcamGUI/FlatCAMGUI.py:3859
  5423. msgid ""
  5424. "Check this box if you want the project/selected/tool tab area to\n"
  5425. "hide automatically when there are no objects loaded and\n"
  5426. "to show whenever a new object is created."
  5427. msgstr ""
  5428. "Check this box if you want the project/selected/tool tab area to\n"
  5429. "hide automatically when there are no objects loaded and\n"
  5430. "to show whenever a new object is created."
  5431. #: flatcamGUI/FlatCAMGUI.py:3865
  5432. msgid "<b>Enable ToolTips:</b>"
  5433. msgstr "<b>Enable ToolTips:</b>"
  5434. #: flatcamGUI/FlatCAMGUI.py:3867 flatcamGUI/FlatCAMGUI.py:3872
  5435. msgid ""
  5436. "Check this box if you want to have toolTips displayed\n"
  5437. "when hovering with mouse over items throughout the App."
  5438. msgstr ""
  5439. "Check this box if you want to have toolTips displayed\n"
  5440. "when hovering with mouse over items throughout the App."
  5441. #: flatcamGUI/FlatCAMGUI.py:3875
  5442. msgid "Workers number:"
  5443. msgstr "Workers number:"
  5444. #: flatcamGUI/FlatCAMGUI.py:3877 flatcamGUI/FlatCAMGUI.py:3886
  5445. msgid ""
  5446. "The number of Qthreads made available to the App.\n"
  5447. "A bigger number may finish the jobs more quickly but\n"
  5448. "depending on your computer speed, may make the App\n"
  5449. "unresponsive. Can have a value between 2 and 16.\n"
  5450. "Default value is 2.\n"
  5451. "After change, it will be applied at next App start."
  5452. msgstr ""
  5453. "The number of Qthreads made available to the App.\n"
  5454. "A bigger number may finish the jobs more quickly but\n"
  5455. "depending on your computer speed, may make the App\n"
  5456. "unresponsive. Can have a value between 2 and 16.\n"
  5457. "Default value is 2.\n"
  5458. "After change, it will be applied at next App start."
  5459. #: flatcamGUI/FlatCAMGUI.py:3898 flatcamGUI/FlatCAMGUI.py:3907
  5460. msgid ""
  5461. "This value can counter the effect of the Circle Steps\n"
  5462. "parameter. Default value is 0.01.\n"
  5463. "A lower value will increase the detail both in image\n"
  5464. "and in Gcode for the circles, with a higher cost in\n"
  5465. "performance. Higher value will provide more\n"
  5466. "performance at the expense of level of detail."
  5467. msgstr ""
  5468. "This value can counter the effect of the Circle Steps\n"
  5469. "parameter. Default value is 0.01.\n"
  5470. "A lower value will increase the detail both in image\n"
  5471. "and in Gcode for the circles, with a higher cost in\n"
  5472. "performance. Higher value will provide more\n"
  5473. "performance at the expense of level of detail."
  5474. #: flatcamGUI/FlatCAMGUI.py:3943
  5475. msgid "\"Open\" behavior"
  5476. msgstr "\"Open\" behavior"
  5477. #: flatcamGUI/FlatCAMGUI.py:3945
  5478. msgid ""
  5479. "When checked the path for the last saved file is used when saving files,\n"
  5480. "and the path for the last opened file is used when opening files.\n"
  5481. "\n"
  5482. "When unchecked the path for opening files is the one used last: either the\n"
  5483. "path for saving files or the path for opening files."
  5484. msgstr ""
  5485. "When checked the path for the last saved file is used when saving files,\n"
  5486. "and the path for the last opened file is used when opening files.\n"
  5487. "\n"
  5488. "When unchecked the path for opening files is the one used last: either the\n"
  5489. "path for saving files or the path for opening files."
  5490. #: flatcamGUI/FlatCAMGUI.py:3954
  5491. msgid "Save Compressed Project"
  5492. msgstr "Save Compressed Project"
  5493. #: flatcamGUI/FlatCAMGUI.py:3956
  5494. msgid ""
  5495. "Whether to save a compressed or uncompressed project.\n"
  5496. "When checked it will save a compressed FlatCAM project."
  5497. msgstr ""
  5498. "Whether to save a compressed or uncompressed project.\n"
  5499. "When checked it will save a compressed FlatCAM project."
  5500. #: flatcamGUI/FlatCAMGUI.py:3967
  5501. msgid "Compression Level:"
  5502. msgstr "Compression Level:"
  5503. #: flatcamGUI/FlatCAMGUI.py:3969
  5504. msgid ""
  5505. "The level of compression used when saving\n"
  5506. "a FlatCAM project. Higher value means better compression\n"
  5507. "but require more RAM usage and more processing time."
  5508. msgstr ""
  5509. "The level of compression used when saving\n"
  5510. "a FlatCAM project. Higher value means better compression\n"
  5511. "but require more RAM usage and more processing time."
  5512. #: flatcamGUI/FlatCAMGUI.py:3992
  5513. msgid "Gerber General"
  5514. msgstr "Gerber General"
  5515. #: flatcamGUI/FlatCAMGUI.py:3995 flatcamGUI/FlatCAMGUI.py:4361
  5516. #: flatcamGUI/FlatCAMGUI.py:5135 flatcamGUI/FlatCAMGUI.py:5504
  5517. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:505
  5518. #: flatcamGUI/ObjectUI.py:833 flatcamGUI/ObjectUI.py:1350
  5519. msgid "<b>Plot Options:</b>"
  5520. msgstr "<b>Plot Options:</b>"
  5521. #: flatcamGUI/FlatCAMGUI.py:4002 flatcamGUI/FlatCAMGUI.py:4373
  5522. #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:506
  5523. msgid "Solid"
  5524. msgstr "Solid"
  5525. #: flatcamGUI/FlatCAMGUI.py:4004 flatcamGUI/ObjectUI.py:158
  5526. msgid "Solid color polygons."
  5527. msgstr "Solid color polygons."
  5528. #: flatcamGUI/FlatCAMGUI.py:4009 flatcamGUI/ObjectUI.py:164
  5529. msgid "M-Color"
  5530. msgstr "M-Color"
  5531. #: flatcamGUI/FlatCAMGUI.py:4011 flatcamGUI/ObjectUI.py:166
  5532. msgid "Draw polygons in different colors."
  5533. msgstr "Draw polygons in different colors."
  5534. #: flatcamGUI/FlatCAMGUI.py:4016 flatcamGUI/FlatCAMGUI.py:4367
  5535. #: flatcamGUI/FlatCAMGUI.py:5139 flatcamGUI/ObjectUI.py:172
  5536. msgid "Plot"
  5537. msgstr "Plot"
  5538. #: flatcamGUI/FlatCAMGUI.py:4018 flatcamGUI/FlatCAMGUI.py:5141
  5539. #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:546
  5540. #: flatcamGUI/ObjectUI.py:879 flatcamGUI/ObjectUI.py:1450
  5541. msgid "Plot (show) this object."
  5542. msgstr "Plot (show) this object."
  5543. #: flatcamGUI/FlatCAMGUI.py:4023 flatcamGUI/FlatCAMGUI.py:5149
  5544. #: flatcamGUI/FlatCAMGUI.py:5587
  5545. msgid "Circle Steps:"
  5546. msgstr "Circle Steps:"
  5547. #: flatcamGUI/FlatCAMGUI.py:4025
  5548. msgid ""
  5549. "The number of circle steps for Gerber \n"
  5550. "circular aperture linear approximation."
  5551. msgstr ""
  5552. "The number of circle steps for Gerber \n"
  5553. "circular aperture linear approximation."
  5554. #: flatcamGUI/FlatCAMGUI.py:4040
  5555. msgid "Gerber Options"
  5556. msgstr "Gerber Options"
  5557. #: flatcamGUI/FlatCAMGUI.py:4043 flatcamGUI/ObjectUI.py:251
  5558. msgid "<b>Isolation Routing:</b>"
  5559. msgstr "<b>Isolation Routing:</b>"
  5560. #: flatcamGUI/FlatCAMGUI.py:4045 flatcamGUI/ObjectUI.py:253
  5561. msgid ""
  5562. "Create a Geometry object with\n"
  5563. "toolpaths to cut outside polygons."
  5564. msgstr ""
  5565. "Create a Geometry object with\n"
  5566. "toolpaths to cut outside polygons."
  5567. #: flatcamGUI/FlatCAMGUI.py:4056 flatcamGUI/FlatCAMGUI.py:4735
  5568. #: flatcamGUI/FlatCAMGUI.py:5876 flatcamGUI/ObjectUI.py:788
  5569. #: flatcamGUI/ObjectUI.py:804
  5570. msgid "Diameter of the cutting tool."
  5571. msgstr "Diameter of the cutting tool."
  5572. #: flatcamGUI/FlatCAMGUI.py:4063
  5573. msgid "Width (# passes):"
  5574. msgstr "Width (# passes):"
  5575. #: flatcamGUI/FlatCAMGUI.py:4065 flatcamGUI/ObjectUI.py:275
  5576. msgid ""
  5577. "Width of the isolation gap in\n"
  5578. "number (integer) of tool widths."
  5579. msgstr ""
  5580. "Width of the isolation gap in\n"
  5581. "number (integer) of tool widths."
  5582. #: flatcamGUI/FlatCAMGUI.py:4073 flatcamGUI/ObjectUI.py:283
  5583. msgid "Pass overlap:"
  5584. msgstr "Pass overlap:"
  5585. #: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/ObjectUI.py:285
  5586. #, python-format
  5587. msgid ""
  5588. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5589. "Example:\n"
  5590. "A value here of 0.25 means an overlap of 25% from the tool diameter found "
  5591. "above."
  5592. msgstr ""
  5593. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5594. "Example:\n"
  5595. "A value here of 0.25 means an overlap of 25% from the tool diameter found "
  5596. "above."
  5597. #: flatcamGUI/FlatCAMGUI.py:4083 flatcamGUI/ObjectUI.py:295
  5598. msgid "Milling Type:"
  5599. msgstr "Milling Type:"
  5600. #: flatcamGUI/FlatCAMGUI.py:4085 flatcamGUI/ObjectUI.py:297
  5601. msgid ""
  5602. "Milling type:\n"
  5603. "- climb / best for precision milling and to reduce tool usage\n"
  5604. "- conventional / useful when there is no backlash compensation"
  5605. msgstr ""
  5606. "Milling type:\n"
  5607. "- climb / best for precision milling and to reduce tool usage\n"
  5608. "- conventional / useful when there is no backlash compensation"
  5609. #: flatcamGUI/FlatCAMGUI.py:4095
  5610. msgid "Combine Passes"
  5611. msgstr "Combine Passes"
  5612. #: flatcamGUI/FlatCAMGUI.py:4097 flatcamGUI/ObjectUI.py:309
  5613. msgid "Combine all passes into one object"
  5614. msgstr "Combine all passes into one object"
  5615. #: flatcamGUI/FlatCAMGUI.py:4102
  5616. msgid "<b>Clear non-copper:</b>"
  5617. msgstr "<b>Clear non-copper:</b>"
  5618. #: flatcamGUI/FlatCAMGUI.py:4104 flatcamGUI/FlatCAMGUI.py:5764
  5619. #: flatcamGUI/ObjectUI.py:386
  5620. msgid ""
  5621. "Create a Geometry object with\n"
  5622. "toolpaths to cut all non-copper regions."
  5623. msgstr ""
  5624. "Create a Geometry object with\n"
  5625. "toolpaths to cut all non-copper regions."
  5626. #: flatcamGUI/FlatCAMGUI.py:4113 flatcamGUI/FlatCAMGUI.py:4139
  5627. #: flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464
  5628. msgid "Boundary Margin:"
  5629. msgstr "Boundary Margin:"
  5630. #: flatcamGUI/FlatCAMGUI.py:4115 flatcamGUI/ObjectUI.py:432
  5631. msgid ""
  5632. "Specify the edge of the PCB\n"
  5633. "by drawing a box around all\n"
  5634. "objects with this minimum\n"
  5635. "distance."
  5636. msgstr ""
  5637. "Specify the edge of the PCB\n"
  5638. "by drawing a box around all\n"
  5639. "objects with this minimum\n"
  5640. "distance."
  5641. #: flatcamGUI/FlatCAMGUI.py:4125 flatcamGUI/FlatCAMGUI.py:4148
  5642. msgid "Rounded corners"
  5643. msgstr "Rounded corners"
  5644. #: flatcamGUI/FlatCAMGUI.py:4127
  5645. msgid ""
  5646. "Creates a Geometry objects with polygons\n"
  5647. "covering the copper-free areas of the PCB."
  5648. msgstr ""
  5649. "Creates a Geometry objects with polygons\n"
  5650. "covering the copper-free areas of the PCB."
  5651. #: flatcamGUI/FlatCAMGUI.py:4133 flatcamGUI/ObjectUI.py:454
  5652. msgid "<b>Bounding Box:</b>"
  5653. msgstr "<b>Bounding Box:</b>"
  5654. #: flatcamGUI/FlatCAMGUI.py:4141 flatcamGUI/ObjectUI.py:466
  5655. msgid ""
  5656. "Distance of the edges of the box\n"
  5657. "to the nearest polygon."
  5658. msgstr ""
  5659. "Distance of the edges of the box\n"
  5660. "to the nearest polygon."
  5661. #: flatcamGUI/FlatCAMGUI.py:4150 flatcamGUI/ObjectUI.py:476
  5662. msgid ""
  5663. "If the bounding box is \n"
  5664. "to have rounded corners\n"
  5665. "their radius is equal to\n"
  5666. "the margin."
  5667. msgstr ""
  5668. "If the bounding box is \n"
  5669. "to have rounded corners\n"
  5670. "their radius is equal to\n"
  5671. "the margin."
  5672. #: flatcamGUI/FlatCAMGUI.py:4164
  5673. msgid "Gerber Adv. Options"
  5674. msgstr "Gerber Adv. Options"
  5675. #: flatcamGUI/FlatCAMGUI.py:4167
  5676. msgid "<b>Advanced Param.:</b>"
  5677. msgstr "<b>Advanced Param.:</b>"
  5678. #: flatcamGUI/FlatCAMGUI.py:4169
  5679. msgid ""
  5680. "A list of Gerber advanced parameters.\n"
  5681. "Those parameters are available only for\n"
  5682. "Advanced App. Level."
  5683. msgstr ""
  5684. "A list of Gerber advanced parameters.\n"
  5685. "Those parameters are available only for\n"
  5686. "Advanced App. Level."
  5687. #: flatcamGUI/FlatCAMGUI.py:4179 flatcamGUI/ObjectUI.py:314
  5688. msgid "\"Follow\""
  5689. msgstr "\"Follow\""
  5690. #: flatcamGUI/FlatCAMGUI.py:4181 flatcamGUI/ObjectUI.py:316
  5691. msgid ""
  5692. "Generate a 'Follow' geometry.\n"
  5693. "This means that it will cut through\n"
  5694. "the middle of the trace."
  5695. msgstr ""
  5696. "Generate a 'Follow' geometry.\n"
  5697. "This means that it will cut through\n"
  5698. "the middle of the trace."
  5699. #: flatcamGUI/FlatCAMGUI.py:4188
  5700. msgid "Table Show/Hide"
  5701. msgstr "Table Show/Hide"
  5702. #: flatcamGUI/FlatCAMGUI.py:4190
  5703. msgid ""
  5704. "Toggle the display of the Gerber Apertures Table.\n"
  5705. "Also, on hide, it will delete all mark shapes\n"
  5706. "that are drawn on canvas."
  5707. msgstr ""
  5708. "Toggle the display of the Gerber Apertures Table.\n"
  5709. "Also, on hide, it will delete all mark shapes\n"
  5710. "that are drawn on canvas."
  5711. #: flatcamGUI/FlatCAMGUI.py:4229
  5712. msgid "Gerber Export"
  5713. msgstr "Gerber Export"
  5714. #: flatcamGUI/FlatCAMGUI.py:4232 flatcamGUI/FlatCAMGUI.py:4884
  5715. msgid "<b>Export Options:</b>"
  5716. msgstr "<b>Export Options:</b>"
  5717. #: flatcamGUI/FlatCAMGUI.py:4234
  5718. msgid ""
  5719. "The parameters set here are used in the file exported\n"
  5720. "when using the File -> Export -> Export Gerber menu entry."
  5721. msgstr ""
  5722. "The parameters set here are used in the file exported\n"
  5723. "when using the File -> Export -> Export Gerber menu entry."
  5724. #: flatcamGUI/FlatCAMGUI.py:4243 flatcamGUI/FlatCAMGUI.py:4895
  5725. msgid "<b>Units</b>:"
  5726. msgstr "<b>Units</b>:"
  5727. #: flatcamGUI/FlatCAMGUI.py:4245 flatcamGUI/FlatCAMGUI.py:4251
  5728. msgid "The units used in the Gerber file."
  5729. msgstr "The units used in the Gerber file."
  5730. #: flatcamGUI/FlatCAMGUI.py:4257 flatcamGUI/FlatCAMGUI.py:4909
  5731. msgid "<b>Int/Decimals:</b>"
  5732. msgstr "<b>Int/Decimals:</b>"
  5733. #: flatcamGUI/FlatCAMGUI.py:4259
  5734. msgid ""
  5735. "The number of digits in the whole part of the number\n"
  5736. "and in the fractional part of the number."
  5737. msgstr ""
  5738. "The number of digits in the whole part of the number\n"
  5739. "and in the fractional part of the number."
  5740. #: flatcamGUI/FlatCAMGUI.py:4270
  5741. msgid ""
  5742. "This numbers signify the number of digits in\n"
  5743. "the whole part of Gerber coordinates."
  5744. msgstr ""
  5745. "This numbers signify the number of digits in\n"
  5746. "the whole part of Gerber coordinates."
  5747. #: flatcamGUI/FlatCAMGUI.py:4284
  5748. msgid ""
  5749. "This numbers signify the number of digits in\n"
  5750. "the decimal part of Gerber coordinates."
  5751. msgstr ""
  5752. "This numbers signify the number of digits in\n"
  5753. "the decimal part of Gerber coordinates."
  5754. #: flatcamGUI/FlatCAMGUI.py:4293 flatcamGUI/FlatCAMGUI.py:4970
  5755. msgid "<b>Zeros</b>:"
  5756. msgstr "<b>Zeros</b>:"
  5757. #: flatcamGUI/FlatCAMGUI.py:4296 flatcamGUI/FlatCAMGUI.py:4306
  5758. msgid ""
  5759. "This sets the type of Gerber zeros.\n"
  5760. "If LZ then Leading Zeros are removed and\n"
  5761. "Trailing Zeros are kept.\n"
  5762. "If TZ is checked then Trailing Zeros are removed\n"
  5763. "and Leading Zeros are kept."
  5764. msgstr ""
  5765. "This sets the type of Gerber zeros.\n"
  5766. "If LZ then Leading Zeros are removed and\n"
  5767. "Trailing Zeros are kept.\n"
  5768. "If TZ is checked then Trailing Zeros are removed\n"
  5769. "and Leading Zeros are kept."
  5770. #: flatcamGUI/FlatCAMGUI.py:4326 flatcamGUI/FlatCAMGUI.py:5011
  5771. #: flatcamGUI/FlatCAMGUI.py:5470 flatcamGUI/FlatCAMGUI.py:5762
  5772. #: flatcamGUI/FlatCAMGUI.py:5863 flatcamGUI/FlatCAMGUI.py:5942
  5773. #: flatcamGUI/FlatCAMGUI.py:6001 flatcamGUI/FlatCAMGUI.py:6104
  5774. #: flatcamGUI/FlatCAMGUI.py:6165 flatcamGUI/FlatCAMGUI.py:6364
  5775. #: flatcamGUI/FlatCAMGUI.py:6491
  5776. msgid "<b>Parameters:</b>"
  5777. msgstr "<b>Parameters:</b>"
  5778. #: flatcamGUI/FlatCAMGUI.py:4328
  5779. msgid "A list of Gerber Editor parameters."
  5780. msgstr "A list of Gerber Editor parameters."
  5781. #: flatcamGUI/FlatCAMGUI.py:4336 flatcamGUI/FlatCAMGUI.py:5021
  5782. #: flatcamGUI/FlatCAMGUI.py:5480
  5783. msgid "Selection limit:"
  5784. msgstr "Selection limit:"
  5785. #: flatcamGUI/FlatCAMGUI.py:4338
  5786. msgid ""
  5787. "Set the number of selected Gerber geometry\n"
  5788. "items above which the utility geometry\n"
  5789. "becomes just a selection rectangle.\n"
  5790. "Increases the performance when moving a\n"
  5791. "large number of geometric elements."
  5792. msgstr ""
  5793. "Set the number of selected Gerber geometry\n"
  5794. "items above which the utility geometry\n"
  5795. "becomes just a selection rectangle.\n"
  5796. "Increases the performance when moving a\n"
  5797. "large number of geometric elements."
  5798. #: flatcamGUI/FlatCAMGUI.py:4358
  5799. msgid "Excellon General"
  5800. msgstr "Excellon General"
  5801. #: flatcamGUI/FlatCAMGUI.py:4380
  5802. msgid "<b>Excellon Format:</b>"
  5803. msgstr "<b>Excellon Format:</b>"
  5804. #: flatcamGUI/FlatCAMGUI.py:4382
  5805. msgid ""
  5806. "The NC drill files, usually named Excellon files\n"
  5807. "are files that can be found in different formats.\n"
  5808. "Here we set the format used when the provided\n"
  5809. "coordinates are not using period.\n"
  5810. "\n"
  5811. "Possible presets:\n"
  5812. "\n"
  5813. "PROTEUS 3:3 MM LZ\n"
  5814. "DipTrace 5:2 MM TZ\n"
  5815. "DipTrace 4:3 MM LZ\n"
  5816. "\n"
  5817. "EAGLE 3:3 MM TZ\n"
  5818. "EAGLE 4:3 MM TZ\n"
  5819. "EAGLE 2:5 INCH TZ\n"
  5820. "EAGLE 3:5 INCH TZ\n"
  5821. "\n"
  5822. "ALTIUM 2:4 INCH LZ\n"
  5823. "Sprint Layout 2:4 INCH LZ\n"
  5824. "KiCAD 3:5 INCH TZ"
  5825. msgstr ""
  5826. "The NC drill files, usually named Excellon files\n"
  5827. "are files that can be found in different formats.\n"
  5828. "Here we set the format used when the provided\n"
  5829. "coordinates are not using period.\n"
  5830. "\n"
  5831. "Possible presets:\n"
  5832. "\n"
  5833. "PROTEUS 3:3 MM LZ\n"
  5834. "DipTrace 5:2 MM TZ\n"
  5835. "DipTrace 4:3 MM LZ\n"
  5836. "\n"
  5837. "EAGLE 3:3 MM TZ\n"
  5838. "EAGLE 4:3 MM TZ\n"
  5839. "EAGLE 2:5 INCH TZ\n"
  5840. "EAGLE 3:5 INCH TZ\n"
  5841. "\n"
  5842. "ALTIUM 2:4 INCH LZ\n"
  5843. "Sprint Layout 2:4 INCH LZ\n"
  5844. "KiCAD 3:5 INCH TZ"
  5845. #: flatcamGUI/FlatCAMGUI.py:4407
  5846. msgid "INCH:"
  5847. msgstr "INCH:"
  5848. #: flatcamGUI/FlatCAMGUI.py:4410
  5849. msgid "Default values for INCH are 2:4"
  5850. msgstr "Default values for INCH are 2:4"
  5851. #: flatcamGUI/FlatCAMGUI.py:4418 flatcamGUI/FlatCAMGUI.py:4451
  5852. #: flatcamGUI/FlatCAMGUI.py:4924
  5853. msgid ""
  5854. "This numbers signify the number of digits in\n"
  5855. "the whole part of Excellon coordinates."
  5856. msgstr ""
  5857. "This numbers signify the number of digits in\n"
  5858. "the whole part of Excellon coordinates."
  5859. #: flatcamGUI/FlatCAMGUI.py:4432 flatcamGUI/FlatCAMGUI.py:4465
  5860. #: flatcamGUI/FlatCAMGUI.py:4938
  5861. msgid ""
  5862. "This numbers signify the number of digits in\n"
  5863. "the decimal part of Excellon coordinates."
  5864. msgstr ""
  5865. "This numbers signify the number of digits in\n"
  5866. "the decimal part of Excellon coordinates."
  5867. #: flatcamGUI/FlatCAMGUI.py:4440
  5868. msgid "METRIC:"
  5869. msgstr "METRIC:"
  5870. #: flatcamGUI/FlatCAMGUI.py:4443
  5871. msgid "Default values for METRIC are 3:3"
  5872. msgstr "Default values for METRIC are 3:3"
  5873. #: flatcamGUI/FlatCAMGUI.py:4474
  5874. msgid "Default <b>Zeros</b>:"
  5875. msgstr "Default <b>Zeros</b>:"
  5876. #: flatcamGUI/FlatCAMGUI.py:4477 flatcamGUI/FlatCAMGUI.py:4973
  5877. msgid ""
  5878. "This sets the type of Excellon zeros.\n"
  5879. "If LZ then Leading Zeros are kept and\n"
  5880. "Trailing Zeros are removed.\n"
  5881. "If TZ is checked then Trailing Zeros are kept\n"
  5882. "and Leading Zeros are removed."
  5883. msgstr ""
  5884. "This sets the type of Excellon zeros.\n"
  5885. "If LZ then Leading Zeros are kept and\n"
  5886. "Trailing Zeros are removed.\n"
  5887. "If TZ is checked then Trailing Zeros are kept\n"
  5888. "and Leading Zeros are removed."
  5889. #: flatcamGUI/FlatCAMGUI.py:4488
  5890. msgid ""
  5891. "This sets the default type of Excellon zeros.\n"
  5892. "If it is not detected in the parsed file the value here\n"
  5893. "will be used.If LZ then Leading Zeros are kept and\n"
  5894. "Trailing Zeros are removed.\n"
  5895. "If TZ is checked then Trailing Zeros are kept\n"
  5896. "and Leading Zeros are removed."
  5897. msgstr ""
  5898. "This sets the default type of Excellon zeros.\n"
  5899. "If it is not detected in the parsed file the value here\n"
  5900. "will be used.If LZ then Leading Zeros are kept and\n"
  5901. "Trailing Zeros are removed.\n"
  5902. "If TZ is checked then Trailing Zeros are kept\n"
  5903. "and Leading Zeros are removed."
  5904. #: flatcamGUI/FlatCAMGUI.py:4498
  5905. msgid "Default <b>Units</b>:"
  5906. msgstr "Default <b>Units</b>:"
  5907. #: flatcamGUI/FlatCAMGUI.py:4501
  5908. msgid ""
  5909. "This sets the default units of Excellon files.\n"
  5910. "If it is not detected in the parsed file the value here\n"
  5911. "will be used.Some Excellon files don't have an header\n"
  5912. "therefore this parameter will be used."
  5913. msgstr ""
  5914. "This sets the default units of Excellon files.\n"
  5915. "If it is not detected in the parsed file the value here\n"
  5916. "will be used.Some Excellon files don't have an header\n"
  5917. "therefore this parameter will be used."
  5918. #: flatcamGUI/FlatCAMGUI.py:4512
  5919. msgid ""
  5920. "This sets the units of Excellon files.\n"
  5921. "Some Excellon files don't have an header\n"
  5922. "therefore this parameter will be used."
  5923. msgstr ""
  5924. "This sets the units of Excellon files.\n"
  5925. "Some Excellon files don't have an header\n"
  5926. "therefore this parameter will be used."
  5927. #: flatcamGUI/FlatCAMGUI.py:4520
  5928. msgid "<b>Excellon Optimization:</b>"
  5929. msgstr "<b>Excellon Optimization:</b>"
  5930. #: flatcamGUI/FlatCAMGUI.py:4523
  5931. msgid "Algorithm: "
  5932. msgstr "Algorithm: "
  5933. #: flatcamGUI/FlatCAMGUI.py:4525 flatcamGUI/FlatCAMGUI.py:4539
  5934. msgid ""
  5935. "This sets the optimization type for the Excellon drill path.\n"
  5936. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  5937. "Guided Local Path is used. Default search time is 3sec.\n"
  5938. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  5939. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  5940. "\n"
  5941. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  5942. "Travelling Salesman algorithm for path optimization."
  5943. msgstr ""
  5944. "This sets the optimization type for the Excellon drill path.\n"
  5945. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  5946. "Guided Local Path is used. Default search time is 3sec.\n"
  5947. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  5948. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  5949. "\n"
  5950. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  5951. "Travelling Salesman algorithm for path optimization."
  5952. #: flatcamGUI/FlatCAMGUI.py:4550
  5953. msgid "Optimization Time: "
  5954. msgstr "Optimization Time: "
  5955. #: flatcamGUI/FlatCAMGUI.py:4553
  5956. msgid ""
  5957. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  5958. "maximum threshold for how much time is spent doing the\n"
  5959. "path optimization. This max duration is set here.\n"
  5960. "In seconds."
  5961. msgstr ""
  5962. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  5963. "maximum threshold for how much time is spent doing the\n"
  5964. "path optimization. This max duration is set here.\n"
  5965. "In seconds."
  5966. #: flatcamGUI/FlatCAMGUI.py:4596
  5967. msgid "Excellon Options"
  5968. msgstr "Excellon Options"
  5969. #: flatcamGUI/FlatCAMGUI.py:4599 flatcamGUI/ObjectUI.py:584
  5970. msgid "<b>Create CNC Job</b>"
  5971. msgstr "<b>Create CNC Job</b>"
  5972. #: flatcamGUI/FlatCAMGUI.py:4601
  5973. msgid ""
  5974. "Parameters used to create a CNC Job object\n"
  5975. "for this drill object."
  5976. msgstr ""
  5977. "Parameters used to create a CNC Job object\n"
  5978. "for this drill object."
  5979. #: flatcamGUI/FlatCAMGUI.py:4609 flatcamGUI/FlatCAMGUI.py:5196
  5980. #: flatcamGUI/FlatCAMGUI.py:6300 flatcamGUI/ObjectUI.py:595
  5981. #: flatcamGUI/ObjectUI.py:1062 flatcamTools/ToolCalculators.py:108
  5982. msgid "Cut Z:"
  5983. msgstr "Cut Z:"
  5984. #: flatcamGUI/FlatCAMGUI.py:4611 flatcamGUI/ObjectUI.py:597
  5985. msgid ""
  5986. "Drill depth (negative)\n"
  5987. "below the copper surface."
  5988. msgstr ""
  5989. "Drill depth (negative)\n"
  5990. "below the copper surface."
  5991. #: flatcamGUI/FlatCAMGUI.py:4618 flatcamGUI/FlatCAMGUI.py:5229
  5992. #: flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1098
  5993. msgid "Travel Z:"
  5994. msgstr "Travel Z:"
  5995. #: flatcamGUI/FlatCAMGUI.py:4620 flatcamGUI/ObjectUI.py:607
  5996. msgid ""
  5997. "Tool height when travelling\n"
  5998. "across the XY plane."
  5999. msgstr ""
  6000. "Tool height when travelling\n"
  6001. "across the XY plane."
  6002. #: flatcamGUI/FlatCAMGUI.py:4628 flatcamGUI/FlatCAMGUI.py:5239
  6003. msgid "Tool change:"
  6004. msgstr "Tool change:"
  6005. #: flatcamGUI/FlatCAMGUI.py:4630 flatcamGUI/FlatCAMGUI.py:5241
  6006. #: flatcamGUI/ObjectUI.py:617
  6007. msgid ""
  6008. "Include tool-change sequence\n"
  6009. "in G-Code (Pause for tool change)."
  6010. msgstr ""
  6011. "Include tool-change sequence\n"
  6012. "in G-Code (Pause for tool change)."
  6013. #: flatcamGUI/FlatCAMGUI.py:4637 flatcamGUI/FlatCAMGUI.py:5249
  6014. msgid "Toolchange Z:"
  6015. msgstr "Toolchange Z:"
  6016. #: flatcamGUI/FlatCAMGUI.py:4639 flatcamGUI/FlatCAMGUI.py:5251
  6017. msgid "Toolchange Z position."
  6018. msgstr "Toolchange Z position."
  6019. #: flatcamGUI/FlatCAMGUI.py:4645
  6020. msgid "Feedrate:"
  6021. msgstr "Feedrate:"
  6022. #: flatcamGUI/FlatCAMGUI.py:4647
  6023. msgid ""
  6024. "Tool speed while drilling\n"
  6025. "(in units per minute)."
  6026. msgstr ""
  6027. "Tool speed while drilling\n"
  6028. "(in units per minute)."
  6029. #: flatcamGUI/FlatCAMGUI.py:4655
  6030. msgid "Spindle Speed:"
  6031. msgstr "Spindle Speed:"
  6032. #: flatcamGUI/FlatCAMGUI.py:4657 flatcamGUI/FlatCAMGUI.py:5281
  6033. #: flatcamGUI/ObjectUI.py:684
  6034. msgid ""
  6035. "Speed of the spindle\n"
  6036. "in RPM (optional)"
  6037. msgstr ""
  6038. "Speed of the spindle\n"
  6039. "in RPM (optional)"
  6040. #: flatcamGUI/FlatCAMGUI.py:4665 flatcamGUI/FlatCAMGUI.py:5289
  6041. msgid "Spindle dir.:"
  6042. msgstr "Spindle dir.:"
  6043. #: flatcamGUI/FlatCAMGUI.py:4667 flatcamGUI/FlatCAMGUI.py:5291
  6044. msgid ""
  6045. "This sets the direction that the spindle is rotating.\n"
  6046. "It can be either:\n"
  6047. "- CW = clockwise or\n"
  6048. "- CCW = counter clockwise"
  6049. msgstr ""
  6050. "This sets the direction that the spindle is rotating.\n"
  6051. "It can be either:\n"
  6052. "- CW = clockwise or\n"
  6053. "- CCW = counter clockwise"
  6054. #: flatcamGUI/FlatCAMGUI.py:4679 flatcamGUI/FlatCAMGUI.py:5303
  6055. #: flatcamGUI/ObjectUI.py:692 flatcamGUI/ObjectUI.py:1224
  6056. msgid "Dwell:"
  6057. msgstr "Dwell:"
  6058. #: flatcamGUI/FlatCAMGUI.py:4681 flatcamGUI/FlatCAMGUI.py:5305
  6059. #: flatcamGUI/ObjectUI.py:694 flatcamGUI/ObjectUI.py:1227
  6060. msgid ""
  6061. "Pause to allow the spindle to reach its\n"
  6062. "speed before cutting."
  6063. msgstr ""
  6064. "Pause to allow the spindle to reach its\n"
  6065. "speed before cutting."
  6066. #: flatcamGUI/FlatCAMGUI.py:4684 flatcamGUI/FlatCAMGUI.py:5308
  6067. msgid "Duration:"
  6068. msgstr "Duration:"
  6069. #: flatcamGUI/FlatCAMGUI.py:4686 flatcamGUI/FlatCAMGUI.py:5310
  6070. #: flatcamGUI/ObjectUI.py:699 flatcamGUI/ObjectUI.py:1234
  6071. msgid "Number of milliseconds for spindle to dwell."
  6072. msgstr "Number of milliseconds for spindle to dwell."
  6073. #: flatcamGUI/FlatCAMGUI.py:4698 flatcamGUI/FlatCAMGUI.py:5320
  6074. #: flatcamGUI/ObjectUI.py:707
  6075. msgid "Postprocessor:"
  6076. msgstr "Postprocessor:"
  6077. #: flatcamGUI/FlatCAMGUI.py:4700
  6078. msgid ""
  6079. "The postprocessor file that dictates\n"
  6080. "gcode output."
  6081. msgstr ""
  6082. "The postprocessor file that dictates\n"
  6083. "gcode output."
  6084. #: flatcamGUI/FlatCAMGUI.py:4709
  6085. msgid "<b>Gcode: </b>"
  6086. msgstr "<b>Gcode: </b>"
  6087. #: flatcamGUI/FlatCAMGUI.py:4711
  6088. msgid ""
  6089. "Choose what to use for GCode generation:\n"
  6090. "'Drills', 'Slots' or 'Both'.\n"
  6091. "When choosing 'Slots' or 'Both', slots will be\n"
  6092. "converted to drills."
  6093. msgstr ""
  6094. "Choose what to use for GCode generation:\n"
  6095. "'Drills', 'Slots' or 'Both'.\n"
  6096. "When choosing 'Slots' or 'Both', slots will be\n"
  6097. "converted to drills."
  6098. #: flatcamGUI/FlatCAMGUI.py:4727 flatcamGUI/ObjectUI.py:772
  6099. msgid "<b>Mill Holes</b>"
  6100. msgstr "<b>Mill Holes</b>"
  6101. #: flatcamGUI/FlatCAMGUI.py:4729 flatcamGUI/ObjectUI.py:774
  6102. msgid "Create Geometry for milling holes."
  6103. msgstr "Create Geometry for milling holes."
  6104. #: flatcamGUI/FlatCAMGUI.py:4733
  6105. msgid "Drill Tool dia:"
  6106. msgstr "Drill Tool dia:"
  6107. #: flatcamGUI/FlatCAMGUI.py:4740
  6108. msgid "Slot Tool dia:"
  6109. msgstr "Slot Tool dia:"
  6110. #: flatcamGUI/FlatCAMGUI.py:4742
  6111. msgid ""
  6112. "Diameter of the cutting tool\n"
  6113. "when milling slots."
  6114. msgstr ""
  6115. "Diameter of the cutting tool\n"
  6116. "when milling slots."
  6117. #: flatcamGUI/FlatCAMGUI.py:4754
  6118. msgid "Defaults"
  6119. msgstr "Defaults"
  6120. #: flatcamGUI/FlatCAMGUI.py:4767
  6121. msgid "Excellon Adv. Options"
  6122. msgstr "Excellon Adv. Options"
  6123. #: flatcamGUI/FlatCAMGUI.py:4773 flatcamGUI/FlatCAMGUI.py:5343
  6124. msgid "<b>Advanced Options:</b>"
  6125. msgstr "<b>Advanced Options:</b>"
  6126. #: flatcamGUI/FlatCAMGUI.py:4775
  6127. msgid ""
  6128. "Parameters used to create a CNC Job object\n"
  6129. "for this drill object that are shown when App Level is Advanced."
  6130. msgstr ""
  6131. "Parameters used to create a CNC Job object\n"
  6132. "for this drill object that are shown when App Level is Advanced."
  6133. #: flatcamGUI/FlatCAMGUI.py:4783
  6134. msgid "Offset Z:"
  6135. msgstr "Offset Z:"
  6136. #: flatcamGUI/FlatCAMGUI.py:4785 flatcamGUI/ObjectUI.py:574
  6137. msgid ""
  6138. "Some drill bits (the larger ones) need to drill deeper\n"
  6139. "to create the desired exit hole diameter due of the tip shape.\n"
  6140. "The value here can compensate the Cut Z parameter."
  6141. msgstr ""
  6142. "Some drill bits (the larger ones) need to drill deeper\n"
  6143. "to create the desired exit hole diameter due of the tip shape.\n"
  6144. "The value here can compensate the Cut Z parameter."
  6145. #: flatcamGUI/FlatCAMGUI.py:4792 flatcamGUI/FlatCAMGUI.py:5354
  6146. msgid "Toolchange X,Y:"
  6147. msgstr "Toolchange X,Y:"
  6148. #: flatcamGUI/FlatCAMGUI.py:4794 flatcamGUI/FlatCAMGUI.py:5356
  6149. msgid "Toolchange X,Y position."
  6150. msgstr "Toolchange X,Y position."
  6151. #: flatcamGUI/FlatCAMGUI.py:4800 flatcamGUI/FlatCAMGUI.py:5363
  6152. #: flatcamGUI/ObjectUI.py:634
  6153. msgid "Start move Z:"
  6154. msgstr "Start move Z:"
  6155. #: flatcamGUI/FlatCAMGUI.py:4802
  6156. msgid ""
  6157. "Height of the tool just after start.\n"
  6158. "Delete the value if you don't need this feature."
  6159. msgstr ""
  6160. "Height of the tool just after start.\n"
  6161. "Delete the value if you don't need this feature."
  6162. #: flatcamGUI/FlatCAMGUI.py:4809 flatcamGUI/FlatCAMGUI.py:5373
  6163. #: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1144
  6164. msgid "End move Z:"
  6165. msgstr "End move Z:"
  6166. #: flatcamGUI/FlatCAMGUI.py:4811 flatcamGUI/FlatCAMGUI.py:5375
  6167. msgid ""
  6168. "Height of the tool after\n"
  6169. "the last move at the end of the job."
  6170. msgstr ""
  6171. "Height of the tool after\n"
  6172. "the last move at the end of the job."
  6173. #: flatcamGUI/FlatCAMGUI.py:4818 flatcamGUI/FlatCAMGUI.py:5383
  6174. #: flatcamGUI/ObjectUI.py:665
  6175. msgid "Feedrate Rapids:"
  6176. msgstr "Feedrate Rapids:"
  6177. #: flatcamGUI/FlatCAMGUI.py:4820 flatcamGUI/ObjectUI.py:667
  6178. msgid ""
  6179. "Tool speed while drilling\n"
  6180. "(in units per minute).\n"
  6181. "This is for the rapid move G00.\n"
  6182. "It is useful only for Marlin,\n"
  6183. "ignore for any other cases."
  6184. msgstr ""
  6185. "Tool speed while drilling\n"
  6186. "(in units per minute).\n"
  6187. "This is for the rapid move G00.\n"
  6188. "It is useful only for Marlin,\n"
  6189. "ignore for any other cases."
  6190. #: flatcamGUI/FlatCAMGUI.py:4831 flatcamGUI/FlatCAMGUI.py:5407
  6191. #: flatcamGUI/ObjectUI.py:718 flatcamGUI/ObjectUI.py:1256
  6192. msgid "Probe Z depth:"
  6193. msgstr "Probe Z depth:"
  6194. #: flatcamGUI/FlatCAMGUI.py:4833 flatcamGUI/FlatCAMGUI.py:5409
  6195. #: flatcamGUI/ObjectUI.py:720 flatcamGUI/ObjectUI.py:1259
  6196. msgid ""
  6197. "The maximum depth that the probe is allowed\n"
  6198. "to probe. Negative value, in current units."
  6199. msgstr ""
  6200. "The maximum depth that the probe is allowed\n"
  6201. "to probe. Negative value, in current units."
  6202. #: flatcamGUI/FlatCAMGUI.py:4841 flatcamGUI/FlatCAMGUI.py:5417
  6203. #: flatcamGUI/ObjectUI.py:730 flatcamGUI/ObjectUI.py:1270
  6204. msgid "Feedrate Probe:"
  6205. msgstr "Feedrate Probe:"
  6206. #: flatcamGUI/FlatCAMGUI.py:4843 flatcamGUI/FlatCAMGUI.py:5419
  6207. #: flatcamGUI/ObjectUI.py:732 flatcamGUI/ObjectUI.py:1273
  6208. msgid "The feedrate used while the probe is probing."
  6209. msgstr "The feedrate used while the probe is probing."
  6210. #: flatcamGUI/FlatCAMGUI.py:4849 flatcamGUI/FlatCAMGUI.py:5426
  6211. msgid "Fast Plunge:"
  6212. msgstr "Fast Plunge:"
  6213. #: flatcamGUI/FlatCAMGUI.py:4851 flatcamGUI/FlatCAMGUI.py:5428
  6214. msgid ""
  6215. "By checking this, the vertical move from\n"
  6216. "Z_Toolchange to Z_move is done with G0,\n"
  6217. "meaning the fastest speed available.\n"
  6218. "WARNING: the move is done at Toolchange X,Y coords."
  6219. msgstr ""
  6220. "By checking this, the vertical move from\n"
  6221. "Z_Toolchange to Z_move is done with G0,\n"
  6222. "meaning the fastest speed available.\n"
  6223. "WARNING: the move is done at Toolchange X,Y coords."
  6224. #: flatcamGUI/FlatCAMGUI.py:4860
  6225. msgid "Fast Retract:"
  6226. msgstr "Fast Retract:"
  6227. #: flatcamGUI/FlatCAMGUI.py:4862
  6228. msgid ""
  6229. "Exit hole strategy.\n"
  6230. " - When uncheked, while exiting the drilled hole the drill bit\n"
  6231. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  6232. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  6233. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  6234. "(travel height) is done as fast as possible (G0) in one move."
  6235. msgstr ""
  6236. "Exit hole strategy.\n"
  6237. " - When uncheked, while exiting the drilled hole the drill bit\n"
  6238. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  6239. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  6240. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  6241. "(travel height) is done as fast as possible (G0) in one move."
  6242. #: flatcamGUI/FlatCAMGUI.py:4881
  6243. msgid "Excellon Export"
  6244. msgstr "Excellon Export"
  6245. #: flatcamGUI/FlatCAMGUI.py:4886
  6246. msgid ""
  6247. "The parameters set here are used in the file exported\n"
  6248. "when using the File -> Export -> Export Excellon menu entry."
  6249. msgstr ""
  6250. "The parameters set here are used in the file exported\n"
  6251. "when using the File -> Export -> Export Excellon menu entry."
  6252. #: flatcamGUI/FlatCAMGUI.py:4897 flatcamGUI/FlatCAMGUI.py:4903
  6253. msgid "The units used in the Excellon file."
  6254. msgstr "The units used in the Excellon file."
  6255. #: flatcamGUI/FlatCAMGUI.py:4911
  6256. msgid ""
  6257. "The NC drill files, usually named Excellon files\n"
  6258. "are files that can be found in different formats.\n"
  6259. "Here we set the format used when the provided\n"
  6260. "coordinates are not using period."
  6261. msgstr ""
  6262. "The NC drill files, usually named Excellon files\n"
  6263. "are files that can be found in different formats.\n"
  6264. "Here we set the format used when the provided\n"
  6265. "coordinates are not using period."
  6266. #: flatcamGUI/FlatCAMGUI.py:4947
  6267. msgid "<b>Format:</b>"
  6268. msgstr "<b>Format:</b>"
  6269. #: flatcamGUI/FlatCAMGUI.py:4949 flatcamGUI/FlatCAMGUI.py:4959
  6270. msgid ""
  6271. "Select the kind of coordinates format used.\n"
  6272. "Coordinates can be saved with decimal point or without.\n"
  6273. "When there is no decimal point, it is required to specify\n"
  6274. "the number of digits for integer part and the number of decimals.\n"
  6275. "Also it will have to be specified if LZ = leading zeros are kept\n"
  6276. "or TZ = trailing zeros are kept."
  6277. msgstr ""
  6278. "Select the kind of coordinates format used.\n"
  6279. "Coordinates can be saved with decimal point or without.\n"
  6280. "When there is no decimal point, it is required to specify\n"
  6281. "the number of digits for integer part and the number of decimals.\n"
  6282. "Also it will have to be specified if LZ = leading zeros are kept\n"
  6283. "or TZ = trailing zeros are kept."
  6284. #: flatcamGUI/FlatCAMGUI.py:4983
  6285. msgid ""
  6286. "This sets the default type of Excellon zeros.\n"
  6287. "If LZ then Leading Zeros are kept and\n"
  6288. "Trailing Zeros are removed.\n"
  6289. "If TZ is checked then Trailing Zeros are kept\n"
  6290. "and Leading Zeros are removed."
  6291. msgstr ""
  6292. "This sets the default type of Excellon zeros.\n"
  6293. "If LZ then Leading Zeros are kept and\n"
  6294. "Trailing Zeros are removed.\n"
  6295. "If TZ is checked then Trailing Zeros are kept\n"
  6296. "and Leading Zeros are removed."
  6297. #: flatcamGUI/FlatCAMGUI.py:5013
  6298. msgid "A list of Excellon Editor parameters."
  6299. msgstr "A list of Excellon Editor parameters."
  6300. #: flatcamGUI/FlatCAMGUI.py:5023
  6301. msgid ""
  6302. "Set the number of selected Excellon geometry\n"
  6303. "items above which the utility geometry\n"
  6304. "becomes just a selection rectangle.\n"
  6305. "Increases the performance when moving a\n"
  6306. "large number of geometric elements."
  6307. msgstr ""
  6308. "Set the number of selected Excellon geometry\n"
  6309. "items above which the utility geometry\n"
  6310. "becomes just a selection rectangle.\n"
  6311. "Increases the performance when moving a\n"
  6312. "large number of geometric elements."
  6313. #: flatcamGUI/FlatCAMGUI.py:5035
  6314. msgid "New Tool Dia:"
  6315. msgstr "New Tool Dia:"
  6316. #: flatcamGUI/FlatCAMGUI.py:5058
  6317. msgid "<b>Linear Drill Array:</b>"
  6318. msgstr "<b>Linear Drill Array:</b>"
  6319. #: flatcamGUI/FlatCAMGUI.py:5062
  6320. msgid "Linear Dir.:"
  6321. msgstr "Linear Dir.:"
  6322. #: flatcamGUI/FlatCAMGUI.py:5098
  6323. msgid "<b>Circular Drill Array:</b>"
  6324. msgstr "<b>Circular Drill Array:</b>"
  6325. #: flatcamGUI/FlatCAMGUI.py:5102
  6326. msgid "Circular Dir.:"
  6327. msgstr "Circular Dir.:"
  6328. #: flatcamGUI/FlatCAMGUI.py:5104
  6329. msgid ""
  6330. "Direction for circular array.\n"
  6331. "Can be CW = clockwise or CCW = counter clockwise."
  6332. msgstr ""
  6333. "Direction for circular array.\n"
  6334. "Can be CW = clockwise or CCW = counter clockwise."
  6335. #: flatcamGUI/FlatCAMGUI.py:5115
  6336. msgid "Circ. Angle:"
  6337. msgstr "Circ. Angle:"
  6338. #: flatcamGUI/FlatCAMGUI.py:5132
  6339. msgid "Geometry General"
  6340. msgstr "Geometry General"
  6341. #: flatcamGUI/FlatCAMGUI.py:5151
  6342. msgid ""
  6343. "The number of circle steps for <b>Geometry</b> \n"
  6344. "circle and arc shapes linear approximation."
  6345. msgstr ""
  6346. "The number of circle steps for <b>Geometry</b> \n"
  6347. "circle and arc shapes linear approximation."
  6348. #: flatcamGUI/FlatCAMGUI.py:5159
  6349. #| msgid "<b>Tools</b>"
  6350. msgid "<b>Tools:</b>"
  6351. msgstr "<b>Tools:</b>"
  6352. #: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/FlatCAMGUI.py:5774
  6353. msgid "Diameters of the cutting tools, separated by ','"
  6354. msgstr "Diameters of the cutting tools, separated by ','"
  6355. #: flatcamGUI/FlatCAMGUI.py:5179
  6356. msgid "Geometry Options"
  6357. msgstr "Geometry Options"
  6358. #: flatcamGUI/FlatCAMGUI.py:5184
  6359. msgid "<b>Create CNC Job:</b>"
  6360. msgstr "<b>Create CNC Job:</b>"
  6361. #: flatcamGUI/FlatCAMGUI.py:5186
  6362. msgid ""
  6363. "Create a CNC Job object\n"
  6364. "tracing the contours of this\n"
  6365. "Geometry object."
  6366. msgstr ""
  6367. "Create a CNC Job object\n"
  6368. "tracing the contours of this\n"
  6369. "Geometry object."
  6370. #: flatcamGUI/FlatCAMGUI.py:5198 flatcamGUI/ObjectUI.py:1065
  6371. msgid ""
  6372. "Cutting depth (negative)\n"
  6373. "below the copper surface."
  6374. msgstr ""
  6375. "Cutting depth (negative)\n"
  6376. "below the copper surface."
  6377. #: flatcamGUI/FlatCAMGUI.py:5206
  6378. msgid "Multidepth"
  6379. msgstr "Multidepth"
  6380. #: flatcamGUI/FlatCAMGUI.py:5208
  6381. msgid "Multidepth usage: True or False."
  6382. msgstr "Multidepth usage: True or False."
  6383. #: flatcamGUI/FlatCAMGUI.py:5213
  6384. msgid "Depth/Pass:"
  6385. msgstr "Depth/Pass:"
  6386. #: flatcamGUI/FlatCAMGUI.py:5215
  6387. msgid ""
  6388. "The depth to cut on each pass,\n"
  6389. "when multidepth is enabled.\n"
  6390. "It has positive value although\n"
  6391. "it is a fraction from the depth\n"
  6392. "which has negative value."
  6393. msgstr ""
  6394. "The depth to cut on each pass,\n"
  6395. "when multidepth is enabled.\n"
  6396. "It has positive value although\n"
  6397. "it is a fraction from the depth\n"
  6398. "which has negative value."
  6399. #: flatcamGUI/FlatCAMGUI.py:5231 flatcamGUI/ObjectUI.py:1101
  6400. msgid ""
  6401. "Height of the tool when\n"
  6402. "moving without cutting."
  6403. msgstr ""
  6404. "Height of the tool when\n"
  6405. "moving without cutting."
  6406. #: flatcamGUI/FlatCAMGUI.py:5258 flatcamGUI/ObjectUI.py:1156
  6407. msgid "Feed Rate X-Y:"
  6408. msgstr "Feed Rate X-Y:"
  6409. #: flatcamGUI/FlatCAMGUI.py:5260 flatcamGUI/ObjectUI.py:1159
  6410. msgid ""
  6411. "Cutting speed in the XY\n"
  6412. "plane in units per minute"
  6413. msgstr ""
  6414. "Cutting speed in the XY\n"
  6415. "plane in units per minute"
  6416. #: flatcamGUI/FlatCAMGUI.py:5268
  6417. msgid "Feed Rate Z:"
  6418. msgstr "Feed Rate Z:"
  6419. #: flatcamGUI/FlatCAMGUI.py:5270
  6420. msgid ""
  6421. "Cutting speed in the XY\n"
  6422. "plane in units per minute.\n"
  6423. "It is called also Plunge."
  6424. msgstr ""
  6425. "Cutting speed in the XY\n"
  6426. "plane in units per minute.\n"
  6427. "It is called also Plunge."
  6428. #: flatcamGUI/FlatCAMGUI.py:5279 flatcamGUI/ObjectUI.py:682
  6429. #: flatcamGUI/ObjectUI.py:1211
  6430. msgid "Spindle speed:"
  6431. msgstr "Spindle speed:"
  6432. #: flatcamGUI/FlatCAMGUI.py:5322
  6433. msgid ""
  6434. "The postprocessor file that dictates\n"
  6435. "Machine Code output."
  6436. msgstr ""
  6437. "The postprocessor file that dictates\n"
  6438. "Machine Code output."
  6439. #: flatcamGUI/FlatCAMGUI.py:5338
  6440. msgid "Geometry Adv. Options"
  6441. msgstr "Geometry Adv. Options"
  6442. #: flatcamGUI/FlatCAMGUI.py:5345
  6443. msgid ""
  6444. "Parameters to create a CNC Job object\n"
  6445. "tracing the contours of a Geometry object."
  6446. msgstr ""
  6447. "Parameters to create a CNC Job object\n"
  6448. "tracing the contours of a Geometry object."
  6449. #: flatcamGUI/FlatCAMGUI.py:5365
  6450. msgid ""
  6451. "Height of the tool just after starting the work.\n"
  6452. "Delete the value if you don't need this feature."
  6453. msgstr ""
  6454. "Height of the tool just after starting the work.\n"
  6455. "Delete the value if you don't need this feature."
  6456. #: flatcamGUI/FlatCAMGUI.py:5385
  6457. msgid ""
  6458. "Cutting speed in the XY plane\n"
  6459. "(in units per minute).\n"
  6460. "This is for the rapid move G00.\n"
  6461. "It is useful only for Marlin,\n"
  6462. "ignore for any other cases."
  6463. msgstr ""
  6464. "Cutting speed in the XY plane\n"
  6465. "(in units per minute).\n"
  6466. "This is for the rapid move G00.\n"
  6467. "It is useful only for Marlin,\n"
  6468. "ignore for any other cases."
  6469. #: flatcamGUI/FlatCAMGUI.py:5397
  6470. msgid "Re-cut 1st pt."
  6471. msgstr "Re-cut 1st pt."
  6472. #: flatcamGUI/FlatCAMGUI.py:5399 flatcamGUI/ObjectUI.py:1202
  6473. msgid ""
  6474. "In order to remove possible\n"
  6475. "copper leftovers where first cut\n"
  6476. "meet with last cut, we generate an\n"
  6477. "extended cut over the first cut section."
  6478. msgstr ""
  6479. "In order to remove possible\n"
  6480. "copper leftovers where first cut\n"
  6481. "meet with last cut, we generate an\n"
  6482. "extended cut over the first cut section."
  6483. #: flatcamGUI/FlatCAMGUI.py:5438
  6484. msgid "Seg. X size:"
  6485. msgstr "Seg. X size:"
  6486. #: flatcamGUI/FlatCAMGUI.py:5440
  6487. msgid ""
  6488. "The size of the trace segment on the X axis.\n"
  6489. "Useful for auto-leveling.\n"
  6490. "A value of 0 means no segmentation on the X axis."
  6491. msgstr ""
  6492. "The size of the trace segment on the X axis.\n"
  6493. "Useful for auto-leveling.\n"
  6494. "A value of 0 means no segmentation on the X axis."
  6495. #: flatcamGUI/FlatCAMGUI.py:5449
  6496. msgid "Seg. Y size:"
  6497. msgstr "Seg. Y size:"
  6498. #: flatcamGUI/FlatCAMGUI.py:5451
  6499. msgid ""
  6500. "The size of the trace segment on the Y axis.\n"
  6501. "Useful for auto-leveling.\n"
  6502. "A value of 0 means no segmentation on the Y axis."
  6503. msgstr ""
  6504. "The size of the trace segment on the Y axis.\n"
  6505. "Useful for auto-leveling.\n"
  6506. "A value of 0 means no segmentation on the Y axis."
  6507. #: flatcamGUI/FlatCAMGUI.py:5467
  6508. msgid "Geometry Editor"
  6509. msgstr "Geometry Editor"
  6510. #: flatcamGUI/FlatCAMGUI.py:5472
  6511. msgid "A list of Geometry Editor parameters."
  6512. msgstr "A list of Geometry Editor parameters."
  6513. #: flatcamGUI/FlatCAMGUI.py:5482
  6514. msgid ""
  6515. "Set the number of selected geometry\n"
  6516. "items above which the utility geometry\n"
  6517. "becomes just a selection rectangle.\n"
  6518. "Increases the performance when moving a\n"
  6519. "large number of geometric elements."
  6520. msgstr ""
  6521. "Set the number of selected geometry\n"
  6522. "items above which the utility geometry\n"
  6523. "becomes just a selection rectangle.\n"
  6524. "Increases the performance when moving a\n"
  6525. "large number of geometric elements."
  6526. #: flatcamGUI/FlatCAMGUI.py:5501
  6527. msgid "CNC Job General"
  6528. msgstr "CNC Job General"
  6529. #: flatcamGUI/FlatCAMGUI.py:5514 flatcamGUI/ObjectUI.py:544
  6530. #: flatcamGUI/ObjectUI.py:877 flatcamGUI/ObjectUI.py:1447
  6531. msgid "Plot Object"
  6532. msgstr "Plot Object"
  6533. #: flatcamGUI/FlatCAMGUI.py:5521
  6534. msgid "Plot kind:"
  6535. msgstr "Plot kind:"
  6536. #: flatcamGUI/FlatCAMGUI.py:5523 flatcamGUI/ObjectUI.py:1356
  6537. msgid ""
  6538. "This selects the kind of geometries on the canvas to plot.\n"
  6539. "Those can be either of type 'Travel' which means the moves\n"
  6540. "above the work piece or it can be of type 'Cut',\n"
  6541. "which means the moves that cut into the material."
  6542. msgstr ""
  6543. "This selects the kind of geometries on the canvas to plot.\n"
  6544. "Those can be either of type 'Travel' which means the moves\n"
  6545. "above the work piece or it can be of type 'Cut',\n"
  6546. "which means the moves that cut into the material."
  6547. #: flatcamGUI/FlatCAMGUI.py:5540
  6548. msgid "Display Annotation:"
  6549. msgstr "Display Annotation:"
  6550. #: flatcamGUI/FlatCAMGUI.py:5542 flatcamGUI/ObjectUI.py:1372
  6551. msgid ""
  6552. "This selects if to display text annotation on the plot.\n"
  6553. "When checked it will display numbers in order for each end\n"
  6554. "of a travel line."
  6555. msgstr ""
  6556. "This selects if to display text annotation on the plot.\n"
  6557. "When checked it will display numbers in order for each end\n"
  6558. "of a travel line."
  6559. #: flatcamGUI/FlatCAMGUI.py:5554
  6560. msgid "Annotation Size:"
  6561. msgstr "Annotation Size:"
  6562. #: flatcamGUI/FlatCAMGUI.py:5556
  6563. msgid "The font size of the annotation text. In pixels."
  6564. msgstr "The font size of the annotation text. In pixels."
  6565. #: flatcamGUI/FlatCAMGUI.py:5564
  6566. msgid "Annotation Color:"
  6567. msgstr "Annotation Color:"
  6568. #: flatcamGUI/FlatCAMGUI.py:5566
  6569. msgid "Set the font color for the annotation texts."
  6570. msgstr "Set the font color for the annotation texts."
  6571. #: flatcamGUI/FlatCAMGUI.py:5589
  6572. msgid ""
  6573. "The number of circle steps for <b>GCode</b> \n"
  6574. "circle and arc shapes linear approximation."
  6575. msgstr ""
  6576. "The number of circle steps for <b>GCode</b> \n"
  6577. "circle and arc shapes linear approximation."
  6578. #: flatcamGUI/FlatCAMGUI.py:5599
  6579. msgid ""
  6580. "Diameter of the tool to be\n"
  6581. "rendered in the plot."
  6582. msgstr ""
  6583. "Diameter of the tool to be\n"
  6584. "rendered in the plot."
  6585. #: flatcamGUI/FlatCAMGUI.py:5607
  6586. msgid "Coords dec.:"
  6587. msgstr "Coords dec.:"
  6588. #: flatcamGUI/FlatCAMGUI.py:5609
  6589. msgid ""
  6590. "The number of decimals to be used for \n"
  6591. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  6592. msgstr ""
  6593. "The number of decimals to be used for \n"
  6594. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  6595. #: flatcamGUI/FlatCAMGUI.py:5617
  6596. msgid "Feedrate dec.:"
  6597. msgstr "Feedrate dec.:"
  6598. #: flatcamGUI/FlatCAMGUI.py:5619
  6599. msgid ""
  6600. "The number of decimals to be used for \n"
  6601. "the Feedrate parameter in CNC code (GCODE, etc.)"
  6602. msgstr ""
  6603. "The number of decimals to be used for \n"
  6604. "the Feedrate parameter in CNC code (GCODE, etc.)"
  6605. #: flatcamGUI/FlatCAMGUI.py:5634
  6606. msgid "CNC Job Options"
  6607. msgstr "CNC Job Options"
  6608. #: flatcamGUI/FlatCAMGUI.py:5637 flatcamGUI/FlatCAMGUI.py:5678
  6609. msgid "<b>Export G-Code:</b>"
  6610. msgstr "<b>Export G-Code:</b>"
  6611. #: flatcamGUI/FlatCAMGUI.py:5639 flatcamGUI/FlatCAMGUI.py:5680
  6612. #: flatcamGUI/ObjectUI.py:1483
  6613. msgid ""
  6614. "Export and save G-Code to\n"
  6615. "make this object to a file."
  6616. msgstr ""
  6617. "Export and save G-Code to\n"
  6618. "make this object to a file."
  6619. #: flatcamGUI/FlatCAMGUI.py:5645
  6620. msgid "Prepend to G-Code:"
  6621. msgstr "Prepend to G-Code:"
  6622. #: flatcamGUI/FlatCAMGUI.py:5647
  6623. msgid ""
  6624. "Type here any G-Code commands you would\n"
  6625. "like to add at the beginning of the G-Code file."
  6626. msgstr ""
  6627. "Type here any G-Code commands you would\n"
  6628. "like to add at the beginning of the G-Code file."
  6629. #: flatcamGUI/FlatCAMGUI.py:5656
  6630. msgid "Append to G-Code:"
  6631. msgstr "Append to G-Code:"
  6632. #: flatcamGUI/FlatCAMGUI.py:5658 flatcamGUI/ObjectUI.py:1505
  6633. msgid ""
  6634. "Type here any G-Code commands you would\n"
  6635. "like to append to the generated file.\n"
  6636. "I.e.: M2 (End of program)"
  6637. msgstr ""
  6638. "Type here any G-Code commands you would\n"
  6639. "like to append to the generated file.\n"
  6640. "I.e.: M2 (End of program)"
  6641. #: flatcamGUI/FlatCAMGUI.py:5675
  6642. msgid "CNC Job Adv. Options"
  6643. msgstr "CNC Job Adv. Options"
  6644. #: flatcamGUI/FlatCAMGUI.py:5686 flatcamGUI/ObjectUI.py:1523
  6645. msgid "Toolchange G-Code:"
  6646. msgstr "Toolchange G-Code:"
  6647. #: flatcamGUI/FlatCAMGUI.py:5688
  6648. msgid ""
  6649. "Type here any G-Code commands you would\n"
  6650. "like to be executed when Toolchange event is encountered.\n"
  6651. "This will constitute a Custom Toolchange GCode,\n"
  6652. "or a Toolchange Macro."
  6653. msgstr ""
  6654. "Type here any G-Code commands you would\n"
  6655. "like to be executed when Toolchange event is encountered.\n"
  6656. "This will constitute a Custom Toolchange GCode,\n"
  6657. "or a Toolchange Macro."
  6658. #: flatcamGUI/FlatCAMGUI.py:5702 flatcamGUI/ObjectUI.py:1545
  6659. msgid "Use Toolchange Macro"
  6660. msgstr "Use Toolchange Macro"
  6661. #: flatcamGUI/FlatCAMGUI.py:5704 flatcamGUI/ObjectUI.py:1548
  6662. msgid ""
  6663. "Check this box if you want to use\n"
  6664. "a Custom Toolchange GCode (macro)."
  6665. msgstr ""
  6666. "Check this box if you want to use\n"
  6667. "a Custom Toolchange GCode (macro)."
  6668. #: flatcamGUI/FlatCAMGUI.py:5716 flatcamGUI/ObjectUI.py:1557
  6669. msgid ""
  6670. "A list of the FlatCAM variables that can be used\n"
  6671. "in the Toolchange event.\n"
  6672. "They have to be surrounded by the '%' symbol"
  6673. msgstr ""
  6674. "A list of the FlatCAM variables that can be used\n"
  6675. "in the Toolchange event.\n"
  6676. "They have to be surrounded by the '%' symbol"
  6677. #: flatcamGUI/FlatCAMGUI.py:5723 flatcamGUI/ObjectUI.py:1564
  6678. msgid "Parameters"
  6679. msgstr "Parameters"
  6680. #: flatcamGUI/FlatCAMGUI.py:5726 flatcamGUI/ObjectUI.py:1567
  6681. msgid "FlatCAM CNC parameters"
  6682. msgstr "FlatCAM CNC parameters"
  6683. #: flatcamGUI/FlatCAMGUI.py:5727 flatcamGUI/ObjectUI.py:1568
  6684. msgid "tool = tool number"
  6685. msgstr "tool = tool number"
  6686. #: flatcamGUI/FlatCAMGUI.py:5728 flatcamGUI/ObjectUI.py:1569
  6687. msgid "tooldia = tool diameter"
  6688. msgstr "tooldia = tool diameter"
  6689. #: flatcamGUI/FlatCAMGUI.py:5729 flatcamGUI/ObjectUI.py:1570
  6690. msgid "t_drills = for Excellon, total number of drills"
  6691. msgstr "t_drills = for Excellon, total number of drills"
  6692. #: flatcamGUI/FlatCAMGUI.py:5730 flatcamGUI/ObjectUI.py:1571
  6693. msgid "x_toolchange = X coord for Toolchange"
  6694. msgstr "x_toolchange = X coord for Toolchange"
  6695. #: flatcamGUI/FlatCAMGUI.py:5731 flatcamGUI/ObjectUI.py:1572
  6696. msgid "y_toolchange = Y coord for Toolchange"
  6697. msgstr "y_toolchange = Y coord for Toolchange"
  6698. #: flatcamGUI/FlatCAMGUI.py:5732 flatcamGUI/ObjectUI.py:1573
  6699. msgid "z_toolchange = Z coord for Toolchange"
  6700. msgstr "z_toolchange = Z coord for Toolchange"
  6701. #: flatcamGUI/FlatCAMGUI.py:5733
  6702. msgid "z_cut = Z depth for the cut"
  6703. msgstr "z_cut = Z depth for the cut"
  6704. #: flatcamGUI/FlatCAMGUI.py:5734
  6705. msgid "z_move = Z height for travel"
  6706. msgstr "z_move = Z height for travel"
  6707. #: flatcamGUI/FlatCAMGUI.py:5735 flatcamGUI/ObjectUI.py:1576
  6708. msgid "z_depthpercut = the step value for multidepth cut"
  6709. msgstr "z_depthpercut = the step value for multidepth cut"
  6710. #: flatcamGUI/FlatCAMGUI.py:5736 flatcamGUI/ObjectUI.py:1577
  6711. msgid "spindlesspeed = the value for the spindle speed"
  6712. msgstr "spindlesspeed = the value for the spindle speed"
  6713. #: flatcamGUI/FlatCAMGUI.py:5738 flatcamGUI/ObjectUI.py:1578
  6714. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  6715. msgstr "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  6716. #: flatcamGUI/FlatCAMGUI.py:5759
  6717. msgid "NCC Tool Options"
  6718. msgstr "NCC Tool Options"
  6719. #: flatcamGUI/FlatCAMGUI.py:5772 flatcamGUI/FlatCAMGUI.py:6502
  6720. msgid "Tools dia:"
  6721. msgstr "Tools dia:"
  6722. #: flatcamGUI/FlatCAMGUI.py:5782 flatcamTools/ToolNonCopperClear.py:167
  6723. #, python-format
  6724. msgid ""
  6725. "How much (fraction) of the tool width to overlap each tool pass.\n"
  6726. "Example:\n"
  6727. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  6728. "\n"
  6729. "Adjust the value starting with lower values\n"
  6730. "and increasing it if areas that should be cleared are still \n"
  6731. "not cleared.\n"
  6732. "Lower values = faster processing, faster execution on PCB.\n"
  6733. "Higher values = slow processing and slow execution on CNC\n"
  6734. "due of too many paths."
  6735. msgstr ""
  6736. "How much (fraction) of the tool width to overlap each tool pass.\n"
  6737. "Example:\n"
  6738. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  6739. "\n"
  6740. "Adjust the value starting with lower values\n"
  6741. "and increasing it if areas that should be cleared are still \n"
  6742. "not cleared.\n"
  6743. "Lower values = faster processing, faster execution on PCB.\n"
  6744. "Higher values = slow processing and slow execution on CNC\n"
  6745. "due of too many paths."
  6746. #: flatcamGUI/FlatCAMGUI.py:5798 flatcamTools/ToolNonCopperClear.py:183
  6747. msgid "Bounding box margin."
  6748. msgstr "Bounding box margin."
  6749. #: flatcamGUI/FlatCAMGUI.py:5807 flatcamTools/ToolNonCopperClear.py:192
  6750. #: flatcamTools/ToolPaint.py:190
  6751. msgid ""
  6752. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  6753. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  6754. "lines."
  6755. msgstr ""
  6756. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  6757. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  6758. "lines."
  6759. #: flatcamGUI/FlatCAMGUI.py:5839 flatcamTools/ToolNonCopperClear.py:224
  6760. #: flatcamTools/ToolPaint.py:222
  6761. msgid "Rest M.:"
  6762. msgstr "Rest M.:"
  6763. #: flatcamGUI/FlatCAMGUI.py:5841
  6764. msgid ""
  6765. "If checked, use 'rest machining'.\n"
  6766. "Basically it will clear copper outside PCB features,\n"
  6767. "using the biggest tool and continue with the next tools,\n"
  6768. "from bigger to smaller, to clear areas of copper that\n"
  6769. "could not be cleared by previous tool.\n"
  6770. "If not checked, use the standard algorithm."
  6771. msgstr ""
  6772. "If checked, use 'rest machining'.\n"
  6773. "Basically it will clear copper outside PCB features,\n"
  6774. "using the biggest tool and continue with the next tools,\n"
  6775. "from bigger to smaller, to clear areas of copper that\n"
  6776. "could not be cleared by previous tool.\n"
  6777. "If not checked, use the standard algorithm."
  6778. #: flatcamGUI/FlatCAMGUI.py:5860
  6779. msgid "Cutout Tool Options"
  6780. msgstr "Cutout Tool Options"
  6781. #: flatcamGUI/FlatCAMGUI.py:5865 flatcamGUI/ObjectUI.py:402
  6782. msgid ""
  6783. "Create toolpaths to cut around\n"
  6784. "the PCB and separate it from\n"
  6785. "the original board."
  6786. msgstr ""
  6787. "Create toolpaths to cut around\n"
  6788. "the PCB and separate it from\n"
  6789. "the original board."
  6790. #: flatcamGUI/FlatCAMGUI.py:5884
  6791. msgid ""
  6792. "Distance from objects at which\n"
  6793. "to draw the cutout."
  6794. msgstr ""
  6795. "Distance from objects at which\n"
  6796. "to draw the cutout."
  6797. #: flatcamGUI/FlatCAMGUI.py:5891 flatcamTools/ToolCutOut.py:96
  6798. msgid "Gap size:"
  6799. msgstr "Gap size:"
  6800. #: flatcamGUI/FlatCAMGUI.py:5893
  6801. msgid ""
  6802. "Size of the gaps in the toolpath\n"
  6803. "that will remain to hold the\n"
  6804. "board in place."
  6805. msgstr ""
  6806. "Size of the gaps in the toolpath\n"
  6807. "that will remain to hold the\n"
  6808. "board in place."
  6809. #: flatcamGUI/FlatCAMGUI.py:5901 flatcamTools/ToolCutOut.py:134
  6810. msgid "Gaps:"
  6811. msgstr "Gaps:"
  6812. #: flatcamGUI/FlatCAMGUI.py:5903
  6813. msgid ""
  6814. "Number of bridge gaps used for the cutout.\n"
  6815. "There can be maximum 8 bridges/gaps.\n"
  6816. "The choices are:\n"
  6817. "- lr - left + right\n"
  6818. "- tb - top + bottom\n"
  6819. "- 4 - left + right +top + bottom\n"
  6820. "- 2lr - 2*left + 2*right\n"
  6821. "- 2tb - 2*top + 2*bottom\n"
  6822. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  6823. msgstr ""
  6824. "Number of bridge gaps used for the cutout.\n"
  6825. "There can be maximum 8 bridges/gaps.\n"
  6826. "The choices are:\n"
  6827. "- lr - left + right\n"
  6828. "- tb - top + bottom\n"
  6829. "- 4 - left + right +top + bottom\n"
  6830. "- 2lr - 2*left + 2*right\n"
  6831. "- 2tb - 2*top + 2*bottom\n"
  6832. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  6833. #: flatcamGUI/FlatCAMGUI.py:5924 flatcamTools/ToolCutOut.py:115
  6834. msgid "Convex Sh.:"
  6835. msgstr "Convex Sh.:"
  6836. #: flatcamGUI/FlatCAMGUI.py:5926
  6837. msgid "Create a convex shape surrounding the entire PCB."
  6838. msgstr "Create a convex shape surrounding the entire PCB."
  6839. #: flatcamGUI/FlatCAMGUI.py:5939
  6840. msgid "2Sided Tool Options"
  6841. msgstr "2Sided Tool Options"
  6842. #: flatcamGUI/FlatCAMGUI.py:5944
  6843. msgid ""
  6844. "A tool to help in creating a double sided\n"
  6845. "PCB using alignment holes."
  6846. msgstr ""
  6847. "A tool to help in creating a double sided\n"
  6848. "PCB using alignment holes."
  6849. #: flatcamGUI/FlatCAMGUI.py:5954 flatcamTools/ToolDblSided.py:235
  6850. msgid "Drill diam.:"
  6851. msgstr "Drill diam.:"
  6852. #: flatcamGUI/FlatCAMGUI.py:5956 flatcamTools/ToolDblSided.py:226
  6853. #: flatcamTools/ToolDblSided.py:237
  6854. msgid "Diameter of the drill for the alignment holes."
  6855. msgstr "Diameter of the drill for the alignment holes."
  6856. #: flatcamGUI/FlatCAMGUI.py:5965 flatcamTools/ToolDblSided.py:120
  6857. msgid "Mirror Axis:"
  6858. msgstr "Mirror Axis:"
  6859. #: flatcamGUI/FlatCAMGUI.py:5967 flatcamTools/ToolDblSided.py:122
  6860. msgid "Mirror vertically (X) or horizontally (Y)."
  6861. msgstr "Mirror vertically (X) or horizontally (Y)."
  6862. #: flatcamGUI/FlatCAMGUI.py:5978 flatcamTools/ToolDblSided.py:133
  6863. msgid "Axis Ref:"
  6864. msgstr "Axis Ref:"
  6865. #: flatcamGUI/FlatCAMGUI.py:5980
  6866. msgid ""
  6867. "The axis should pass through a <b>point</b> or cut\n"
  6868. " a specified <b>box</b> (in a Geometry object) in \n"
  6869. "the middle."
  6870. msgstr ""
  6871. "The axis should pass through a <b>point</b> or cut\n"
  6872. " a specified <b>box</b> (in a Geometry object) in \n"
  6873. "the middle."
  6874. #: flatcamGUI/FlatCAMGUI.py:5996
  6875. msgid "Paint Tool Options"
  6876. msgstr "Paint Tool Options"
  6877. #: flatcamGUI/FlatCAMGUI.py:6003 flatcamGUI/ObjectUI.py:1305
  6878. msgid ""
  6879. "Creates tool paths to cover the\n"
  6880. "whole area of a polygon (remove\n"
  6881. "all copper). You will be asked\n"
  6882. "to click on the desired polygon."
  6883. msgstr ""
  6884. "Creates tool paths to cover the\n"
  6885. "whole area of a polygon (remove\n"
  6886. "all copper). You will be asked\n"
  6887. "to click on the desired polygon."
  6888. #: flatcamGUI/FlatCAMGUI.py:6027
  6889. msgid ""
  6890. "How much (fraction) of the tool\n"
  6891. "width to overlap each tool pass."
  6892. msgstr ""
  6893. "How much (fraction) of the tool\n"
  6894. "width to overlap each tool pass."
  6895. #: flatcamGUI/FlatCAMGUI.py:6081 flatcamTools/ToolPaint.py:237
  6896. msgid "Selection:"
  6897. msgstr "Selection:"
  6898. #: flatcamGUI/FlatCAMGUI.py:6083
  6899. msgid "How to select the polygons to paint."
  6900. msgstr "How to select the polygons to paint."
  6901. #: flatcamGUI/FlatCAMGUI.py:6101
  6902. msgid "Film Tool Options"
  6903. msgstr "Film Tool Options"
  6904. #: flatcamGUI/FlatCAMGUI.py:6106
  6905. msgid ""
  6906. "Create a PCB film from a Gerber or Geometry\n"
  6907. "FlatCAM object.\n"
  6908. "The file is saved in SVG format."
  6909. msgstr ""
  6910. "Create a PCB film from a Gerber or Geometry\n"
  6911. "FlatCAM object.\n"
  6912. "The file is saved in SVG format."
  6913. #: flatcamGUI/FlatCAMGUI.py:6117 flatcamTools/ToolFilm.py:116
  6914. msgid "Film Type:"
  6915. msgstr "Film Type:"
  6916. #: flatcamGUI/FlatCAMGUI.py:6119 flatcamTools/ToolFilm.py:118
  6917. msgid ""
  6918. "Generate a Positive black film or a Negative film.\n"
  6919. "Positive means that it will print the features\n"
  6920. "with black on a white canvas.\n"
  6921. "Negative means that it will print the features\n"
  6922. "with white on a black canvas.\n"
  6923. "The Film format is SVG."
  6924. msgstr ""
  6925. "Generate a Positive black film or a Negative film.\n"
  6926. "Positive means that it will print the features\n"
  6927. "with black on a white canvas.\n"
  6928. "Negative means that it will print the features\n"
  6929. "with white on a black canvas.\n"
  6930. "The Film format is SVG."
  6931. #: flatcamGUI/FlatCAMGUI.py:6130 flatcamTools/ToolFilm.py:130
  6932. msgid "Border:"
  6933. msgstr "Border:"
  6934. #: flatcamGUI/FlatCAMGUI.py:6132 flatcamTools/ToolFilm.py:132
  6935. msgid ""
  6936. "Specify a border around the object.\n"
  6937. "Only for negative film.\n"
  6938. "It helps if we use as a Box Object the same \n"
  6939. "object as in Film Object. It will create a thick\n"
  6940. "black bar around the actual print allowing for a\n"
  6941. "better delimitation of the outline features which are of\n"
  6942. "white color like the rest and which may confound with the\n"
  6943. "surroundings if not for this border."
  6944. msgstr ""
  6945. "Specify a border around the object.\n"
  6946. "Only for negative film.\n"
  6947. "It helps if we use as a Box Object the same \n"
  6948. "object as in Film Object. It will create a thick\n"
  6949. "black bar around the actual print allowing for a\n"
  6950. "better delimitation of the outline features which are of\n"
  6951. "white color like the rest and which may confound with the\n"
  6952. "surroundings if not for this border."
  6953. #: flatcamGUI/FlatCAMGUI.py:6145 flatcamTools/ToolFilm.py:144
  6954. msgid "Scale Stroke:"
  6955. msgstr "Scale Stroke:"
  6956. #: flatcamGUI/FlatCAMGUI.py:6147 flatcamTools/ToolFilm.py:146
  6957. msgid ""
  6958. "Scale the line stroke thickness of each feature in the SVG file.\n"
  6959. "It means that the line that envelope each SVG feature will be thicker or "
  6960. "thinner,\n"
  6961. "therefore the fine features may be more affected by this parameter."
  6962. msgstr ""
  6963. "Scale the line stroke thickness of each feature in the SVG file.\n"
  6964. "It means that the line that envelope each SVG feature will be thicker or "
  6965. "thinner,\n"
  6966. "therefore the fine features may be more affected by this parameter."
  6967. #: flatcamGUI/FlatCAMGUI.py:6162
  6968. msgid "Panelize Tool Options"
  6969. msgstr "Panelize Tool Options"
  6970. #: flatcamGUI/FlatCAMGUI.py:6167
  6971. msgid ""
  6972. "Create an object that contains an array of (x, y) elements,\n"
  6973. "each element is a copy of the source object spaced\n"
  6974. "at a X distance, Y distance of each other."
  6975. msgstr ""
  6976. "Create an object that contains an array of (x, y) elements,\n"
  6977. "each element is a copy of the source object spaced\n"
  6978. "at a X distance, Y distance of each other."
  6979. #: flatcamGUI/FlatCAMGUI.py:6178 flatcamTools/ToolPanelize.py:147
  6980. msgid "Spacing cols:"
  6981. msgstr "Spacing cols:"
  6982. #: flatcamGUI/FlatCAMGUI.py:6180 flatcamTools/ToolPanelize.py:149
  6983. msgid ""
  6984. "Spacing between columns of the desired panel.\n"
  6985. "In current units."
  6986. msgstr ""
  6987. "Spacing between columns of the desired panel.\n"
  6988. "In current units."
  6989. #: flatcamGUI/FlatCAMGUI.py:6188 flatcamTools/ToolPanelize.py:156
  6990. msgid "Spacing rows:"
  6991. msgstr "Spacing rows:"
  6992. #: flatcamGUI/FlatCAMGUI.py:6190 flatcamTools/ToolPanelize.py:158
  6993. msgid ""
  6994. "Spacing between rows of the desired panel.\n"
  6995. "In current units."
  6996. msgstr ""
  6997. "Spacing between rows of the desired panel.\n"
  6998. "In current units."
  6999. #: flatcamGUI/FlatCAMGUI.py:6198 flatcamTools/ToolPanelize.py:165
  7000. msgid "Columns:"
  7001. msgstr "Columns:"
  7002. #: flatcamGUI/FlatCAMGUI.py:6200 flatcamTools/ToolPanelize.py:167
  7003. msgid "Number of columns of the desired panel"
  7004. msgstr "Number of columns of the desired panel"
  7005. #: flatcamGUI/FlatCAMGUI.py:6207 flatcamTools/ToolPanelize.py:173
  7006. msgid "Rows:"
  7007. msgstr "Rows:"
  7008. #: flatcamGUI/FlatCAMGUI.py:6209 flatcamTools/ToolPanelize.py:175
  7009. msgid "Number of rows of the desired panel"
  7010. msgstr "Number of rows of the desired panel"
  7011. #: flatcamGUI/FlatCAMGUI.py:6217
  7012. msgid "Panel Type:"
  7013. msgstr "Panel Type:"
  7014. #: flatcamGUI/FlatCAMGUI.py:6219
  7015. msgid ""
  7016. "Choose the type of object for the panel object:\n"
  7017. "- Gerber\n"
  7018. "- Geometry"
  7019. msgstr ""
  7020. "Choose the type of object for the panel object:\n"
  7021. "- Gerber\n"
  7022. "- Geometry"
  7023. #: flatcamGUI/FlatCAMGUI.py:6228
  7024. msgid "Constrain within:"
  7025. msgstr "Constrain within:"
  7026. #: flatcamGUI/FlatCAMGUI.py:6230 flatcamTools/ToolPanelize.py:195
  7027. msgid ""
  7028. "Area define by DX and DY within to constrain the panel.\n"
  7029. "DX and DY values are in current units.\n"
  7030. "Regardless of how many columns and rows are desired,\n"
  7031. "the final panel will have as many columns and rows as\n"
  7032. "they fit completely within selected area."
  7033. msgstr ""
  7034. "Area define by DX and DY within to constrain the panel.\n"
  7035. "DX and DY values are in current units.\n"
  7036. "Regardless of how many columns and rows are desired,\n"
  7037. "the final panel will have as many columns and rows as\n"
  7038. "they fit completely within selected area."
  7039. #: flatcamGUI/FlatCAMGUI.py:6239 flatcamTools/ToolPanelize.py:204
  7040. msgid "Width (DX):"
  7041. msgstr "Width (DX):"
  7042. #: flatcamGUI/FlatCAMGUI.py:6241 flatcamTools/ToolPanelize.py:206
  7043. msgid ""
  7044. "The width (DX) within which the panel must fit.\n"
  7045. "In current units."
  7046. msgstr ""
  7047. "The width (DX) within which the panel must fit.\n"
  7048. "In current units."
  7049. #: flatcamGUI/FlatCAMGUI.py:6248 flatcamTools/ToolPanelize.py:212
  7050. msgid "Height (DY):"
  7051. msgstr "Height (DY):"
  7052. #: flatcamGUI/FlatCAMGUI.py:6250 flatcamTools/ToolPanelize.py:214
  7053. msgid ""
  7054. "The height (DY)within which the panel must fit.\n"
  7055. "In current units."
  7056. msgstr ""
  7057. "The height (DY)within which the panel must fit.\n"
  7058. "In current units."
  7059. #: flatcamGUI/FlatCAMGUI.py:6264
  7060. msgid "Calculators Tool Options"
  7061. msgstr "Calculators Tool Options"
  7062. #: flatcamGUI/FlatCAMGUI.py:6267
  7063. msgid "<b>V-Shape Tool Calculator:</b>"
  7064. msgstr "<b>V-Shape Tool Calculator:</b>"
  7065. #: flatcamGUI/FlatCAMGUI.py:6269
  7066. msgid ""
  7067. "Calculate the tool diameter for a given V-shape tool,\n"
  7068. "having the tip diameter, tip angle and\n"
  7069. "depth-of-cut as parameters."
  7070. msgstr ""
  7071. "Calculate the tool diameter for a given V-shape tool,\n"
  7072. "having the tip diameter, tip angle and\n"
  7073. "depth-of-cut as parameters."
  7074. #: flatcamGUI/FlatCAMGUI.py:6280 flatcamTools/ToolCalculators.py:94
  7075. msgid "Tip Diameter:"
  7076. msgstr "Tip Diameter:"
  7077. #: flatcamGUI/FlatCAMGUI.py:6282
  7078. msgid ""
  7079. "This is the tool tip diameter.\n"
  7080. "It is specified by manufacturer."
  7081. msgstr ""
  7082. "This is the tool tip diameter.\n"
  7083. "It is specified by manufacturer."
  7084. #: flatcamGUI/FlatCAMGUI.py:6290
  7085. msgid "Tip angle:"
  7086. msgstr "Tip angle:"
  7087. #: flatcamGUI/FlatCAMGUI.py:6292
  7088. msgid ""
  7089. "This is the angle on the tip of the tool.\n"
  7090. "It is specified by manufacturer."
  7091. msgstr ""
  7092. "This is the angle on the tip of the tool.\n"
  7093. "It is specified by manufacturer."
  7094. #: flatcamGUI/FlatCAMGUI.py:6302
  7095. msgid ""
  7096. "This is depth to cut into material.\n"
  7097. "In the CNCJob object it is the CutZ parameter."
  7098. msgstr ""
  7099. "This is depth to cut into material.\n"
  7100. "In the CNCJob object it is the CutZ parameter."
  7101. #: flatcamGUI/FlatCAMGUI.py:6309
  7102. msgid "<b>ElectroPlating Calculator:</b>"
  7103. msgstr "<b>ElectroPlating Calculator:</b>"
  7104. #: flatcamGUI/FlatCAMGUI.py:6311 flatcamTools/ToolCalculators.py:152
  7105. msgid ""
  7106. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  7107. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  7108. "chloride."
  7109. msgstr ""
  7110. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  7111. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  7112. "chloride."
  7113. #: flatcamGUI/FlatCAMGUI.py:6321 flatcamTools/ToolCalculators.py:161
  7114. msgid "Board Length:"
  7115. msgstr "Board Length:"
  7116. #: flatcamGUI/FlatCAMGUI.py:6323 flatcamTools/ToolCalculators.py:165
  7117. msgid "This is the board length. In centimeters."
  7118. msgstr "This is the board length. In centimeters."
  7119. #: flatcamGUI/FlatCAMGUI.py:6329 flatcamTools/ToolCalculators.py:167
  7120. msgid "Board Width:"
  7121. msgstr "Board Width:"
  7122. #: flatcamGUI/FlatCAMGUI.py:6331 flatcamTools/ToolCalculators.py:171
  7123. msgid "This is the board width.In centimeters."
  7124. msgstr "This is the board width.In centimeters."
  7125. #: flatcamGUI/FlatCAMGUI.py:6336 flatcamTools/ToolCalculators.py:173
  7126. msgid "Current Density:"
  7127. msgstr "Current Density:"
  7128. #: flatcamGUI/FlatCAMGUI.py:6339 flatcamTools/ToolCalculators.py:177
  7129. msgid ""
  7130. "Current density to pass through the board. \n"
  7131. "In Amps per Square Feet ASF."
  7132. msgstr ""
  7133. "Current density to pass through the board. \n"
  7134. "In Amps per Square Feet ASF."
  7135. #: flatcamGUI/FlatCAMGUI.py:6345 flatcamTools/ToolCalculators.py:181
  7136. msgid "Copper Growth:"
  7137. msgstr "Copper Growth:"
  7138. #: flatcamGUI/FlatCAMGUI.py:6348 flatcamTools/ToolCalculators.py:185
  7139. msgid ""
  7140. "How thick the copper growth is intended to be.\n"
  7141. "In microns."
  7142. msgstr ""
  7143. "How thick the copper growth is intended to be.\n"
  7144. "In microns."
  7145. #: flatcamGUI/FlatCAMGUI.py:6361
  7146. msgid "Transform Tool Options"
  7147. msgstr "Transform Tool Options"
  7148. #: flatcamGUI/FlatCAMGUI.py:6366
  7149. msgid ""
  7150. "Various transformations that can be applied\n"
  7151. "on a FlatCAM object."
  7152. msgstr ""
  7153. "Various transformations that can be applied\n"
  7154. "on a FlatCAM object."
  7155. #: flatcamGUI/FlatCAMGUI.py:6376
  7156. msgid "Rotate Angle:"
  7157. msgstr "Rotate Angle:"
  7158. #: flatcamGUI/FlatCAMGUI.py:6378
  7159. msgid "Angle for rotation. In degrees."
  7160. msgstr "Angle for rotation. In degrees."
  7161. #: flatcamGUI/FlatCAMGUI.py:6385
  7162. msgid "Skew_X angle:"
  7163. msgstr "Skew_X angle:"
  7164. #: flatcamGUI/FlatCAMGUI.py:6387
  7165. msgid "Angle for Skew/Shear on X axis. In degrees."
  7166. msgstr "Angle for Skew/Shear on X axis. In degrees."
  7167. #: flatcamGUI/FlatCAMGUI.py:6394
  7168. msgid "Skew_Y angle:"
  7169. msgstr "Skew_Y angle:"
  7170. #: flatcamGUI/FlatCAMGUI.py:6396
  7171. msgid "Angle for Skew/Shear on Y axis. In degrees."
  7172. msgstr "Angle for Skew/Shear on Y axis. In degrees."
  7173. #: flatcamGUI/FlatCAMGUI.py:6403
  7174. msgid "Scale_X factor:"
  7175. msgstr "Scale_X factor:"
  7176. #: flatcamGUI/FlatCAMGUI.py:6405
  7177. msgid "Factor for scaling on X axis."
  7178. msgstr "Factor for scaling on X axis."
  7179. #: flatcamGUI/FlatCAMGUI.py:6412
  7180. msgid "Scale_Y factor:"
  7181. msgstr "Scale_Y factor:"
  7182. #: flatcamGUI/FlatCAMGUI.py:6414
  7183. msgid "Factor for scaling on Y axis."
  7184. msgstr "Factor for scaling on Y axis."
  7185. #: flatcamGUI/FlatCAMGUI.py:6422
  7186. msgid ""
  7187. "Scale the selected object(s)\n"
  7188. "using the Scale_X factor for both axis."
  7189. msgstr ""
  7190. "Scale the selected object(s)\n"
  7191. "using the Scale_X factor for both axis."
  7192. #: flatcamGUI/FlatCAMGUI.py:6430 flatcamTools/ToolTransform.py:210
  7193. msgid ""
  7194. "Scale the selected object(s)\n"
  7195. "using the origin reference when checked,\n"
  7196. "and the center of the biggest bounding box\n"
  7197. "of the selected objects when unchecked."
  7198. msgstr ""
  7199. "Scale the selected object(s)\n"
  7200. "using the origin reference when checked,\n"
  7201. "and the center of the biggest bounding box\n"
  7202. "of the selected objects when unchecked."
  7203. #: flatcamGUI/FlatCAMGUI.py:6439
  7204. msgid "Offset_X val:"
  7205. msgstr "Offset_X val:"
  7206. #: flatcamGUI/FlatCAMGUI.py:6441
  7207. msgid "Distance to offset on X axis. In current units."
  7208. msgstr "Distance to offset on X axis. In current units."
  7209. #: flatcamGUI/FlatCAMGUI.py:6448
  7210. msgid "Offset_Y val:"
  7211. msgstr "Offset_Y val:"
  7212. #: flatcamGUI/FlatCAMGUI.py:6450
  7213. msgid "Distance to offset on Y axis. In current units."
  7214. msgstr "Distance to offset on Y axis. In current units."
  7215. #: flatcamGUI/FlatCAMGUI.py:6456
  7216. msgid "Mirror Reference"
  7217. msgstr "Mirror Reference"
  7218. #: flatcamGUI/FlatCAMGUI.py:6458 flatcamTools/ToolTransform.py:314
  7219. msgid ""
  7220. "Flip the selected object(s)\n"
  7221. "around the point in Point Entry Field.\n"
  7222. "\n"
  7223. "The point coordinates can be captured by\n"
  7224. "left click on canvas together with pressing\n"
  7225. "SHIFT key. \n"
  7226. "Then click Add button to insert coordinates.\n"
  7227. "Or enter the coords in format (x, y) in the\n"
  7228. "Point Entry field and click Flip on X(Y)"
  7229. msgstr ""
  7230. "Flip the selected object(s)\n"
  7231. "around the point in Point Entry Field.\n"
  7232. "\n"
  7233. "The point coordinates can be captured by\n"
  7234. "left click on canvas together with pressing\n"
  7235. "SHIFT key. \n"
  7236. "Then click Add button to insert coordinates.\n"
  7237. "Or enter the coords in format (x, y) in the\n"
  7238. "Point Entry field and click Flip on X(Y)"
  7239. #: flatcamGUI/FlatCAMGUI.py:6469
  7240. msgid " Mirror Ref. Point:"
  7241. msgstr " Mirror Ref. Point:"
  7242. #: flatcamGUI/FlatCAMGUI.py:6471 flatcamTools/ToolTransform.py:327
  7243. msgid ""
  7244. "Coordinates in format (x, y) used as reference for mirroring.\n"
  7245. "The 'x' in (x, y) will be used when using Flip on X and\n"
  7246. "the 'y' in (x, y) will be used when using Flip on Y and"
  7247. msgstr ""
  7248. "Coordinates in format (x, y) used as reference for mirroring.\n"
  7249. "The 'x' in (x, y) will be used when using Flip on X and\n"
  7250. "the 'y' in (x, y) will be used when using Flip on Y and"
  7251. #: flatcamGUI/FlatCAMGUI.py:6488
  7252. msgid "SolderPaste Tool Options"
  7253. msgstr "SolderPaste Tool Options"
  7254. #: flatcamGUI/FlatCAMGUI.py:6493
  7255. msgid ""
  7256. "A tool to create GCode for dispensing\n"
  7257. "solder paste onto a PCB."
  7258. msgstr ""
  7259. "A tool to create GCode for dispensing\n"
  7260. "solder paste onto a PCB."
  7261. #: flatcamGUI/FlatCAMGUI.py:6504
  7262. msgid "Diameters of nozzle tools, separated by ','"
  7263. msgstr "Diameters of nozzle tools, separated by ','"
  7264. #: flatcamGUI/FlatCAMGUI.py:6511
  7265. msgid "<b>New Nozzle Dia:</b>"
  7266. msgstr "<b>New Nozzle Dia:</b>"
  7267. #: flatcamGUI/FlatCAMGUI.py:6513 flatcamTools/ToolSolderPaste.py:103
  7268. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  7269. msgstr "Diameter for the new Nozzle tool to add in the Tool Table"
  7270. #: flatcamGUI/FlatCAMGUI.py:6521 flatcamTools/ToolSolderPaste.py:166
  7271. msgid "Z Dispense Start:"
  7272. msgstr "Z Dispense Start:"
  7273. #: flatcamGUI/FlatCAMGUI.py:6523 flatcamTools/ToolSolderPaste.py:168
  7274. msgid "The height (Z) when solder paste dispensing starts."
  7275. msgstr "The height (Z) when solder paste dispensing starts."
  7276. #: flatcamGUI/FlatCAMGUI.py:6530 flatcamTools/ToolSolderPaste.py:174
  7277. msgid "Z Dispense:"
  7278. msgstr "Z Dispense:"
  7279. #: flatcamGUI/FlatCAMGUI.py:6532 flatcamTools/ToolSolderPaste.py:176
  7280. msgid "The height (Z) when doing solder paste dispensing."
  7281. msgstr "The height (Z) when doing solder paste dispensing."
  7282. #: flatcamGUI/FlatCAMGUI.py:6539 flatcamTools/ToolSolderPaste.py:183
  7283. msgid "Z Dispense Stop:"
  7284. msgstr "Z Dispense Stop:"
  7285. #: flatcamGUI/FlatCAMGUI.py:6541 flatcamTools/ToolSolderPaste.py:185
  7286. msgid "The height (Z) when solder paste dispensing stops."
  7287. msgstr "The height (Z) when solder paste dispensing stops."
  7288. #: flatcamGUI/FlatCAMGUI.py:6548 flatcamTools/ToolSolderPaste.py:191
  7289. msgid "Z Travel:"
  7290. msgstr "Z Travel:"
  7291. #: flatcamGUI/FlatCAMGUI.py:6550 flatcamTools/ToolSolderPaste.py:193
  7292. msgid ""
  7293. "The height (Z) for travel between pads\n"
  7294. "(without dispensing solder paste)."
  7295. msgstr ""
  7296. "The height (Z) for travel between pads\n"
  7297. "(without dispensing solder paste)."
  7298. #: flatcamGUI/FlatCAMGUI.py:6558 flatcamTools/ToolSolderPaste.py:200
  7299. msgid "Z Toolchange:"
  7300. msgstr "Z Toolchange:"
  7301. #: flatcamGUI/FlatCAMGUI.py:6560 flatcamTools/ToolSolderPaste.py:202
  7302. msgid "The height (Z) for tool (nozzle) change."
  7303. msgstr "The height (Z) for tool (nozzle) change."
  7304. #: flatcamGUI/FlatCAMGUI.py:6567 flatcamTools/ToolSolderPaste.py:208
  7305. msgid "XY Toolchange:"
  7306. msgstr "XY Toolchange:"
  7307. #: flatcamGUI/FlatCAMGUI.py:6569 flatcamTools/ToolSolderPaste.py:210
  7308. msgid ""
  7309. "The X,Y location for tool (nozzle) change.\n"
  7310. "The format is (x, y) where x and y are real numbers."
  7311. msgstr ""
  7312. "The X,Y location for tool (nozzle) change.\n"
  7313. "The format is (x, y) where x and y are real numbers."
  7314. #: flatcamGUI/FlatCAMGUI.py:6577 flatcamTools/ToolSolderPaste.py:217
  7315. msgid "Feedrate X-Y:"
  7316. msgstr "Feedrate X-Y:"
  7317. #: flatcamGUI/FlatCAMGUI.py:6579 flatcamTools/ToolSolderPaste.py:219
  7318. msgid "Feedrate (speed) while moving on the X-Y plane."
  7319. msgstr "Feedrate (speed) while moving on the X-Y plane."
  7320. #: flatcamGUI/FlatCAMGUI.py:6586 flatcamTools/ToolSolderPaste.py:225
  7321. msgid "Feedrate Z:"
  7322. msgstr "Feedrate Z:"
  7323. #: flatcamGUI/FlatCAMGUI.py:6588 flatcamTools/ToolSolderPaste.py:227
  7324. msgid ""
  7325. "Feedrate (speed) while moving vertically\n"
  7326. "(on Z plane)."
  7327. msgstr ""
  7328. "Feedrate (speed) while moving vertically\n"
  7329. "(on Z plane)."
  7330. #: flatcamGUI/FlatCAMGUI.py:6596 flatcamTools/ToolSolderPaste.py:234
  7331. msgid "Feedrate Z Dispense:"
  7332. msgstr "Feedrate Z Dispense:"
  7333. #: flatcamGUI/FlatCAMGUI.py:6598
  7334. msgid ""
  7335. "Feedrate (speed) while moving up vertically\n"
  7336. "to Dispense position (on Z plane)."
  7337. msgstr ""
  7338. "Feedrate (speed) while moving up vertically\n"
  7339. "to Dispense position (on Z plane)."
  7340. #: flatcamGUI/FlatCAMGUI.py:6606 flatcamTools/ToolSolderPaste.py:243
  7341. msgid "Spindle Speed FWD:"
  7342. msgstr "Spindle Speed FWD:"
  7343. #: flatcamGUI/FlatCAMGUI.py:6608 flatcamTools/ToolSolderPaste.py:245
  7344. msgid ""
  7345. "The dispenser speed while pushing solder paste\n"
  7346. "through the dispenser nozzle."
  7347. msgstr ""
  7348. "The dispenser speed while pushing solder paste\n"
  7349. "through the dispenser nozzle."
  7350. #: flatcamGUI/FlatCAMGUI.py:6616 flatcamTools/ToolSolderPaste.py:252
  7351. msgid "Dwell FWD:"
  7352. msgstr "Dwell FWD:"
  7353. #: flatcamGUI/FlatCAMGUI.py:6618 flatcamTools/ToolSolderPaste.py:254
  7354. msgid "Pause after solder dispensing."
  7355. msgstr "Pause after solder dispensing."
  7356. #: flatcamGUI/FlatCAMGUI.py:6625 flatcamTools/ToolSolderPaste.py:260
  7357. msgid "Spindle Speed REV:"
  7358. msgstr "Spindle Speed REV:"
  7359. #: flatcamGUI/FlatCAMGUI.py:6627 flatcamTools/ToolSolderPaste.py:262
  7360. msgid ""
  7361. "The dispenser speed while retracting solder paste\n"
  7362. "through the dispenser nozzle."
  7363. msgstr ""
  7364. "The dispenser speed while retracting solder paste\n"
  7365. "through the dispenser nozzle."
  7366. #: flatcamGUI/FlatCAMGUI.py:6635 flatcamTools/ToolSolderPaste.py:269
  7367. msgid "Dwell REV:"
  7368. msgstr "Dwell REV:"
  7369. #: flatcamGUI/FlatCAMGUI.py:6637 flatcamTools/ToolSolderPaste.py:271
  7370. msgid ""
  7371. "Pause after solder paste dispenser retracted,\n"
  7372. "to allow pressure equilibrium."
  7373. msgstr ""
  7374. "Pause after solder paste dispenser retracted,\n"
  7375. "to allow pressure equilibrium."
  7376. #: flatcamGUI/FlatCAMGUI.py:6644 flatcamTools/ToolSolderPaste.py:277
  7377. msgid "PostProcessors:"
  7378. msgstr "PostProcessors:"
  7379. #: flatcamGUI/FlatCAMGUI.py:6646 flatcamTools/ToolSolderPaste.py:279
  7380. msgid "Files that control the GCode generation."
  7381. msgstr "Files that control the GCode generation."
  7382. #: flatcamGUI/FlatCAMGUI.py:6676 flatcamGUI/FlatCAMGUI.py:6682
  7383. msgid "Idle."
  7384. msgstr "Idle."
  7385. #: flatcamGUI/FlatCAMGUI.py:6706
  7386. msgid "Application started ..."
  7387. msgstr "Application started ..."
  7388. #: flatcamGUI/FlatCAMGUI.py:6707
  7389. msgid "Hello!"
  7390. msgstr "Hello!"
  7391. #: flatcamGUI/ObjectUI.py:33
  7392. msgid "FlatCAM Object"
  7393. msgstr "FlatCAM Object"
  7394. #: flatcamGUI/ObjectUI.py:58
  7395. msgid ""
  7396. "BASIC is suitable for a beginner. Many parameters\n"
  7397. "are hidden from the user in this mode.\n"
  7398. "ADVANCED mode will make available all parameters.\n"
  7399. "\n"
  7400. "To change the application LEVEL, go to:\n"
  7401. "Edit -> Preferences -> General and check:\n"
  7402. "'APP. LEVEL' radio button."
  7403. msgstr ""
  7404. "BASIC is suitable for a beginner. Many parameters\n"
  7405. "are hidden from the user in this mode.\n"
  7406. "ADVANCED mode will make available all parameters.\n"
  7407. "\n"
  7408. "To change the application LEVEL, go to:\n"
  7409. "Edit -> Preferences -> General and check:\n"
  7410. "'APP. LEVEL' radio button."
  7411. #: flatcamGUI/ObjectUI.py:79
  7412. msgid "<b>Scale:</b>"
  7413. msgstr "<b>Scale:</b>"
  7414. #: flatcamGUI/ObjectUI.py:81
  7415. msgid "Change the size of the object."
  7416. msgstr "Change the size of the object."
  7417. #: flatcamGUI/ObjectUI.py:89
  7418. msgid "Factor:"
  7419. msgstr "Factor:"
  7420. #: flatcamGUI/ObjectUI.py:91
  7421. msgid ""
  7422. "Factor by which to multiply\n"
  7423. "geometric features of this object."
  7424. msgstr ""
  7425. "Factor by which to multiply\n"
  7426. "geometric features of this object."
  7427. #: flatcamGUI/ObjectUI.py:102
  7428. msgid "Perform scaling operation."
  7429. msgstr "Perform scaling operation."
  7430. #: flatcamGUI/ObjectUI.py:108
  7431. msgid "<b>Offset:</b>"
  7432. msgstr "<b>Offset:</b>"
  7433. #: flatcamGUI/ObjectUI.py:110
  7434. msgid "Change the position of this object."
  7435. msgstr "Change the position of this object."
  7436. #: flatcamGUI/ObjectUI.py:117
  7437. msgid "Vector:"
  7438. msgstr "Vector:"
  7439. #: flatcamGUI/ObjectUI.py:119
  7440. msgid ""
  7441. "Amount by which to move the object\n"
  7442. "in the x and y axes in (x, y) format."
  7443. msgstr ""
  7444. "Amount by which to move the object\n"
  7445. "in the x and y axes in (x, y) format."
  7446. #: flatcamGUI/ObjectUI.py:129
  7447. msgid "Perform the offset operation."
  7448. msgstr "Perform the offset operation."
  7449. #: flatcamGUI/ObjectUI.py:143
  7450. msgid "Gerber Object"
  7451. msgstr "Gerber Object"
  7452. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:517
  7453. #: flatcamGUI/ObjectUI.py:839 flatcamGUI/ObjectUI.py:1382
  7454. msgid "<b>Name:</b>"
  7455. msgstr "<b>Name:</b>"
  7456. #: flatcamGUI/ObjectUI.py:203
  7457. msgid ""
  7458. "Toggle the display of the Gerber Apertures Table.\n"
  7459. "When unchecked, it will delete all mark shapes\n"
  7460. "that are drawn on canvas."
  7461. msgstr ""
  7462. "Toggle the display of the Gerber Apertures Table.\n"
  7463. "When unchecked, it will delete all mark shapes\n"
  7464. "that are drawn on canvas."
  7465. #: flatcamGUI/ObjectUI.py:214
  7466. msgid "Mark All"
  7467. msgstr "Mark All"
  7468. #: flatcamGUI/ObjectUI.py:216
  7469. msgid ""
  7470. "When checked it will display all the apertures.\n"
  7471. "When unchecked, it will delete all mark shapes\n"
  7472. "that are drawn on canvas."
  7473. msgstr ""
  7474. "When checked it will display all the apertures.\n"
  7475. "When unchecked, it will delete all mark shapes\n"
  7476. "that are drawn on canvas."
  7477. #: flatcamGUI/ObjectUI.py:244
  7478. msgid "Mark the aperture instances on canvas."
  7479. msgstr "Mark the aperture instances on canvas."
  7480. #: flatcamGUI/ObjectUI.py:262
  7481. msgid ""
  7482. "Diameter of the cutting tool.\n"
  7483. "If you want to have an isolation path\n"
  7484. "inside the actual shape of the Gerber\n"
  7485. "feature, use a negative value for\n"
  7486. "this parameter."
  7487. msgstr ""
  7488. "Diameter of the cutting tool.\n"
  7489. "If you want to have an isolation path\n"
  7490. "inside the actual shape of the Gerber\n"
  7491. "feature, use a negative value for\n"
  7492. "this parameter."
  7493. #: flatcamGUI/ObjectUI.py:273
  7494. msgid "Passes:"
  7495. msgstr "Passes:"
  7496. #: flatcamGUI/ObjectUI.py:307
  7497. msgid "Combine"
  7498. msgstr "Combine"
  7499. #: flatcamGUI/ObjectUI.py:323
  7500. msgid "<b>Generate Isolation Geometry:</b>"
  7501. msgstr "<b>Generate Isolation Geometry:</b>"
  7502. #: flatcamGUI/ObjectUI.py:325
  7503. msgid ""
  7504. "Create a Geometry object with toolpaths to cut \n"
  7505. "isolation outside, inside or on both sides of the\n"
  7506. "object. For a Gerber object outside means outside\n"
  7507. "of the Gerber feature and inside means inside of\n"
  7508. "the Gerber feature, if possible at all. This means\n"
  7509. "that only if the Gerber feature has openings inside, they\n"
  7510. "will be isolated. If what is wanted is to cut isolation\n"
  7511. "inside the actual Gerber feature, use a negative tool\n"
  7512. "diameter above."
  7513. msgstr ""
  7514. "Create a Geometry object with toolpaths to cut \n"
  7515. "isolation outside, inside or on both sides of the\n"
  7516. "object. For a Gerber object outside means outside\n"
  7517. "of the Gerber feature and inside means inside of\n"
  7518. "the Gerber feature, if possible at all. This means\n"
  7519. "that only if the Gerber feature has openings inside, they\n"
  7520. "will be isolated. If what is wanted is to cut isolation\n"
  7521. "inside the actual Gerber feature, use a negative tool\n"
  7522. "diameter above."
  7523. #: flatcamGUI/ObjectUI.py:344
  7524. msgid "FULL Geo"
  7525. msgstr "FULL Geo"
  7526. #: flatcamGUI/ObjectUI.py:346
  7527. msgid ""
  7528. "Create the Geometry Object\n"
  7529. "for isolation routing. It contains both\n"
  7530. "the interiors and exteriors geometry."
  7531. msgstr ""
  7532. "Create the Geometry Object\n"
  7533. "for isolation routing. It contains both\n"
  7534. "the interiors and exteriors geometry."
  7535. #: flatcamGUI/ObjectUI.py:355
  7536. msgid "Ext Geo"
  7537. msgstr "Ext Geo"
  7538. #: flatcamGUI/ObjectUI.py:357
  7539. msgid ""
  7540. "Create the Geometry Object\n"
  7541. "for isolation routing containing\n"
  7542. "only the exteriors geometry."
  7543. msgstr ""
  7544. "Create the Geometry Object\n"
  7545. "for isolation routing containing\n"
  7546. "only the exteriors geometry."
  7547. #: flatcamGUI/ObjectUI.py:364
  7548. msgid "Int Geo"
  7549. msgstr "Int Geo"
  7550. #: flatcamGUI/ObjectUI.py:366
  7551. msgid ""
  7552. "Create the Geometry Object\n"
  7553. "for isolation routing containing\n"
  7554. "only the interiors geometry."
  7555. msgstr ""
  7556. "Create the Geometry Object\n"
  7557. "for isolation routing containing\n"
  7558. "only the interiors geometry."
  7559. #: flatcamGUI/ObjectUI.py:384
  7560. msgid "<b>Clear N-copper:</b>"
  7561. msgstr "<b>Clear N-copper:</b>"
  7562. #: flatcamGUI/ObjectUI.py:394 flatcamTools/ToolNonCopperClear.py:240
  7563. msgid ""
  7564. "Create the Geometry Object\n"
  7565. "for non-copper routing."
  7566. msgstr ""
  7567. "Create the Geometry Object\n"
  7568. "for non-copper routing."
  7569. #: flatcamGUI/ObjectUI.py:400
  7570. msgid "<b>Board cutout:</b>"
  7571. msgstr "<b>Board cutout:</b>"
  7572. #: flatcamGUI/ObjectUI.py:408 flatcamTools/ToolCutOut.py:313
  7573. msgid "Cutout Tool"
  7574. msgstr "Cutout Tool"
  7575. #: flatcamGUI/ObjectUI.py:410
  7576. msgid ""
  7577. "Generate the geometry for\n"
  7578. "the board cutout."
  7579. msgstr ""
  7580. "Generate the geometry for\n"
  7581. "the board cutout."
  7582. #: flatcamGUI/ObjectUI.py:416
  7583. msgid "<b>Non-copper regions:</b>"
  7584. msgstr "<b>Non-copper regions:</b>"
  7585. #: flatcamGUI/ObjectUI.py:418
  7586. msgid ""
  7587. "Create polygons covering the\n"
  7588. "areas without copper on the PCB.\n"
  7589. "Equivalent to the inverse of this\n"
  7590. "object. Can be used to remove all\n"
  7591. "copper from a specified region."
  7592. msgstr ""
  7593. "Create polygons covering the\n"
  7594. "areas without copper on the PCB.\n"
  7595. "Equivalent to the inverse of this\n"
  7596. "object. Can be used to remove all\n"
  7597. "copper from a specified region."
  7598. #: flatcamGUI/ObjectUI.py:443 flatcamGUI/ObjectUI.py:474
  7599. msgid "Rounded Geo"
  7600. msgstr "Rounded Geo"
  7601. #: flatcamGUI/ObjectUI.py:445
  7602. msgid "Resulting geometry will have rounded corners."
  7603. msgstr "Resulting geometry will have rounded corners."
  7604. #: flatcamGUI/ObjectUI.py:450 flatcamGUI/ObjectUI.py:484
  7605. #: flatcamTools/ToolCutOut.py:168 flatcamTools/ToolCutOut.py:188
  7606. #: flatcamTools/ToolCutOut.py:239 flatcamTools/ToolSolderPaste.py:127
  7607. msgid "Generate Geo"
  7608. msgstr "Generate Geo"
  7609. #: flatcamGUI/ObjectUI.py:456
  7610. msgid ""
  7611. "Create a geometry surrounding the Gerber object.\n"
  7612. "Square shape."
  7613. msgstr ""
  7614. "Create a geometry surrounding the Gerber object.\n"
  7615. "Square shape."
  7616. #: flatcamGUI/ObjectUI.py:486
  7617. msgid "Generate the Geometry object."
  7618. msgstr "Generate the Geometry object."
  7619. #: flatcamGUI/ObjectUI.py:497
  7620. msgid "Excellon Object"
  7621. msgstr "Excellon Object"
  7622. #: flatcamGUI/ObjectUI.py:508
  7623. msgid "Solid circles."
  7624. msgstr "Solid circles."
  7625. #: flatcamGUI/ObjectUI.py:536 flatcamGUI/ObjectUI.py:858
  7626. msgid "<b>Tools Table</b>"
  7627. msgstr "<b>Tools Table</b>"
  7628. #: flatcamGUI/ObjectUI.py:556
  7629. msgid "Drills"
  7630. msgstr "Drills"
  7631. #: flatcamGUI/ObjectUI.py:556
  7632. msgid "Slots"
  7633. msgstr "Slots"
  7634. #: flatcamGUI/ObjectUI.py:557
  7635. msgid "Offset Z"
  7636. msgstr "Offset Z"
  7637. #: flatcamGUI/ObjectUI.py:561
  7638. msgid ""
  7639. "This is the Tool Number.\n"
  7640. "When ToolChange is checked, on toolchange event this value\n"
  7641. "will be showed as a T1, T2 ... Tn in the Machine Code."
  7642. msgstr ""
  7643. "This is the Tool Number.\n"
  7644. "When ToolChange is checked, on toolchange event this value\n"
  7645. "will be showed as a T1, T2 ... Tn in the Machine Code."
  7646. #: flatcamGUI/ObjectUI.py:565 flatcamGUI/ObjectUI.py:904
  7647. #: flatcamTools/ToolNonCopperClear.py:97 flatcamTools/ToolPaint.py:94
  7648. msgid ""
  7649. "Tool Diameter. It's value (in current FlatCAM units) \n"
  7650. "is the cut width into the material."
  7651. msgstr ""
  7652. "Tool Diameter. It's value (in current FlatCAM units) \n"
  7653. "is the cut width into the material."
  7654. #: flatcamGUI/ObjectUI.py:568
  7655. msgid ""
  7656. "The number of Drill holes. Holes that are drilled with\n"
  7657. "a drill bit."
  7658. msgstr ""
  7659. "The number of Drill holes. Holes that are drilled with\n"
  7660. "a drill bit."
  7661. #: flatcamGUI/ObjectUI.py:571
  7662. msgid ""
  7663. "The number of Slot holes. Holes that are created by\n"
  7664. "milling them with an endmill bit."
  7665. msgstr ""
  7666. "The number of Slot holes. Holes that are created by\n"
  7667. "milling them with an endmill bit."
  7668. #: flatcamGUI/ObjectUI.py:578
  7669. msgid "Toggle display of the drills for the current tool."
  7670. msgstr "Toggle display of the drills for the current tool."
  7671. #: flatcamGUI/ObjectUI.py:586
  7672. msgid ""
  7673. "Create a CNC Job object\n"
  7674. "for this drill object."
  7675. msgstr ""
  7676. "Create a CNC Job object\n"
  7677. "for this drill object."
  7678. #: flatcamGUI/ObjectUI.py:615 flatcamGUI/ObjectUI.py:1118
  7679. msgid "Tool change"
  7680. msgstr "Tool change"
  7681. #: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:1111
  7682. msgid "Tool change Z:"
  7683. msgstr "Tool change Z:"
  7684. #: flatcamGUI/ObjectUI.py:625 flatcamGUI/ObjectUI.py:1114
  7685. msgid ""
  7686. "Z-axis position (height) for\n"
  7687. "tool change."
  7688. msgstr ""
  7689. "Z-axis position (height) for\n"
  7690. "tool change."
  7691. #: flatcamGUI/ObjectUI.py:636
  7692. msgid ""
  7693. "Tool height just before starting the work.\n"
  7694. "Delete the value if you don't need this feature."
  7695. msgstr ""
  7696. "Tool height just before starting the work.\n"
  7697. "Delete the value if you don't need this feature."
  7698. #: flatcamGUI/ObjectUI.py:646
  7699. msgid ""
  7700. "Z-axis position (height) for\n"
  7701. "the last move."
  7702. msgstr ""
  7703. "Z-axis position (height) for\n"
  7704. "the last move."
  7705. #: flatcamGUI/ObjectUI.py:654
  7706. msgid "Feedrate (Plunge):"
  7707. msgstr "Feedrate (Plunge):"
  7708. #: flatcamGUI/ObjectUI.py:656
  7709. msgid ""
  7710. "Tool speed while drilling\n"
  7711. "(in units per minute).\n"
  7712. "This is for linear move G01."
  7713. msgstr ""
  7714. "Tool speed while drilling\n"
  7715. "(in units per minute).\n"
  7716. "This is for linear move G01."
  7717. #: flatcamGUI/ObjectUI.py:709
  7718. msgid ""
  7719. "The json file that dictates\n"
  7720. "gcode output."
  7721. msgstr ""
  7722. "The json file that dictates\n"
  7723. "gcode output."
  7724. #: flatcamGUI/ObjectUI.py:741
  7725. msgid ""
  7726. "Select from the Tools Table above\n"
  7727. "the tools you want to include."
  7728. msgstr ""
  7729. "Select from the Tools Table above\n"
  7730. "the tools you want to include."
  7731. #: flatcamGUI/ObjectUI.py:748
  7732. msgid "<b>Type: </b>"
  7733. msgstr "<b>Type: </b>"
  7734. #: flatcamGUI/ObjectUI.py:750
  7735. msgid ""
  7736. "Choose what to use for GCode generation:\n"
  7737. "'Drills', 'Slots' or 'Both'.\n"
  7738. "When choosing 'Slots' or 'Both', slots will be\n"
  7739. "converted to a series of drills."
  7740. msgstr ""
  7741. "Choose what to use for GCode generation:\n"
  7742. "'Drills', 'Slots' or 'Both'.\n"
  7743. "When choosing 'Slots' or 'Both', slots will be\n"
  7744. "converted to a series of drills."
  7745. #: flatcamGUI/ObjectUI.py:765
  7746. msgid "Create GCode"
  7747. msgstr "Create GCode"
  7748. #: flatcamGUI/ObjectUI.py:767
  7749. msgid "Generate the CNC Job."
  7750. msgstr "Generate the CNC Job."
  7751. #: flatcamGUI/ObjectUI.py:779
  7752. msgid ""
  7753. "Select from the Tools Table above\n"
  7754. " the hole dias that are to be milled."
  7755. msgstr ""
  7756. "Select from the Tools Table above\n"
  7757. " the hole dias that are to be milled."
  7758. #: flatcamGUI/ObjectUI.py:786
  7759. msgid "Drills Tool dia:"
  7760. msgstr "Drills Tool dia:"
  7761. #: flatcamGUI/ObjectUI.py:793
  7762. msgid "Mill Drills Geo"
  7763. msgstr "Mill Drills Geo"
  7764. #: flatcamGUI/ObjectUI.py:795
  7765. msgid ""
  7766. "Create the Geometry Object\n"
  7767. "for milling DRILLS toolpaths."
  7768. msgstr ""
  7769. "Create the Geometry Object\n"
  7770. "for milling DRILLS toolpaths."
  7771. #: flatcamGUI/ObjectUI.py:802
  7772. msgid "Slots Tool dia:"
  7773. msgstr "Slots Tool dia:"
  7774. #: flatcamGUI/ObjectUI.py:809
  7775. msgid "Mill Slots Geo"
  7776. msgstr "Mill Slots Geo"
  7777. #: flatcamGUI/ObjectUI.py:811
  7778. msgid ""
  7779. "Create the Geometry Object\n"
  7780. "for milling SLOTS toolpaths."
  7781. msgstr ""
  7782. "Create the Geometry Object\n"
  7783. "for milling SLOTS toolpaths."
  7784. #: flatcamGUI/ObjectUI.py:829
  7785. msgid "Geometry Object"
  7786. msgstr "Geometry Object"
  7787. #: flatcamGUI/ObjectUI.py:860
  7788. msgid ""
  7789. "Tools in this Geometry object used for cutting.\n"
  7790. "The 'Offset' entry will set an offset for the cut.\n"
  7791. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7792. "'Type' entry is only informative and it allow to know the \n"
  7793. "intent of using the current tool. \n"
  7794. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7795. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7796. "ball(B), or V-Shaped(V). \n"
  7797. "When V-shaped is selected the 'Type' entry is automatically \n"
  7798. "set to Isolation, the CutZ parameter in the UI form is\n"
  7799. "grayed out and Cut Z is automatically calculated from the newly \n"
  7800. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  7801. msgstr ""
  7802. "Tools in this Geometry object used for cutting.\n"
  7803. "The 'Offset' entry will set an offset for the cut.\n"
  7804. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7805. "'Type' entry is only informative and it allow to know the \n"
  7806. "intent of using the current tool. \n"
  7807. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7808. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7809. "ball(B), or V-Shaped(V). \n"
  7810. "When V-shaped is selected the 'Type' entry is automatically \n"
  7811. "set to Isolation, the CutZ parameter in the UI form is\n"
  7812. "grayed out and Cut Z is automatically calculated from the newly \n"
  7813. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  7814. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  7815. msgid "Dia"
  7816. msgstr "Dia"
  7817. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  7818. msgid "TT"
  7819. msgstr "TT"
  7820. #: flatcamGUI/ObjectUI.py:898
  7821. msgid ""
  7822. "This is the Tool Number.\n"
  7823. "When ToolChange is checked, on toolchange event this value\n"
  7824. "will be showed as a T1, T2 ... Tn"
  7825. msgstr ""
  7826. "This is the Tool Number.\n"
  7827. "When ToolChange is checked, on toolchange event this value\n"
  7828. "will be showed as a T1, T2 ... Tn"
  7829. #: flatcamGUI/ObjectUI.py:909
  7830. msgid ""
  7831. "The value for the Offset can be:\n"
  7832. "- Path -> There is no offset, the tool cut will be done through the geometry "
  7833. "line.\n"
  7834. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  7835. "'pocket'.\n"
  7836. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  7837. msgstr ""
  7838. "The value for the Offset can be:\n"
  7839. "- Path -> There is no offset, the tool cut will be done through the geometry "
  7840. "line.\n"
  7841. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  7842. "'pocket'.\n"
  7843. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  7844. #: flatcamGUI/ObjectUI.py:916
  7845. msgid ""
  7846. "The (Operation) Type has only informative value. Usually the UI form "
  7847. "values \n"
  7848. "are choosed based on the operation type and this will serve as a reminder.\n"
  7849. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  7850. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  7851. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  7852. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  7853. "tip."
  7854. msgstr ""
  7855. "The (Operation) Type has only informative value. Usually the UI form "
  7856. "values \n"
  7857. "are choosed based on the operation type and this will serve as a reminder.\n"
  7858. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  7859. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  7860. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  7861. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  7862. "tip."
  7863. #: flatcamGUI/ObjectUI.py:925
  7864. msgid ""
  7865. "The Tool Type (TT) can be:\n"
  7866. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  7867. "cut width in material\n"
  7868. "is exactly the tool diameter.\n"
  7869. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  7870. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  7871. "two additional UI form\n"
  7872. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  7873. "the Z-Cut parameter such\n"
  7874. "as the cut width into material will be equal with the value in the Tool "
  7875. "Diameter column of this table.\n"
  7876. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  7877. "as Isolation."
  7878. msgstr ""
  7879. "The Tool Type (TT) can be:\n"
  7880. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  7881. "cut width in material\n"
  7882. "is exactly the tool diameter.\n"
  7883. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  7884. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  7885. "two additional UI form\n"
  7886. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  7887. "the Z-Cut parameter such\n"
  7888. "as the cut width into material will be equal with the value in the Tool "
  7889. "Diameter column of this table.\n"
  7890. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  7891. "as Isolation."
  7892. #: flatcamGUI/ObjectUI.py:936
  7893. msgid ""
  7894. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  7895. "that holds the geometry\n"
  7896. "data into the tools. For those geometries, deleting the tool will delete the "
  7897. "geometry data also,\n"
  7898. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  7899. "plot on canvas\n"
  7900. "for the corresponding tool."
  7901. msgstr ""
  7902. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  7903. "that holds the geometry\n"
  7904. "data into the tools. For those geometries, deleting the tool will delete the "
  7905. "geometry data also,\n"
  7906. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  7907. "plot on canvas\n"
  7908. "for the corresponding tool."
  7909. #: flatcamGUI/ObjectUI.py:949
  7910. msgid "Tool Offset:"
  7911. msgstr "Tool Offset:"
  7912. #: flatcamGUI/ObjectUI.py:952
  7913. msgid ""
  7914. "The value to offset the cut when \n"
  7915. "the Offset type selected is 'Offset'.\n"
  7916. "The value can be positive for 'outside'\n"
  7917. "cut and negative for 'inside' cut."
  7918. msgstr ""
  7919. "The value to offset the cut when \n"
  7920. "the Offset type selected is 'Offset'.\n"
  7921. "The value can be positive for 'outside'\n"
  7922. "cut and negative for 'inside' cut."
  7923. #: flatcamGUI/ObjectUI.py:975
  7924. msgid "<b>Tool Dia:</b>"
  7925. msgstr "<b>Tool Dia:</b>"
  7926. #: flatcamGUI/ObjectUI.py:994 flatcamTools/ToolNonCopperClear.py:136
  7927. #: flatcamTools/ToolPaint.py:133
  7928. msgid ""
  7929. "Add a new tool to the Tool Table\n"
  7930. "with the diameter specified above."
  7931. msgstr ""
  7932. "Add a new tool to the Tool Table\n"
  7933. "with the diameter specified above."
  7934. #: flatcamGUI/ObjectUI.py:1002
  7935. msgid ""
  7936. "Copy a selection of tools in the Tool Table\n"
  7937. "by first selecting a row in the Tool Table."
  7938. msgstr ""
  7939. "Copy a selection of tools in the Tool Table\n"
  7940. "by first selecting a row in the Tool Table."
  7941. #: flatcamGUI/ObjectUI.py:1010
  7942. msgid ""
  7943. "Delete a selection of tools in the Tool Table\n"
  7944. "by first selecting a row in the Tool Table."
  7945. msgstr ""
  7946. "Delete a selection of tools in the Tool Table\n"
  7947. "by first selecting a row in the Tool Table."
  7948. #: flatcamGUI/ObjectUI.py:1026
  7949. msgid "<b>Tool Data</b>"
  7950. msgstr "<b>Tool Data</b>"
  7951. #: flatcamGUI/ObjectUI.py:1029
  7952. msgid ""
  7953. "The data used for creating GCode.\n"
  7954. "Each tool store it's own set of such data."
  7955. msgstr ""
  7956. "The data used for creating GCode.\n"
  7957. "Each tool store it's own set of such data."
  7958. #: flatcamGUI/ObjectUI.py:1039
  7959. msgid "V-Tip Dia:"
  7960. msgstr "V-Tip Dia:"
  7961. #: flatcamGUI/ObjectUI.py:1042
  7962. msgid "The tip diameter for V-Shape Tool"
  7963. msgstr "The tip diameter for V-Shape Tool"
  7964. #: flatcamGUI/ObjectUI.py:1050
  7965. msgid "V-Tip Angle:"
  7966. msgstr "V-Tip Angle:"
  7967. #: flatcamGUI/ObjectUI.py:1053
  7968. msgid ""
  7969. "The tip angle for V-Shape Tool.\n"
  7970. "In degree."
  7971. msgstr ""
  7972. "The tip angle for V-Shape Tool.\n"
  7973. "In degree."
  7974. #: flatcamGUI/ObjectUI.py:1074
  7975. msgid "Multi-Depth:"
  7976. msgstr "Multi-Depth:"
  7977. #: flatcamGUI/ObjectUI.py:1077
  7978. msgid ""
  7979. "Use multiple passes to limit\n"
  7980. "the cut depth in each pass. Will\n"
  7981. "cut multiple times until Cut Z is\n"
  7982. "reached.\n"
  7983. "To the right, input the depth of \n"
  7984. "each pass (positive value)."
  7985. msgstr ""
  7986. "Use multiple passes to limit\n"
  7987. "the cut depth in each pass. Will\n"
  7988. "cut multiple times until Cut Z is\n"
  7989. "reached.\n"
  7990. "To the right, input the depth of \n"
  7991. "each pass (positive value)."
  7992. #: flatcamGUI/ObjectUI.py:1090
  7993. msgid "Depth of each pass (positive)."
  7994. msgstr "Depth of each pass (positive)."
  7995. #: flatcamGUI/ObjectUI.py:1121
  7996. msgid ""
  7997. "Include tool-change sequence\n"
  7998. "in the Machine Code (Pause for tool change)."
  7999. msgstr ""
  8000. "Include tool-change sequence\n"
  8001. "in the Machine Code (Pause for tool change)."
  8002. #: flatcamGUI/ObjectUI.py:1147
  8003. msgid ""
  8004. "This is the height (Z) at which the CNC\n"
  8005. "will go as the last move."
  8006. msgstr ""
  8007. "This is the height (Z) at which the CNC\n"
  8008. "will go as the last move."
  8009. #: flatcamGUI/ObjectUI.py:1168
  8010. msgid "Feed Rate Z (Plunge):"
  8011. msgstr "Feed Rate Z (Plunge):"
  8012. #: flatcamGUI/ObjectUI.py:1171
  8013. msgid ""
  8014. "Cutting speed in the Z\n"
  8015. "plane in units per minute"
  8016. msgstr ""
  8017. "Cutting speed in the Z\n"
  8018. "plane in units per minute"
  8019. #: flatcamGUI/ObjectUI.py:1180
  8020. msgid "Feed Rate Rapids:"
  8021. msgstr "Feed Rate Rapids:"
  8022. #: flatcamGUI/ObjectUI.py:1183
  8023. msgid ""
  8024. "Cutting speed in the XY\n"
  8025. "plane in units per minute\n"
  8026. "(in units per minute).\n"
  8027. "This is for the rapid move G00.\n"
  8028. "It is useful only for Marlin,\n"
  8029. "ignore for any other cases."
  8030. msgstr ""
  8031. "Cutting speed in the XY\n"
  8032. "plane in units per minute\n"
  8033. "(in units per minute).\n"
  8034. "This is for the rapid move G00.\n"
  8035. "It is useful only for Marlin,\n"
  8036. "ignore for any other cases."
  8037. #: flatcamGUI/ObjectUI.py:1199
  8038. msgid "Cut over 1st pt"
  8039. msgstr "Cut over 1st pt"
  8040. #: flatcamGUI/ObjectUI.py:1214
  8041. msgid ""
  8042. "Speed of the spindle in RPM (optional).\n"
  8043. "If LASER postprocessor is used,\n"
  8044. "this value is the power of laser."
  8045. msgstr ""
  8046. "Speed of the spindle in RPM (optional).\n"
  8047. "If LASER postprocessor is used,\n"
  8048. "this value is the power of laser."
  8049. #: flatcamGUI/ObjectUI.py:1243
  8050. msgid "PostProcessor:"
  8051. msgstr "PostProcessor:"
  8052. #: flatcamGUI/ObjectUI.py:1246
  8053. msgid ""
  8054. "The Postprocessor file that dictates\n"
  8055. "the Machine Code (like GCode, RML, HPGL) output."
  8056. msgstr ""
  8057. "The Postprocessor file that dictates\n"
  8058. "the Machine Code (like GCode, RML, HPGL) output."
  8059. #: flatcamGUI/ObjectUI.py:1284
  8060. msgid ""
  8061. "Add at least one tool in the tool-table.\n"
  8062. "Click the header to select all, or Ctrl + LMB\n"
  8063. "for custom selection of tools."
  8064. msgstr ""
  8065. "Add at least one tool in the tool-table.\n"
  8066. "Click the header to select all, or Ctrl + LMB\n"
  8067. "for custom selection of tools."
  8068. #: flatcamGUI/ObjectUI.py:1291
  8069. msgid "Generate"
  8070. msgstr "Generate"
  8071. #: flatcamGUI/ObjectUI.py:1294
  8072. msgid "Generate the CNC Job object."
  8073. msgstr "Generate the CNC Job object."
  8074. #: flatcamGUI/ObjectUI.py:1302
  8075. msgid "<b>Paint Area:</b>"
  8076. msgstr "<b>Paint Area:</b>"
  8077. #: flatcamGUI/ObjectUI.py:1317
  8078. msgid "Launch Paint Tool in Tools Tab."
  8079. msgstr "Launch Paint Tool in Tools Tab."
  8080. #: flatcamGUI/ObjectUI.py:1334
  8081. msgid "CNC Job Object"
  8082. msgstr "CNC Job Object"
  8083. #: flatcamGUI/ObjectUI.py:1353
  8084. msgid "<b>Plot kind:</b>"
  8085. msgstr "<b>Plot kind:</b>"
  8086. #: flatcamGUI/ObjectUI.py:1369
  8087. msgid "<b>Display Annotation:</b>"
  8088. msgstr "<b>Display Annotation:</b>"
  8089. #: flatcamGUI/ObjectUI.py:1388
  8090. msgid "<b>Travelled dist.:</b>"
  8091. msgstr "<b>Travelled dist.:</b>"
  8092. #: flatcamGUI/ObjectUI.py:1391 flatcamGUI/ObjectUI.py:1398
  8093. msgid ""
  8094. "This is the total travelled distance on X-Y plane.\n"
  8095. "In current units."
  8096. msgstr ""
  8097. "This is the total travelled distance on X-Y plane.\n"
  8098. "In current units."
  8099. #: flatcamGUI/ObjectUI.py:1429
  8100. msgid "<b>CNC Tools Table</b>"
  8101. msgstr "<b>CNC Tools Table</b>"
  8102. #: flatcamGUI/ObjectUI.py:1432
  8103. msgid ""
  8104. "Tools in this CNCJob object used for cutting.\n"
  8105. "The tool diameter is used for plotting on canvas.\n"
  8106. "The 'Offset' entry will set an offset for the cut.\n"
  8107. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8108. "'Type' entry is only informative and it allow to know the \n"
  8109. "intent of using the current tool. \n"
  8110. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8111. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8112. "ball(B), or V-Shaped(V)."
  8113. msgstr ""
  8114. "Tools in this CNCJob object used for cutting.\n"
  8115. "The tool diameter is used for plotting on canvas.\n"
  8116. "The 'Offset' entry will set an offset for the cut.\n"
  8117. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8118. "'Type' entry is only informative and it allow to know the \n"
  8119. "intent of using the current tool. \n"
  8120. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8121. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8122. "ball(B), or V-Shaped(V)."
  8123. #: flatcamGUI/ObjectUI.py:1466
  8124. msgid "P"
  8125. msgstr "P"
  8126. #: flatcamGUI/ObjectUI.py:1472
  8127. msgid "Update Plot"
  8128. msgstr "Update Plot"
  8129. #: flatcamGUI/ObjectUI.py:1474
  8130. msgid "Update the plot."
  8131. msgstr "Update the plot."
  8132. #: flatcamGUI/ObjectUI.py:1481
  8133. msgid "<b>Export CNC Code:</b>"
  8134. msgstr "<b>Export CNC Code:</b>"
  8135. #: flatcamGUI/ObjectUI.py:1489
  8136. msgid "Prepend to CNC Code:"
  8137. msgstr "Prepend to CNC Code:"
  8138. #: flatcamGUI/ObjectUI.py:1492
  8139. msgid ""
  8140. "Type here any G-Code commands you would\n"
  8141. "like to add to the beginning of the generated file."
  8142. msgstr ""
  8143. "Type here any G-Code commands you would\n"
  8144. "like to add to the beginning of the generated file."
  8145. #: flatcamGUI/ObjectUI.py:1502
  8146. msgid "Append to CNC Code:"
  8147. msgstr "Append to CNC Code:"
  8148. #: flatcamGUI/ObjectUI.py:1526
  8149. msgid ""
  8150. "Type here any G-Code commands you would\n"
  8151. "like to be executed when Toolchange event is encountered.\n"
  8152. "This will constitute a Custom Toolchange GCode,\n"
  8153. "or a Toolchange Macro.\n"
  8154. "The FlatCAM variables are surrounded by '%' symbol.\n"
  8155. "\n"
  8156. "WARNING: it can be used only with a postprocessor file\n"
  8157. "that has 'toolchange_custom' in it's name and this is built\n"
  8158. "having as template the 'Toolchange Custom' posprocessor file."
  8159. msgstr ""
  8160. "Type here any G-Code commands you would\n"
  8161. "like to be executed when Toolchange event is encountered.\n"
  8162. "This will constitute a Custom Toolchange GCode,\n"
  8163. "or a Toolchange Macro.\n"
  8164. "The FlatCAM variables are surrounded by '%' symbol.\n"
  8165. "\n"
  8166. "WARNING: it can be used only with a postprocessor file\n"
  8167. "that has 'toolchange_custom' in it's name and this is built\n"
  8168. "having as template the 'Toolchange Custom' posprocessor file."
  8169. #: flatcamGUI/ObjectUI.py:1574
  8170. msgid "z_cut = depth where to cut"
  8171. msgstr "z_cut = depth where to cut"
  8172. #: flatcamGUI/ObjectUI.py:1575
  8173. msgid "z_move = height where to travel"
  8174. msgstr "z_move = height where to travel"
  8175. #: flatcamGUI/ObjectUI.py:1593
  8176. msgid "View CNC Code"
  8177. msgstr "View CNC Code"
  8178. #: flatcamGUI/ObjectUI.py:1596
  8179. msgid ""
  8180. "Opens TAB to view/modify/print G-Code\n"
  8181. "file."
  8182. msgstr ""
  8183. "Opens TAB to view/modify/print G-Code\n"
  8184. "file."
  8185. #: flatcamGUI/ObjectUI.py:1602
  8186. msgid "Save CNC Code"
  8187. msgstr "Save CNC Code"
  8188. #: flatcamGUI/ObjectUI.py:1605
  8189. msgid ""
  8190. "Opens dialog to save G-Code\n"
  8191. "file."
  8192. msgstr ""
  8193. "Opens dialog to save G-Code\n"
  8194. "file."
  8195. #: flatcamTools/ToolCalculators.py:24
  8196. msgid "Calculators"
  8197. msgstr "Calculators"
  8198. #: flatcamTools/ToolCalculators.py:25
  8199. msgid "V-Shape Tool Calculator"
  8200. msgstr "V-Shape Tool Calculator"
  8201. #: flatcamTools/ToolCalculators.py:26
  8202. msgid "Units Calculator"
  8203. msgstr "Units Calculator"
  8204. #: flatcamTools/ToolCalculators.py:27
  8205. msgid "ElectroPlating Calculator"
  8206. msgstr "ElectroPlating Calculator"
  8207. #: flatcamTools/ToolCalculators.py:68
  8208. msgid "Here you enter the value to be converted from INCH to MM"
  8209. msgstr "Here you enter the value to be converted from INCH to MM"
  8210. #: flatcamTools/ToolCalculators.py:73
  8211. msgid "Here you enter the value to be converted from MM to INCH"
  8212. msgstr "Here you enter the value to be converted from MM to INCH"
  8213. #: flatcamTools/ToolCalculators.py:98
  8214. msgid ""
  8215. "This is the diameter of the tool tip.\n"
  8216. "The manufacturer specifies it."
  8217. msgstr ""
  8218. "This is the diameter of the tool tip.\n"
  8219. "The manufacturer specifies it."
  8220. #: flatcamTools/ToolCalculators.py:101
  8221. msgid "Tip Angle:"
  8222. msgstr "Tip Angle:"
  8223. #: flatcamTools/ToolCalculators.py:105
  8224. msgid ""
  8225. "This is the angle of the tip of the tool.\n"
  8226. "It is specified by manufacturer."
  8227. msgstr ""
  8228. "This is the angle of the tip of the tool.\n"
  8229. "It is specified by manufacturer."
  8230. #: flatcamTools/ToolCalculators.py:112
  8231. msgid ""
  8232. "This is the depth to cut into the material.\n"
  8233. "In the CNCJob is the CutZ parameter."
  8234. msgstr ""
  8235. "This is the depth to cut into the material.\n"
  8236. "In the CNCJob is the CutZ parameter."
  8237. #: flatcamTools/ToolCalculators.py:115
  8238. msgid "Tool Diameter:"
  8239. msgstr "Tool Diameter:"
  8240. #: flatcamTools/ToolCalculators.py:119
  8241. msgid ""
  8242. "This is the tool diameter to be entered into\n"
  8243. "FlatCAM Gerber section.\n"
  8244. "In the CNCJob section it is called >Tool dia<."
  8245. msgstr ""
  8246. "This is the tool diameter to be entered into\n"
  8247. "FlatCAM Gerber section.\n"
  8248. "In the CNCJob section it is called >Tool dia<."
  8249. #: flatcamTools/ToolCalculators.py:131 flatcamTools/ToolCalculators.py:214
  8250. msgid "Calculate"
  8251. msgstr "Calculate"
  8252. #: flatcamTools/ToolCalculators.py:134
  8253. msgid ""
  8254. "Calculate either the Cut Z or the effective tool diameter,\n"
  8255. " depending on which is desired and which is known. "
  8256. msgstr ""
  8257. "Calculate either the Cut Z or the effective tool diameter,\n"
  8258. " depending on which is desired and which is known. "
  8259. #: flatcamTools/ToolCalculators.py:190
  8260. msgid "Current Value:"
  8261. msgstr "Current Value:"
  8262. #: flatcamTools/ToolCalculators.py:194
  8263. msgid ""
  8264. "This is the current intensity value\n"
  8265. "to be set on the Power Supply. In Amps."
  8266. msgstr ""
  8267. "This is the current intensity value\n"
  8268. "to be set on the Power Supply. In Amps."
  8269. #: flatcamTools/ToolCalculators.py:198
  8270. msgid "Time:"
  8271. msgstr "Time:"
  8272. #: flatcamTools/ToolCalculators.py:202
  8273. msgid ""
  8274. "This is the calculated time required for the procedure.\n"
  8275. "In minutes."
  8276. msgstr ""
  8277. "This is the calculated time required for the procedure.\n"
  8278. "In minutes."
  8279. #: flatcamTools/ToolCalculators.py:217
  8280. msgid ""
  8281. "Calculate the current intensity value and the procedure time,\n"
  8282. " depending on the parameters above"
  8283. msgstr ""
  8284. "Calculate the current intensity value and the procedure time,\n"
  8285. " depending on the parameters above"
  8286. #: flatcamTools/ToolCutOut.py:17
  8287. msgid "Cutout PCB"
  8288. msgstr "Cutout PCB"
  8289. #: flatcamTools/ToolCutOut.py:53
  8290. msgid "Obj Type:"
  8291. msgstr "Obj Type:"
  8292. #: flatcamTools/ToolCutOut.py:55
  8293. msgid ""
  8294. "Specify the type of object to be cutout.\n"
  8295. "It can be of type: Gerber or Geometry.\n"
  8296. "What is selected here will dictate the kind\n"
  8297. "of objects that will populate the 'Object' combobox."
  8298. msgstr ""
  8299. "Specify the type of object to be cutout.\n"
  8300. "It can be of type: Gerber or Geometry.\n"
  8301. "What is selected here will dictate the kind\n"
  8302. "of objects that will populate the 'Object' combobox."
  8303. #: flatcamTools/ToolCutOut.py:69 flatcamTools/ToolPanelize.py:71
  8304. msgid "Object:"
  8305. msgstr "Object:"
  8306. #: flatcamTools/ToolCutOut.py:71
  8307. msgid "Object to be cutout. "
  8308. msgstr "Object to be cutout. "
  8309. #: flatcamTools/ToolCutOut.py:79
  8310. msgid ""
  8311. "Diameter of the tool used to cutout\n"
  8312. "the PCB shape out of the surrounding material."
  8313. msgstr ""
  8314. "Diameter of the tool used to cutout\n"
  8315. "the PCB shape out of the surrounding material."
  8316. #: flatcamTools/ToolCutOut.py:88
  8317. msgid ""
  8318. "Margin over bounds. A positive value here\n"
  8319. "will make the cutout of the PCB further from\n"
  8320. "the actual PCB border"
  8321. msgstr ""
  8322. "Margin over bounds. A positive value here\n"
  8323. "will make the cutout of the PCB further from\n"
  8324. "the actual PCB border"
  8325. #: flatcamTools/ToolCutOut.py:98
  8326. msgid ""
  8327. "The size of the bridge gaps in the cutout\n"
  8328. "used to keep the board connected to\n"
  8329. "the surrounding material (the one \n"
  8330. "from which the PCB is cutout)."
  8331. msgstr ""
  8332. "The size of the bridge gaps in the cutout\n"
  8333. "used to keep the board connected to\n"
  8334. "the surrounding material (the one \n"
  8335. "from which the PCB is cutout)."
  8336. #: flatcamTools/ToolCutOut.py:117
  8337. msgid ""
  8338. "Create a convex shape surrounding the entire PCB.\n"
  8339. "Used only if the source object type is Gerber."
  8340. msgstr ""
  8341. "Create a convex shape surrounding the entire PCB.\n"
  8342. "Used only if the source object type is Gerber."
  8343. #: flatcamTools/ToolCutOut.py:123
  8344. msgid "A. Automatic Bridge Gaps"
  8345. msgstr "A. Automatic Bridge Gaps"
  8346. #: flatcamTools/ToolCutOut.py:125
  8347. msgid "This section handle creation of automatic bridge gaps."
  8348. msgstr "This section handle creation of automatic bridge gaps."
  8349. #: flatcamTools/ToolCutOut.py:136
  8350. msgid ""
  8351. "Number of gaps used for the Automatic cutout.\n"
  8352. "There can be maximum 8 bridges/gaps.\n"
  8353. "The choices are:\n"
  8354. "- lr - left + right\n"
  8355. "- tb - top + bottom\n"
  8356. "- 4 - left + right +top + bottom\n"
  8357. "- 2lr - 2*left + 2*right\n"
  8358. "- 2tb - 2*top + 2*bottom\n"
  8359. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  8360. msgstr ""
  8361. "Number of gaps used for the Automatic cutout.\n"
  8362. "There can be maximum 8 bridges/gaps.\n"
  8363. "The choices are:\n"
  8364. "- lr - left + right\n"
  8365. "- tb - top + bottom\n"
  8366. "- 4 - left + right +top + bottom\n"
  8367. "- 2lr - 2*left + 2*right\n"
  8368. "- 2tb - 2*top + 2*bottom\n"
  8369. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  8370. #: flatcamTools/ToolCutOut.py:159
  8371. msgid "FreeForm:"
  8372. msgstr "FreeForm:"
  8373. #: flatcamTools/ToolCutOut.py:161
  8374. msgid ""
  8375. "The cutout shape can be of ny shape.\n"
  8376. "Useful when the PCB has a non-rectangular shape."
  8377. msgstr ""
  8378. "The cutout shape can be of ny shape.\n"
  8379. "Useful when the PCB has a non-rectangular shape."
  8380. #: flatcamTools/ToolCutOut.py:170
  8381. msgid ""
  8382. "Cutout the selected object.\n"
  8383. "The cutout shape can be of any shape.\n"
  8384. "Useful when the PCB has a non-rectangular shape."
  8385. msgstr ""
  8386. "Cutout the selected object.\n"
  8387. "The cutout shape can be of any shape.\n"
  8388. "Useful when the PCB has a non-rectangular shape."
  8389. #: flatcamTools/ToolCutOut.py:179
  8390. msgid "Rectangular:"
  8391. msgstr "Rectangular:"
  8392. #: flatcamTools/ToolCutOut.py:181
  8393. msgid ""
  8394. "The resulting cutout shape is\n"
  8395. "always a rectangle shape and it will be\n"
  8396. "the bounding box of the Object."
  8397. msgstr ""
  8398. "The resulting cutout shape is\n"
  8399. "always a rectangle shape and it will be\n"
  8400. "the bounding box of the Object."
  8401. #: flatcamTools/ToolCutOut.py:190
  8402. msgid ""
  8403. "Cutout the selected object.\n"
  8404. "The resulting cutout shape is\n"
  8405. "always a rectangle shape and it will be\n"
  8406. "the bounding box of the Object."
  8407. msgstr ""
  8408. "Cutout the selected object.\n"
  8409. "The resulting cutout shape is\n"
  8410. "always a rectangle shape and it will be\n"
  8411. "the bounding box of the Object."
  8412. #: flatcamTools/ToolCutOut.py:198
  8413. msgid "B. Manual Bridge Gaps"
  8414. msgstr "B. Manual Bridge Gaps"
  8415. #: flatcamTools/ToolCutOut.py:200
  8416. msgid ""
  8417. "This section handle creation of manual bridge gaps.\n"
  8418. "This is done by mouse clicking on the perimeter of the\n"
  8419. "Geometry object that is used as a cutout object. "
  8420. msgstr ""
  8421. "This section handle creation of manual bridge gaps.\n"
  8422. "This is done by mouse clicking on the perimeter of the\n"
  8423. "Geometry object that is used as a cutout object. "
  8424. #: flatcamTools/ToolCutOut.py:216
  8425. msgid "Geo Obj:"
  8426. msgstr "Geo Obj:"
  8427. #: flatcamTools/ToolCutOut.py:218
  8428. msgid "Geometry object used to create the manual cutout."
  8429. msgstr "Geometry object used to create the manual cutout."
  8430. #: flatcamTools/ToolCutOut.py:229
  8431. msgid "Manual Geo:"
  8432. msgstr "Manual Geo:"
  8433. #: flatcamTools/ToolCutOut.py:231 flatcamTools/ToolCutOut.py:241
  8434. msgid ""
  8435. "If the object to be cutout is a Gerber\n"
  8436. "first create a Geometry that surrounds it,\n"
  8437. "to be used as the cutout, if one doesn't exist yet.\n"
  8438. "Select the source Gerber file in the top object combobox."
  8439. msgstr ""
  8440. "If the object to be cutout is a Gerber\n"
  8441. "first create a Geometry that surrounds it,\n"
  8442. "to be used as the cutout, if one doesn't exist yet.\n"
  8443. "Select the source Gerber file in the top object combobox."
  8444. #: flatcamTools/ToolCutOut.py:251
  8445. msgid "Manual Add Bridge Gaps:"
  8446. msgstr "Manual Add Bridge Gaps:"
  8447. #: flatcamTools/ToolCutOut.py:253
  8448. msgid ""
  8449. "Use the left mouse button (LMB) click\n"
  8450. "to create a bridge gap to separate the PCB from\n"
  8451. "the surrounding material."
  8452. msgstr ""
  8453. "Use the left mouse button (LMB) click\n"
  8454. "to create a bridge gap to separate the PCB from\n"
  8455. "the surrounding material."
  8456. #: flatcamTools/ToolCutOut.py:260
  8457. msgid "Generate Gap"
  8458. msgstr "Generate Gap"
  8459. #: flatcamTools/ToolCutOut.py:262
  8460. msgid ""
  8461. "Use the left mouse button (LMB) click\n"
  8462. "to create a bridge gap to separate the PCB from\n"
  8463. "the surrounding material.\n"
  8464. "The LMB click has to be done on the perimeter of\n"
  8465. "the Geometry object used as a cutout geometry."
  8466. msgstr ""
  8467. "Use the left mouse button (LMB) click\n"
  8468. "to create a bridge gap to separate the PCB from\n"
  8469. "the surrounding material.\n"
  8470. "The LMB click has to be done on the perimeter of\n"
  8471. "the Geometry object used as a cutout geometry."
  8472. #: flatcamTools/ToolCutOut.py:341 flatcamTools/ToolCutOut.py:505
  8473. #: flatcamTools/ToolNonCopperClear.py:666 flatcamTools/ToolPaint.py:764
  8474. #: flatcamTools/ToolPanelize.py:352 flatcamTools/ToolPanelize.py:366
  8475. #: flatcamTools/ToolSub.py:237 flatcamTools/ToolSub.py:249
  8476. #: flatcamTools/ToolSub.py:428 flatcamTools/ToolSub.py:440
  8477. #, python-format
  8478. msgid "[ERROR_NOTCL] Could not retrieve object: %s"
  8479. msgstr "[ERROR_NOTCL] Could not retrieve object: %s"
  8480. #: flatcamTools/ToolCutOut.py:345
  8481. msgid ""
  8482. "[ERROR_NOTCL] There is no object selected for Cutout.\n"
  8483. "Select one and try again."
  8484. msgstr ""
  8485. "[ERROR_NOTCL] There is no object selected for Cutout.\n"
  8486. "Select one and try again."
  8487. #: flatcamTools/ToolCutOut.py:360
  8488. msgid ""
  8489. "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  8490. "number."
  8491. msgstr ""
  8492. "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  8493. "number."
  8494. #: flatcamTools/ToolCutOut.py:370 flatcamTools/ToolCutOut.py:533
  8495. #: flatcamTools/ToolCutOut.py:777
  8496. msgid ""
  8497. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  8498. msgstr ""
  8499. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  8500. #: flatcamTools/ToolCutOut.py:381 flatcamTools/ToolCutOut.py:544
  8501. #: flatcamTools/ToolCutOut.py:672
  8502. msgid ""
  8503. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  8504. msgstr ""
  8505. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  8506. #: flatcamTools/ToolCutOut.py:388 flatcamTools/ToolCutOut.py:551
  8507. msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  8508. msgstr "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  8509. #: flatcamTools/ToolCutOut.py:392 flatcamTools/ToolCutOut.py:555
  8510. msgid ""
  8511. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  8512. "or 8. Fill in a correct value and retry. "
  8513. msgstr ""
  8514. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  8515. "or 8. Fill in a correct value and retry. "
  8516. #: flatcamTools/ToolCutOut.py:397 flatcamTools/ToolCutOut.py:560
  8517. msgid ""
  8518. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  8519. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  8520. "Geometry,\n"
  8521. "and after that perform Cutout."
  8522. msgstr ""
  8523. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  8524. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  8525. "Geometry,\n"
  8526. "and after that perform Cutout."
  8527. #: flatcamTools/ToolCutOut.py:489 flatcamTools/ToolCutOut.py:642
  8528. msgid "[success] Any form CutOut operation finished."
  8529. msgstr "[success] Any form CutOut operation finished."
  8530. #: flatcamTools/ToolCutOut.py:509 flatcamTools/ToolPaint.py:768
  8531. #: flatcamTools/ToolPanelize.py:358
  8532. #, python-format
  8533. msgid "[ERROR_NOTCL] Object not found: %s"
  8534. msgstr "[ERROR_NOTCL] Object not found: %s"
  8535. #: flatcamTools/ToolCutOut.py:523 flatcamTools/ToolCutOut.py:662
  8536. #: flatcamTools/ToolCutOut.py:767
  8537. msgid ""
  8538. "[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  8539. "number."
  8540. msgstr ""
  8541. "[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  8542. "number."
  8543. #: flatcamTools/ToolCutOut.py:647
  8544. msgid ""
  8545. "Click on the selected geometry object perimeter to create a bridge gap ..."
  8546. msgstr ""
  8547. "Click on the selected geometry object perimeter to create a bridge gap ..."
  8548. #: flatcamTools/ToolCutOut.py:688
  8549. msgid "Making manual bridge gap..."
  8550. msgstr "Making manual bridge gap..."
  8551. #: flatcamTools/ToolCutOut.py:711
  8552. #, python-format
  8553. msgid "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
  8554. msgstr "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
  8555. #: flatcamTools/ToolCutOut.py:715
  8556. #, python-format
  8557. msgid "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
  8558. msgstr "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
  8559. #: flatcamTools/ToolCutOut.py:725
  8560. msgid "[success] Added manual Bridge Gap."
  8561. msgstr "[success] Added manual Bridge Gap."
  8562. #: flatcamTools/ToolCutOut.py:742
  8563. #, python-format
  8564. msgid "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
  8565. msgstr "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
  8566. #: flatcamTools/ToolCutOut.py:746
  8567. msgid ""
  8568. "[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
  8569. "Select one and try again."
  8570. msgstr ""
  8571. "[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
  8572. "Select one and try again."
  8573. #: flatcamTools/ToolCutOut.py:751
  8574. msgid ""
  8575. "[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
  8576. "Select a Gerber file and try again."
  8577. msgstr ""
  8578. "[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
  8579. "Select a Gerber file and try again."
  8580. #: flatcamTools/ToolDblSided.py:18
  8581. msgid "2-Sided PCB"
  8582. msgstr "2-Sided PCB"
  8583. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  8584. #: flatcamTools/ToolDblSided.py:100
  8585. msgid "Mirror"
  8586. msgstr "Mirror"
  8587. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  8588. #: flatcamTools/ToolDblSided.py:102
  8589. msgid ""
  8590. "Mirrors (flips) the specified object around \n"
  8591. "the specified axis. Does not create a new \n"
  8592. "object, but modifies it."
  8593. msgstr ""
  8594. "Mirrors (flips) the specified object around \n"
  8595. "the specified axis. Does not create a new \n"
  8596. "object, but modifies it."
  8597. #: flatcamTools/ToolDblSided.py:73
  8598. msgid "Excellon Object to be mirrored."
  8599. msgstr "Excellon Object to be mirrored."
  8600. #: flatcamTools/ToolDblSided.py:97
  8601. msgid "Geometry Obj to be mirrored."
  8602. msgstr "Geometry Obj to be mirrored."
  8603. #: flatcamTools/ToolDblSided.py:135
  8604. msgid ""
  8605. "The axis should pass through a <b>point</b> or cut\n"
  8606. " a specified <b>box</b> (in a FlatCAM object) through \n"
  8607. "the center."
  8608. msgstr ""
  8609. "The axis should pass through a <b>point</b> or cut\n"
  8610. " a specified <b>box</b> (in a FlatCAM object) through \n"
  8611. "the center."
  8612. #: flatcamTools/ToolDblSided.py:152
  8613. msgid "Point/Box Reference:"
  8614. msgstr "Point/Box Reference:"
  8615. #: flatcamTools/ToolDblSided.py:154
  8616. msgid ""
  8617. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  8618. "the mirroring axis passes.\n"
  8619. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  8620. "Geo).\n"
  8621. "Through the center of this object pass the mirroring axis selected above."
  8622. msgstr ""
  8623. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  8624. "the mirroring axis passes.\n"
  8625. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  8626. "Geo).\n"
  8627. "Through the center of this object pass the mirroring axis selected above."
  8628. #: flatcamTools/ToolDblSided.py:162
  8629. msgid ""
  8630. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  8631. "axis \n"
  8632. " selected in 'MIRROR AXIS' pass.\n"
  8633. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  8634. "and left mouse button click on canvas or you can enter the coords manually."
  8635. msgstr ""
  8636. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  8637. "axis \n"
  8638. " selected in 'MIRROR AXIS' pass.\n"
  8639. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  8640. "and left mouse button click on canvas or you can enter the coords manually."
  8641. #: flatcamTools/ToolDblSided.py:182
  8642. msgid "Gerber Reference Box Object"
  8643. msgstr "Gerber Reference Box Object"
  8644. #: flatcamTools/ToolDblSided.py:183
  8645. msgid "Excellon Reference Box Object"
  8646. msgstr "Excellon Reference Box Object"
  8647. #: flatcamTools/ToolDblSided.py:184
  8648. msgid "Geometry Reference Box Object"
  8649. msgstr "Geometry Reference Box Object"
  8650. #: flatcamTools/ToolDblSided.py:193
  8651. msgid "Alignment Drill Coordinates:"
  8652. msgstr "Alignment Drill Coordinates:"
  8653. #: flatcamTools/ToolDblSided.py:195
  8654. msgid ""
  8655. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  8656. "each set of (x, y) coordinates\n"
  8657. "entered here, a pair of drills will be created:\n"
  8658. "\n"
  8659. "- one drill at the coordinates from the field\n"
  8660. "- one drill in mirror position over the axis selected above in the 'Mirror "
  8661. "Axis'."
  8662. msgstr ""
  8663. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  8664. "each set of (x, y) coordinates\n"
  8665. "entered here, a pair of drills will be created:\n"
  8666. "\n"
  8667. "- one drill at the coordinates from the field\n"
  8668. "- one drill in mirror position over the axis selected above in the 'Mirror "
  8669. "Axis'."
  8670. #: flatcamTools/ToolDblSided.py:210
  8671. msgid ""
  8672. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  8673. "on one side of the mirror axis.\n"
  8674. "\n"
  8675. "The coordinates set can be obtained:\n"
  8676. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  8677. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  8678. "field.\n"
  8679. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  8680. "field and click Paste.\n"
  8681. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  8682. msgstr ""
  8683. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  8684. "on one side of the mirror axis.\n"
  8685. "\n"
  8686. "The coordinates set can be obtained:\n"
  8687. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  8688. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  8689. "field.\n"
  8690. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  8691. "field and click Paste.\n"
  8692. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  8693. #: flatcamTools/ToolDblSided.py:224
  8694. msgid "Alignment Drill Diameter"
  8695. msgstr "Alignment Drill Diameter"
  8696. #: flatcamTools/ToolDblSided.py:247
  8697. msgid "Create Excellon Object"
  8698. msgstr "Create Excellon Object"
  8699. #: flatcamTools/ToolDblSided.py:249
  8700. msgid ""
  8701. "Creates an Excellon Object containing the\n"
  8702. "specified alignment holes and their mirror\n"
  8703. "images."
  8704. msgstr ""
  8705. "Creates an Excellon Object containing the\n"
  8706. "specified alignment holes and their mirror\n"
  8707. "images."
  8708. #: flatcamTools/ToolDblSided.py:255
  8709. msgid "Reset"
  8710. msgstr "Reset"
  8711. #: flatcamTools/ToolDblSided.py:257
  8712. msgid "Resets all the fields."
  8713. msgstr "Resets all the fields."
  8714. #: flatcamTools/ToolDblSided.py:302
  8715. msgid "2-Sided Tool"
  8716. msgstr "2-Sided Tool"
  8717. #: flatcamTools/ToolDblSided.py:327
  8718. msgid ""
  8719. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  8720. "missing. Add them and retry."
  8721. msgstr ""
  8722. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  8723. "missing. Add them and retry."
  8724. #: flatcamTools/ToolDblSided.py:346
  8725. msgid ""
  8726. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  8727. msgstr ""
  8728. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  8729. #: flatcamTools/ToolDblSided.py:368
  8730. msgid ""
  8731. "[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and "
  8732. "retry."
  8733. msgstr ""
  8734. "[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and "
  8735. "retry."
  8736. #: flatcamTools/ToolDblSided.py:375
  8737. msgid ""
  8738. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  8739. "and retry."
  8740. msgstr ""
  8741. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  8742. "and retry."
  8743. #: flatcamTools/ToolDblSided.py:397
  8744. msgid "[success] Excellon object with alignment drills created..."
  8745. msgstr "[success] Excellon object with alignment drills created..."
  8746. #: flatcamTools/ToolDblSided.py:406
  8747. msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
  8748. msgstr "[WARNING_NOTCL] There is no Gerber object loaded ..."
  8749. #: flatcamTools/ToolDblSided.py:410 flatcamTools/ToolDblSided.py:453
  8750. #: flatcamTools/ToolDblSided.py:497
  8751. msgid ""
  8752. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  8753. msgstr ""
  8754. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  8755. #: flatcamTools/ToolDblSided.py:420
  8756. msgid ""
  8757. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  8758. "mirroring reference."
  8759. msgstr ""
  8760. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  8761. "mirroring reference."
  8762. #: flatcamTools/ToolDblSided.py:430 flatcamTools/ToolDblSided.py:474
  8763. #: flatcamTools/ToolDblSided.py:511
  8764. msgid "[WARNING_NOTCL] There is no Box object loaded ..."
  8765. msgstr "[WARNING_NOTCL] There is no Box object loaded ..."
  8766. #: flatcamTools/ToolDblSided.py:440
  8767. #, python-format
  8768. msgid "[success] Gerber %s was mirrored..."
  8769. msgstr "[success] Gerber %s was mirrored..."
  8770. #: flatcamTools/ToolDblSided.py:449
  8771. msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
  8772. msgstr "[WARNING_NOTCL] There is no Excellon object loaded ..."
  8773. #: flatcamTools/ToolDblSided.py:464
  8774. msgid ""
  8775. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  8776. "coords and try again ..."
  8777. msgstr ""
  8778. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  8779. "coords and try again ..."
  8780. #: flatcamTools/ToolDblSided.py:484
  8781. #, python-format
  8782. msgid "[success] Excellon %s was mirrored..."
  8783. msgstr "[success] Excellon %s was mirrored..."
  8784. #: flatcamTools/ToolDblSided.py:493
  8785. msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
  8786. msgstr "[WARNING_NOTCL] There is no Geometry object loaded ..."
  8787. #: flatcamTools/ToolDblSided.py:521
  8788. #, python-format
  8789. msgid "[success] Geometry %s was mirrored..."
  8790. msgstr "[success] Geometry %s was mirrored..."
  8791. #: flatcamTools/ToolFilm.py:25
  8792. msgid "Film PCB"
  8793. msgstr "Film PCB"
  8794. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  8795. #: flatcamTools/ToolPanelize.py:56
  8796. msgid "Object Type:"
  8797. msgstr "Object Type:"
  8798. #: flatcamTools/ToolFilm.py:58
  8799. msgid ""
  8800. "Specify the type of object for which to create the film.\n"
  8801. "The object can be of type: Gerber or Geometry.\n"
  8802. "The selection here decide the type of objects that will be\n"
  8803. "in the Film Object combobox."
  8804. msgstr ""
  8805. "Specify the type of object for which to create the film.\n"
  8806. "The object can be of type: Gerber or Geometry.\n"
  8807. "The selection here decide the type of objects that will be\n"
  8808. "in the Film Object combobox."
  8809. #: flatcamTools/ToolFilm.py:71
  8810. msgid "Film Object:"
  8811. msgstr "Film Object:"
  8812. #: flatcamTools/ToolFilm.py:73
  8813. msgid "Object for which to create the film."
  8814. msgstr "Object for which to create the film."
  8815. #: flatcamTools/ToolFilm.py:89 flatcamTools/ToolPanelize.py:111
  8816. msgid "Box Type:"
  8817. msgstr "Box Type:"
  8818. #: flatcamTools/ToolFilm.py:91
  8819. msgid ""
  8820. "Specify the type of object to be used as an container for\n"
  8821. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  8822. "the type of objects that will be\n"
  8823. "in the Box Object combobox."
  8824. msgstr ""
  8825. "Specify the type of object to be used as an container for\n"
  8826. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  8827. "the type of objects that will be\n"
  8828. "in the Box Object combobox."
  8829. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:126
  8830. msgid "Box Object:"
  8831. msgstr "Box Object:"
  8832. #: flatcamTools/ToolFilm.py:106
  8833. msgid ""
  8834. "The actual object that is used a container for the\n"
  8835. " selected object for which we create the film.\n"
  8836. "Usually it is the PCB outline but it can be also the\n"
  8837. "same object for which the film is created."
  8838. msgstr ""
  8839. "The actual object that is used a container for the\n"
  8840. " selected object for which we create the film.\n"
  8841. "Usually it is the PCB outline but it can be also the\n"
  8842. "same object for which the film is created."
  8843. #: flatcamTools/ToolFilm.py:157
  8844. msgid "Save Film"
  8845. msgstr "Save Film"
  8846. #: flatcamTools/ToolFilm.py:159
  8847. msgid ""
  8848. "Create a Film for the selected object, within\n"
  8849. "the specified box. Does not create a new \n"
  8850. " FlatCAM object, but directly save it in SVG format\n"
  8851. "which can be opened with Inkscape."
  8852. msgstr ""
  8853. "Create a Film for the selected object, within\n"
  8854. "the specified box. Does not create a new \n"
  8855. " FlatCAM object, but directly save it in SVG format\n"
  8856. "which can be opened with Inkscape."
  8857. #: flatcamTools/ToolFilm.py:225
  8858. msgid ""
  8859. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  8860. msgstr ""
  8861. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  8862. #: flatcamTools/ToolFilm.py:231
  8863. msgid ""
  8864. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  8865. msgstr ""
  8866. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  8867. #: flatcamTools/ToolFilm.py:255
  8868. msgid "Generating Film ..."
  8869. msgstr "Generating Film ..."
  8870. #: flatcamTools/ToolFilm.py:260 flatcamTools/ToolFilm.py:264
  8871. msgid "Export SVG positive"
  8872. msgstr "Export SVG positive"
  8873. #: flatcamTools/ToolFilm.py:269
  8874. msgid "[WARNING_NOTCL] Export SVG positive cancelled."
  8875. msgstr "[WARNING_NOTCL] Export SVG positive cancelled."
  8876. #: flatcamTools/ToolFilm.py:276 flatcamTools/ToolFilm.py:280
  8877. msgid "Export SVG negative"
  8878. msgstr "Export SVG negative"
  8879. #: flatcamTools/ToolFilm.py:285
  8880. msgid "[WARNING_NOTCL] Export SVG negative cancelled."
  8881. msgstr "[WARNING_NOTCL] Export SVG negative cancelled."
  8882. #: flatcamTools/ToolImage.py:25
  8883. msgid "Image as Object"
  8884. msgstr "Image as Object"
  8885. #: flatcamTools/ToolImage.py:31
  8886. msgid "Image to PCB"
  8887. msgstr "Image to PCB"
  8888. #: flatcamTools/ToolImage.py:55
  8889. msgid ""
  8890. "Specify the type of object to create from the image.\n"
  8891. "It can be of type: Gerber or Geometry."
  8892. msgstr ""
  8893. "Specify the type of object to create from the image.\n"
  8894. "It can be of type: Gerber or Geometry."
  8895. #: flatcamTools/ToolImage.py:63
  8896. msgid "DPI value:"
  8897. msgstr "DPI value:"
  8898. #: flatcamTools/ToolImage.py:65
  8899. msgid "Specify a DPI value for the image."
  8900. msgstr "Specify a DPI value for the image."
  8901. #: flatcamTools/ToolImage.py:72
  8902. msgid "Level of detail"
  8903. msgstr "Level of detail"
  8904. #: flatcamTools/ToolImage.py:81
  8905. msgid "Image type"
  8906. msgstr "Image type"
  8907. #: flatcamTools/ToolImage.py:83
  8908. msgid ""
  8909. "Choose a method for the image interpretation.\n"
  8910. "B/W means a black & white image. Color means a colored image."
  8911. msgstr ""
  8912. "Choose a method for the image interpretation.\n"
  8913. "B/W means a black & white image. Color means a colored image."
  8914. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  8915. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  8916. msgid "Mask value"
  8917. msgstr "Mask value"
  8918. #: flatcamTools/ToolImage.py:92
  8919. msgid ""
  8920. "Mask for monochrome image.\n"
  8921. "Takes values between [0 ... 255].\n"
  8922. "Decides the level of details to include\n"
  8923. "in the resulting geometry.\n"
  8924. "0 means no detail and 255 means everything \n"
  8925. "(which is totally black)."
  8926. msgstr ""
  8927. "Mask for monochrome image.\n"
  8928. "Takes values between [0 ... 255].\n"
  8929. "Decides the level of details to include\n"
  8930. "in the resulting geometry.\n"
  8931. "0 means no detail and 255 means everything \n"
  8932. "(which is totally black)."
  8933. #: flatcamTools/ToolImage.py:105
  8934. msgid ""
  8935. "Mask for RED color.\n"
  8936. "Takes values between [0 ... 255].\n"
  8937. "Decides the level of details to include\n"
  8938. "in the resulting geometry."
  8939. msgstr ""
  8940. "Mask for RED color.\n"
  8941. "Takes values between [0 ... 255].\n"
  8942. "Decides the level of details to include\n"
  8943. "in the resulting geometry."
  8944. #: flatcamTools/ToolImage.py:116
  8945. msgid ""
  8946. "Mask for GREEN color.\n"
  8947. "Takes values between [0 ... 255].\n"
  8948. "Decides the level of details to include\n"
  8949. "in the resulting geometry."
  8950. msgstr ""
  8951. "Mask for GREEN color.\n"
  8952. "Takes values between [0 ... 255].\n"
  8953. "Decides the level of details to include\n"
  8954. "in the resulting geometry."
  8955. #: flatcamTools/ToolImage.py:127
  8956. msgid ""
  8957. "Mask for BLUE color.\n"
  8958. "Takes values between [0 ... 255].\n"
  8959. "Decides the level of details to include\n"
  8960. "in the resulting geometry."
  8961. msgstr ""
  8962. "Mask for BLUE color.\n"
  8963. "Takes values between [0 ... 255].\n"
  8964. "Decides the level of details to include\n"
  8965. "in the resulting geometry."
  8966. #: flatcamTools/ToolImage.py:139
  8967. msgid "Import image"
  8968. msgstr "Import image"
  8969. #: flatcamTools/ToolImage.py:141
  8970. msgid "Open a image of raster type and then import it in FlatCAM."
  8971. msgstr "Open a image of raster type and then import it in FlatCAM."
  8972. #: flatcamTools/ToolImage.py:170
  8973. msgid "Image Tool"
  8974. msgstr "Image Tool"
  8975. #: flatcamTools/ToolImage.py:200 flatcamTools/ToolImage.py:203
  8976. msgid "Import IMAGE"
  8977. msgstr "Import IMAGE"
  8978. #: flatcamTools/ToolMeasurement.py:26
  8979. msgid "Measurement"
  8980. msgstr "Measurement"
  8981. #: flatcamTools/ToolMeasurement.py:44
  8982. msgid "Units:"
  8983. msgstr "Units:"
  8984. #: flatcamTools/ToolMeasurement.py:45
  8985. msgid "Those are the units in which the distance is measured."
  8986. msgstr "Those are the units in which the distance is measured."
  8987. #: flatcamTools/ToolMeasurement.py:49
  8988. msgid "Start"
  8989. msgstr "Start"
  8990. #: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:52
  8991. msgid "Coords"
  8992. msgstr "Coords"
  8993. #: flatcamTools/ToolMeasurement.py:50 flatcamTools/ToolMeasurement.py:66
  8994. msgid "This is measuring Start point coordinates."
  8995. msgstr "This is measuring Start point coordinates."
  8996. #: flatcamTools/ToolMeasurement.py:52
  8997. msgid "Stop"
  8998. msgstr "Stop"
  8999. #: flatcamTools/ToolMeasurement.py:53 flatcamTools/ToolMeasurement.py:70
  9000. msgid "This is the measuring Stop point coordinates."
  9001. msgstr "This is the measuring Stop point coordinates."
  9002. #: flatcamTools/ToolMeasurement.py:55
  9003. msgid "Dx:"
  9004. msgstr "Dx:"
  9005. #: flatcamTools/ToolMeasurement.py:56 flatcamTools/ToolMeasurement.py:74
  9006. msgid "This is the distance measured over the X axis."
  9007. msgstr "This is the distance measured over the X axis."
  9008. #: flatcamTools/ToolMeasurement.py:58
  9009. msgid "Dy:"
  9010. msgstr "Dy:"
  9011. #: flatcamTools/ToolMeasurement.py:59 flatcamTools/ToolMeasurement.py:79
  9012. msgid "This is the distance measured over the Y axis."
  9013. msgstr "This is the distance measured over the Y axis."
  9014. #: flatcamTools/ToolMeasurement.py:61
  9015. msgid "DISTANCE"
  9016. msgstr "DISTANCE"
  9017. #: flatcamTools/ToolMeasurement.py:62 flatcamTools/ToolMeasurement.py:84
  9018. msgid "This is the point to point Euclidian distance."
  9019. msgstr "This is the point to point Euclidian distance."
  9020. #: flatcamTools/ToolMeasurement.py:86
  9021. msgid "Measure"
  9022. msgstr "Measure"
  9023. #: flatcamTools/ToolMeasurement.py:132
  9024. msgid "Meas. Tool"
  9025. msgstr "Meas. Tool"
  9026. #: flatcamTools/ToolMeasurement.py:177
  9027. msgid "MEASURING: Click on the Start point ..."
  9028. msgstr "MEASURING: Click on the Start point ..."
  9029. #: flatcamTools/ToolMeasurement.py:270
  9030. msgid "MEASURING: Click on the Destination point ..."
  9031. msgstr "MEASURING: Click on the Destination point ..."
  9032. #: flatcamTools/ToolMeasurement.py:278
  9033. #, python-brace-format
  9034. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  9035. msgstr "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  9036. #: flatcamTools/ToolMove.py:81
  9037. msgid "MOVE: Click on the Start point ..."
  9038. msgstr "MOVE: Click on the Start point ..."
  9039. #: flatcamTools/ToolMove.py:88
  9040. msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  9041. msgstr "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  9042. #: flatcamTools/ToolMove.py:110
  9043. msgid "MOVE: Click on the Destination point ..."
  9044. msgstr "MOVE: Click on the Destination point ..."
  9045. #: flatcamTools/ToolMove.py:128
  9046. msgid "Moving ..."
  9047. msgstr "Moving ..."
  9048. #: flatcamTools/ToolMove.py:135
  9049. msgid "[WARNING_NOTCL] No object(s) selected."
  9050. msgstr "[WARNING_NOTCL] No object(s) selected."
  9051. #: flatcamTools/ToolMove.py:158
  9052. #, python-format
  9053. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  9054. msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  9055. #: flatcamTools/ToolMove.py:164
  9056. #, python-format
  9057. msgid "[success] %s object was moved ..."
  9058. msgstr "[success] %s object was moved ..."
  9059. #: flatcamTools/ToolMove.py:174
  9060. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  9061. msgstr ""
  9062. "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  9063. #: flatcamTools/ToolMove.py:202
  9064. msgid "[WARNING_NOTCL] Move action cancelled."
  9065. msgstr "[WARNING_NOTCL] Move action cancelled."
  9066. #: flatcamTools/ToolMove.py:214
  9067. msgid "[WARNING_NOTCL] Object(s) not selected"
  9068. msgstr "[WARNING_NOTCL] Object(s) not selected"
  9069. #: flatcamTools/ToolNonCopperClear.py:26
  9070. msgid "Non-Copper Clearing"
  9071. msgstr "Non-Copper Clearing"
  9072. #: flatcamTools/ToolNonCopperClear.py:64
  9073. msgid "Gerber object to be cleared of excess copper. "
  9074. msgstr "Gerber object to be cleared of excess copper. "
  9075. #: flatcamTools/ToolNonCopperClear.py:74
  9076. msgid ""
  9077. "Tools pool from which the algorithm\n"
  9078. "will pick the ones used for copper clearing."
  9079. msgstr ""
  9080. "Tools pool from which the algorithm\n"
  9081. "will pick the ones used for copper clearing."
  9082. #: flatcamTools/ToolNonCopperClear.py:89
  9083. msgid ""
  9084. "This is the Tool Number.\n"
  9085. "Non copper clearing will start with the tool with the biggest \n"
  9086. "diameter, continuing until there are no more tools.\n"
  9087. "Only tools that create NCC clearing geometry will still be present\n"
  9088. "in the resulting geometry. This is because with some tools\n"
  9089. "this function will not be able to create painting geometry."
  9090. msgstr ""
  9091. "This is the Tool Number.\n"
  9092. "Non copper clearing will start with the tool with the biggest \n"
  9093. "diameter, continuing until there are no more tools.\n"
  9094. "Only tools that create NCC clearing geometry will still be present\n"
  9095. "in the resulting geometry. This is because with some tools\n"
  9096. "this function will not be able to create painting geometry."
  9097. #: flatcamTools/ToolNonCopperClear.py:101 flatcamTools/ToolPaint.py:98
  9098. msgid ""
  9099. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  9100. "informative only. Being circular, <BR>the cut width in material is exactly "
  9101. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  9102. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  9103. "parameter in the resulting geometry UI form and enable two additional UI "
  9104. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  9105. "those two values will adjust the Z-Cut parameter such as the cut width into "
  9106. "material will be equal with the value in the Tool Diameter column of this "
  9107. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  9108. "the Operation Type in the resulting geometry as Isolation."
  9109. msgstr ""
  9110. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  9111. "informative only. Being circular, <BR>the cut width in material is exactly "
  9112. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  9113. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  9114. "parameter in the resulting geometry UI form and enable two additional UI "
  9115. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  9116. "those two values will adjust the Z-Cut parameter such as the cut width into "
  9117. "material will be equal with the value in the Tool Diameter column of this "
  9118. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  9119. "the Operation Type in the resulting geometry as Isolation."
  9120. #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:117
  9121. msgid "Tool Dia"
  9122. msgstr "Tool Dia"
  9123. #: flatcamTools/ToolNonCopperClear.py:122
  9124. msgid "Diameter for the new tool to add in the Tool Table"
  9125. msgstr "Diameter for the new tool to add in the Tool Table"
  9126. #: flatcamTools/ToolNonCopperClear.py:148 flatcamTools/ToolPaint.py:145
  9127. #: flatcamTools/ToolSolderPaste.py:123
  9128. msgid ""
  9129. "Delete a selection of tools in the Tool Table\n"
  9130. "by first selecting a row(s) in the Tool Table."
  9131. msgstr ""
  9132. "Delete a selection of tools in the Tool Table\n"
  9133. "by first selecting a row(s) in the Tool Table."
  9134. #: flatcamTools/ToolNonCopperClear.py:199
  9135. msgid "Standard"
  9136. msgstr "Standard"
  9137. #: flatcamTools/ToolNonCopperClear.py:200
  9138. msgid "Seed-based"
  9139. msgstr "Seed-based"
  9140. #: flatcamTools/ToolNonCopperClear.py:201
  9141. msgid "Straight lines"
  9142. msgstr "Straight lines"
  9143. #: flatcamTools/ToolNonCopperClear.py:226
  9144. msgid ""
  9145. "If checked, use 'rest machining'.\n"
  9146. "Basically it will clear copper outside PCB features,\n"
  9147. "using the biggest tool and continue with the next tools,\n"
  9148. "from bigger to smaller, to clear areas of copper that\n"
  9149. "could not be cleared by previous tool, until there is\n"
  9150. "no more copper to clear or there are no more tools.\n"
  9151. "If not checked, use the standard algorithm."
  9152. msgstr ""
  9153. "If checked, use 'rest machining'.\n"
  9154. "Basically it will clear copper outside PCB features,\n"
  9155. "using the biggest tool and continue with the next tools,\n"
  9156. "from bigger to smaller, to clear areas of copper that\n"
  9157. "could not be cleared by previous tool, until there is\n"
  9158. "no more copper to clear or there are no more tools.\n"
  9159. "If not checked, use the standard algorithm."
  9160. #: flatcamTools/ToolNonCopperClear.py:238
  9161. msgid "Generate Geometry"
  9162. msgstr "Generate Geometry"
  9163. #: flatcamTools/ToolNonCopperClear.py:485 flatcamTools/ToolPaint.py:544
  9164. #: flatcamTools/ToolSolderPaste.py:761
  9165. msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  9166. msgstr "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  9167. #: flatcamTools/ToolNonCopperClear.py:513 flatcamTools/ToolPaint.py:568
  9168. msgid "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
  9169. msgstr "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
  9170. #: flatcamTools/ToolNonCopperClear.py:518 flatcamTools/ToolPaint.py:573
  9171. msgid "[success] New tool added to Tool Table."
  9172. msgstr "[success] New tool added to Tool Table."
  9173. #: flatcamTools/ToolNonCopperClear.py:560 flatcamTools/ToolPaint.py:616
  9174. msgid "[success] Tool from Tool Table was edited."
  9175. msgstr "[success] Tool from Tool Table was edited."
  9176. #: flatcamTools/ToolNonCopperClear.py:571 flatcamTools/ToolPaint.py:627
  9177. #: flatcamTools/ToolSolderPaste.py:847
  9178. msgid ""
  9179. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  9180. "Table."
  9181. msgstr ""
  9182. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  9183. "Table."
  9184. #: flatcamTools/ToolNonCopperClear.py:610 flatcamTools/ToolPaint.py:724
  9185. msgid "[WARNING_NOTCL] Delete failed. Select a tool to delete."
  9186. msgstr "[WARNING_NOTCL] Delete failed. Select a tool to delete."
  9187. #: flatcamTools/ToolNonCopperClear.py:615 flatcamTools/ToolPaint.py:729
  9188. msgid "[success] Tool(s) deleted from Tool Table."
  9189. msgstr "[success] Tool(s) deleted from Tool Table."
  9190. #: flatcamTools/ToolNonCopperClear.py:633 flatcamTools/ToolPaint.py:748
  9191. msgid ""
  9192. "[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  9193. msgstr ""
  9194. "[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  9195. #: flatcamTools/ToolNonCopperClear.py:673
  9196. msgid "[ERROR_NOTCL] No Gerber file available."
  9197. msgstr "[ERROR_NOTCL] No Gerber file available."
  9198. #: flatcamTools/ToolNonCopperClear.py:711
  9199. #: flatcamTools/ToolNonCopperClear.py:833
  9200. msgid "Clearing Non-Copper areas."
  9201. msgstr "Clearing Non-Copper areas."
  9202. #: flatcamTools/ToolNonCopperClear.py:729
  9203. #, python-format
  9204. msgid "[success] Non-Copper Clearing with ToolDia = %s started."
  9205. msgstr "[success] Non-Copper Clearing with ToolDia = %s started."
  9206. #: flatcamTools/ToolNonCopperClear.py:798
  9207. #, python-format
  9208. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  9209. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  9210. #: flatcamTools/ToolNonCopperClear.py:803
  9211. msgid "[success] NCC Tool finished."
  9212. msgstr "[success] NCC Tool finished."
  9213. #: flatcamTools/ToolNonCopperClear.py:805
  9214. msgid ""
  9215. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  9216. "cleared. Check the result."
  9217. msgstr ""
  9218. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  9219. "cleared. Check the result."
  9220. #: flatcamTools/ToolNonCopperClear.py:851
  9221. #, python-format
  9222. msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  9223. msgstr "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  9224. #: flatcamTools/ToolNonCopperClear.py:949
  9225. #, python-format
  9226. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  9227. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  9228. #: flatcamTools/ToolNonCopperClear.py:957
  9229. msgid ""
  9230. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  9231. "settings."
  9232. msgstr ""
  9233. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  9234. "settings."
  9235. #: flatcamTools/ToolPDF.py:38
  9236. msgid "PDF Import Tool"
  9237. msgstr "PDF Import Tool"
  9238. #: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156
  9239. msgid "Open PDF"
  9240. msgstr "Open PDF"
  9241. #: flatcamTools/ToolPDF.py:159
  9242. msgid "[WARNING_NOTCL] Open PDF cancelled."
  9243. msgstr "[WARNING_NOTCL] Open PDF cancelled."
  9244. #: flatcamTools/ToolPDF.py:186
  9245. msgid "Parsing PDF file ..."
  9246. msgstr "Parsing PDF file ..."
  9247. #: flatcamTools/ToolPDF.py:265 flatcamTools/ToolPDF.py:338
  9248. #, python-format
  9249. msgid "Rendering PDF layer #%d ..."
  9250. msgstr "Rendering PDF layer #%d ..."
  9251. #: flatcamTools/ToolPDF.py:269 flatcamTools/ToolPDF.py:342
  9252. msgid "[ERROR_NOTCL] Open PDF file failed."
  9253. msgstr "[ERROR_NOTCL] Open PDF file failed."
  9254. #: flatcamTools/ToolPDF.py:274 flatcamTools/ToolPDF.py:347
  9255. #, python-format
  9256. msgid "[success] Rendered: %s"
  9257. msgstr "[success] Rendered: %s"
  9258. #: flatcamTools/ToolPaint.py:24
  9259. msgid "Paint Area"
  9260. msgstr "Paint Area"
  9261. #: flatcamTools/ToolPaint.py:60
  9262. msgid "Geometry:"
  9263. msgstr "Geometry:"
  9264. #: flatcamTools/ToolPaint.py:62
  9265. msgid "Geometry object to be painted. "
  9266. msgstr "Geometry object to be painted. "
  9267. #: flatcamTools/ToolPaint.py:71
  9268. msgid ""
  9269. "Tools pool from which the algorithm\n"
  9270. "will pick the ones used for painting."
  9271. msgstr ""
  9272. "Tools pool from which the algorithm\n"
  9273. "will pick the ones used for painting."
  9274. #: flatcamTools/ToolPaint.py:86
  9275. msgid ""
  9276. "This is the Tool Number.\n"
  9277. "Painting will start with the tool with the biggest diameter,\n"
  9278. "continuing until there are no more tools.\n"
  9279. "Only tools that create painting geometry will still be present\n"
  9280. "in the resulting geometry. This is because with some tools\n"
  9281. "this function will not be able to create painting geometry."
  9282. msgstr ""
  9283. "This is the Tool Number.\n"
  9284. "Painting will start with the tool with the biggest diameter,\n"
  9285. "continuing until there are no more tools.\n"
  9286. "Only tools that create painting geometry will still be present\n"
  9287. "in the resulting geometry. This is because with some tools\n"
  9288. "this function will not be able to create painting geometry."
  9289. #: flatcamTools/ToolPaint.py:119
  9290. msgid "Diameter for the new tool."
  9291. msgstr "Diameter for the new tool."
  9292. #: flatcamTools/ToolPaint.py:224
  9293. msgid ""
  9294. "If checked, use 'rest machining'.\n"
  9295. "Basically it will clear copper outside PCB features,\n"
  9296. "using the biggest tool and continue with the next tools,\n"
  9297. "from bigger to smaller, to clear areas of copper that\n"
  9298. "could not be cleared by previous tool, until there is\n"
  9299. "no more copper to clear or there are no more tools.\n"
  9300. "\n"
  9301. "If not checked, use the standard algorithm."
  9302. msgstr ""
  9303. "If checked, use 'rest machining'.\n"
  9304. "Basically it will clear copper outside PCB features,\n"
  9305. "using the biggest tool and continue with the next tools,\n"
  9306. "from bigger to smaller, to clear areas of copper that\n"
  9307. "could not be cleared by previous tool, until there is\n"
  9308. "no more copper to clear or there are no more tools.\n"
  9309. "\n"
  9310. "If not checked, use the standard algorithm."
  9311. #: flatcamTools/ToolPaint.py:239
  9312. msgid ""
  9313. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  9314. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  9315. "polygons."
  9316. msgstr ""
  9317. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  9318. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  9319. "polygons."
  9320. #: flatcamTools/ToolPaint.py:254
  9321. msgid "Create Paint Geometry"
  9322. msgstr "Create Paint Geometry"
  9323. #: flatcamTools/ToolPaint.py:256
  9324. msgid ""
  9325. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  9326. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  9327. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  9328. "created."
  9329. msgstr ""
  9330. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  9331. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  9332. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  9333. "created."
  9334. #: flatcamTools/ToolPaint.py:733
  9335. msgid "geometry_on_paint_button"
  9336. msgstr "geometry_on_paint_button"
  9337. #: flatcamTools/ToolPaint.py:752 flatcamTools/ToolPaint.py:787
  9338. msgid "[WARNING_NOTCL] Click inside the desired polygon."
  9339. msgstr "[WARNING_NOTCL] Click inside the desired polygon."
  9340. #: flatcamTools/ToolPaint.py:774
  9341. msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  9342. msgstr "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  9343. #: flatcamTools/ToolPaint.py:796 flatcamTools/ToolPaint.py:1003
  9344. msgid "Painting polygon..."
  9345. msgstr "Painting polygon..."
  9346. #: flatcamTools/ToolPaint.py:851
  9347. msgid "[WARNING] No polygon found."
  9348. msgstr "[WARNING] No polygon found."
  9349. #: flatcamTools/ToolPaint.py:854
  9350. msgid "Painting polygon."
  9351. msgstr "Painting polygon."
  9352. #: flatcamTools/ToolPaint.py:896
  9353. msgid "[ERROR_NOTCL] Geometry could not be painted completely"
  9354. msgstr "[ERROR_NOTCL] Geometry could not be painted completely"
  9355. #: flatcamTools/ToolPaint.py:922
  9356. #, python-format
  9357. msgid ""
  9358. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  9359. "different strategy of paint\n"
  9360. "%s"
  9361. msgstr ""
  9362. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  9363. "different strategy of paint\n"
  9364. "%s"
  9365. #: flatcamTools/ToolPaint.py:964
  9366. #, python-format
  9367. msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  9368. msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  9369. #: flatcamTools/ToolPaint.py:970 flatcamTools/ToolPaint.py:1263
  9370. msgid "Polygon Paint started ..."
  9371. msgstr "Polygon Paint started ..."
  9372. #: flatcamTools/ToolPaint.py:1119 flatcamTools/ToolPaint.py:1208
  9373. #, python-format
  9374. msgid ""
  9375. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  9376. "Or a different Method of paint\n"
  9377. "%s"
  9378. msgstr ""
  9379. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  9380. "Or a different Method of paint\n"
  9381. "%s"
  9382. #: flatcamTools/ToolPaint.py:1143
  9383. msgid ""
  9384. "[ERROR] There is no Painting Geometry in the file.\n"
  9385. "Usually it means that the tool diameter is too big for the painted "
  9386. "geometry.\n"
  9387. "Change the painting parameters and try again."
  9388. msgstr ""
  9389. "[ERROR] There is no Painting Geometry in the file.\n"
  9390. "Usually it means that the tool diameter is too big for the painted "
  9391. "geometry.\n"
  9392. "Change the painting parameters and try again."
  9393. #: flatcamTools/ToolPaint.py:1152
  9394. msgid "[success] Paint All Done."
  9395. msgstr "[success] Paint All Done."
  9396. #: flatcamTools/ToolPaint.py:1238
  9397. msgid ""
  9398. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  9399. "Usually it means that the tool diameter is too big for the painted "
  9400. "geometry.\n"
  9401. "Change the painting parameters and try again."
  9402. msgstr ""
  9403. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  9404. "Usually it means that the tool diameter is too big for the painted "
  9405. "geometry.\n"
  9406. "Change the painting parameters and try again."
  9407. #: flatcamTools/ToolPaint.py:1247
  9408. msgid "[success] Paint All with Rest-Machining done."
  9409. msgstr "[success] Paint All with Rest-Machining done."
  9410. #: flatcamTools/ToolPanelize.py:25
  9411. msgid "Panelize PCB"
  9412. msgstr "Panelize PCB"
  9413. #: flatcamTools/ToolPanelize.py:58
  9414. msgid ""
  9415. "Specify the type of object to be panelized\n"
  9416. "It can be of type: Gerber, Excellon or Geometry.\n"
  9417. "The selection here decide the type of objects that will be\n"
  9418. "in the Object combobox."
  9419. msgstr ""
  9420. "Specify the type of object to be panelized\n"
  9421. "It can be of type: Gerber, Excellon or Geometry.\n"
  9422. "The selection here decide the type of objects that will be\n"
  9423. "in the Object combobox."
  9424. #: flatcamTools/ToolPanelize.py:73
  9425. msgid ""
  9426. "Object to be panelized. This means that it will\n"
  9427. "be duplicated in an array of rows and columns."
  9428. msgstr ""
  9429. "Object to be panelized. This means that it will\n"
  9430. "be duplicated in an array of rows and columns."
  9431. #: flatcamTools/ToolPanelize.py:86
  9432. msgid "<b>Penelization Reference:</b>"
  9433. msgstr "<b>Penelization Reference:</b>"
  9434. #: flatcamTools/ToolPanelize.py:88
  9435. msgid ""
  9436. "Choose the reference for panelization:\n"
  9437. "- Object = the bounding box of a different object\n"
  9438. "- Bounding Box = the bounding box of the object to be panelized\n"
  9439. "\n"
  9440. "The reference is useful when doing panelization for more than one\n"
  9441. "object. The spacings (really offsets) will be applied in reference\n"
  9442. "to this reference object therefore maintaining the panelized\n"
  9443. "objects in sync."
  9444. msgstr ""
  9445. "Choose the reference for panelization:\n"
  9446. "- Object = the bounding box of a different object\n"
  9447. "- Bounding Box = the bounding box of the object to be panelized\n"
  9448. "\n"
  9449. "The reference is useful when doing panelization for more than one\n"
  9450. "object. The spacings (really offsets) will be applied in reference\n"
  9451. "to this reference object therefore maintaining the panelized\n"
  9452. "objects in sync."
  9453. #: flatcamTools/ToolPanelize.py:113
  9454. msgid ""
  9455. "Specify the type of object to be used as an container for\n"
  9456. "panelization. It can be: Gerber or Geometry type.\n"
  9457. "The selection here decide the type of objects that will be\n"
  9458. "in the Box Object combobox."
  9459. msgstr ""
  9460. "Specify the type of object to be used as an container for\n"
  9461. "panelization. It can be: Gerber or Geometry type.\n"
  9462. "The selection here decide the type of objects that will be\n"
  9463. "in the Box Object combobox."
  9464. #: flatcamTools/ToolPanelize.py:128
  9465. msgid ""
  9466. "The actual object that is used a container for the\n"
  9467. " selected object that is to be panelized."
  9468. msgstr ""
  9469. "The actual object that is used a container for the\n"
  9470. " selected object that is to be panelized."
  9471. #: flatcamTools/ToolPanelize.py:134
  9472. msgid "<b>Panel Data:</b>"
  9473. msgstr "<b>Panel Data:</b>"
  9474. #: flatcamTools/ToolPanelize.py:136
  9475. msgid ""
  9476. "This informations will shape the resulting panel.\n"
  9477. "The number of rows and columns will set how many\n"
  9478. "duplicates of the original geometry will be generated.\n"
  9479. "\n"
  9480. "The spacings will set the distance between any two\n"
  9481. "elements of the panel array."
  9482. msgstr ""
  9483. "This informations will shape the resulting panel.\n"
  9484. "The number of rows and columns will set how many\n"
  9485. "duplicates of the original geometry will be generated.\n"
  9486. "\n"
  9487. "The spacings will set the distance between any two\n"
  9488. "elements of the panel array."
  9489. #: flatcamTools/ToolPanelize.py:183
  9490. msgid "<b>Panel Type:</b>"
  9491. msgstr "<b>Panel Type:</b>"
  9492. #: flatcamTools/ToolPanelize.py:185
  9493. msgid ""
  9494. "Choose the type of object for the panel object:\n"
  9495. "- Geometry\n"
  9496. "- Gerber"
  9497. msgstr ""
  9498. "Choose the type of object for the panel object:\n"
  9499. "- Geometry\n"
  9500. "- Gerber"
  9501. #: flatcamTools/ToolPanelize.py:193
  9502. msgid "Constrain panel within:"
  9503. msgstr "Constrain panel within:"
  9504. #: flatcamTools/ToolPanelize.py:227
  9505. msgid "Panelize Object"
  9506. msgstr "Panelize Object"
  9507. #: flatcamTools/ToolPanelize.py:229
  9508. msgid ""
  9509. "Panelize the specified object around the specified box.\n"
  9510. "In other words it creates multiple copies of the source object,\n"
  9511. "arranged in a 2D array of rows and columns."
  9512. msgstr ""
  9513. "Panelize the specified object around the specified box.\n"
  9514. "In other words it creates multiple copies of the source object,\n"
  9515. "arranged in a 2D array of rows and columns."
  9516. #: flatcamTools/ToolPanelize.py:370
  9517. #, python-format
  9518. msgid "[WARNING_NOTCL]No object Box. Using instead %s"
  9519. msgstr "[WARNING_NOTCL]No object Box. Using instead %s"
  9520. #: flatcamTools/ToolPanelize.py:453
  9521. msgid ""
  9522. "[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive "
  9523. "integer."
  9524. msgstr ""
  9525. "[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive "
  9526. "integer."
  9527. #: flatcamTools/ToolPanelize.py:478 flatcamTools/ToolPanelize.py:635
  9528. msgid "Generating panel ... Please wait."
  9529. msgstr "Generating panel ... Please wait."
  9530. #: flatcamTools/ToolPanelize.py:628
  9531. msgid "[success] Panel done..."
  9532. msgstr "[success] Panel done..."
  9533. #: flatcamTools/ToolPanelize.py:631
  9534. #, python-brace-format
  9535. msgid ""
  9536. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  9537. "{row} rows"
  9538. msgstr ""
  9539. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  9540. "{row} rows"
  9541. #: flatcamTools/ToolPanelize.py:640
  9542. msgid "[success] Panel created successfully."
  9543. msgstr "[success] Panel created successfully."
  9544. #: flatcamTools/ToolPcbWizard.py:32
  9545. msgid "PcbWizard Import Tool"
  9546. msgstr "PcbWizard Import Tool"
  9547. #: flatcamTools/ToolPcbWizard.py:40
  9548. msgid "Import 2-file Excellon"
  9549. msgstr "Import 2-file Excellon"
  9550. #: flatcamTools/ToolPcbWizard.py:57
  9551. msgid "Excellon file:"
  9552. msgstr "Excellon file:"
  9553. #: flatcamTools/ToolPcbWizard.py:59
  9554. msgid ""
  9555. "Load the Excellon file.\n"
  9556. "Usually it has a .DRL extension"
  9557. msgstr ""
  9558. "Load the Excellon file.\n"
  9559. "Usually it has a .DRL extension"
  9560. #: flatcamTools/ToolPcbWizard.py:66
  9561. msgid "INF file:"
  9562. msgstr "INF file:"
  9563. #: flatcamTools/ToolPcbWizard.py:68
  9564. msgid "Load the INF file."
  9565. msgstr "Load the INF file."
  9566. #: flatcamTools/ToolPcbWizard.py:81
  9567. msgid "Tool Number"
  9568. msgstr "Tool Number"
  9569. #: flatcamTools/ToolPcbWizard.py:83
  9570. msgid "Tool diameter in file units."
  9571. msgstr "Tool diameter in file units."
  9572. #: flatcamTools/ToolPcbWizard.py:97
  9573. msgid "Int. digits:"
  9574. msgstr "Int. digits:"
  9575. #: flatcamTools/ToolPcbWizard.py:99
  9576. msgid "The number of digits for the integral part of the coordinates."
  9577. msgstr "The number of digits for the integral part of the coordinates."
  9578. #: flatcamTools/ToolPcbWizard.py:106
  9579. msgid "Frac. digits:"
  9580. msgstr "Frac. digits:"
  9581. #: flatcamTools/ToolPcbWizard.py:108
  9582. msgid "The number of digits for the fractional part of the coordinates."
  9583. msgstr "The number of digits for the fractional part of the coordinates."
  9584. #: flatcamTools/ToolPcbWizard.py:116
  9585. msgid "Zeros supp.:"
  9586. msgstr "Zeros supp.:"
  9587. #: flatcamTools/ToolPcbWizard.py:118
  9588. msgid ""
  9589. "The type of zeros suppression used.\n"
  9590. "Can be of type:\n"
  9591. "- LZ = leading zeros are kept\n"
  9592. "- TZ = trailing zeros are kept\n"
  9593. "- No Suppression = no zero suppression"
  9594. msgstr ""
  9595. "The type of zeros suppression used.\n"
  9596. "Can be of type:\n"
  9597. "- LZ = leading zeros are kept\n"
  9598. "- TZ = trailing zeros are kept\n"
  9599. "- No Suppression = no zero suppression"
  9600. #: flatcamTools/ToolPcbWizard.py:129
  9601. msgid "Units"
  9602. msgstr "Units"
  9603. #: flatcamTools/ToolPcbWizard.py:131
  9604. msgid ""
  9605. "The type of units that the coordinates and tool\n"
  9606. "diameters are using. Can be INCH or MM."
  9607. msgstr ""
  9608. "The type of units that the coordinates and tool\n"
  9609. "diameters are using. Can be INCH or MM."
  9610. #: flatcamTools/ToolPcbWizard.py:138
  9611. msgid "Import Excellon"
  9612. msgstr "Import Excellon"
  9613. #: flatcamTools/ToolPcbWizard.py:140
  9614. msgid ""
  9615. "Import in FlatCAM an Excellon file\n"
  9616. "that store it's information's in 2 files.\n"
  9617. "One usually has .DRL extension while\n"
  9618. "the other has .INF extension."
  9619. msgstr ""
  9620. "Import in FlatCAM an Excellon file\n"
  9621. "that store it's information's in 2 files.\n"
  9622. "One usually has .DRL extension while\n"
  9623. "the other has .INF extension."
  9624. #: flatcamTools/ToolPcbWizard.py:194
  9625. msgid "PCBWizard Tool"
  9626. msgstr "PCBWizard Tool"
  9627. #: flatcamTools/ToolPcbWizard.py:288 flatcamTools/ToolPcbWizard.py:292
  9628. msgid "Load PcbWizard Excellon file"
  9629. msgstr "Load PcbWizard Excellon file"
  9630. #: flatcamTools/ToolPcbWizard.py:312 flatcamTools/ToolPcbWizard.py:316
  9631. msgid "Load PcbWizard INF file"
  9632. msgstr "Load PcbWizard INF file"
  9633. #: flatcamTools/ToolPcbWizard.py:363
  9634. msgid ""
  9635. "[ERROR] The INF file does not contain the tool table.\n"
  9636. "Try to open the Excellon file from File -> Open -> Excellon\n"
  9637. "and edit the drill diameters manually."
  9638. msgstr ""
  9639. "[ERROR] The INF file does not contain the tool table.\n"
  9640. "Try to open the Excellon file from File -> Open -> Excellon\n"
  9641. "and edit the drill diameters manually."
  9642. #: flatcamTools/ToolPcbWizard.py:383
  9643. msgid "[success] PcbWizard .INF file loaded."
  9644. msgstr "[success] PcbWizard .INF file loaded."
  9645. #: flatcamTools/ToolPcbWizard.py:387
  9646. msgid "[success] Main PcbWizard Excellon file loaded."
  9647. msgstr "[success] Main PcbWizard Excellon file loaded."
  9648. #: flatcamTools/ToolPcbWizard.py:424
  9649. #, python-format
  9650. msgid "[ERROR_NOTCL] Cannot parse file: %s"
  9651. msgstr "[ERROR_NOTCL] Cannot parse file: %s"
  9652. #: flatcamTools/ToolPcbWizard.py:447
  9653. msgid "Importing Excellon."
  9654. msgstr "Importing Excellon."
  9655. #: flatcamTools/ToolPcbWizard.py:454
  9656. msgid "[ERROR_NOTCL] Import Excellon file failed."
  9657. msgstr "[ERROR_NOTCL] Import Excellon file failed."
  9658. #: flatcamTools/ToolPcbWizard.py:461
  9659. #, python-format
  9660. msgid "[success] Imported: %s"
  9661. msgstr "[success] Imported: %s"
  9662. #: flatcamTools/ToolPcbWizard.py:464
  9663. msgid "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
  9664. msgstr "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
  9665. #: flatcamTools/ToolPcbWizard.py:466
  9666. msgid "[ERROR_NOTCL] The imported Excellon file is None."
  9667. msgstr "[ERROR_NOTCL] The imported Excellon file is None."
  9668. #: flatcamTools/ToolProperties.py:103
  9669. msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  9670. msgstr "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  9671. #: flatcamTools/ToolProperties.py:110
  9672. msgid "[success] Object Properties are displayed."
  9673. msgstr "[success] Object Properties are displayed."
  9674. #: flatcamTools/ToolProperties.py:111
  9675. msgid "Properties Tool"
  9676. msgstr "Properties Tool"
  9677. #: flatcamTools/ToolShell.py:69
  9678. msgid "...proccessing..."
  9679. msgstr "...proccessing..."
  9680. #: flatcamTools/ToolShell.py:71
  9681. #, python-format
  9682. msgid "...proccessing... [%s]"
  9683. msgstr "...proccessing... [%s]"
  9684. #: flatcamTools/ToolSolderPaste.py:37
  9685. msgid "Solder Paste Tool"
  9686. msgstr "Solder Paste Tool"
  9687. #: flatcamTools/ToolSolderPaste.py:65
  9688. msgid "Gerber Solder paste object. "
  9689. msgstr "Gerber Solder paste object. "
  9690. #: flatcamTools/ToolSolderPaste.py:72
  9691. msgid ""
  9692. "Tools pool from which the algorithm\n"
  9693. "will pick the ones used for dispensing solder paste."
  9694. msgstr ""
  9695. "Tools pool from which the algorithm\n"
  9696. "will pick the ones used for dispensing solder paste."
  9697. #: flatcamTools/ToolSolderPaste.py:87
  9698. msgid ""
  9699. "This is the Tool Number.\n"
  9700. "The solder dispensing will start with the tool with the biggest \n"
  9701. "diameter, continuing until there are no more Nozzle tools.\n"
  9702. "If there are no longer tools but there are still pads not covered\n"
  9703. " with solder paste, the app will issue a warning message box."
  9704. msgstr ""
  9705. "This is the Tool Number.\n"
  9706. "The solder dispensing will start with the tool with the biggest \n"
  9707. "diameter, continuing until there are no more Nozzle tools.\n"
  9708. "If there are no longer tools but there are still pads not covered\n"
  9709. " with solder paste, the app will issue a warning message box."
  9710. #: flatcamTools/ToolSolderPaste.py:94
  9711. msgid ""
  9712. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  9713. "is the width of the solder paste dispensed."
  9714. msgstr ""
  9715. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  9716. "is the width of the solder paste dispensed."
  9717. #: flatcamTools/ToolSolderPaste.py:101
  9718. msgid "New Nozzle Tool"
  9719. msgstr "New Nozzle Tool"
  9720. #: flatcamTools/ToolSolderPaste.py:117
  9721. msgid ""
  9722. "Add a new nozzle tool to the Tool Table\n"
  9723. "with the diameter specified above."
  9724. msgstr ""
  9725. "Add a new nozzle tool to the Tool Table\n"
  9726. "with the diameter specified above."
  9727. #: flatcamTools/ToolSolderPaste.py:129
  9728. msgid "Generate solder paste dispensing geometry."
  9729. msgstr "Generate solder paste dispensing geometry."
  9730. #: flatcamTools/ToolSolderPaste.py:142
  9731. msgid "STEP 1:"
  9732. msgstr "STEP 1:"
  9733. #: flatcamTools/ToolSolderPaste.py:144
  9734. msgid ""
  9735. "First step is to select a number of nozzle tools for usage\n"
  9736. "and then optionally modify the GCode parameters bellow."
  9737. msgstr ""
  9738. "First step is to select a number of nozzle tools for usage\n"
  9739. "and then optionally modify the GCode parameters bellow."
  9740. #: flatcamTools/ToolSolderPaste.py:147
  9741. msgid ""
  9742. "Select tools.\n"
  9743. "Modify parameters."
  9744. msgstr ""
  9745. "Select tools.\n"
  9746. "Modify parameters."
  9747. #: flatcamTools/ToolSolderPaste.py:236
  9748. msgid ""
  9749. "Feedrate (speed) while moving up vertically\n"
  9750. " to Dispense position (on Z plane)."
  9751. msgstr ""
  9752. "Feedrate (speed) while moving up vertically\n"
  9753. " to Dispense position (on Z plane)."
  9754. #: flatcamTools/ToolSolderPaste.py:290
  9755. msgid "Generate GCode"
  9756. msgstr "Generate GCode"
  9757. #: flatcamTools/ToolSolderPaste.py:292
  9758. msgid ""
  9759. "Generate GCode for Solder Paste dispensing\n"
  9760. "on PCB pads."
  9761. msgstr ""
  9762. "Generate GCode for Solder Paste dispensing\n"
  9763. "on PCB pads."
  9764. #: flatcamTools/ToolSolderPaste.py:308
  9765. msgid "STEP 2:"
  9766. msgstr "STEP 2:"
  9767. #: flatcamTools/ToolSolderPaste.py:310
  9768. msgid ""
  9769. "Second step is to create a solder paste dispensing\n"
  9770. "geometry out of an Solder Paste Mask Gerber file."
  9771. msgstr ""
  9772. "Second step is to create a solder paste dispensing\n"
  9773. "geometry out of an Solder Paste Mask Gerber file."
  9774. #: flatcamTools/ToolSolderPaste.py:326
  9775. msgid "Geo Result:"
  9776. msgstr "Geo Result:"
  9777. #: flatcamTools/ToolSolderPaste.py:328
  9778. msgid ""
  9779. "Geometry Solder Paste object.\n"
  9780. "The name of the object has to end in:\n"
  9781. "'_solderpaste' as a protection."
  9782. msgstr ""
  9783. "Geometry Solder Paste object.\n"
  9784. "The name of the object has to end in:\n"
  9785. "'_solderpaste' as a protection."
  9786. #: flatcamTools/ToolSolderPaste.py:337
  9787. msgid "STEP 3:"
  9788. msgstr "STEP 3:"
  9789. #: flatcamTools/ToolSolderPaste.py:339
  9790. msgid ""
  9791. "Third step is to select a solder paste dispensing geometry,\n"
  9792. "and then generate a CNCJob object.\n"
  9793. "\n"
  9794. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  9795. "first you need to generate a geometry with those new params,\n"
  9796. "and only after that you can generate an updated CNCJob."
  9797. msgstr ""
  9798. "Third step is to select a solder paste dispensing geometry,\n"
  9799. "and then generate a CNCJob object.\n"
  9800. "\n"
  9801. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  9802. "first you need to generate a geometry with those new params,\n"
  9803. "and only after that you can generate an updated CNCJob."
  9804. #: flatcamTools/ToolSolderPaste.py:359
  9805. msgid "CNC Result:"
  9806. msgstr "CNC Result:"
  9807. #: flatcamTools/ToolSolderPaste.py:361
  9808. msgid ""
  9809. "CNCJob Solder paste object.\n"
  9810. "In order to enable the GCode save section,\n"
  9811. "the name of the object has to end in:\n"
  9812. "'_solderpaste' as a protection."
  9813. msgstr ""
  9814. "CNCJob Solder paste object.\n"
  9815. "In order to enable the GCode save section,\n"
  9816. "the name of the object has to end in:\n"
  9817. "'_solderpaste' as a protection."
  9818. #: flatcamTools/ToolSolderPaste.py:371
  9819. msgid "View GCode"
  9820. msgstr "View GCode"
  9821. #: flatcamTools/ToolSolderPaste.py:373
  9822. msgid ""
  9823. "View the generated GCode for Solder Paste dispensing\n"
  9824. "on PCB pads."
  9825. msgstr ""
  9826. "View the generated GCode for Solder Paste dispensing\n"
  9827. "on PCB pads."
  9828. #: flatcamTools/ToolSolderPaste.py:377
  9829. msgid "Save GCode"
  9830. msgstr "Save GCode"
  9831. #: flatcamTools/ToolSolderPaste.py:379
  9832. msgid ""
  9833. "Save the generated GCode for Solder Paste dispensing\n"
  9834. "on PCB pads, to a file."
  9835. msgstr ""
  9836. "Save the generated GCode for Solder Paste dispensing\n"
  9837. "on PCB pads, to a file."
  9838. #: flatcamTools/ToolSolderPaste.py:383
  9839. msgid "STEP 4:"
  9840. msgstr "STEP 4:"
  9841. #: flatcamTools/ToolSolderPaste.py:385
  9842. msgid ""
  9843. "Fourth step (and last) is to select a CNCJob made from \n"
  9844. "a solder paste dispensing geometry, and then view/save it's GCode."
  9845. msgstr ""
  9846. "Fourth step (and last) is to select a CNCJob made from \n"
  9847. "a solder paste dispensing geometry, and then view/save it's GCode."
  9848. #: flatcamTools/ToolSolderPaste.py:413
  9849. msgid "Delete Object"
  9850. msgstr "Delete Object"
  9851. #: flatcamTools/ToolSolderPaste.py:789
  9852. msgid ""
  9853. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  9854. msgstr ""
  9855. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  9856. #: flatcamTools/ToolSolderPaste.py:794
  9857. msgid "[success] New Nozzle tool added to Tool Table."
  9858. msgstr "[success] New Nozzle tool added to Tool Table."
  9859. #: flatcamTools/ToolSolderPaste.py:836
  9860. msgid "[success] Nozzle tool from Tool Table was edited."
  9861. msgstr "[success] Nozzle tool from Tool Table was edited."
  9862. #: flatcamTools/ToolSolderPaste.py:892
  9863. msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  9864. msgstr "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  9865. #: flatcamTools/ToolSolderPaste.py:897
  9866. msgid "[success] Nozzle tool(s) deleted from Tool Table."
  9867. msgstr "[success] Nozzle tool(s) deleted from Tool Table."
  9868. #: flatcamTools/ToolSolderPaste.py:952
  9869. msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  9870. msgstr "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  9871. #: flatcamTools/ToolSolderPaste.py:969
  9872. msgid "Creating Solder Paste dispensing geometry."
  9873. msgstr "Creating Solder Paste dispensing geometry."
  9874. #: flatcamTools/ToolSolderPaste.py:981
  9875. msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
  9876. msgstr "[WARNING_NOTCL] No Nozzle tools in the tool table."
  9877. #: flatcamTools/ToolSolderPaste.py:1110
  9878. msgid "[success] Solder Paste geometry generated successfully..."
  9879. msgstr "[success] Solder Paste geometry generated successfully..."
  9880. #: flatcamTools/ToolSolderPaste.py:1116
  9881. msgid ""
  9882. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  9883. "diameters..."
  9884. msgstr ""
  9885. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  9886. "diameters..."
  9887. #: flatcamTools/ToolSolderPaste.py:1130
  9888. msgid "Generating Solder Paste dispensing geometry..."
  9889. msgstr "Generating Solder Paste dispensing geometry..."
  9890. #: flatcamTools/ToolSolderPaste.py:1150
  9891. msgid "[WARNING_NOTCL] There is no Geometry object available."
  9892. msgstr "[WARNING_NOTCL] There is no Geometry object available."
  9893. #: flatcamTools/ToolSolderPaste.py:1154
  9894. msgid ""
  9895. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  9896. "geometry."
  9897. msgstr ""
  9898. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  9899. "geometry."
  9900. #: flatcamTools/ToolSolderPaste.py:1259
  9901. #, python-format
  9902. msgid "[success] ToolSolderPaste CNCjob created: %s"
  9903. msgstr "[success] ToolSolderPaste CNCjob created: %s"
  9904. #: flatcamTools/ToolSolderPaste.py:1291 flatcamTools/ToolSolderPaste.py:1295
  9905. #: flatcamTools/ToolSolderPaste.py:1346
  9906. msgid ""
  9907. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  9908. "solder_paste_tool CNCJob object."
  9909. msgstr ""
  9910. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  9911. "solder_paste_tool CNCJob object."
  9912. #: flatcamTools/ToolSolderPaste.py:1318
  9913. msgid "[ERROR_NOTCL] No Gcode in the object..."
  9914. msgstr "[ERROR_NOTCL] No Gcode in the object..."
  9915. #: flatcamTools/ToolSolderPaste.py:1327
  9916. #, python-format
  9917. msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  9918. msgstr "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  9919. #: flatcamTools/ToolSolderPaste.py:1356
  9920. msgid "Export GCode ..."
  9921. msgstr "Export GCode ..."
  9922. #: flatcamTools/ToolSolderPaste.py:1396
  9923. #, python-format
  9924. msgid "[success] Solder paste dispenser GCode file saved to: %s"
  9925. msgstr "[success] Solder paste dispenser GCode file saved to: %s"
  9926. #: flatcamTools/ToolSub.py:55
  9927. msgid "<b>Gerber Objects</b>"
  9928. msgstr "<b>Gerber Objects</b>"
  9929. #: flatcamTools/ToolSub.py:64 flatcamTools/ToolSub.py:110
  9930. msgid "Target:"
  9931. msgstr "Target:"
  9932. #: flatcamTools/ToolSub.py:66
  9933. msgid ""
  9934. "Gerber object from which to substract\n"
  9935. "the substractor Gerber object."
  9936. msgstr ""
  9937. "Gerber object from which to substract\n"
  9938. "the substractor Gerber object."
  9939. #: flatcamTools/ToolSub.py:78 flatcamTools/ToolSub.py:124
  9940. msgid "Substractor:"
  9941. msgstr "Substractor:"
  9942. #: flatcamTools/ToolSub.py:80
  9943. msgid ""
  9944. "Gerber object that will be substracted\n"
  9945. "from the target Gerber object."
  9946. msgstr ""
  9947. "Gerber object that will be substracted\n"
  9948. "from the target Gerber object."
  9949. #: flatcamTools/ToolSub.py:87
  9950. msgid "Substract Gerber"
  9951. msgstr "Substract Gerber"
  9952. #: flatcamTools/ToolSub.py:89
  9953. msgid ""
  9954. "Will remove the area occupied by the substractor\n"
  9955. "Gerber from the Target Gerber.\n"
  9956. "Can be used to remove the overlapping silkscreen\n"
  9957. "over the soldermask."
  9958. msgstr ""
  9959. "Will remove the area occupied by the substractor\n"
  9960. "Gerber from the Target Gerber.\n"
  9961. "Can be used to remove the overlapping silkscreen\n"
  9962. "over the soldermask."
  9963. #: flatcamTools/ToolSub.py:101
  9964. msgid "<b>Geometry Objects</b>"
  9965. msgstr "<b>Geometry Objects</b>"
  9966. #: flatcamTools/ToolSub.py:112
  9967. msgid ""
  9968. "Geometry object from which to substract\n"
  9969. "the substractor Geometry object."
  9970. msgstr ""
  9971. "Geometry object from which to substract\n"
  9972. "the substractor Geometry object."
  9973. #: flatcamTools/ToolSub.py:126
  9974. msgid ""
  9975. "Geometry object that will be substracted\n"
  9976. "from the target Geometry object."
  9977. msgstr ""
  9978. "Geometry object that will be substracted\n"
  9979. "from the target Geometry object."
  9980. #: flatcamTools/ToolSub.py:133
  9981. msgid "Substract Geometry"
  9982. msgstr "Substract Geometry"
  9983. #: flatcamTools/ToolSub.py:135
  9984. msgid ""
  9985. "Will remove the area occupied by the substractor\n"
  9986. "Geometry from the Target Geometry."
  9987. msgstr ""
  9988. "Will remove the area occupied by the substractor\n"
  9989. "Geometry from the Target Geometry."
  9990. #: flatcamTools/ToolSub.py:215
  9991. msgid "Sub Tool"
  9992. msgstr "Sub Tool"
  9993. #: flatcamTools/ToolSub.py:230 flatcamTools/ToolSub.py:421
  9994. msgid "[ERROR_NOTCL] No Target object loaded."
  9995. msgstr "[ERROR_NOTCL] No Target object loaded."
  9996. #: flatcamTools/ToolSub.py:242 flatcamTools/ToolSub.py:433
  9997. msgid "[ERROR_NOTCL] No Substractor object loaded."
  9998. msgstr "[ERROR_NOTCL] No Substractor object loaded."
  9999. #: flatcamTools/ToolSub.py:294
  10000. #, python-format
  10001. msgid "Parsing aperture %s geometry ..."
  10002. msgstr "Parsing aperture %s geometry ..."
  10003. #: flatcamTools/ToolSub.py:396 flatcamTools/ToolSub.py:539
  10004. msgid "Generating new object ..."
  10005. msgstr "Generating new object ..."
  10006. #: flatcamTools/ToolSub.py:399 flatcamTools/ToolSub.py:542
  10007. msgid "[ERROR_NOTCL] Generating new object failed."
  10008. msgstr "[ERROR_NOTCL] Generating new object failed."
  10009. #: flatcamTools/ToolSub.py:403 flatcamTools/ToolSub.py:547
  10010. #, python-format
  10011. msgid "[success] Created: %s"
  10012. msgstr "[success] Created: %s"
  10013. #: flatcamTools/ToolSub.py:444
  10014. msgid ""
  10015. "[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo."
  10016. msgstr ""
  10017. "[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo."
  10018. #: flatcamTools/ToolSub.py:489
  10019. msgid "Parsing solid_geometry ..."
  10020. msgstr "Parsing solid_geometry ..."
  10021. #: flatcamTools/ToolSub.py:491
  10022. #, python-format
  10023. msgid "Parsing tool %s geometry ..."
  10024. msgstr "Parsing tool %s geometry ..."
  10025. #: flatcamTools/ToolTransform.py:23
  10026. msgid "Object Transform"
  10027. msgstr "Object Transform"
  10028. #: flatcamTools/ToolTransform.py:84
  10029. msgid ""
  10030. "Rotate the selected object(s).\n"
  10031. "The point of reference is the middle of\n"
  10032. "the bounding box for all selected objects."
  10033. msgstr ""
  10034. "Rotate the selected object(s).\n"
  10035. "The point of reference is the middle of\n"
  10036. "the bounding box for all selected objects."
  10037. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  10038. msgid ""
  10039. "Skew/shear the selected object(s).\n"
  10040. "The point of reference is the middle of\n"
  10041. "the bounding box for all selected objects."
  10042. msgstr ""
  10043. "Skew/shear the selected object(s).\n"
  10044. "The point of reference is the middle of\n"
  10045. "the bounding box for all selected objects."
  10046. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  10047. msgid ""
  10048. "Scale the selected object(s).\n"
  10049. "The point of reference depends on \n"
  10050. "the Scale reference checkbox state."
  10051. msgstr ""
  10052. "Scale the selected object(s).\n"
  10053. "The point of reference depends on \n"
  10054. "the Scale reference checkbox state."
  10055. #: flatcamTools/ToolTransform.py:202
  10056. msgid ""
  10057. "Scale the selected object(s)\n"
  10058. "using the Scale Factor X for both axis."
  10059. msgstr ""
  10060. "Scale the selected object(s)\n"
  10061. "using the Scale Factor X for both axis."
  10062. #: flatcamTools/ToolTransform.py:250 flatcamTools/ToolTransform.py:267
  10063. msgid ""
  10064. "Offset the selected object(s).\n"
  10065. "The point of reference is the middle of\n"
  10066. "the bounding box for all selected objects.\n"
  10067. msgstr ""
  10068. "Offset the selected object(s).\n"
  10069. "The point of reference is the middle of\n"
  10070. "the bounding box for all selected objects.\n"
  10071. #: flatcamTools/ToolTransform.py:297 flatcamTools/ToolTransform.py:305
  10072. msgid ""
  10073. "Flip the selected object(s) over the X axis.\n"
  10074. "Does not create a new object.\n"
  10075. " "
  10076. msgstr ""
  10077. "Flip the selected object(s) over the X axis.\n"
  10078. "Does not create a new object.\n"
  10079. " "
  10080. #: flatcamTools/ToolTransform.py:637
  10081. msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  10082. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  10083. #: flatcamTools/ToolTransform.py:665
  10084. msgid "CNCJob objects can't be rotated."
  10085. msgstr "CNCJob objects can't be rotated."
  10086. #: flatcamTools/ToolTransform.py:673
  10087. msgid "[success] Rotate done ..."
  10088. msgstr "[success] Rotate done ..."
  10089. #: flatcamTools/ToolTransform.py:688
  10090. msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  10091. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  10092. #: flatcamTools/ToolTransform.py:723
  10093. msgid "CNCJob objects can't be mirrored/flipped."
  10094. msgstr "CNCJob objects can't be mirrored/flipped."
  10095. #: flatcamTools/ToolTransform.py:757
  10096. msgid ""
  10097. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  10098. msgstr ""
  10099. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  10100. #: flatcamTools/ToolTransform.py:779
  10101. msgid "CNCJob objects can't be skewed."
  10102. msgstr "CNCJob objects can't be skewed."
  10103. #: flatcamTools/ToolTransform.py:806
  10104. msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  10105. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  10106. #: flatcamTools/ToolTransform.py:839
  10107. msgid "CNCJob objects can't be scaled."
  10108. msgstr "CNCJob objects can't be scaled."
  10109. #: flatcamTools/ToolTransform.py:858
  10110. msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  10111. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  10112. #: flatcamTools/ToolTransform.py:867
  10113. msgid "CNCJob objects can't be offseted."
  10114. msgstr "CNCJob objects can't be offseted."
  10115. #~ msgid "Tool dia: "
  10116. #~ msgstr "Tool dia: "
  10117. #~ msgid ""
  10118. #~ "The diameter of the cutting\n"
  10119. #~ "tool.."
  10120. #~ msgstr ""
  10121. #~ "The diameter of the cutting\n"
  10122. #~ "tool.."
  10123. #~ msgid "Disable"
  10124. #~ msgstr "Disable"
  10125. #~ msgid "[WARNING_NOTCL] Move cancelled. No shape selected."
  10126. #~ msgstr "[WARNING_NOTCL] Move cancelled. No shape selected."
  10127. #~ msgid "Click on the Destination point..."
  10128. #~ msgstr "Click on the Destination point..."
  10129. #~ msgid "Copy as &Geom"
  10130. #~ msgstr "Copy as &Geom"
  10131. #~ msgid "Ap. Scale Factor:"
  10132. #~ msgstr "Ap. Scale Factor:"
  10133. #~ msgid ""
  10134. #~ "Change the size of the selected apertures.\n"
  10135. #~ "Factor by which to multiply\n"
  10136. #~ "geometric features of this object."
  10137. #~ msgstr ""
  10138. #~ "Change the size of the selected apertures.\n"
  10139. #~ "Factor by which to multiply\n"
  10140. #~ "geometric features of this object."
  10141. #~ msgid "Ap. Buffer Factor:"
  10142. #~ msgstr "Ap. Buffer Factor:"
  10143. #~ msgid ""
  10144. #~ "Change the size of the selected apertures.\n"
  10145. #~ "Factor by which to expand/shrink\n"
  10146. #~ "geometric features of this object."
  10147. #~ msgstr ""
  10148. #~ "Change the size of the selected apertures.\n"
  10149. #~ "Factor by which to expand/shrink\n"
  10150. #~ "geometric features of this object."
  10151. #~ msgid "[WARNING]No object Box. Using instead %s"
  10152. #~ msgstr "[WARNING]No object Box. Using instead %s"
  10153. #~ msgid "Path"
  10154. #~ msgstr "Path"
  10155. #~ msgid "In"
  10156. #~ msgstr "In"
  10157. #~ msgid "Out"
  10158. #~ msgstr "Out"
  10159. #~ msgid "Custom"
  10160. #~ msgstr "Custom"
  10161. #~ msgid "Angle"
  10162. #~ msgstr "Angle"
  10163. #~ msgid "Copy Drill(s)"
  10164. #~ msgstr "Copy Drill(s)"
  10165. #~ msgid "MMB"
  10166. #~ msgstr "MMB"
  10167. #~ msgid "RMB"
  10168. #~ msgstr "RMB"
  10169. #~ msgid "CTRL"
  10170. #~ msgstr "CTRL"
  10171. #~ msgid "SHIFT"
  10172. #~ msgstr "SHIFT"
  10173. #~ msgid "Climb"
  10174. #~ msgstr "Climb"
  10175. #~ msgid "Conv."
  10176. #~ msgstr "Conv."
  10177. #~ msgid "LZ"
  10178. #~ msgstr "LZ"
  10179. #~ msgid "TZ"
  10180. #~ msgstr "TZ"
  10181. #~ msgid "INCH"
  10182. #~ msgstr "INCH"
  10183. #~ msgid "MM"
  10184. #~ msgstr "MM"
  10185. #~ msgid "MH"
  10186. #~ msgstr "MH"
  10187. #~ msgid "Both"
  10188. #~ msgstr "Both"
  10189. #~ msgid "Decimal"
  10190. #~ msgstr "Decimal"
  10191. #~ msgid "No-Decimal"
  10192. #~ msgstr "No-Decimal"
  10193. #~ msgid "Travel"
  10194. #~ msgstr "Travel"
  10195. #~ msgid "X"
  10196. #~ msgstr "X"
  10197. #~ msgid "Y"
  10198. #~ msgstr "Y"
  10199. #~ msgid "Point"
  10200. #~ msgstr "Point"
  10201. #~ msgid "Box"
  10202. #~ msgstr "Box"
  10203. #~ msgid "Single"
  10204. #~ msgstr "Single"
  10205. #~ msgid "Pos"
  10206. #~ msgstr "Pos"
  10207. #~ msgid "Neg"
  10208. #~ msgstr "Neg"
  10209. #~ msgid "Gerber"
  10210. #~ msgstr "Gerber"
  10211. #~ msgid "Geo"
  10212. #~ msgstr "Geo"
  10213. #~ msgid "Solid "
  10214. #~ msgstr "Solid "
  10215. #~ msgid "M-Color "
  10216. #~ msgstr "M-Color "
  10217. #~ msgid "Done."
  10218. #~ msgstr "Done."
  10219. #~ msgid "Click on CENTER ..."
  10220. #~ msgstr "Click on CENTER ..."
  10221. #~ msgid "[success] Done. Region completed."
  10222. #~ msgstr "[success] Done. Region completed."
  10223. #~ msgid "Add an aperture to the aperture list"
  10224. #~ msgstr "Add an aperture to the aperture list"
  10225. #~ msgid "Go"
  10226. #~ msgstr "Go"
  10227. #~ msgid "Del Aperture:"
  10228. #~ msgstr "Del Aperture:"
  10229. #~ msgid ""
  10230. #~ "Delete a aperture in the aperture list.\n"
  10231. #~ "It will delete also the associated geometry."
  10232. #~ msgstr ""
  10233. #~ "Delete a aperture in the aperture list.\n"
  10234. #~ "It will delete also the associated geometry."
  10235. #~ msgid "Save && Close Edit"
  10236. #~ msgstr "Save && Close Edit"
  10237. #~ msgid ""
  10238. #~ "<b>Editor Shortcut list</b><br>\n"
  10239. #~ " <br>\n"
  10240. #~ " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  10241. #~ "strong><br>\n"
  10242. #~ " \n"
  10243. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  10244. #~ "\"width:283px\">\n"
  10245. #~ " <tbody>\n"
  10246. #~ " <tr height=\"20\">\n"
  10247. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  10248. #~ "strong></td>\n"
  10249. #~ " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  10250. #~ " </tr>\n"
  10251. #~ " <tr height=\"20\">\n"
  10252. #~ " <td height=\"20\"><strong>B</strong></td>\n"
  10253. #~ " <td>&nbsp;Buffer Tool</td>\n"
  10254. #~ " </tr>\n"
  10255. #~ " <tr height=\"20\">\n"
  10256. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  10257. #~ " <td>&nbsp;Copy Geo Item</td>\n"
  10258. #~ " </tr>\n"
  10259. #~ " <tr height=\"20\">\n"
  10260. #~ " <td height=\"20\"><strong>E</strong></td>\n"
  10261. #~ " <td>&nbsp;Polygon Intersection Tool</td>\n"
  10262. #~ " </tr>\n"
  10263. #~ " <tr height=\"20\">\n"
  10264. #~ " <td height=\"20\"><strong>I</strong></td>\n"
  10265. #~ " <td>&nbsp;Paint Tool</td>\n"
  10266. #~ " </tr>\n"
  10267. #~ " <tr height=\"20\">\n"
  10268. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  10269. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  10270. #~ " </tr>\n"
  10271. #~ " <tr height=\"20\">\n"
  10272. #~ " <td height=\"20\"><strong>K</strong></td>\n"
  10273. #~ " <td>&nbsp;Toggle Corner Snap</td>\n"
  10274. #~ " </tr>\n"
  10275. #~ " <tr height=\"20\">\n"
  10276. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  10277. #~ " <td>&nbsp;Move Geo Item</td>\n"
  10278. #~ " </tr>\n"
  10279. #~ " <tr height=\"20\">\n"
  10280. #~ " <td height=\"20\"><strong>N</strong></td>\n"
  10281. #~ " <td>&nbsp;Draw a Polygon</td>\n"
  10282. #~ " </tr>\n"
  10283. #~ " <tr height=\"20\">\n"
  10284. #~ " <td height=\"20\"><strong>O</strong></td>\n"
  10285. #~ " <td>&nbsp;Draw a Circle</td>\n"
  10286. #~ " </tr>\n"
  10287. #~ " <tr height=\"20\">\n"
  10288. #~ " <td height=\"20\"><strong>P</strong></td>\n"
  10289. #~ " <td>&nbsp;Draw a Path</td>\n"
  10290. #~ " </tr>\n"
  10291. #~ " <tr height=\"20\">\n"
  10292. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  10293. #~ " <td>&nbsp;Draw Rectangle</td>\n"
  10294. #~ " </tr>\n"
  10295. #~ " <tr height=\"20\">\n"
  10296. #~ " <td height=\"20\"><strong>S</strong></td>\n"
  10297. #~ " <td>&nbsp;Polygon Substraction Tool</td>\n"
  10298. #~ " </tr>\n"
  10299. #~ " <tr height=\"20\">\n"
  10300. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  10301. #~ " <td>&nbsp;Add Text Tool</td>\n"
  10302. #~ " </tr>\n"
  10303. #~ " <tr height=\"20\">\n"
  10304. #~ " <td height=\"20\"><strong>U</strong></td>\n"
  10305. #~ " <td>&nbsp;Polygon Union Tool</td>\n"
  10306. #~ " </tr>\n"
  10307. #~ " <tr height=\"20\">\n"
  10308. #~ " <td height=\"20\"><strong>X</strong></td>\n"
  10309. #~ " <td>&nbsp;Flip shape on X axis</td>\n"
  10310. #~ " </tr>\n"
  10311. #~ " <tr height=\"20\">\n"
  10312. #~ " <td height=\"20\"><strong>Y</strong></td>\n"
  10313. #~ " <td>&nbsp;Flip shape on Y axis</td>\n"
  10314. #~ " </tr>\n"
  10315. #~ " <tr height=\"20\">\n"
  10316. #~ " <td height=\"20\">&nbsp;</td>\n"
  10317. #~ " <td>&nbsp;</td>\n"
  10318. #~ " </tr>\n"
  10319. #~ " <tr height=\"20\">\n"
  10320. #~ " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  10321. #~ " <td>&nbsp;Skew shape on X axis</td>\n"
  10322. #~ " </tr>\n"
  10323. #~ " <tr height=\"20\">\n"
  10324. #~ " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  10325. #~ " <td>&nbsp;Skew shape on Y axis</td>\n"
  10326. #~ " </tr>\n"
  10327. #~ " <tr height=\"20\">\n"
  10328. #~ " <td height=\"20\">&nbsp;</td>\n"
  10329. #~ " <td>&nbsp;</td>\n"
  10330. #~ " </tr>\n"
  10331. #~ " <tr height=\"20\">\n"
  10332. #~ " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  10333. #~ " <td>&nbsp;Editor Transformation Tool</td>\n"
  10334. #~ " </tr>\n"
  10335. #~ " <tr height=\"20\">\n"
  10336. #~ " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  10337. #~ " <td>&nbsp;Offset shape on X axis</td>\n"
  10338. #~ " </tr>\n"
  10339. #~ " <tr height=\"20\">\n"
  10340. #~ " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  10341. #~ " <td>&nbsp;Offset shape on Y axis</td>\n"
  10342. #~ " </tr>\n"
  10343. #~ " <tr height=\"20\">\n"
  10344. #~ " <td height=\"20\">&nbsp;</td>\n"
  10345. #~ " <td>&nbsp;</td>\n"
  10346. #~ " </tr>\n"
  10347. #~ " <tr height=\"20\">\n"
  10348. #~ " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  10349. #~ " <td>&nbsp;Measurement Tool</td>\n"
  10350. #~ " </tr>\n"
  10351. #~ " <tr height=\"20\">\n"
  10352. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  10353. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  10354. #~ " </tr>\n"
  10355. #~ " <tr height=\"20\">\n"
  10356. #~ " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  10357. #~ " <td>&nbsp;Polygon Cut Tool</td>\n"
  10358. #~ " </tr>\n"
  10359. #~ " <tr height=\"20\">\n"
  10360. #~ " <td height=\"20\">&nbsp;</td>\n"
  10361. #~ " <td>&nbsp;</td>\n"
  10362. #~ " </tr>\n"
  10363. #~ " <tr height=\"20\">\n"
  10364. #~ " <td height=\"20\"><strong>Space</strong></td>\n"
  10365. #~ " <td>&nbsp;Rotate Geometry</td>\n"
  10366. #~ " </tr>\n"
  10367. #~ " <tr height=\"20\">\n"
  10368. #~ " <td height=\"20\"><strong>ENTER</strong></td>\n"
  10369. #~ " <td>&nbsp;Finish drawing for certain tools</td>\n"
  10370. #~ " </tr>\n"
  10371. #~ " <tr height=\"20\">\n"
  10372. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  10373. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  10374. #~ " </tr>\n"
  10375. #~ " <tr height=\"20\">\n"
  10376. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10377. #~ " <td>&nbsp;Delete Shape</td>\n"
  10378. #~ " </tr>\n"
  10379. #~ " </tbody>\n"
  10380. #~ " </table>\n"
  10381. #~ " <br>\n"
  10382. #~ " <br>\n"
  10383. #~ " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  10384. #~ "strong><br>\n"
  10385. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  10386. #~ "\"width:283px\">\n"
  10387. #~ " <tbody>\n"
  10388. #~ " <tr height=\"20\">\n"
  10389. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  10390. #~ "strong></td>\n"
  10391. #~ " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  10392. #~ " </tr>\n"
  10393. #~ " <tr height=\"20\">\n"
  10394. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  10395. #~ " <td>&nbsp;Copy Drill(s)</td>\n"
  10396. #~ " </tr>\n"
  10397. #~ " <tr height=\"20\">\n"
  10398. #~ " <td height=\"20\"><strong>D</strong></td>\n"
  10399. #~ " <td>&nbsp;Add Drill</td>\n"
  10400. #~ " </tr>\n"
  10401. #~ " <tr height=\"20\">\n"
  10402. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  10403. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  10404. #~ " </tr>\n"
  10405. #~ " <tr height=\"20\">\n"
  10406. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  10407. #~ " <td>&nbsp;Move Drill(s)</td>\n"
  10408. #~ " </tr>\n"
  10409. #~ " <tr height=\"20\">\n"
  10410. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  10411. #~ " <td>&nbsp;Resize Drill(s)</td>\n"
  10412. #~ " </tr>\n"
  10413. #~ " <tr height=\"20\">\n"
  10414. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  10415. #~ " <td>&nbsp;Add a new Tool</td>\n"
  10416. #~ " </tr>\n"
  10417. #~ " <tr height=\"20\">\n"
  10418. #~ " <td height=\"20\">&nbsp;</td>\n"
  10419. #~ " <td>&nbsp;</td>\n"
  10420. #~ " </tr>\n"
  10421. #~ " <tr height=\"20\">\n"
  10422. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10423. #~ " <td>&nbsp;Delete Drill(s)</td>\n"
  10424. #~ " </tr>\n"
  10425. #~ " <tr height=\"20\">\n"
  10426. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10427. #~ " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  10428. #~ " </tr>\n"
  10429. #~ " <tr height=\"20\">\n"
  10430. #~ " <td height=\"20\">&nbsp;</td>\n"
  10431. #~ " <td>&nbsp;</td>\n"
  10432. #~ " </tr>\n"
  10433. #~ " <tr height=\"20\">\n"
  10434. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  10435. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  10436. #~ " </tr>\n"
  10437. #~ " <tr height=\"20\">\n"
  10438. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  10439. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  10440. #~ " </tr>\n"
  10441. #~ " </tbody>\n"
  10442. #~ " </table>\n"
  10443. #~ " "
  10444. #~ msgstr ""
  10445. #~ "<b>Editor Shortcut list</b><br>\n"
  10446. #~ " <br>\n"
  10447. #~ " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  10448. #~ "strong><br>\n"
  10449. #~ " \n"
  10450. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  10451. #~ "\"width:283px\">\n"
  10452. #~ " <tbody>\n"
  10453. #~ " <tr height=\"20\">\n"
  10454. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  10455. #~ "strong></td>\n"
  10456. #~ " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  10457. #~ " </tr>\n"
  10458. #~ " <tr height=\"20\">\n"
  10459. #~ " <td height=\"20\"><strong>B</strong></td>\n"
  10460. #~ " <td>&nbsp;Buffer Tool</td>\n"
  10461. #~ " </tr>\n"
  10462. #~ " <tr height=\"20\">\n"
  10463. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  10464. #~ " <td>&nbsp;Copy Geo Item</td>\n"
  10465. #~ " </tr>\n"
  10466. #~ " <tr height=\"20\">\n"
  10467. #~ " <td height=\"20\"><strong>E</strong></td>\n"
  10468. #~ " <td>&nbsp;Polygon Intersection Tool</td>\n"
  10469. #~ " </tr>\n"
  10470. #~ " <tr height=\"20\">\n"
  10471. #~ " <td height=\"20\"><strong>I</strong></td>\n"
  10472. #~ " <td>&nbsp;Paint Tool</td>\n"
  10473. #~ " </tr>\n"
  10474. #~ " <tr height=\"20\">\n"
  10475. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  10476. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  10477. #~ " </tr>\n"
  10478. #~ " <tr height=\"20\">\n"
  10479. #~ " <td height=\"20\"><strong>K</strong></td>\n"
  10480. #~ " <td>&nbsp;Toggle Corner Snap</td>\n"
  10481. #~ " </tr>\n"
  10482. #~ " <tr height=\"20\">\n"
  10483. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  10484. #~ " <td>&nbsp;Move Geo Item</td>\n"
  10485. #~ " </tr>\n"
  10486. #~ " <tr height=\"20\">\n"
  10487. #~ " <td height=\"20\"><strong>N</strong></td>\n"
  10488. #~ " <td>&nbsp;Draw a Polygon</td>\n"
  10489. #~ " </tr>\n"
  10490. #~ " <tr height=\"20\">\n"
  10491. #~ " <td height=\"20\"><strong>O</strong></td>\n"
  10492. #~ " <td>&nbsp;Draw a Circle</td>\n"
  10493. #~ " </tr>\n"
  10494. #~ " <tr height=\"20\">\n"
  10495. #~ " <td height=\"20\"><strong>P</strong></td>\n"
  10496. #~ " <td>&nbsp;Draw a Path</td>\n"
  10497. #~ " </tr>\n"
  10498. #~ " <tr height=\"20\">\n"
  10499. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  10500. #~ " <td>&nbsp;Draw Rectangle</td>\n"
  10501. #~ " </tr>\n"
  10502. #~ " <tr height=\"20\">\n"
  10503. #~ " <td height=\"20\"><strong>S</strong></td>\n"
  10504. #~ " <td>&nbsp;Polygon Substraction Tool</td>\n"
  10505. #~ " </tr>\n"
  10506. #~ " <tr height=\"20\">\n"
  10507. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  10508. #~ " <td>&nbsp;Add Text Tool</td>\n"
  10509. #~ " </tr>\n"
  10510. #~ " <tr height=\"20\">\n"
  10511. #~ " <td height=\"20\"><strong>U</strong></td>\n"
  10512. #~ " <td>&nbsp;Polygon Union Tool</td>\n"
  10513. #~ " </tr>\n"
  10514. #~ " <tr height=\"20\">\n"
  10515. #~ " <td height=\"20\"><strong>X</strong></td>\n"
  10516. #~ " <td>&nbsp;Flip shape on X axis</td>\n"
  10517. #~ " </tr>\n"
  10518. #~ " <tr height=\"20\">\n"
  10519. #~ " <td height=\"20\"><strong>Y</strong></td>\n"
  10520. #~ " <td>&nbsp;Flip shape on Y axis</td>\n"
  10521. #~ " </tr>\n"
  10522. #~ " <tr height=\"20\">\n"
  10523. #~ " <td height=\"20\">&nbsp;</td>\n"
  10524. #~ " <td>&nbsp;</td>\n"
  10525. #~ " </tr>\n"
  10526. #~ " <tr height=\"20\">\n"
  10527. #~ " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  10528. #~ " <td>&nbsp;Skew shape on X axis</td>\n"
  10529. #~ " </tr>\n"
  10530. #~ " <tr height=\"20\">\n"
  10531. #~ " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  10532. #~ " <td>&nbsp;Skew shape on Y axis</td>\n"
  10533. #~ " </tr>\n"
  10534. #~ " <tr height=\"20\">\n"
  10535. #~ " <td height=\"20\">&nbsp;</td>\n"
  10536. #~ " <td>&nbsp;</td>\n"
  10537. #~ " </tr>\n"
  10538. #~ " <tr height=\"20\">\n"
  10539. #~ " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  10540. #~ " <td>&nbsp;Editor Transformation Tool</td>\n"
  10541. #~ " </tr>\n"
  10542. #~ " <tr height=\"20\">\n"
  10543. #~ " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  10544. #~ " <td>&nbsp;Offset shape on X axis</td>\n"
  10545. #~ " </tr>\n"
  10546. #~ " <tr height=\"20\">\n"
  10547. #~ " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  10548. #~ " <td>&nbsp;Offset shape on Y axis</td>\n"
  10549. #~ " </tr>\n"
  10550. #~ " <tr height=\"20\">\n"
  10551. #~ " <td height=\"20\">&nbsp;</td>\n"
  10552. #~ " <td>&nbsp;</td>\n"
  10553. #~ " </tr>\n"
  10554. #~ " <tr height=\"20\">\n"
  10555. #~ " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  10556. #~ " <td>&nbsp;Measurement Tool</td>\n"
  10557. #~ " </tr>\n"
  10558. #~ " <tr height=\"20\">\n"
  10559. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  10560. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  10561. #~ " </tr>\n"
  10562. #~ " <tr height=\"20\">\n"
  10563. #~ " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  10564. #~ " <td>&nbsp;Polygon Cut Tool</td>\n"
  10565. #~ " </tr>\n"
  10566. #~ " <tr height=\"20\">\n"
  10567. #~ " <td height=\"20\">&nbsp;</td>\n"
  10568. #~ " <td>&nbsp;</td>\n"
  10569. #~ " </tr>\n"
  10570. #~ " <tr height=\"20\">\n"
  10571. #~ " <td height=\"20\"><strong>Space</strong></td>\n"
  10572. #~ " <td>&nbsp;Rotate Geometry</td>\n"
  10573. #~ " </tr>\n"
  10574. #~ " <tr height=\"20\">\n"
  10575. #~ " <td height=\"20\"><strong>ENTER</strong></td>\n"
  10576. #~ " <td>&nbsp;Finish drawing for certain tools</td>\n"
  10577. #~ " </tr>\n"
  10578. #~ " <tr height=\"20\">\n"
  10579. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  10580. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  10581. #~ " </tr>\n"
  10582. #~ " <tr height=\"20\">\n"
  10583. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10584. #~ " <td>&nbsp;Delete Shape</td>\n"
  10585. #~ " </tr>\n"
  10586. #~ " </tbody>\n"
  10587. #~ " </table>\n"
  10588. #~ " <br>\n"
  10589. #~ " <br>\n"
  10590. #~ " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  10591. #~ "strong><br>\n"
  10592. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  10593. #~ "\"width:283px\">\n"
  10594. #~ " <tbody>\n"
  10595. #~ " <tr height=\"20\">\n"
  10596. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  10597. #~ "strong></td>\n"
  10598. #~ " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  10599. #~ " </tr>\n"
  10600. #~ " <tr height=\"20\">\n"
  10601. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  10602. #~ " <td>&nbsp;Copy Drill(s)</td>\n"
  10603. #~ " </tr>\n"
  10604. #~ " <tr height=\"20\">\n"
  10605. #~ " <td height=\"20\"><strong>D</strong></td>\n"
  10606. #~ " <td>&nbsp;Add Drill</td>\n"
  10607. #~ " </tr>\n"
  10608. #~ " <tr height=\"20\">\n"
  10609. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  10610. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  10611. #~ " </tr>\n"
  10612. #~ " <tr height=\"20\">\n"
  10613. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  10614. #~ " <td>&nbsp;Move Drill(s)</td>\n"
  10615. #~ " </tr>\n"
  10616. #~ " <tr height=\"20\">\n"
  10617. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  10618. #~ " <td>&nbsp;Resize Drill(s)</td>\n"
  10619. #~ " </tr>\n"
  10620. #~ " <tr height=\"20\">\n"
  10621. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  10622. #~ " <td>&nbsp;Add a new Tool</td>\n"
  10623. #~ " </tr>\n"
  10624. #~ " <tr height=\"20\">\n"
  10625. #~ " <td height=\"20\">&nbsp;</td>\n"
  10626. #~ " <td>&nbsp;</td>\n"
  10627. #~ " </tr>\n"
  10628. #~ " <tr height=\"20\">\n"
  10629. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10630. #~ " <td>&nbsp;Delete Drill(s)</td>\n"
  10631. #~ " </tr>\n"
  10632. #~ " <tr height=\"20\">\n"
  10633. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10634. #~ " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  10635. #~ " </tr>\n"
  10636. #~ " <tr height=\"20\">\n"
  10637. #~ " <td height=\"20\">&nbsp;</td>\n"
  10638. #~ " <td>&nbsp;</td>\n"
  10639. #~ " </tr>\n"
  10640. #~ " <tr height=\"20\">\n"
  10641. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  10642. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  10643. #~ " </tr>\n"
  10644. #~ " <tr height=\"20\">\n"
  10645. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  10646. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  10647. #~ " </tr>\n"
  10648. #~ " </tbody>\n"
  10649. #~ " </table>\n"
  10650. #~ " "
  10651. #~ msgid "[ERROR_NOTCL]Could not load defaults file."
  10652. #~ msgstr "[ERROR_NOTCL]Could not load defaults file."
  10653. #~ msgid "[ERROR_NOTCL] Failed to parse project file: %s"
  10654. #~ msgstr "[ERROR_NOTCL] Failed to parse project file: %s"
  10655. #~ msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
  10656. #~ msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."
  10657. #~ msgid ""
  10658. #~ "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  10659. #~ msgstr ""
  10660. #~ "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  10661. #~ msgid "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  10662. #~ msgstr "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  10663. #~ msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  10664. #~ msgstr "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  10665. #~ msgid "[WARNING_NOTCL]Export Machine Code cancelled ..."
  10666. #~ msgstr "[WARNING_NOTCL]Export Machine Code cancelled ..."
  10667. #~ msgid "[success] GUI settings deleted ..."
  10668. #~ msgstr "[success] GUI settings deleted ..."
  10669. #~ msgid "Scale Factor:"
  10670. #~ msgstr "Scale Factor:"
  10671. #~ msgid "Buffer Factor:"
  10672. #~ msgstr "Buffer Factor:"
  10673. #~ msgid "<b>Generate new Gerber Object:</b>"
  10674. #~ msgstr "<b>Generate new Gerber Object:</b>"
  10675. #~ msgid "Will generate a new Gerber object from the changed apertures."
  10676. #~ msgstr "Will generate a new Gerber object from the changed apertures."
  10677. #~ msgid ""
  10678. #~ "Will generate a new Gerber object from the changed apertures.\n"
  10679. #~ "This new object can then be isolated etc."
  10680. #~ msgstr ""
  10681. #~ "Will generate a new Gerber object from the changed apertures.\n"
  10682. #~ "This new object can then be isolated etc."
  10683. #~ msgid "[success]Flip on the Y axis done ..."
  10684. #~ msgstr "[success]Flip on the Y axis done ..."
  10685. #~ msgid "[success]Flip on the X axis done ..."
  10686. #~ msgstr "[success]Flip on the X axis done ..."
  10687. #~ msgid "[success]Skew on the %s axis done ..."
  10688. #~ msgstr "[success]Skew on the %s axis done ..."
  10689. #~ msgid "[success]Offset on the %s axis done ..."
  10690. #~ msgstr "[success]Offset on the %s axis done ..."
  10691. #~ msgid ""
  10692. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  10693. #~ "Example:\n"
  10694. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  10695. #~ "\n"
  10696. #~ "Adjust the value starting with lower values\n"
  10697. #~ "and increasing it if areas that should be painted are still \n"
  10698. #~ "not painted.\n"
  10699. #~ "Lower values = faster processing, faster execution on PCB.\n"
  10700. #~ "Higher values = slow processing and slow execution on CNC\n"
  10701. #~ "due of too many paths."
  10702. #~ msgstr ""
  10703. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  10704. #~ "Example:\n"
  10705. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  10706. #~ "\n"
  10707. #~ "Adjust the value starting with lower values\n"
  10708. #~ "and increasing it if areas that should be painted are still \n"
  10709. #~ "not painted.\n"
  10710. #~ "Lower values = faster processing, faster execution on PCB.\n"
  10711. #~ "Higher values = slow processing and slow execution on CNC\n"
  10712. #~ "due of too many paths."
  10713. #~| msgid "z_toolchange = Z coord for Toolchange"
  10714. #~ msgid "z_cut = Z coord for Toolchange"
  10715. #~ msgstr "z_cut = Z coord for Toolchange"
  10716. #~| msgid "z_toolchange = Z coord for Toolchange"
  10717. #~ msgid "z_move = Z coord for Toolchange"
  10718. #~ msgstr "z_move = Z coord for Toolchange"
  10719. #~ msgid "%s/Project_%s"
  10720. #~ msgstr "%s/Project_%s"
  10721. #~ msgid "tool_tab"
  10722. #~ msgstr "tool_tab"