strings.po 298 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: \n"
  4. "POT-Creation-Date: 2019-09-10 00:20+0300\n"
  5. "PO-Revision-Date: 2019-09-11 23:04+0300\n"
  6. "Last-Translator: Carlos Stein <carlos.stein@gmail.com>\n"
  7. "Language-Team: \n"
  8. "Language: pt_BR\n"
  9. "MIME-Version: 1.0\n"
  10. "Content-Type: text/plain; charset=UTF-8\n"
  11. "Content-Transfer-Encoding: 8bit\n"
  12. "Generated-By: pygettext.py 1.5\n"
  13. "X-Generator: Poedit 2.2.3\n"
  14. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  15. "X-Poedit-Basepath: ../../..\n"
  16. "X-Poedit-SearchPath-0: .\n"
  17. "X-Poedit-SearchPathExcluded-0: build\n"
  18. "X-Poedit-SearchPathExcluded-1: doc\n"
  19. "X-Poedit-SearchPathExcluded-2: tests\n"
  20. #: FlatCAMApp.py:1113
  21. msgid "Could not find the Language files. The App strings are missing."
  22. msgstr "Não foi possível encontrar os arquivos de idioma. Estão faltando as "
  23. "strings do aplicativo."
  24. #: FlatCAMApp.py:1655
  25. msgid "Detachable Tabs"
  26. msgstr "Abas Destacáveis"
  27. #: FlatCAMApp.py:2067
  28. msgid ""
  29. "Open Source Software - Type help to get started\n"
  30. "\n"
  31. msgstr "Software de Código Aberto - Digite help para iniciar\n\n"
  32. #: FlatCAMApp.py:2270 FlatCAMApp.py:7220
  33. msgid "New Project - Not saved"
  34. msgstr "Novo Projeto - Não salvo"
  35. #: FlatCAMApp.py:2320 ObjectCollection.py:80 flatcamTools/ToolImage.py:218
  36. #: flatcamTools/ToolPcbWizard.py:301 flatcamTools/ToolPcbWizard.py:324
  37. msgid "Open cancelled."
  38. msgstr "Abrir cancelado."
  39. #: FlatCAMApp.py:2335
  40. msgid "Open Config file failed."
  41. msgstr "Falha ao abrir o arquivo de Configuração."
  42. #: FlatCAMApp.py:2349
  43. msgid "Open Script file failed."
  44. msgstr "Falha ao abrir o arquivo de Script."
  45. #: FlatCAMApp.py:2366
  46. msgid "Open Excellon file failed."
  47. msgstr "Falha ao abrir o arquivo Excellon."
  48. #: FlatCAMApp.py:2377
  49. msgid "Open GCode file failed."
  50. msgstr "Falha ao abrir o arquivo G-Code."
  51. #: FlatCAMApp.py:2388
  52. msgid "Open Gerber file failed."
  53. msgstr "Falha ao abrir o arquivo Gerber."
  54. #: FlatCAMApp.py:2652
  55. msgid "Select a Geometry, Gerber or Excellon Object to edit."
  56. msgstr "Selecione um Objeto Geometria, Gerber ou Excellon para editar."
  57. #: FlatCAMApp.py:2666
  58. msgid ""
  59. "Simultanoeus editing of tools geometry in a MultiGeo Geometry is not "
  60. "possible.\n"
  61. "Edit only one geometry at a time."
  62. msgstr "A edição simultânea de ferramentas geometria em uma "
  63. "Geometria MultiGeo não é possível. \n"
  64. "Edite apenas uma geometria por vez."
  65. #: FlatCAMApp.py:2721
  66. msgid "Editor is activated ..."
  67. msgstr "Editor está ativado ..."
  68. #: FlatCAMApp.py:2739
  69. msgid "Do you want to save the edited object?"
  70. msgstr "Você quer salvar o objeto editado?"
  71. #: FlatCAMApp.py:2740 flatcamGUI/FlatCAMGUI.py:1721
  72. msgid "Close Editor"
  73. msgstr "Fechar Editor"
  74. #: FlatCAMApp.py:2743 FlatCAMApp.py:4028 FlatCAMApp.py:6224 FlatCAMApp.py:7128
  75. #: FlatCAMTranslation.py:96 FlatCAMTranslation.py:169
  76. #: flatcamGUI/FlatCAMGUI.py:3996
  77. msgid "Yes"
  78. msgstr "Sim"
  79. #: FlatCAMApp.py:2744 FlatCAMApp.py:4029 FlatCAMApp.py:6225 FlatCAMApp.py:7129
  80. #: FlatCAMTranslation.py:97 FlatCAMTranslation.py:170
  81. #: flatcamGUI/FlatCAMGUI.py:3997 flatcamGUI/FlatCAMGUI.py:6517
  82. #: flatcamGUI/FlatCAMGUI.py:6877 flatcamTools/ToolNonCopperClear.py:171
  83. #: flatcamTools/ToolPaint.py:144
  84. msgid "No"
  85. msgstr "Não"
  86. #: FlatCAMApp.py:2745 FlatCAMApp.py:4030 FlatCAMApp.py:4719 FlatCAMApp.py:5720
  87. #: FlatCAMApp.py:7130
  88. msgid "Cancel"
  89. msgstr "Cancelar"
  90. #: FlatCAMApp.py:2773
  91. msgid "Object empty after edit."
  92. msgstr "Objeto vazio após a edição."
  93. #: FlatCAMApp.py:2796 FlatCAMApp.py:2817 FlatCAMApp.py:2830
  94. msgid "Select a Gerber, Geometry or Excellon Object to update."
  95. msgstr "Selecione um objeto Gerber, Geometria ou Excellon para atualizar."
  96. #: FlatCAMApp.py:2800
  97. msgid "is updated, returning to App..."
  98. msgstr "está atualizado, retornando ao App..."
  99. #: FlatCAMApp.py:3186 FlatCAMApp.py:3240 FlatCAMApp.py:3889
  100. msgid "Could not load defaults file."
  101. msgstr "Não foi possível carregar o arquivo com os padrões."
  102. #: FlatCAMApp.py:3199 FlatCAMApp.py:3249 FlatCAMApp.py:3899
  103. msgid "Failed to parse defaults file."
  104. msgstr "Falha ao analisar o arquivo com os padrões."
  105. #: FlatCAMApp.py:3220 FlatCAMApp.py:3224
  106. msgid "Import FlatCAM Preferences"
  107. msgstr "Importar Preferências do FlatCAM"
  108. #: FlatCAMApp.py:3231
  109. msgid "FlatCAM preferences import cancelled."
  110. msgstr "Importação de preferências do FlatCAM cancelada."
  111. #: FlatCAMApp.py:3254
  112. msgid "Imported Defaults from"
  113. msgstr "Padrões importados de"
  114. #: FlatCAMApp.py:3274 FlatCAMApp.py:3279
  115. msgid "Export FlatCAM Preferences"
  116. msgstr "Exportar preferências do FlatCAM"
  117. #: FlatCAMApp.py:3287
  118. msgid "FlatCAM preferences export cancelled."
  119. msgstr "Exportação de preferências do FlatCAM cancelada."
  120. #: FlatCAMApp.py:3296 FlatCAMApp.py:5531 FlatCAMApp.py:8113 FlatCAMApp.py:8229
  121. #: FlatCAMApp.py:8355 FlatCAMApp.py:8414 FlatCAMApp.py:8528 FlatCAMApp.py:8657
  122. #: FlatCAMObj.py:6167 flatcamTools/ToolSolderPaste.py:1428
  123. msgid ""
  124. "Permission denied, saving not possible.\n"
  125. "Most likely another app is holding the file open and not accessible."
  126. msgstr "Permissão negada, não é possível salvar.\n"
  127. "É provável que outro aplicativo esteja mantendo o arquivo aberto e "
  128. "não acessível."
  129. #: FlatCAMApp.py:3309
  130. msgid "Could not load preferences file."
  131. msgstr "Não foi possível carregar o arquivo com as preferências."
  132. #: FlatCAMApp.py:3329 FlatCAMApp.py:3945
  133. msgid "Failed to write defaults to file."
  134. msgstr "Falha ao gravar os padrões no arquivo."
  135. #: FlatCAMApp.py:3335
  136. msgid "Exported preferences to"
  137. msgstr "Preferências exportadas para"
  138. #: FlatCAMApp.py:3352
  139. msgid "FlatCAM Preferences Folder opened."
  140. msgstr "Pasta com Preferências FlatCAM aberta."
  141. #: FlatCAMApp.py:3425
  142. msgid "Failed to open recent files file for writing."
  143. msgstr "Falha ao abrir o arquivo com lista de arquivos recentes para gravação."
  144. #: FlatCAMApp.py:3436
  145. msgid "Failed to open recent projects file for writing."
  146. msgstr "Falha ao abrir o arquivo com lista de projetos recentes para gravação."
  147. #: FlatCAMApp.py:3519 camlib.py:4806 flatcamTools/ToolSolderPaste.py:1214
  148. msgid "An internal error has ocurred. See shell.\n"
  149. msgstr "Ocorreu um erro interno. Veja shell (linha de comando).\n"
  150. #: FlatCAMApp.py:3520
  151. #, python-brace-format
  152. msgid ""
  153. "Object ({kind}) failed because: {error} \n"
  154. "\n"
  155. msgstr "Objeto ({kind}) falhou porque: {error} \n"
  156. "\n"
  157. #: FlatCAMApp.py:3541
  158. msgid "Converting units to "
  159. msgstr "Convertendo unidades para "
  160. #: FlatCAMApp.py:3637 FlatCAMApp.py:3640 FlatCAMApp.py:3643 FlatCAMApp.py:3646
  161. #, python-brace-format
  162. msgid ""
  163. "[selected] {kind} created/selected: <span style=\"color:{color};\">{name}</"
  164. "span>"
  165. msgstr "[selected] {kind} criado/selecionado: <span style =\"color:{color};\">{name}"
  166. "</span>"
  167. #: FlatCAMApp.py:3663 FlatCAMApp.py:5787 FlatCAMObj.py:225 FlatCAMObj.py:240
  168. #: FlatCAMObj.py:256 FlatCAMObj.py:336 flatcamTools/ToolMove.py:187
  169. msgid "Plotting"
  170. msgstr "Plotando"
  171. #: FlatCAMApp.py:3782
  172. #, python-brace-format
  173. msgid ""
  174. "<font size=8><B>FlatCAM</B></font><BR>Version {version} {beta} ({date}) - "
  175. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  176. "<BR><BR><B> License: </B><BR>Licensed under MIT license (2014 - 2019)<BR>by "
  177. "(c)Juan Pablo Caram <BR><BR><B> Programmers:</B><BR>Denis Hayrullin<BR>Kamil "
  178. "Sopko<BR>Marius Stanciu<BR>Matthieu Berthomé<BR>and many others found <a "
  179. "href = \"https://bitbucket.org/jpcgt/flatcam/pull-requests/?state=MERGED"
  180. "\">here.</a><BR><BR><B>Development</B> is done <a href = \"https://bitbucket."
  181. "org/jpcgt/flatcam/src/Beta/\">here.</a><BR><b>DOWNLOAD</B> area <a href = "
  182. "\"https://bitbucket.org/jpcgt/flatcam/downloads/\">here.</a><BR>"
  183. msgstr ""
  184. "<font size=8><B>FlatCAM</B></font><BR>Versão {version} {beta} ({date}) - "
  185. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  186. "<BR><BR><B> License: </B><BR>Licensed under MIT license (2014 - 2019)<BR>by "
  187. "(c)Juan Pablo Caram<BR><BR><B>Programadores:</B><BR>Denis Hayrullin<BR>Kamil " "Sopko<BR>Marius Stanciu<BR>Matthieu Berthomé<BR>e muitos outros encontrados <a " "href = \"https://bitbucket.org/jpcgt/flatcam/pull-requests/?state=MERGED"
  188. "\">aqui.</a><BR><BR>O <B>desenvolvimento</B> é feito <a href = \"https://bitbucket."
  189. "org/jpcgt/flatcam/src/Beta/\">aqui.</a><BR>Área de <B>DOWNLOAD</B> <a href = \"https://"
  190. "bitbucket.org/jpcgt/flatcam/downloads/\">aqui.</a><BR>"
  191. #: FlatCAMApp.py:3818
  192. msgid "Close"
  193. msgstr "Fechar"
  194. #: FlatCAMApp.py:3950 FlatCAMApp.py:6234
  195. msgid "Preferences saved."
  196. msgstr "Preferências salvas."
  197. #: FlatCAMApp.py:3978
  198. msgid "Could not load factory defaults file."
  199. msgstr "Não foi possível carregar o arquivo de padrões de fábrica."
  200. #: FlatCAMApp.py:3988
  201. msgid "Failed to parse factory defaults file."
  202. msgstr "Falha ao analisar o arquivo de padrões de fábrica."
  203. #: FlatCAMApp.py:4003
  204. msgid "Failed to write factory defaults to file."
  205. msgstr "Falha ao gravar os padrões de fábrica no arquivo."
  206. #: FlatCAMApp.py:4007
  207. msgid "Factory defaults saved."
  208. msgstr "Padrões de fábrica salvos."
  209. #: FlatCAMApp.py:4018
  210. msgid "Application is saving the project. Please wait ..."
  211. msgstr "O aplicativo está salvando o projeto. Por favor, espere ..."
  212. #: FlatCAMApp.py:4023 FlatCAMTranslation.py:164
  213. msgid ""
  214. "There are files/objects modified in FlatCAM. \n"
  215. "Do you want to Save the project?"
  216. msgstr ""
  217. "Existem arquivos/objetos modificados no FlatCAM. \n"
  218. "Você quer salvar o projeto?"
  219. #: FlatCAMApp.py:4026 FlatCAMApp.py:7126 FlatCAMTranslation.py:167
  220. msgid "Save changes"
  221. msgstr "Salvar alterações"
  222. #: FlatCAMApp.py:4237
  223. msgid "[success] Selected Excellon file extensions registered with FlatCAM."
  224. msgstr "As extensões de arquivo Excellon selecionadas foram registradas para o FlatCAM"
  225. #: FlatCAMApp.py:4259
  226. msgid "Selected GCode file extensions registered with FlatCAM."
  227. msgstr "As extensões de arquivo G-Code selecionadas foram registradas para o FlatCAM"
  228. #: FlatCAMApp.py:4281
  229. msgid "Selected Gerber file extensions registered with FlatCAM."
  230. msgstr "As extensões de arquivo Gerber selecionadas foram registradas para o FlatCAM"
  231. #: FlatCAMApp.py:4305
  232. msgid ""
  233. "Failed join. The Geometry objects are of different types.\n"
  234. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  235. "is to convert from one to another and retry joining \n"
  236. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  237. "be lost and the result may not be what was expected. \n"
  238. "Check the generated GCODE."
  239. msgstr ""
  240. "Falha ao unir. Os objetos Geometria são de tipos diferentes.\n"
  241. "Pelo menos um é do tipo MultiGeo e o outro é do tipo SingleGeo. Uma "
  242. "possibilidade é converter de um para outro e tentar unir,\n"
  243. "mas no caso de converter de MultiGeo para SingleGeo, as informações podem "
  244. "ser perdidas e o resultado pode não ser o esperado.\n"
  245. "Verifique o G-CODE gerado."
  246. #: FlatCAMApp.py:4347
  247. msgid "Failed. Excellon joining works only on Excellon objects."
  248. msgstr "Falha. A união de Excellon funciona apenas em objetos Excellon."
  249. #: FlatCAMApp.py:4370
  250. msgid "Failed. Gerber joining works only on Gerber objects."
  251. msgstr "Falha. A união de Gerber funciona apenas em objetos Gerber."
  252. #: FlatCAMApp.py:4395 FlatCAMApp.py:4432
  253. msgid "Failed. Select a Geometry Object and try again."
  254. msgstr "Falha. Selecione um Objeto de Geometria e tente novamente."
  255. #: FlatCAMApp.py:4400
  256. msgid "Expected a FlatCAMGeometry, got"
  257. msgstr "Geometria FlatCAM esperada, recebido"
  258. #: FlatCAMApp.py:4414
  259. msgid "A Geometry object was converted to MultiGeo type."
  260. msgstr "Um objeto Geometria foi convertido para o tipo MultiGeo."
  261. #: FlatCAMApp.py:4437
  262. #, python-format
  263. msgid "Expected a FlatCAMGeometry, got %s"
  264. msgstr "Geometria FlatCAM esperada, recebido %s"
  265. #: FlatCAMApp.py:4452
  266. msgid "A Geometry object was converted to SingleGeo type."
  267. msgstr "Um objeto Geometria foi convertido para o tipo SingleGeo."
  268. #: FlatCAMApp.py:4713
  269. msgid "Toggle Units"
  270. msgstr "Alternar Unidades"
  271. #: FlatCAMApp.py:4715
  272. msgid "Change project units ..."
  273. msgstr "Alterar unidades do projeto ..."
  274. #: FlatCAMApp.py:4716
  275. msgid ""
  276. "Changing the units of the project causes all geometrical properties of all "
  277. "objects to be scaled accordingly.\n"
  278. "Continue?"
  279. msgstr ""
  280. "Alterar as unidades do projeto fará com que todas as propriedades "
  281. "geométricas de todos os objetos sejam redimensionadas.\n"
  282. "Continuar?"
  283. #: FlatCAMApp.py:4718 FlatCAMApp.py:5614 FlatCAMApp.py:5719 FlatCAMApp.py:7419
  284. #: FlatCAMApp.py:7433 FlatCAMApp.py:7688 FlatCAMApp.py:7699
  285. msgid "Ok"
  286. msgstr "Ok"
  287. #: FlatCAMApp.py:4767
  288. #, python-format
  289. msgid "Converted units to %s"
  290. msgstr "Unidades convertidas para %s"
  291. #: FlatCAMApp.py:4779
  292. msgid " Units conversion cancelled."
  293. msgstr "Conversão de unidades cancelada."
  294. #: FlatCAMApp.py:5477
  295. msgid "Open file"
  296. msgstr "Abrir arquivo"
  297. #: FlatCAMApp.py:5508 FlatCAMApp.py:5513
  298. msgid "Export G-Code ..."
  299. msgstr "Exportar G-Code ..."
  300. #: FlatCAMApp.py:5517
  301. msgid "Export Code cancelled."
  302. msgstr "Exportar G-Code cancelado."
  303. #: FlatCAMApp.py:5527 FlatCAMObj.py:6163 flatcamTools/ToolSolderPaste.py:1424
  304. msgid "No such file or directory"
  305. msgstr "Nenhum arquivo ou diretório"
  306. #: FlatCAMApp.py:5539
  307. #, python-format
  308. msgid "Saved to: %s"
  309. msgstr "Salvo em: %s"
  310. #: FlatCAMApp.py:5602 FlatCAMApp.py:5635 FlatCAMApp.py:5646 FlatCAMApp.py:5657
  311. #: flatcamTools/ToolNonCopperClear.py:915 flatcamTools/ToolSolderPaste.py:774
  312. msgid "Please enter a tool diameter with non-zero value, in Float format."
  313. msgstr "Insira um diâmetro de ferramenta com valor diferente de "
  314. "zero, no formato Flutuante.""
  315. #: FlatCAMApp.py:5607 FlatCAMApp.py:5640 FlatCAMApp.py:5662
  316. msgid "Adding Tool cancelled"
  317. msgstr "Adicionar ferramenta cancelada ..."
  318. #: FlatCAMApp.py:5610
  319. msgid ""
  320. "Adding Tool works only when Advanced is checked.\n"
  321. "Go to Preferences -> General - Show Advanced Options."
  322. msgstr ""
  323. "Adicionar Ferramenta funciona somente no modo Avançado.\n"
  324. "Vá em Preferências -> Geral - Mostrar Opções Avançadas."
  325. #: FlatCAMApp.py:5651 flatcamGUI/FlatCAMGUI.py:3168
  326. msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
  327. msgstr "Adicionar ferramenta cancelada ..."
  328. #: FlatCAMApp.py:5714
  329. msgid "Delete objects"
  330. msgstr "Excluir objetos"
  331. #: FlatCAMApp.py:5717
  332. msgid ""
  333. "Are you sure you want to permanently delete\n"
  334. "the selected objects?"
  335. msgstr ""
  336. "Você tem certeza de que deseja excluir permanentemente\n"
  337. "os objetos selecionados?"
  338. #: FlatCAMApp.py:5747
  339. msgid "Object(s) deleted"
  340. msgstr "Objeto(s) excluído(s)"
  341. #: FlatCAMApp.py:5751
  342. msgid "Failed. No object(s) selected..."
  343. msgstr "Falha. Nenhum objeto selecionado..."
  344. #: FlatCAMApp.py:5753
  345. msgid "Save the work in Editor and try again ..."
  346. msgstr "Salve o trabalho no Editor e tente novamente ..."
  347. #: FlatCAMApp.py:5771
  348. msgid "Object deleted"
  349. msgstr "Objeto excluído"
  350. #: FlatCAMApp.py:5795
  351. msgid "Click to set the origin ..."
  352. msgstr "Clique para definir a origem ..."
  353. #: FlatCAMApp.py:5819
  354. msgid "Setting Origin..."
  355. msgstr "Definindo Origem..."
  356. #: FlatCAMApp.py:5831
  357. msgid "Origin set"
  358. msgstr "Origem definida"
  359. #: FlatCAMApp.py:5846
  360. msgid "Jump to ..."
  361. msgstr "Pular para ..."
  362. #: FlatCAMApp.py:5847
  363. msgid "Enter the coordinates in format X,Y:"
  364. msgstr "Digite as coordenadas no formato X,Y:"
  365. #: FlatCAMApp.py:5854
  366. msgid "Wrong coordinates. Enter coordinates in format: X,Y"
  367. msgstr "Coordenadas erradas. Insira as coordenadas no formato X,Y"
  368. #: FlatCAMApp.py:5873 flatcamEditors/FlatCAMExcEditor.py:3445
  369. #: flatcamEditors/FlatCAMExcEditor.py:3453
  370. #: flatcamEditors/FlatCAMGeoEditor.py:3791
  371. #: flatcamEditors/FlatCAMGeoEditor.py:3806
  372. #: flatcamEditors/FlatCAMGrbEditor.py:1067
  373. #: flatcamEditors/FlatCAMGrbEditor.py:1171
  374. #: flatcamEditors/FlatCAMGrbEditor.py:1445
  375. #: flatcamEditors/FlatCAMGrbEditor.py:1703
  376. #: flatcamEditors/FlatCAMGrbEditor.py:4182
  377. #: flatcamEditors/FlatCAMGrbEditor.py:4197
  378. msgid "Done."
  379. msgstr "Pronto"
  380. #: FlatCAMApp.py:6007 FlatCAMApp.py:6075
  381. msgid "No object is selected. Select an object and try again."
  382. msgstr "Nenhum objeto está selecionado. Selecione um objeto e tente "
  383. "novamente."
  384. #: FlatCAMApp.py:6095
  385. msgid ""
  386. "Aborting. The current task will be gracefully closed as soon as possible..."
  387. msgstr "Abortando. A tarefa atual será fechada normalmente o mais rápido possível ..."
  388. #: FlatCAMApp.py:6101
  389. msgid "The current task was gracefully closed on user request..."
  390. msgstr "A tarefa atual foi fechada normalmente mediante solicitação do usuário ..."
  391. #: FlatCAMApp.py:6118 flatcamGUI/GUIElements.py:1443
  392. msgid "Preferences"
  393. msgstr "Preferências"
  394. #: FlatCAMApp.py:6185
  395. msgid "Preferences edited but not saved."
  396. msgstr "Preferências editadas, mas não salvas."
  397. #: FlatCAMApp.py:6219
  398. msgid ""
  399. "One or more values are changed.\n"
  400. "Do you want to save the Preferences?"
  401. msgstr ""
  402. "Um ou mais valores foram alterados.\n"
  403. "Você deseja salvar as preferências?"
  404. #: FlatCAMApp.py:6221 flatcamGUI/FlatCAMGUI.py:198 flatcamGUI/FlatCAMGUI.py:989
  405. msgid "Save Preferences"
  406. msgstr "Salvar Preferências"
  407. #: FlatCAMApp.py:6250
  408. msgid "No object selected to Flip on Y axis."
  409. msgstr "Nenhum objeto selecionado para Espelhar no eixo Y."
  410. #: FlatCAMApp.py:6276
  411. msgid "Flip on Y axis done."
  412. msgstr "Espelhado no eixo Y."
  413. #: FlatCAMApp.py:6279 FlatCAMApp.py:6322
  414. #: flatcamEditors/FlatCAMGrbEditor.py:5624
  415. msgid "Flip action was not executed."
  416. msgstr "A ação de espelhamento não foi executada."
  417. #: FlatCAMApp.py:6293
  418. msgid "No object selected to Flip on X axis."
  419. msgstr "Nenhum objeto selecionado para Espelhar no eixo X."
  420. #: FlatCAMApp.py:6319
  421. msgid "Flip on X axis done."
  422. msgstr "Espelhado no eixo X."
  423. #: FlatCAMApp.py:6336
  424. msgid "No object selected to Rotate."
  425. msgstr "Nenhum objeto selecionado para Girar."
  426. #: FlatCAMApp.py:6339 FlatCAMApp.py:6387 FlatCAMApp.py:6420
  427. msgid "Transform"
  428. msgstr "Transformar"
  429. #: FlatCAMApp.py:6339 FlatCAMApp.py:6387 FlatCAMApp.py:6420
  430. msgid "Enter the Angle value:"
  431. msgstr "Digite o valor do Ângulo:"
  432. #: FlatCAMApp.py:6370
  433. msgid "Rotation done."
  434. msgstr "Rotação realizada."
  435. #: FlatCAMApp.py:6373
  436. msgid "Rotation movement was not executed."
  437. msgstr "O movimento de rotação não foi executado."
  438. #: FlatCAMApp.py:6385
  439. msgid "No object selected to Skew/Shear on X axis."
  440. msgstr "Nenhum objeto selecionado para Inclinar no eixo X."
  441. #: FlatCAMApp.py:6407
  442. msgid "Skew on X axis done."
  443. msgstr "Inclinação no eixo X concluída."
  444. #: FlatCAMApp.py:6418
  445. msgid "No object selected to Skew/Shear on Y axis."
  446. msgstr "Nenhum objeto selecionado para Inclinar no eixo Y."
  447. #: FlatCAMApp.py:6440
  448. msgid "Skew on Y axis done."
  449. msgstr "Inclinação no eixo Y concluída."
  450. #: FlatCAMApp.py:6491
  451. msgid "Grid On/Off"
  452. msgstr "Liga/Desliga a Grade"
  453. #: FlatCAMApp.py:6504 flatcamEditors/FlatCAMGeoEditor.py:940
  454. #: flatcamEditors/FlatCAMGrbEditor.py:2477
  455. #: flatcamEditors/FlatCAMGrbEditor.py:5134 flatcamGUI/ObjectUI.py:1053
  456. #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:207
  457. #: flatcamTools/ToolNonCopperClear.py:237 flatcamTools/ToolPaint.py:176
  458. #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:483
  459. #: flatcamTools/ToolTransform.py:338
  460. msgid "Add"
  461. msgstr "Adicionar"
  462. #: FlatCAMApp.py:6505 FlatCAMObj.py:3566
  463. #: flatcamEditors/FlatCAMGrbEditor.py:2482 flatcamGUI/FlatCAMGUI.py:545
  464. #: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:1719
  465. #: flatcamGUI/FlatCAMGUI.py:2094 flatcamGUI/ObjectUI.py:1069
  466. #: flatcamTools/ToolNonCopperClear.py:249 flatcamTools/ToolPaint.py:188
  467. #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:485
  468. msgid "Delete"
  469. msgstr ""
  470. #: FlatCAMApp.py:6518
  471. msgid "New Grid ..."
  472. msgstr ""
  473. #: FlatCAMApp.py:6519
  474. msgid "Enter a Grid Value:"
  475. msgstr ""
  476. #: FlatCAMApp.py:6527 FlatCAMApp.py:6554
  477. msgid "Please enter a grid value with non-zero value, in Float format."
  478. msgstr ""
  479. #: FlatCAMApp.py:6533
  480. msgid "New Grid added"
  481. msgstr ""
  482. #: FlatCAMApp.py:6536
  483. msgid "Grid already exists"
  484. msgstr ""
  485. #: FlatCAMApp.py:6539
  486. msgid "Adding New Grid cancelled"
  487. msgstr ""
  488. #: FlatCAMApp.py:6561
  489. msgid " Grid Value does not exist"
  490. msgstr ""
  491. #: FlatCAMApp.py:6564
  492. msgid "Grid Value deleted"
  493. msgstr ""
  494. #: FlatCAMApp.py:6567
  495. msgid "Delete Grid value cancelled"
  496. msgstr ""
  497. #: FlatCAMApp.py:6573
  498. msgid "Key Shortcut List"
  499. msgstr ""
  500. #: FlatCAMApp.py:6607
  501. msgid " No object selected to copy it's name"
  502. msgstr ""
  503. #: FlatCAMApp.py:6611
  504. msgid "Name copied on clipboard ..."
  505. msgstr ""
  506. #: FlatCAMApp.py:6654 flatcamEditors/FlatCAMGrbEditor.py:4122
  507. msgid "Coordinates copied to clipboard."
  508. msgstr ""
  509. #: FlatCAMApp.py:6907 FlatCAMApp.py:6911 FlatCAMApp.py:6915 FlatCAMApp.py:6919
  510. #: FlatCAMApp.py:6935 FlatCAMApp.py:6939 FlatCAMApp.py:6943 FlatCAMApp.py:6947
  511. #: FlatCAMApp.py:6987 FlatCAMApp.py:6990 FlatCAMApp.py:6993 FlatCAMApp.py:6996
  512. #: ObjectCollection.py:725 ObjectCollection.py:728 ObjectCollection.py:731
  513. #: ObjectCollection.py:734
  514. #, python-brace-format
  515. msgid "[selected]<span style=\"color:{color};\">{name}</span> selected"
  516. msgstr ""
  517. #: FlatCAMApp.py:7123
  518. msgid ""
  519. "There are files/objects opened in FlatCAM.\n"
  520. "Creating a New project will delete them.\n"
  521. "Do you want to Save the project?"
  522. msgstr ""
  523. #: FlatCAMApp.py:7145
  524. msgid "New Project created"
  525. msgstr ""
  526. #: FlatCAMApp.py:7265 FlatCAMApp.py:7269 flatcamGUI/FlatCAMGUI.py:626
  527. #: flatcamGUI/FlatCAMGUI.py:1970
  528. msgid "Open Gerber"
  529. msgstr ""
  530. #: FlatCAMApp.py:7277
  531. msgid "Open Gerber cancelled."
  532. msgstr ""
  533. #: FlatCAMApp.py:7297 FlatCAMApp.py:7301 flatcamGUI/FlatCAMGUI.py:627
  534. #: flatcamGUI/FlatCAMGUI.py:1971
  535. msgid "Open Excellon"
  536. msgstr ""
  537. #: FlatCAMApp.py:7308
  538. msgid " Open Excellon cancelled."
  539. msgstr ""
  540. #: FlatCAMApp.py:7331 FlatCAMApp.py:7335
  541. msgid "Open G-Code"
  542. msgstr ""
  543. #: FlatCAMApp.py:7343
  544. msgid "Open G-Code cancelled."
  545. msgstr ""
  546. #: FlatCAMApp.py:7360 FlatCAMApp.py:7363
  547. msgid "Open Project"
  548. msgstr ""
  549. #: FlatCAMApp.py:7372
  550. msgid "Open Project cancelled."
  551. msgstr ""
  552. #: FlatCAMApp.py:7391 FlatCAMApp.py:7394
  553. msgid "Open Configuration File"
  554. msgstr ""
  555. #: FlatCAMApp.py:7399
  556. msgid "Open Config cancelled."
  557. msgstr ""
  558. #: FlatCAMApp.py:7415 FlatCAMApp.py:7684 FlatCAMApp.py:10115
  559. #: FlatCAMApp.py:10136 FlatCAMApp.py:10158 FlatCAMApp.py:10181
  560. msgid "No object selected."
  561. msgstr ""
  562. #: FlatCAMApp.py:7416 FlatCAMApp.py:7685
  563. msgid "Please Select a Geometry object to export"
  564. msgstr ""
  565. #: FlatCAMApp.py:7430
  566. msgid "Only Geometry, Gerber and CNCJob objects can be used."
  567. msgstr ""
  568. #: FlatCAMApp.py:7443 FlatCAMApp.py:7447
  569. msgid "Export SVG"
  570. msgstr ""
  571. #: FlatCAMApp.py:7453
  572. msgid " Export SVG cancelled."
  573. msgstr ""
  574. #: FlatCAMApp.py:7473
  575. msgid "Data must be a 3D array with last dimension 3 or 4"
  576. msgstr ""
  577. #: FlatCAMApp.py:7479 FlatCAMApp.py:7483
  578. msgid "Export PNG Image"
  579. msgstr ""
  580. #: FlatCAMApp.py:7488
  581. msgid "Export PNG cancelled."
  582. msgstr ""
  583. #: FlatCAMApp.py:7508
  584. msgid "No object selected. Please select an Gerber object to export."
  585. msgstr ""
  586. #: FlatCAMApp.py:7514 FlatCAMApp.py:7646
  587. msgid "Failed. Only Gerber objects can be saved as Gerber files..."
  588. msgstr ""
  589. #: FlatCAMApp.py:7526
  590. msgid "Save Gerber source file"
  591. msgstr ""
  592. #: FlatCAMApp.py:7532
  593. msgid "Save Gerber source file cancelled."
  594. msgstr ""
  595. #: FlatCAMApp.py:7552
  596. msgid "No object selected. Please select an Excellon object to export."
  597. msgstr ""
  598. #: FlatCAMApp.py:7558 FlatCAMApp.py:7602
  599. msgid "Failed. Only Excellon objects can be saved as Excellon files..."
  600. msgstr ""
  601. #: FlatCAMApp.py:7566 FlatCAMApp.py:7570
  602. msgid "Save Excellon source file"
  603. msgstr ""
  604. #: FlatCAMApp.py:7576
  605. msgid "Saving Excellon source file cancelled."
  606. msgstr ""
  607. #: FlatCAMApp.py:7596
  608. msgid "No object selected. Please Select an Excellon object to export."
  609. msgstr ""
  610. #: FlatCAMApp.py:7610 FlatCAMApp.py:7614
  611. msgid "Export Excellon"
  612. msgstr ""
  613. #: FlatCAMApp.py:7620
  614. msgid "Export Excellon cancelled."
  615. msgstr ""
  616. #: FlatCAMApp.py:7640
  617. msgid "No object selected. Please Select an Gerber object to export."
  618. msgstr ""
  619. #: FlatCAMApp.py:7654 FlatCAMApp.py:7658
  620. msgid "Export Gerber"
  621. msgstr ""
  622. #: FlatCAMApp.py:7664
  623. msgid "Export Gerber cancelled."
  624. msgstr ""
  625. #: FlatCAMApp.py:7696
  626. msgid "Only Geometry objects can be used."
  627. msgstr ""
  628. #: FlatCAMApp.py:7710 FlatCAMApp.py:7714
  629. msgid "Export DXF"
  630. msgstr ""
  631. #: FlatCAMApp.py:7721
  632. msgid "Export DXF cancelled."
  633. msgstr ""
  634. #: FlatCAMApp.py:7741 FlatCAMApp.py:7744
  635. msgid "Import SVG"
  636. msgstr ""
  637. #: FlatCAMApp.py:7754
  638. msgid "Open SVG cancelled."
  639. msgstr ""
  640. #: FlatCAMApp.py:7773 FlatCAMApp.py:7777
  641. msgid "Import DXF"
  642. msgstr ""
  643. #: FlatCAMApp.py:7787
  644. msgid "Open DXF cancelled."
  645. msgstr ""
  646. #: FlatCAMApp.py:7805
  647. #, python-format
  648. msgid "%s"
  649. msgstr ""
  650. #: FlatCAMApp.py:7826
  651. msgid "Select an Gerber or Excellon file to view it's source file."
  652. msgstr ""
  653. #: FlatCAMApp.py:7834
  654. msgid "There is no selected object for which to see it's source file code."
  655. msgstr ""
  656. #: FlatCAMApp.py:7842
  657. msgid "Source Editor"
  658. msgstr ""
  659. #: FlatCAMApp.py:7853
  660. msgid "App.on_view_source() -->"
  661. msgstr ""
  662. #: FlatCAMApp.py:7865 FlatCAMApp.py:9110 FlatCAMObj.py:5946
  663. #: flatcamTools/ToolSolderPaste.py:1304
  664. msgid "Code Editor"
  665. msgstr ""
  666. #: FlatCAMApp.py:7877
  667. msgid "Script Editor"
  668. msgstr ""
  669. #: FlatCAMApp.py:7880
  670. msgid ""
  671. "#\n"
  672. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  673. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  674. "html\n"
  675. "#\n"
  676. "\n"
  677. "# FlatCAM commands list:\n"
  678. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  679. "AlignDrillGrid, ClearShell, Cncjob,\n"
  680. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  681. "GeoUnion, GetNames, GetSys,\n"
  682. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  683. "ListSys, MillHoles, Mirror, New,\n"
  684. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  685. "Options, Paint, Panelize,\n"
  686. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  687. "SubtractRectangle, Version,\n"
  688. "# WriteGCode\n"
  689. "#\n"
  690. "\n"
  691. msgstr ""
  692. #: FlatCAMApp.py:7903 FlatCAMApp.py:7906
  693. msgid "Open TCL script"
  694. msgstr ""
  695. #: FlatCAMApp.py:7915
  696. msgid "Open TCL script cancelled."
  697. msgstr ""
  698. #: FlatCAMApp.py:7928
  699. msgid "App.on_fileopenscript() -->"
  700. msgstr ""
  701. #: FlatCAMApp.py:7954 FlatCAMApp.py:7957
  702. msgid "Run TCL script"
  703. msgstr ""
  704. #: FlatCAMApp.py:7966
  705. msgid "Run TCL script cancelled."
  706. msgstr ""
  707. #: FlatCAMApp.py:8021 FlatCAMApp.py:8025
  708. msgid "Save Project As ..."
  709. msgstr ""
  710. #: FlatCAMApp.py:8022
  711. #, python-brace-format
  712. msgid "{l_save}/Project_{date}"
  713. msgstr ""
  714. #: FlatCAMApp.py:8031
  715. msgid "Save Project cancelled."
  716. msgstr ""
  717. #: FlatCAMApp.py:8079
  718. msgid "Exporting SVG"
  719. msgstr ""
  720. #: FlatCAMApp.py:8121 FlatCAMApp.py:8238 FlatCAMApp.py:8364
  721. msgid "SVG file exported to"
  722. msgstr ""
  723. #: FlatCAMApp.py:8156 FlatCAMApp.py:8287 flatcamTools/ToolPanelize.py:381
  724. msgid "No object Box. Using instead"
  725. msgstr ""
  726. #: FlatCAMApp.py:8241 FlatCAMApp.py:8367
  727. msgid "Generating Film ... Please wait."
  728. msgstr ""
  729. #: FlatCAMApp.py:8536
  730. msgid "Excellon file exported to"
  731. msgstr ""
  732. #: FlatCAMApp.py:8543
  733. msgid "Exporting Excellon"
  734. msgstr ""
  735. #: FlatCAMApp.py:8549 FlatCAMApp.py:8557
  736. msgid "Could not export Excellon file."
  737. msgstr ""
  738. #: FlatCAMApp.py:8665
  739. msgid "Gerber file exported to"
  740. msgstr ""
  741. #: FlatCAMApp.py:8672
  742. msgid "Exporting Gerber"
  743. msgstr ""
  744. #: FlatCAMApp.py:8678 FlatCAMApp.py:8686
  745. msgid "Could not export Gerber file."
  746. msgstr ""
  747. #: FlatCAMApp.py:8729
  748. msgid "DXF file exported to"
  749. msgstr ""
  750. #: FlatCAMApp.py:8735
  751. msgid "Exporting DXF"
  752. msgstr ""
  753. #: FlatCAMApp.py:8741 FlatCAMApp.py:8749
  754. msgid "Could not export DXF file."
  755. msgstr ""
  756. #: FlatCAMApp.py:8770 FlatCAMApp.py:8814 FlatCAMApp.py:8860
  757. msgid ""
  758. "Not supported type is picked as parameter. Only Geometry and Gerber are "
  759. "supported"
  760. msgstr ""
  761. #: FlatCAMApp.py:8780
  762. msgid "Importing SVG"
  763. msgstr ""
  764. #: FlatCAMApp.py:8792 FlatCAMApp.py:8836 FlatCAMApp.py:8881 FlatCAMApp.py:8962
  765. #: FlatCAMApp.py:9029 FlatCAMApp.py:9096
  766. msgid "Opened"
  767. msgstr ""
  768. #: FlatCAMApp.py:8824
  769. msgid "Importing DXF"
  770. msgstr ""
  771. #: FlatCAMApp.py:8868
  772. msgid "Importing Image"
  773. msgstr ""
  774. #: FlatCAMApp.py:8911
  775. msgid "Failed to open file"
  776. msgstr ""
  777. #: FlatCAMApp.py:8916
  778. msgid "Failed to parse file"
  779. msgstr ""
  780. #: FlatCAMApp.py:8923 FlatCAMApp.py:8997 FlatCAMObj.py:4523
  781. #: flatcamEditors/FlatCAMGrbEditor.py:3939 flatcamTools/ToolPcbWizard.py:437
  782. msgid "An internal error has occurred. See shell.\n"
  783. msgstr ""
  784. #: FlatCAMApp.py:8933
  785. msgid "Object is not Gerber file or empty. Aborting object creation."
  786. msgstr ""
  787. #: FlatCAMApp.py:8941
  788. msgid "Opening Gerber"
  789. msgstr ""
  790. #: FlatCAMApp.py:8952
  791. msgid " Open Gerber failed. Probable not a Gerber file."
  792. msgstr ""
  793. #: FlatCAMApp.py:8987 flatcamTools/ToolPcbWizard.py:427
  794. msgid "This is not Excellon file."
  795. msgstr ""
  796. #: FlatCAMApp.py:8991
  797. msgid "Cannot open file"
  798. msgstr ""
  799. #: FlatCAMApp.py:9011 flatcamTools/ToolPDF.py:270
  800. #: flatcamTools/ToolPcbWizard.py:451
  801. msgid "No geometry found in file"
  802. msgstr ""
  803. #: FlatCAMApp.py:9014
  804. msgid "Opening Excellon."
  805. msgstr ""
  806. #: FlatCAMApp.py:9021
  807. msgid "Open Excellon file failed. Probable not an Excellon file."
  808. msgstr ""
  809. #: FlatCAMApp.py:9060
  810. msgid "Failed to open"
  811. msgstr ""
  812. #: FlatCAMApp.py:9071
  813. msgid "This is not GCODE"
  814. msgstr ""
  815. #: FlatCAMApp.py:9077
  816. msgid "Opening G-Code."
  817. msgstr ""
  818. #: FlatCAMApp.py:9086
  819. msgid ""
  820. "Failed to create CNCJob Object. Probable not a GCode file.\n"
  821. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  822. "processing"
  823. msgstr ""
  824. #: FlatCAMApp.py:9128
  825. msgid "Failed to open config file"
  826. msgstr ""
  827. #: FlatCAMApp.py:9149
  828. msgid "Loading Project ... Please Wait ..."
  829. msgstr ""
  830. #: FlatCAMApp.py:9157 FlatCAMApp.py:9176
  831. msgid "Failed to open project file"
  832. msgstr ""
  833. #: FlatCAMApp.py:9200
  834. msgid "Loading Project ... restoring"
  835. msgstr ""
  836. #: FlatCAMApp.py:9210
  837. msgid "Project loaded from"
  838. msgstr ""
  839. #: FlatCAMApp.py:9316
  840. msgid "Available commands:\n"
  841. msgstr ""
  842. #: FlatCAMApp.py:9318
  843. msgid ""
  844. "\n"
  845. "\n"
  846. "Type help <command_name> for usage.\n"
  847. " Example: help open_gerber"
  848. msgstr ""
  849. #: FlatCAMApp.py:9468
  850. msgid "Shows list of commands."
  851. msgstr ""
  852. #: FlatCAMApp.py:9526
  853. msgid "Failed to load recent item list."
  854. msgstr ""
  855. #: FlatCAMApp.py:9534
  856. msgid "Failed to parse recent item list."
  857. msgstr ""
  858. #: FlatCAMApp.py:9545
  859. msgid "Failed to load recent projects item list."
  860. msgstr ""
  861. #: FlatCAMApp.py:9553
  862. msgid "Failed to parse recent project item list."
  863. msgstr ""
  864. #: FlatCAMApp.py:9612 FlatCAMApp.py:9635
  865. msgid "Clear Recent files"
  866. msgstr ""
  867. #: FlatCAMApp.py:9652 flatcamGUI/FlatCAMGUI.py:1006
  868. msgid "<b>Shortcut Key List</b>"
  869. msgstr ""
  870. #: FlatCAMApp.py:9664
  871. #, python-brace-format
  872. msgid ""
  873. "\n"
  874. "<p><span style=\"font-size:{tsize}px\"><strong>Selected Tab - Choose an Item "
  875. "from Project Tab</strong></span></p>\n"
  876. "\n"
  877. "<p><span style=\"font-size:{fsize}px\"><strong>Details</strong>:<br />\n"
  878. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  879. "\n"
  880. "<ol>\n"
  881. "\t<li><span style=\"font-size:{fsize}px\">Loat/Import a Gerber, Excellon, "
  882. "Gcode, DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;"
  883. "s, toolbars, key shortcuts or even dragging and dropping the files on the "
  884. "GUI.<br />\n"
  885. "\t<br />\n"
  886. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  887. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  888. "through the menu/toolbar links offered within the app.</span><br />\n"
  889. "\t&nbsp;</li>\n"
  890. "\t<li><span style=\"font-size:{fsize}px\">Once an object is available in the "
  891. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  892. "strong>(more simpler is to double click the object name in the Project Tab), "
  893. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  894. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  895. ">\n"
  896. "\t<br />\n"
  897. "\tIf the selection of the object is done on the canvas by single click "
  898. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  899. "properties will be displayed into the Selected Tab. Alternatively, double "
  900. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  901. "strong> and populate it even if it was out of focus.<br />\n"
  902. "\t<br />\n"
  903. "\tYou can change the parameters in this screen and the flow direction is "
  904. "like this:<br />\n"
  905. "\t<br />\n"
  906. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  907. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  908. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  909. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  910. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  911. "span></li>\n"
  912. "</ol>\n"
  913. "\n"
  914. "<p><span style=\"font-size:{fsize}px\">A list of key shortcuts is available "
  915. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  916. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  917. "\n"
  918. " "
  919. msgstr ""
  920. #: FlatCAMApp.py:9743
  921. msgid "Failed checking for latest version. Could not connect."
  922. msgstr ""
  923. #: FlatCAMApp.py:9751
  924. msgid "Could not parse information about latest version."
  925. msgstr ""
  926. #: FlatCAMApp.py:9762
  927. msgid "FlatCAM is up to date!"
  928. msgstr ""
  929. #: FlatCAMApp.py:9767
  930. msgid "Newer Version Available"
  931. msgstr ""
  932. #: FlatCAMApp.py:9768
  933. msgid ""
  934. "There is a newer version of FlatCAM available for download:\n"
  935. "\n"
  936. msgstr ""
  937. #: FlatCAMApp.py:9770
  938. msgid "info"
  939. msgstr ""
  940. #: FlatCAMApp.py:9825
  941. msgid "All plots disabled."
  942. msgstr ""
  943. #: FlatCAMApp.py:9832
  944. msgid "All non selected plots disabled."
  945. msgstr ""
  946. #: FlatCAMApp.py:9839
  947. msgid "All plots enabled."
  948. msgstr ""
  949. #: FlatCAMApp.py:9846
  950. msgid "Selected plots enabled..."
  951. msgstr ""
  952. #: FlatCAMApp.py:9855
  953. msgid "Selected plots disabled..."
  954. msgstr ""
  955. #: FlatCAMApp.py:9873
  956. msgid "Enabling plots ..."
  957. msgstr ""
  958. #: FlatCAMApp.py:9907
  959. msgid "Disabling plots ..."
  960. msgstr ""
  961. #: FlatCAMApp.py:9929
  962. msgid "Working ..."
  963. msgstr ""
  964. #: FlatCAMApp.py:9967
  965. msgid "Saving FlatCAM Project"
  966. msgstr ""
  967. #: FlatCAMApp.py:9989 FlatCAMApp.py:10024
  968. msgid "Project saved to"
  969. msgstr ""
  970. #: FlatCAMApp.py:10008
  971. msgid "Failed to verify project file"
  972. msgstr ""
  973. #: FlatCAMApp.py:10008 FlatCAMApp.py:10016 FlatCAMApp.py:10027
  974. msgid "Retry to save it."
  975. msgstr ""
  976. #: FlatCAMApp.py:10016 FlatCAMApp.py:10027
  977. msgid "Failed to parse saved project file"
  978. msgstr ""
  979. #: FlatCAMApp.py:10238
  980. msgid "The user requested a graceful exit of the current task."
  981. msgstr ""
  982. #: FlatCAMObj.py:213
  983. #, python-brace-format
  984. msgid "[success] Name changed from {old} to {new}"
  985. msgstr ""
  986. #: FlatCAMObj.py:222
  987. msgid "Offsetting..."
  988. msgstr ""
  989. #: FlatCAMObj.py:237
  990. msgid "Scaling..."
  991. msgstr ""
  992. #: FlatCAMObj.py:253
  993. msgid "Skewing..."
  994. msgstr ""
  995. #: FlatCAMObj.py:600 FlatCAMObj.py:2293 FlatCAMObj.py:3571 FlatCAMObj.py:5837
  996. msgid "<span style=\"color:green;\"><b>Basic</b></span>"
  997. msgstr ""
  998. #: FlatCAMObj.py:613 FlatCAMObj.py:2309 FlatCAMObj.py:3593 FlatCAMObj.py:5843
  999. msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
  1000. msgstr ""
  1001. #: FlatCAMObj.py:802
  1002. msgid "Buffering solid geometry"
  1003. msgstr ""
  1004. #: FlatCAMObj.py:805 flatcamGUI/FlatCAMGUI.py:4322
  1005. #: flatcamTools/ToolNonCopperClear.py:1531
  1006. #: flatcamTools/ToolNonCopperClear.py:1625
  1007. #: flatcamTools/ToolNonCopperClear.py:1637
  1008. #: flatcamTools/ToolNonCopperClear.py:1864
  1009. #: flatcamTools/ToolNonCopperClear.py:1956
  1010. #: flatcamTools/ToolNonCopperClear.py:1968
  1011. msgid "Buffering"
  1012. msgstr ""
  1013. #: FlatCAMObj.py:811
  1014. msgid "Done"
  1015. msgstr ""
  1016. #: FlatCAMObj.py:1071 FlatCAMObj.py:1178
  1017. #: flatcamTools/ToolNonCopperClear.py:1560
  1018. #: flatcamTools/ToolNonCopperClear.py:1888
  1019. msgid "Isolation geometry could not be generated."
  1020. msgstr ""
  1021. #: FlatCAMObj.py:1108 FlatCAMObj.py:3261 FlatCAMObj.py:3528 FlatCAMObj.py:3804
  1022. msgid "Rough"
  1023. msgstr ""
  1024. #: FlatCAMObj.py:1133 FlatCAMObj.py:1201
  1025. msgid "Isolation geometry created"
  1026. msgstr ""
  1027. #: FlatCAMObj.py:1386
  1028. msgid "Plotting Apertures"
  1029. msgstr ""
  1030. #: FlatCAMObj.py:2121 flatcamEditors/FlatCAMExcEditor.py:2309
  1031. msgid "Total Drills"
  1032. msgstr ""
  1033. #: FlatCAMObj.py:2153 flatcamEditors/FlatCAMExcEditor.py:2341
  1034. msgid "Total Slots"
  1035. msgstr ""
  1036. #: FlatCAMObj.py:2367 FlatCAMObj.py:3644 FlatCAMObj.py:3938 FlatCAMObj.py:4129
  1037. #: FlatCAMObj.py:4140 FlatCAMObj.py:4258 FlatCAMObj.py:4461 FlatCAMObj.py:4668
  1038. #: FlatCAMObj.py:4907 FlatCAMObj.py:5405
  1039. #: flatcamEditors/FlatCAMExcEditor.py:2416
  1040. #: flatcamEditors/FlatCAMGeoEditor.py:1080
  1041. #: flatcamEditors/FlatCAMGeoEditor.py:1117
  1042. #: flatcamEditors/FlatCAMGeoEditor.py:1138
  1043. #: flatcamEditors/FlatCAMGeoEditor.py:1159
  1044. #: flatcamEditors/FlatCAMGeoEditor.py:1196
  1045. #: flatcamEditors/FlatCAMGeoEditor.py:1228
  1046. #: flatcamEditors/FlatCAMGeoEditor.py:1249
  1047. #: flatcamEditors/FlatCAMGrbEditor.py:5283
  1048. #: flatcamEditors/FlatCAMGrbEditor.py:5326
  1049. #: flatcamEditors/FlatCAMGrbEditor.py:5353
  1050. #: flatcamEditors/FlatCAMGrbEditor.py:5380
  1051. #: flatcamEditors/FlatCAMGrbEditor.py:5421
  1052. #: flatcamEditors/FlatCAMGrbEditor.py:5459
  1053. #: flatcamEditors/FlatCAMGrbEditor.py:5485 flatcamTools/ToolCalculators.py:311
  1054. #: flatcamTools/ToolCalculators.py:322 flatcamTools/ToolCalculators.py:334
  1055. #: flatcamTools/ToolCalculators.py:349 flatcamTools/ToolCalculators.py:362
  1056. #: flatcamTools/ToolCalculators.py:376 flatcamTools/ToolCalculators.py:387
  1057. #: flatcamTools/ToolCalculators.py:398 flatcamTools/ToolCalculators.py:409
  1058. #: flatcamTools/ToolFilm.py:248 flatcamTools/ToolFilm.py:254
  1059. #: flatcamTools/ToolNonCopperClear.py:862
  1060. #: flatcamTools/ToolNonCopperClear.py:873
  1061. #: flatcamTools/ToolNonCopperClear.py:883
  1062. #: flatcamTools/ToolNonCopperClear.py:901
  1063. #: flatcamTools/ToolNonCopperClear.py:980
  1064. #: flatcamTools/ToolNonCopperClear.py:1062
  1065. #: flatcamTools/ToolNonCopperClear.py:1341
  1066. #: flatcamTools/ToolNonCopperClear.py:1371 flatcamTools/ToolPaint.py:699
  1067. #: flatcamTools/ToolPaint.py:774 flatcamTools/ToolPaint.py:922
  1068. #: flatcamTools/ToolPaint.py:976 flatcamTools/ToolPaint.py:1225
  1069. #: flatcamTools/ToolPaint.py:1496 flatcamTools/ToolPaint.py:1966
  1070. #: flatcamTools/ToolPanelize.py:397 flatcamTools/ToolPanelize.py:409
  1071. #: flatcamTools/ToolPanelize.py:422 flatcamTools/ToolPanelize.py:435
  1072. #: flatcamTools/ToolPanelize.py:447 flatcamTools/ToolPanelize.py:458
  1073. #: flatcamTools/ToolSolderPaste.py:764 flatcamTools/ToolSolderPaste.py:839
  1074. #: flatcamTools/ToolTransform.py:474 flatcamTools/ToolTransform.py:508
  1075. #: flatcamTools/ToolTransform.py:526 flatcamTools/ToolTransform.py:544
  1076. #: flatcamTools/ToolTransform.py:578 flatcamTools/ToolTransform.py:607
  1077. #: flatcamTools/ToolTransform.py:625
  1078. msgid "Wrong value format entered, use a number."
  1079. msgstr ""
  1080. #: FlatCAMObj.py:2608 FlatCAMObj.py:2698 FlatCAMObj.py:2819
  1081. msgid "Please select one or more tools from the list and try again."
  1082. msgstr ""
  1083. #: FlatCAMObj.py:2614
  1084. msgid "Milling tool for DRILLS is larger than hole size. Cancelled."
  1085. msgstr ""
  1086. #: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
  1087. msgid "Tool_nr"
  1088. msgstr ""
  1089. #: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
  1090. #: flatcamEditors/FlatCAMExcEditor.py:1500
  1091. #: flatcamEditors/FlatCAMExcEditor.py:3133 flatcamGUI/ObjectUI.py:613
  1092. #: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
  1093. #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolSolderPaste.py:81
  1094. msgid "Diameter"
  1095. msgstr ""
  1096. #: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
  1097. msgid "Drills_Nr"
  1098. msgstr ""
  1099. #: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
  1100. msgid "Slots_Nr"
  1101. msgstr ""
  1102. #: FlatCAMObj.py:2707
  1103. msgid "Milling tool for SLOTS is larger than hole size. Cancelled."
  1104. msgstr ""
  1105. #: FlatCAMObj.py:2879 FlatCAMObj.py:4559 FlatCAMObj.py:4777 FlatCAMObj.py:5100
  1106. msgid ""
  1107. "Wrong value format for self.defaults[\"z_pdepth\"] or self.options[\"z_pdepth"
  1108. "\"]"
  1109. msgstr ""
  1110. #: FlatCAMObj.py:2890 FlatCAMObj.py:4570 FlatCAMObj.py:5111
  1111. msgid ""
  1112. "Wrong value format for self.defaults[\"feedrate_probe\"] or self."
  1113. "options[\"feedrate_probe\"]"
  1114. msgstr ""
  1115. #: FlatCAMObj.py:2920 FlatCAMObj.py:4987 FlatCAMObj.py:4993 FlatCAMObj.py:5145
  1116. msgid "Generating CNC Code"
  1117. msgstr ""
  1118. #: FlatCAMObj.py:2946 camlib.py:5658 camlib.py:6632
  1119. msgid ""
  1120. "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
  1121. "y) \n"
  1122. "but now there is only one value, not two. "
  1123. msgstr ""
  1124. #: FlatCAMObj.py:3261 FlatCAMObj.py:4180 FlatCAMObj.py:4181 FlatCAMObj.py:4190
  1125. msgid "Iso"
  1126. msgstr ""
  1127. #: FlatCAMObj.py:3261
  1128. msgid "Finish"
  1129. msgstr ""
  1130. #: FlatCAMObj.py:3564 flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:746
  1131. #: flatcamGUI/FlatCAMGUI.py:1718 flatcamGUI/FlatCAMGUI.py:2092
  1132. #: flatcamGUI/ObjectUI.py:1061
  1133. msgid "Copy"
  1134. msgstr ""
  1135. #: FlatCAMObj.py:3775
  1136. msgid "Please enter the desired tool diameter in Float format."
  1137. msgstr ""
  1138. #: FlatCAMObj.py:3849
  1139. msgid "Tool added in Tool Table."
  1140. msgstr ""
  1141. #: FlatCAMObj.py:3853
  1142. msgid "Default Tool added. Wrong value format entered."
  1143. msgstr ""
  1144. #: FlatCAMObj.py:3886 FlatCAMObj.py:3895
  1145. msgid "Failed. Select a tool to copy."
  1146. msgstr ""
  1147. #: FlatCAMObj.py:3923
  1148. msgid "Tool was copied in Tool Table."
  1149. msgstr ""
  1150. #: FlatCAMObj.py:3953
  1151. msgid "Tool was edited in Tool Table."
  1152. msgstr ""
  1153. #: FlatCAMObj.py:3982 FlatCAMObj.py:3991
  1154. msgid "Failed. Select a tool to delete."
  1155. msgstr ""
  1156. #: FlatCAMObj.py:4014
  1157. msgid "Tool was deleted in Tool Table."
  1158. msgstr ""
  1159. #: FlatCAMObj.py:4444
  1160. #, python-format
  1161. msgid "This Geometry can't be processed because it is %s geometry."
  1162. msgstr ""
  1163. #: FlatCAMObj.py:4486
  1164. msgid "Failed. No tool selected in the tool table ..."
  1165. msgstr ""
  1166. #: FlatCAMObj.py:4524
  1167. msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() -->"
  1168. msgstr ""
  1169. #: FlatCAMObj.py:4673 FlatCAMObj.py:4913
  1170. msgid ""
  1171. "Tool Offset is selected in Tool Table but no value is provided.\n"
  1172. "Add a Tool Offset or change the Offset Type."
  1173. msgstr ""
  1174. #: FlatCAMObj.py:4724 FlatCAMObj.py:4954
  1175. msgid "G-Code parsing in progress..."
  1176. msgstr ""
  1177. #: FlatCAMObj.py:4726 FlatCAMObj.py:4956
  1178. msgid "G-Code parsing finished..."
  1179. msgstr ""
  1180. #: FlatCAMObj.py:4734 FlatCAMObj.py:4966 FlatCAMObj.py:5138
  1181. msgid "Finished G-Code processing..."
  1182. msgstr ""
  1183. #: FlatCAMObj.py:4736 FlatCAMObj.py:4968
  1184. #, python-format
  1185. msgid "G-Code processing failed with error: %s"
  1186. msgstr ""
  1187. #: FlatCAMObj.py:4788
  1188. msgid ""
  1189. " Wrong value format for self.defaults[\"feedrate_probe\"] or self."
  1190. "options[\"feedrate_probe\"]"
  1191. msgstr ""
  1192. #: FlatCAMObj.py:4799 flatcamTools/ToolSolderPaste.py:1187
  1193. msgid "Cancelled. Empty file, it has no geometry"
  1194. msgstr ""
  1195. #: FlatCAMObj.py:4990 FlatCAMObj.py:4996 FlatCAMObj.py:5148
  1196. msgid "CNCjob created"
  1197. msgstr ""
  1198. #: FlatCAMObj.py:5180 FlatCAMObj.py:5190 camlib.py:3581 camlib.py:3591
  1199. msgid "Scale factor has to be a number: integer or float."
  1200. msgstr ""
  1201. #: FlatCAMObj.py:5264
  1202. msgid "Geometry Scale done."
  1203. msgstr ""
  1204. #: FlatCAMObj.py:5281 camlib.py:3685
  1205. msgid ""
  1206. "An (x,y) pair of values are needed. Probable you entered only one value in "
  1207. "the Offset field."
  1208. msgstr ""
  1209. #: FlatCAMObj.py:5335
  1210. msgid "Geometry Offset done."
  1211. msgstr ""
  1212. #: FlatCAMObj.py:5364
  1213. msgid ""
  1214. "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
  1215. "y)\n"
  1216. "but now there is only one value, not two."
  1217. msgstr ""
  1218. #: FlatCAMObj.py:5905 FlatCAMObj.py:5910 flatcamTools/ToolSolderPaste.py:1393
  1219. msgid "Export Machine Code ..."
  1220. msgstr ""
  1221. #: FlatCAMObj.py:5916 flatcamTools/ToolSolderPaste.py:1397
  1222. msgid "Export Machine Code cancelled ..."
  1223. msgstr ""
  1224. #: FlatCAMObj.py:5934
  1225. msgid "Machine Code file saved to"
  1226. msgstr ""
  1227. #: FlatCAMObj.py:5958
  1228. msgid "FlatCAMCNNJob.on_edit_code_click() -->"
  1229. msgstr ""
  1230. #: FlatCAMObj.py:5966
  1231. msgid "Loaded Machine Code into Code Editor"
  1232. msgstr ""
  1233. #: FlatCAMObj.py:6078
  1234. msgid "This CNCJob object can't be processed because it is a"
  1235. msgstr ""
  1236. #: FlatCAMObj.py:6080
  1237. msgid "CNCJob object"
  1238. msgstr ""
  1239. #: FlatCAMObj.py:6132
  1240. msgid "G-code does not have a units code: either G20 or G21"
  1241. msgstr ""
  1242. #: FlatCAMObj.py:6144
  1243. msgid "Cancelled. The Toolchange Custom code is enabled but it's empty."
  1244. msgstr ""
  1245. #: FlatCAMObj.py:6150
  1246. msgid "Toolchange G-code was replaced by a custom code."
  1247. msgstr ""
  1248. #: FlatCAMObj.py:6177
  1249. msgid "Saved to"
  1250. msgstr ""
  1251. #: FlatCAMObj.py:6187 FlatCAMObj.py:6197
  1252. msgid ""
  1253. "The used postprocessor file has to have in it's name: 'toolchange_custom'"
  1254. msgstr ""
  1255. #: FlatCAMObj.py:6201
  1256. msgid "There is no postprocessor file."
  1257. msgstr ""
  1258. #: FlatCAMProcess.py:172
  1259. msgid "processes running."
  1260. msgstr ""
  1261. #: FlatCAMTranslation.py:91
  1262. msgid "The application will restart."
  1263. msgstr ""
  1264. #: FlatCAMTranslation.py:92
  1265. #, python-format
  1266. msgid "Are you sure do you want to change the current language to %s?"
  1267. msgstr ""
  1268. #: FlatCAMTranslation.py:94
  1269. msgid "Apply Language ..."
  1270. msgstr ""
  1271. #: ObjectCollection.py:426
  1272. #, python-brace-format
  1273. msgid "Object renamed from <b>{old}</b> to <b>{new}</b>"
  1274. msgstr ""
  1275. #: ObjectCollection.py:766
  1276. msgid "Cause of error"
  1277. msgstr ""
  1278. #: camlib.py:215
  1279. msgid "self.solid_geometry is neither BaseGeometry or list."
  1280. msgstr ""
  1281. #: camlib.py:1522
  1282. msgid "Object was mirrored"
  1283. msgstr ""
  1284. #: camlib.py:1525
  1285. msgid "Failed to mirror. No object selected"
  1286. msgstr ""
  1287. #: camlib.py:1594
  1288. msgid "Object was rotated"
  1289. msgstr ""
  1290. #: camlib.py:1597
  1291. msgid "Failed to rotate. No object selected"
  1292. msgstr ""
  1293. #: camlib.py:1665
  1294. msgid "Object was skewed"
  1295. msgstr ""
  1296. #: camlib.py:1668
  1297. msgid "Failed to skew. No object selected"
  1298. msgstr ""
  1299. #: camlib.py:2443
  1300. msgid "Gerber processing. Parsing"
  1301. msgstr ""
  1302. #: camlib.py:2443
  1303. msgid "lines"
  1304. msgstr ""
  1305. #: camlib.py:2942 camlib.py:3030
  1306. msgid "Coordinates missing, line ignored"
  1307. msgstr ""
  1308. #: camlib.py:2944 camlib.py:3032
  1309. msgid "GERBER file might be CORRUPT. Check the file !!!"
  1310. msgstr ""
  1311. #: camlib.py:2994
  1312. msgid ""
  1313. "Region does not have enough points. File will be processed but there are "
  1314. "parser errors. Line number"
  1315. msgstr ""
  1316. #: camlib.py:3364
  1317. msgid "Gerber processing. Joining"
  1318. msgstr ""
  1319. #: camlib.py:3364
  1320. msgid "polygons"
  1321. msgstr ""
  1322. #: camlib.py:3399
  1323. msgid "Gerber Line"
  1324. msgstr ""
  1325. #: camlib.py:3399
  1326. msgid "Gerber Line Content"
  1327. msgstr ""
  1328. #: camlib.py:3401
  1329. msgid "Gerber Parser ERROR"
  1330. msgstr ""
  1331. #: camlib.py:3649
  1332. msgid "Gerber Scale done."
  1333. msgstr ""
  1334. #: camlib.py:3739
  1335. msgid "Gerber Offset done."
  1336. msgstr ""
  1337. #: camlib.py:3816
  1338. msgid "Gerber Mirror done."
  1339. msgstr ""
  1340. #: camlib.py:3885
  1341. msgid "Gerber Skew done."
  1342. msgstr ""
  1343. #: camlib.py:3946
  1344. msgid "Gerber Rotate done."
  1345. msgstr ""
  1346. #: camlib.py:4233
  1347. msgid "This is GCODE mark"
  1348. msgstr ""
  1349. #: camlib.py:4349
  1350. msgid ""
  1351. "No tool diameter info's. See shell.\n"
  1352. "A tool change event: T"
  1353. msgstr ""
  1354. #: camlib.py:4352
  1355. msgid ""
  1356. "was found but the Excellon file have no informations regarding the tool "
  1357. "diameters therefore the application will try to load it by using some 'fake' "
  1358. "diameters.\n"
  1359. "The user needs to edit the resulting Excellon object and change the "
  1360. "diameters to reflect the real diameters."
  1361. msgstr ""
  1362. #: camlib.py:4807
  1363. #, python-brace-format
  1364. msgid ""
  1365. "{e_code} Excellon Parser error.\n"
  1366. "Parsing Failed. Line {l_nr}: {line}\n"
  1367. msgstr ""
  1368. #: camlib.py:4890
  1369. msgid ""
  1370. "Excellon.create_geometry() -> a drill location was skipped due of not having "
  1371. "a tool associated.\n"
  1372. "Check the resulting GCode."
  1373. msgstr ""
  1374. #: camlib.py:5564
  1375. msgid "There is no such parameter"
  1376. msgstr ""
  1377. #: camlib.py:5635
  1378. msgid ""
  1379. "The Cut Z parameter has positive value. It is the depth value to drill into "
  1380. "material.\n"
  1381. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1382. "therefore the app will convert the value to negative. Check the resulting "
  1383. "CNC code (Gcode etc)."
  1384. msgstr ""
  1385. #: camlib.py:5643 camlib.py:6316 camlib.py:6658
  1386. msgid "The Cut Z parameter is zero. There will be no cut, skipping file"
  1387. msgstr ""
  1388. #: camlib.py:5695
  1389. msgid "Creating a list of points to drill..."
  1390. msgstr ""
  1391. #: camlib.py:5778
  1392. msgid "Starting G-Code"
  1393. msgstr ""
  1394. #: camlib.py:5874 camlib.py:6020 camlib.py:6126 camlib.py:6425 camlib.py:6767
  1395. msgid "Starting G-Code for tool with diameter"
  1396. msgstr ""
  1397. #: camlib.py:5931 camlib.py:6077 camlib.py:6184
  1398. msgid "G91 coordinates not implemented"
  1399. msgstr ""
  1400. #: camlib.py:5937 camlib.py:6083 camlib.py:6190
  1401. msgid "The loaded Excellon file has no drills"
  1402. msgstr ""
  1403. #: camlib.py:6089
  1404. msgid "Wrong optimization type selected."
  1405. msgstr ""
  1406. #: camlib.py:6212
  1407. msgid "Finished G-Code generation..."
  1408. msgstr ""
  1409. #: camlib.py:6289
  1410. msgid ""
  1411. "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
  1412. "y) \n"
  1413. "but now there is only one value, not two."
  1414. msgstr ""
  1415. #: camlib.py:6302 camlib.py:6644
  1416. msgid ""
  1417. "Cut_Z parameter is None or zero. Most likely a bad combinations of other "
  1418. "parameters."
  1419. msgstr ""
  1420. #: camlib.py:6308 camlib.py:6650
  1421. msgid ""
  1422. "The Cut Z parameter has positive value. It is the depth value to cut into "
  1423. "material.\n"
  1424. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1425. "therefore the app will convert the value to negative.Check the resulting CNC "
  1426. "code (Gcode etc)."
  1427. msgstr ""
  1428. #: camlib.py:6326 camlib.py:6664
  1429. msgid "Travel Z parameter is None or zero."
  1430. msgstr ""
  1431. #: camlib.py:6331 camlib.py:6669
  1432. msgid ""
  1433. "The Travel Z parameter has negative value. It is the height value to travel "
  1434. "between cuts.\n"
  1435. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  1436. "therefore the app will convert the value to positive.Check the resulting CNC "
  1437. "code (Gcode etc)."
  1438. msgstr ""
  1439. #: camlib.py:6339 camlib.py:6677
  1440. msgid "The Z Travel parameter is zero. This is dangerous, skipping file"
  1441. msgstr ""
  1442. #: camlib.py:6354 camlib.py:6696
  1443. msgid "Indexing geometry before generating G-Code..."
  1444. msgstr ""
  1445. #: camlib.py:6408 camlib.py:6753
  1446. msgid "Starting G-Code..."
  1447. msgstr ""
  1448. #: camlib.py:6495 camlib.py:6837
  1449. msgid "Finished G-Code generation"
  1450. msgstr ""
  1451. #: camlib.py:6497
  1452. msgid "paths traced"
  1453. msgstr ""
  1454. #: camlib.py:6532
  1455. msgid "Expected a Geometry, got"
  1456. msgstr ""
  1457. #: camlib.py:6539
  1458. msgid ""
  1459. "Trying to generate a CNC Job from a Geometry object without solid_geometry."
  1460. msgstr ""
  1461. #: camlib.py:6578
  1462. #, python-format
  1463. msgid "[ERROR_NOTCL] %s"
  1464. msgstr ""
  1465. #: camlib.py:6839
  1466. msgid " paths traced."
  1467. msgstr ""
  1468. #: camlib.py:6868
  1469. msgid "There is no tool data in the SolderPaste geometry."
  1470. msgstr ""
  1471. #: camlib.py:6955
  1472. msgid "Finished SolderPste G-Code generation"
  1473. msgstr ""
  1474. #: camlib.py:6957
  1475. msgid "paths traced."
  1476. msgstr ""
  1477. #: camlib.py:7430 camlib.py:7708 camlib.py:7811 camlib.py:7858
  1478. msgid "G91 coordinates not implemented ..."
  1479. msgstr ""
  1480. #: flatcamEditors/FlatCAMExcEditor.py:45 flatcamEditors/FlatCAMExcEditor.py:70
  1481. #: flatcamEditors/FlatCAMExcEditor.py:152
  1482. #: flatcamEditors/FlatCAMExcEditor.py:356
  1483. #: flatcamEditors/FlatCAMExcEditor.py:548
  1484. #: flatcamEditors/FlatCAMGrbEditor.py:238
  1485. #: flatcamEditors/FlatCAMGrbEditor.py:243
  1486. msgid "Click to place ..."
  1487. msgstr ""
  1488. #: flatcamEditors/FlatCAMExcEditor.py:54
  1489. msgid "To add a drill first select a tool"
  1490. msgstr ""
  1491. #: flatcamEditors/FlatCAMExcEditor.py:117
  1492. msgid "Done. Drill added."
  1493. msgstr ""
  1494. #: flatcamEditors/FlatCAMExcEditor.py:160
  1495. msgid "To add an Drill Array first select a tool in Tool Table"
  1496. msgstr ""
  1497. #: flatcamEditors/FlatCAMExcEditor.py:176
  1498. #: flatcamEditors/FlatCAMExcEditor.py:386
  1499. #: flatcamEditors/FlatCAMExcEditor.py:596
  1500. #: flatcamEditors/FlatCAMExcEditor.py:1098
  1501. #: flatcamEditors/FlatCAMExcEditor.py:1123
  1502. #: flatcamEditors/FlatCAMGrbEditor.py:462
  1503. #: flatcamEditors/FlatCAMGrbEditor.py:1859
  1504. #: flatcamEditors/FlatCAMGrbEditor.py:1887
  1505. msgid "Click on target location ..."
  1506. msgstr ""
  1507. #: flatcamEditors/FlatCAMExcEditor.py:193
  1508. msgid "Click on the Drill Circular Array Start position"
  1509. msgstr ""
  1510. #: flatcamEditors/FlatCAMExcEditor.py:215
  1511. #: flatcamEditors/FlatCAMExcEditor.py:635
  1512. #: flatcamEditors/FlatCAMGrbEditor.py:505
  1513. msgid "The value is not Float. Check for comma instead of dot separator."
  1514. msgstr ""
  1515. #: flatcamEditors/FlatCAMExcEditor.py:219
  1516. msgid "The value is mistyped. Check the value"
  1517. msgstr ""
  1518. #: flatcamEditors/FlatCAMExcEditor.py:318
  1519. msgid "Too many drills for the selected spacing angle."
  1520. msgstr ""
  1521. #: flatcamEditors/FlatCAMExcEditor.py:336
  1522. msgid "Done. Drill Array added."
  1523. msgstr ""
  1524. #: flatcamEditors/FlatCAMExcEditor.py:365
  1525. msgid "To add a slot first select a tool"
  1526. msgstr ""
  1527. #: flatcamEditors/FlatCAMExcEditor.py:423
  1528. #: flatcamEditors/FlatCAMExcEditor.py:430
  1529. #: flatcamEditors/FlatCAMExcEditor.py:701
  1530. #: flatcamEditors/FlatCAMExcEditor.py:708
  1531. msgid "Value is missing or wrong format. Add it and retry."
  1532. msgstr ""
  1533. #: flatcamEditors/FlatCAMExcEditor.py:529
  1534. msgid "Done. Adding Slot completed."
  1535. msgstr ""
  1536. #: flatcamEditors/FlatCAMExcEditor.py:556
  1537. msgid "To add an Slot Array first select a tool in Tool Table"
  1538. msgstr ""
  1539. #: flatcamEditors/FlatCAMExcEditor.py:613
  1540. msgid "Click on the Slot Circular Array Start position"
  1541. msgstr ""
  1542. #: flatcamEditors/FlatCAMExcEditor.py:639
  1543. #: flatcamEditors/FlatCAMGrbEditor.py:509
  1544. msgid "The value is mistyped. Check the value."
  1545. msgstr ""
  1546. #: flatcamEditors/FlatCAMExcEditor.py:818
  1547. msgid "Too many Slots for the selected spacing angle."
  1548. msgstr ""
  1549. #: flatcamEditors/FlatCAMExcEditor.py:841
  1550. msgid "Done. Slot Array added."
  1551. msgstr ""
  1552. #: flatcamEditors/FlatCAMExcEditor.py:858
  1553. msgid "Click on the Drill(s) to resize ..."
  1554. msgstr ""
  1555. #: flatcamEditors/FlatCAMExcEditor.py:888
  1556. msgid "Resize drill(s) failed. Please enter a diameter for resize."
  1557. msgstr ""
  1558. #: flatcamEditors/FlatCAMExcEditor.py:978
  1559. #: flatcamEditors/FlatCAMExcEditor.py:1048
  1560. msgid "Cancelled."
  1561. msgstr ""
  1562. #: flatcamEditors/FlatCAMExcEditor.py:1069
  1563. msgid "Drill/Slot Resize completed."
  1564. msgstr ""
  1565. #: flatcamEditors/FlatCAMExcEditor.py:1072
  1566. msgid "Cancelled. No drills/slots selected for resize ..."
  1567. msgstr ""
  1568. #: flatcamEditors/FlatCAMExcEditor.py:1100
  1569. #: flatcamEditors/FlatCAMGrbEditor.py:1861
  1570. msgid "Click on reference location ..."
  1571. msgstr ""
  1572. #: flatcamEditors/FlatCAMExcEditor.py:1156
  1573. msgid "Done. Drill(s) Move completed."
  1574. msgstr ""
  1575. #: flatcamEditors/FlatCAMExcEditor.py:1254
  1576. msgid "Done. Drill(s) copied."
  1577. msgstr ""
  1578. #: flatcamEditors/FlatCAMExcEditor.py:1473 flatcamGUI/FlatCAMGUI.py:5510
  1579. msgid "Excellon Editor"
  1580. msgstr ""
  1581. #: flatcamEditors/FlatCAMExcEditor.py:1480
  1582. #: flatcamEditors/FlatCAMGrbEditor.py:2361
  1583. msgid "Name:"
  1584. msgstr ""
  1585. #: flatcamEditors/FlatCAMExcEditor.py:1486 flatcamGUI/ObjectUI.py:593
  1586. #: flatcamGUI/ObjectUI.py:919 flatcamTools/ToolNonCopperClear.py:96
  1587. #: flatcamTools/ToolPaint.py:95 flatcamTools/ToolSolderPaste.py:70
  1588. msgid "Tools Table"
  1589. msgstr ""
  1590. #: flatcamEditors/FlatCAMExcEditor.py:1488 flatcamGUI/ObjectUI.py:595
  1591. msgid ""
  1592. "Tools in this Excellon object\n"
  1593. "when are used for drilling."
  1594. msgstr ""
  1595. #: flatcamEditors/FlatCAMExcEditor.py:1508
  1596. msgid "Add/Delete Tool"
  1597. msgstr ""
  1598. #: flatcamEditors/FlatCAMExcEditor.py:1510
  1599. msgid ""
  1600. "Add/Delete a tool to the tool list\n"
  1601. "for this Excellon object."
  1602. msgstr ""
  1603. #: flatcamEditors/FlatCAMExcEditor.py:1518 flatcamGUI/ObjectUI.py:1037
  1604. #: flatcamTools/ToolNonCopperClear.py:212 flatcamTools/ToolPaint.py:162
  1605. msgid "Tool Dia"
  1606. msgstr ""
  1607. #: flatcamEditors/FlatCAMExcEditor.py:1520 flatcamGUI/FlatCAMGUI.py:5539
  1608. #: flatcamGUI/ObjectUI.py:1040
  1609. msgid "Diameter for the new tool"
  1610. msgstr ""
  1611. #: flatcamEditors/FlatCAMExcEditor.py:1528
  1612. msgid "Add Tool"
  1613. msgstr ""
  1614. #: flatcamEditors/FlatCAMExcEditor.py:1530
  1615. msgid ""
  1616. "Add a new tool to the tool list\n"
  1617. "with the diameter specified above."
  1618. msgstr ""
  1619. #: flatcamEditors/FlatCAMExcEditor.py:1542
  1620. msgid "Delete Tool"
  1621. msgstr ""
  1622. #: flatcamEditors/FlatCAMExcEditor.py:1544
  1623. msgid ""
  1624. "Delete a tool in the tool list\n"
  1625. "by selecting a row in the tool table."
  1626. msgstr ""
  1627. #: flatcamEditors/FlatCAMExcEditor.py:1562
  1628. msgid "Resize Drill(s)"
  1629. msgstr ""
  1630. #: flatcamEditors/FlatCAMExcEditor.py:1564
  1631. msgid "Resize a drill or a selection of drills."
  1632. msgstr ""
  1633. #: flatcamEditors/FlatCAMExcEditor.py:1571
  1634. msgid "Resize Dia"
  1635. msgstr ""
  1636. #: flatcamEditors/FlatCAMExcEditor.py:1573
  1637. msgid "Diameter to resize to."
  1638. msgstr ""
  1639. #: flatcamEditors/FlatCAMExcEditor.py:1581
  1640. msgid "Resize"
  1641. msgstr ""
  1642. #: flatcamEditors/FlatCAMExcEditor.py:1583
  1643. msgid "Resize drill(s)"
  1644. msgstr ""
  1645. #: flatcamEditors/FlatCAMExcEditor.py:1608 flatcamGUI/FlatCAMGUI.py:1710
  1646. msgid "Add Drill Array"
  1647. msgstr ""
  1648. #: flatcamEditors/FlatCAMExcEditor.py:1610
  1649. msgid "Add an array of drills (linear or circular array)"
  1650. msgstr ""
  1651. #: flatcamEditors/FlatCAMExcEditor.py:1616
  1652. msgid ""
  1653. "Select the type of drills array to create.\n"
  1654. "It can be Linear X(Y) or Circular"
  1655. msgstr ""
  1656. #: flatcamEditors/FlatCAMExcEditor.py:1619
  1657. #: flatcamEditors/FlatCAMExcEditor.py:1821
  1658. #: flatcamEditors/FlatCAMGrbEditor.py:2647
  1659. msgid "Linear"
  1660. msgstr ""
  1661. #: flatcamEditors/FlatCAMExcEditor.py:1620
  1662. #: flatcamEditors/FlatCAMExcEditor.py:1822
  1663. #: flatcamEditors/FlatCAMGrbEditor.py:2648 flatcamGUI/FlatCAMGUI.py:6460
  1664. #: flatcamTools/ToolNonCopperClear.py:203
  1665. msgid "Circular"
  1666. msgstr ""
  1667. #: flatcamEditors/FlatCAMExcEditor.py:1628 flatcamGUI/FlatCAMGUI.py:5549
  1668. msgid "Nr of drills"
  1669. msgstr ""
  1670. #: flatcamEditors/FlatCAMExcEditor.py:1629 flatcamGUI/FlatCAMGUI.py:5551
  1671. msgid "Specify how many drills to be in the array."
  1672. msgstr ""
  1673. #: flatcamEditors/FlatCAMExcEditor.py:1646
  1674. #: flatcamEditors/FlatCAMExcEditor.py:1693
  1675. #: flatcamEditors/FlatCAMExcEditor.py:1757
  1676. #: flatcamEditors/FlatCAMExcEditor.py:1848
  1677. #: flatcamEditors/FlatCAMExcEditor.py:1895
  1678. #: flatcamEditors/FlatCAMGrbEditor.py:2674
  1679. #: flatcamEditors/FlatCAMGrbEditor.py:2719 flatcamGUI/FlatCAMGUI.py:5643
  1680. msgid "Direction"
  1681. msgstr ""
  1682. #: flatcamEditors/FlatCAMExcEditor.py:1648
  1683. #: flatcamEditors/FlatCAMExcEditor.py:1850
  1684. #: flatcamEditors/FlatCAMGrbEditor.py:2676 flatcamGUI/FlatCAMGUI.py:4717
  1685. #: flatcamGUI/FlatCAMGUI.py:5566 flatcamGUI/FlatCAMGUI.py:5697
  1686. msgid ""
  1687. "Direction on which the linear array is oriented:\n"
  1688. "- 'X' - horizontal axis \n"
  1689. "- 'Y' - vertical axis or \n"
  1690. "- 'Angle' - a custom angle for the array inclination"
  1691. msgstr ""
  1692. #: flatcamEditors/FlatCAMExcEditor.py:1655
  1693. #: flatcamEditors/FlatCAMExcEditor.py:1766
  1694. #: flatcamEditors/FlatCAMExcEditor.py:1857
  1695. #: flatcamEditors/FlatCAMGrbEditor.py:2683 flatcamGUI/FlatCAMGUI.py:4723
  1696. #: flatcamGUI/FlatCAMGUI.py:5572 flatcamGUI/FlatCAMGUI.py:5652
  1697. #: flatcamGUI/FlatCAMGUI.py:5703
  1698. msgid "X"
  1699. msgstr ""
  1700. #: flatcamEditors/FlatCAMExcEditor.py:1656
  1701. #: flatcamEditors/FlatCAMExcEditor.py:1767
  1702. #: flatcamEditors/FlatCAMExcEditor.py:1858
  1703. #: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:4724
  1704. #: flatcamGUI/FlatCAMGUI.py:5573 flatcamGUI/FlatCAMGUI.py:5653
  1705. #: flatcamGUI/FlatCAMGUI.py:5704
  1706. msgid "Y"
  1707. msgstr ""
  1708. #: flatcamEditors/FlatCAMExcEditor.py:1657
  1709. #: flatcamEditors/FlatCAMExcEditor.py:1671
  1710. #: flatcamEditors/FlatCAMExcEditor.py:1705
  1711. #: flatcamEditors/FlatCAMExcEditor.py:1768
  1712. #: flatcamEditors/FlatCAMExcEditor.py:1772
  1713. #: flatcamEditors/FlatCAMExcEditor.py:1859
  1714. #: flatcamEditors/FlatCAMExcEditor.py:1873
  1715. #: flatcamEditors/FlatCAMExcEditor.py:1907
  1716. #: flatcamEditors/FlatCAMGrbEditor.py:2685
  1717. #: flatcamEditors/FlatCAMGrbEditor.py:2698
  1718. #: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/FlatCAMGUI.py:4725
  1719. #: flatcamGUI/FlatCAMGUI.py:4742 flatcamGUI/FlatCAMGUI.py:5574
  1720. #: flatcamGUI/FlatCAMGUI.py:5591 flatcamGUI/FlatCAMGUI.py:5654
  1721. #: flatcamGUI/FlatCAMGUI.py:5659 flatcamGUI/FlatCAMGUI.py:5705
  1722. #: flatcamGUI/FlatCAMGUI.py:5722 flatcamTools/ToolTransform.py:68
  1723. msgid "Angle"
  1724. msgstr ""
  1725. #: flatcamEditors/FlatCAMExcEditor.py:1661
  1726. #: flatcamEditors/FlatCAMExcEditor.py:1863
  1727. #: flatcamEditors/FlatCAMGrbEditor.py:2689 flatcamGUI/FlatCAMGUI.py:4731
  1728. #: flatcamGUI/FlatCAMGUI.py:5711
  1729. msgid "Pitch"
  1730. msgstr ""
  1731. #: flatcamEditors/FlatCAMExcEditor.py:1663
  1732. #: flatcamEditors/FlatCAMExcEditor.py:1865
  1733. #: flatcamEditors/FlatCAMGrbEditor.py:2691 flatcamGUI/FlatCAMGUI.py:4733
  1734. #: flatcamGUI/FlatCAMGUI.py:5582 flatcamGUI/FlatCAMGUI.py:5713
  1735. msgid "Pitch = Distance between elements of the array."
  1736. msgstr ""
  1737. #: flatcamEditors/FlatCAMExcEditor.py:1673
  1738. #: flatcamEditors/FlatCAMExcEditor.py:1875
  1739. #: flatcamEditors/FlatCAMGrbEditor.py:2700
  1740. msgid ""
  1741. "Angle at which the linear array is placed.\n"
  1742. "The precision is of max 2 decimals.\n"
  1743. "Min value is: -359.99 degrees.\n"
  1744. "Max value is: 360.00 degrees."
  1745. msgstr ""
  1746. #: flatcamEditors/FlatCAMExcEditor.py:1694
  1747. #: flatcamEditors/FlatCAMExcEditor.py:1896
  1748. #: flatcamEditors/FlatCAMGrbEditor.py:2721
  1749. msgid ""
  1750. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1751. "clockwise."
  1752. msgstr ""
  1753. #: flatcamEditors/FlatCAMExcEditor.py:1701
  1754. #: flatcamEditors/FlatCAMExcEditor.py:1903
  1755. #: flatcamEditors/FlatCAMGrbEditor.py:2729 flatcamGUI/FlatCAMGUI.py:4761
  1756. #: flatcamGUI/FlatCAMGUI.py:5152 flatcamGUI/FlatCAMGUI.py:5610
  1757. #: flatcamGUI/FlatCAMGUI.py:5741 flatcamGUI/FlatCAMGUI.py:5943
  1758. msgid "CW"
  1759. msgstr ""
  1760. #: flatcamEditors/FlatCAMExcEditor.py:1702
  1761. #: flatcamEditors/FlatCAMExcEditor.py:1904
  1762. #: flatcamEditors/FlatCAMGrbEditor.py:2730 flatcamGUI/FlatCAMGUI.py:4762
  1763. #: flatcamGUI/FlatCAMGUI.py:5153 flatcamGUI/FlatCAMGUI.py:5611
  1764. #: flatcamGUI/FlatCAMGUI.py:5742 flatcamGUI/FlatCAMGUI.py:5944
  1765. msgid "CCW"
  1766. msgstr ""
  1767. #: flatcamEditors/FlatCAMExcEditor.py:1706
  1768. #: flatcamEditors/FlatCAMExcEditor.py:1908
  1769. #: flatcamEditors/FlatCAMGrbEditor.py:2736 flatcamGUI/FlatCAMGUI.py:4744
  1770. #: flatcamGUI/FlatCAMGUI.py:4770 flatcamGUI/FlatCAMGUI.py:5593
  1771. #: flatcamGUI/FlatCAMGUI.py:5619 flatcamGUI/FlatCAMGUI.py:5724
  1772. #: flatcamGUI/FlatCAMGUI.py:5750
  1773. msgid "Angle at which each element in circular array is placed."
  1774. msgstr ""
  1775. #: flatcamEditors/FlatCAMExcEditor.py:1736
  1776. msgid "Slot Parameters"
  1777. msgstr ""
  1778. #: flatcamEditors/FlatCAMExcEditor.py:1738
  1779. msgid ""
  1780. "Parameters for adding a slot (hole with oval shape)\n"
  1781. "either single or as an part of an array."
  1782. msgstr ""
  1783. #: flatcamEditors/FlatCAMExcEditor.py:1747 flatcamGUI/FlatCAMGUI.py:5632
  1784. #: flatcamTools/ToolProperties.py:350
  1785. msgid "Length"
  1786. msgstr ""
  1787. #: flatcamEditors/FlatCAMExcEditor.py:1749 flatcamGUI/FlatCAMGUI.py:5634
  1788. msgid "Length = The length of the slot."
  1789. msgstr ""
  1790. #: flatcamEditors/FlatCAMExcEditor.py:1759 flatcamGUI/FlatCAMGUI.py:5645
  1791. msgid ""
  1792. "Direction on which the slot is oriented:\n"
  1793. "- 'X' - horizontal axis \n"
  1794. "- 'Y' - vertical axis or \n"
  1795. "- 'Angle' - a custom angle for the slot inclination"
  1796. msgstr ""
  1797. #: flatcamEditors/FlatCAMExcEditor.py:1774 flatcamGUI/FlatCAMGUI.py:5661
  1798. msgid ""
  1799. "Angle at which the slot is placed.\n"
  1800. "The precision is of max 2 decimals.\n"
  1801. "Min value is: -359.99 degrees.\n"
  1802. "Max value is: 360.00 degrees."
  1803. msgstr ""
  1804. #: flatcamEditors/FlatCAMExcEditor.py:1807
  1805. msgid "Slot Array Parameters"
  1806. msgstr ""
  1807. #: flatcamEditors/FlatCAMExcEditor.py:1809
  1808. msgid "Parameters for the array of slots (linear or circular array)"
  1809. msgstr ""
  1810. #: flatcamEditors/FlatCAMExcEditor.py:1818
  1811. msgid ""
  1812. "Select the type of slot array to create.\n"
  1813. "It can be Linear X(Y) or Circular"
  1814. msgstr ""
  1815. #: flatcamEditors/FlatCAMExcEditor.py:1830 flatcamGUI/FlatCAMGUI.py:5683
  1816. msgid "Nr of slots"
  1817. msgstr ""
  1818. #: flatcamEditors/FlatCAMExcEditor.py:1831 flatcamGUI/FlatCAMGUI.py:5685
  1819. msgid "Specify how many slots to be in the array."
  1820. msgstr ""
  1821. #: flatcamEditors/FlatCAMExcEditor.py:2428
  1822. msgid ""
  1823. "Tool already in the original or actual tool list.\n"
  1824. "Save and reedit Excellon if you need to add this tool. "
  1825. msgstr ""
  1826. #: flatcamEditors/FlatCAMExcEditor.py:2437
  1827. msgid "Added new tool with dia"
  1828. msgstr ""
  1829. #: flatcamEditors/FlatCAMExcEditor.py:2469
  1830. msgid "Select a tool in Tool Table"
  1831. msgstr ""
  1832. #: flatcamEditors/FlatCAMExcEditor.py:2502
  1833. msgid "Deleted tool with diameter"
  1834. msgstr ""
  1835. #: flatcamEditors/FlatCAMExcEditor.py:2652
  1836. msgid "Done. Tool edit completed."
  1837. msgstr ""
  1838. #: flatcamEditors/FlatCAMExcEditor.py:3187
  1839. msgid "There are no Tools definitions in the file. Aborting Excellon creation."
  1840. msgstr ""
  1841. #: flatcamEditors/FlatCAMExcEditor.py:3191
  1842. msgid "An internal error has ocurred. See Shell.\n"
  1843. msgstr ""
  1844. #: flatcamEditors/FlatCAMExcEditor.py:3197
  1845. msgid "Creating Excellon."
  1846. msgstr ""
  1847. #: flatcamEditors/FlatCAMExcEditor.py:3207
  1848. msgid "Excellon editing finished."
  1849. msgstr ""
  1850. #: flatcamEditors/FlatCAMExcEditor.py:3225
  1851. msgid "Cancelled. There is no Tool/Drill selected"
  1852. msgstr ""
  1853. #: flatcamEditors/FlatCAMExcEditor.py:3810
  1854. msgid "Done. Drill(s) deleted."
  1855. msgstr ""
  1856. #: flatcamEditors/FlatCAMExcEditor.py:3882
  1857. #: flatcamEditors/FlatCAMExcEditor.py:3892
  1858. #: flatcamEditors/FlatCAMGrbEditor.py:4576
  1859. msgid "Click on the circular array Center position"
  1860. msgstr ""
  1861. #: flatcamEditors/FlatCAMGeoEditor.py:82
  1862. msgid "Buffer distance:"
  1863. msgstr ""
  1864. #: flatcamEditors/FlatCAMGeoEditor.py:83
  1865. msgid "Buffer corner:"
  1866. msgstr ""
  1867. #: flatcamEditors/FlatCAMGeoEditor.py:85
  1868. msgid ""
  1869. "There are 3 types of corners:\n"
  1870. " - 'Round': the corner is rounded for exterior buffer.\n"
  1871. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  1872. " - 'Beveled:' the corner is a line that directly connects the features "
  1873. "meeting in the corner"
  1874. msgstr ""
  1875. #: flatcamEditors/FlatCAMGeoEditor.py:91
  1876. #: flatcamEditors/FlatCAMGrbEditor.py:2522
  1877. msgid "Round"
  1878. msgstr ""
  1879. #: flatcamEditors/FlatCAMGeoEditor.py:92
  1880. #: flatcamEditors/FlatCAMGrbEditor.py:2523
  1881. msgid "Square"
  1882. msgstr ""
  1883. #: flatcamEditors/FlatCAMGeoEditor.py:93
  1884. #: flatcamEditors/FlatCAMGrbEditor.py:2524
  1885. msgid "Beveled"
  1886. msgstr ""
  1887. #: flatcamEditors/FlatCAMGeoEditor.py:100
  1888. msgid "Buffer Interior"
  1889. msgstr ""
  1890. #: flatcamEditors/FlatCAMGeoEditor.py:102
  1891. msgid "Buffer Exterior"
  1892. msgstr ""
  1893. #: flatcamEditors/FlatCAMGeoEditor.py:108
  1894. msgid "Full Buffer"
  1895. msgstr ""
  1896. #: flatcamEditors/FlatCAMGeoEditor.py:129
  1897. #: flatcamEditors/FlatCAMGeoEditor.py:2720 flatcamGUI/FlatCAMGUI.py:4777
  1898. msgid "Buffer Tool"
  1899. msgstr ""
  1900. #: flatcamEditors/FlatCAMGeoEditor.py:141
  1901. #: flatcamEditors/FlatCAMGeoEditor.py:158
  1902. #: flatcamEditors/FlatCAMGeoEditor.py:175
  1903. #: flatcamEditors/FlatCAMGeoEditor.py:2740
  1904. #: flatcamEditors/FlatCAMGeoEditor.py:2770
  1905. #: flatcamEditors/FlatCAMGeoEditor.py:2800
  1906. #: flatcamEditors/FlatCAMGrbEditor.py:4629
  1907. msgid "Buffer distance value is missing or wrong format. Add it and retry."
  1908. msgstr ""
  1909. #: flatcamEditors/FlatCAMGeoEditor.py:345
  1910. msgid "Text Tool"
  1911. msgstr ""
  1912. #: flatcamEditors/FlatCAMGeoEditor.py:403 flatcamGUI/FlatCAMGUI.py:826
  1913. msgid "Tool"
  1914. msgstr ""
  1915. #: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:4356
  1916. #: flatcamGUI/FlatCAMGUI.py:5796 flatcamGUI/FlatCAMGUI.py:6699
  1917. #: flatcamGUI/FlatCAMGUI.py:6859 flatcamGUI/ObjectUI.py:264
  1918. #: flatcamTools/ToolCutOut.py:91
  1919. msgid "Tool dia"
  1920. msgstr ""
  1921. #: flatcamEditors/FlatCAMGeoEditor.py:436 flatcamGUI/FlatCAMGUI.py:6861
  1922. msgid ""
  1923. "Diameter of the tool to\n"
  1924. "be used in the operation."
  1925. msgstr ""
  1926. #: flatcamEditors/FlatCAMGeoEditor.py:445 flatcamGUI/FlatCAMGUI.py:6545
  1927. #: flatcamGUI/FlatCAMGUI.py:6890 flatcamTools/ToolNonCopperClear.py:283
  1928. #: flatcamTools/ToolPaint.py:205
  1929. msgid "Overlap Rate"
  1930. msgstr ""
  1931. #: flatcamEditors/FlatCAMGeoEditor.py:447 flatcamGUI/FlatCAMGUI.py:6892
  1932. #: flatcamTools/ToolPaint.py:207
  1933. #, python-format
  1934. msgid ""
  1935. "How much (fraction) of the tool width to overlap each tool pass.\n"
  1936. "Example:\n"
  1937. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  1938. "\n"
  1939. "Adjust the value starting with lower values\n"
  1940. "and increasing it if areas that should be painted are still \n"
  1941. "not painted.\n"
  1942. "Lower values = faster processing, faster execution on PCB.\n"
  1943. "Higher values = slow processing and slow execution on CNC\n"
  1944. "due of too many paths."
  1945. msgstr ""
  1946. #: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:6562
  1947. #: flatcamGUI/FlatCAMGUI.py:6723 flatcamGUI/FlatCAMGUI.py:6907
  1948. #: flatcamTools/ToolNonCopperClear.py:299 flatcamTools/ToolPaint.py:222
  1949. msgid "Margin"
  1950. msgstr ""
  1951. #: flatcamEditors/FlatCAMGeoEditor.py:465 flatcamGUI/FlatCAMGUI.py:6909
  1952. #: flatcamTools/ToolPaint.py:224
  1953. msgid ""
  1954. "Distance by which to avoid\n"
  1955. "the edges of the polygon to\n"
  1956. "be painted."
  1957. msgstr ""
  1958. #: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:6571
  1959. #: flatcamGUI/FlatCAMGUI.py:6918 flatcamTools/ToolNonCopperClear.py:308
  1960. #: flatcamTools/ToolPaint.py:233
  1961. msgid "Method"
  1962. msgstr ""
  1963. #: flatcamEditors/FlatCAMGeoEditor.py:476
  1964. msgid ""
  1965. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  1966. "<BR><B>Seed-based</B>: Outwards from seed."
  1967. msgstr ""
  1968. #: flatcamEditors/FlatCAMGeoEditor.py:482 flatcamGUI/FlatCAMGUI.py:6580
  1969. #: flatcamGUI/FlatCAMGUI.py:6927 flatcamTools/ToolNonCopperClear.py:317
  1970. #: flatcamTools/ToolPaint.py:242
  1971. msgid "Standard"
  1972. msgstr ""
  1973. #: flatcamEditors/FlatCAMGeoEditor.py:483 flatcamGUI/FlatCAMGUI.py:6581
  1974. #: flatcamGUI/FlatCAMGUI.py:6928 flatcamTools/ToolNonCopperClear.py:318
  1975. #: flatcamTools/ToolPaint.py:243
  1976. msgid "Seed-based"
  1977. msgstr ""
  1978. #: flatcamEditors/FlatCAMGeoEditor.py:484 flatcamGUI/FlatCAMGUI.py:6582
  1979. #: flatcamGUI/FlatCAMGUI.py:6929 flatcamTools/ToolNonCopperClear.py:319
  1980. #: flatcamTools/ToolPaint.py:244
  1981. msgid "Straight lines"
  1982. msgstr ""
  1983. #: flatcamEditors/FlatCAMGeoEditor.py:489
  1984. msgid "Connect:"
  1985. msgstr ""
  1986. #: flatcamEditors/FlatCAMGeoEditor.py:491 flatcamGUI/FlatCAMGUI.py:6589
  1987. #: flatcamGUI/FlatCAMGUI.py:6936 flatcamTools/ToolNonCopperClear.py:326
  1988. #: flatcamTools/ToolPaint.py:251
  1989. msgid ""
  1990. "Draw lines between resulting\n"
  1991. "segments to minimize tool lifts."
  1992. msgstr ""
  1993. #: flatcamEditors/FlatCAMGeoEditor.py:498
  1994. msgid "Contour:"
  1995. msgstr ""
  1996. #: flatcamEditors/FlatCAMGeoEditor.py:500 flatcamGUI/FlatCAMGUI.py:6599
  1997. #: flatcamGUI/FlatCAMGUI.py:6946 flatcamTools/ToolNonCopperClear.py:335
  1998. #: flatcamTools/ToolPaint.py:260
  1999. msgid ""
  2000. "Cut around the perimeter of the polygon\n"
  2001. "to trim rough edges."
  2002. msgstr ""
  2003. #: flatcamEditors/FlatCAMGeoEditor.py:511 flatcamGUI/FlatCAMGUI.py:1673
  2004. msgid "Paint"
  2005. msgstr ""
  2006. #: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:661
  2007. #: flatcamGUI/FlatCAMGUI.py:2004 flatcamGUI/ObjectUI.py:1360
  2008. #: flatcamTools/ToolPaint.py:25 flatcamTools/ToolPaint.py:448
  2009. msgid "Paint Tool"
  2010. msgstr ""
  2011. #: flatcamEditors/FlatCAMGeoEditor.py:566
  2012. msgid "Paint cancelled. No shape selected."
  2013. msgstr ""
  2014. #: flatcamEditors/FlatCAMGeoEditor.py:578 flatcamTools/ToolCutOut.py:387
  2015. #: flatcamTools/ToolCutOut.py:585 flatcamTools/ToolCutOut.py:755
  2016. #: flatcamTools/ToolCutOut.py:849 flatcamTools/ToolDblSided.py:367
  2017. msgid "Tool diameter value is missing or wrong format. Add it and retry."
  2018. msgstr ""
  2019. #: flatcamEditors/FlatCAMGeoEditor.py:589
  2020. msgid "Overlap value is missing or wrong format. Add it and retry."
  2021. msgstr ""
  2022. #: flatcamEditors/FlatCAMGeoEditor.py:601
  2023. msgid "Margin distance value is missing or wrong format. Add it and retry."
  2024. msgstr ""
  2025. #: flatcamEditors/FlatCAMGeoEditor.py:609
  2026. #: flatcamEditors/FlatCAMGeoEditor.py:2746
  2027. #: flatcamEditors/FlatCAMGeoEditor.py:2776
  2028. #: flatcamEditors/FlatCAMGeoEditor.py:2806 flatcamGUI/FlatCAMGUI.py:5792
  2029. #: flatcamTools/ToolProperties.py:113 flatcamTools/ToolProperties.py:139
  2030. msgid "Tools"
  2031. msgstr ""
  2032. #: flatcamEditors/FlatCAMGeoEditor.py:620
  2033. #: flatcamEditors/FlatCAMGeoEditor.py:993
  2034. #: flatcamEditors/FlatCAMGrbEditor.py:4812
  2035. #: flatcamEditors/FlatCAMGrbEditor.py:5197 flatcamGUI/FlatCAMGUI.py:672
  2036. #: flatcamGUI/FlatCAMGUI.py:2017 flatcamTools/ToolTransform.py:403
  2037. msgid "Transform Tool"
  2038. msgstr ""
  2039. #: flatcamEditors/FlatCAMGeoEditor.py:621
  2040. #: flatcamEditors/FlatCAMGeoEditor.py:682
  2041. #: flatcamEditors/FlatCAMGrbEditor.py:4813
  2042. #: flatcamEditors/FlatCAMGrbEditor.py:4875 flatcamTools/ToolTransform.py:24
  2043. #: flatcamTools/ToolTransform.py:82
  2044. msgid "Rotate"
  2045. msgstr ""
  2046. #: flatcamEditors/FlatCAMGeoEditor.py:622
  2047. #: flatcamEditors/FlatCAMGrbEditor.py:4814 flatcamTools/ToolTransform.py:25
  2048. msgid "Skew/Shear"
  2049. msgstr ""
  2050. #: flatcamEditors/FlatCAMGeoEditor.py:623
  2051. #: flatcamEditors/FlatCAMGrbEditor.py:2569
  2052. #: flatcamEditors/FlatCAMGrbEditor.py:4815 flatcamGUI/FlatCAMGUI.py:739
  2053. #: flatcamGUI/FlatCAMGUI.py:1700 flatcamGUI/FlatCAMGUI.py:2086
  2054. #: flatcamGUI/ObjectUI.py:79 flatcamGUI/ObjectUI.py:100
  2055. #: flatcamTools/ToolTransform.py:26
  2056. msgid "Scale"
  2057. msgstr ""
  2058. #: flatcamEditors/FlatCAMGeoEditor.py:624
  2059. #: flatcamEditors/FlatCAMGrbEditor.py:4816 flatcamTools/ToolTransform.py:27
  2060. msgid "Mirror (Flip)"
  2061. msgstr ""
  2062. #: flatcamEditors/FlatCAMGeoEditor.py:625
  2063. #: flatcamEditors/FlatCAMGrbEditor.py:4817 flatcamGUI/FlatCAMGUI.py:6622
  2064. #: flatcamGUI/ObjectUI.py:108 flatcamGUI/ObjectUI.py:127
  2065. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  2066. #: flatcamTools/ToolNonCopperClear.py:357 flatcamTools/ToolTransform.py:28
  2067. msgid "Offset"
  2068. msgstr ""
  2069. #: flatcamEditors/FlatCAMGeoEditor.py:636
  2070. #: flatcamEditors/FlatCAMGrbEditor.py:4829
  2071. #, python-format
  2072. msgid "Editor %s"
  2073. msgstr ""
  2074. #: flatcamEditors/FlatCAMGeoEditor.py:668
  2075. #: flatcamEditors/FlatCAMGrbEditor.py:4861
  2076. msgid "Angle:"
  2077. msgstr ""
  2078. #: flatcamEditors/FlatCAMGeoEditor.py:670
  2079. #: flatcamEditors/FlatCAMGrbEditor.py:4863 flatcamGUI/FlatCAMGUI.py:7268
  2080. #: flatcamTools/ToolTransform.py:70
  2081. msgid ""
  2082. "Angle for Rotation action, in degrees.\n"
  2083. "Float number between -360 and 359.\n"
  2084. "Positive numbers for CW motion.\n"
  2085. "Negative numbers for CCW motion."
  2086. msgstr ""
  2087. #: flatcamEditors/FlatCAMGeoEditor.py:684
  2088. #: flatcamEditors/FlatCAMGrbEditor.py:4877
  2089. msgid ""
  2090. "Rotate the selected shape(s).\n"
  2091. "The point of reference is the middle of\n"
  2092. "the bounding box for all selected shapes."
  2093. msgstr ""
  2094. #: flatcamEditors/FlatCAMGeoEditor.py:707
  2095. #: flatcamEditors/FlatCAMGrbEditor.py:4900
  2096. msgid "Angle X:"
  2097. msgstr ""
  2098. #: flatcamEditors/FlatCAMGeoEditor.py:709
  2099. #: flatcamEditors/FlatCAMGeoEditor.py:727
  2100. #: flatcamEditors/FlatCAMGrbEditor.py:4902
  2101. #: flatcamEditors/FlatCAMGrbEditor.py:4920 flatcamGUI/FlatCAMGUI.py:7280
  2102. #: flatcamGUI/FlatCAMGUI.py:7290 flatcamTools/ToolTransform.py:109
  2103. #: flatcamTools/ToolTransform.py:127
  2104. msgid ""
  2105. "Angle for Skew action, in degrees.\n"
  2106. "Float number between -360 and 359."
  2107. msgstr ""
  2108. #: flatcamEditors/FlatCAMGeoEditor.py:718
  2109. #: flatcamEditors/FlatCAMGrbEditor.py:4911 flatcamTools/ToolTransform.py:118
  2110. msgid "Skew X"
  2111. msgstr ""
  2112. #: flatcamEditors/FlatCAMGeoEditor.py:720
  2113. #: flatcamEditors/FlatCAMGeoEditor.py:738
  2114. #: flatcamEditors/FlatCAMGrbEditor.py:4913
  2115. #: flatcamEditors/FlatCAMGrbEditor.py:4931
  2116. msgid ""
  2117. "Skew/shear the selected shape(s).\n"
  2118. "The point of reference is the middle of\n"
  2119. "the bounding box for all selected shapes."
  2120. msgstr ""
  2121. #: flatcamEditors/FlatCAMGeoEditor.py:725
  2122. #: flatcamEditors/FlatCAMGrbEditor.py:4918
  2123. msgid "Angle Y:"
  2124. msgstr ""
  2125. #: flatcamEditors/FlatCAMGeoEditor.py:736
  2126. #: flatcamEditors/FlatCAMGrbEditor.py:4929 flatcamTools/ToolTransform.py:136
  2127. msgid "Skew Y"
  2128. msgstr ""
  2129. #: flatcamEditors/FlatCAMGeoEditor.py:764
  2130. #: flatcamEditors/FlatCAMGrbEditor.py:4957
  2131. msgid "Factor X:"
  2132. msgstr ""
  2133. #: flatcamEditors/FlatCAMGeoEditor.py:766
  2134. #: flatcamEditors/FlatCAMGrbEditor.py:4959
  2135. msgid "Factor for Scale action over X axis."
  2136. msgstr ""
  2137. #: flatcamEditors/FlatCAMGeoEditor.py:774
  2138. #: flatcamEditors/FlatCAMGrbEditor.py:4967 flatcamTools/ToolTransform.py:174
  2139. msgid "Scale X"
  2140. msgstr ""
  2141. #: flatcamEditors/FlatCAMGeoEditor.py:776
  2142. #: flatcamEditors/FlatCAMGeoEditor.py:793
  2143. #: flatcamEditors/FlatCAMGrbEditor.py:4969
  2144. #: flatcamEditors/FlatCAMGrbEditor.py:4986
  2145. msgid ""
  2146. "Scale the selected shape(s).\n"
  2147. "The point of reference depends on \n"
  2148. "the Scale reference checkbox state."
  2149. msgstr ""
  2150. #: flatcamEditors/FlatCAMGeoEditor.py:781
  2151. #: flatcamEditors/FlatCAMGrbEditor.py:4974
  2152. msgid "Factor Y:"
  2153. msgstr ""
  2154. #: flatcamEditors/FlatCAMGeoEditor.py:783
  2155. #: flatcamEditors/FlatCAMGrbEditor.py:4976
  2156. msgid "Factor for Scale action over Y axis."
  2157. msgstr ""
  2158. #: flatcamEditors/FlatCAMGeoEditor.py:791
  2159. #: flatcamEditors/FlatCAMGrbEditor.py:4984 flatcamTools/ToolTransform.py:191
  2160. msgid "Scale Y"
  2161. msgstr ""
  2162. #: flatcamEditors/FlatCAMGeoEditor.py:800
  2163. #: flatcamEditors/FlatCAMGrbEditor.py:4993 flatcamGUI/FlatCAMGUI.py:7315
  2164. #: flatcamTools/ToolTransform.py:200
  2165. msgid "Link"
  2166. msgstr ""
  2167. #: flatcamEditors/FlatCAMGeoEditor.py:802
  2168. #: flatcamEditors/FlatCAMGrbEditor.py:4995
  2169. msgid ""
  2170. "Scale the selected shape(s)\n"
  2171. "using the Scale Factor X for both axis."
  2172. msgstr ""
  2173. #: flatcamEditors/FlatCAMGeoEditor.py:808
  2174. #: flatcamEditors/FlatCAMGrbEditor.py:5001 flatcamGUI/FlatCAMGUI.py:7323
  2175. #: flatcamTools/ToolTransform.py:209
  2176. msgid "Scale Reference"
  2177. msgstr ""
  2178. #: flatcamEditors/FlatCAMGeoEditor.py:810
  2179. #: flatcamEditors/FlatCAMGrbEditor.py:5003
  2180. msgid ""
  2181. "Scale the selected shape(s)\n"
  2182. "using the origin reference when checked,\n"
  2183. "and the center of the biggest bounding box\n"
  2184. "of the selected shapes when unchecked."
  2185. msgstr ""
  2186. #: flatcamEditors/FlatCAMGeoEditor.py:838
  2187. #: flatcamEditors/FlatCAMGrbEditor.py:5032
  2188. msgid "Value X:"
  2189. msgstr ""
  2190. #: flatcamEditors/FlatCAMGeoEditor.py:840
  2191. #: flatcamEditors/FlatCAMGrbEditor.py:5034
  2192. msgid "Value for Offset action on X axis."
  2193. msgstr ""
  2194. #: flatcamEditors/FlatCAMGeoEditor.py:848
  2195. #: flatcamEditors/FlatCAMGrbEditor.py:5042 flatcamTools/ToolTransform.py:249
  2196. msgid "Offset X"
  2197. msgstr ""
  2198. #: flatcamEditors/FlatCAMGeoEditor.py:850
  2199. #: flatcamEditors/FlatCAMGeoEditor.py:868
  2200. #: flatcamEditors/FlatCAMGrbEditor.py:5044
  2201. #: flatcamEditors/FlatCAMGrbEditor.py:5062
  2202. msgid ""
  2203. "Offset the selected shape(s).\n"
  2204. "The point of reference is the middle of\n"
  2205. "the bounding box for all selected shapes.\n"
  2206. msgstr ""
  2207. #: flatcamEditors/FlatCAMGeoEditor.py:856
  2208. #: flatcamEditors/FlatCAMGrbEditor.py:5050
  2209. msgid "Value Y:"
  2210. msgstr ""
  2211. #: flatcamEditors/FlatCAMGeoEditor.py:858
  2212. #: flatcamEditors/FlatCAMGrbEditor.py:5052
  2213. msgid "Value for Offset action on Y axis."
  2214. msgstr ""
  2215. #: flatcamEditors/FlatCAMGeoEditor.py:866
  2216. #: flatcamEditors/FlatCAMGrbEditor.py:5060 flatcamTools/ToolTransform.py:266
  2217. msgid "Offset Y"
  2218. msgstr ""
  2219. #: flatcamEditors/FlatCAMGeoEditor.py:897
  2220. #: flatcamEditors/FlatCAMGrbEditor.py:5091 flatcamTools/ToolTransform.py:296
  2221. msgid "Flip on X"
  2222. msgstr ""
  2223. #: flatcamEditors/FlatCAMGeoEditor.py:899
  2224. #: flatcamEditors/FlatCAMGeoEditor.py:907
  2225. #: flatcamEditors/FlatCAMGrbEditor.py:5093
  2226. #: flatcamEditors/FlatCAMGrbEditor.py:5101
  2227. msgid ""
  2228. "Flip the selected shape(s) over the X axis.\n"
  2229. "Does not create a new shape."
  2230. msgstr ""
  2231. #: flatcamEditors/FlatCAMGeoEditor.py:905
  2232. #: flatcamEditors/FlatCAMGrbEditor.py:5099 flatcamTools/ToolTransform.py:304
  2233. msgid "Flip on Y"
  2234. msgstr ""
  2235. #: flatcamEditors/FlatCAMGeoEditor.py:914
  2236. #: flatcamEditors/FlatCAMGrbEditor.py:5108
  2237. msgid "Ref Pt"
  2238. msgstr ""
  2239. #: flatcamEditors/FlatCAMGeoEditor.py:916
  2240. #: flatcamEditors/FlatCAMGrbEditor.py:5110
  2241. msgid ""
  2242. "Flip the selected shape(s)\n"
  2243. "around the point in Point Entry Field.\n"
  2244. "\n"
  2245. "The point coordinates can be captured by\n"
  2246. "left click on canvas together with pressing\n"
  2247. "SHIFT key. \n"
  2248. "Then click Add button to insert coordinates.\n"
  2249. "Or enter the coords in format (x, y) in the\n"
  2250. "Point Entry field and click Flip on X(Y)"
  2251. msgstr ""
  2252. #: flatcamEditors/FlatCAMGeoEditor.py:928
  2253. #: flatcamEditors/FlatCAMGrbEditor.py:5122
  2254. msgid "Point:"
  2255. msgstr ""
  2256. #: flatcamEditors/FlatCAMGeoEditor.py:930
  2257. #: flatcamEditors/FlatCAMGrbEditor.py:5124
  2258. msgid ""
  2259. "Coordinates in format (x, y) used as reference for mirroring.\n"
  2260. "The 'x' in (x, y) will be used when using Flip on X and\n"
  2261. "the 'y' in (x, y) will be used when using Flip on Y."
  2262. msgstr ""
  2263. #: flatcamEditors/FlatCAMGeoEditor.py:942
  2264. #: flatcamEditors/FlatCAMGrbEditor.py:5136 flatcamTools/ToolTransform.py:340
  2265. msgid ""
  2266. "The point coordinates can be captured by\n"
  2267. "left click on canvas together with pressing\n"
  2268. "SHIFT key. Then click Add button to insert."
  2269. msgstr ""
  2270. #: flatcamEditors/FlatCAMGeoEditor.py:1058
  2271. #: flatcamEditors/FlatCAMGrbEditor.py:5262
  2272. msgid "Transformation cancelled. No shape selected."
  2273. msgstr ""
  2274. #: flatcamEditors/FlatCAMGeoEditor.py:1267
  2275. #: flatcamEditors/FlatCAMGrbEditor.py:5508
  2276. msgid "No shape selected. Please Select a shape to rotate!"
  2277. msgstr ""
  2278. #: flatcamEditors/FlatCAMGeoEditor.py:1270
  2279. #: flatcamEditors/FlatCAMGrbEditor.py:5511 flatcamTools/ToolTransform.py:646
  2280. msgid "Appying Rotate"
  2281. msgstr ""
  2282. #: flatcamEditors/FlatCAMGeoEditor.py:1299
  2283. #: flatcamEditors/FlatCAMGrbEditor.py:5545
  2284. msgid "Done. Rotate completed."
  2285. msgstr ""
  2286. #: flatcamEditors/FlatCAMGeoEditor.py:1305
  2287. msgid "Rotation action was not executed"
  2288. msgstr ""
  2289. #: flatcamEditors/FlatCAMGeoEditor.py:1317
  2290. #: flatcamEditors/FlatCAMGrbEditor.py:5566
  2291. msgid "No shape selected. Please Select a shape to flip!"
  2292. msgstr ""
  2293. #: flatcamEditors/FlatCAMGeoEditor.py:1320
  2294. #: flatcamEditors/FlatCAMGrbEditor.py:5569 flatcamTools/ToolTransform.py:699
  2295. msgid "Applying Flip"
  2296. msgstr ""
  2297. #: flatcamEditors/FlatCAMGeoEditor.py:1351
  2298. #: flatcamEditors/FlatCAMGrbEditor.py:5609 flatcamTools/ToolTransform.py:742
  2299. msgid "Flip on the Y axis done"
  2300. msgstr ""
  2301. #: flatcamEditors/FlatCAMGeoEditor.py:1355
  2302. #: flatcamEditors/FlatCAMGrbEditor.py:5618 flatcamTools/ToolTransform.py:752
  2303. msgid "Flip on the X axis done"
  2304. msgstr ""
  2305. #: flatcamEditors/FlatCAMGeoEditor.py:1366
  2306. msgid "Flip action was not executed"
  2307. msgstr ""
  2308. #: flatcamEditors/FlatCAMGeoEditor.py:1376
  2309. #: flatcamEditors/FlatCAMGrbEditor.py:5640
  2310. msgid "No shape selected. Please Select a shape to shear/skew!"
  2311. msgstr ""
  2312. #: flatcamEditors/FlatCAMGeoEditor.py:1379
  2313. #: flatcamEditors/FlatCAMGrbEditor.py:5643 flatcamTools/ToolTransform.py:772
  2314. msgid "Applying Skew"
  2315. msgstr ""
  2316. #: flatcamEditors/FlatCAMGeoEditor.py:1405
  2317. #: flatcamEditors/FlatCAMGrbEditor.py:5680
  2318. msgid "Skew on the X axis done"
  2319. msgstr ""
  2320. #: flatcamEditors/FlatCAMGeoEditor.py:1408
  2321. #: flatcamEditors/FlatCAMGrbEditor.py:5683
  2322. msgid "Skew on the Y axis done"
  2323. msgstr ""
  2324. #: flatcamEditors/FlatCAMGeoEditor.py:1413
  2325. msgid "Skew action was not executed"
  2326. msgstr ""
  2327. #: flatcamEditors/FlatCAMGeoEditor.py:1425
  2328. #: flatcamEditors/FlatCAMGrbEditor.py:5708
  2329. msgid "No shape selected. Please Select a shape to scale!"
  2330. msgstr ""
  2331. #: flatcamEditors/FlatCAMGeoEditor.py:1428
  2332. #: flatcamEditors/FlatCAMGrbEditor.py:5711 flatcamTools/ToolTransform.py:823
  2333. msgid "Applying Scale"
  2334. msgstr ""
  2335. #: flatcamEditors/FlatCAMGeoEditor.py:1463
  2336. #: flatcamEditors/FlatCAMGrbEditor.py:5751
  2337. msgid "Scale on the X axis done"
  2338. msgstr ""
  2339. #: flatcamEditors/FlatCAMGeoEditor.py:1466
  2340. #: flatcamEditors/FlatCAMGrbEditor.py:5754
  2341. msgid "Scale on the Y axis done"
  2342. msgstr ""
  2343. #: flatcamEditors/FlatCAMGeoEditor.py:1470
  2344. msgid "Scale action was not executed"
  2345. msgstr ""
  2346. #: flatcamEditors/FlatCAMGeoEditor.py:1480
  2347. #: flatcamEditors/FlatCAMGrbEditor.py:5772
  2348. msgid "No shape selected. Please Select a shape to offset!"
  2349. msgstr ""
  2350. #: flatcamEditors/FlatCAMGeoEditor.py:1483
  2351. #: flatcamEditors/FlatCAMGrbEditor.py:5775 flatcamTools/ToolTransform.py:878
  2352. msgid "Applying Offset"
  2353. msgstr ""
  2354. #: flatcamEditors/FlatCAMGeoEditor.py:1496
  2355. #: flatcamEditors/FlatCAMGrbEditor.py:5799
  2356. msgid "Offset on the X axis done"
  2357. msgstr ""
  2358. #: flatcamEditors/FlatCAMGeoEditor.py:1499
  2359. #: flatcamEditors/FlatCAMGrbEditor.py:5802
  2360. msgid "Offset on the Y axis done"
  2361. msgstr ""
  2362. #: flatcamEditors/FlatCAMGeoEditor.py:1504
  2363. msgid "Offset action was not executed"
  2364. msgstr ""
  2365. #: flatcamEditors/FlatCAMGeoEditor.py:1508
  2366. #: flatcamEditors/FlatCAMGrbEditor.py:5811
  2367. msgid "Rotate ..."
  2368. msgstr ""
  2369. #: flatcamEditors/FlatCAMGeoEditor.py:1509
  2370. #: flatcamEditors/FlatCAMGeoEditor.py:1564
  2371. #: flatcamEditors/FlatCAMGeoEditor.py:1581
  2372. #: flatcamEditors/FlatCAMGrbEditor.py:5812
  2373. #: flatcamEditors/FlatCAMGrbEditor.py:5867
  2374. #: flatcamEditors/FlatCAMGrbEditor.py:5884
  2375. msgid "Enter an Angle Value (degrees)"
  2376. msgstr ""
  2377. #: flatcamEditors/FlatCAMGeoEditor.py:1518
  2378. #: flatcamEditors/FlatCAMGrbEditor.py:5821
  2379. msgid "Geometry shape rotate done"
  2380. msgstr ""
  2381. #: flatcamEditors/FlatCAMGeoEditor.py:1522
  2382. #: flatcamEditors/FlatCAMGrbEditor.py:5825
  2383. msgid "Geometry shape rotate cancelled"
  2384. msgstr ""
  2385. #: flatcamEditors/FlatCAMGeoEditor.py:1527
  2386. #: flatcamEditors/FlatCAMGrbEditor.py:5830
  2387. msgid "Offset on X axis ..."
  2388. msgstr ""
  2389. #: flatcamEditors/FlatCAMGeoEditor.py:1528
  2390. #: flatcamEditors/FlatCAMGeoEditor.py:1547
  2391. #: flatcamEditors/FlatCAMGrbEditor.py:5831
  2392. #: flatcamEditors/FlatCAMGrbEditor.py:5850
  2393. msgid "Enter a distance Value"
  2394. msgstr ""
  2395. #: flatcamEditors/FlatCAMGeoEditor.py:1537
  2396. #: flatcamEditors/FlatCAMGrbEditor.py:5840
  2397. msgid "Geometry shape offset on X axis done"
  2398. msgstr ""
  2399. #: flatcamEditors/FlatCAMGeoEditor.py:1541
  2400. #: flatcamEditors/FlatCAMGrbEditor.py:5844
  2401. msgid "Geometry shape offset X cancelled"
  2402. msgstr ""
  2403. #: flatcamEditors/FlatCAMGeoEditor.py:1546
  2404. #: flatcamEditors/FlatCAMGrbEditor.py:5849
  2405. msgid "Offset on Y axis ..."
  2406. msgstr ""
  2407. #: flatcamEditors/FlatCAMGeoEditor.py:1556
  2408. #: flatcamEditors/FlatCAMGrbEditor.py:5859
  2409. msgid "Geometry shape offset on Y axis done"
  2410. msgstr ""
  2411. #: flatcamEditors/FlatCAMGeoEditor.py:1560
  2412. msgid "Geometry shape offset on Y axis canceled"
  2413. msgstr ""
  2414. #: flatcamEditors/FlatCAMGeoEditor.py:1563
  2415. #: flatcamEditors/FlatCAMGrbEditor.py:5866
  2416. msgid "Skew on X axis ..."
  2417. msgstr ""
  2418. #: flatcamEditors/FlatCAMGeoEditor.py:1573
  2419. #: flatcamEditors/FlatCAMGrbEditor.py:5876
  2420. msgid "Geometry shape skew on X axis done"
  2421. msgstr ""
  2422. #: flatcamEditors/FlatCAMGeoEditor.py:1577
  2423. msgid "Geometry shape skew on X axis canceled"
  2424. msgstr ""
  2425. #: flatcamEditors/FlatCAMGeoEditor.py:1580
  2426. #: flatcamEditors/FlatCAMGrbEditor.py:5883
  2427. msgid "Skew on Y axis ..."
  2428. msgstr ""
  2429. #: flatcamEditors/FlatCAMGeoEditor.py:1590
  2430. #: flatcamEditors/FlatCAMGrbEditor.py:5893
  2431. msgid "Geometry shape skew on Y axis done"
  2432. msgstr ""
  2433. #: flatcamEditors/FlatCAMGeoEditor.py:1594
  2434. msgid "Geometry shape skew on Y axis canceled"
  2435. msgstr ""
  2436. #: flatcamEditors/FlatCAMGeoEditor.py:1958
  2437. #: flatcamEditors/FlatCAMGeoEditor.py:2010
  2438. #: flatcamEditors/FlatCAMGrbEditor.py:1396
  2439. #: flatcamEditors/FlatCAMGrbEditor.py:1466
  2440. msgid "Click on Center point ..."
  2441. msgstr ""
  2442. #: flatcamEditors/FlatCAMGeoEditor.py:1965
  2443. #: flatcamEditors/FlatCAMGrbEditor.py:1404
  2444. msgid "Click on Perimeter point to complete ..."
  2445. msgstr ""
  2446. #: flatcamEditors/FlatCAMGeoEditor.py:1995
  2447. msgid "Done. Adding Circle completed."
  2448. msgstr ""
  2449. #: flatcamEditors/FlatCAMGeoEditor.py:2030
  2450. #: flatcamEditors/FlatCAMGrbEditor.py:1498
  2451. msgid "Click on Start point ..."
  2452. msgstr ""
  2453. #: flatcamEditors/FlatCAMGeoEditor.py:2032
  2454. #: flatcamEditors/FlatCAMGrbEditor.py:1500
  2455. msgid "Click on Point3 ..."
  2456. msgstr ""
  2457. #: flatcamEditors/FlatCAMGeoEditor.py:2034
  2458. #: flatcamEditors/FlatCAMGrbEditor.py:1502
  2459. msgid "Click on Stop point ..."
  2460. msgstr ""
  2461. #: flatcamEditors/FlatCAMGeoEditor.py:2039
  2462. #: flatcamEditors/FlatCAMGrbEditor.py:1507
  2463. msgid "Click on Stop point to complete ..."
  2464. msgstr ""
  2465. #: flatcamEditors/FlatCAMGeoEditor.py:2041
  2466. #: flatcamEditors/FlatCAMGrbEditor.py:1509
  2467. msgid "Click on Point2 to complete ..."
  2468. msgstr ""
  2469. #: flatcamEditors/FlatCAMGeoEditor.py:2043
  2470. #: flatcamEditors/FlatCAMGrbEditor.py:1511
  2471. msgid "Click on Center point to complete ..."
  2472. msgstr ""
  2473. #: flatcamEditors/FlatCAMGeoEditor.py:2055
  2474. #: flatcamEditors/FlatCAMGrbEditor.py:1523
  2475. #, python-format
  2476. msgid "Direction: %s"
  2477. msgstr ""
  2478. #: flatcamEditors/FlatCAMGeoEditor.py:2065
  2479. #: flatcamEditors/FlatCAMGrbEditor.py:1533
  2480. msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
  2481. msgstr ""
  2482. #: flatcamEditors/FlatCAMGeoEditor.py:2068
  2483. #: flatcamEditors/FlatCAMGrbEditor.py:1536
  2484. msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
  2485. msgstr ""
  2486. #: flatcamEditors/FlatCAMGeoEditor.py:2071
  2487. #: flatcamEditors/FlatCAMGrbEditor.py:1539
  2488. msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
  2489. msgstr ""
  2490. #: flatcamEditors/FlatCAMGeoEditor.py:2210
  2491. msgid "Done. Arc completed."
  2492. msgstr ""
  2493. #: flatcamEditors/FlatCAMGeoEditor.py:2229
  2494. #: flatcamEditors/FlatCAMGeoEditor.py:2283
  2495. #: flatcamEditors/FlatCAMGeoEditor.py:2656
  2496. msgid "Click on 1st corner ..."
  2497. msgstr ""
  2498. #: flatcamEditors/FlatCAMGeoEditor.py:2235
  2499. msgid "Click on opposite corner to complete ..."
  2500. msgstr ""
  2501. #: flatcamEditors/FlatCAMGeoEditor.py:2264
  2502. msgid "Done. Rectangle completed."
  2503. msgstr ""
  2504. #: flatcamEditors/FlatCAMGeoEditor.py:2290
  2505. msgid "Click on next Point or click right mouse button to complete ..."
  2506. msgstr ""
  2507. #: flatcamEditors/FlatCAMGeoEditor.py:2319
  2508. msgid "Done. Polygon completed."
  2509. msgstr ""
  2510. #: flatcamEditors/FlatCAMGeoEditor.py:2329
  2511. #: flatcamEditors/FlatCAMGeoEditor.py:2375
  2512. #: flatcamEditors/FlatCAMGrbEditor.py:1085
  2513. #: flatcamEditors/FlatCAMGrbEditor.py:1287
  2514. msgid "Backtracked one point ..."
  2515. msgstr ""
  2516. #: flatcamEditors/FlatCAMGeoEditor.py:2357
  2517. msgid "[success] Done. Path completed."
  2518. msgstr ""
  2519. #: flatcamEditors/FlatCAMGeoEditor.py:2475
  2520. msgid "MOVE: No shape selected. Select a shape to move"
  2521. msgstr ""
  2522. #: flatcamEditors/FlatCAMGeoEditor.py:2477
  2523. #: flatcamEditors/FlatCAMGeoEditor.py:2489
  2524. msgid " MOVE: Click on reference point ..."
  2525. msgstr ""
  2526. #: flatcamEditors/FlatCAMGeoEditor.py:2480
  2527. msgid " Click on destination point ..."
  2528. msgstr ""
  2529. #: flatcamEditors/FlatCAMGeoEditor.py:2515
  2530. msgid "Done. Geometry(s) Move completed."
  2531. msgstr ""
  2532. #: flatcamEditors/FlatCAMGeoEditor.py:2636
  2533. msgid "Done. Geometry(s) Copy completed."
  2534. msgstr ""
  2535. #: flatcamEditors/FlatCAMGeoEditor.py:2673
  2536. msgid ""
  2537. "Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
  2538. "Error"
  2539. msgstr ""
  2540. #: flatcamEditors/FlatCAMGeoEditor.py:2681
  2541. msgid "No text to add."
  2542. msgstr ""
  2543. #: flatcamEditors/FlatCAMGeoEditor.py:2688
  2544. msgid " Done. Adding Text completed."
  2545. msgstr ""
  2546. #: flatcamEditors/FlatCAMGeoEditor.py:2716
  2547. msgid "Create buffer geometry ..."
  2548. msgstr ""
  2549. #: flatcamEditors/FlatCAMGeoEditor.py:2728
  2550. #: flatcamEditors/FlatCAMGeoEditor.py:2758
  2551. #: flatcamEditors/FlatCAMGeoEditor.py:2788
  2552. msgid "Buffer cancelled. No shape selected."
  2553. msgstr ""
  2554. #: flatcamEditors/FlatCAMGeoEditor.py:2753
  2555. #: flatcamEditors/FlatCAMGrbEditor.py:4674
  2556. msgid "Done. Buffer Tool completed."
  2557. msgstr ""
  2558. #: flatcamEditors/FlatCAMGeoEditor.py:2783
  2559. msgid "Done. Buffer Int Tool completed."
  2560. msgstr ""
  2561. #: flatcamEditors/FlatCAMGeoEditor.py:2813
  2562. msgid "Done. Buffer Ext Tool completed."
  2563. msgstr ""
  2564. #: flatcamEditors/FlatCAMGeoEditor.py:2848
  2565. #: flatcamEditors/FlatCAMGrbEditor.py:2068
  2566. msgid "Select a shape to act as deletion area ..."
  2567. msgstr ""
  2568. #: flatcamEditors/FlatCAMGeoEditor.py:2850
  2569. #: flatcamEditors/FlatCAMGeoEditor.py:2869
  2570. #: flatcamEditors/FlatCAMGeoEditor.py:2875
  2571. #: flatcamEditors/FlatCAMGrbEditor.py:2070
  2572. msgid "Click to pick-up the erase shape..."
  2573. msgstr ""
  2574. #: flatcamEditors/FlatCAMGeoEditor.py:2879
  2575. #: flatcamEditors/FlatCAMGrbEditor.py:2127
  2576. msgid "Click to erase ..."
  2577. msgstr ""
  2578. #: flatcamEditors/FlatCAMGeoEditor.py:2909
  2579. #: flatcamEditors/FlatCAMGrbEditor.py:2161
  2580. msgid "Done. Eraser tool action completed."
  2581. msgstr ""
  2582. #: flatcamEditors/FlatCAMGeoEditor.py:2952
  2583. msgid "Create Paint geometry ..."
  2584. msgstr ""
  2585. #: flatcamEditors/FlatCAMGeoEditor.py:2966
  2586. #: flatcamEditors/FlatCAMGrbEditor.py:2312
  2587. msgid "Shape transformations ..."
  2588. msgstr ""
  2589. #: flatcamEditors/FlatCAMGeoEditor.py:3545
  2590. msgid "Editing MultiGeo Geometry, tool"
  2591. msgstr ""
  2592. #: flatcamEditors/FlatCAMGeoEditor.py:3547
  2593. msgid "with diameter"
  2594. msgstr ""
  2595. #: flatcamEditors/FlatCAMGeoEditor.py:3924
  2596. msgid "Copy cancelled. No shape selected."
  2597. msgstr ""
  2598. #: flatcamEditors/FlatCAMGeoEditor.py:3931 flatcamGUI/FlatCAMGUI.py:2882
  2599. #: flatcamGUI/FlatCAMGUI.py:2928 flatcamGUI/FlatCAMGUI.py:2946
  2600. #: flatcamGUI/FlatCAMGUI.py:3077 flatcamGUI/FlatCAMGUI.py:3089
  2601. #: flatcamGUI/FlatCAMGUI.py:3123 flatcamGUI/FlatCAMGUI.py:3180
  2602. msgid "Click on target point."
  2603. msgstr ""
  2604. #: flatcamEditors/FlatCAMGeoEditor.py:4175
  2605. #: flatcamEditors/FlatCAMGeoEditor.py:4210
  2606. msgid "A selection of at least 2 geo items is required to do Intersection."
  2607. msgstr ""
  2608. #: flatcamEditors/FlatCAMGeoEditor.py:4296
  2609. #: flatcamEditors/FlatCAMGeoEditor.py:4405
  2610. msgid ""
  2611. "Negative buffer value is not accepted. Use Buffer interior to generate an "
  2612. "'inside' shape"
  2613. msgstr ""
  2614. #: flatcamEditors/FlatCAMGeoEditor.py:4306
  2615. #: flatcamEditors/FlatCAMGeoEditor.py:4362
  2616. #: flatcamEditors/FlatCAMGeoEditor.py:4414
  2617. msgid "Nothing selected for buffering."
  2618. msgstr ""
  2619. #: flatcamEditors/FlatCAMGeoEditor.py:4311
  2620. #: flatcamEditors/FlatCAMGeoEditor.py:4367
  2621. #: flatcamEditors/FlatCAMGeoEditor.py:4419
  2622. msgid "Invalid distance for buffering."
  2623. msgstr ""
  2624. #: flatcamEditors/FlatCAMGeoEditor.py:4335
  2625. #: flatcamEditors/FlatCAMGeoEditor.py:4439
  2626. msgid "Failed, the result is empty. Choose a different buffer value."
  2627. msgstr ""
  2628. #: flatcamEditors/FlatCAMGeoEditor.py:4346
  2629. msgid "Full buffer geometry created."
  2630. msgstr ""
  2631. #: flatcamEditors/FlatCAMGeoEditor.py:4353
  2632. msgid "Negative buffer value is not accepted."
  2633. msgstr ""
  2634. #: flatcamEditors/FlatCAMGeoEditor.py:4387
  2635. msgid "Failed, the result is empty. Choose a smaller buffer value."
  2636. msgstr ""
  2637. #: flatcamEditors/FlatCAMGeoEditor.py:4398
  2638. msgid "Interior buffer geometry created."
  2639. msgstr ""
  2640. #: flatcamEditors/FlatCAMGeoEditor.py:4450
  2641. msgid "Exterior buffer geometry created."
  2642. msgstr ""
  2643. #: flatcamEditors/FlatCAMGeoEditor.py:4515
  2644. msgid "Nothing selected for painting."
  2645. msgstr ""
  2646. #: flatcamEditors/FlatCAMGeoEditor.py:4522
  2647. msgid "Invalid value for"
  2648. msgstr ""
  2649. #: flatcamEditors/FlatCAMGeoEditor.py:4528
  2650. #, python-format
  2651. msgid "Could not do Paint. Overlap value has to be less than 1.00 (100%%)."
  2652. msgstr ""
  2653. #: flatcamEditors/FlatCAMGeoEditor.py:4587
  2654. #, python-format
  2655. msgid ""
  2656. "Could not do Paint. Try a different combination of parameters. Or a "
  2657. "different method of Paint\n"
  2658. "%s"
  2659. msgstr ""
  2660. #: flatcamEditors/FlatCAMGeoEditor.py:4598
  2661. msgid "[success] Paint done."
  2662. msgstr ""
  2663. #: flatcamEditors/FlatCAMGrbEditor.py:208
  2664. msgid "To add an Pad first select a aperture in Aperture Table"
  2665. msgstr ""
  2666. #: flatcamEditors/FlatCAMGrbEditor.py:215
  2667. #: flatcamEditors/FlatCAMGrbEditor.py:409
  2668. msgid "Aperture size is zero. It needs to be greater than zero."
  2669. msgstr ""
  2670. #: flatcamEditors/FlatCAMGrbEditor.py:366
  2671. #: flatcamEditors/FlatCAMGrbEditor.py:674
  2672. msgid ""
  2673. "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2674. msgstr ""
  2675. #: flatcamEditors/FlatCAMGrbEditor.py:379
  2676. msgid "Done. Adding Pad completed."
  2677. msgstr ""
  2678. #: flatcamEditors/FlatCAMGrbEditor.py:401
  2679. msgid "To add an Pad Array first select a aperture in Aperture Table"
  2680. msgstr ""
  2681. #: flatcamEditors/FlatCAMGrbEditor.py:479
  2682. msgid "Click on the Pad Circular Array Start position"
  2683. msgstr ""
  2684. #: flatcamEditors/FlatCAMGrbEditor.py:700
  2685. msgid "Too many Pads for the selected spacing angle."
  2686. msgstr ""
  2687. #: flatcamEditors/FlatCAMGrbEditor.py:723
  2688. msgid "Done. Pad Array added."
  2689. msgstr ""
  2690. #: flatcamEditors/FlatCAMGrbEditor.py:744
  2691. msgid "Select shape(s) and then click ..."
  2692. msgstr ""
  2693. #: flatcamEditors/FlatCAMGrbEditor.py:756
  2694. msgid "Failed. Nothing selected."
  2695. msgstr ""
  2696. #: flatcamEditors/FlatCAMGrbEditor.py:772
  2697. msgid ""
  2698. "Failed. Poligonize works only on geometries belonging to the same aperture."
  2699. msgstr ""
  2700. #: flatcamEditors/FlatCAMGrbEditor.py:826
  2701. msgid "Done. Poligonize completed."
  2702. msgstr ""
  2703. #: flatcamEditors/FlatCAMGrbEditor.py:879
  2704. #: flatcamEditors/FlatCAMGrbEditor.py:1102
  2705. #: flatcamEditors/FlatCAMGrbEditor.py:1126
  2706. msgid "Corner Mode 1: 45 degrees ..."
  2707. msgstr ""
  2708. #: flatcamEditors/FlatCAMGrbEditor.py:881
  2709. msgid "Click on 1st point ..."
  2710. msgstr ""
  2711. #: flatcamEditors/FlatCAMGrbEditor.py:891
  2712. #: flatcamEditors/FlatCAMGrbEditor.py:1202
  2713. msgid "Click on next Point or click Right mouse button to complete ..."
  2714. msgstr ""
  2715. #: flatcamEditors/FlatCAMGrbEditor.py:1090
  2716. #: flatcamEditors/FlatCAMGrbEditor.py:1123
  2717. msgid "Corner Mode 2: Reverse 45 degrees ..."
  2718. msgstr ""
  2719. #: flatcamEditors/FlatCAMGrbEditor.py:1093
  2720. #: flatcamEditors/FlatCAMGrbEditor.py:1120
  2721. msgid "Corner Mode 3: 90 degrees ..."
  2722. msgstr ""
  2723. #: flatcamEditors/FlatCAMGrbEditor.py:1096
  2724. #: flatcamEditors/FlatCAMGrbEditor.py:1117
  2725. msgid "Corner Mode 4: Reverse 90 degrees ..."
  2726. msgstr ""
  2727. #: flatcamEditors/FlatCAMGrbEditor.py:1099
  2728. #: flatcamEditors/FlatCAMGrbEditor.py:1114
  2729. msgid "Corner Mode 5: Free angle ..."
  2730. msgstr ""
  2731. #: flatcamEditors/FlatCAMGrbEditor.py:1153
  2732. #: flatcamEditors/FlatCAMGrbEditor.py:1319
  2733. #: flatcamEditors/FlatCAMGrbEditor.py:1358
  2734. msgid "Track Mode 1: 45 degrees ..."
  2735. msgstr ""
  2736. #: flatcamEditors/FlatCAMGrbEditor.py:1299
  2737. #: flatcamEditors/FlatCAMGrbEditor.py:1353
  2738. msgid "Track Mode 2: Reverse 45 degrees ..."
  2739. msgstr ""
  2740. #: flatcamEditors/FlatCAMGrbEditor.py:1304
  2741. #: flatcamEditors/FlatCAMGrbEditor.py:1348
  2742. msgid "Track Mode 3: 90 degrees ..."
  2743. msgstr ""
  2744. #: flatcamEditors/FlatCAMGrbEditor.py:1309
  2745. #: flatcamEditors/FlatCAMGrbEditor.py:1343
  2746. msgid "Track Mode 4: Reverse 90 degrees ..."
  2747. msgstr ""
  2748. #: flatcamEditors/FlatCAMGrbEditor.py:1314
  2749. #: flatcamEditors/FlatCAMGrbEditor.py:1338
  2750. msgid "Track Mode 5: Free angle ..."
  2751. msgstr ""
  2752. #: flatcamEditors/FlatCAMGrbEditor.py:1720
  2753. msgid "Scale the selected Gerber apertures ..."
  2754. msgstr ""
  2755. #: flatcamEditors/FlatCAMGrbEditor.py:1762
  2756. msgid "Buffer the selected apertures ..."
  2757. msgstr ""
  2758. #: flatcamEditors/FlatCAMGrbEditor.py:1804
  2759. msgid "Mark polygon areas in the edited Gerber ..."
  2760. msgstr ""
  2761. #: flatcamEditors/FlatCAMGrbEditor.py:1852
  2762. msgid "Nothing selected to move"
  2763. msgstr ""
  2764. #: flatcamEditors/FlatCAMGrbEditor.py:1976
  2765. msgid "Done. Apertures Move completed."
  2766. msgstr ""
  2767. #: flatcamEditors/FlatCAMGrbEditor.py:2053
  2768. msgid "Done. Apertures copied."
  2769. msgstr ""
  2770. #: flatcamEditors/FlatCAMGrbEditor.py:2354 flatcamGUI/FlatCAMGUI.py:1686
  2771. #: flatcamGUI/FlatCAMGUI.py:4629
  2772. msgid "Gerber Editor"
  2773. msgstr ""
  2774. #: flatcamEditors/FlatCAMGrbEditor.py:2374 flatcamGUI/ObjectUI.py:192
  2775. #: flatcamTools/ToolProperties.py:137
  2776. msgid "Apertures"
  2777. msgstr ""
  2778. #: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/ObjectUI.py:194
  2779. msgid "Apertures Table for the Gerber Object."
  2780. msgstr ""
  2781. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  2782. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  2783. msgid "Code"
  2784. msgstr ""
  2785. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  2786. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  2787. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  2788. msgid "Type"
  2789. msgstr ""
  2790. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  2791. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  2792. msgid "Size"
  2793. msgstr ""
  2794. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  2795. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  2796. msgid "Dim"
  2797. msgstr ""
  2798. #: flatcamEditors/FlatCAMGrbEditor.py:2391 flatcamGUI/ObjectUI.py:231
  2799. msgid "Index"
  2800. msgstr ""
  2801. #: flatcamEditors/FlatCAMGrbEditor.py:2393
  2802. #: flatcamEditors/FlatCAMGrbEditor.py:2420 flatcamGUI/ObjectUI.py:233
  2803. msgid "Aperture Code"
  2804. msgstr ""
  2805. #: flatcamEditors/FlatCAMGrbEditor.py:2395 flatcamGUI/ObjectUI.py:235
  2806. msgid "Type of aperture: circular, rectangle, macros etc"
  2807. msgstr ""
  2808. #: flatcamEditors/FlatCAMGrbEditor.py:2397 flatcamGUI/ObjectUI.py:237
  2809. msgid "Aperture Size:"
  2810. msgstr ""
  2811. #: flatcamEditors/FlatCAMGrbEditor.py:2399 flatcamGUI/ObjectUI.py:239
  2812. msgid ""
  2813. "Aperture Dimensions:\n"
  2814. " - (width, height) for R, O type.\n"
  2815. " - (dia, nVertices) for P type"
  2816. msgstr ""
  2817. #: flatcamEditors/FlatCAMGrbEditor.py:2422 flatcamGUI/FlatCAMGUI.py:4658
  2818. msgid "Code for the new aperture"
  2819. msgstr ""
  2820. #: flatcamEditors/FlatCAMGrbEditor.py:2430
  2821. msgid "Aperture Size"
  2822. msgstr ""
  2823. #: flatcamEditors/FlatCAMGrbEditor.py:2432
  2824. msgid ""
  2825. "Size for the new aperture.\n"
  2826. "If aperture type is 'R' or 'O' then\n"
  2827. "this value is automatically\n"
  2828. "calculated as:\n"
  2829. "sqrt(width**2 + height**2)"
  2830. msgstr ""
  2831. #: flatcamEditors/FlatCAMGrbEditor.py:2444
  2832. msgid "Aperture Type"
  2833. msgstr ""
  2834. #: flatcamEditors/FlatCAMGrbEditor.py:2446
  2835. msgid ""
  2836. "Select the type of new aperture. Can be:\n"
  2837. "C = circular\n"
  2838. "R = rectangular\n"
  2839. "O = oblong"
  2840. msgstr ""
  2841. #: flatcamEditors/FlatCAMGrbEditor.py:2457
  2842. msgid "Aperture Dim"
  2843. msgstr ""
  2844. #: flatcamEditors/FlatCAMGrbEditor.py:2459
  2845. msgid ""
  2846. "Dimensions for the new aperture.\n"
  2847. "Active only for rectangular apertures (type R).\n"
  2848. "The format is (width, height)"
  2849. msgstr ""
  2850. #: flatcamEditors/FlatCAMGrbEditor.py:2468
  2851. msgid "Add/Delete Aperture"
  2852. msgstr ""
  2853. #: flatcamEditors/FlatCAMGrbEditor.py:2470
  2854. msgid "Add/Delete an aperture in the aperture table"
  2855. msgstr ""
  2856. #: flatcamEditors/FlatCAMGrbEditor.py:2479
  2857. msgid "Add a new aperture to the aperture list."
  2858. msgstr ""
  2859. #: flatcamEditors/FlatCAMGrbEditor.py:2484
  2860. msgid "Delete a aperture in the aperture list"
  2861. msgstr ""
  2862. #: flatcamEditors/FlatCAMGrbEditor.py:2501
  2863. msgid "Buffer Aperture"
  2864. msgstr ""
  2865. #: flatcamEditors/FlatCAMGrbEditor.py:2503
  2866. msgid "Buffer a aperture in the aperture list"
  2867. msgstr ""
  2868. #: flatcamEditors/FlatCAMGrbEditor.py:2513 flatcamGUI/FlatCAMGUI.py:4781
  2869. msgid "Buffer distance"
  2870. msgstr ""
  2871. #: flatcamEditors/FlatCAMGrbEditor.py:2514
  2872. msgid "Buffer corner"
  2873. msgstr ""
  2874. #: flatcamEditors/FlatCAMGrbEditor.py:2516
  2875. msgid ""
  2876. "There are 3 types of corners:\n"
  2877. " - 'Round': the corner is rounded.\n"
  2878. " - 'Square:' the corner is met in a sharp angle.\n"
  2879. " - 'Beveled:' the corner is a line that directly connects the features "
  2880. "meeting in the corner"
  2881. msgstr ""
  2882. #: flatcamEditors/FlatCAMGrbEditor.py:2531 flatcamGUI/FlatCAMGUI.py:738
  2883. #: flatcamGUI/FlatCAMGUI.py:1672 flatcamGUI/FlatCAMGUI.py:1699
  2884. #: flatcamGUI/FlatCAMGUI.py:2085
  2885. msgid "Buffer"
  2886. msgstr ""
  2887. #: flatcamEditors/FlatCAMGrbEditor.py:2546
  2888. msgid "Scale Aperture"
  2889. msgstr ""
  2890. #: flatcamEditors/FlatCAMGrbEditor.py:2548
  2891. msgid "Scale a aperture in the aperture list"
  2892. msgstr ""
  2893. #: flatcamEditors/FlatCAMGrbEditor.py:2556 flatcamGUI/FlatCAMGUI.py:4794
  2894. msgid "Scale factor"
  2895. msgstr ""
  2896. #: flatcamEditors/FlatCAMGrbEditor.py:2558
  2897. msgid ""
  2898. "The factor by which to scale the selected aperture.\n"
  2899. "Values can be between 0.0000 and 999.9999"
  2900. msgstr ""
  2901. #: flatcamEditors/FlatCAMGrbEditor.py:2584
  2902. msgid "Mark polygon areas"
  2903. msgstr ""
  2904. #: flatcamEditors/FlatCAMGrbEditor.py:2586
  2905. msgid "Mark the polygon areas."
  2906. msgstr ""
  2907. #: flatcamEditors/FlatCAMGrbEditor.py:2594
  2908. msgid "Area UPPER threshold"
  2909. msgstr ""
  2910. #: flatcamEditors/FlatCAMGrbEditor.py:2596
  2911. msgid ""
  2912. "The threshold value, all areas less than this are marked.\n"
  2913. "Can have a value between 0.0000 and 9999.9999"
  2914. msgstr ""
  2915. #: flatcamEditors/FlatCAMGrbEditor.py:2602
  2916. msgid "Area LOWER threshold"
  2917. msgstr ""
  2918. #: flatcamEditors/FlatCAMGrbEditor.py:2604
  2919. msgid ""
  2920. "The threshold value, all areas more than this are marked.\n"
  2921. "Can have a value between 0.0000 and 9999.9999"
  2922. msgstr ""
  2923. #: flatcamEditors/FlatCAMGrbEditor.py:2617
  2924. msgid "Go"
  2925. msgstr ""
  2926. #: flatcamEditors/FlatCAMGrbEditor.py:2636 flatcamGUI/FlatCAMGUI.py:728
  2927. #: flatcamGUI/FlatCAMGUI.py:2075
  2928. msgid "Add Pad Array"
  2929. msgstr ""
  2930. #: flatcamEditors/FlatCAMGrbEditor.py:2638
  2931. msgid "Add an array of pads (linear or circular array)"
  2932. msgstr ""
  2933. #: flatcamEditors/FlatCAMGrbEditor.py:2644
  2934. msgid ""
  2935. "Select the type of pads array to create.\n"
  2936. "It can be Linear X(Y) or Circular"
  2937. msgstr ""
  2938. #: flatcamEditors/FlatCAMGrbEditor.py:2655 flatcamGUI/FlatCAMGUI.py:4693
  2939. msgid "Nr of pads"
  2940. msgstr ""
  2941. #: flatcamEditors/FlatCAMGrbEditor.py:2657 flatcamGUI/FlatCAMGUI.py:4695
  2942. msgid "Specify how many pads to be in the array."
  2943. msgstr ""
  2944. #: flatcamEditors/FlatCAMGrbEditor.py:3153
  2945. #: flatcamEditors/FlatCAMGrbEditor.py:3157
  2946. msgid "Aperture code value is missing or wrong format. Add it and retry."
  2947. msgstr ""
  2948. #: flatcamEditors/FlatCAMGrbEditor.py:3193
  2949. msgid ""
  2950. "Aperture dimensions value is missing or wrong format. Add it in format "
  2951. "(width, height) and retry."
  2952. msgstr ""
  2953. #: flatcamEditors/FlatCAMGrbEditor.py:3206
  2954. msgid "Aperture size value is missing or wrong format. Add it and retry."
  2955. msgstr ""
  2956. #: flatcamEditors/FlatCAMGrbEditor.py:3217
  2957. msgid "Aperture already in the aperture table."
  2958. msgstr ""
  2959. #: flatcamEditors/FlatCAMGrbEditor.py:3225
  2960. msgid "Added new aperture with code"
  2961. msgstr ""
  2962. #: flatcamEditors/FlatCAMGrbEditor.py:3254
  2963. msgid " Select an aperture in Aperture Table"
  2964. msgstr ""
  2965. #: flatcamEditors/FlatCAMGrbEditor.py:3261
  2966. msgid "Select an aperture in Aperture Table -->"
  2967. msgstr ""
  2968. #: flatcamEditors/FlatCAMGrbEditor.py:3285
  2969. msgid "Deleted aperture with code"
  2970. msgstr ""
  2971. #: flatcamEditors/FlatCAMGrbEditor.py:3748
  2972. #, python-format
  2973. msgid "Adding aperture: %s geo ..."
  2974. msgstr ""
  2975. #: flatcamEditors/FlatCAMGrbEditor.py:3936
  2976. msgid ""
  2977. "There are no Aperture definitions in the file. Aborting Gerber creation."
  2978. msgstr ""
  2979. #: flatcamEditors/FlatCAMGrbEditor.py:3944
  2980. msgid "Creating Gerber."
  2981. msgstr ""
  2982. #: flatcamEditors/FlatCAMGrbEditor.py:3953
  2983. msgid "Done. Gerber editing finished."
  2984. msgstr ""
  2985. #: flatcamEditors/FlatCAMGrbEditor.py:3970
  2986. msgid "Cancelled. No aperture is selected"
  2987. msgstr ""
  2988. #: flatcamEditors/FlatCAMGrbEditor.py:4505
  2989. msgid "Failed. No aperture geometry is selected."
  2990. msgstr ""
  2991. #: flatcamEditors/FlatCAMGrbEditor.py:4514
  2992. msgid "Done. Apertures geometry deleted."
  2993. msgstr ""
  2994. #: flatcamEditors/FlatCAMGrbEditor.py:4657
  2995. msgid "No aperture to buffer. Select at least one aperture and try again."
  2996. msgstr ""
  2997. #: flatcamEditors/FlatCAMGrbEditor.py:4670
  2998. msgid "Failed."
  2999. msgstr ""
  3000. #: flatcamEditors/FlatCAMGrbEditor.py:4689
  3001. msgid "Scale factor value is missing or wrong format. Add it and retry."
  3002. msgstr ""
  3003. #: flatcamEditors/FlatCAMGrbEditor.py:4721
  3004. msgid "No aperture to scale. Select at least one aperture and try again."
  3005. msgstr ""
  3006. #: flatcamEditors/FlatCAMGrbEditor.py:4737
  3007. msgid "Done. Scale Tool completed."
  3008. msgstr ""
  3009. #: flatcamEditors/FlatCAMGrbEditor.py:4775
  3010. msgid "Polygon areas marked."
  3011. msgstr ""
  3012. #: flatcamEditors/FlatCAMGrbEditor.py:4778
  3013. msgid "There are no polygons to mark area."
  3014. msgstr ""
  3015. #: flatcamEditors/FlatCAMGrbEditor.py:5549
  3016. msgid "Rotation action was not executed."
  3017. msgstr ""
  3018. #: flatcamEditors/FlatCAMGrbEditor.py:5688
  3019. msgid "Skew action was not executed."
  3020. msgstr ""
  3021. #: flatcamEditors/FlatCAMGrbEditor.py:5758
  3022. msgid "Scale action was not executed."
  3023. msgstr ""
  3024. #: flatcamEditors/FlatCAMGrbEditor.py:5807
  3025. msgid "Offset action was not executed."
  3026. msgstr ""
  3027. #: flatcamEditors/FlatCAMGrbEditor.py:5863
  3028. msgid "Geometry shape offset Y cancelled"
  3029. msgstr ""
  3030. #: flatcamEditors/FlatCAMGrbEditor.py:5880
  3031. msgid "Geometry shape skew X cancelled"
  3032. msgstr ""
  3033. #: flatcamEditors/FlatCAMGrbEditor.py:5897
  3034. msgid "Geometry shape skew Y cancelled"
  3035. msgstr ""
  3036. #: flatcamGUI/FlatCAMGUI.py:52
  3037. msgid "&File"
  3038. msgstr ""
  3039. #: flatcamGUI/FlatCAMGUI.py:57
  3040. msgid "&New Project ...\tCTRL+N"
  3041. msgstr ""
  3042. #: flatcamGUI/FlatCAMGUI.py:59
  3043. msgid "Will create a new, blank project"
  3044. msgstr ""
  3045. #: flatcamGUI/FlatCAMGUI.py:64
  3046. msgid "&New"
  3047. msgstr ""
  3048. #: flatcamGUI/FlatCAMGUI.py:67
  3049. msgid "Geometry\tN"
  3050. msgstr ""
  3051. #: flatcamGUI/FlatCAMGUI.py:69
  3052. msgid "Will create a new, empty Geometry Object."
  3053. msgstr ""
  3054. #: flatcamGUI/FlatCAMGUI.py:71
  3055. msgid "Gerber\tB"
  3056. msgstr ""
  3057. #: flatcamGUI/FlatCAMGUI.py:73
  3058. msgid "Will create a new, empty Gerber Object."
  3059. msgstr ""
  3060. #: flatcamGUI/FlatCAMGUI.py:75
  3061. msgid "Excellon\tL"
  3062. msgstr ""
  3063. #: flatcamGUI/FlatCAMGUI.py:77
  3064. msgid "Will create a new, empty Excellon Object."
  3065. msgstr ""
  3066. #: flatcamGUI/FlatCAMGUI.py:80 flatcamTools/ToolPcbWizard.py:62
  3067. #: flatcamTools/ToolPcbWizard.py:69
  3068. msgid "Open"
  3069. msgstr ""
  3070. #: flatcamGUI/FlatCAMGUI.py:84
  3071. msgid "Open &Project ..."
  3072. msgstr ""
  3073. #: flatcamGUI/FlatCAMGUI.py:90
  3074. msgid "Open &Gerber ...\tCTRL+G"
  3075. msgstr ""
  3076. #: flatcamGUI/FlatCAMGUI.py:95
  3077. msgid "Open &Excellon ...\tCTRL+E"
  3078. msgstr ""
  3079. #: flatcamGUI/FlatCAMGUI.py:99
  3080. msgid "Open G-&Code ..."
  3081. msgstr ""
  3082. #: flatcamGUI/FlatCAMGUI.py:105
  3083. msgid "Open Config ..."
  3084. msgstr ""
  3085. #: flatcamGUI/FlatCAMGUI.py:109
  3086. msgid "Recent projects"
  3087. msgstr ""
  3088. #: flatcamGUI/FlatCAMGUI.py:110
  3089. msgid "Recent files"
  3090. msgstr ""
  3091. #: flatcamGUI/FlatCAMGUI.py:116
  3092. msgid "Scripting"
  3093. msgstr ""
  3094. #: flatcamGUI/FlatCAMGUI.py:119
  3095. msgid "New Script ..."
  3096. msgstr ""
  3097. #: flatcamGUI/FlatCAMGUI.py:120
  3098. msgid "Open Script ..."
  3099. msgstr ""
  3100. #: flatcamGUI/FlatCAMGUI.py:122
  3101. msgid "Run Script ...\tSHIFT+S"
  3102. msgstr ""
  3103. #: flatcamGUI/FlatCAMGUI.py:124
  3104. msgid ""
  3105. "Will run the opened Tcl Script thus\n"
  3106. "enabling the automation of certain\n"
  3107. "functions of FlatCAM."
  3108. msgstr ""
  3109. #: flatcamGUI/FlatCAMGUI.py:137
  3110. msgid "Import"
  3111. msgstr ""
  3112. #: flatcamGUI/FlatCAMGUI.py:139
  3113. msgid "&SVG as Geometry Object ..."
  3114. msgstr ""
  3115. #: flatcamGUI/FlatCAMGUI.py:142
  3116. msgid "&SVG as Gerber Object ..."
  3117. msgstr ""
  3118. #: flatcamGUI/FlatCAMGUI.py:147
  3119. msgid "&DXF as Geometry Object ..."
  3120. msgstr ""
  3121. #: flatcamGUI/FlatCAMGUI.py:150
  3122. msgid "&DXF as Gerber Object ..."
  3123. msgstr ""
  3124. #: flatcamGUI/FlatCAMGUI.py:155
  3125. msgid "Export"
  3126. msgstr ""
  3127. #: flatcamGUI/FlatCAMGUI.py:158
  3128. msgid "Export &SVG ..."
  3129. msgstr ""
  3130. #: flatcamGUI/FlatCAMGUI.py:161
  3131. msgid "Export DXF ..."
  3132. msgstr ""
  3133. #: flatcamGUI/FlatCAMGUI.py:166
  3134. msgid "Export &PNG ..."
  3135. msgstr ""
  3136. #: flatcamGUI/FlatCAMGUI.py:168
  3137. msgid ""
  3138. "Will export an image in PNG format,\n"
  3139. "the saved image will contain the visual \n"
  3140. "information currently in FlatCAM Plot Area."
  3141. msgstr ""
  3142. #: flatcamGUI/FlatCAMGUI.py:177
  3143. msgid "Export &Excellon ..."
  3144. msgstr ""
  3145. #: flatcamGUI/FlatCAMGUI.py:179
  3146. msgid ""
  3147. "Will export an Excellon Object as Excellon file,\n"
  3148. "the coordinates format, the file units and zeros\n"
  3149. "are set in Preferences -> Excellon Export."
  3150. msgstr ""
  3151. #: flatcamGUI/FlatCAMGUI.py:186
  3152. msgid "Export &Gerber ..."
  3153. msgstr ""
  3154. #: flatcamGUI/FlatCAMGUI.py:188
  3155. msgid ""
  3156. "Will export an Gerber Object as Gerber file,\n"
  3157. "the coordinates format, the file units and zeros\n"
  3158. "are set in Preferences -> Gerber Export."
  3159. msgstr ""
  3160. #: flatcamGUI/FlatCAMGUI.py:204
  3161. msgid "Backup"
  3162. msgstr ""
  3163. #: flatcamGUI/FlatCAMGUI.py:208
  3164. msgid "Import Preferences from file ..."
  3165. msgstr ""
  3166. #: flatcamGUI/FlatCAMGUI.py:213
  3167. msgid "Export Preferences to file ..."
  3168. msgstr ""
  3169. #: flatcamGUI/FlatCAMGUI.py:219 flatcamGUI/FlatCAMGUI.py:546
  3170. msgid "Save"
  3171. msgstr ""
  3172. #: flatcamGUI/FlatCAMGUI.py:222
  3173. msgid "&Save Project ..."
  3174. msgstr ""
  3175. #: flatcamGUI/FlatCAMGUI.py:227
  3176. msgid "Save Project &As ...\tCTRL+S"
  3177. msgstr ""
  3178. #: flatcamGUI/FlatCAMGUI.py:232
  3179. msgid "Save Project C&opy ..."
  3180. msgstr ""
  3181. #: flatcamGUI/FlatCAMGUI.py:239
  3182. msgid "E&xit"
  3183. msgstr ""
  3184. #: flatcamGUI/FlatCAMGUI.py:245
  3185. msgid "&Edit"
  3186. msgstr ""
  3187. #: flatcamGUI/FlatCAMGUI.py:248
  3188. msgid "Edit Object\tE"
  3189. msgstr ""
  3190. #: flatcamGUI/FlatCAMGUI.py:249
  3191. msgid "Close Editor\tCTRL+S"
  3192. msgstr ""
  3193. #: flatcamGUI/FlatCAMGUI.py:257
  3194. msgid "Conversion"
  3195. msgstr ""
  3196. #: flatcamGUI/FlatCAMGUI.py:259
  3197. msgid "&Join Geo/Gerber/Exc -> Geo"
  3198. msgstr ""
  3199. #: flatcamGUI/FlatCAMGUI.py:261
  3200. msgid ""
  3201. "Merge a selection of objects, which can be of type:\n"
  3202. "- Gerber\n"
  3203. "- Excellon\n"
  3204. "- Geometry\n"
  3205. "into a new combo Geometry object."
  3206. msgstr ""
  3207. #: flatcamGUI/FlatCAMGUI.py:268
  3208. msgid "Join Excellon(s) -> Excellon"
  3209. msgstr ""
  3210. #: flatcamGUI/FlatCAMGUI.py:270
  3211. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  3212. msgstr ""
  3213. #: flatcamGUI/FlatCAMGUI.py:273
  3214. msgid "Join Gerber(s) -> Gerber"
  3215. msgstr ""
  3216. #: flatcamGUI/FlatCAMGUI.py:275
  3217. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  3218. msgstr ""
  3219. #: flatcamGUI/FlatCAMGUI.py:280
  3220. msgid "Convert Single to MultiGeo"
  3221. msgstr ""
  3222. #: flatcamGUI/FlatCAMGUI.py:282
  3223. msgid ""
  3224. "Will convert a Geometry object from single_geometry type\n"
  3225. "to a multi_geometry type."
  3226. msgstr ""
  3227. #: flatcamGUI/FlatCAMGUI.py:286
  3228. msgid "Convert Multi to SingleGeo"
  3229. msgstr ""
  3230. #: flatcamGUI/FlatCAMGUI.py:288
  3231. msgid ""
  3232. "Will convert a Geometry object from multi_geometry type\n"
  3233. "to a single_geometry type."
  3234. msgstr ""
  3235. #: flatcamGUI/FlatCAMGUI.py:294
  3236. msgid "Convert Any to Geo"
  3237. msgstr ""
  3238. #: flatcamGUI/FlatCAMGUI.py:296
  3239. msgid "Convert Any to Gerber"
  3240. msgstr ""
  3241. #: flatcamGUI/FlatCAMGUI.py:301
  3242. msgid "&Copy\tCTRL+C"
  3243. msgstr ""
  3244. #: flatcamGUI/FlatCAMGUI.py:305
  3245. msgid "&Delete\tDEL"
  3246. msgstr ""
  3247. #: flatcamGUI/FlatCAMGUI.py:309
  3248. msgid "Se&t Origin\tO"
  3249. msgstr ""
  3250. #: flatcamGUI/FlatCAMGUI.py:310
  3251. msgid "Jump to Location\tJ"
  3252. msgstr ""
  3253. #: flatcamGUI/FlatCAMGUI.py:315
  3254. msgid "Toggle Units\tQ"
  3255. msgstr ""
  3256. #: flatcamGUI/FlatCAMGUI.py:316
  3257. msgid "&Select All\tCTRL+A"
  3258. msgstr ""
  3259. #: flatcamGUI/FlatCAMGUI.py:320
  3260. msgid "&Preferences\tSHIFT+P"
  3261. msgstr ""
  3262. #: flatcamGUI/FlatCAMGUI.py:323
  3263. msgid "&Options"
  3264. msgstr ""
  3265. #: flatcamGUI/FlatCAMGUI.py:338
  3266. msgid "&Rotate Selection\tSHIFT+(R)"
  3267. msgstr ""
  3268. #: flatcamGUI/FlatCAMGUI.py:343
  3269. msgid "&Skew on X axis\tSHIFT+X"
  3270. msgstr ""
  3271. #: flatcamGUI/FlatCAMGUI.py:345
  3272. msgid "S&kew on Y axis\tSHIFT+Y"
  3273. msgstr ""
  3274. #: flatcamGUI/FlatCAMGUI.py:350
  3275. msgid "Flip on &X axis\tX"
  3276. msgstr ""
  3277. #: flatcamGUI/FlatCAMGUI.py:352
  3278. msgid "Flip on &Y axis\tY"
  3279. msgstr ""
  3280. #: flatcamGUI/FlatCAMGUI.py:357
  3281. msgid "View source\tALT+S"
  3282. msgstr ""
  3283. #: flatcamGUI/FlatCAMGUI.py:362
  3284. msgid "&View"
  3285. msgstr ""
  3286. #: flatcamGUI/FlatCAMGUI.py:363
  3287. msgid "Enable all plots\tALT+1"
  3288. msgstr ""
  3289. #: flatcamGUI/FlatCAMGUI.py:365
  3290. msgid "Disable all plots\tALT+2"
  3291. msgstr ""
  3292. #: flatcamGUI/FlatCAMGUI.py:367
  3293. msgid "Disable non-selected\tALT+3"
  3294. msgstr ""
  3295. #: flatcamGUI/FlatCAMGUI.py:370
  3296. msgid "&Zoom Fit\tV"
  3297. msgstr ""
  3298. #: flatcamGUI/FlatCAMGUI.py:371
  3299. msgid "&Zoom In\t="
  3300. msgstr ""
  3301. #: flatcamGUI/FlatCAMGUI.py:372
  3302. msgid "&Zoom Out\t-"
  3303. msgstr ""
  3304. #: flatcamGUI/FlatCAMGUI.py:376
  3305. msgid "Toggle Code Editor\tCTRL+E"
  3306. msgstr ""
  3307. #: flatcamGUI/FlatCAMGUI.py:379
  3308. msgid "&Toggle FullScreen\tALT+F10"
  3309. msgstr ""
  3310. #: flatcamGUI/FlatCAMGUI.py:381
  3311. msgid "&Toggle Plot Area\tCTRL+F10"
  3312. msgstr ""
  3313. #: flatcamGUI/FlatCAMGUI.py:383
  3314. msgid "&Toggle Project/Sel/Tool\t`"
  3315. msgstr ""
  3316. #: flatcamGUI/FlatCAMGUI.py:386
  3317. msgid "&Toggle Grid Snap\tG"
  3318. msgstr ""
  3319. #: flatcamGUI/FlatCAMGUI.py:388
  3320. msgid "&Toggle Axis\tSHIFT+G"
  3321. msgstr ""
  3322. #: flatcamGUI/FlatCAMGUI.py:391
  3323. msgid "Toggle Workspace\tSHIFT+W"
  3324. msgstr ""
  3325. #: flatcamGUI/FlatCAMGUI.py:394
  3326. msgid "&Tool"
  3327. msgstr ""
  3328. #: flatcamGUI/FlatCAMGUI.py:396
  3329. msgid "&Command Line\tS"
  3330. msgstr ""
  3331. #: flatcamGUI/FlatCAMGUI.py:399
  3332. msgid "&Help"
  3333. msgstr ""
  3334. #: flatcamGUI/FlatCAMGUI.py:400
  3335. msgid "Help\tF1"
  3336. msgstr ""
  3337. #: flatcamGUI/FlatCAMGUI.py:401
  3338. msgid "FlatCAM.org"
  3339. msgstr ""
  3340. #: flatcamGUI/FlatCAMGUI.py:404
  3341. msgid "Shortcuts List\tF3"
  3342. msgstr ""
  3343. #: flatcamGUI/FlatCAMGUI.py:405
  3344. msgid "YouTube Channel\tF4"
  3345. msgstr ""
  3346. #: flatcamGUI/FlatCAMGUI.py:407
  3347. msgid "About"
  3348. msgstr ""
  3349. #: flatcamGUI/FlatCAMGUI.py:414
  3350. msgid "Add Circle\tO"
  3351. msgstr ""
  3352. #: flatcamGUI/FlatCAMGUI.py:416
  3353. msgid "Add Arc\tA"
  3354. msgstr ""
  3355. #: flatcamGUI/FlatCAMGUI.py:419
  3356. msgid "Add Rectangle\tR"
  3357. msgstr ""
  3358. #: flatcamGUI/FlatCAMGUI.py:422
  3359. msgid "Add Polygon\tN"
  3360. msgstr ""
  3361. #: flatcamGUI/FlatCAMGUI.py:424
  3362. msgid "Add Path\tP"
  3363. msgstr ""
  3364. #: flatcamGUI/FlatCAMGUI.py:426
  3365. msgid "Add Text\tT"
  3366. msgstr ""
  3367. #: flatcamGUI/FlatCAMGUI.py:429
  3368. msgid "Polygon Union\tU"
  3369. msgstr ""
  3370. #: flatcamGUI/FlatCAMGUI.py:431
  3371. msgid "Polygon Intersection\tE"
  3372. msgstr ""
  3373. #: flatcamGUI/FlatCAMGUI.py:433
  3374. msgid "Polygon Subtraction\tS"
  3375. msgstr ""
  3376. #: flatcamGUI/FlatCAMGUI.py:437
  3377. msgid "Cut Path\tX"
  3378. msgstr ""
  3379. #: flatcamGUI/FlatCAMGUI.py:439
  3380. msgid "Copy Geom\tC"
  3381. msgstr ""
  3382. #: flatcamGUI/FlatCAMGUI.py:441
  3383. msgid "Delete Shape\tDEL"
  3384. msgstr ""
  3385. #: flatcamGUI/FlatCAMGUI.py:444 flatcamGUI/FlatCAMGUI.py:521
  3386. msgid "Move\tM"
  3387. msgstr ""
  3388. #: flatcamGUI/FlatCAMGUI.py:446
  3389. msgid "Buffer Tool\tB"
  3390. msgstr ""
  3391. #: flatcamGUI/FlatCAMGUI.py:449
  3392. msgid "Paint Tool\tI"
  3393. msgstr ""
  3394. #: flatcamGUI/FlatCAMGUI.py:452
  3395. msgid "Transform Tool\tALT+R"
  3396. msgstr ""
  3397. #: flatcamGUI/FlatCAMGUI.py:456
  3398. msgid "Toggle Corner Snap\tK"
  3399. msgstr ""
  3400. #: flatcamGUI/FlatCAMGUI.py:459
  3401. msgid ">Excellon Editor<"
  3402. msgstr ""
  3403. #: flatcamGUI/FlatCAMGUI.py:463
  3404. msgid "Add Drill Array\tA"
  3405. msgstr ""
  3406. #: flatcamGUI/FlatCAMGUI.py:465
  3407. msgid "Add Drill\tD"
  3408. msgstr ""
  3409. #: flatcamGUI/FlatCAMGUI.py:469
  3410. msgid "Add Slot Array\tQ"
  3411. msgstr ""
  3412. #: flatcamGUI/FlatCAMGUI.py:471
  3413. msgid "Add Slot\tW"
  3414. msgstr ""
  3415. #: flatcamGUI/FlatCAMGUI.py:475
  3416. msgid "Resize Drill(S)\tR"
  3417. msgstr ""
  3418. #: flatcamGUI/FlatCAMGUI.py:477 flatcamGUI/FlatCAMGUI.py:516
  3419. msgid "Copy\tC"
  3420. msgstr ""
  3421. #: flatcamGUI/FlatCAMGUI.py:479 flatcamGUI/FlatCAMGUI.py:518
  3422. msgid "Delete\tDEL"
  3423. msgstr ""
  3424. #: flatcamGUI/FlatCAMGUI.py:484
  3425. msgid "Move Drill(s)\tM"
  3426. msgstr ""
  3427. #: flatcamGUI/FlatCAMGUI.py:487
  3428. msgid ">Gerber Editor<"
  3429. msgstr ""
  3430. #: flatcamGUI/FlatCAMGUI.py:491
  3431. msgid "Add Pad\tP"
  3432. msgstr ""
  3433. #: flatcamGUI/FlatCAMGUI.py:493
  3434. msgid "Add Pad Array\tA"
  3435. msgstr ""
  3436. #: flatcamGUI/FlatCAMGUI.py:495
  3437. msgid "Add Track\tT"
  3438. msgstr ""
  3439. #: flatcamGUI/FlatCAMGUI.py:497
  3440. msgid "Add Region\tN"
  3441. msgstr ""
  3442. #: flatcamGUI/FlatCAMGUI.py:501
  3443. msgid "Poligonize\tALT+N"
  3444. msgstr ""
  3445. #: flatcamGUI/FlatCAMGUI.py:503
  3446. msgid "Add SemiDisc\tE"
  3447. msgstr ""
  3448. #: flatcamGUI/FlatCAMGUI.py:504
  3449. msgid "Add Disc\tD"
  3450. msgstr ""
  3451. #: flatcamGUI/FlatCAMGUI.py:506
  3452. msgid "Buffer\tB"
  3453. msgstr ""
  3454. #: flatcamGUI/FlatCAMGUI.py:507
  3455. msgid "Scale\tS"
  3456. msgstr ""
  3457. #: flatcamGUI/FlatCAMGUI.py:509
  3458. msgid "Mark Area\tALT+A"
  3459. msgstr ""
  3460. #: flatcamGUI/FlatCAMGUI.py:511
  3461. msgid "Eraser\tCTRL+E"
  3462. msgstr ""
  3463. #: flatcamGUI/FlatCAMGUI.py:513
  3464. msgid "Transform\tALT+R"
  3465. msgstr ""
  3466. #: flatcamGUI/FlatCAMGUI.py:537
  3467. msgid "Enable Plot"
  3468. msgstr ""
  3469. #: flatcamGUI/FlatCAMGUI.py:538
  3470. msgid "Disable Plot"
  3471. msgstr ""
  3472. #: flatcamGUI/FlatCAMGUI.py:540
  3473. msgid "Generate CNC"
  3474. msgstr ""
  3475. #: flatcamGUI/FlatCAMGUI.py:541
  3476. msgid "View Source"
  3477. msgstr ""
  3478. #: flatcamGUI/FlatCAMGUI.py:543 flatcamGUI/FlatCAMGUI.py:1720
  3479. msgid "Edit"
  3480. msgstr ""
  3481. #: flatcamGUI/FlatCAMGUI.py:549 flatcamGUI/FlatCAMGUI.py:1726
  3482. #: flatcamTools/ToolProperties.py:24
  3483. msgid "Properties"
  3484. msgstr ""
  3485. #: flatcamGUI/FlatCAMGUI.py:578
  3486. msgid "File Toolbar"
  3487. msgstr ""
  3488. #: flatcamGUI/FlatCAMGUI.py:582
  3489. msgid "Edit Toolbar"
  3490. msgstr ""
  3491. #: flatcamGUI/FlatCAMGUI.py:586
  3492. msgid "View Toolbar"
  3493. msgstr ""
  3494. #: flatcamGUI/FlatCAMGUI.py:590
  3495. msgid "Shell Toolbar"
  3496. msgstr ""
  3497. #: flatcamGUI/FlatCAMGUI.py:594
  3498. msgid "Tools Toolbar"
  3499. msgstr ""
  3500. #: flatcamGUI/FlatCAMGUI.py:598
  3501. msgid "Excellon Editor Toolbar"
  3502. msgstr ""
  3503. #: flatcamGUI/FlatCAMGUI.py:602
  3504. msgid "Geometry Editor Toolbar"
  3505. msgstr ""
  3506. #: flatcamGUI/FlatCAMGUI.py:606
  3507. msgid "Gerber Editor Toolbar"
  3508. msgstr ""
  3509. #: flatcamGUI/FlatCAMGUI.py:610
  3510. msgid "Grid Toolbar"
  3511. msgstr ""
  3512. #: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1973
  3513. msgid "Open project"
  3514. msgstr ""
  3515. #: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1974
  3516. msgid "Save project"
  3517. msgstr ""
  3518. #: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1977
  3519. msgid "New Blank Geometry"
  3520. msgstr ""
  3521. #: flatcamGUI/FlatCAMGUI.py:634
  3522. msgid "New Blank Gerber"
  3523. msgstr ""
  3524. #: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1978
  3525. msgid "New Blank Excellon"
  3526. msgstr ""
  3527. #: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1980
  3528. msgid "Editor"
  3529. msgstr ""
  3530. #: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1982
  3531. msgid "Save Object and close the Editor"
  3532. msgstr ""
  3533. #: flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1986
  3534. msgid "&Delete"
  3535. msgstr ""
  3536. #: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1989
  3537. msgid "&Replot"
  3538. msgstr ""
  3539. #: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1990
  3540. msgid "&Clear plot"
  3541. msgstr ""
  3542. #: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1991
  3543. msgid "Zoom In"
  3544. msgstr ""
  3545. #: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1992
  3546. msgid "Zoom Out"
  3547. msgstr ""
  3548. #: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1657
  3549. #: flatcamGUI/FlatCAMGUI.py:1993
  3550. msgid "Zoom Fit"
  3551. msgstr ""
  3552. #: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1998
  3553. msgid "&Command Line"
  3554. msgstr ""
  3555. #: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:2001
  3556. msgid "2Sided Tool"
  3557. msgstr ""
  3558. #: flatcamGUI/FlatCAMGUI.py:659 flatcamGUI/FlatCAMGUI.py:2002
  3559. msgid "&Cutout Tool"
  3560. msgstr ""
  3561. #: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:2003
  3562. #: flatcamGUI/ObjectUI.py:452 flatcamTools/ToolNonCopperClear.py:531
  3563. msgid "NCC Tool"
  3564. msgstr ""
  3565. #: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:2007
  3566. msgid "Panel Tool"
  3567. msgstr ""
  3568. #: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:2008
  3569. #: flatcamTools/ToolFilm.py:209
  3570. msgid "Film Tool"
  3571. msgstr ""
  3572. #: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:2010
  3573. #: flatcamTools/ToolSolderPaste.py:455
  3574. msgid "SolderPaste Tool"
  3575. msgstr ""
  3576. #: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:2011
  3577. #: flatcamTools/ToolSub.py:28
  3578. msgid "Substract Tool"
  3579. msgstr ""
  3580. #: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:2016
  3581. msgid "Calculators Tool"
  3582. msgstr ""
  3583. #: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:692
  3584. #: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:2020
  3585. #: flatcamGUI/FlatCAMGUI.py:2073
  3586. msgid "Select"
  3587. msgstr ""
  3588. #: flatcamGUI/FlatCAMGUI.py:676 flatcamGUI/FlatCAMGUI.py:2021
  3589. msgid "Add Drill Hole"
  3590. msgstr ""
  3591. #: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:2023
  3592. msgid "Add Drill Hole Array"
  3593. msgstr ""
  3594. #: flatcamGUI/FlatCAMGUI.py:679 flatcamGUI/FlatCAMGUI.py:1712
  3595. #: flatcamGUI/FlatCAMGUI.py:2025
  3596. msgid "Add Slot"
  3597. msgstr ""
  3598. #: flatcamGUI/FlatCAMGUI.py:681 flatcamGUI/FlatCAMGUI.py:1713
  3599. #: flatcamGUI/FlatCAMGUI.py:2027
  3600. msgid "Add Slot Array"
  3601. msgstr ""
  3602. #: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1715
  3603. #: flatcamGUI/FlatCAMGUI.py:2024
  3604. msgid "Resize Drill"
  3605. msgstr ""
  3606. #: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:2030
  3607. msgid "Copy Drill"
  3608. msgstr ""
  3609. #: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:2032
  3610. msgid "Delete Drill"
  3611. msgstr ""
  3612. #: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:2035
  3613. msgid "Move Drill"
  3614. msgstr ""
  3615. #: flatcamGUI/FlatCAMGUI.py:693 flatcamGUI/FlatCAMGUI.py:2039
  3616. msgid "Add Circle"
  3617. msgstr ""
  3618. #: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:2040
  3619. msgid "Add Arc"
  3620. msgstr ""
  3621. #: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:2042
  3622. msgid "Add Rectangle"
  3623. msgstr ""
  3624. #: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2045
  3625. msgid "Add Path"
  3626. msgstr ""
  3627. #: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2047
  3628. msgid "Add Polygon"
  3629. msgstr ""
  3630. #: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:2049
  3631. msgid "Add Text"
  3632. msgstr ""
  3633. #: flatcamGUI/FlatCAMGUI.py:703 flatcamGUI/FlatCAMGUI.py:2050
  3634. msgid "Add Buffer"
  3635. msgstr ""
  3636. #: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:2051
  3637. msgid "Paint Shape"
  3638. msgstr ""
  3639. #: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:743
  3640. #: flatcamGUI/FlatCAMGUI.py:1674 flatcamGUI/FlatCAMGUI.py:1702
  3641. #: flatcamGUI/FlatCAMGUI.py:2052 flatcamGUI/FlatCAMGUI.py:2089
  3642. msgid "Eraser"
  3643. msgstr ""
  3644. #: flatcamGUI/FlatCAMGUI.py:708 flatcamGUI/FlatCAMGUI.py:2055
  3645. msgid "Polygon Union"
  3646. msgstr ""
  3647. #: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:2057
  3648. msgid "Polygon Intersection"
  3649. msgstr ""
  3650. #: flatcamGUI/FlatCAMGUI.py:712 flatcamGUI/FlatCAMGUI.py:2059
  3651. msgid "Polygon Subtraction"
  3652. msgstr ""
  3653. #: flatcamGUI/FlatCAMGUI.py:715 flatcamGUI/FlatCAMGUI.py:2062
  3654. msgid "Cut Path"
  3655. msgstr ""
  3656. #: flatcamGUI/FlatCAMGUI.py:716
  3657. msgid "Copy Shape(s)"
  3658. msgstr ""
  3659. #: flatcamGUI/FlatCAMGUI.py:719
  3660. msgid "Delete Shape '-'"
  3661. msgstr ""
  3662. #: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:750
  3663. #: flatcamGUI/FlatCAMGUI.py:1681 flatcamGUI/FlatCAMGUI.py:1706
  3664. #: flatcamGUI/FlatCAMGUI.py:2067 flatcamGUI/FlatCAMGUI.py:2096
  3665. msgid "Transformations"
  3666. msgstr ""
  3667. #: flatcamGUI/FlatCAMGUI.py:723
  3668. msgid "Move Objects "
  3669. msgstr ""
  3670. #: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2074
  3671. msgid "Add Pad"
  3672. msgstr ""
  3673. #: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:2076
  3674. msgid "Add Track"
  3675. msgstr ""
  3676. #: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:2077
  3677. msgid "Add Region"
  3678. msgstr ""
  3679. #: flatcamGUI/FlatCAMGUI.py:732 flatcamGUI/FlatCAMGUI.py:1694
  3680. #: flatcamGUI/FlatCAMGUI.py:2079
  3681. msgid "Poligonize"
  3682. msgstr ""
  3683. #: flatcamGUI/FlatCAMGUI.py:734 flatcamGUI/FlatCAMGUI.py:1695
  3684. #: flatcamGUI/FlatCAMGUI.py:2081
  3685. msgid "SemiDisc"
  3686. msgstr ""
  3687. #: flatcamGUI/FlatCAMGUI.py:735 flatcamGUI/FlatCAMGUI.py:1696
  3688. #: flatcamGUI/FlatCAMGUI.py:2082
  3689. msgid "Disc"
  3690. msgstr ""
  3691. #: flatcamGUI/FlatCAMGUI.py:741 flatcamGUI/FlatCAMGUI.py:1701
  3692. #: flatcamGUI/FlatCAMGUI.py:2088
  3693. msgid "Mark Area"
  3694. msgstr ""
  3695. #: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:1684
  3696. #: flatcamGUI/FlatCAMGUI.py:1725 flatcamGUI/FlatCAMGUI.py:2098
  3697. #: flatcamTools/ToolMove.py:26
  3698. msgid "Move"
  3699. msgstr ""
  3700. #: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2104
  3701. msgid "Snap to grid"
  3702. msgstr ""
  3703. #: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:2107
  3704. msgid "Grid X snapping distance"
  3705. msgstr ""
  3706. #: flatcamGUI/FlatCAMGUI.py:766 flatcamGUI/FlatCAMGUI.py:2112
  3707. msgid "Grid Y snapping distance"
  3708. msgstr ""
  3709. #: flatcamGUI/FlatCAMGUI.py:772 flatcamGUI/FlatCAMGUI.py:2118
  3710. msgid ""
  3711. "When active, value on Grid_X\n"
  3712. "is copied to the Grid_Y value."
  3713. msgstr ""
  3714. #: flatcamGUI/FlatCAMGUI.py:778 flatcamGUI/FlatCAMGUI.py:2124
  3715. msgid "Snap to corner"
  3716. msgstr ""
  3717. #: flatcamGUI/FlatCAMGUI.py:782 flatcamGUI/FlatCAMGUI.py:2128
  3718. #: flatcamGUI/FlatCAMGUI.py:3575
  3719. msgid "Max. magnet distance"
  3720. msgstr ""
  3721. #: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:1651
  3722. msgid "Project"
  3723. msgstr ""
  3724. #: flatcamGUI/FlatCAMGUI.py:819
  3725. msgid "Selected"
  3726. msgstr ""
  3727. #: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:846
  3728. msgid "Plot Area"
  3729. msgstr ""
  3730. #: flatcamGUI/FlatCAMGUI.py:872
  3731. msgid "General"
  3732. msgstr ""
  3733. #: flatcamGUI/FlatCAMGUI.py:881
  3734. msgid "APP. DEFAULTS"
  3735. msgstr ""
  3736. #: flatcamGUI/FlatCAMGUI.py:882
  3737. msgid "PROJ. OPTIONS "
  3738. msgstr ""
  3739. #: flatcamGUI/FlatCAMGUI.py:894 flatcamTools/ToolDblSided.py:47
  3740. msgid "GERBER"
  3741. msgstr ""
  3742. #: flatcamGUI/FlatCAMGUI.py:904 flatcamTools/ToolDblSided.py:71
  3743. msgid "EXCELLON"
  3744. msgstr ""
  3745. #: flatcamGUI/FlatCAMGUI.py:914 flatcamTools/ToolDblSided.py:95
  3746. msgid "GEOMETRY"
  3747. msgstr ""
  3748. #: flatcamGUI/FlatCAMGUI.py:924
  3749. msgid "CNC-JOB"
  3750. msgstr ""
  3751. #: flatcamGUI/FlatCAMGUI.py:933 flatcamGUI/ObjectUI.py:441
  3752. msgid "TOOLS"
  3753. msgstr ""
  3754. #: flatcamGUI/FlatCAMGUI.py:943
  3755. msgid "FILE ASSOCIATIONS"
  3756. msgstr ""
  3757. #: flatcamGUI/FlatCAMGUI.py:960
  3758. msgid "Import Preferences"
  3759. msgstr ""
  3760. #: flatcamGUI/FlatCAMGUI.py:963
  3761. msgid ""
  3762. "Import a full set of FlatCAM settings from a file\n"
  3763. "previously saved on HDD.\n"
  3764. "\n"
  3765. "FlatCAM automatically save a 'factory_defaults' file\n"
  3766. "on the first start. Do not delete that file."
  3767. msgstr ""
  3768. #: flatcamGUI/FlatCAMGUI.py:970
  3769. msgid "Export Preferences"
  3770. msgstr ""
  3771. #: flatcamGUI/FlatCAMGUI.py:973
  3772. msgid ""
  3773. "Export a full set of FlatCAM settings in a file\n"
  3774. "that is saved on HDD."
  3775. msgstr ""
  3776. #: flatcamGUI/FlatCAMGUI.py:978
  3777. msgid "Open Pref Folder"
  3778. msgstr ""
  3779. #: flatcamGUI/FlatCAMGUI.py:981
  3780. msgid "Open the folder where FlatCAM save the preferences files."
  3781. msgstr ""
  3782. #: flatcamGUI/FlatCAMGUI.py:992
  3783. msgid ""
  3784. "Save the current settings in the 'current_defaults' file\n"
  3785. "which is the file storing the working default preferences."
  3786. msgstr ""
  3787. #: flatcamGUI/FlatCAMGUI.py:1018
  3788. msgid ""
  3789. "<b>General Shortcut list</b><br>\n"
  3790. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3791. "\"width:283px\">\n"
  3792. " <tbody>\n"
  3793. " <tr height=\"20\">\n"
  3794. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  3795. "td>\n"
  3796. " <td width=\"194\"><span style=\"color:"
  3797. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  3798. " </tr>\n"
  3799. " <tr height=\"20\">\n"
  3800. " <td height=\"20\">&nbsp;</td>\n"
  3801. " <td>&nbsp;</td>\n"
  3802. " </tr>\n"
  3803. " <tr height=\"20\">\n"
  3804. " <td height=\"20\"><strong>1</strong></td>\n"
  3805. " <td>&nbsp;Switch to Project Tab</td>\n"
  3806. " </tr>\n"
  3807. " <tr height=\"20\">\n"
  3808. " <td height=\"20\"><strong>2</strong></td>\n"
  3809. " <td>&nbsp;Switch to Selected Tab</td>\n"
  3810. " </tr>\n"
  3811. " <tr height=\"20\">\n"
  3812. " <td height=\"20\"><strong>3</strong></td>\n"
  3813. " <td>&nbsp;Switch to Tool Tab</td>\n"
  3814. " </tr>\n"
  3815. " <tr height=\"20\">\n"
  3816. " <td height=\"20\">&nbsp;</td>\n"
  3817. " <td>&nbsp;</td>\n"
  3818. " </tr>\n"
  3819. " <tr height=\"20\">\n"
  3820. " <td height=\"20\"><strong>B</strong></td>\n"
  3821. " <td>&nbsp;New Gerber</td>\n"
  3822. " </tr>\n"
  3823. " <tr height=\"20\">\n"
  3824. " <td height=\"20\"><strong>E</strong></td>\n"
  3825. " <td>&nbsp;Edit Object (if selected)</td>\n"
  3826. " </tr>\n"
  3827. " <tr height=\"20\">\n"
  3828. " <td height=\"20\"><strong>G</strong></td>\n"
  3829. " <td>&nbsp;Grid On/Off</td>\n"
  3830. " </tr>\n"
  3831. " <tr height=\"20\">\n"
  3832. " <td height=\"20\"><strong>J</strong></td>\n"
  3833. " <td>&nbsp;Jump to Coordinates</td>\n"
  3834. " </tr>\n"
  3835. " <tr height=\"20\">\n"
  3836. " <td height=\"20\"><strong>L</strong></td>\n"
  3837. " <td>&nbsp;New Excellon</td>\n"
  3838. " </tr>\n"
  3839. " <tr height=\"20\">\n"
  3840. " <td height=\"20\"><strong>M</strong></td>\n"
  3841. " <td>&nbsp;Move Obj</td>\n"
  3842. " </tr>\n"
  3843. " <tr height=\"20\">\n"
  3844. " <td height=\"20\"><strong>N</strong></td>\n"
  3845. " <td>&nbsp;New Geometry</td>\n"
  3846. " </tr>\n"
  3847. " <tr height=\"20\">\n"
  3848. " <td height=\"20\"><strong>O</strong></td>\n"
  3849. " <td>&nbsp;Set Origin</td>\n"
  3850. " </tr>\n"
  3851. " <tr height=\"20\">\n"
  3852. " <td height=\"20\"><strong>Q</strong></td>\n"
  3853. " <td>&nbsp;Change Units</td>\n"
  3854. " </tr>\n"
  3855. " <tr height=\"20\">\n"
  3856. " <td height=\"20\"><strong>P</strong></td>\n"
  3857. " <td>&nbsp;Open Properties Tool</td>\n"
  3858. " </tr>\n"
  3859. " <tr height=\"20\">\n"
  3860. " <td height=\"20\"><strong>R</strong></td>\n"
  3861. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  3862. " </tr>\n"
  3863. " <tr height=\"20\">\n"
  3864. " <td height=\"20\"><strong>S</strong></td>\n"
  3865. " <td>&nbsp;Shell Toggle</td>\n"
  3866. " </tr>\n"
  3867. " <tr height=\"20\">\n"
  3868. " <td height=\"20\"><strong>T</strong></td>\n"
  3869. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  3870. "or in Tools NCC or Tools Paint)</td>\n"
  3871. " </tr>\n"
  3872. " <tr height=\"20\">\n"
  3873. " <td height=\"20\"><strong>V</strong></td>\n"
  3874. " <td>&nbsp;Zoom Fit</td>\n"
  3875. " </tr>\n"
  3876. " <tr height=\"20\">\n"
  3877. " <td height=\"20\"><strong>X</strong></td>\n"
  3878. " <td>&nbsp;Flip on X_axis</td>\n"
  3879. " </tr>\n"
  3880. " <tr height=\"20\">\n"
  3881. " <td height=\"20\"><strong>Y</strong></td>\n"
  3882. " <td>&nbsp;Flip on Y_axis</td>\n"
  3883. " </tr>\n"
  3884. " <tr height=\"20\">\n"
  3885. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  3886. " <td>&nbsp;Zoom Out</td>\n"
  3887. " </tr>\n"
  3888. " <tr height=\"20\">\n"
  3889. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  3890. " <td>&nbsp;Zoom In</td>\n"
  3891. " </tr>\n"
  3892. " <tr height=\"20\">\n"
  3893. " <td height=\"20\">&nbsp;</td>\n"
  3894. " <td>&nbsp;</td>\n"
  3895. " </tr>\n"
  3896. " <tr height=\"20\">\n"
  3897. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  3898. " <td>&nbsp;Select All</td>\n"
  3899. " </tr>\n"
  3900. " <tr height=\"20\">\n"
  3901. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  3902. " <td>&nbsp;Copy Obj</td>\n"
  3903. " </tr>\n"
  3904. " <tr height=\"20\">\n"
  3905. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  3906. " <td>&nbsp;Open Excellon File</td>\n"
  3907. " </tr>\n"
  3908. " <tr height=\"20\">\n"
  3909. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  3910. " <td>&nbsp;Open Gerber File</td>\n"
  3911. " </tr>\n"
  3912. " <tr height=\"20\">\n"
  3913. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  3914. " <td>&nbsp;New Project</td>\n"
  3915. " </tr>\n"
  3916. " <tr height=\"20\">\n"
  3917. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3918. " <td>&nbsp;Measurement Tool</td>\n"
  3919. " </tr>\n"
  3920. " <tr height=\"20\">\n"
  3921. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  3922. " <td>&nbsp;Open Project</td>\n"
  3923. " </tr>\n"
  3924. " <tr height=\"20\">\n"
  3925. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3926. " <td>&nbsp;Save Project As</td>\n"
  3927. " </tr>\n"
  3928. " <tr height=\"20\">\n"
  3929. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  3930. " <td>&nbsp;Toggle Plot Area</td>\n"
  3931. " </tr>\n"
  3932. " <tr height=\"20\">\n"
  3933. " <td height=\"20\">&nbsp;</td>\n"
  3934. " <td>&nbsp;</td>\n"
  3935. " </tr>\n"
  3936. " <tr height=\"20\">\n"
  3937. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  3938. " <td>&nbsp;Copy Obj_Name</td>\n"
  3939. " </tr>\n"
  3940. " <tr height=\"20\">\n"
  3941. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  3942. " <td>&nbsp;Toggle Code Editor</td>\n"
  3943. " </tr>\n"
  3944. " <tr height=\"20\">\n"
  3945. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  3946. " <td>&nbsp;Toggle the axis</td>\n"
  3947. " </tr>\n"
  3948. " <tr height=\"20\">\n"
  3949. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  3950. " <td>&nbsp;Open Preferences Window</td>\n"
  3951. " </tr>\n"
  3952. " <tr height=\"20\">\n"
  3953. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  3954. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  3955. " </tr>\n"
  3956. " <tr height=\"20\">\n"
  3957. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  3958. " <td>&nbsp;Run a Script</td>\n"
  3959. " </tr>\n"
  3960. " <tr height=\"20\">\n"
  3961. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  3962. " <td>&nbsp;Toggle the workspace</td>\n"
  3963. " </tr>\n"
  3964. " <tr height=\"20\">\n"
  3965. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3966. " <td>&nbsp;Skew on X axis</td>\n"
  3967. " </tr>\n"
  3968. " <tr height=\"20\">\n"
  3969. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3970. " <td>&nbsp;Skew on Y axis</td>\n"
  3971. " </tr>\n"
  3972. " <tr height=\"20\">\n"
  3973. " <td height=\"20\">&nbsp;</td>\n"
  3974. " <td>&nbsp;</td>\n"
  3975. " </tr>\n"
  3976. " <tr height=\"20\">\n"
  3977. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  3978. " <td>&nbsp;Calculators Tool</td>\n"
  3979. " </tr>\n"
  3980. " <tr height=\"20\">\n"
  3981. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  3982. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  3983. " </tr>\n"
  3984. " <tr height=\"20\">\n"
  3985. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  3986. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  3987. " </tr>\n"
  3988. " <tr height=\"20\">\n"
  3989. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  3990. " <td>&nbsp;Film PCB Tool</td>\n"
  3991. " </tr>\n"
  3992. " <tr height=\"20\">\n"
  3993. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  3994. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  3995. " </tr>\n"
  3996. " <tr height=\"20\">\n"
  3997. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  3998. " <td>&nbsp;Paint Area Tool</td>\n"
  3999. " </tr>\n"
  4000. " <tr height=\"20\">\n"
  4001. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4002. " <td>&nbsp;PDF Import Tool</td>\n"
  4003. " </tr>\n"
  4004. " <tr height=\"20\">\n"
  4005. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4006. " <td>&nbsp;Transformations Tool</td>\n"
  4007. " </tr>\n"
  4008. " <tr height=\"20\">\n"
  4009. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4010. " <td>&nbsp;View File Source</td>\n"
  4011. " </tr>\n"
  4012. " <tr height=\"20\">\n"
  4013. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4014. " <td>&nbsp;Cutout PCB Tool</td>\n"
  4015. " </tr>\n"
  4016. " <tr height=\"20\">\n"
  4017. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4018. " <td>&nbsp;Enable all Plots</td>\n"
  4019. " </tr>\n"
  4020. " <tr height=\"20\">\n"
  4021. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4022. " <td>&nbsp;Disable all Plots</td>\n"
  4023. " </tr>\n"
  4024. " <tr height=\"20\">\n"
  4025. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4026. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  4027. " </tr>\n"
  4028. " <tr height=\"20\">\n"
  4029. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4030. " <td>&nbsp;Toggle Full Screen</td>\n"
  4031. " </tr> \n"
  4032. " <tr height=\"20\">\n"
  4033. " <td height=\"20\">&nbsp;</td>\n"
  4034. " <td>&nbsp;</td>\n"
  4035. " </tr>\n"
  4036. " <tr height=\"20\">\n"
  4037. " <td height=\"20\"><strong>CTRL+ALT+X</strong></td>\n"
  4038. " <td>&nbsp;Abort current task (gracefully)</td>\n"
  4039. " </tr> \n"
  4040. " <tr height=\"20\">\n"
  4041. " <td height=\"20\">&nbsp;</td>\n"
  4042. " <td>&nbsp;</td>\n"
  4043. " </tr>\n"
  4044. " <tr height=\"20\">\n"
  4045. " <td height=\"20\"><strong>F1</strong></td>\n"
  4046. " <td>&nbsp;Open Online Manual</td>\n"
  4047. " </tr>\n"
  4048. " <tr height=\"20\">\n"
  4049. " <td height=\"20\"><strong>F4</strong></td>\n"
  4050. " <td>&nbsp;Open Online Tutorials</td>\n"
  4051. " </tr>\n"
  4052. " <tr height=\"20\">\n"
  4053. " <td height=\"20\"><strong>Del</strong></td>\n"
  4054. " <td>&nbsp;Delete Object</td>\n"
  4055. " </tr>\n"
  4056. " <tr height=\"20\">\n"
  4057. " <td height=\"20\"><strong>Del</strong></td>\n"
  4058. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  4059. " </tr>\n"
  4060. " <tr height=\"20\">\n"
  4061. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4062. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  4063. "Side)</td>\n"
  4064. " </tr>\n"
  4065. " <tr height=\"20\">\n"
  4066. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4067. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  4068. " </tr>\n"
  4069. " <tr height=\"20\">\n"
  4070. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4071. " <td>&nbsp;Deselects all objects</td>\n"
  4072. " </tr>\n"
  4073. " </tbody>\n"
  4074. " </table>\n"
  4075. " \n"
  4076. " "
  4077. msgstr ""
  4078. #: flatcamGUI/FlatCAMGUI.py:1311
  4079. msgid ""
  4080. "<b>Editor Shortcut list</b><br>\n"
  4081. " <br>\n"
  4082. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  4083. "strong><br>\n"
  4084. " \n"
  4085. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4086. "\"width:283px\">\n"
  4087. " <tbody>\n"
  4088. " <tr height=\"20\">\n"
  4089. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4090. "td>\n"
  4091. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  4092. " </tr>\n"
  4093. " <tr height=\"20\">\n"
  4094. " <td height=\"20\"><strong>B</strong></td>\n"
  4095. " <td>&nbsp;Buffer Tool</td>\n"
  4096. " </tr>\n"
  4097. " <tr height=\"20\">\n"
  4098. " <td height=\"20\"><strong>C</strong></td>\n"
  4099. " <td>&nbsp;Copy Geo Item</td>\n"
  4100. " </tr>\n"
  4101. " <tr height=\"20\">\n"
  4102. " <td height=\"20\"><strong>D</strong></td>\n"
  4103. " <td>&nbsp;Within Add Arc will toogle the ARC "
  4104. "direction: CW or CCW</td>\n"
  4105. " </tr>\n"
  4106. " <tr height=\"20\">\n"
  4107. " <td height=\"20\"><strong>E</strong></td>\n"
  4108. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  4109. " </tr>\n"
  4110. " <tr height=\"20\">\n"
  4111. " <td height=\"20\"><strong>I</strong></td>\n"
  4112. " <td>&nbsp;Paint Tool</td>\n"
  4113. " </tr>\n"
  4114. " <tr height=\"20\">\n"
  4115. " <td height=\"20\"><strong>J</strong></td>\n"
  4116. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4117. " </tr>\n"
  4118. " <tr height=\"20\">\n"
  4119. " <td height=\"20\"><strong>K</strong></td>\n"
  4120. " <td>&nbsp;Toggle Corner Snap</td>\n"
  4121. " </tr>\n"
  4122. " <tr height=\"20\">\n"
  4123. " <td height=\"20\"><strong>M</strong></td>\n"
  4124. " <td>&nbsp;Move Geo Item</td>\n"
  4125. " </tr>\n"
  4126. " <tr height=\"20\">\n"
  4127. " <td height=\"20\"><strong>M</strong></td>\n"
  4128. " <td>&nbsp;Within Add Arc will cycle through the ARC "
  4129. "modes</td>\n"
  4130. " </tr>\n"
  4131. " <tr height=\"20\">\n"
  4132. " <td height=\"20\"><strong>N</strong></td>\n"
  4133. " <td>&nbsp;Draw a Polygon</td>\n"
  4134. " </tr>\n"
  4135. " <tr height=\"20\">\n"
  4136. " <td height=\"20\"><strong>O</strong></td>\n"
  4137. " <td>&nbsp;Draw a Circle</td>\n"
  4138. " </tr>\n"
  4139. " <tr height=\"20\">\n"
  4140. " <td height=\"20\"><strong>P</strong></td>\n"
  4141. " <td>&nbsp;Draw a Path</td>\n"
  4142. " </tr>\n"
  4143. " <tr height=\"20\">\n"
  4144. " <td height=\"20\"><strong>R</strong></td>\n"
  4145. " <td>&nbsp;Draw Rectangle</td>\n"
  4146. " </tr>\n"
  4147. " <tr height=\"20\">\n"
  4148. " <td height=\"20\"><strong>S</strong></td>\n"
  4149. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  4150. " </tr>\n"
  4151. " <tr height=\"20\">\n"
  4152. " <td height=\"20\"><strong>T</strong></td>\n"
  4153. " <td>&nbsp;Add Text Tool</td>\n"
  4154. " </tr>\n"
  4155. " <tr height=\"20\">\n"
  4156. " <td height=\"20\"><strong>U</strong></td>\n"
  4157. " <td>&nbsp;Polygon Union Tool</td>\n"
  4158. " </tr>\n"
  4159. " <tr height=\"20\">\n"
  4160. " <td height=\"20\"><strong>X</strong></td>\n"
  4161. " <td>&nbsp;Flip shape on X axis</td>\n"
  4162. " </tr>\n"
  4163. " <tr height=\"20\">\n"
  4164. " <td height=\"20\"><strong>Y</strong></td>\n"
  4165. " <td>&nbsp;Flip shape on Y axis</td>\n"
  4166. " </tr>\n"
  4167. " <tr height=\"20\">\n"
  4168. " <td height=\"20\">&nbsp;</td>\n"
  4169. " <td>&nbsp;</td>\n"
  4170. " </tr>\n"
  4171. " <tr height=\"20\">\n"
  4172. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4173. " <td>&nbsp;Skew shape on X axis</td>\n"
  4174. " </tr>\n"
  4175. " <tr height=\"20\">\n"
  4176. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4177. " <td>&nbsp;Skew shape on Y axis</td>\n"
  4178. " </tr>\n"
  4179. " <tr height=\"20\">\n"
  4180. " <td height=\"20\">&nbsp;</td>\n"
  4181. " <td>&nbsp;</td>\n"
  4182. " </tr>\n"
  4183. " <tr height=\"20\">\n"
  4184. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4185. " <td>&nbsp;Editor Transformation Tool</td>\n"
  4186. " </tr>\n"
  4187. " <tr height=\"20\">\n"
  4188. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4189. " <td>&nbsp;Offset shape on X axis</td>\n"
  4190. " </tr>\n"
  4191. " <tr height=\"20\">\n"
  4192. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4193. " <td>&nbsp;Offset shape on Y axis</td>\n"
  4194. " </tr>\n"
  4195. " <tr height=\"20\">\n"
  4196. " <td height=\"20\">&nbsp;</td>\n"
  4197. " <td>&nbsp;</td>\n"
  4198. " </tr>\n"
  4199. " <tr height=\"20\">\n"
  4200. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4201. " <td>&nbsp;Measurement Tool</td>\n"
  4202. " </tr>\n"
  4203. " <tr height=\"20\">\n"
  4204. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4205. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4206. " </tr>\n"
  4207. " <tr height=\"20\">\n"
  4208. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4209. " <td>&nbsp;Polygon Cut Tool</td>\n"
  4210. " </tr>\n"
  4211. " <tr height=\"20\">\n"
  4212. " <td height=\"20\">&nbsp;</td>\n"
  4213. " <td>&nbsp;</td>\n"
  4214. " </tr>\n"
  4215. " <tr height=\"20\">\n"
  4216. " <td height=\"20\"><strong>Space</strong></td>\n"
  4217. " <td>&nbsp;Rotate Geometry</td>\n"
  4218. " </tr>\n"
  4219. " <tr height=\"20\">\n"
  4220. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4221. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  4222. " </tr>\n"
  4223. " <tr height=\"20\">\n"
  4224. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4225. " <td>&nbsp;Abort and return to Select</td>\n"
  4226. " </tr>\n"
  4227. " <tr height=\"20\">\n"
  4228. " <td height=\"20\"><strong>Del</strong></td>\n"
  4229. " <td>&nbsp;Delete Shape</td>\n"
  4230. " </tr>\n"
  4231. " </tbody>\n"
  4232. " </table>\n"
  4233. " <br>\n"
  4234. " <br>\n"
  4235. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  4236. "strong><br>\n"
  4237. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4238. "\"width:283px\">\n"
  4239. " <tbody>\n"
  4240. " <tr height=\"20\">\n"
  4241. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4242. "td>\n"
  4243. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  4244. " </tr>\n"
  4245. " <tr height=\"20\">\n"
  4246. " <td height=\"20\"><strong>C</strong></td>\n"
  4247. " <td>&nbsp;Copy Drill(s)</td>\n"
  4248. " </tr>\n"
  4249. " <tr height=\"20\">\n"
  4250. " <td height=\"20\"><strong>D</strong></td>\n"
  4251. " <td>&nbsp;Add Drill</td>\n"
  4252. " </tr>\n"
  4253. " <tr height=\"20\">\n"
  4254. " <td height=\"20\"><strong>J</strong></td>\n"
  4255. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4256. " </tr>\n"
  4257. " <tr height=\"20\">\n"
  4258. " <td height=\"20\"><strong>M</strong></td>\n"
  4259. " <td>&nbsp;Move Drill(s)</td>\n"
  4260. " </tr>\n"
  4261. " <tr height=\"20\">\n"
  4262. " <td height=\"20\" width=\"89\"><strong>Q</strong></"
  4263. "td>\n"
  4264. " <td width=\"194\">&nbsp;Add Slot Array</td>\n"
  4265. " </tr>\n"
  4266. " <tr height=\"20\">\n"
  4267. " <td height=\"20\"><strong>R</strong></td>\n"
  4268. " <td>&nbsp;Resize Drill(s)</td>\n"
  4269. " </tr>\n"
  4270. " <tr height=\"20\">\n"
  4271. " <td height=\"20\"><strong>T</strong></td>\n"
  4272. " <td>&nbsp;Add a new Tool</td>\n"
  4273. " </tr>\n"
  4274. " <tr height=\"20\">\n"
  4275. " <td height=\"20\" width=\"89\"><strong>W</strong></"
  4276. "td>\n"
  4277. " <td width=\"194\">&nbsp;Add Slot</td>\n"
  4278. " </tr>\n"
  4279. " <tr height=\"20\">\n"
  4280. " <td height=\"20\">&nbsp;</td>\n"
  4281. " <td>&nbsp;</td>\n"
  4282. " </tr>\n"
  4283. " <tr height=\"20\">\n"
  4284. " <td height=\"20\"><strong>Del</strong></td>\n"
  4285. " <td>&nbsp;Delete Drill(s)</td>\n"
  4286. " </tr>\n"
  4287. " <tr height=\"20\">\n"
  4288. " <td height=\"20\"><strong>Del</strong></td>\n"
  4289. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  4290. " </tr>\n"
  4291. " <tr height=\"20\">\n"
  4292. " <td height=\"20\">&nbsp;</td>\n"
  4293. " <td>&nbsp;</td>\n"
  4294. " </tr>\n"
  4295. " <tr height=\"20\">\n"
  4296. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4297. " <td>&nbsp;Abort and return to Select</td>\n"
  4298. " </tr>\n"
  4299. " <tr height=\"20\">\n"
  4300. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4301. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4302. " </tr>\n"
  4303. " </tbody>\n"
  4304. " </table>\n"
  4305. " <br>\n"
  4306. " <br>\n"
  4307. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  4308. "strong><br>\n"
  4309. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4310. "\"width:283px\">\n"
  4311. " <tbody>\n"
  4312. " <tr height=\"20\">\n"
  4313. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4314. "td>\n"
  4315. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  4316. " </tr>\n"
  4317. " <tr height=\"20\">\n"
  4318. " <td height=\"20\"><strong>B</strong></td>\n"
  4319. " <td>&nbsp;Buffer</td>\n"
  4320. " </tr>\n"
  4321. " <tr height=\"20\">\n"
  4322. " <td height=\"20\"><strong>C</strong></td>\n"
  4323. " <td>&nbsp;Copy</td>\n"
  4324. " </tr>\n"
  4325. " <tr height=\"20\">\n"
  4326. " <td height=\"20\"><strong>D</strong></td>\n"
  4327. " <td>&nbsp;Add Disc</td>\n"
  4328. " </tr>\n"
  4329. " <tr height=\"20\">\n"
  4330. " <td height=\"20\"><strong>E</strong></td>\n"
  4331. " <td>&nbsp;Add SemiDisc</td>\n"
  4332. " </tr>\n"
  4333. " <tr height=\"20\">\n"
  4334. " <td height=\"20\"><strong>J</strong></td>\n"
  4335. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4336. " </tr>\n"
  4337. " <tr height=\"20\">\n"
  4338. " <td height=\"20\"><strong>M</strong></td>\n"
  4339. " <td>&nbsp;Move</td>\n"
  4340. " </tr>\n"
  4341. " <tr height=\"20\">\n"
  4342. " <td height=\"20\"><strong>N</strong></td>\n"
  4343. " <td>&nbsp;Add Region</td>\n"
  4344. " </tr>\n"
  4345. " <tr height=\"20\">\n"
  4346. " <td height=\"20\"><strong>P</strong></td>\n"
  4347. " <td>&nbsp;Add Pad</td>\n"
  4348. " </tr>\n"
  4349. " <tr height=\"20\">\n"
  4350. " <td height=\"20\"><strong>R</strong></td>\n"
  4351. " <td>&nbsp;Within Track & Region Tools will cycle in "
  4352. "REVERSE the bend modes</td>\n"
  4353. " </tr>\n"
  4354. " <tr height=\"20\">\n"
  4355. " <td height=\"20\"><strong>S</strong></td>\n"
  4356. " <td>&nbsp;Scale</td>\n"
  4357. " </tr>\n"
  4358. " <tr height=\"20\">\n"
  4359. " <td height=\"20\"><strong>T</strong></td>\n"
  4360. " <td>&nbsp;Add Track</td>\n"
  4361. " </tr>\n"
  4362. " <tr height=\"20\">\n"
  4363. " <td height=\"20\"><strong>T</strong></td>\n"
  4364. " <td>&nbsp;Within Track & Region Tools will cycle "
  4365. "FORWARD the bend modes</td>\n"
  4366. " </tr>\n"
  4367. " <tr height=\"20\">\n"
  4368. " <td height=\"20\">&nbsp;</td>\n"
  4369. " <td>&nbsp;</td>\n"
  4370. " </tr>\n"
  4371. " <tr height=\"20\">\n"
  4372. " <td height=\"20\"><strong>Del</strong></td>\n"
  4373. " <td>&nbsp;Delete</td>\n"
  4374. " </tr>\n"
  4375. " <tr height=\"20\">\n"
  4376. " <td height=\"20\"><strong>Del</strong></td>\n"
  4377. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  4378. " </tr>\n"
  4379. " <tr height=\"20\">\n"
  4380. " <td height=\"20\">&nbsp;</td>\n"
  4381. " <td>&nbsp;</td>\n"
  4382. " </tr>\n"
  4383. " <tr height=\"20\">\n"
  4384. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4385. " <td>&nbsp;Abort and return to Select</td>\n"
  4386. " </tr>\n"
  4387. " <tr height=\"20\">\n"
  4388. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4389. " <td>&nbsp;Eraser Tool</td>\n"
  4390. " </tr>\n"
  4391. " <tr height=\"20\">\n"
  4392. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4393. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4394. " </tr>\n"
  4395. " <tr height=\"20\">\n"
  4396. " <td height=\"20\">&nbsp;</td>\n"
  4397. " <td>&nbsp;</td>\n"
  4398. " </tr>\n"
  4399. " <tr height=\"20\">\n"
  4400. " <td height=\"20\"><strong>ALT+A</strong></td>\n"
  4401. " <td>&nbsp;Mark Area Tool</td>\n"
  4402. " </tr>\n"
  4403. " <tr height=\"20\">\n"
  4404. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4405. " <td>&nbsp;Poligonize Tool</td>\n"
  4406. " </tr>\n"
  4407. " <tr height=\"20\">\n"
  4408. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4409. " <td>&nbsp;Transformation Tool</td>\n"
  4410. " </tr>\n"
  4411. " </tbody>\n"
  4412. " </table>\n"
  4413. " "
  4414. msgstr ""
  4415. #: flatcamGUI/FlatCAMGUI.py:1642
  4416. msgid "Toggle Visibility"
  4417. msgstr ""
  4418. #: flatcamGUI/FlatCAMGUI.py:1643
  4419. msgid "Toggle Panel"
  4420. msgstr ""
  4421. #: flatcamGUI/FlatCAMGUI.py:1646
  4422. msgid "New"
  4423. msgstr ""
  4424. #: flatcamGUI/FlatCAMGUI.py:1647
  4425. msgid "Geometry"
  4426. msgstr ""
  4427. #: flatcamGUI/FlatCAMGUI.py:1649
  4428. msgid "Excellon"
  4429. msgstr ""
  4430. #: flatcamGUI/FlatCAMGUI.py:1654
  4431. msgid "Grids"
  4432. msgstr ""
  4433. #: flatcamGUI/FlatCAMGUI.py:1656
  4434. msgid "View"
  4435. msgstr ""
  4436. #: flatcamGUI/FlatCAMGUI.py:1658
  4437. msgid "Clear Plot"
  4438. msgstr ""
  4439. #: flatcamGUI/FlatCAMGUI.py:1659
  4440. msgid "Replot"
  4441. msgstr ""
  4442. #: flatcamGUI/FlatCAMGUI.py:1662
  4443. msgid "Geo Editor"
  4444. msgstr ""
  4445. #: flatcamGUI/FlatCAMGUI.py:1663
  4446. msgid "Path"
  4447. msgstr ""
  4448. #: flatcamGUI/FlatCAMGUI.py:1664
  4449. msgid "Rectangle"
  4450. msgstr ""
  4451. #: flatcamGUI/FlatCAMGUI.py:1666
  4452. msgid "Circle"
  4453. msgstr ""
  4454. #: flatcamGUI/FlatCAMGUI.py:1667
  4455. msgid "Polygon"
  4456. msgstr ""
  4457. #: flatcamGUI/FlatCAMGUI.py:1668
  4458. msgid "Arc"
  4459. msgstr ""
  4460. #: flatcamGUI/FlatCAMGUI.py:1671
  4461. msgid "Text"
  4462. msgstr ""
  4463. #: flatcamGUI/FlatCAMGUI.py:1677
  4464. msgid "Union"
  4465. msgstr ""
  4466. #: flatcamGUI/FlatCAMGUI.py:1678
  4467. msgid "Intersection"
  4468. msgstr ""
  4469. #: flatcamGUI/FlatCAMGUI.py:1679
  4470. msgid "Substraction"
  4471. msgstr ""
  4472. #: flatcamGUI/FlatCAMGUI.py:1680 flatcamGUI/FlatCAMGUI.py:6175
  4473. #: flatcamGUI/ObjectUI.py:1409
  4474. msgid "Cut"
  4475. msgstr ""
  4476. #: flatcamGUI/FlatCAMGUI.py:1687
  4477. msgid "Pad"
  4478. msgstr ""
  4479. #: flatcamGUI/FlatCAMGUI.py:1688
  4480. msgid "Pad Array"
  4481. msgstr ""
  4482. #: flatcamGUI/FlatCAMGUI.py:1691
  4483. msgid "Track"
  4484. msgstr ""
  4485. #: flatcamGUI/FlatCAMGUI.py:1692
  4486. msgid "Region"
  4487. msgstr ""
  4488. #: flatcamGUI/FlatCAMGUI.py:1708
  4489. msgid "Exc Editor"
  4490. msgstr ""
  4491. #: flatcamGUI/FlatCAMGUI.py:1709
  4492. msgid "Add Drill"
  4493. msgstr ""
  4494. #: flatcamGUI/FlatCAMGUI.py:1745
  4495. msgid "Print Preview"
  4496. msgstr ""
  4497. #: flatcamGUI/FlatCAMGUI.py:1746
  4498. msgid "Print Code"
  4499. msgstr ""
  4500. #: flatcamGUI/FlatCAMGUI.py:1747
  4501. msgid "Find in Code"
  4502. msgstr ""
  4503. #: flatcamGUI/FlatCAMGUI.py:1752
  4504. msgid "Replace With"
  4505. msgstr ""
  4506. #: flatcamGUI/FlatCAMGUI.py:1756 flatcamGUI/FlatCAMGUI.py:6173
  4507. #: flatcamGUI/FlatCAMGUI.py:6966 flatcamGUI/ObjectUI.py:1407
  4508. msgid "All"
  4509. msgstr ""
  4510. #: flatcamGUI/FlatCAMGUI.py:1758
  4511. msgid ""
  4512. "When checked it will replace all instances in the 'Find' box\n"
  4513. "with the text in the 'Replace' box.."
  4514. msgstr ""
  4515. #: flatcamGUI/FlatCAMGUI.py:1761
  4516. msgid "Open Code"
  4517. msgstr ""
  4518. #: flatcamGUI/FlatCAMGUI.py:1762
  4519. msgid "Save Code"
  4520. msgstr ""
  4521. #: flatcamGUI/FlatCAMGUI.py:1797
  4522. msgid ""
  4523. "Relative neasurement.\n"
  4524. "Reference is last click position"
  4525. msgstr ""
  4526. #: flatcamGUI/FlatCAMGUI.py:1803
  4527. msgid ""
  4528. "Absolute neasurement.\n"
  4529. "Reference is (X=0, Y= 0) position"
  4530. msgstr ""
  4531. #: flatcamGUI/FlatCAMGUI.py:1933
  4532. msgid "Lock Toolbars"
  4533. msgstr ""
  4534. #: flatcamGUI/FlatCAMGUI.py:2038
  4535. msgid "Select 'Esc'"
  4536. msgstr ""
  4537. #: flatcamGUI/FlatCAMGUI.py:2063
  4538. msgid "Copy Objects"
  4539. msgstr ""
  4540. #: flatcamGUI/FlatCAMGUI.py:2065
  4541. msgid "Delete Shape"
  4542. msgstr ""
  4543. #: flatcamGUI/FlatCAMGUI.py:2070
  4544. msgid "Move Objects"
  4545. msgstr ""
  4546. #: flatcamGUI/FlatCAMGUI.py:2506
  4547. msgid ""
  4548. "Please first select a geometry item to be cutted\n"
  4549. "then select the geometry item that will be cutted\n"
  4550. "out of the first item. In the end press ~X~ key or\n"
  4551. "the toolbar button."
  4552. msgstr ""
  4553. #: flatcamGUI/FlatCAMGUI.py:2513 flatcamGUI/FlatCAMGUI.py:2650
  4554. #: flatcamGUI/FlatCAMGUI.py:2709 flatcamGUI/FlatCAMGUI.py:2729
  4555. msgid "Warning"
  4556. msgstr ""
  4557. #: flatcamGUI/FlatCAMGUI.py:2560 flatcamGUI/FlatCAMGUI.py:2572
  4558. msgid "[success] Done."
  4559. msgstr ""
  4560. #: flatcamGUI/FlatCAMGUI.py:2580 flatcamGUI/FlatCAMGUI.py:2788
  4561. #: flatcamGUI/FlatCAMGUI.py:2999
  4562. msgid "[WARNING_NOTCL] Cancelled."
  4563. msgstr ""
  4564. #: flatcamGUI/FlatCAMGUI.py:2645
  4565. msgid ""
  4566. "Please select geometry items \n"
  4567. "on which to perform Intersection Tool."
  4568. msgstr ""
  4569. #: flatcamGUI/FlatCAMGUI.py:2704
  4570. msgid ""
  4571. "Please select geometry items \n"
  4572. "on which to perform Substraction Tool."
  4573. msgstr ""
  4574. #: flatcamGUI/FlatCAMGUI.py:2724
  4575. msgid ""
  4576. "Please select geometry items \n"
  4577. "on which to perform union."
  4578. msgstr ""
  4579. #: flatcamGUI/FlatCAMGUI.py:2804 flatcamGUI/FlatCAMGUI.py:3016
  4580. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  4581. msgstr ""
  4582. #: flatcamGUI/FlatCAMGUI.py:2888 flatcamGUI/FlatCAMGUI.py:3083
  4583. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  4584. msgstr ""
  4585. #: flatcamGUI/FlatCAMGUI.py:2934 flatcamGUI/FlatCAMGUI.py:3129
  4586. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  4587. msgstr ""
  4588. #: flatcamGUI/FlatCAMGUI.py:3155
  4589. msgid "New Tool ..."
  4590. msgstr ""
  4591. #: flatcamGUI/FlatCAMGUI.py:3156
  4592. msgid "Enter a Tool Diameter"
  4593. msgstr ""
  4594. #: flatcamGUI/FlatCAMGUI.py:3164
  4595. #, python-brace-format
  4596. msgid "[success] Added new tool with dia: {dia} {units}"
  4597. msgstr ""
  4598. #: flatcamGUI/FlatCAMGUI.py:3211
  4599. msgid "Measurement Tool exit..."
  4600. msgstr ""
  4601. #: flatcamGUI/FlatCAMGUI.py:3312
  4602. msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  4603. msgstr ""
  4604. #: flatcamGUI/FlatCAMGUI.py:3554
  4605. msgid "GUI Preferences"
  4606. msgstr ""
  4607. #: flatcamGUI/FlatCAMGUI.py:3560
  4608. msgid "Grid X value"
  4609. msgstr ""
  4610. #: flatcamGUI/FlatCAMGUI.py:3562
  4611. msgid "This is the Grid snap value on X axis."
  4612. msgstr ""
  4613. #: flatcamGUI/FlatCAMGUI.py:3567
  4614. msgid "Grid Y value"
  4615. msgstr ""
  4616. #: flatcamGUI/FlatCAMGUI.py:3569
  4617. msgid "This is the Grid snap value on Y axis."
  4618. msgstr ""
  4619. #: flatcamGUI/FlatCAMGUI.py:3574
  4620. msgid "Snap Max"
  4621. msgstr ""
  4622. #: flatcamGUI/FlatCAMGUI.py:3579
  4623. msgid "Workspace"
  4624. msgstr ""
  4625. #: flatcamGUI/FlatCAMGUI.py:3581
  4626. msgid ""
  4627. "Draw a delimiting rectangle on canvas.\n"
  4628. "The purpose is to illustrate the limits for our work."
  4629. msgstr ""
  4630. #: flatcamGUI/FlatCAMGUI.py:3584
  4631. msgid "Wk. format"
  4632. msgstr ""
  4633. #: flatcamGUI/FlatCAMGUI.py:3586
  4634. msgid ""
  4635. "Select the type of rectangle to be used on canvas,\n"
  4636. "as valid workspace."
  4637. msgstr ""
  4638. #: flatcamGUI/FlatCAMGUI.py:3599
  4639. msgid "Plot Fill"
  4640. msgstr ""
  4641. #: flatcamGUI/FlatCAMGUI.py:3601
  4642. msgid ""
  4643. "Set the fill color for plotted objects.\n"
  4644. "First 6 digits are the color and the last 2\n"
  4645. "digits are for alpha (transparency) level."
  4646. msgstr ""
  4647. #: flatcamGUI/FlatCAMGUI.py:3615 flatcamGUI/FlatCAMGUI.py:3665
  4648. #: flatcamGUI/FlatCAMGUI.py:3715
  4649. msgid "Alpha Level"
  4650. msgstr ""
  4651. #: flatcamGUI/FlatCAMGUI.py:3617
  4652. msgid "Set the fill transparency for plotted objects."
  4653. msgstr ""
  4654. #: flatcamGUI/FlatCAMGUI.py:3634
  4655. msgid "Plot Line"
  4656. msgstr ""
  4657. #: flatcamGUI/FlatCAMGUI.py:3636
  4658. msgid "Set the line color for plotted objects."
  4659. msgstr ""
  4660. #: flatcamGUI/FlatCAMGUI.py:3648
  4661. msgid "Sel. Fill"
  4662. msgstr ""
  4663. #: flatcamGUI/FlatCAMGUI.py:3650
  4664. msgid ""
  4665. "Set the fill color for the selection box\n"
  4666. "in case that the selection is done from left to right.\n"
  4667. "First 6 digits are the color and the last 2\n"
  4668. "digits are for alpha (transparency) level."
  4669. msgstr ""
  4670. #: flatcamGUI/FlatCAMGUI.py:3667
  4671. msgid "Set the fill transparency for the 'left to right' selection box."
  4672. msgstr ""
  4673. #: flatcamGUI/FlatCAMGUI.py:3684
  4674. msgid "Sel. Line"
  4675. msgstr ""
  4676. #: flatcamGUI/FlatCAMGUI.py:3686
  4677. msgid "Set the line color for the 'left to right' selection box."
  4678. msgstr ""
  4679. #: flatcamGUI/FlatCAMGUI.py:3698
  4680. msgid "Sel2. Fill"
  4681. msgstr ""
  4682. #: flatcamGUI/FlatCAMGUI.py:3700
  4683. msgid ""
  4684. "Set the fill color for the selection box\n"
  4685. "in case that the selection is done from right to left.\n"
  4686. "First 6 digits are the color and the last 2\n"
  4687. "digits are for alpha (transparency) level."
  4688. msgstr ""
  4689. #: flatcamGUI/FlatCAMGUI.py:3717
  4690. msgid "Set the fill transparency for selection 'right to left' box."
  4691. msgstr ""
  4692. #: flatcamGUI/FlatCAMGUI.py:3734
  4693. msgid "Sel2. Line"
  4694. msgstr ""
  4695. #: flatcamGUI/FlatCAMGUI.py:3736
  4696. msgid "Set the line color for the 'right to left' selection box."
  4697. msgstr ""
  4698. #: flatcamGUI/FlatCAMGUI.py:3748
  4699. msgid "Editor Draw"
  4700. msgstr ""
  4701. #: flatcamGUI/FlatCAMGUI.py:3750
  4702. msgid "Set the color for the shape."
  4703. msgstr ""
  4704. #: flatcamGUI/FlatCAMGUI.py:3762
  4705. msgid "Editor Draw Sel."
  4706. msgstr ""
  4707. #: flatcamGUI/FlatCAMGUI.py:3764
  4708. msgid "Set the color of the shape when selected."
  4709. msgstr ""
  4710. #: flatcamGUI/FlatCAMGUI.py:3776
  4711. msgid "Project Items"
  4712. msgstr ""
  4713. #: flatcamGUI/FlatCAMGUI.py:3778
  4714. msgid "Set the color of the items in Project Tab Tree."
  4715. msgstr ""
  4716. #: flatcamGUI/FlatCAMGUI.py:3789
  4717. msgid "Proj. Dis. Items"
  4718. msgstr ""
  4719. #: flatcamGUI/FlatCAMGUI.py:3791
  4720. msgid ""
  4721. "Set the color of the items in Project Tab Tree,\n"
  4722. "for the case when the items are disabled."
  4723. msgstr ""
  4724. #: flatcamGUI/FlatCAMGUI.py:3842
  4725. msgid "GUI Settings"
  4726. msgstr ""
  4727. #: flatcamGUI/FlatCAMGUI.py:3848
  4728. msgid "Layout"
  4729. msgstr ""
  4730. #: flatcamGUI/FlatCAMGUI.py:3850
  4731. msgid ""
  4732. "Select an layout for FlatCAM.\n"
  4733. "It is applied immediately."
  4734. msgstr ""
  4735. #: flatcamGUI/FlatCAMGUI.py:3866
  4736. msgid "Style"
  4737. msgstr ""
  4738. #: flatcamGUI/FlatCAMGUI.py:3868
  4739. msgid ""
  4740. "Select an style for FlatCAM.\n"
  4741. "It will be applied at the next app start."
  4742. msgstr ""
  4743. #: flatcamGUI/FlatCAMGUI.py:3879
  4744. msgid "HDPI Support"
  4745. msgstr ""
  4746. #: flatcamGUI/FlatCAMGUI.py:3881
  4747. msgid ""
  4748. "Enable High DPI support for FlatCAM.\n"
  4749. "It will be applied at the next app start."
  4750. msgstr ""
  4751. #: flatcamGUI/FlatCAMGUI.py:3894 flatcamGUI/FlatCAMGUI.py:3994
  4752. msgid "Clear GUI Settings"
  4753. msgstr ""
  4754. #: flatcamGUI/FlatCAMGUI.py:3896
  4755. msgid ""
  4756. "Clear the GUI settings for FlatCAM,\n"
  4757. "such as: layout, gui state, style, hdpi support etc."
  4758. msgstr ""
  4759. #: flatcamGUI/FlatCAMGUI.py:3899
  4760. msgid "Clear"
  4761. msgstr ""
  4762. #: flatcamGUI/FlatCAMGUI.py:3903
  4763. msgid "Hover Shape"
  4764. msgstr ""
  4765. #: flatcamGUI/FlatCAMGUI.py:3905
  4766. msgid ""
  4767. "Enable display of a hover shape for FlatCAM objects.\n"
  4768. "It is displayed whenever the mouse cursor is hovering\n"
  4769. "over any kind of not-selected object."
  4770. msgstr ""
  4771. #: flatcamGUI/FlatCAMGUI.py:3912
  4772. msgid "Sel. Shape"
  4773. msgstr ""
  4774. #: flatcamGUI/FlatCAMGUI.py:3914
  4775. msgid ""
  4776. "Enable the display of a selection shape for FlatCAM objects.\n"
  4777. "It is displayed whenever the mouse selects an object\n"
  4778. "either by clicking or dragging mouse from left to right or\n"
  4779. "right to left."
  4780. msgstr ""
  4781. #: flatcamGUI/FlatCAMGUI.py:3921
  4782. msgid "NB Font Size"
  4783. msgstr ""
  4784. #: flatcamGUI/FlatCAMGUI.py:3923
  4785. msgid ""
  4786. "This sets the font size for the elements found in the Notebook.\n"
  4787. "The notebook is the collapsible area in the left side of the GUI,\n"
  4788. "and include the Project, Selected and Tool tabs."
  4789. msgstr ""
  4790. #: flatcamGUI/FlatCAMGUI.py:3938
  4791. msgid "Axis Font Size"
  4792. msgstr ""
  4793. #: flatcamGUI/FlatCAMGUI.py:3940
  4794. msgid "This sets the font size for canvas axis."
  4795. msgstr ""
  4796. #: flatcamGUI/FlatCAMGUI.py:3991
  4797. msgid "Are you sure you want to delete the GUI Settings? \n"
  4798. msgstr ""
  4799. #: flatcamGUI/FlatCAMGUI.py:4015
  4800. msgid "App Preferences"
  4801. msgstr ""
  4802. #: flatcamGUI/FlatCAMGUI.py:4021 flatcamGUI/FlatCAMGUI.py:4549
  4803. #: flatcamGUI/FlatCAMGUI.py:5374 flatcamTools/ToolMeasurement.py:43
  4804. #: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:133
  4805. msgid "Units"
  4806. msgstr ""
  4807. #: flatcamGUI/FlatCAMGUI.py:4022
  4808. msgid ""
  4809. "The default value for FlatCAM units.\n"
  4810. "Whatever is selected here is set every time\n"
  4811. "FLatCAM is started."
  4812. msgstr ""
  4813. #: flatcamGUI/FlatCAMGUI.py:4025
  4814. msgid "IN"
  4815. msgstr ""
  4816. #: flatcamGUI/FlatCAMGUI.py:4026 flatcamGUI/FlatCAMGUI.py:4555
  4817. #: flatcamGUI/FlatCAMGUI.py:4987 flatcamGUI/FlatCAMGUI.py:5380
  4818. #: flatcamTools/ToolCalculators.py:61 flatcamTools/ToolPcbWizard.py:126
  4819. msgid "MM"
  4820. msgstr ""
  4821. #: flatcamGUI/FlatCAMGUI.py:4029
  4822. msgid "APP. LEVEL"
  4823. msgstr ""
  4824. #: flatcamGUI/FlatCAMGUI.py:4030
  4825. msgid ""
  4826. "Choose the default level of usage for FlatCAM.\n"
  4827. "BASIC level -> reduced functionality, best for beginner's.\n"
  4828. "ADVANCED level -> full functionality.\n"
  4829. "\n"
  4830. "The choice here will influence the parameters in\n"
  4831. "the Selected Tab for all kinds of FlatCAM objects."
  4832. msgstr ""
  4833. #: flatcamGUI/FlatCAMGUI.py:4035 flatcamGUI/FlatCAMGUI.py:5014
  4834. msgid "Basic"
  4835. msgstr ""
  4836. #: flatcamGUI/FlatCAMGUI.py:4036
  4837. msgid "Advanced"
  4838. msgstr ""
  4839. #: flatcamGUI/FlatCAMGUI.py:4039
  4840. msgid "Portable app"
  4841. msgstr ""
  4842. #: flatcamGUI/FlatCAMGUI.py:4040
  4843. msgid ""
  4844. "Choose if the application should run as portable.\n"
  4845. "\n"
  4846. "If Checked the application will run portable,\n"
  4847. "which means that the preferences files will be saved\n"
  4848. "in the application folder, in the lib\\config subfolder."
  4849. msgstr ""
  4850. #: flatcamGUI/FlatCAMGUI.py:4047
  4851. msgid "Languages"
  4852. msgstr ""
  4853. #: flatcamGUI/FlatCAMGUI.py:4048
  4854. msgid "Set the language used throughout FlatCAM."
  4855. msgstr ""
  4856. #: flatcamGUI/FlatCAMGUI.py:4051
  4857. msgid "Apply Language"
  4858. msgstr ""
  4859. #: flatcamGUI/FlatCAMGUI.py:4052
  4860. msgid ""
  4861. "Set the language used throughout FlatCAM.\n"
  4862. "The app will restart after click.Windows: When FlatCAM is installed in "
  4863. "Program Files\n"
  4864. "directory, it is possible that the app will not\n"
  4865. "restart after the button is clicked due of Windows\n"
  4866. "security features. In this case the language will be\n"
  4867. "applied at the next app start."
  4868. msgstr ""
  4869. #: flatcamGUI/FlatCAMGUI.py:4061
  4870. msgid "Shell at StartUp"
  4871. msgstr ""
  4872. #: flatcamGUI/FlatCAMGUI.py:4063 flatcamGUI/FlatCAMGUI.py:4068
  4873. msgid ""
  4874. "Check this box if you want the shell to\n"
  4875. "start automatically at startup."
  4876. msgstr ""
  4877. #: flatcamGUI/FlatCAMGUI.py:4073
  4878. msgid "Version Check"
  4879. msgstr ""
  4880. #: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/FlatCAMGUI.py:4080
  4881. msgid ""
  4882. "Check this box if you want to check\n"
  4883. "for a new version automatically at startup."
  4884. msgstr ""
  4885. #: flatcamGUI/FlatCAMGUI.py:4085
  4886. msgid "Send Stats"
  4887. msgstr ""
  4888. #: flatcamGUI/FlatCAMGUI.py:4087 flatcamGUI/FlatCAMGUI.py:4092
  4889. msgid ""
  4890. "Check this box if you agree to send anonymous\n"
  4891. "stats automatically at startup, to help improve FlatCAM."
  4892. msgstr ""
  4893. #: flatcamGUI/FlatCAMGUI.py:4099
  4894. msgid "Pan Button"
  4895. msgstr ""
  4896. #: flatcamGUI/FlatCAMGUI.py:4100
  4897. msgid ""
  4898. "Select the mouse button to use for panning:\n"
  4899. "- MMB --> Middle Mouse Button\n"
  4900. "- RMB --> Right Mouse Button"
  4901. msgstr ""
  4902. #: flatcamGUI/FlatCAMGUI.py:4103
  4903. msgid "MMB"
  4904. msgstr ""
  4905. #: flatcamGUI/FlatCAMGUI.py:4104
  4906. msgid "RMB"
  4907. msgstr ""
  4908. #: flatcamGUI/FlatCAMGUI.py:4107
  4909. msgid "Multiple Sel"
  4910. msgstr ""
  4911. #: flatcamGUI/FlatCAMGUI.py:4108
  4912. msgid "Select the key used for multiple selection."
  4913. msgstr ""
  4914. #: flatcamGUI/FlatCAMGUI.py:4109
  4915. msgid "CTRL"
  4916. msgstr ""
  4917. #: flatcamGUI/FlatCAMGUI.py:4110
  4918. msgid "SHIFT"
  4919. msgstr ""
  4920. #: flatcamGUI/FlatCAMGUI.py:4113
  4921. msgid "Project at StartUp"
  4922. msgstr ""
  4923. #: flatcamGUI/FlatCAMGUI.py:4115 flatcamGUI/FlatCAMGUI.py:4120
  4924. msgid ""
  4925. "Check this box if you want the project/selected/tool tab area to\n"
  4926. "to be shown automatically at startup."
  4927. msgstr ""
  4928. #: flatcamGUI/FlatCAMGUI.py:4125
  4929. msgid "Project AutoHide"
  4930. msgstr ""
  4931. #: flatcamGUI/FlatCAMGUI.py:4127 flatcamGUI/FlatCAMGUI.py:4133
  4932. msgid ""
  4933. "Check this box if you want the project/selected/tool tab area to\n"
  4934. "hide automatically when there are no objects loaded and\n"
  4935. "to show whenever a new object is created."
  4936. msgstr ""
  4937. #: flatcamGUI/FlatCAMGUI.py:4139
  4938. msgid "Enable ToolTips"
  4939. msgstr ""
  4940. #: flatcamGUI/FlatCAMGUI.py:4141 flatcamGUI/FlatCAMGUI.py:4146
  4941. msgid ""
  4942. "Check this box if you want to have toolTips displayed\n"
  4943. "when hovering with mouse over items throughout the App."
  4944. msgstr ""
  4945. #: flatcamGUI/FlatCAMGUI.py:4149
  4946. msgid "Workers number"
  4947. msgstr ""
  4948. #: flatcamGUI/FlatCAMGUI.py:4151 flatcamGUI/FlatCAMGUI.py:4160
  4949. msgid ""
  4950. "The number of Qthreads made available to the App.\n"
  4951. "A bigger number may finish the jobs more quickly but\n"
  4952. "depending on your computer speed, may make the App\n"
  4953. "unresponsive. Can have a value between 2 and 16.\n"
  4954. "Default value is 2.\n"
  4955. "After change, it will be applied at next App start."
  4956. msgstr ""
  4957. #: flatcamGUI/FlatCAMGUI.py:4170
  4958. msgid "Geo Tolerance"
  4959. msgstr ""
  4960. #: flatcamGUI/FlatCAMGUI.py:4172 flatcamGUI/FlatCAMGUI.py:4181
  4961. msgid ""
  4962. "This value can counter the effect of the Circle Steps\n"
  4963. "parameter. Default value is 0.01.\n"
  4964. "A lower value will increase the detail both in image\n"
  4965. "and in Gcode for the circles, with a higher cost in\n"
  4966. "performance. Higher value will provide more\n"
  4967. "performance at the expense of level of detail."
  4968. msgstr ""
  4969. #: flatcamGUI/FlatCAMGUI.py:4220
  4970. msgid "\"Open\" behavior"
  4971. msgstr ""
  4972. #: flatcamGUI/FlatCAMGUI.py:4222
  4973. msgid ""
  4974. "When checked the path for the last saved file is used when saving files,\n"
  4975. "and the path for the last opened file is used when opening files.\n"
  4976. "\n"
  4977. "When unchecked the path for opening files is the one used last: either the\n"
  4978. "path for saving files or the path for opening files."
  4979. msgstr ""
  4980. #: flatcamGUI/FlatCAMGUI.py:4231
  4981. msgid "Delete object confirmation"
  4982. msgstr ""
  4983. #: flatcamGUI/FlatCAMGUI.py:4233
  4984. msgid ""
  4985. "When checked the application will ask for user confirmation\n"
  4986. "whenever the Delete object(s) event is triggered, either by\n"
  4987. "menu shortcut or key shortcut."
  4988. msgstr ""
  4989. #: flatcamGUI/FlatCAMGUI.py:4240
  4990. msgid "Save Compressed Project"
  4991. msgstr ""
  4992. #: flatcamGUI/FlatCAMGUI.py:4242
  4993. msgid ""
  4994. "Whether to save a compressed or uncompressed project.\n"
  4995. "When checked it will save a compressed FlatCAM project."
  4996. msgstr ""
  4997. #: flatcamGUI/FlatCAMGUI.py:4253
  4998. msgid "Compression Level"
  4999. msgstr ""
  5000. #: flatcamGUI/FlatCAMGUI.py:4255
  5001. msgid ""
  5002. "The level of compression used when saving\n"
  5003. "a FlatCAM project. Higher value means better compression\n"
  5004. "but require more RAM usage and more processing time."
  5005. msgstr ""
  5006. #: flatcamGUI/FlatCAMGUI.py:4281
  5007. msgid "Gerber General"
  5008. msgstr ""
  5009. #: flatcamGUI/FlatCAMGUI.py:4284 flatcamGUI/FlatCAMGUI.py:4838
  5010. #: flatcamGUI/FlatCAMGUI.py:5768 flatcamGUI/FlatCAMGUI.py:6149
  5011. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:562
  5012. #: flatcamGUI/ObjectUI.py:894 flatcamGUI/ObjectUI.py:1393
  5013. msgid "Plot Options"
  5014. msgstr ""
  5015. #: flatcamGUI/FlatCAMGUI.py:4291 flatcamGUI/FlatCAMGUI.py:4850
  5016. #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:563
  5017. msgid "Solid"
  5018. msgstr ""
  5019. #: flatcamGUI/FlatCAMGUI.py:4293 flatcamGUI/ObjectUI.py:158
  5020. msgid "Solid color polygons."
  5021. msgstr ""
  5022. #: flatcamGUI/FlatCAMGUI.py:4298 flatcamGUI/ObjectUI.py:164
  5023. msgid "M-Color"
  5024. msgstr ""
  5025. #: flatcamGUI/FlatCAMGUI.py:4300 flatcamGUI/ObjectUI.py:166
  5026. msgid "Draw polygons in different colors."
  5027. msgstr ""
  5028. #: flatcamGUI/FlatCAMGUI.py:4305 flatcamGUI/FlatCAMGUI.py:4844
  5029. #: flatcamGUI/FlatCAMGUI.py:5772 flatcamGUI/ObjectUI.py:172
  5030. #: flatcamGUI/ObjectUI.py:601
  5031. msgid "Plot"
  5032. msgstr ""
  5033. #: flatcamGUI/FlatCAMGUI.py:4307 flatcamGUI/FlatCAMGUI.py:5774
  5034. #: flatcamGUI/FlatCAMGUI.py:6160 flatcamGUI/ObjectUI.py:174
  5035. #: flatcamGUI/ObjectUI.py:603 flatcamGUI/ObjectUI.py:940
  5036. #: flatcamGUI/ObjectUI.py:1503
  5037. msgid "Plot (show) this object."
  5038. msgstr ""
  5039. #: flatcamGUI/FlatCAMGUI.py:4312 flatcamGUI/FlatCAMGUI.py:5782
  5040. #: flatcamGUI/FlatCAMGUI.py:6230
  5041. msgid "Circle Steps"
  5042. msgstr ""
  5043. #: flatcamGUI/FlatCAMGUI.py:4314
  5044. msgid ""
  5045. "The number of circle steps for Gerber \n"
  5046. "circular aperture linear approximation."
  5047. msgstr ""
  5048. #: flatcamGUI/FlatCAMGUI.py:4324
  5049. msgid ""
  5050. "Buffering type:\n"
  5051. "- None --> best performance, fast file loading but no so good display\n"
  5052. "- Full --> slow file loading but good visuals. This is the default.\n"
  5053. "<<WARNING>>: Don't change this unless you know what you are doing !!!"
  5054. msgstr ""
  5055. #: flatcamGUI/FlatCAMGUI.py:4329 flatcamTools/ToolProperties.py:298
  5056. #: flatcamTools/ToolProperties.py:312 flatcamTools/ToolProperties.py:315
  5057. #: flatcamTools/ToolProperties.py:318
  5058. msgid "None"
  5059. msgstr ""
  5060. #: flatcamGUI/FlatCAMGUI.py:4330
  5061. msgid "Full"
  5062. msgstr ""
  5063. #: flatcamGUI/FlatCAMGUI.py:4342
  5064. msgid "Gerber Options"
  5065. msgstr ""
  5066. #: flatcamGUI/FlatCAMGUI.py:4345 flatcamGUI/ObjectUI.py:250
  5067. msgid "Isolation Routing"
  5068. msgstr ""
  5069. #: flatcamGUI/FlatCAMGUI.py:4347 flatcamGUI/ObjectUI.py:252
  5070. msgid ""
  5071. "Create a Geometry object with\n"
  5072. "toolpaths to cut outside polygons."
  5073. msgstr ""
  5074. #: flatcamGUI/FlatCAMGUI.py:4358 flatcamGUI/FlatCAMGUI.py:5214
  5075. #: flatcamGUI/ObjectUI.py:848
  5076. msgid "Diameter of the cutting tool."
  5077. msgstr ""
  5078. #: flatcamGUI/FlatCAMGUI.py:4365 flatcamGUI/ObjectUI.py:277
  5079. msgid "# Passes"
  5080. msgstr ""
  5081. #: flatcamGUI/FlatCAMGUI.py:4367 flatcamGUI/ObjectUI.py:279
  5082. msgid ""
  5083. "Width of the isolation gap in\n"
  5084. "number (integer) of tool widths."
  5085. msgstr ""
  5086. #: flatcamGUI/FlatCAMGUI.py:4376 flatcamGUI/ObjectUI.py:288
  5087. msgid "Pass overlap"
  5088. msgstr ""
  5089. #: flatcamGUI/FlatCAMGUI.py:4378 flatcamGUI/ObjectUI.py:290
  5090. #, python-format
  5091. msgid ""
  5092. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5093. "Example:\n"
  5094. "A value here of 0.25 means an overlap of 25% from the tool diameter found "
  5095. "above."
  5096. msgstr ""
  5097. #: flatcamGUI/FlatCAMGUI.py:4387 flatcamGUI/FlatCAMGUI.py:6490
  5098. #: flatcamGUI/ObjectUI.py:300 flatcamTools/ToolNonCopperClear.py:147
  5099. msgid "Milling Type"
  5100. msgstr ""
  5101. #: flatcamGUI/FlatCAMGUI.py:4389 flatcamGUI/ObjectUI.py:302
  5102. msgid ""
  5103. "Milling type:\n"
  5104. "- climb / best for precision milling and to reduce tool usage\n"
  5105. "- conventional / useful when there is no backlash compensation"
  5106. msgstr ""
  5107. #: flatcamGUI/FlatCAMGUI.py:4394 flatcamGUI/FlatCAMGUI.py:6497
  5108. #: flatcamGUI/ObjectUI.py:306 flatcamTools/ToolNonCopperClear.py:154
  5109. msgid "Climb"
  5110. msgstr ""
  5111. #: flatcamGUI/FlatCAMGUI.py:4395 flatcamGUI/FlatCAMGUI.py:6498
  5112. #: flatcamGUI/ObjectUI.py:307 flatcamTools/ToolNonCopperClear.py:155
  5113. msgid "Conv."
  5114. msgstr ""
  5115. #: flatcamGUI/FlatCAMGUI.py:4399 flatcamGUI/ObjectUI.py:312
  5116. msgid "Combine Passes"
  5117. msgstr ""
  5118. #: flatcamGUI/FlatCAMGUI.py:4401 flatcamGUI/ObjectUI.py:314
  5119. msgid "Combine all passes into one object"
  5120. msgstr ""
  5121. #: flatcamGUI/FlatCAMGUI.py:4406 flatcamGUI/ObjectUI.py:477
  5122. msgid "Non-copper regions"
  5123. msgstr ""
  5124. #: flatcamGUI/FlatCAMGUI.py:4408 flatcamGUI/ObjectUI.py:479
  5125. msgid ""
  5126. "Create polygons covering the\n"
  5127. "areas without copper on the PCB.\n"
  5128. "Equivalent to the inverse of this\n"
  5129. "object. Can be used to remove all\n"
  5130. "copper from a specified region."
  5131. msgstr ""
  5132. #: flatcamGUI/FlatCAMGUI.py:4420 flatcamGUI/FlatCAMGUI.py:4445
  5133. #: flatcamGUI/ObjectUI.py:489 flatcamGUI/ObjectUI.py:521
  5134. msgid "Boundary Margin"
  5135. msgstr ""
  5136. #: flatcamGUI/FlatCAMGUI.py:4422 flatcamGUI/ObjectUI.py:491
  5137. msgid ""
  5138. "Specify the edge of the PCB\n"
  5139. "by drawing a box around all\n"
  5140. "objects with this minimum\n"
  5141. "distance."
  5142. msgstr ""
  5143. #: flatcamGUI/FlatCAMGUI.py:4432 flatcamGUI/FlatCAMGUI.py:4454
  5144. #: flatcamGUI/ObjectUI.py:502 flatcamGUI/ObjectUI.py:531
  5145. msgid "Rounded Geo"
  5146. msgstr ""
  5147. #: flatcamGUI/FlatCAMGUI.py:4434 flatcamGUI/ObjectUI.py:504
  5148. msgid "Resulting geometry will have rounded corners."
  5149. msgstr ""
  5150. #: flatcamGUI/FlatCAMGUI.py:4439 flatcamGUI/ObjectUI.py:513
  5151. #: flatcamTools/ToolPanelize.py:85
  5152. msgid "Bounding Box"
  5153. msgstr ""
  5154. #: flatcamGUI/FlatCAMGUI.py:4447 flatcamGUI/ObjectUI.py:523
  5155. msgid ""
  5156. "Distance of the edges of the box\n"
  5157. "to the nearest polygon."
  5158. msgstr ""
  5159. #: flatcamGUI/FlatCAMGUI.py:4456 flatcamGUI/ObjectUI.py:533
  5160. msgid ""
  5161. "If the bounding box is \n"
  5162. "to have rounded corners\n"
  5163. "their radius is equal to\n"
  5164. "the margin."
  5165. msgstr ""
  5166. #: flatcamGUI/FlatCAMGUI.py:4470
  5167. msgid "Gerber Adv. Options"
  5168. msgstr ""
  5169. #: flatcamGUI/FlatCAMGUI.py:4473
  5170. msgid "Advanced Param."
  5171. msgstr ""
  5172. #: flatcamGUI/FlatCAMGUI.py:4475
  5173. msgid ""
  5174. "A list of Gerber advanced parameters.\n"
  5175. "Those parameters are available only for\n"
  5176. "Advanced App. Level."
  5177. msgstr ""
  5178. #: flatcamGUI/FlatCAMGUI.py:4485 flatcamGUI/ObjectUI.py:318
  5179. msgid "\"Follow\""
  5180. msgstr ""
  5181. #: flatcamGUI/FlatCAMGUI.py:4487 flatcamGUI/ObjectUI.py:319
  5182. msgid ""
  5183. "Generate a 'Follow' geometry.\n"
  5184. "This means that it will cut through\n"
  5185. "the middle of the trace."
  5186. msgstr ""
  5187. #: flatcamGUI/FlatCAMGUI.py:4494
  5188. msgid "Table Show/Hide"
  5189. msgstr ""
  5190. #: flatcamGUI/FlatCAMGUI.py:4496
  5191. msgid ""
  5192. "Toggle the display of the Gerber Apertures Table.\n"
  5193. "Also, on hide, it will delete all mark shapes\n"
  5194. "that are drawn on canvas."
  5195. msgstr ""
  5196. #: flatcamGUI/FlatCAMGUI.py:4535
  5197. msgid "Gerber Export"
  5198. msgstr ""
  5199. #: flatcamGUI/FlatCAMGUI.py:4538 flatcamGUI/FlatCAMGUI.py:5363
  5200. msgid "Export Options"
  5201. msgstr ""
  5202. #: flatcamGUI/FlatCAMGUI.py:4540
  5203. msgid ""
  5204. "The parameters set here are used in the file exported\n"
  5205. "when using the File -> Export -> Export Gerber menu entry."
  5206. msgstr ""
  5207. #: flatcamGUI/FlatCAMGUI.py:4551 flatcamGUI/FlatCAMGUI.py:4557
  5208. msgid "The units used in the Gerber file."
  5209. msgstr ""
  5210. #: flatcamGUI/FlatCAMGUI.py:4554 flatcamGUI/FlatCAMGUI.py:4884
  5211. #: flatcamGUI/FlatCAMGUI.py:4986 flatcamGUI/FlatCAMGUI.py:5379
  5212. #: flatcamTools/ToolCalculators.py:60 flatcamTools/ToolPcbWizard.py:125
  5213. msgid "INCH"
  5214. msgstr ""
  5215. #: flatcamGUI/FlatCAMGUI.py:4563 flatcamGUI/FlatCAMGUI.py:5388
  5216. msgid "Int/Decimals"
  5217. msgstr ""
  5218. #: flatcamGUI/FlatCAMGUI.py:4565
  5219. msgid ""
  5220. "The number of digits in the whole part of the number\n"
  5221. "and in the fractional part of the number."
  5222. msgstr ""
  5223. #: flatcamGUI/FlatCAMGUI.py:4576
  5224. msgid ""
  5225. "This numbers signify the number of digits in\n"
  5226. "the whole part of Gerber coordinates."
  5227. msgstr ""
  5228. #: flatcamGUI/FlatCAMGUI.py:4590
  5229. msgid ""
  5230. "This numbers signify the number of digits in\n"
  5231. "the decimal part of Gerber coordinates."
  5232. msgstr ""
  5233. #: flatcamGUI/FlatCAMGUI.py:4599 flatcamGUI/FlatCAMGUI.py:5449
  5234. msgid "Zeros"
  5235. msgstr ""
  5236. #: flatcamGUI/FlatCAMGUI.py:4602 flatcamGUI/FlatCAMGUI.py:4612
  5237. msgid ""
  5238. "This sets the type of Gerber zeros.\n"
  5239. "If LZ then Leading Zeros are removed and\n"
  5240. "Trailing Zeros are kept.\n"
  5241. "If TZ is checked then Trailing Zeros are removed\n"
  5242. "and Leading Zeros are kept."
  5243. msgstr ""
  5244. #: flatcamGUI/FlatCAMGUI.py:4609 flatcamGUI/FlatCAMGUI.py:4962
  5245. #: flatcamGUI/FlatCAMGUI.py:5459 flatcamTools/ToolPcbWizard.py:111
  5246. msgid "LZ"
  5247. msgstr ""
  5248. #: flatcamGUI/FlatCAMGUI.py:4610 flatcamGUI/FlatCAMGUI.py:4963
  5249. #: flatcamGUI/FlatCAMGUI.py:5460 flatcamTools/ToolPcbWizard.py:112
  5250. msgid "TZ"
  5251. msgstr ""
  5252. #: flatcamGUI/FlatCAMGUI.py:4632 flatcamGUI/FlatCAMGUI.py:5513
  5253. #: flatcamGUI/FlatCAMGUI.py:6115 flatcamGUI/FlatCAMGUI.py:6394
  5254. #: flatcamGUI/FlatCAMGUI.py:6433 flatcamGUI/FlatCAMGUI.py:6688
  5255. #: flatcamGUI/FlatCAMGUI.py:6787 flatcamGUI/FlatCAMGUI.py:6994
  5256. #: flatcamGUI/FlatCAMGUI.py:7055 flatcamGUI/FlatCAMGUI.py:7254
  5257. #: flatcamGUI/FlatCAMGUI.py:7386 flatcamGUI/FlatCAMGUI.py:7559
  5258. #: flatcamGUI/ObjectUI.py:1610 flatcamTools/ToolNonCopperClear.py:265
  5259. msgid "Parameters"
  5260. msgstr ""
  5261. #: flatcamGUI/FlatCAMGUI.py:4634
  5262. msgid "A list of Gerber Editor parameters."
  5263. msgstr ""
  5264. #: flatcamGUI/FlatCAMGUI.py:4642 flatcamGUI/FlatCAMGUI.py:5523
  5265. #: flatcamGUI/FlatCAMGUI.py:6125
  5266. msgid "Selection limit"
  5267. msgstr ""
  5268. #: flatcamGUI/FlatCAMGUI.py:4644
  5269. msgid ""
  5270. "Set the number of selected Gerber geometry\n"
  5271. "items above which the utility geometry\n"
  5272. "becomes just a selection rectangle.\n"
  5273. "Increases the performance when moving a\n"
  5274. "large number of geometric elements."
  5275. msgstr ""
  5276. #: flatcamGUI/FlatCAMGUI.py:4656
  5277. msgid "New Aperture code"
  5278. msgstr ""
  5279. #: flatcamGUI/FlatCAMGUI.py:4668
  5280. msgid "New Aperture size"
  5281. msgstr ""
  5282. #: flatcamGUI/FlatCAMGUI.py:4670
  5283. msgid "Size for the new aperture"
  5284. msgstr ""
  5285. #: flatcamGUI/FlatCAMGUI.py:4680
  5286. msgid "New Aperture type"
  5287. msgstr ""
  5288. #: flatcamGUI/FlatCAMGUI.py:4682
  5289. msgid ""
  5290. "Type for the new aperture.\n"
  5291. "Can be 'C', 'R' or 'O'."
  5292. msgstr ""
  5293. #: flatcamGUI/FlatCAMGUI.py:4703
  5294. msgid "Aperture Dimensions"
  5295. msgstr ""
  5296. #: flatcamGUI/FlatCAMGUI.py:4705 flatcamGUI/FlatCAMGUI.py:5798
  5297. #: flatcamGUI/FlatCAMGUI.py:6445
  5298. msgid "Diameters of the cutting tools, separated by ','"
  5299. msgstr ""
  5300. #: flatcamGUI/FlatCAMGUI.py:4711
  5301. #, python-format
  5302. msgid "<b>%s:</b>"
  5303. msgstr ""
  5304. #: flatcamGUI/FlatCAMGUI.py:4715 flatcamGUI/FlatCAMGUI.py:5564
  5305. #: flatcamGUI/FlatCAMGUI.py:5695
  5306. msgid "Linear Dir."
  5307. msgstr ""
  5308. #: flatcamGUI/FlatCAMGUI.py:4751
  5309. msgid "Circular Pad Array"
  5310. msgstr ""
  5311. #: flatcamGUI/FlatCAMGUI.py:4755 flatcamGUI/FlatCAMGUI.py:5604
  5312. #: flatcamGUI/FlatCAMGUI.py:5735
  5313. msgid "Circular Dir."
  5314. msgstr ""
  5315. #: flatcamGUI/FlatCAMGUI.py:4757 flatcamGUI/FlatCAMGUI.py:5606
  5316. #: flatcamGUI/FlatCAMGUI.py:5737
  5317. msgid ""
  5318. "Direction for circular array.\n"
  5319. "Can be CW = clockwise or CCW = counter clockwise."
  5320. msgstr ""
  5321. #: flatcamGUI/FlatCAMGUI.py:4768 flatcamGUI/FlatCAMGUI.py:5617
  5322. #: flatcamGUI/FlatCAMGUI.py:5748
  5323. msgid "Circ. Angle"
  5324. msgstr ""
  5325. #: flatcamGUI/FlatCAMGUI.py:4783
  5326. msgid "Distance at which to buffer the Gerber element."
  5327. msgstr ""
  5328. #: flatcamGUI/FlatCAMGUI.py:4790
  5329. msgid "Scale Tool"
  5330. msgstr ""
  5331. #: flatcamGUI/FlatCAMGUI.py:4796
  5332. msgid "Factor to scale the Gerber element."
  5333. msgstr ""
  5334. #: flatcamGUI/FlatCAMGUI.py:4803
  5335. msgid "Mark Area Tool"
  5336. msgstr ""
  5337. #: flatcamGUI/FlatCAMGUI.py:4807 flatcamGUI/FlatCAMGUI.py:4817
  5338. msgid "Threshold low"
  5339. msgstr ""
  5340. #: flatcamGUI/FlatCAMGUI.py:4809
  5341. msgid "Threshold value under which the apertures are not marked."
  5342. msgstr ""
  5343. #: flatcamGUI/FlatCAMGUI.py:4819
  5344. msgid "Threshold value over which the apertures are not marked."
  5345. msgstr ""
  5346. #: flatcamGUI/FlatCAMGUI.py:4835
  5347. msgid "Excellon General"
  5348. msgstr ""
  5349. #: flatcamGUI/FlatCAMGUI.py:4857
  5350. msgid "Excellon Format"
  5351. msgstr ""
  5352. #: flatcamGUI/FlatCAMGUI.py:4859
  5353. msgid ""
  5354. "The NC drill files, usually named Excellon files\n"
  5355. "are files that can be found in different formats.\n"
  5356. "Here we set the format used when the provided\n"
  5357. "coordinates are not using period.\n"
  5358. "\n"
  5359. "Possible presets:\n"
  5360. "\n"
  5361. "PROTEUS 3:3 MM LZ\n"
  5362. "DipTrace 5:2 MM TZ\n"
  5363. "DipTrace 4:3 MM LZ\n"
  5364. "\n"
  5365. "EAGLE 3:3 MM TZ\n"
  5366. "EAGLE 4:3 MM TZ\n"
  5367. "EAGLE 2:5 INCH TZ\n"
  5368. "EAGLE 3:5 INCH TZ\n"
  5369. "\n"
  5370. "ALTIUM 2:4 INCH LZ\n"
  5371. "Sprint Layout 2:4 INCH LZ\n"
  5372. "KiCAD 3:5 INCH TZ"
  5373. msgstr ""
  5374. #: flatcamGUI/FlatCAMGUI.py:4887
  5375. msgid "Default values for INCH are 2:4"
  5376. msgstr ""
  5377. #: flatcamGUI/FlatCAMGUI.py:4895 flatcamGUI/FlatCAMGUI.py:4928
  5378. #: flatcamGUI/FlatCAMGUI.py:5403
  5379. msgid ""
  5380. "This numbers signify the number of digits in\n"
  5381. "the whole part of Excellon coordinates."
  5382. msgstr ""
  5383. #: flatcamGUI/FlatCAMGUI.py:4909 flatcamGUI/FlatCAMGUI.py:4942
  5384. #: flatcamGUI/FlatCAMGUI.py:5417
  5385. msgid ""
  5386. "This numbers signify the number of digits in\n"
  5387. "the decimal part of Excellon coordinates."
  5388. msgstr ""
  5389. #: flatcamGUI/FlatCAMGUI.py:4917
  5390. msgid "METRIC"
  5391. msgstr ""
  5392. #: flatcamGUI/FlatCAMGUI.py:4920
  5393. msgid "Default values for METRIC are 3:3"
  5394. msgstr ""
  5395. #: flatcamGUI/FlatCAMGUI.py:4951
  5396. msgid "Default <b>Zeros</b>"
  5397. msgstr ""
  5398. #: flatcamGUI/FlatCAMGUI.py:4954 flatcamGUI/FlatCAMGUI.py:5452
  5399. msgid ""
  5400. "This sets the type of Excellon zeros.\n"
  5401. "If LZ then Leading Zeros are kept and\n"
  5402. "Trailing Zeros are removed.\n"
  5403. "If TZ is checked then Trailing Zeros are kept\n"
  5404. "and Leading Zeros are removed."
  5405. msgstr ""
  5406. #: flatcamGUI/FlatCAMGUI.py:4965
  5407. msgid ""
  5408. "This sets the default type of Excellon zeros.\n"
  5409. "If it is not detected in the parsed file the value here\n"
  5410. "will be used.If LZ then Leading Zeros are kept and\n"
  5411. "Trailing Zeros are removed.\n"
  5412. "If TZ is checked then Trailing Zeros are kept\n"
  5413. "and Leading Zeros are removed."
  5414. msgstr ""
  5415. #: flatcamGUI/FlatCAMGUI.py:4975
  5416. msgid "Default <b>Units</b>"
  5417. msgstr ""
  5418. #: flatcamGUI/FlatCAMGUI.py:4978
  5419. msgid ""
  5420. "This sets the default units of Excellon files.\n"
  5421. "If it is not detected in the parsed file the value here\n"
  5422. "will be used.Some Excellon files don't have an header\n"
  5423. "therefore this parameter will be used."
  5424. msgstr ""
  5425. #: flatcamGUI/FlatCAMGUI.py:4989
  5426. msgid ""
  5427. "This sets the units of Excellon files.\n"
  5428. "Some Excellon files don't have an header\n"
  5429. "therefore this parameter will be used."
  5430. msgstr ""
  5431. #: flatcamGUI/FlatCAMGUI.py:4997
  5432. msgid "Excellon Optimization"
  5433. msgstr ""
  5434. #: flatcamGUI/FlatCAMGUI.py:5000
  5435. msgid "Algorithm: "
  5436. msgstr ""
  5437. #: flatcamGUI/FlatCAMGUI.py:5002 flatcamGUI/FlatCAMGUI.py:5016
  5438. msgid ""
  5439. "This sets the optimization type for the Excellon drill path.\n"
  5440. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  5441. "Guided Local Path is used. Default search time is 3sec.\n"
  5442. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  5443. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  5444. "\n"
  5445. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  5446. "Travelling Salesman algorithm for path optimization."
  5447. msgstr ""
  5448. #: flatcamGUI/FlatCAMGUI.py:5013
  5449. msgid "MH"
  5450. msgstr ""
  5451. #: flatcamGUI/FlatCAMGUI.py:5027
  5452. msgid "Optimization Time"
  5453. msgstr ""
  5454. #: flatcamGUI/FlatCAMGUI.py:5030
  5455. msgid ""
  5456. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  5457. "maximum threshold for how much time is spent doing the\n"
  5458. "path optimization. This max duration is set here.\n"
  5459. "In seconds."
  5460. msgstr ""
  5461. #: flatcamGUI/FlatCAMGUI.py:5073
  5462. msgid "Excellon Options"
  5463. msgstr ""
  5464. #: flatcamGUI/FlatCAMGUI.py:5076 flatcamGUI/FlatCAMGUI.py:5817
  5465. #: flatcamGUI/ObjectUI.py:643
  5466. msgid "Create CNC Job"
  5467. msgstr ""
  5468. #: flatcamGUI/FlatCAMGUI.py:5078
  5469. msgid ""
  5470. "Parameters used to create a CNC Job object\n"
  5471. "for this drill object."
  5472. msgstr ""
  5473. #: flatcamGUI/FlatCAMGUI.py:5086 flatcamGUI/FlatCAMGUI.py:5829
  5474. #: flatcamGUI/FlatCAMGUI.py:6530 flatcamGUI/FlatCAMGUI.py:7190
  5475. #: flatcamGUI/ObjectUI.py:654 flatcamGUI/ObjectUI.py:1132
  5476. #: flatcamTools/ToolCalculators.py:107 flatcamTools/ToolNonCopperClear.py:269
  5477. msgid "Cut Z"
  5478. msgstr ""
  5479. #: flatcamGUI/FlatCAMGUI.py:5088 flatcamGUI/ObjectUI.py:656
  5480. msgid ""
  5481. "Drill depth (negative)\n"
  5482. "below the copper surface."
  5483. msgstr ""
  5484. #: flatcamGUI/FlatCAMGUI.py:5095 flatcamGUI/FlatCAMGUI.py:5867
  5485. #: flatcamGUI/ObjectUI.py:664 flatcamGUI/ObjectUI.py:1166
  5486. msgid "Travel Z"
  5487. msgstr ""
  5488. #: flatcamGUI/FlatCAMGUI.py:5097 flatcamGUI/ObjectUI.py:666
  5489. msgid ""
  5490. "Tool height when travelling\n"
  5491. "across the XY plane."
  5492. msgstr ""
  5493. #: flatcamGUI/FlatCAMGUI.py:5105 flatcamGUI/FlatCAMGUI.py:5877
  5494. #: flatcamGUI/ObjectUI.py:674 flatcamGUI/ObjectUI.py:1184
  5495. msgid "Tool change"
  5496. msgstr ""
  5497. #: flatcamGUI/FlatCAMGUI.py:5107 flatcamGUI/ObjectUI.py:676
  5498. msgid ""
  5499. "Include tool-change sequence\n"
  5500. "in G-Code (Pause for tool change)."
  5501. msgstr ""
  5502. #: flatcamGUI/FlatCAMGUI.py:5114 flatcamGUI/FlatCAMGUI.py:5889
  5503. msgid "Toolchange Z"
  5504. msgstr ""
  5505. #: flatcamGUI/FlatCAMGUI.py:5116 flatcamGUI/FlatCAMGUI.py:5892
  5506. #: flatcamGUI/ObjectUI.py:684 flatcamGUI/ObjectUI.py:1180
  5507. msgid ""
  5508. "Z-axis position (height) for\n"
  5509. "tool change."
  5510. msgstr ""
  5511. #: flatcamGUI/FlatCAMGUI.py:5123 flatcamGUI/ObjectUI.py:713
  5512. msgid "Feedrate (Plunge)"
  5513. msgstr ""
  5514. #: flatcamGUI/FlatCAMGUI.py:5125 flatcamGUI/ObjectUI.py:715
  5515. msgid ""
  5516. "Tool speed while drilling\n"
  5517. "(in units per minute).\n"
  5518. "This is for linear move G01."
  5519. msgstr ""
  5520. #: flatcamGUI/FlatCAMGUI.py:5134
  5521. msgid "Spindle Speed"
  5522. msgstr ""
  5523. #: flatcamGUI/FlatCAMGUI.py:5136 flatcamGUI/ObjectUI.py:742
  5524. msgid ""
  5525. "Speed of the spindle\n"
  5526. "in RPM (optional)"
  5527. msgstr ""
  5528. #: flatcamGUI/FlatCAMGUI.py:5144 flatcamGUI/FlatCAMGUI.py:5935
  5529. msgid "Spindle dir."
  5530. msgstr ""
  5531. #: flatcamGUI/FlatCAMGUI.py:5146 flatcamGUI/FlatCAMGUI.py:5937
  5532. msgid ""
  5533. "This sets the direction that the spindle is rotating.\n"
  5534. "It can be either:\n"
  5535. "- CW = clockwise or\n"
  5536. "- CCW = counter clockwise"
  5537. msgstr ""
  5538. #: flatcamGUI/FlatCAMGUI.py:5158 flatcamGUI/FlatCAMGUI.py:5949
  5539. #: flatcamGUI/ObjectUI.py:750 flatcamGUI/ObjectUI.py:1280
  5540. msgid "Dwell"
  5541. msgstr ""
  5542. #: flatcamGUI/FlatCAMGUI.py:5160 flatcamGUI/FlatCAMGUI.py:5951
  5543. #: flatcamGUI/ObjectUI.py:752 flatcamGUI/ObjectUI.py:1283
  5544. msgid ""
  5545. "Pause to allow the spindle to reach its\n"
  5546. "speed before cutting."
  5547. msgstr ""
  5548. #: flatcamGUI/FlatCAMGUI.py:5163 flatcamGUI/FlatCAMGUI.py:5954
  5549. msgid "Duration"
  5550. msgstr ""
  5551. #: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/FlatCAMGUI.py:5956
  5552. #: flatcamGUI/ObjectUI.py:757 flatcamGUI/ObjectUI.py:1289
  5553. msgid "Number of time units for spindle to dwell."
  5554. msgstr ""
  5555. #: flatcamGUI/FlatCAMGUI.py:5177 flatcamGUI/FlatCAMGUI.py:5966
  5556. #: flatcamGUI/ObjectUI.py:765
  5557. msgid "Postprocessor"
  5558. msgstr ""
  5559. #: flatcamGUI/FlatCAMGUI.py:5179 flatcamGUI/ObjectUI.py:767
  5560. msgid ""
  5561. "The postprocessor JSON file that dictates\n"
  5562. "Gcode output."
  5563. msgstr ""
  5564. #: flatcamGUI/FlatCAMGUI.py:5188 flatcamGUI/ObjectUI.py:807
  5565. msgid "Gcode"
  5566. msgstr ""
  5567. #: flatcamGUI/FlatCAMGUI.py:5190
  5568. msgid ""
  5569. "Choose what to use for GCode generation:\n"
  5570. "'Drills', 'Slots' or 'Both'.\n"
  5571. "When choosing 'Slots' or 'Both', slots will be\n"
  5572. "converted to drills."
  5573. msgstr ""
  5574. #: flatcamGUI/FlatCAMGUI.py:5206 flatcamGUI/ObjectUI.py:831
  5575. msgid "Mill Holes"
  5576. msgstr ""
  5577. #: flatcamGUI/FlatCAMGUI.py:5208 flatcamGUI/ObjectUI.py:833
  5578. msgid "Create Geometry for milling holes."
  5579. msgstr ""
  5580. #: flatcamGUI/FlatCAMGUI.py:5212 flatcamGUI/ObjectUI.py:846
  5581. msgid "Drill Tool dia"
  5582. msgstr ""
  5583. #: flatcamGUI/FlatCAMGUI.py:5219 flatcamGUI/ObjectUI.py:862
  5584. msgid "Slot Tool dia"
  5585. msgstr ""
  5586. #: flatcamGUI/FlatCAMGUI.py:5221 flatcamGUI/ObjectUI.py:864
  5587. msgid ""
  5588. "Diameter of the cutting tool\n"
  5589. "when milling slots."
  5590. msgstr ""
  5591. #: flatcamGUI/FlatCAMGUI.py:5233
  5592. msgid "Defaults"
  5593. msgstr ""
  5594. #: flatcamGUI/FlatCAMGUI.py:5246
  5595. msgid "Excellon Adv. Options"
  5596. msgstr ""
  5597. #: flatcamGUI/FlatCAMGUI.py:5252 flatcamGUI/FlatCAMGUI.py:5989
  5598. msgid "Advanced Options"
  5599. msgstr ""
  5600. #: flatcamGUI/FlatCAMGUI.py:5254
  5601. msgid ""
  5602. "Parameters used to create a CNC Job object\n"
  5603. "for this drill object that are shown when App Level is Advanced."
  5604. msgstr ""
  5605. #: flatcamGUI/FlatCAMGUI.py:5262 flatcamGUI/ObjectUI.py:614
  5606. msgid "Offset Z"
  5607. msgstr ""
  5608. #: flatcamGUI/FlatCAMGUI.py:5264 flatcamGUI/ObjectUI.py:632
  5609. msgid ""
  5610. "Some drill bits (the larger ones) need to drill deeper\n"
  5611. "to create the desired exit hole diameter due of the tip shape.\n"
  5612. "The value here can compensate the Cut Z parameter."
  5613. msgstr ""
  5614. #: flatcamGUI/FlatCAMGUI.py:5271
  5615. msgid "Toolchange X,Y"
  5616. msgstr ""
  5617. #: flatcamGUI/FlatCAMGUI.py:5273 flatcamGUI/FlatCAMGUI.py:6002
  5618. msgid "Toolchange X,Y position."
  5619. msgstr ""
  5620. #: flatcamGUI/FlatCAMGUI.py:5279 flatcamGUI/FlatCAMGUI.py:6009
  5621. #: flatcamGUI/ObjectUI.py:693
  5622. msgid "Start move Z"
  5623. msgstr ""
  5624. #: flatcamGUI/FlatCAMGUI.py:5281 flatcamGUI/ObjectUI.py:695
  5625. msgid ""
  5626. "Height of the tool just after start.\n"
  5627. "Delete the value if you don't need this feature."
  5628. msgstr ""
  5629. #: flatcamGUI/FlatCAMGUI.py:5288 flatcamGUI/FlatCAMGUI.py:6019
  5630. #: flatcamGUI/ObjectUI.py:703 flatcamGUI/ObjectUI.py:1210
  5631. msgid "End move Z"
  5632. msgstr ""
  5633. #: flatcamGUI/FlatCAMGUI.py:5290 flatcamGUI/FlatCAMGUI.py:6021
  5634. #: flatcamGUI/ObjectUI.py:705 flatcamGUI/ObjectUI.py:1212
  5635. msgid ""
  5636. "Height of the tool after\n"
  5637. "the last move at the end of the job."
  5638. msgstr ""
  5639. #: flatcamGUI/FlatCAMGUI.py:5297 flatcamGUI/ObjectUI.py:724
  5640. msgid "Feedrate Rapids"
  5641. msgstr ""
  5642. #: flatcamGUI/FlatCAMGUI.py:5299 flatcamGUI/ObjectUI.py:726
  5643. msgid ""
  5644. "Tool speed while drilling\n"
  5645. "(in units per minute).\n"
  5646. "This is for the rapid move G00.\n"
  5647. "It is useful only for Marlin,\n"
  5648. "ignore for any other cases."
  5649. msgstr ""
  5650. #: flatcamGUI/FlatCAMGUI.py:5310 flatcamGUI/FlatCAMGUI.py:6052
  5651. #: flatcamGUI/ObjectUI.py:776 flatcamGUI/ObjectUI.py:1308
  5652. msgid "Probe Z depth"
  5653. msgstr ""
  5654. #: flatcamGUI/FlatCAMGUI.py:5312 flatcamGUI/FlatCAMGUI.py:6054
  5655. #: flatcamGUI/ObjectUI.py:778 flatcamGUI/ObjectUI.py:1310
  5656. msgid ""
  5657. "The maximum depth that the probe is allowed\n"
  5658. "to probe. Negative value, in current units."
  5659. msgstr ""
  5660. #: flatcamGUI/FlatCAMGUI.py:5320 flatcamGUI/FlatCAMGUI.py:6062
  5661. #: flatcamGUI/ObjectUI.py:788 flatcamGUI/ObjectUI.py:1320
  5662. msgid "Feedrate Probe"
  5663. msgstr ""
  5664. #: flatcamGUI/FlatCAMGUI.py:5322 flatcamGUI/FlatCAMGUI.py:6064
  5665. #: flatcamGUI/ObjectUI.py:790 flatcamGUI/ObjectUI.py:1322
  5666. msgid "The feedrate used while the probe is probing."
  5667. msgstr ""
  5668. #: flatcamGUI/FlatCAMGUI.py:5328 flatcamGUI/FlatCAMGUI.py:6071
  5669. msgid "Fast Plunge"
  5670. msgstr ""
  5671. #: flatcamGUI/FlatCAMGUI.py:5330 flatcamGUI/FlatCAMGUI.py:6073
  5672. msgid ""
  5673. "By checking this, the vertical move from\n"
  5674. "Z_Toolchange to Z_move is done with G0,\n"
  5675. "meaning the fastest speed available.\n"
  5676. "WARNING: the move is done at Toolchange X,Y coords."
  5677. msgstr ""
  5678. #: flatcamGUI/FlatCAMGUI.py:5339
  5679. msgid "Fast Retract"
  5680. msgstr ""
  5681. #: flatcamGUI/FlatCAMGUI.py:5341
  5682. msgid ""
  5683. "Exit hole strategy.\n"
  5684. " - When uncheked, while exiting the drilled hole the drill bit\n"
  5685. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  5686. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  5687. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  5688. "(travel height) is done as fast as possible (G0) in one move."
  5689. msgstr ""
  5690. #: flatcamGUI/FlatCAMGUI.py:5360
  5691. msgid "Excellon Export"
  5692. msgstr ""
  5693. #: flatcamGUI/FlatCAMGUI.py:5365
  5694. msgid ""
  5695. "The parameters set here are used in the file exported\n"
  5696. "when using the File -> Export -> Export Excellon menu entry."
  5697. msgstr ""
  5698. #: flatcamGUI/FlatCAMGUI.py:5376 flatcamGUI/FlatCAMGUI.py:5382
  5699. msgid "The units used in the Excellon file."
  5700. msgstr ""
  5701. #: flatcamGUI/FlatCAMGUI.py:5390
  5702. msgid ""
  5703. "The NC drill files, usually named Excellon files\n"
  5704. "are files that can be found in different formats.\n"
  5705. "Here we set the format used when the provided\n"
  5706. "coordinates are not using period."
  5707. msgstr ""
  5708. #: flatcamGUI/FlatCAMGUI.py:5426
  5709. msgid "Format"
  5710. msgstr ""
  5711. #: flatcamGUI/FlatCAMGUI.py:5428 flatcamGUI/FlatCAMGUI.py:5438
  5712. msgid ""
  5713. "Select the kind of coordinates format used.\n"
  5714. "Coordinates can be saved with decimal point or without.\n"
  5715. "When there is no decimal point, it is required to specify\n"
  5716. "the number of digits for integer part and the number of decimals.\n"
  5717. "Also it will have to be specified if LZ = leading zeros are kept\n"
  5718. "or TZ = trailing zeros are kept."
  5719. msgstr ""
  5720. #: flatcamGUI/FlatCAMGUI.py:5435
  5721. msgid "Decimal"
  5722. msgstr ""
  5723. #: flatcamGUI/FlatCAMGUI.py:5436
  5724. msgid "No-Decimal"
  5725. msgstr ""
  5726. #: flatcamGUI/FlatCAMGUI.py:5462
  5727. msgid ""
  5728. "This sets the default type of Excellon zeros.\n"
  5729. "If LZ then Leading Zeros are kept and\n"
  5730. "Trailing Zeros are removed.\n"
  5731. "If TZ is checked then Trailing Zeros are kept\n"
  5732. "and Leading Zeros are removed."
  5733. msgstr ""
  5734. #: flatcamGUI/FlatCAMGUI.py:5472
  5735. msgid "Slot type"
  5736. msgstr ""
  5737. #: flatcamGUI/FlatCAMGUI.py:5475 flatcamGUI/FlatCAMGUI.py:5485
  5738. msgid ""
  5739. "This sets how the slots will be exported.\n"
  5740. "If ROUTED then the slots will be routed\n"
  5741. "using M15/M16 commands.\n"
  5742. "If DRILLED(G85) the slots will be exported\n"
  5743. "using the Drilled slot command (G85)."
  5744. msgstr ""
  5745. #: flatcamGUI/FlatCAMGUI.py:5482
  5746. msgid "Routed"
  5747. msgstr ""
  5748. #: flatcamGUI/FlatCAMGUI.py:5483
  5749. msgid "Drilled(G85)"
  5750. msgstr ""
  5751. #: flatcamGUI/FlatCAMGUI.py:5515
  5752. msgid "A list of Excellon Editor parameters."
  5753. msgstr ""
  5754. #: flatcamGUI/FlatCAMGUI.py:5525
  5755. msgid ""
  5756. "Set the number of selected Excellon geometry\n"
  5757. "items above which the utility geometry\n"
  5758. "becomes just a selection rectangle.\n"
  5759. "Increases the performance when moving a\n"
  5760. "large number of geometric elements."
  5761. msgstr ""
  5762. #: flatcamGUI/FlatCAMGUI.py:5537
  5763. msgid "New Tool Dia"
  5764. msgstr ""
  5765. #: flatcamGUI/FlatCAMGUI.py:5560
  5766. msgid "Linear Drill Array"
  5767. msgstr ""
  5768. #: flatcamGUI/FlatCAMGUI.py:5580 flatcamGUI/FlatCAMGUI.py:6000
  5769. #, python-format
  5770. msgid "%s:"
  5771. msgstr ""
  5772. #: flatcamGUI/FlatCAMGUI.py:5600
  5773. msgid "Circular Drill Array"
  5774. msgstr ""
  5775. #: flatcamGUI/FlatCAMGUI.py:5628 flatcamGUI/ObjectUI.py:613
  5776. msgid "Slots"
  5777. msgstr ""
  5778. #: flatcamGUI/FlatCAMGUI.py:5679
  5779. msgid "Linear Slot Array"
  5780. msgstr ""
  5781. #: flatcamGUI/FlatCAMGUI.py:5731
  5782. msgid "Circular Slot Array"
  5783. msgstr ""
  5784. #: flatcamGUI/FlatCAMGUI.py:5765
  5785. msgid "Geometry General"
  5786. msgstr ""
  5787. #: flatcamGUI/FlatCAMGUI.py:5784
  5788. msgid ""
  5789. "The number of circle steps for <b>Geometry</b> \n"
  5790. "circle and arc shapes linear approximation."
  5791. msgstr ""
  5792. #: flatcamGUI/FlatCAMGUI.py:5812
  5793. msgid "Geometry Options"
  5794. msgstr ""
  5795. #: flatcamGUI/FlatCAMGUI.py:5819
  5796. msgid ""
  5797. "Create a CNC Job object\n"
  5798. "tracing the contours of this\n"
  5799. "Geometry object."
  5800. msgstr ""
  5801. #: flatcamGUI/FlatCAMGUI.py:5831 flatcamGUI/ObjectUI.py:1135
  5802. msgid ""
  5803. "Cutting depth (negative)\n"
  5804. "below the copper surface."
  5805. msgstr ""
  5806. #: flatcamGUI/FlatCAMGUI.py:5839 flatcamGUI/ObjectUI.py:1144
  5807. msgid "Multi-Depth"
  5808. msgstr ""
  5809. #: flatcamGUI/FlatCAMGUI.py:5842 flatcamGUI/ObjectUI.py:1147
  5810. msgid ""
  5811. "Use multiple passes to limit\n"
  5812. "the cut depth in each pass. Will\n"
  5813. "cut multiple times until Cut Z is\n"
  5814. "reached."
  5815. msgstr ""
  5816. #: flatcamGUI/FlatCAMGUI.py:5851
  5817. msgid "Depth/Pass"
  5818. msgstr ""
  5819. #: flatcamGUI/FlatCAMGUI.py:5853
  5820. msgid ""
  5821. "The depth to cut on each pass,\n"
  5822. "when multidepth is enabled.\n"
  5823. "It has positive value although\n"
  5824. "it is a fraction from the depth\n"
  5825. "which has negative value."
  5826. msgstr ""
  5827. #: flatcamGUI/FlatCAMGUI.py:5869 flatcamGUI/ObjectUI.py:1168
  5828. msgid ""
  5829. "Height of the tool when\n"
  5830. "moving without cutting."
  5831. msgstr ""
  5832. #: flatcamGUI/FlatCAMGUI.py:5880 flatcamGUI/ObjectUI.py:1187
  5833. msgid ""
  5834. "Include tool-change sequence\n"
  5835. "in the Machine Code (Pause for tool change)."
  5836. msgstr ""
  5837. #: flatcamGUI/FlatCAMGUI.py:5901 flatcamGUI/ObjectUI.py:1220
  5838. msgid "Feed Rate X-Y"
  5839. msgstr ""
  5840. #: flatcamGUI/FlatCAMGUI.py:5903 flatcamGUI/ObjectUI.py:1222
  5841. msgid ""
  5842. "Cutting speed in the XY\n"
  5843. "plane in units per minute"
  5844. msgstr ""
  5845. #: flatcamGUI/FlatCAMGUI.py:5911 flatcamGUI/ObjectUI.py:1230
  5846. msgid "Feed Rate Z"
  5847. msgstr ""
  5848. #: flatcamGUI/FlatCAMGUI.py:5913 flatcamGUI/ObjectUI.py:1232
  5849. msgid ""
  5850. "Cutting speed in the XY\n"
  5851. "plane in units per minute.\n"
  5852. "It is called also Plunge."
  5853. msgstr ""
  5854. #: flatcamGUI/FlatCAMGUI.py:5922 flatcamGUI/ObjectUI.py:740
  5855. #: flatcamGUI/ObjectUI.py:1267
  5856. msgid "Spindle speed"
  5857. msgstr ""
  5858. #: flatcamGUI/FlatCAMGUI.py:5925 flatcamGUI/ObjectUI.py:1270
  5859. msgid ""
  5860. "Speed of the spindle in RPM (optional).\n"
  5861. "If LASER postprocessor is used,\n"
  5862. "this value is the power of laser."
  5863. msgstr ""
  5864. #: flatcamGUI/FlatCAMGUI.py:5968 flatcamGUI/ObjectUI.py:1299
  5865. msgid ""
  5866. "The Postprocessor file that dictates\n"
  5867. "the Machine Code (like GCode, RML, HPGL) output."
  5868. msgstr ""
  5869. #: flatcamGUI/FlatCAMGUI.py:5984
  5870. msgid "Geometry Adv. Options"
  5871. msgstr ""
  5872. #: flatcamGUI/FlatCAMGUI.py:5991
  5873. msgid ""
  5874. "Parameters to create a CNC Job object\n"
  5875. "tracing the contours of a Geometry object."
  5876. msgstr ""
  5877. #: flatcamGUI/FlatCAMGUI.py:6011
  5878. msgid ""
  5879. "Height of the tool just after starting the work.\n"
  5880. "Delete the value if you don't need this feature."
  5881. msgstr ""
  5882. #: flatcamGUI/FlatCAMGUI.py:6029 flatcamGUI/ObjectUI.py:1241
  5883. msgid "Feed Rate Rapids"
  5884. msgstr ""
  5885. #: flatcamGUI/FlatCAMGUI.py:6031 flatcamGUI/ObjectUI.py:1243
  5886. msgid ""
  5887. "Cutting speed in the XY plane\n"
  5888. "(in units per minute).\n"
  5889. "This is for the rapid move G00.\n"
  5890. "It is useful only for Marlin,\n"
  5891. "ignore for any other cases."
  5892. msgstr ""
  5893. #: flatcamGUI/FlatCAMGUI.py:6042 flatcamGUI/ObjectUI.py:1257
  5894. msgid "Re-cut 1st pt."
  5895. msgstr ""
  5896. #: flatcamGUI/FlatCAMGUI.py:6044 flatcamGUI/ObjectUI.py:1259
  5897. msgid ""
  5898. "In order to remove possible\n"
  5899. "copper leftovers where first cut\n"
  5900. "meet with last cut, we generate an\n"
  5901. "extended cut over the first cut section."
  5902. msgstr ""
  5903. #: flatcamGUI/FlatCAMGUI.py:6083
  5904. msgid "Seg. X size"
  5905. msgstr ""
  5906. #: flatcamGUI/FlatCAMGUI.py:6085
  5907. msgid ""
  5908. "The size of the trace segment on the X axis.\n"
  5909. "Useful for auto-leveling.\n"
  5910. "A value of 0 means no segmentation on the X axis."
  5911. msgstr ""
  5912. #: flatcamGUI/FlatCAMGUI.py:6094
  5913. msgid "Seg. Y size"
  5914. msgstr ""
  5915. #: flatcamGUI/FlatCAMGUI.py:6096
  5916. msgid ""
  5917. "The size of the trace segment on the Y axis.\n"
  5918. "Useful for auto-leveling.\n"
  5919. "A value of 0 means no segmentation on the Y axis."
  5920. msgstr ""
  5921. #: flatcamGUI/FlatCAMGUI.py:6112
  5922. msgid "Geometry Editor"
  5923. msgstr ""
  5924. #: flatcamGUI/FlatCAMGUI.py:6117
  5925. msgid "A list of Geometry Editor parameters."
  5926. msgstr ""
  5927. #: flatcamGUI/FlatCAMGUI.py:6127
  5928. msgid ""
  5929. "Set the number of selected geometry\n"
  5930. "items above which the utility geometry\n"
  5931. "becomes just a selection rectangle.\n"
  5932. "Increases the performance when moving a\n"
  5933. "large number of geometric elements."
  5934. msgstr ""
  5935. #: flatcamGUI/FlatCAMGUI.py:6146
  5936. msgid "CNC Job General"
  5937. msgstr ""
  5938. #: flatcamGUI/FlatCAMGUI.py:6159 flatcamGUI/ObjectUI.py:938
  5939. #: flatcamGUI/ObjectUI.py:1501
  5940. msgid "Plot Object"
  5941. msgstr ""
  5942. #: flatcamGUI/FlatCAMGUI.py:6164 flatcamGUI/ObjectUI.py:1396
  5943. msgid "Plot kind"
  5944. msgstr ""
  5945. #: flatcamGUI/FlatCAMGUI.py:6166 flatcamGUI/ObjectUI.py:1399
  5946. msgid ""
  5947. "This selects the kind of geometries on the canvas to plot.\n"
  5948. "Those can be either of type 'Travel' which means the moves\n"
  5949. "above the work piece or it can be of type 'Cut',\n"
  5950. "which means the moves that cut into the material."
  5951. msgstr ""
  5952. #: flatcamGUI/FlatCAMGUI.py:6174 flatcamGUI/ObjectUI.py:1408
  5953. msgid "Travel"
  5954. msgstr ""
  5955. #: flatcamGUI/FlatCAMGUI.py:6183 flatcamGUI/ObjectUI.py:1412
  5956. msgid "Display Annotation"
  5957. msgstr ""
  5958. #: flatcamGUI/FlatCAMGUI.py:6185 flatcamGUI/ObjectUI.py:1414
  5959. msgid ""
  5960. "This selects if to display text annotation on the plot.\n"
  5961. "When checked it will display numbers in order for each end\n"
  5962. "of a travel line."
  5963. msgstr ""
  5964. #: flatcamGUI/FlatCAMGUI.py:6197
  5965. msgid "Annotation Size"
  5966. msgstr ""
  5967. #: flatcamGUI/FlatCAMGUI.py:6199
  5968. msgid "The font size of the annotation text. In pixels."
  5969. msgstr ""
  5970. #: flatcamGUI/FlatCAMGUI.py:6207
  5971. msgid "Annotation Color"
  5972. msgstr ""
  5973. #: flatcamGUI/FlatCAMGUI.py:6209
  5974. msgid "Set the font color for the annotation texts."
  5975. msgstr ""
  5976. #: flatcamGUI/FlatCAMGUI.py:6232
  5977. msgid ""
  5978. "The number of circle steps for <b>GCode</b> \n"
  5979. "circle and arc shapes linear approximation."
  5980. msgstr ""
  5981. #: flatcamGUI/FlatCAMGUI.py:6240
  5982. msgid "Travel dia"
  5983. msgstr ""
  5984. #: flatcamGUI/FlatCAMGUI.py:6242
  5985. msgid ""
  5986. "The width of the travel lines to be\n"
  5987. "rendered in the plot."
  5988. msgstr ""
  5989. #: flatcamGUI/FlatCAMGUI.py:6253
  5990. msgid "Coordinates decimals"
  5991. msgstr ""
  5992. #: flatcamGUI/FlatCAMGUI.py:6255
  5993. msgid ""
  5994. "The number of decimals to be used for \n"
  5995. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  5996. msgstr ""
  5997. #: flatcamGUI/FlatCAMGUI.py:6263
  5998. msgid "Feedrate decimals"
  5999. msgstr ""
  6000. #: flatcamGUI/FlatCAMGUI.py:6265
  6001. msgid ""
  6002. "The number of decimals to be used for \n"
  6003. "the Feedrate parameter in CNC code (GCODE, etc.)"
  6004. msgstr ""
  6005. #: flatcamGUI/FlatCAMGUI.py:6273
  6006. msgid "Coordinates type"
  6007. msgstr ""
  6008. #: flatcamGUI/FlatCAMGUI.py:6275
  6009. msgid ""
  6010. "The type of coordinates to be used in Gcode.\n"
  6011. "Can be:\n"
  6012. "- Absolute G90 -> the reference is the origin x=0, y=0\n"
  6013. "- Incremental G91 -> the reference is the previous position"
  6014. msgstr ""
  6015. #: flatcamGUI/FlatCAMGUI.py:6281
  6016. msgid "Absolute G90"
  6017. msgstr ""
  6018. #: flatcamGUI/FlatCAMGUI.py:6282
  6019. msgid "Incremental G91"
  6020. msgstr ""
  6021. #: flatcamGUI/FlatCAMGUI.py:6299
  6022. msgid "CNC Job Options"
  6023. msgstr ""
  6024. #: flatcamGUI/FlatCAMGUI.py:6302
  6025. msgid "Export G-Code"
  6026. msgstr ""
  6027. #: flatcamGUI/FlatCAMGUI.py:6304 flatcamGUI/FlatCAMGUI.py:6345
  6028. #: flatcamGUI/ObjectUI.py:1535
  6029. msgid ""
  6030. "Export and save G-Code to\n"
  6031. "make this object to a file."
  6032. msgstr ""
  6033. #: flatcamGUI/FlatCAMGUI.py:6310
  6034. msgid "Prepend to G-Code"
  6035. msgstr ""
  6036. #: flatcamGUI/FlatCAMGUI.py:6312 flatcamGUI/ObjectUI.py:1543
  6037. msgid ""
  6038. "Type here any G-Code commands you would\n"
  6039. "like to add at the beginning of the G-Code file."
  6040. msgstr ""
  6041. #: flatcamGUI/FlatCAMGUI.py:6321
  6042. msgid "Append to G-Code"
  6043. msgstr ""
  6044. #: flatcamGUI/FlatCAMGUI.py:6323 flatcamGUI/ObjectUI.py:1554
  6045. msgid ""
  6046. "Type here any G-Code commands you would\n"
  6047. "like to append to the generated file.\n"
  6048. "I.e.: M2 (End of program)"
  6049. msgstr ""
  6050. #: flatcamGUI/FlatCAMGUI.py:6340
  6051. msgid "CNC Job Adv. Options"
  6052. msgstr ""
  6053. #: flatcamGUI/FlatCAMGUI.py:6343 flatcamGUI/ObjectUI.py:1533
  6054. msgid "Export CNC Code"
  6055. msgstr ""
  6056. #: flatcamGUI/FlatCAMGUI.py:6351 flatcamGUI/ObjectUI.py:1571
  6057. msgid "Toolchange G-Code"
  6058. msgstr ""
  6059. #: flatcamGUI/FlatCAMGUI.py:6354 flatcamGUI/ObjectUI.py:1574
  6060. msgid ""
  6061. "Type here any G-Code commands you would\n"
  6062. "like to be executed when Toolchange event is encountered.\n"
  6063. "This will constitute a Custom Toolchange GCode,\n"
  6064. "or a Toolchange Macro.\n"
  6065. "The FlatCAM variables are surrounded by '%' symbol.\n"
  6066. "\n"
  6067. "WARNING: it can be used only with a postprocessor file\n"
  6068. "that has 'toolchange_custom' in it's name and this is built\n"
  6069. "having as template the 'Toolchange Custom' posprocessor file."
  6070. msgstr ""
  6071. #: flatcamGUI/FlatCAMGUI.py:6373 flatcamGUI/ObjectUI.py:1593
  6072. msgid "Use Toolchange Macro"
  6073. msgstr ""
  6074. #: flatcamGUI/FlatCAMGUI.py:6375 flatcamGUI/ObjectUI.py:1595
  6075. msgid ""
  6076. "Check this box if you want to use\n"
  6077. "a Custom Toolchange GCode (macro)."
  6078. msgstr ""
  6079. #: flatcamGUI/FlatCAMGUI.py:6387 flatcamGUI/ObjectUI.py:1603
  6080. msgid ""
  6081. "A list of the FlatCAM variables that can be used\n"
  6082. "in the Toolchange event.\n"
  6083. "They have to be surrounded by the '%' symbol"
  6084. msgstr ""
  6085. #: flatcamGUI/FlatCAMGUI.py:6397 flatcamGUI/ObjectUI.py:1613
  6086. msgid "FlatCAM CNC parameters"
  6087. msgstr ""
  6088. #: flatcamGUI/FlatCAMGUI.py:6398 flatcamGUI/ObjectUI.py:1614
  6089. msgid "tool = tool number"
  6090. msgstr ""
  6091. #: flatcamGUI/FlatCAMGUI.py:6399 flatcamGUI/ObjectUI.py:1615
  6092. msgid "tooldia = tool diameter"
  6093. msgstr ""
  6094. #: flatcamGUI/FlatCAMGUI.py:6400 flatcamGUI/ObjectUI.py:1616
  6095. msgid "t_drills = for Excellon, total number of drills"
  6096. msgstr ""
  6097. #: flatcamGUI/FlatCAMGUI.py:6401 flatcamGUI/ObjectUI.py:1617
  6098. msgid "x_toolchange = X coord for Toolchange"
  6099. msgstr ""
  6100. #: flatcamGUI/FlatCAMGUI.py:6402 flatcamGUI/ObjectUI.py:1618
  6101. msgid "y_toolchange = Y coord for Toolchange"
  6102. msgstr ""
  6103. #: flatcamGUI/FlatCAMGUI.py:6403 flatcamGUI/ObjectUI.py:1619
  6104. msgid "z_toolchange = Z coord for Toolchange"
  6105. msgstr ""
  6106. #: flatcamGUI/FlatCAMGUI.py:6404
  6107. msgid "z_cut = Z depth for the cut"
  6108. msgstr ""
  6109. #: flatcamGUI/FlatCAMGUI.py:6405
  6110. msgid "z_move = Z height for travel"
  6111. msgstr ""
  6112. #: flatcamGUI/FlatCAMGUI.py:6406 flatcamGUI/ObjectUI.py:1622
  6113. msgid "z_depthpercut = the step value for multidepth cut"
  6114. msgstr ""
  6115. #: flatcamGUI/FlatCAMGUI.py:6407 flatcamGUI/ObjectUI.py:1623
  6116. msgid "spindlesspeed = the value for the spindle speed"
  6117. msgstr ""
  6118. #: flatcamGUI/FlatCAMGUI.py:6409 flatcamGUI/ObjectUI.py:1624
  6119. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  6120. msgstr ""
  6121. #: flatcamGUI/FlatCAMGUI.py:6430
  6122. msgid "NCC Tool Options"
  6123. msgstr ""
  6124. #: flatcamGUI/FlatCAMGUI.py:6435 flatcamGUI/ObjectUI.py:447
  6125. msgid ""
  6126. "Create a Geometry object with\n"
  6127. "toolpaths to cut all non-copper regions."
  6128. msgstr ""
  6129. #: flatcamGUI/FlatCAMGUI.py:6443 flatcamGUI/FlatCAMGUI.py:7397
  6130. msgid "Tools dia"
  6131. msgstr ""
  6132. #: flatcamGUI/FlatCAMGUI.py:6452 flatcamTools/ToolNonCopperClear.py:195
  6133. msgid "Tool Type"
  6134. msgstr ""
  6135. #: flatcamGUI/FlatCAMGUI.py:6454 flatcamGUI/FlatCAMGUI.py:6462
  6136. #: flatcamTools/ToolNonCopperClear.py:197
  6137. #: flatcamTools/ToolNonCopperClear.py:205
  6138. msgid ""
  6139. "Default tool type:\n"
  6140. "- 'V-shape'\n"
  6141. "- Circular"
  6142. msgstr ""
  6143. #: flatcamGUI/FlatCAMGUI.py:6459 flatcamTools/ToolNonCopperClear.py:202
  6144. msgid "V-shape"
  6145. msgstr ""
  6146. #: flatcamGUI/FlatCAMGUI.py:6471 flatcamGUI/ObjectUI.py:1109
  6147. #: flatcamTools/ToolNonCopperClear.py:220
  6148. msgid "V-Tip Dia"
  6149. msgstr ""
  6150. #: flatcamGUI/FlatCAMGUI.py:6473 flatcamGUI/ObjectUI.py:1112
  6151. #: flatcamTools/ToolNonCopperClear.py:222
  6152. msgid "The tip diameter for V-Shape Tool"
  6153. msgstr ""
  6154. #: flatcamGUI/FlatCAMGUI.py:6480 flatcamGUI/ObjectUI.py:1120
  6155. #: flatcamTools/ToolNonCopperClear.py:227
  6156. msgid "V-Tip Angle"
  6157. msgstr ""
  6158. #: flatcamGUI/FlatCAMGUI.py:6482 flatcamGUI/ObjectUI.py:1123
  6159. #: flatcamTools/ToolNonCopperClear.py:229
  6160. msgid ""
  6161. "The tip angle for V-Shape Tool.\n"
  6162. "In degree."
  6163. msgstr ""
  6164. #: flatcamGUI/FlatCAMGUI.py:6492 flatcamGUI/FlatCAMGUI.py:6500
  6165. #: flatcamTools/ToolNonCopperClear.py:149
  6166. #: flatcamTools/ToolNonCopperClear.py:157
  6167. msgid ""
  6168. "Milling type when the selected tool is of type: 'iso_op':\n"
  6169. "- climb / best for precision milling and to reduce tool usage\n"
  6170. "- conventional / useful when there is no backlash compensation"
  6171. msgstr ""
  6172. #: flatcamGUI/FlatCAMGUI.py:6509 flatcamGUI/FlatCAMGUI.py:6869
  6173. #: flatcamTools/ToolNonCopperClear.py:163 flatcamTools/ToolPaint.py:136
  6174. msgid "Tool order"
  6175. msgstr ""
  6176. #: flatcamGUI/FlatCAMGUI.py:6510 flatcamGUI/FlatCAMGUI.py:6520
  6177. #: flatcamGUI/FlatCAMGUI.py:6870 flatcamGUI/FlatCAMGUI.py:6880
  6178. #: flatcamTools/ToolNonCopperClear.py:164
  6179. #: flatcamTools/ToolNonCopperClear.py:174 flatcamTools/ToolPaint.py:137
  6180. #: flatcamTools/ToolPaint.py:147
  6181. msgid ""
  6182. "This set the way that the tools in the tools table are used.\n"
  6183. "'No' --> means that the used order is the one in the tool table\n"
  6184. "'Forward' --> means that the tools will be ordered from small to big\n"
  6185. "'Reverse' --> menas that the tools will ordered from big to small\n"
  6186. "\n"
  6187. "WARNING: using rest machining will automatically set the order\n"
  6188. "in reverse and disable this control."
  6189. msgstr ""
  6190. #: flatcamGUI/FlatCAMGUI.py:6518 flatcamGUI/FlatCAMGUI.py:6878
  6191. #: flatcamTools/ToolNonCopperClear.py:172 flatcamTools/ToolPaint.py:145
  6192. msgid "Forward"
  6193. msgstr ""
  6194. #: flatcamGUI/FlatCAMGUI.py:6519 flatcamGUI/FlatCAMGUI.py:6879
  6195. #: flatcamTools/ToolNonCopperClear.py:173 flatcamTools/ToolPaint.py:146
  6196. msgid "Reverse"
  6197. msgstr ""
  6198. #: flatcamGUI/FlatCAMGUI.py:6532 flatcamGUI/FlatCAMGUI.py:6537
  6199. #: flatcamTools/ToolNonCopperClear.py:271
  6200. #: flatcamTools/ToolNonCopperClear.py:276
  6201. msgid ""
  6202. "Depth of cut into material. Negative value.\n"
  6203. "In FlatCAM units."
  6204. msgstr ""
  6205. #: flatcamGUI/FlatCAMGUI.py:6547 flatcamTools/ToolNonCopperClear.py:285
  6206. #, python-format
  6207. msgid ""
  6208. "How much (fraction) of the tool width to overlap each tool pass.\n"
  6209. "Example:\n"
  6210. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  6211. "\n"
  6212. "Adjust the value starting with lower values\n"
  6213. "and increasing it if areas that should be cleared are still \n"
  6214. "not cleared.\n"
  6215. "Lower values = faster processing, faster execution on PCB.\n"
  6216. "Higher values = slow processing and slow execution on CNC\n"
  6217. "due of too many paths."
  6218. msgstr ""
  6219. #: flatcamGUI/FlatCAMGUI.py:6564 flatcamTools/ToolNonCopperClear.py:301
  6220. msgid "Bounding box margin."
  6221. msgstr ""
  6222. #: flatcamGUI/FlatCAMGUI.py:6573 flatcamGUI/FlatCAMGUI.py:6920
  6223. #: flatcamTools/ToolNonCopperClear.py:310
  6224. msgid ""
  6225. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  6226. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  6227. "lines."
  6228. msgstr ""
  6229. #: flatcamGUI/FlatCAMGUI.py:6587 flatcamGUI/FlatCAMGUI.py:6934
  6230. #: flatcamTools/ToolNonCopperClear.py:324 flatcamTools/ToolPaint.py:249
  6231. msgid "Connect"
  6232. msgstr ""
  6233. #: flatcamGUI/FlatCAMGUI.py:6597 flatcamGUI/FlatCAMGUI.py:6944
  6234. #: flatcamTools/ToolNonCopperClear.py:333 flatcamTools/ToolPaint.py:258
  6235. msgid "Contour"
  6236. msgstr ""
  6237. #: flatcamGUI/FlatCAMGUI.py:6607 flatcamTools/ToolNonCopperClear.py:342
  6238. #: flatcamTools/ToolPaint.py:267
  6239. msgid "Rest M."
  6240. msgstr ""
  6241. #: flatcamGUI/FlatCAMGUI.py:6609 flatcamTools/ToolNonCopperClear.py:344
  6242. msgid ""
  6243. "If checked, use 'rest machining'.\n"
  6244. "Basically it will clear copper outside PCB features,\n"
  6245. "using the biggest tool and continue with the next tools,\n"
  6246. "from bigger to smaller, to clear areas of copper that\n"
  6247. "could not be cleared by previous tool, until there is\n"
  6248. "no more copper to clear or there are no more tools.\n"
  6249. "If not checked, use the standard algorithm."
  6250. msgstr ""
  6251. #: flatcamGUI/FlatCAMGUI.py:6624 flatcamGUI/FlatCAMGUI.py:6636
  6252. #: flatcamTools/ToolNonCopperClear.py:359
  6253. #: flatcamTools/ToolNonCopperClear.py:371
  6254. msgid ""
  6255. "If used, it will add an offset to the copper features.\n"
  6256. "The copper clearing will finish to a distance\n"
  6257. "from the copper features.\n"
  6258. "The value can be between 0 and 10 FlatCAM units."
  6259. msgstr ""
  6260. #: flatcamGUI/FlatCAMGUI.py:6634 flatcamTools/ToolNonCopperClear.py:369
  6261. msgid "Offset value"
  6262. msgstr ""
  6263. #: flatcamGUI/FlatCAMGUI.py:6651 flatcamTools/ToolNonCopperClear.py:395
  6264. msgid "Itself"
  6265. msgstr ""
  6266. #: flatcamGUI/FlatCAMGUI.py:6652 flatcamGUI/FlatCAMGUI.py:6965
  6267. msgid "Area"
  6268. msgstr ""
  6269. #: flatcamGUI/FlatCAMGUI.py:6653
  6270. msgid "Ref"
  6271. msgstr ""
  6272. #: flatcamGUI/FlatCAMGUI.py:6654
  6273. msgid "Reference"
  6274. msgstr ""
  6275. #: flatcamGUI/FlatCAMGUI.py:6656 flatcamTools/ToolNonCopperClear.py:401
  6276. msgid ""
  6277. "- 'Itself' - the non copper clearing extent\n"
  6278. "is based on the object that is copper cleared.\n"
  6279. " - 'Area Selection' - left mouse click to start selection of the area to be "
  6280. "painted.\n"
  6281. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  6282. "areas.\n"
  6283. "- 'Reference Object' - will do non copper clearing within the area\n"
  6284. "specified by another object."
  6285. msgstr ""
  6286. #: flatcamGUI/FlatCAMGUI.py:6667 flatcamGUI/FlatCAMGUI.py:6973
  6287. msgid "Normal"
  6288. msgstr ""
  6289. #: flatcamGUI/FlatCAMGUI.py:6668 flatcamGUI/FlatCAMGUI.py:6974
  6290. msgid "Progressive"
  6291. msgstr ""
  6292. #: flatcamGUI/FlatCAMGUI.py:6669
  6293. msgid "NCC Plotting"
  6294. msgstr ""
  6295. #: flatcamGUI/FlatCAMGUI.py:6671
  6296. msgid ""
  6297. "- 'Normal' - normal plotting, done at the end of the NCC job\n"
  6298. "- 'Progressive' - after each shape is generated it will be plotted."
  6299. msgstr ""
  6300. #: flatcamGUI/FlatCAMGUI.py:6685
  6301. msgid "Cutout Tool Options"
  6302. msgstr ""
  6303. #: flatcamGUI/FlatCAMGUI.py:6690 flatcamGUI/ObjectUI.py:463
  6304. msgid ""
  6305. "Create toolpaths to cut around\n"
  6306. "the PCB and separate it from\n"
  6307. "the original board."
  6308. msgstr ""
  6309. #: flatcamGUI/FlatCAMGUI.py:6701 flatcamTools/ToolCutOut.py:93
  6310. msgid ""
  6311. "Diameter of the tool used to cutout\n"
  6312. "the PCB shape out of the surrounding material."
  6313. msgstr ""
  6314. #: flatcamGUI/FlatCAMGUI.py:6709 flatcamTools/ToolCutOut.py:76
  6315. msgid "Obj kind"
  6316. msgstr ""
  6317. #: flatcamGUI/FlatCAMGUI.py:6711 flatcamTools/ToolCutOut.py:78
  6318. msgid ""
  6319. "Choice of what kind the object we want to cutout is.<BR>- <B>Single</B>: "
  6320. "contain a single PCB Gerber outline object.<BR>- <B>Panel</B>: a panel PCB "
  6321. "Gerber object, which is made\n"
  6322. "out of many individual PCB outlines."
  6323. msgstr ""
  6324. #: flatcamGUI/FlatCAMGUI.py:6718 flatcamGUI/FlatCAMGUI.py:6964
  6325. #: flatcamTools/ToolCutOut.py:84
  6326. msgid "Single"
  6327. msgstr ""
  6328. #: flatcamGUI/FlatCAMGUI.py:6719 flatcamTools/ToolCutOut.py:85
  6329. msgid "Panel"
  6330. msgstr ""
  6331. #: flatcamGUI/FlatCAMGUI.py:6725 flatcamTools/ToolCutOut.py:102
  6332. msgid ""
  6333. "Margin over bounds. A positive value here\n"
  6334. "will make the cutout of the PCB further from\n"
  6335. "the actual PCB border"
  6336. msgstr ""
  6337. #: flatcamGUI/FlatCAMGUI.py:6733
  6338. msgid "Gap size"
  6339. msgstr ""
  6340. #: flatcamGUI/FlatCAMGUI.py:6735 flatcamTools/ToolCutOut.py:112
  6341. msgid ""
  6342. "The size of the bridge gaps in the cutout\n"
  6343. "used to keep the board connected to\n"
  6344. "the surrounding material (the one \n"
  6345. "from which the PCB is cutout)."
  6346. msgstr ""
  6347. #: flatcamGUI/FlatCAMGUI.py:6744 flatcamTools/ToolCutOut.py:148
  6348. msgid "Gaps"
  6349. msgstr ""
  6350. #: flatcamGUI/FlatCAMGUI.py:6746
  6351. msgid ""
  6352. "Number of gaps used for the cutout.\n"
  6353. "There can be maximum 8 bridges/gaps.\n"
  6354. "The choices are:\n"
  6355. "- None - no gaps\n"
  6356. "- lr - left + right\n"
  6357. "- tb - top + bottom\n"
  6358. "- 4 - left + right +top + bottom\n"
  6359. "- 2lr - 2*left + 2*right\n"
  6360. "- 2tb - 2*top + 2*bottom\n"
  6361. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  6362. msgstr ""
  6363. #: flatcamGUI/FlatCAMGUI.py:6768 flatcamTools/ToolCutOut.py:129
  6364. msgid "Convex Sh."
  6365. msgstr ""
  6366. #: flatcamGUI/FlatCAMGUI.py:6770 flatcamTools/ToolCutOut.py:131
  6367. msgid ""
  6368. "Create a convex shape surrounding the entire PCB.\n"
  6369. "Used only if the source object type is Gerber."
  6370. msgstr ""
  6371. #: flatcamGUI/FlatCAMGUI.py:6784
  6372. msgid "2Sided Tool Options"
  6373. msgstr ""
  6374. #: flatcamGUI/FlatCAMGUI.py:6789
  6375. msgid ""
  6376. "A tool to help in creating a double sided\n"
  6377. "PCB using alignment holes."
  6378. msgstr ""
  6379. #: flatcamGUI/FlatCAMGUI.py:6799 flatcamTools/ToolDblSided.py:234
  6380. msgid "Drill dia"
  6381. msgstr ""
  6382. #: flatcamGUI/FlatCAMGUI.py:6801 flatcamTools/ToolDblSided.py:225
  6383. #: flatcamTools/ToolDblSided.py:236
  6384. msgid "Diameter of the drill for the alignment holes."
  6385. msgstr ""
  6386. #: flatcamGUI/FlatCAMGUI.py:6810 flatcamTools/ToolDblSided.py:120
  6387. msgid "Mirror Axis:"
  6388. msgstr ""
  6389. #: flatcamGUI/FlatCAMGUI.py:6812 flatcamTools/ToolDblSided.py:122
  6390. msgid "Mirror vertically (X) or horizontally (Y)."
  6391. msgstr ""
  6392. #: flatcamGUI/FlatCAMGUI.py:6821 flatcamTools/ToolDblSided.py:131
  6393. msgid "Point"
  6394. msgstr ""
  6395. #: flatcamGUI/FlatCAMGUI.py:6822 flatcamTools/ToolDblSided.py:132
  6396. msgid "Box"
  6397. msgstr ""
  6398. #: flatcamGUI/FlatCAMGUI.py:6823
  6399. msgid "Axis Ref"
  6400. msgstr ""
  6401. #: flatcamGUI/FlatCAMGUI.py:6825 flatcamTools/ToolDblSided.py:135
  6402. msgid ""
  6403. "The axis should pass through a <b>point</b> or cut\n"
  6404. " a specified <b>box</b> (in a FlatCAM object) through \n"
  6405. "the center."
  6406. msgstr ""
  6407. #: flatcamGUI/FlatCAMGUI.py:6841
  6408. msgid "Paint Tool Options"
  6409. msgstr ""
  6410. #: flatcamGUI/FlatCAMGUI.py:6846
  6411. msgid "<b>Parameters:</b>"
  6412. msgstr ""
  6413. #: flatcamGUI/FlatCAMGUI.py:6848 flatcamGUI/ObjectUI.py:1351
  6414. msgid ""
  6415. "Creates tool paths to cover the\n"
  6416. "whole area of a polygon (remove\n"
  6417. "all copper). You will be asked\n"
  6418. "to click on the desired polygon."
  6419. msgstr ""
  6420. #: flatcamGUI/FlatCAMGUI.py:6954 flatcamTools/ToolPaint.py:282
  6421. msgid "Selection"
  6422. msgstr ""
  6423. #: flatcamGUI/FlatCAMGUI.py:6956 flatcamTools/ToolPaint.py:284
  6424. #: flatcamTools/ToolPaint.py:300
  6425. msgid ""
  6426. "How to select Polygons to be painted.\n"
  6427. "\n"
  6428. "- 'Area Selection' - left mouse click to start selection of the area to be "
  6429. "painted.\n"
  6430. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  6431. "areas.\n"
  6432. "- 'All Polygons' - the Paint will start after click.\n"
  6433. "- 'Reference Object' - will do non copper clearing within the area\n"
  6434. "specified by another object."
  6435. msgstr ""
  6436. #: flatcamGUI/FlatCAMGUI.py:6967
  6437. msgid "Ref."
  6438. msgstr ""
  6439. #: flatcamGUI/FlatCAMGUI.py:6975
  6440. msgid "Paint Plotting"
  6441. msgstr ""
  6442. #: flatcamGUI/FlatCAMGUI.py:6977
  6443. msgid ""
  6444. "- 'Normal' - normal plotting, done at the end of the Paint job\n"
  6445. "- 'Progressive' - after each shape is generated it will be plotted."
  6446. msgstr ""
  6447. #: flatcamGUI/FlatCAMGUI.py:6991
  6448. msgid "Film Tool Options"
  6449. msgstr ""
  6450. #: flatcamGUI/FlatCAMGUI.py:6996
  6451. msgid ""
  6452. "Create a PCB film from a Gerber or Geometry\n"
  6453. "FlatCAM object.\n"
  6454. "The file is saved in SVG format."
  6455. msgstr ""
  6456. #: flatcamGUI/FlatCAMGUI.py:7007
  6457. msgid "Film Type"
  6458. msgstr ""
  6459. #: flatcamGUI/FlatCAMGUI.py:7009 flatcamTools/ToolFilm.py:118
  6460. msgid ""
  6461. "Generate a Positive black film or a Negative film.\n"
  6462. "Positive means that it will print the features\n"
  6463. "with black on a white canvas.\n"
  6464. "Negative means that it will print the features\n"
  6465. "with white on a black canvas.\n"
  6466. "The Film format is SVG."
  6467. msgstr ""
  6468. #: flatcamGUI/FlatCAMGUI.py:7020 flatcamTools/ToolFilm.py:130
  6469. msgid "Border"
  6470. msgstr ""
  6471. #: flatcamGUI/FlatCAMGUI.py:7022 flatcamTools/ToolFilm.py:132
  6472. msgid ""
  6473. "Specify a border around the object.\n"
  6474. "Only for negative film.\n"
  6475. "It helps if we use as a Box Object the same \n"
  6476. "object as in Film Object. It will create a thick\n"
  6477. "black bar around the actual print allowing for a\n"
  6478. "better delimitation of the outline features which are of\n"
  6479. "white color like the rest and which may confound with the\n"
  6480. "surroundings if not for this border."
  6481. msgstr ""
  6482. #: flatcamGUI/FlatCAMGUI.py:7035 flatcamTools/ToolFilm.py:144
  6483. msgid "Scale Stroke"
  6484. msgstr ""
  6485. #: flatcamGUI/FlatCAMGUI.py:7037 flatcamTools/ToolFilm.py:146
  6486. msgid ""
  6487. "Scale the line stroke thickness of each feature in the SVG file.\n"
  6488. "It means that the line that envelope each SVG feature will be thicker or "
  6489. "thinner,\n"
  6490. "therefore the fine features may be more affected by this parameter."
  6491. msgstr ""
  6492. #: flatcamGUI/FlatCAMGUI.py:7052
  6493. msgid "Panelize Tool Options"
  6494. msgstr ""
  6495. #: flatcamGUI/FlatCAMGUI.py:7057
  6496. msgid ""
  6497. "Create an object that contains an array of (x, y) elements,\n"
  6498. "each element is a copy of the source object spaced\n"
  6499. "at a X distance, Y distance of each other."
  6500. msgstr ""
  6501. #: flatcamGUI/FlatCAMGUI.py:7068 flatcamTools/ToolPanelize.py:147
  6502. msgid "Spacing cols"
  6503. msgstr ""
  6504. #: flatcamGUI/FlatCAMGUI.py:7070 flatcamTools/ToolPanelize.py:149
  6505. msgid ""
  6506. "Spacing between columns of the desired panel.\n"
  6507. "In current units."
  6508. msgstr ""
  6509. #: flatcamGUI/FlatCAMGUI.py:7078 flatcamTools/ToolPanelize.py:156
  6510. msgid "Spacing rows"
  6511. msgstr ""
  6512. #: flatcamGUI/FlatCAMGUI.py:7080 flatcamTools/ToolPanelize.py:158
  6513. msgid ""
  6514. "Spacing between rows of the desired panel.\n"
  6515. "In current units."
  6516. msgstr ""
  6517. #: flatcamGUI/FlatCAMGUI.py:7088 flatcamTools/ToolPanelize.py:165
  6518. msgid "Columns"
  6519. msgstr ""
  6520. #: flatcamGUI/FlatCAMGUI.py:7090 flatcamTools/ToolPanelize.py:167
  6521. msgid "Number of columns of the desired panel"
  6522. msgstr ""
  6523. #: flatcamGUI/FlatCAMGUI.py:7097 flatcamTools/ToolPanelize.py:173
  6524. msgid "Rows"
  6525. msgstr ""
  6526. #: flatcamGUI/FlatCAMGUI.py:7099 flatcamTools/ToolPanelize.py:175
  6527. msgid "Number of rows of the desired panel"
  6528. msgstr ""
  6529. #: flatcamGUI/FlatCAMGUI.py:7105 flatcamTools/ToolPanelize.py:181
  6530. msgid "Gerber"
  6531. msgstr ""
  6532. #: flatcamGUI/FlatCAMGUI.py:7106 flatcamTools/ToolPanelize.py:182
  6533. msgid "Geo"
  6534. msgstr ""
  6535. #: flatcamGUI/FlatCAMGUI.py:7107 flatcamTools/ToolPanelize.py:183
  6536. msgid "Panel Type"
  6537. msgstr ""
  6538. #: flatcamGUI/FlatCAMGUI.py:7109
  6539. msgid ""
  6540. "Choose the type of object for the panel object:\n"
  6541. "- Gerber\n"
  6542. "- Geometry"
  6543. msgstr ""
  6544. #: flatcamGUI/FlatCAMGUI.py:7118
  6545. msgid "Constrain within"
  6546. msgstr ""
  6547. #: flatcamGUI/FlatCAMGUI.py:7120 flatcamTools/ToolPanelize.py:195
  6548. msgid ""
  6549. "Area define by DX and DY within to constrain the panel.\n"
  6550. "DX and DY values are in current units.\n"
  6551. "Regardless of how many columns and rows are desired,\n"
  6552. "the final panel will have as many columns and rows as\n"
  6553. "they fit completely within selected area."
  6554. msgstr ""
  6555. #: flatcamGUI/FlatCAMGUI.py:7129 flatcamTools/ToolPanelize.py:204
  6556. msgid "Width (DX)"
  6557. msgstr ""
  6558. #: flatcamGUI/FlatCAMGUI.py:7131 flatcamTools/ToolPanelize.py:206
  6559. msgid ""
  6560. "The width (DX) within which the panel must fit.\n"
  6561. "In current units."
  6562. msgstr ""
  6563. #: flatcamGUI/FlatCAMGUI.py:7138 flatcamTools/ToolPanelize.py:212
  6564. msgid "Height (DY)"
  6565. msgstr ""
  6566. #: flatcamGUI/FlatCAMGUI.py:7140 flatcamTools/ToolPanelize.py:214
  6567. msgid ""
  6568. "The height (DY)within which the panel must fit.\n"
  6569. "In current units."
  6570. msgstr ""
  6571. #: flatcamGUI/FlatCAMGUI.py:7154
  6572. msgid "Calculators Tool Options"
  6573. msgstr ""
  6574. #: flatcamGUI/FlatCAMGUI.py:7157 flatcamTools/ToolCalculators.py:25
  6575. msgid "V-Shape Tool Calculator"
  6576. msgstr ""
  6577. #: flatcamGUI/FlatCAMGUI.py:7159
  6578. msgid ""
  6579. "Calculate the tool diameter for a given V-shape tool,\n"
  6580. "having the tip diameter, tip angle and\n"
  6581. "depth-of-cut as parameters."
  6582. msgstr ""
  6583. #: flatcamGUI/FlatCAMGUI.py:7170 flatcamTools/ToolCalculators.py:92
  6584. msgid "Tip Diameter"
  6585. msgstr ""
  6586. #: flatcamGUI/FlatCAMGUI.py:7172 flatcamTools/ToolCalculators.py:97
  6587. msgid ""
  6588. "This is the tool tip diameter.\n"
  6589. "It is specified by manufacturer."
  6590. msgstr ""
  6591. #: flatcamGUI/FlatCAMGUI.py:7180 flatcamTools/ToolCalculators.py:100
  6592. msgid "Tip Angle"
  6593. msgstr ""
  6594. #: flatcamGUI/FlatCAMGUI.py:7182
  6595. msgid ""
  6596. "This is the angle on the tip of the tool.\n"
  6597. "It is specified by manufacturer."
  6598. msgstr ""
  6599. #: flatcamGUI/FlatCAMGUI.py:7192
  6600. msgid ""
  6601. "This is depth to cut into material.\n"
  6602. "In the CNCJob object it is the CutZ parameter."
  6603. msgstr ""
  6604. #: flatcamGUI/FlatCAMGUI.py:7199 flatcamTools/ToolCalculators.py:27
  6605. msgid "ElectroPlating Calculator"
  6606. msgstr ""
  6607. #: flatcamGUI/FlatCAMGUI.py:7201 flatcamTools/ToolCalculators.py:149
  6608. msgid ""
  6609. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  6610. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  6611. "chloride."
  6612. msgstr ""
  6613. #: flatcamGUI/FlatCAMGUI.py:7211 flatcamTools/ToolCalculators.py:158
  6614. msgid "Board Length"
  6615. msgstr ""
  6616. #: flatcamGUI/FlatCAMGUI.py:7213 flatcamTools/ToolCalculators.py:162
  6617. msgid "This is the board length. In centimeters."
  6618. msgstr ""
  6619. #: flatcamGUI/FlatCAMGUI.py:7219 flatcamTools/ToolCalculators.py:164
  6620. msgid "Board Width"
  6621. msgstr ""
  6622. #: flatcamGUI/FlatCAMGUI.py:7221 flatcamTools/ToolCalculators.py:168
  6623. msgid "This is the board width.In centimeters."
  6624. msgstr ""
  6625. #: flatcamGUI/FlatCAMGUI.py:7226 flatcamTools/ToolCalculators.py:170
  6626. msgid "Current Density"
  6627. msgstr ""
  6628. #: flatcamGUI/FlatCAMGUI.py:7229 flatcamTools/ToolCalculators.py:174
  6629. msgid ""
  6630. "Current density to pass through the board. \n"
  6631. "In Amps per Square Feet ASF."
  6632. msgstr ""
  6633. #: flatcamGUI/FlatCAMGUI.py:7235 flatcamTools/ToolCalculators.py:177
  6634. msgid "Copper Growth"
  6635. msgstr ""
  6636. #: flatcamGUI/FlatCAMGUI.py:7238 flatcamTools/ToolCalculators.py:181
  6637. msgid ""
  6638. "How thick the copper growth is intended to be.\n"
  6639. "In microns."
  6640. msgstr ""
  6641. #: flatcamGUI/FlatCAMGUI.py:7251
  6642. msgid "Transform Tool Options"
  6643. msgstr ""
  6644. #: flatcamGUI/FlatCAMGUI.py:7256
  6645. msgid ""
  6646. "Various transformations that can be applied\n"
  6647. "on a FlatCAM object."
  6648. msgstr ""
  6649. #: flatcamGUI/FlatCAMGUI.py:7266
  6650. msgid "Rotate Angle"
  6651. msgstr ""
  6652. #: flatcamGUI/FlatCAMGUI.py:7278 flatcamTools/ToolTransform.py:107
  6653. msgid "Skew_X angle"
  6654. msgstr ""
  6655. #: flatcamGUI/FlatCAMGUI.py:7288 flatcamTools/ToolTransform.py:125
  6656. msgid "Skew_Y angle"
  6657. msgstr ""
  6658. #: flatcamGUI/FlatCAMGUI.py:7298 flatcamTools/ToolTransform.py:164
  6659. msgid "Scale_X factor"
  6660. msgstr ""
  6661. #: flatcamGUI/FlatCAMGUI.py:7300 flatcamTools/ToolTransform.py:166
  6662. msgid "Factor for scaling on X axis."
  6663. msgstr ""
  6664. #: flatcamGUI/FlatCAMGUI.py:7307 flatcamTools/ToolTransform.py:181
  6665. msgid "Scale_Y factor"
  6666. msgstr ""
  6667. #: flatcamGUI/FlatCAMGUI.py:7309 flatcamTools/ToolTransform.py:183
  6668. msgid "Factor for scaling on Y axis."
  6669. msgstr ""
  6670. #: flatcamGUI/FlatCAMGUI.py:7317 flatcamTools/ToolTransform.py:202
  6671. msgid ""
  6672. "Scale the selected object(s)\n"
  6673. "using the Scale_X factor for both axis."
  6674. msgstr ""
  6675. #: flatcamGUI/FlatCAMGUI.py:7325 flatcamTools/ToolTransform.py:211
  6676. msgid ""
  6677. "Scale the selected object(s)\n"
  6678. "using the origin reference when checked,\n"
  6679. "and the center of the biggest bounding box\n"
  6680. "of the selected objects when unchecked."
  6681. msgstr ""
  6682. #: flatcamGUI/FlatCAMGUI.py:7334 flatcamTools/ToolTransform.py:239
  6683. msgid "Offset_X val"
  6684. msgstr ""
  6685. #: flatcamGUI/FlatCAMGUI.py:7336 flatcamTools/ToolTransform.py:241
  6686. msgid "Distance to offset on X axis. In current units."
  6687. msgstr ""
  6688. #: flatcamGUI/FlatCAMGUI.py:7343 flatcamTools/ToolTransform.py:256
  6689. msgid "Offset_Y val"
  6690. msgstr ""
  6691. #: flatcamGUI/FlatCAMGUI.py:7345 flatcamTools/ToolTransform.py:258
  6692. msgid "Distance to offset on Y axis. In current units."
  6693. msgstr ""
  6694. #: flatcamGUI/FlatCAMGUI.py:7351 flatcamTools/ToolTransform.py:313
  6695. msgid "Mirror Reference"
  6696. msgstr ""
  6697. #: flatcamGUI/FlatCAMGUI.py:7353 flatcamTools/ToolTransform.py:315
  6698. msgid ""
  6699. "Flip the selected object(s)\n"
  6700. "around the point in Point Entry Field.\n"
  6701. "\n"
  6702. "The point coordinates can be captured by\n"
  6703. "left click on canvas together with pressing\n"
  6704. "SHIFT key. \n"
  6705. "Then click Add button to insert coordinates.\n"
  6706. "Or enter the coords in format (x, y) in the\n"
  6707. "Point Entry field and click Flip on X(Y)"
  6708. msgstr ""
  6709. #: flatcamGUI/FlatCAMGUI.py:7364 flatcamTools/ToolTransform.py:326
  6710. msgid " Mirror Ref. Point"
  6711. msgstr ""
  6712. #: flatcamGUI/FlatCAMGUI.py:7366 flatcamTools/ToolTransform.py:328
  6713. msgid ""
  6714. "Coordinates in format (x, y) used as reference for mirroring.\n"
  6715. "The 'x' in (x, y) will be used when using Flip on X and\n"
  6716. "the 'y' in (x, y) will be used when using Flip on Y and"
  6717. msgstr ""
  6718. #: flatcamGUI/FlatCAMGUI.py:7383
  6719. msgid "SolderPaste Tool Options"
  6720. msgstr ""
  6721. #: flatcamGUI/FlatCAMGUI.py:7388
  6722. msgid ""
  6723. "A tool to create GCode for dispensing\n"
  6724. "solder paste onto a PCB."
  6725. msgstr ""
  6726. #: flatcamGUI/FlatCAMGUI.py:7399
  6727. msgid "Diameters of nozzle tools, separated by ','"
  6728. msgstr ""
  6729. #: flatcamGUI/FlatCAMGUI.py:7406
  6730. msgid "New Nozzle Dia"
  6731. msgstr ""
  6732. #: flatcamGUI/FlatCAMGUI.py:7408 flatcamTools/ToolSolderPaste.py:103
  6733. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  6734. msgstr ""
  6735. #: flatcamGUI/FlatCAMGUI.py:7416 flatcamTools/ToolSolderPaste.py:166
  6736. msgid "Z Dispense Start"
  6737. msgstr ""
  6738. #: flatcamGUI/FlatCAMGUI.py:7418 flatcamTools/ToolSolderPaste.py:168
  6739. msgid "The height (Z) when solder paste dispensing starts."
  6740. msgstr ""
  6741. #: flatcamGUI/FlatCAMGUI.py:7425 flatcamTools/ToolSolderPaste.py:174
  6742. msgid "Z Dispense"
  6743. msgstr ""
  6744. #: flatcamGUI/FlatCAMGUI.py:7427 flatcamTools/ToolSolderPaste.py:176
  6745. msgid "The height (Z) when doing solder paste dispensing."
  6746. msgstr ""
  6747. #: flatcamGUI/FlatCAMGUI.py:7434 flatcamTools/ToolSolderPaste.py:182
  6748. msgid "Z Dispense Stop"
  6749. msgstr ""
  6750. #: flatcamGUI/FlatCAMGUI.py:7436 flatcamTools/ToolSolderPaste.py:184
  6751. msgid "The height (Z) when solder paste dispensing stops."
  6752. msgstr ""
  6753. #: flatcamGUI/FlatCAMGUI.py:7443 flatcamTools/ToolSolderPaste.py:190
  6754. msgid "Z Travel"
  6755. msgstr ""
  6756. #: flatcamGUI/FlatCAMGUI.py:7445 flatcamTools/ToolSolderPaste.py:192
  6757. msgid ""
  6758. "The height (Z) for travel between pads\n"
  6759. "(without dispensing solder paste)."
  6760. msgstr ""
  6761. #: flatcamGUI/FlatCAMGUI.py:7453 flatcamTools/ToolSolderPaste.py:199
  6762. msgid "Z Toolchange"
  6763. msgstr ""
  6764. #: flatcamGUI/FlatCAMGUI.py:7455 flatcamTools/ToolSolderPaste.py:201
  6765. msgid "The height (Z) for tool (nozzle) change."
  6766. msgstr ""
  6767. #: flatcamGUI/FlatCAMGUI.py:7462 flatcamTools/ToolSolderPaste.py:207
  6768. msgid "Toolchange X-Y"
  6769. msgstr ""
  6770. #: flatcamGUI/FlatCAMGUI.py:7464 flatcamTools/ToolSolderPaste.py:209
  6771. msgid ""
  6772. "The X,Y location for tool (nozzle) change.\n"
  6773. "The format is (x, y) where x and y are real numbers."
  6774. msgstr ""
  6775. #: flatcamGUI/FlatCAMGUI.py:7472 flatcamTools/ToolSolderPaste.py:216
  6776. msgid "Feedrate X-Y"
  6777. msgstr ""
  6778. #: flatcamGUI/FlatCAMGUI.py:7474 flatcamTools/ToolSolderPaste.py:218
  6779. msgid "Feedrate (speed) while moving on the X-Y plane."
  6780. msgstr ""
  6781. #: flatcamGUI/FlatCAMGUI.py:7481 flatcamTools/ToolSolderPaste.py:224
  6782. msgid "Feedrate Z"
  6783. msgstr ""
  6784. #: flatcamGUI/FlatCAMGUI.py:7483 flatcamTools/ToolSolderPaste.py:226
  6785. msgid ""
  6786. "Feedrate (speed) while moving vertically\n"
  6787. "(on Z plane)."
  6788. msgstr ""
  6789. #: flatcamGUI/FlatCAMGUI.py:7491 flatcamTools/ToolSolderPaste.py:233
  6790. msgid "Feedrate Z Dispense"
  6791. msgstr ""
  6792. #: flatcamGUI/FlatCAMGUI.py:7493
  6793. msgid ""
  6794. "Feedrate (speed) while moving up vertically\n"
  6795. "to Dispense position (on Z plane)."
  6796. msgstr ""
  6797. #: flatcamGUI/FlatCAMGUI.py:7501 flatcamTools/ToolSolderPaste.py:242
  6798. msgid "Spindle Speed FWD"
  6799. msgstr ""
  6800. #: flatcamGUI/FlatCAMGUI.py:7503 flatcamTools/ToolSolderPaste.py:244
  6801. msgid ""
  6802. "The dispenser speed while pushing solder paste\n"
  6803. "through the dispenser nozzle."
  6804. msgstr ""
  6805. #: flatcamGUI/FlatCAMGUI.py:7511 flatcamTools/ToolSolderPaste.py:251
  6806. msgid "Dwell FWD"
  6807. msgstr ""
  6808. #: flatcamGUI/FlatCAMGUI.py:7513 flatcamTools/ToolSolderPaste.py:253
  6809. msgid "Pause after solder dispensing."
  6810. msgstr ""
  6811. #: flatcamGUI/FlatCAMGUI.py:7520 flatcamTools/ToolSolderPaste.py:259
  6812. msgid "Spindle Speed REV"
  6813. msgstr ""
  6814. #: flatcamGUI/FlatCAMGUI.py:7522 flatcamTools/ToolSolderPaste.py:261
  6815. msgid ""
  6816. "The dispenser speed while retracting solder paste\n"
  6817. "through the dispenser nozzle."
  6818. msgstr ""
  6819. #: flatcamGUI/FlatCAMGUI.py:7530 flatcamTools/ToolSolderPaste.py:268
  6820. msgid "Dwell REV"
  6821. msgstr ""
  6822. #: flatcamGUI/FlatCAMGUI.py:7532 flatcamTools/ToolSolderPaste.py:270
  6823. msgid ""
  6824. "Pause after solder paste dispenser retracted,\n"
  6825. "to allow pressure equilibrium."
  6826. msgstr ""
  6827. #: flatcamGUI/FlatCAMGUI.py:7539 flatcamGUI/ObjectUI.py:1297
  6828. #: flatcamTools/ToolSolderPaste.py:276
  6829. msgid "PostProcessor"
  6830. msgstr ""
  6831. #: flatcamGUI/FlatCAMGUI.py:7541 flatcamTools/ToolSolderPaste.py:278
  6832. msgid "Files that control the GCode generation."
  6833. msgstr ""
  6834. #: flatcamGUI/FlatCAMGUI.py:7556
  6835. msgid "Substractor Tool Options"
  6836. msgstr ""
  6837. #: flatcamGUI/FlatCAMGUI.py:7561
  6838. msgid ""
  6839. "A tool to substract one Gerber or Geometry object\n"
  6840. "from another of the same type."
  6841. msgstr ""
  6842. #: flatcamGUI/FlatCAMGUI.py:7566 flatcamTools/ToolSub.py:135
  6843. msgid "Close paths"
  6844. msgstr ""
  6845. #: flatcamGUI/FlatCAMGUI.py:7567 flatcamTools/ToolSub.py:136
  6846. msgid ""
  6847. "Checking this will close the paths cut by the Geometry substractor object."
  6848. msgstr ""
  6849. #: flatcamGUI/FlatCAMGUI.py:7578
  6850. msgid "Excellon File associations"
  6851. msgstr ""
  6852. #: flatcamGUI/FlatCAMGUI.py:7581 flatcamGUI/FlatCAMGUI.py:7614
  6853. #: flatcamGUI/FlatCAMGUI.py:7647
  6854. msgid "Extensions list"
  6855. msgstr ""
  6856. #: flatcamGUI/FlatCAMGUI.py:7583 flatcamGUI/FlatCAMGUI.py:7616
  6857. #: flatcamGUI/FlatCAMGUI.py:7649
  6858. msgid ""
  6859. "List of file extensions to be\n"
  6860. "associated with FlatCAM."
  6861. msgstr ""
  6862. #: flatcamGUI/FlatCAMGUI.py:7597 flatcamGUI/FlatCAMGUI.py:7630
  6863. #: flatcamGUI/FlatCAMGUI.py:7662
  6864. msgid ""
  6865. "Apply the file associations between\n"
  6866. "FlatCAM and the files with above extensions.\n"
  6867. "They will be active after next logon.\n"
  6868. "This work only in Windows."
  6869. msgstr ""
  6870. #: flatcamGUI/FlatCAMGUI.py:7611
  6871. msgid "GCode File associations"
  6872. msgstr ""
  6873. #: flatcamGUI/FlatCAMGUI.py:7644
  6874. msgid "Gerber File associations"
  6875. msgstr ""
  6876. #: flatcamGUI/FlatCAMGUI.py:7691 flatcamGUI/FlatCAMGUI.py:7697
  6877. msgid "Idle."
  6878. msgstr ""
  6879. #: flatcamGUI/FlatCAMGUI.py:7722
  6880. msgid "Application started ..."
  6881. msgstr ""
  6882. #: flatcamGUI/FlatCAMGUI.py:7723
  6883. msgid "Hello!"
  6884. msgstr ""
  6885. #: flatcamGUI/ObjectUI.py:33
  6886. msgid "FlatCAM Object"
  6887. msgstr ""
  6888. #: flatcamGUI/ObjectUI.py:58
  6889. msgid ""
  6890. "BASIC is suitable for a beginner. Many parameters\n"
  6891. "are hidden from the user in this mode.\n"
  6892. "ADVANCED mode will make available all parameters.\n"
  6893. "\n"
  6894. "To change the application LEVEL, go to:\n"
  6895. "Edit -> Preferences -> General and check:\n"
  6896. "'APP. LEVEL' radio button."
  6897. msgstr ""
  6898. #: flatcamGUI/ObjectUI.py:81
  6899. msgid "Change the size of the object."
  6900. msgstr ""
  6901. #: flatcamGUI/ObjectUI.py:89
  6902. msgid "Factor"
  6903. msgstr ""
  6904. #: flatcamGUI/ObjectUI.py:91
  6905. msgid ""
  6906. "Factor by which to multiply\n"
  6907. "geometric features of this object."
  6908. msgstr ""
  6909. #: flatcamGUI/ObjectUI.py:102
  6910. msgid "Perform scaling operation."
  6911. msgstr ""
  6912. #: flatcamGUI/ObjectUI.py:110
  6913. msgid "Change the position of this object."
  6914. msgstr ""
  6915. #: flatcamGUI/ObjectUI.py:117
  6916. msgid "Vector"
  6917. msgstr ""
  6918. #: flatcamGUI/ObjectUI.py:119
  6919. msgid ""
  6920. "Amount by which to move the object\n"
  6921. "in the x and y axes in (x, y) format."
  6922. msgstr ""
  6923. #: flatcamGUI/ObjectUI.py:129
  6924. msgid "Perform the offset operation."
  6925. msgstr ""
  6926. #: flatcamGUI/ObjectUI.py:143
  6927. msgid "Gerber Object"
  6928. msgstr ""
  6929. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:574
  6930. #: flatcamGUI/ObjectUI.py:900 flatcamGUI/ObjectUI.py:1423
  6931. msgid "Name"
  6932. msgstr ""
  6933. #: flatcamGUI/ObjectUI.py:203
  6934. msgid ""
  6935. "Toggle the display of the Gerber Apertures Table.\n"
  6936. "When unchecked, it will delete all mark shapes\n"
  6937. "that are drawn on canvas."
  6938. msgstr ""
  6939. #: flatcamGUI/ObjectUI.py:213
  6940. msgid "Mark All"
  6941. msgstr ""
  6942. #: flatcamGUI/ObjectUI.py:215
  6943. msgid ""
  6944. "When checked it will display all the apertures.\n"
  6945. "When unchecked, it will delete all mark shapes\n"
  6946. "that are drawn on canvas."
  6947. msgstr ""
  6948. #: flatcamGUI/ObjectUI.py:243
  6949. msgid "Mark the aperture instances on canvas."
  6950. msgstr ""
  6951. #: flatcamGUI/ObjectUI.py:266
  6952. msgid ""
  6953. "Diameter of the cutting tool.\n"
  6954. "If you want to have an isolation path\n"
  6955. "inside the actual shape of the Gerber\n"
  6956. "feature, use a negative value for\n"
  6957. "this parameter."
  6958. msgstr ""
  6959. #: flatcamGUI/ObjectUI.py:324
  6960. msgid "Except"
  6961. msgstr ""
  6962. #: flatcamGUI/ObjectUI.py:325
  6963. msgid ""
  6964. "When the isolation geometry is generated,\n"
  6965. "by checking this, the area of the object bellow\n"
  6966. "will be subtracted from the isolation geometry."
  6967. msgstr ""
  6968. #: flatcamGUI/ObjectUI.py:350 flatcamTools/ToolCutOut.py:53
  6969. #: flatcamTools/ToolNonCopperClear.py:69 flatcamTools/ToolPaint.py:68
  6970. msgid "Obj Type"
  6971. msgstr ""
  6972. #: flatcamGUI/ObjectUI.py:352
  6973. msgid ""
  6974. "Specify the type of object to be excepted from isolation.\n"
  6975. "It can be of type: Gerber or Geometry.\n"
  6976. "What is selected here will dictate the kind\n"
  6977. "of objects that will populate the 'Object' combobox."
  6978. msgstr ""
  6979. #: flatcamGUI/ObjectUI.py:365 flatcamTools/ToolCutOut.py:69
  6980. #: flatcamTools/ToolNonCopperClear.py:87 flatcamTools/ToolPaint.py:86
  6981. #: flatcamTools/ToolPanelize.py:71 flatcamTools/ToolPanelize.py:84
  6982. msgid "Object"
  6983. msgstr ""
  6984. #: flatcamGUI/ObjectUI.py:366
  6985. msgid "Object whose area will be removed from isolation geometry."
  6986. msgstr ""
  6987. #: flatcamGUI/ObjectUI.py:370
  6988. msgid "Generate Isolation Geometry"
  6989. msgstr ""
  6990. #: flatcamGUI/ObjectUI.py:372
  6991. msgid ""
  6992. "Create a Geometry object with toolpaths to cut \n"
  6993. "isolation outside, inside or on both sides of the\n"
  6994. "object. For a Gerber object outside means outside\n"
  6995. "of the Gerber feature and inside means inside of\n"
  6996. "the Gerber feature, if possible at all. This means\n"
  6997. "that only if the Gerber feature has openings inside, they\n"
  6998. "will be isolated. If what is wanted is to cut isolation\n"
  6999. "inside the actual Gerber feature, use a negative tool\n"
  7000. "diameter above."
  7001. msgstr ""
  7002. #: flatcamGUI/ObjectUI.py:384
  7003. msgid "Buffer Solid Geometry"
  7004. msgstr ""
  7005. #: flatcamGUI/ObjectUI.py:386
  7006. msgid ""
  7007. "This button is shown only when the Gerber file\n"
  7008. "is loaded without buffering.\n"
  7009. "Clicking this will create the buffered geometry\n"
  7010. "required for isolation."
  7011. msgstr ""
  7012. #: flatcamGUI/ObjectUI.py:393
  7013. msgid "FULL Geo"
  7014. msgstr ""
  7015. #: flatcamGUI/ObjectUI.py:395
  7016. msgid ""
  7017. "Create the Geometry Object\n"
  7018. "for isolation routing. It contains both\n"
  7019. "the interiors and exteriors geometry."
  7020. msgstr ""
  7021. #: flatcamGUI/ObjectUI.py:404
  7022. msgid "Ext Geo"
  7023. msgstr ""
  7024. #: flatcamGUI/ObjectUI.py:406
  7025. msgid ""
  7026. "Create the Geometry Object\n"
  7027. "for isolation routing containing\n"
  7028. "only the exteriors geometry."
  7029. msgstr ""
  7030. #: flatcamGUI/ObjectUI.py:413
  7031. msgid "Int Geo"
  7032. msgstr ""
  7033. #: flatcamGUI/ObjectUI.py:415
  7034. msgid ""
  7035. "Create the Geometry Object\n"
  7036. "for isolation routing containing\n"
  7037. "only the interiors geometry."
  7038. msgstr ""
  7039. #: flatcamGUI/ObjectUI.py:445
  7040. msgid "Clear N-copper"
  7041. msgstr ""
  7042. #: flatcamGUI/ObjectUI.py:454 flatcamTools/ToolNonCopperClear.py:442
  7043. msgid ""
  7044. "Create the Geometry Object\n"
  7045. "for non-copper routing."
  7046. msgstr ""
  7047. #: flatcamGUI/ObjectUI.py:461
  7048. msgid "Board cutout"
  7049. msgstr ""
  7050. #: flatcamGUI/ObjectUI.py:468 flatcamTools/ToolCutOut.py:343
  7051. msgid "Cutout Tool"
  7052. msgstr ""
  7053. #: flatcamGUI/ObjectUI.py:470
  7054. msgid ""
  7055. "Generate the geometry for\n"
  7056. "the board cutout."
  7057. msgstr ""
  7058. #: flatcamGUI/ObjectUI.py:508 flatcamGUI/ObjectUI.py:540
  7059. #: flatcamTools/ToolCutOut.py:183 flatcamTools/ToolCutOut.py:203
  7060. #: flatcamTools/ToolCutOut.py:254 flatcamTools/ToolSolderPaste.py:127
  7061. msgid "Generate Geo"
  7062. msgstr ""
  7063. #: flatcamGUI/ObjectUI.py:515
  7064. msgid ""
  7065. "Create a geometry surrounding the Gerber object.\n"
  7066. "Square shape."
  7067. msgstr ""
  7068. #: flatcamGUI/ObjectUI.py:542
  7069. msgid "Generate the Geometry object."
  7070. msgstr ""
  7071. #: flatcamGUI/ObjectUI.py:554
  7072. msgid "Excellon Object"
  7073. msgstr ""
  7074. #: flatcamGUI/ObjectUI.py:565
  7075. msgid "Solid circles."
  7076. msgstr ""
  7077. #: flatcamGUI/ObjectUI.py:613
  7078. msgid "Drills"
  7079. msgstr ""
  7080. #: flatcamGUI/ObjectUI.py:618
  7081. msgid ""
  7082. "This is the Tool Number.\n"
  7083. "When ToolChange is checked, on toolchange event this value\n"
  7084. "will be showed as a T1, T2 ... Tn in the Machine Code.\n"
  7085. "\n"
  7086. "Here the tools are selected for G-code generation."
  7087. msgstr ""
  7088. #: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:965
  7089. #: flatcamTools/ToolPaint.py:120
  7090. msgid ""
  7091. "Tool Diameter. It's value (in current FlatCAM units) \n"
  7092. "is the cut width into the material."
  7093. msgstr ""
  7094. #: flatcamGUI/ObjectUI.py:626
  7095. msgid ""
  7096. "The number of Drill holes. Holes that are drilled with\n"
  7097. "a drill bit."
  7098. msgstr ""
  7099. #: flatcamGUI/ObjectUI.py:629
  7100. msgid ""
  7101. "The number of Slot holes. Holes that are created by\n"
  7102. "milling them with an endmill bit."
  7103. msgstr ""
  7104. #: flatcamGUI/ObjectUI.py:636
  7105. msgid ""
  7106. "Toggle display of the drills for the current tool.\n"
  7107. "This does not select the tools for G-code generation."
  7108. msgstr ""
  7109. #: flatcamGUI/ObjectUI.py:645
  7110. msgid ""
  7111. "Create a CNC Job object\n"
  7112. "for this drill object."
  7113. msgstr ""
  7114. #: flatcamGUI/ObjectUI.py:682 flatcamGUI/ObjectUI.py:1177
  7115. msgid "Tool change Z"
  7116. msgstr ""
  7117. #: flatcamGUI/ObjectUI.py:799
  7118. msgid ""
  7119. "Select from the Tools Table above\n"
  7120. "the hole dias that are to be drilled.\n"
  7121. "Use the # column to make the selection."
  7122. msgstr ""
  7123. #: flatcamGUI/ObjectUI.py:809
  7124. msgid ""
  7125. "Choose what to use for GCode generation:\n"
  7126. "'Drills', 'Slots' or 'Both'.\n"
  7127. "When choosing 'Slots' or 'Both', slots will be\n"
  7128. "converted to a series of drills."
  7129. msgstr ""
  7130. #: flatcamGUI/ObjectUI.py:824
  7131. msgid "Create Drills GCode"
  7132. msgstr ""
  7133. #: flatcamGUI/ObjectUI.py:826
  7134. msgid "Generate the CNC Job."
  7135. msgstr ""
  7136. #: flatcamGUI/ObjectUI.py:838
  7137. msgid ""
  7138. "Select from the Tools Table above\n"
  7139. "the hole dias that are to be milled.\n"
  7140. "Use the # column to make the selection."
  7141. msgstr ""
  7142. #: flatcamGUI/ObjectUI.py:853
  7143. msgid "Mill Drills Geo"
  7144. msgstr ""
  7145. #: flatcamGUI/ObjectUI.py:855
  7146. msgid ""
  7147. "Create the Geometry Object\n"
  7148. "for milling DRILLS toolpaths."
  7149. msgstr ""
  7150. #: flatcamGUI/ObjectUI.py:870
  7151. msgid "Mill Slots Geo"
  7152. msgstr ""
  7153. #: flatcamGUI/ObjectUI.py:872
  7154. msgid ""
  7155. "Create the Geometry Object\n"
  7156. "for milling SLOTS toolpaths."
  7157. msgstr ""
  7158. #: flatcamGUI/ObjectUI.py:890
  7159. msgid "Geometry Object"
  7160. msgstr ""
  7161. #: flatcamGUI/ObjectUI.py:921
  7162. msgid ""
  7163. "Tools in this Geometry object used for cutting.\n"
  7164. "The 'Offset' entry will set an offset for the cut.\n"
  7165. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7166. "'Type' entry is only informative and it allow to know the \n"
  7167. "intent of using the current tool. \n"
  7168. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7169. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7170. "ball(B), or V-Shaped(V). \n"
  7171. "When V-shaped is selected the 'Type' entry is automatically \n"
  7172. "set to Isolation, the CutZ parameter in the UI form is\n"
  7173. "grayed out and Cut Z is automatically calculated from the newly \n"
  7174. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  7175. msgstr ""
  7176. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  7177. msgid "Dia"
  7178. msgstr ""
  7179. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  7180. #: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
  7181. msgid "TT"
  7182. msgstr ""
  7183. #: flatcamGUI/ObjectUI.py:959
  7184. msgid ""
  7185. "This is the Tool Number.\n"
  7186. "When ToolChange is checked, on toolchange event this value\n"
  7187. "will be showed as a T1, T2 ... Tn"
  7188. msgstr ""
  7189. #: flatcamGUI/ObjectUI.py:970
  7190. msgid ""
  7191. "The value for the Offset can be:\n"
  7192. "- Path -> There is no offset, the tool cut will be done through the geometry "
  7193. "line.\n"
  7194. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  7195. "'pocket'.\n"
  7196. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  7197. msgstr ""
  7198. #: flatcamGUI/ObjectUI.py:977
  7199. msgid ""
  7200. "The (Operation) Type has only informative value. Usually the UI form "
  7201. "values \n"
  7202. "are choose based on the operation type and this will serve as a reminder.\n"
  7203. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  7204. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  7205. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  7206. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  7207. "tip."
  7208. msgstr ""
  7209. #: flatcamGUI/ObjectUI.py:986
  7210. msgid ""
  7211. "The Tool Type (TT) can be:\n"
  7212. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  7213. "cut width in material\n"
  7214. "is exactly the tool diameter.\n"
  7215. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  7216. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  7217. "two additional UI form\n"
  7218. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  7219. "the Z-Cut parameter such\n"
  7220. "as the cut width into material will be equal with the value in the Tool "
  7221. "Diameter column of this table.\n"
  7222. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  7223. "as Isolation."
  7224. msgstr ""
  7225. #: flatcamGUI/ObjectUI.py:998
  7226. msgid ""
  7227. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  7228. "that holds the geometry\n"
  7229. "data into the tools. For those geometries, deleting the tool will delete the "
  7230. "geometry data also,\n"
  7231. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  7232. "plot on canvas\n"
  7233. "for the corresponding tool."
  7234. msgstr ""
  7235. #: flatcamGUI/ObjectUI.py:1011
  7236. msgid "Tool Offset"
  7237. msgstr ""
  7238. #: flatcamGUI/ObjectUI.py:1014
  7239. msgid ""
  7240. "The value to offset the cut when \n"
  7241. "the Offset type selected is 'Offset'.\n"
  7242. "The value can be positive for 'outside'\n"
  7243. "cut and negative for 'inside' cut."
  7244. msgstr ""
  7245. #: flatcamGUI/ObjectUI.py:1056 flatcamTools/ToolNonCopperClear.py:239
  7246. #: flatcamTools/ToolPaint.py:178
  7247. msgid ""
  7248. "Add a new tool to the Tool Table\n"
  7249. "with the diameter specified above."
  7250. msgstr ""
  7251. #: flatcamGUI/ObjectUI.py:1064
  7252. msgid ""
  7253. "Copy a selection of tools in the Tool Table\n"
  7254. "by first selecting a row in the Tool Table."
  7255. msgstr ""
  7256. #: flatcamGUI/ObjectUI.py:1072
  7257. msgid ""
  7258. "Delete a selection of tools in the Tool Table\n"
  7259. "by first selecting a row in the Tool Table."
  7260. msgstr ""
  7261. #: flatcamGUI/ObjectUI.py:1088
  7262. msgid "Tool Data"
  7263. msgstr ""
  7264. #: flatcamGUI/ObjectUI.py:1091
  7265. msgid ""
  7266. "The data used for creating GCode.\n"
  7267. "Each tool store it's own set of such data."
  7268. msgstr ""
  7269. #: flatcamGUI/ObjectUI.py:1158
  7270. msgid "Depth of each pass (positive)."
  7271. msgstr ""
  7272. #: flatcamGUI/ObjectUI.py:1332
  7273. msgid ""
  7274. "Add at least one tool in the tool-table.\n"
  7275. "Click the header to select all, or Ctrl + LMB\n"
  7276. "for custom selection of tools."
  7277. msgstr ""
  7278. #: flatcamGUI/ObjectUI.py:1339
  7279. msgid "Generate"
  7280. msgstr ""
  7281. #: flatcamGUI/ObjectUI.py:1341
  7282. msgid "Generate the CNC Job object."
  7283. msgstr ""
  7284. #: flatcamGUI/ObjectUI.py:1348
  7285. msgid "Paint Area"
  7286. msgstr ""
  7287. #: flatcamGUI/ObjectUI.py:1362
  7288. msgid "Launch Paint Tool in Tools Tab."
  7289. msgstr ""
  7290. #: flatcamGUI/ObjectUI.py:1378
  7291. msgid "CNC Job Object"
  7292. msgstr ""
  7293. #: flatcamGUI/ObjectUI.py:1429
  7294. msgid "Travelled dist."
  7295. msgstr ""
  7296. #: flatcamGUI/ObjectUI.py:1431 flatcamGUI/ObjectUI.py:1436
  7297. msgid ""
  7298. "This is the total travelled distance on X-Y plane.\n"
  7299. "In current units."
  7300. msgstr ""
  7301. #: flatcamGUI/ObjectUI.py:1441
  7302. msgid "Estimated time"
  7303. msgstr ""
  7304. #: flatcamGUI/ObjectUI.py:1443 flatcamGUI/ObjectUI.py:1448
  7305. msgid ""
  7306. "This is the estimated time to do the routing/drilling,\n"
  7307. "without the time spent in ToolChange events."
  7308. msgstr ""
  7309. #: flatcamGUI/ObjectUI.py:1483
  7310. msgid "CNC Tools Table"
  7311. msgstr ""
  7312. #: flatcamGUI/ObjectUI.py:1486
  7313. msgid ""
  7314. "Tools in this CNCJob object used for cutting.\n"
  7315. "The tool diameter is used for plotting on canvas.\n"
  7316. "The 'Offset' entry will set an offset for the cut.\n"
  7317. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7318. "'Type' entry is only informative and it allow to know the \n"
  7319. "intent of using the current tool. \n"
  7320. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7321. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7322. "ball(B), or V-Shaped(V)."
  7323. msgstr ""
  7324. #: flatcamGUI/ObjectUI.py:1518
  7325. msgid "P"
  7326. msgstr ""
  7327. #: flatcamGUI/ObjectUI.py:1524
  7328. msgid "Update Plot"
  7329. msgstr ""
  7330. #: flatcamGUI/ObjectUI.py:1526
  7331. msgid "Update the plot."
  7332. msgstr ""
  7333. #: flatcamGUI/ObjectUI.py:1541
  7334. msgid "Prepend to CNC Code"
  7335. msgstr ""
  7336. #: flatcamGUI/ObjectUI.py:1552
  7337. msgid "Append to CNC Code"
  7338. msgstr ""
  7339. #: flatcamGUI/ObjectUI.py:1620
  7340. msgid "z_cut = depth where to cut"
  7341. msgstr ""
  7342. #: flatcamGUI/ObjectUI.py:1621
  7343. msgid "z_move = height where to travel"
  7344. msgstr ""
  7345. #: flatcamGUI/ObjectUI.py:1640
  7346. msgid "View CNC Code"
  7347. msgstr ""
  7348. #: flatcamGUI/ObjectUI.py:1642
  7349. msgid ""
  7350. "Opens TAB to view/modify/print G-Code\n"
  7351. "file."
  7352. msgstr ""
  7353. #: flatcamGUI/ObjectUI.py:1647
  7354. msgid "Save CNC Code"
  7355. msgstr ""
  7356. #: flatcamGUI/ObjectUI.py:1649
  7357. msgid ""
  7358. "Opens dialog to save G-Code\n"
  7359. "file."
  7360. msgstr ""
  7361. #: flatcamParsers/ParseFont.py:305
  7362. msgid "Font not supported, try another one."
  7363. msgstr ""
  7364. #: flatcamTools/ToolCalculators.py:24
  7365. msgid "Calculators"
  7366. msgstr ""
  7367. #: flatcamTools/ToolCalculators.py:26
  7368. msgid "Units Calculator"
  7369. msgstr ""
  7370. #: flatcamTools/ToolCalculators.py:68
  7371. msgid "Here you enter the value to be converted from INCH to MM"
  7372. msgstr ""
  7373. #: flatcamTools/ToolCalculators.py:73
  7374. msgid "Here you enter the value to be converted from MM to INCH"
  7375. msgstr ""
  7376. #: flatcamTools/ToolCalculators.py:104
  7377. msgid ""
  7378. "This is the angle of the tip of the tool.\n"
  7379. "It is specified by manufacturer."
  7380. msgstr ""
  7381. #: flatcamTools/ToolCalculators.py:111
  7382. msgid ""
  7383. "This is the depth to cut into the material.\n"
  7384. "In the CNCJob is the CutZ parameter."
  7385. msgstr ""
  7386. #: flatcamTools/ToolCalculators.py:114
  7387. msgid "Tool Diameter"
  7388. msgstr ""
  7389. #: flatcamTools/ToolCalculators.py:118
  7390. msgid ""
  7391. "This is the tool diameter to be entered into\n"
  7392. "FlatCAM Gerber section.\n"
  7393. "In the CNCJob section it is called >Tool dia<."
  7394. msgstr ""
  7395. #: flatcamTools/ToolCalculators.py:129 flatcamTools/ToolCalculators.py:210
  7396. msgid "Calculate"
  7397. msgstr ""
  7398. #: flatcamTools/ToolCalculators.py:132
  7399. msgid ""
  7400. "Calculate either the Cut Z or the effective tool diameter,\n"
  7401. " depending on which is desired and which is known. "
  7402. msgstr ""
  7403. #: flatcamTools/ToolCalculators.py:186
  7404. msgid "Current Value"
  7405. msgstr ""
  7406. #: flatcamTools/ToolCalculators.py:190
  7407. msgid ""
  7408. "This is the current intensity value\n"
  7409. "to be set on the Power Supply. In Amps."
  7410. msgstr ""
  7411. #: flatcamTools/ToolCalculators.py:194
  7412. msgid "Time"
  7413. msgstr ""
  7414. #: flatcamTools/ToolCalculators.py:198
  7415. msgid ""
  7416. "This is the calculated time required for the procedure.\n"
  7417. "In minutes."
  7418. msgstr ""
  7419. #: flatcamTools/ToolCalculators.py:213
  7420. msgid ""
  7421. "Calculate the current intensity value and the procedure time,\n"
  7422. "depending on the parameters above"
  7423. msgstr ""
  7424. #: flatcamTools/ToolCalculators.py:262
  7425. msgid "Calc. Tool"
  7426. msgstr ""
  7427. #: flatcamTools/ToolCutOut.py:18
  7428. msgid "Cutout PCB"
  7429. msgstr ""
  7430. #: flatcamTools/ToolCutOut.py:55
  7431. msgid ""
  7432. "Specify the type of object to be cutout.\n"
  7433. "It can be of type: Gerber or Geometry.\n"
  7434. "What is selected here will dictate the kind\n"
  7435. "of objects that will populate the 'Object' combobox."
  7436. msgstr ""
  7437. #: flatcamTools/ToolCutOut.py:71
  7438. msgid "Object to be cutout. "
  7439. msgstr ""
  7440. #: flatcamTools/ToolCutOut.py:100
  7441. msgid "Margin:"
  7442. msgstr ""
  7443. #: flatcamTools/ToolCutOut.py:110
  7444. msgid "Gap size:"
  7445. msgstr ""
  7446. #: flatcamTools/ToolCutOut.py:137
  7447. msgid "A. Automatic Bridge Gaps"
  7448. msgstr ""
  7449. #: flatcamTools/ToolCutOut.py:139
  7450. msgid "This section handle creation of automatic bridge gaps."
  7451. msgstr ""
  7452. #: flatcamTools/ToolCutOut.py:150
  7453. msgid ""
  7454. "Number of gaps used for the Automatic cutout.\n"
  7455. "There can be maximum 8 bridges/gaps.\n"
  7456. "The choices are:\n"
  7457. "- None - no gaps\n"
  7458. "- lr - left + right\n"
  7459. "- tb - top + bottom\n"
  7460. "- 4 - left + right +top + bottom\n"
  7461. "- 2lr - 2*left + 2*right\n"
  7462. "- 2tb - 2*top + 2*bottom\n"
  7463. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7464. msgstr ""
  7465. #: flatcamTools/ToolCutOut.py:174
  7466. msgid "FreeForm"
  7467. msgstr ""
  7468. #: flatcamTools/ToolCutOut.py:176
  7469. msgid ""
  7470. "The cutout shape can be of ny shape.\n"
  7471. "Useful when the PCB has a non-rectangular shape."
  7472. msgstr ""
  7473. #: flatcamTools/ToolCutOut.py:185
  7474. msgid ""
  7475. "Cutout the selected object.\n"
  7476. "The cutout shape can be of any shape.\n"
  7477. "Useful when the PCB has a non-rectangular shape."
  7478. msgstr ""
  7479. #: flatcamTools/ToolCutOut.py:194
  7480. msgid "Rectangular"
  7481. msgstr ""
  7482. #: flatcamTools/ToolCutOut.py:196
  7483. msgid ""
  7484. "The resulting cutout shape is\n"
  7485. "always a rectangle shape and it will be\n"
  7486. "the bounding box of the Object."
  7487. msgstr ""
  7488. #: flatcamTools/ToolCutOut.py:205
  7489. msgid ""
  7490. "Cutout the selected object.\n"
  7491. "The resulting cutout shape is\n"
  7492. "always a rectangle shape and it will be\n"
  7493. "the bounding box of the Object."
  7494. msgstr ""
  7495. #: flatcamTools/ToolCutOut.py:213
  7496. msgid "B. Manual Bridge Gaps"
  7497. msgstr ""
  7498. #: flatcamTools/ToolCutOut.py:215
  7499. msgid ""
  7500. "This section handle creation of manual bridge gaps.\n"
  7501. "This is done by mouse clicking on the perimeter of the\n"
  7502. "Geometry object that is used as a cutout object. "
  7503. msgstr ""
  7504. #: flatcamTools/ToolCutOut.py:231
  7505. msgid "Geo Obj"
  7506. msgstr ""
  7507. #: flatcamTools/ToolCutOut.py:233
  7508. msgid "Geometry object used to create the manual cutout."
  7509. msgstr ""
  7510. #: flatcamTools/ToolCutOut.py:244
  7511. msgid "Manual Geo"
  7512. msgstr ""
  7513. #: flatcamTools/ToolCutOut.py:246 flatcamTools/ToolCutOut.py:256
  7514. msgid ""
  7515. "If the object to be cutout is a Gerber\n"
  7516. "first create a Geometry that surrounds it,\n"
  7517. "to be used as the cutout, if one doesn't exist yet.\n"
  7518. "Select the source Gerber file in the top object combobox."
  7519. msgstr ""
  7520. #: flatcamTools/ToolCutOut.py:266
  7521. msgid "Manual Add Bridge Gaps"
  7522. msgstr ""
  7523. #: flatcamTools/ToolCutOut.py:268
  7524. msgid ""
  7525. "Use the left mouse button (LMB) click\n"
  7526. "to create a bridge gap to separate the PCB from\n"
  7527. "the surrounding material."
  7528. msgstr ""
  7529. #: flatcamTools/ToolCutOut.py:275
  7530. msgid "Generate Gap"
  7531. msgstr ""
  7532. #: flatcamTools/ToolCutOut.py:277
  7533. msgid ""
  7534. "Use the left mouse button (LMB) click\n"
  7535. "to create a bridge gap to separate the PCB from\n"
  7536. "the surrounding material.\n"
  7537. "The LMB click has to be done on the perimeter of\n"
  7538. "the Geometry object used as a cutout geometry."
  7539. msgstr ""
  7540. #: flatcamTools/ToolCutOut.py:371 flatcamTools/ToolCutOut.py:571
  7541. #: flatcamTools/ToolNonCopperClear.py:1124
  7542. #: flatcamTools/ToolNonCopperClear.py:1265 flatcamTools/ToolPaint.py:1149
  7543. #: flatcamTools/ToolPanelize.py:359 flatcamTools/ToolPanelize.py:376
  7544. #: flatcamTools/ToolSub.py:254 flatcamTools/ToolSub.py:269
  7545. #: flatcamTools/ToolSub.py:456 flatcamTools/ToolSub.py:471
  7546. #: tclCommands/TclCommandCopperClear.py:131
  7547. #: tclCommands/TclCommandCopperClear.py:207 tclCommands/TclCommandPaint.py:133
  7548. msgid "Could not retrieve object"
  7549. msgstr ""
  7550. #: flatcamTools/ToolCutOut.py:376
  7551. msgid ""
  7552. "There is no object selected for Cutout.\n"
  7553. "Select one and try again."
  7554. msgstr ""
  7555. #: flatcamTools/ToolCutOut.py:392 flatcamTools/ToolCutOut.py:590
  7556. #: flatcamTools/ToolCutOut.py:760 flatcamTools/ToolCutOut.py:854
  7557. msgid "Tool Diameter is zero value. Change it to a positive real number."
  7558. msgstr ""
  7559. #: flatcamTools/ToolCutOut.py:408 flatcamTools/ToolCutOut.py:606
  7560. #: flatcamTools/ToolCutOut.py:870
  7561. msgid "Margin value is missing or wrong format. Add it and retry."
  7562. msgstr ""
  7563. #: flatcamTools/ToolCutOut.py:419 flatcamTools/ToolCutOut.py:617
  7564. #: flatcamTools/ToolCutOut.py:771
  7565. msgid "Gap size value is missing or wrong format. Add it and retry."
  7566. msgstr ""
  7567. #: flatcamTools/ToolCutOut.py:425 flatcamTools/ToolCutOut.py:624
  7568. msgid "Number of gaps value is missing. Add it and retry."
  7569. msgstr ""
  7570. #: flatcamTools/ToolCutOut.py:430 flatcamTools/ToolCutOut.py:628
  7571. msgid ""
  7572. "Gaps value can be only one of: 'None', 'lr', 'tb', '2lr', '2tb', 4 or 8. "
  7573. "Fill in a correct value and retry. "
  7574. msgstr ""
  7575. #: flatcamTools/ToolCutOut.py:435 flatcamTools/ToolCutOut.py:634
  7576. msgid ""
  7577. "Cutout operation cannot be done on a multi-geo Geometry.\n"
  7578. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  7579. "Geometry,\n"
  7580. "and after that perform Cutout."
  7581. msgstr ""
  7582. #: flatcamTools/ToolCutOut.py:554 flatcamTools/ToolCutOut.py:739
  7583. msgid "Any form CutOut operation finished."
  7584. msgstr ""
  7585. #: flatcamTools/ToolCutOut.py:575 flatcamTools/ToolNonCopperClear.py:1087
  7586. #, python-format
  7587. msgid "Object not found: %s"
  7588. msgstr ""
  7589. #: flatcamTools/ToolCutOut.py:744
  7590. msgid ""
  7591. "Click on the selected geometry object perimeter to create a bridge gap ..."
  7592. msgstr ""
  7593. #: flatcamTools/ToolCutOut.py:780 flatcamTools/ToolCutOut.py:799
  7594. msgid "Could not retrieve Geometry object"
  7595. msgstr ""
  7596. #: flatcamTools/ToolCutOut.py:804
  7597. msgid "Geometry object for manual cutout not found"
  7598. msgstr ""
  7599. #: flatcamTools/ToolCutOut.py:814
  7600. msgid "Added manual Bridge Gap."
  7601. msgstr ""
  7602. #: flatcamTools/ToolCutOut.py:826
  7603. msgid "Could not retrieve Gerber object"
  7604. msgstr ""
  7605. #: flatcamTools/ToolCutOut.py:831
  7606. msgid ""
  7607. "There is no Gerber object selected for Cutout.\n"
  7608. "Select one and try again."
  7609. msgstr ""
  7610. #: flatcamTools/ToolCutOut.py:837
  7611. msgid ""
  7612. "The selected object has to be of Gerber type.\n"
  7613. "Select a Gerber file and try again."
  7614. msgstr ""
  7615. #: flatcamTools/ToolCutOut.py:892
  7616. msgid "Geometry not supported for cutout"
  7617. msgstr ""
  7618. #: flatcamTools/ToolCutOut.py:928
  7619. msgid "Making manual bridge gap..."
  7620. msgstr ""
  7621. #: flatcamTools/ToolDblSided.py:18
  7622. msgid "2-Sided PCB"
  7623. msgstr ""
  7624. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  7625. #: flatcamTools/ToolDblSided.py:100
  7626. msgid "Mirror"
  7627. msgstr ""
  7628. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  7629. #: flatcamTools/ToolDblSided.py:102
  7630. msgid ""
  7631. "Mirrors (flips) the specified object around \n"
  7632. "the specified axis. Does not create a new \n"
  7633. "object, but modifies it."
  7634. msgstr ""
  7635. #: flatcamTools/ToolDblSided.py:73
  7636. msgid "Excellon Object to be mirrored."
  7637. msgstr ""
  7638. #: flatcamTools/ToolDblSided.py:97
  7639. msgid "Geometry Obj to be mirrored."
  7640. msgstr ""
  7641. #: flatcamTools/ToolDblSided.py:133
  7642. msgid "Axis Ref:"
  7643. msgstr ""
  7644. #: flatcamTools/ToolDblSided.py:152
  7645. msgid "Point/Box Reference"
  7646. msgstr ""
  7647. #: flatcamTools/ToolDblSided.py:154
  7648. msgid ""
  7649. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  7650. "the mirroring axis passes.\n"
  7651. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  7652. "Geo).\n"
  7653. "Through the center of this object pass the mirroring axis selected above."
  7654. msgstr ""
  7655. #: flatcamTools/ToolDblSided.py:162
  7656. msgid ""
  7657. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  7658. "axis \n"
  7659. " selected in 'MIRROR AXIS' pass.\n"
  7660. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  7661. "and left mouse button click on canvas or you can enter the coords manually."
  7662. msgstr ""
  7663. #: flatcamTools/ToolDblSided.py:182 flatcamTools/ToolNonCopperClear.py:420
  7664. #: flatcamTools/ToolPaint.py:318
  7665. msgid "Gerber Reference Box Object"
  7666. msgstr ""
  7667. #: flatcamTools/ToolDblSided.py:183 flatcamTools/ToolNonCopperClear.py:421
  7668. #: flatcamTools/ToolPaint.py:319
  7669. msgid "Excellon Reference Box Object"
  7670. msgstr ""
  7671. #: flatcamTools/ToolDblSided.py:184 flatcamTools/ToolNonCopperClear.py:422
  7672. #: flatcamTools/ToolPaint.py:320
  7673. msgid "Geometry Reference Box Object"
  7674. msgstr ""
  7675. #: flatcamTools/ToolDblSided.py:192
  7676. msgid "Alignment Drill Coordinates"
  7677. msgstr ""
  7678. #: flatcamTools/ToolDblSided.py:194
  7679. msgid ""
  7680. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  7681. "each set of (x, y) coordinates\n"
  7682. "entered here, a pair of drills will be created:\n"
  7683. "\n"
  7684. "- one drill at the coordinates from the field\n"
  7685. "- one drill in mirror position over the axis selected above in the 'Mirror "
  7686. "Axis'."
  7687. msgstr ""
  7688. #: flatcamTools/ToolDblSided.py:209
  7689. msgid ""
  7690. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  7691. "on one side of the mirror axis.\n"
  7692. "\n"
  7693. "The coordinates set can be obtained:\n"
  7694. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  7695. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  7696. "field.\n"
  7697. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  7698. "field and click Paste.\n"
  7699. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  7700. msgstr ""
  7701. #: flatcamTools/ToolDblSided.py:223
  7702. msgid "Alignment Drill Diameter"
  7703. msgstr ""
  7704. #: flatcamTools/ToolDblSided.py:246
  7705. msgid "Create Excellon Object"
  7706. msgstr ""
  7707. #: flatcamTools/ToolDblSided.py:248
  7708. msgid ""
  7709. "Creates an Excellon Object containing the\n"
  7710. "specified alignment holes and their mirror\n"
  7711. "images."
  7712. msgstr ""
  7713. #: flatcamTools/ToolDblSided.py:254
  7714. msgid "Reset"
  7715. msgstr ""
  7716. #: flatcamTools/ToolDblSided.py:256
  7717. msgid "Resets all the fields."
  7718. msgstr ""
  7719. #: flatcamTools/ToolDblSided.py:306
  7720. msgid "2-Sided Tool"
  7721. msgstr ""
  7722. #: flatcamTools/ToolDblSided.py:331
  7723. msgid ""
  7724. "'Point' reference is selected and 'Point' coordinates are missing. Add them "
  7725. "and retry."
  7726. msgstr ""
  7727. #: flatcamTools/ToolDblSided.py:350
  7728. msgid "There is no Box reference object loaded. Load one and retry."
  7729. msgstr ""
  7730. #: flatcamTools/ToolDblSided.py:373
  7731. msgid "No value or wrong format in Drill Dia entry. Add it and retry."
  7732. msgstr ""
  7733. #: flatcamTools/ToolDblSided.py:380
  7734. msgid "There are no Alignment Drill Coordinates to use. Add them and retry."
  7735. msgstr ""
  7736. #: flatcamTools/ToolDblSided.py:403
  7737. msgid "Excellon object with alignment drills created..."
  7738. msgstr ""
  7739. #: flatcamTools/ToolDblSided.py:412
  7740. msgid "There is no Gerber object loaded ..."
  7741. msgstr ""
  7742. #: flatcamTools/ToolDblSided.py:416 flatcamTools/ToolDblSided.py:459
  7743. #: flatcamTools/ToolDblSided.py:503
  7744. msgid "Only Gerber, Excellon and Geometry objects can be mirrored."
  7745. msgstr ""
  7746. #: flatcamTools/ToolDblSided.py:426
  7747. msgid ""
  7748. "'Point' coordinates missing. Using Origin (0, 0) as mirroring reference."
  7749. msgstr ""
  7750. #: flatcamTools/ToolDblSided.py:436 flatcamTools/ToolDblSided.py:480
  7751. #: flatcamTools/ToolDblSided.py:517
  7752. msgid "There is no Box object loaded ..."
  7753. msgstr ""
  7754. #: flatcamTools/ToolDblSided.py:446 flatcamTools/ToolDblSided.py:490
  7755. #: flatcamTools/ToolDblSided.py:527
  7756. msgid "was mirrored"
  7757. msgstr ""
  7758. #: flatcamTools/ToolDblSided.py:455
  7759. msgid "There is no Excellon object loaded ..."
  7760. msgstr ""
  7761. #: flatcamTools/ToolDblSided.py:470
  7762. msgid ""
  7763. "There are no Point coordinates in the Point field. Add coords and try "
  7764. "again ..."
  7765. msgstr ""
  7766. #: flatcamTools/ToolDblSided.py:499
  7767. msgid "There is no Geometry object loaded ..."
  7768. msgstr ""
  7769. #: flatcamTools/ToolFilm.py:25
  7770. msgid "Film PCB"
  7771. msgstr ""
  7772. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  7773. #: flatcamTools/ToolPanelize.py:56 flatcamTools/ToolProperties.py:143
  7774. msgid "Object Type"
  7775. msgstr ""
  7776. #: flatcamTools/ToolFilm.py:58
  7777. msgid ""
  7778. "Specify the type of object for which to create the film.\n"
  7779. "The object can be of type: Gerber or Geometry.\n"
  7780. "The selection here decide the type of objects that will be\n"
  7781. "in the Film Object combobox."
  7782. msgstr ""
  7783. #: flatcamTools/ToolFilm.py:71
  7784. msgid "Film Object"
  7785. msgstr ""
  7786. #: flatcamTools/ToolFilm.py:73
  7787. msgid "Object for which to create the film."
  7788. msgstr ""
  7789. #: flatcamTools/ToolFilm.py:89
  7790. msgid "Box Type:"
  7791. msgstr ""
  7792. #: flatcamTools/ToolFilm.py:91
  7793. msgid ""
  7794. "Specify the type of object to be used as an container for\n"
  7795. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  7796. "the type of objects that will be\n"
  7797. "in the Box Object combobox."
  7798. msgstr ""
  7799. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:126
  7800. msgid "Box Object"
  7801. msgstr ""
  7802. #: flatcamTools/ToolFilm.py:106
  7803. msgid ""
  7804. "The actual object that is used a container for the\n"
  7805. " selected object for which we create the film.\n"
  7806. "Usually it is the PCB outline but it can be also the\n"
  7807. "same object for which the film is created."
  7808. msgstr ""
  7809. #: flatcamTools/ToolFilm.py:114
  7810. msgid "Positive"
  7811. msgstr ""
  7812. #: flatcamTools/ToolFilm.py:115
  7813. msgid "Negative"
  7814. msgstr ""
  7815. #: flatcamTools/ToolFilm.py:116
  7816. msgid "Film Type:"
  7817. msgstr ""
  7818. #: flatcamTools/ToolFilm.py:157
  7819. msgid "Save Film"
  7820. msgstr ""
  7821. #: flatcamTools/ToolFilm.py:159
  7822. msgid ""
  7823. "Create a Film for the selected object, within\n"
  7824. "the specified box. Does not create a new \n"
  7825. " FlatCAM object, but directly save it in SVG format\n"
  7826. "which can be opened with Inkscape."
  7827. msgstr ""
  7828. #: flatcamTools/ToolFilm.py:231
  7829. msgid "No FlatCAM object selected. Load an object for Film and retry."
  7830. msgstr ""
  7831. #: flatcamTools/ToolFilm.py:238
  7832. msgid "No FlatCAM object selected. Load an object for Box and retry."
  7833. msgstr ""
  7834. #: flatcamTools/ToolFilm.py:260
  7835. msgid "Generating Film ..."
  7836. msgstr ""
  7837. #: flatcamTools/ToolFilm.py:265 flatcamTools/ToolFilm.py:269
  7838. msgid "Export SVG positive"
  7839. msgstr ""
  7840. #: flatcamTools/ToolFilm.py:274
  7841. msgid "Export SVG positive cancelled."
  7842. msgstr ""
  7843. #: flatcamTools/ToolFilm.py:281 flatcamTools/ToolFilm.py:285
  7844. msgid "Export SVG negative"
  7845. msgstr ""
  7846. #: flatcamTools/ToolFilm.py:290
  7847. msgid "Export SVG negative cancelled."
  7848. msgstr ""
  7849. #: flatcamTools/ToolImage.py:25
  7850. msgid "Image as Object"
  7851. msgstr ""
  7852. #: flatcamTools/ToolImage.py:31
  7853. msgid "Image to PCB"
  7854. msgstr ""
  7855. #: flatcamTools/ToolImage.py:55
  7856. msgid ""
  7857. "Specify the type of object to create from the image.\n"
  7858. "It can be of type: Gerber or Geometry."
  7859. msgstr ""
  7860. #: flatcamTools/ToolImage.py:63
  7861. msgid "DPI value"
  7862. msgstr ""
  7863. #: flatcamTools/ToolImage.py:65
  7864. msgid "Specify a DPI value for the image."
  7865. msgstr ""
  7866. #: flatcamTools/ToolImage.py:72
  7867. msgid "Level of detail"
  7868. msgstr ""
  7869. #: flatcamTools/ToolImage.py:81
  7870. msgid "Image type"
  7871. msgstr ""
  7872. #: flatcamTools/ToolImage.py:83
  7873. msgid ""
  7874. "Choose a method for the image interpretation.\n"
  7875. "B/W means a black & white image. Color means a colored image."
  7876. msgstr ""
  7877. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  7878. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  7879. msgid "Mask value"
  7880. msgstr ""
  7881. #: flatcamTools/ToolImage.py:92
  7882. msgid ""
  7883. "Mask for monochrome image.\n"
  7884. "Takes values between [0 ... 255].\n"
  7885. "Decides the level of details to include\n"
  7886. "in the resulting geometry.\n"
  7887. "0 means no detail and 255 means everything \n"
  7888. "(which is totally black)."
  7889. msgstr ""
  7890. #: flatcamTools/ToolImage.py:105
  7891. msgid ""
  7892. "Mask for RED color.\n"
  7893. "Takes values between [0 ... 255].\n"
  7894. "Decides the level of details to include\n"
  7895. "in the resulting geometry."
  7896. msgstr ""
  7897. #: flatcamTools/ToolImage.py:116
  7898. msgid ""
  7899. "Mask for GREEN color.\n"
  7900. "Takes values between [0 ... 255].\n"
  7901. "Decides the level of details to include\n"
  7902. "in the resulting geometry."
  7903. msgstr ""
  7904. #: flatcamTools/ToolImage.py:127
  7905. msgid ""
  7906. "Mask for BLUE color.\n"
  7907. "Takes values between [0 ... 255].\n"
  7908. "Decides the level of details to include\n"
  7909. "in the resulting geometry."
  7910. msgstr ""
  7911. #: flatcamTools/ToolImage.py:139
  7912. msgid "Import image"
  7913. msgstr ""
  7914. #: flatcamTools/ToolImage.py:141
  7915. msgid "Open a image of raster type and then import it in FlatCAM."
  7916. msgstr ""
  7917. #: flatcamTools/ToolImage.py:175
  7918. msgid "Image Tool"
  7919. msgstr ""
  7920. #: flatcamTools/ToolImage.py:205 flatcamTools/ToolImage.py:208
  7921. msgid "Import IMAGE"
  7922. msgstr ""
  7923. #: flatcamTools/ToolMeasurement.py:26
  7924. msgid "Measurement"
  7925. msgstr ""
  7926. #: flatcamTools/ToolMeasurement.py:44
  7927. msgid "Those are the units in which the distance is measured."
  7928. msgstr ""
  7929. #: flatcamTools/ToolMeasurement.py:45
  7930. msgid "METRIC (mm)"
  7931. msgstr ""
  7932. #: flatcamTools/ToolMeasurement.py:45
  7933. msgid "INCH (in)"
  7934. msgstr ""
  7935. #: flatcamTools/ToolMeasurement.py:48
  7936. msgid "Start"
  7937. msgstr ""
  7938. #: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:51
  7939. msgid "Coords"
  7940. msgstr ""
  7941. #: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:65
  7942. msgid "This is measuring Start point coordinates."
  7943. msgstr ""
  7944. #: flatcamTools/ToolMeasurement.py:51
  7945. msgid "Stop"
  7946. msgstr ""
  7947. #: flatcamTools/ToolMeasurement.py:52 flatcamTools/ToolMeasurement.py:69
  7948. msgid "This is the measuring Stop point coordinates."
  7949. msgstr ""
  7950. #: flatcamTools/ToolMeasurement.py:54
  7951. msgid "Dx"
  7952. msgstr ""
  7953. #: flatcamTools/ToolMeasurement.py:55 flatcamTools/ToolMeasurement.py:73
  7954. msgid "This is the distance measured over the X axis."
  7955. msgstr ""
  7956. #: flatcamTools/ToolMeasurement.py:57
  7957. msgid "Dy"
  7958. msgstr ""
  7959. #: flatcamTools/ToolMeasurement.py:58 flatcamTools/ToolMeasurement.py:77
  7960. msgid "This is the distance measured over the Y axis."
  7961. msgstr ""
  7962. #: flatcamTools/ToolMeasurement.py:60
  7963. msgid "DISTANCE"
  7964. msgstr ""
  7965. #: flatcamTools/ToolMeasurement.py:61 flatcamTools/ToolMeasurement.py:81
  7966. msgid "This is the point to point Euclidian distance."
  7967. msgstr ""
  7968. #: flatcamTools/ToolMeasurement.py:83
  7969. msgid "Measure"
  7970. msgstr ""
  7971. #: flatcamTools/ToolMeasurement.py:131
  7972. msgid "Meas. Tool"
  7973. msgstr ""
  7974. #: flatcamTools/ToolMeasurement.py:176
  7975. msgid "MEASURING: Click on the Start point ..."
  7976. msgstr ""
  7977. #: flatcamTools/ToolMeasurement.py:269
  7978. msgid "MEASURING: Click on the Destination point ..."
  7979. msgstr ""
  7980. #: flatcamTools/ToolMeasurement.py:277
  7981. #, python-brace-format
  7982. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  7983. msgstr ""
  7984. #: flatcamTools/ToolMove.py:84
  7985. msgid "MOVE: Click on the Start point ..."
  7986. msgstr ""
  7987. #: flatcamTools/ToolMove.py:91
  7988. msgid "MOVE action cancelled. No object(s) to move."
  7989. msgstr ""
  7990. #: flatcamTools/ToolMove.py:113
  7991. msgid "MOVE: Click on the Destination point ..."
  7992. msgstr ""
  7993. #: flatcamTools/ToolMove.py:134
  7994. msgid "Moving..."
  7995. msgstr ""
  7996. #: flatcamTools/ToolMove.py:137
  7997. msgid "No object(s) selected."
  7998. msgstr ""
  7999. #: flatcamTools/ToolMove.py:162
  8000. msgid "ToolMove.on_left_click()"
  8001. msgstr ""
  8002. #: flatcamTools/ToolMove.py:179
  8003. msgid "ToolMove.on_left_click() --> Error when mouse left click."
  8004. msgstr ""
  8005. #: flatcamTools/ToolMove.py:215
  8006. msgid "Move action cancelled."
  8007. msgstr ""
  8008. #: flatcamTools/ToolMove.py:227
  8009. msgid "Object(s) not selected"
  8010. msgstr ""
  8011. #: flatcamTools/ToolNonCopperClear.py:26
  8012. msgid "Non-Copper Clearing"
  8013. msgstr ""
  8014. #: flatcamTools/ToolNonCopperClear.py:71
  8015. msgid ""
  8016. "Specify the type of object to be cleared of excess copper.\n"
  8017. "It can be of type: Gerber or Geometry.\n"
  8018. "What is selected here will dictate the kind\n"
  8019. "of objects that will populate the 'Object' combobox."
  8020. msgstr ""
  8021. #: flatcamTools/ToolNonCopperClear.py:88
  8022. msgid "Object to be cleared of excess copper."
  8023. msgstr ""
  8024. #: flatcamTools/ToolNonCopperClear.py:98
  8025. msgid ""
  8026. "Tools pool from which the algorithm\n"
  8027. "will pick the ones used for copper clearing."
  8028. msgstr ""
  8029. #: flatcamTools/ToolNonCopperClear.py:107
  8030. msgid "Operation"
  8031. msgstr ""
  8032. #: flatcamTools/ToolNonCopperClear.py:113
  8033. msgid ""
  8034. "This is the Tool Number.\n"
  8035. "Non copper clearing will start with the tool with the biggest \n"
  8036. "diameter, continuing until there are no more tools.\n"
  8037. "Only tools that create NCC clearing geometry will still be present\n"
  8038. "in the resulting geometry. This is because with some tools\n"
  8039. "this function will not be able to create painting geometry."
  8040. msgstr ""
  8041. #: flatcamTools/ToolNonCopperClear.py:121
  8042. msgid ""
  8043. "Tool Diameter. It's value (in current FlatCAM units)\n"
  8044. "is the cut width into the material."
  8045. msgstr ""
  8046. #: flatcamTools/ToolNonCopperClear.py:125
  8047. msgid ""
  8048. "The Tool Type (TT) can be:\n"
  8049. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular,\n"
  8050. "the cut width in material is exactly the tool diameter.\n"
  8051. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  8052. "- V-Shape -> it will disable de Z-Cut parameter in the resulting geometry UI "
  8053. "form\n"
  8054. "and enable two additional UI form fields in the resulting geometry: V-Tip "
  8055. "Dia and\n"
  8056. "V-Tip Angle. Adjusting those two values will adjust the Z-Cut parameter "
  8057. "such\n"
  8058. "as the cut width into material will be equal with the value in the Tool "
  8059. "Diameter\n"
  8060. "column of this table.\n"
  8061. "Choosing the 'V-Shape' Tool Type automatically will select the Operation "
  8062. "Type\n"
  8063. "in the resulting geometry as Isolation."
  8064. msgstr ""
  8065. #: flatcamTools/ToolNonCopperClear.py:138
  8066. msgid ""
  8067. "The 'Operation' can be:\n"
  8068. "- Isolation -> will ensure that the non-copper clearing is always complete.\n"
  8069. "If it's not successful then the non-copper clearing will fail, too.\n"
  8070. "- Clear -> the regular non-copper clearing."
  8071. msgstr ""
  8072. #: flatcamTools/ToolNonCopperClear.py:191
  8073. msgid "Tool Selection"
  8074. msgstr ""
  8075. #: flatcamTools/ToolNonCopperClear.py:214
  8076. msgid "Diameter for the new tool to add in the Tool Table"
  8077. msgstr ""
  8078. #: flatcamTools/ToolNonCopperClear.py:251 flatcamTools/ToolPaint.py:190
  8079. #: flatcamTools/ToolSolderPaste.py:123
  8080. msgid ""
  8081. "Delete a selection of tools in the Tool Table\n"
  8082. "by first selecting a row(s) in the Tool Table."
  8083. msgstr ""
  8084. #: flatcamTools/ToolNonCopperClear.py:396 flatcamTools/ToolPaint.py:295
  8085. msgid "Area Selection"
  8086. msgstr ""
  8087. #: flatcamTools/ToolNonCopperClear.py:397 flatcamTools/ToolPaint.py:297
  8088. msgid "Reference Object"
  8089. msgstr ""
  8090. #: flatcamTools/ToolNonCopperClear.py:399
  8091. msgid "Reference:"
  8092. msgstr ""
  8093. #: flatcamTools/ToolNonCopperClear.py:414 flatcamTools/ToolPaint.py:312
  8094. msgid "Ref. Type"
  8095. msgstr ""
  8096. #: flatcamTools/ToolNonCopperClear.py:416
  8097. msgid ""
  8098. "The type of FlatCAM object to be used as non copper clearing reference.\n"
  8099. "It can be Gerber, Excellon or Geometry."
  8100. msgstr ""
  8101. #: flatcamTools/ToolNonCopperClear.py:425 flatcamTools/ToolPaint.py:323
  8102. msgid "Ref. Object"
  8103. msgstr ""
  8104. #: flatcamTools/ToolNonCopperClear.py:427 flatcamTools/ToolPaint.py:325
  8105. msgid "The FlatCAM object to be used as non copper clearing reference."
  8106. msgstr ""
  8107. #: flatcamTools/ToolNonCopperClear.py:440
  8108. msgid "Generate Geometry"
  8109. msgstr ""
  8110. #: flatcamTools/ToolNonCopperClear.py:906 flatcamTools/ToolPaint.py:705
  8111. #: flatcamTools/ToolSolderPaste.py:769
  8112. msgid "Please enter a tool diameter to add, in Float format."
  8113. msgstr ""
  8114. #: flatcamTools/ToolNonCopperClear.py:940 flatcamTools/ToolPaint.py:730
  8115. msgid "Adding tool cancelled. Tool already in Tool Table."
  8116. msgstr ""
  8117. #: flatcamTools/ToolNonCopperClear.py:945 flatcamTools/ToolPaint.py:736
  8118. msgid "New tool added to Tool Table."
  8119. msgstr ""
  8120. #: flatcamTools/ToolNonCopperClear.py:989 flatcamTools/ToolPaint.py:782
  8121. msgid "Tool from Tool Table was edited."
  8122. msgstr ""
  8123. #: flatcamTools/ToolNonCopperClear.py:1000 flatcamTools/ToolPaint.py:794
  8124. #: flatcamTools/ToolSolderPaste.py:860
  8125. msgid "Edit cancelled. New diameter value is already in the Tool Table."
  8126. msgstr ""
  8127. #: flatcamTools/ToolNonCopperClear.py:1040 flatcamTools/ToolPaint.py:892
  8128. msgid "Delete failed. Select a tool to delete."
  8129. msgstr ""
  8130. #: flatcamTools/ToolNonCopperClear.py:1045 flatcamTools/ToolPaint.py:898
  8131. msgid "Tool(s) deleted from Tool Table."
  8132. msgstr ""
  8133. #: flatcamTools/ToolNonCopperClear.py:1053 flatcamTools/ToolPaint.py:906
  8134. msgid "on_paint_button_click"
  8135. msgstr ""
  8136. #: flatcamTools/ToolNonCopperClear.py:1067
  8137. msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  8138. msgstr ""
  8139. #: flatcamTools/ToolNonCopperClear.py:1083 flatcamTools/ToolPaint.py:945
  8140. #, python-format
  8141. msgid "Could not retrieve object: %s"
  8142. msgstr ""
  8143. #: flatcamTools/ToolNonCopperClear.py:1103
  8144. msgid "Wrong Tool Dia value format entered, use a number."
  8145. msgstr ""
  8146. #: flatcamTools/ToolNonCopperClear.py:1112 flatcamTools/ToolPaint.py:981
  8147. msgid "No selected tools in Tool Table."
  8148. msgstr ""
  8149. #: flatcamTools/ToolNonCopperClear.py:1137
  8150. msgid "Click the start point of the area."
  8151. msgstr ""
  8152. #: flatcamTools/ToolNonCopperClear.py:1148 flatcamTools/ToolPaint.py:1037
  8153. msgid "Click the end point of the paint area."
  8154. msgstr ""
  8155. #: flatcamTools/ToolNonCopperClear.py:1154 flatcamTools/ToolPaint.py:1043
  8156. msgid "Zone added. Click to start adding next zone or right click to finish."
  8157. msgstr ""
  8158. #: flatcamTools/ToolNonCopperClear.py:1318
  8159. msgid "Non-Copper clearing ..."
  8160. msgstr ""
  8161. #: flatcamTools/ToolNonCopperClear.py:1327
  8162. msgid "NCC Tool started. Reading parameters."
  8163. msgstr ""
  8164. #: flatcamTools/ToolNonCopperClear.py:1395
  8165. msgid "NCC Tool. Preparing non-copper polygons."
  8166. msgstr ""
  8167. #: flatcamTools/ToolNonCopperClear.py:1423 flatcamTools/ToolPaint.py:2431
  8168. msgid "No object available."
  8169. msgstr ""
  8170. #: flatcamTools/ToolNonCopperClear.py:1465
  8171. msgid "The reference object type is not supported."
  8172. msgstr ""
  8173. #: flatcamTools/ToolNonCopperClear.py:1487
  8174. msgid ""
  8175. "NCC Tool. Finished non-copper polygons. Normal copper clearing task started."
  8176. msgstr ""
  8177. #: flatcamTools/ToolNonCopperClear.py:1519
  8178. msgid "NCC Tool. Calculate 'empty' area."
  8179. msgstr ""
  8180. #: flatcamTools/ToolNonCopperClear.py:1534
  8181. #: flatcamTools/ToolNonCopperClear.py:1628
  8182. #: flatcamTools/ToolNonCopperClear.py:1640
  8183. #: flatcamTools/ToolNonCopperClear.py:1867
  8184. #: flatcamTools/ToolNonCopperClear.py:1959
  8185. #: flatcamTools/ToolNonCopperClear.py:1971
  8186. msgid "Buffering finished"
  8187. msgstr ""
  8188. #: flatcamTools/ToolNonCopperClear.py:1647
  8189. #: flatcamTools/ToolNonCopperClear.py:1977
  8190. msgid "The selected object is not suitable for copper clearing."
  8191. msgstr ""
  8192. #: flatcamTools/ToolNonCopperClear.py:1652
  8193. #: flatcamTools/ToolNonCopperClear.py:1982
  8194. msgid "Could not get the extent of the area to be non copper cleared."
  8195. msgstr ""
  8196. #: flatcamTools/ToolNonCopperClear.py:1659
  8197. msgid "NCC Tool. Finished calculation of 'empty' area."
  8198. msgstr ""
  8199. #: flatcamTools/ToolNonCopperClear.py:1669
  8200. #: flatcamTools/ToolNonCopperClear.py:2007
  8201. msgid "NCC Tool clearing with tool diameter = "
  8202. msgstr ""
  8203. #: flatcamTools/ToolNonCopperClear.py:1672
  8204. #: flatcamTools/ToolNonCopperClear.py:2010
  8205. msgid "started."
  8206. msgstr ""
  8207. #: flatcamTools/ToolNonCopperClear.py:1810 flatcamTools/ToolPaint.py:1412
  8208. #: flatcamTools/ToolPaint.py:1742 flatcamTools/ToolPaint.py:1890
  8209. #: flatcamTools/ToolPaint.py:2203 flatcamTools/ToolPaint.py:2355
  8210. msgid ""
  8211. "There is no Painting Geometry in the file.\n"
  8212. "Usually it means that the tool diameter is too big for the painted "
  8213. "geometry.\n"
  8214. "Change the painting parameters and try again."
  8215. msgstr ""
  8216. #: flatcamTools/ToolNonCopperClear.py:1820
  8217. msgid "NCC Tool clear all done."
  8218. msgstr ""
  8219. #: flatcamTools/ToolNonCopperClear.py:1822
  8220. msgid "NCC Tool clear all done but the copper features isolation is broken for"
  8221. msgstr ""
  8222. #: flatcamTools/ToolNonCopperClear.py:1825
  8223. #: flatcamTools/ToolNonCopperClear.py:2173
  8224. msgid "tools"
  8225. msgstr ""
  8226. #: flatcamTools/ToolNonCopperClear.py:2169
  8227. msgid "NCC Tool Rest Machining clear all done."
  8228. msgstr ""
  8229. #: flatcamTools/ToolNonCopperClear.py:2172
  8230. msgid ""
  8231. "NCC Tool Rest Machining clear all done but the copper features isolation is "
  8232. "broken for"
  8233. msgstr ""
  8234. #: flatcamTools/ToolNonCopperClear.py:2596
  8235. msgid ""
  8236. "Try to use the Buffering Type = Full in Preferences -> Gerber General. "
  8237. "Reload the Gerber file after this change."
  8238. msgstr ""
  8239. #: flatcamTools/ToolPDF.py:38
  8240. msgid "PDF Import Tool"
  8241. msgstr ""
  8242. #: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156
  8243. msgid "Open PDF"
  8244. msgstr ""
  8245. #: flatcamTools/ToolPDF.py:159
  8246. msgid "Open PDF cancelled"
  8247. msgstr ""
  8248. #: flatcamTools/ToolPDF.py:190
  8249. msgid "Parsing PDF file ..."
  8250. msgstr ""
  8251. #: flatcamTools/ToolPDF.py:220
  8252. #, python-format
  8253. msgid "[success] Opened: %s"
  8254. msgstr ""
  8255. #: flatcamTools/ToolPDF.py:273 flatcamTools/ToolPDF.py:348
  8256. #, python-format
  8257. msgid "Rendering PDF layer #%d ..."
  8258. msgstr ""
  8259. #: flatcamTools/ToolPDF.py:278 flatcamTools/ToolPDF.py:353
  8260. msgid "Open PDF file failed."
  8261. msgstr ""
  8262. #: flatcamTools/ToolPDF.py:284 flatcamTools/ToolPDF.py:358
  8263. msgid "Rendered"
  8264. msgstr ""
  8265. #: flatcamTools/ToolPaint.py:70
  8266. msgid ""
  8267. "Specify the type of object to be painted.\n"
  8268. "It can be of type: Gerber or Geometry.\n"
  8269. "What is selected here will dictate the kind\n"
  8270. "of objects that will populate the 'Object' combobox."
  8271. msgstr ""
  8272. #: flatcamTools/ToolPaint.py:87
  8273. msgid "Object to be painted."
  8274. msgstr ""
  8275. #: flatcamTools/ToolPaint.py:97
  8276. msgid ""
  8277. "Tools pool from which the algorithm\n"
  8278. "will pick the ones used for painting."
  8279. msgstr ""
  8280. #: flatcamTools/ToolPaint.py:112
  8281. msgid ""
  8282. "This is the Tool Number.\n"
  8283. "Painting will start with the tool with the biggest diameter,\n"
  8284. "continuing until there are no more tools.\n"
  8285. "Only tools that create painting geometry will still be present\n"
  8286. "in the resulting geometry. This is because with some tools\n"
  8287. "this function will not be able to create painting geometry."
  8288. msgstr ""
  8289. #: flatcamTools/ToolPaint.py:124
  8290. msgid ""
  8291. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  8292. "informative only. Being circular, <BR>the cut width in material is exactly "
  8293. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  8294. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  8295. "parameter in the resulting geometry UI form and enable two additional UI "
  8296. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  8297. "those two values will adjust the Z-Cut parameter such as the cut width into "
  8298. "material will be equal with the value in the Tool Diameter column of this "
  8299. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  8300. "the Operation Type in the resulting geometry as Isolation."
  8301. msgstr ""
  8302. #: flatcamTools/ToolPaint.py:164
  8303. msgid "Diameter for the new tool."
  8304. msgstr ""
  8305. #: flatcamTools/ToolPaint.py:235
  8306. msgid ""
  8307. "Algorithm for painting:\n"
  8308. "- Standard: Fixed step inwards.\n"
  8309. "- Seed-based: Outwards from seed.\n"
  8310. "- Line-based: Parallel lines."
  8311. msgstr ""
  8312. #: flatcamTools/ToolPaint.py:269
  8313. msgid ""
  8314. "If checked, use 'rest machining'.\n"
  8315. "Basically it will clear copper outside PCB features,\n"
  8316. "using the biggest tool and continue with the next tools,\n"
  8317. "from bigger to smaller, to clear areas of copper that\n"
  8318. "could not be cleared by previous tool, until there is\n"
  8319. "no more copper to clear or there are no more tools.\n"
  8320. "\n"
  8321. "If not checked, use the standard algorithm."
  8322. msgstr ""
  8323. #: flatcamTools/ToolPaint.py:294
  8324. msgid "Single Polygon"
  8325. msgstr ""
  8326. #: flatcamTools/ToolPaint.py:296
  8327. msgid "All Polygons"
  8328. msgstr ""
  8329. #: flatcamTools/ToolPaint.py:314
  8330. msgid ""
  8331. "The type of FlatCAM object to be used as paint reference.\n"
  8332. "It can be Gerber, Excellon or Geometry."
  8333. msgstr ""
  8334. #: flatcamTools/ToolPaint.py:339
  8335. msgid "Create Paint Geometry"
  8336. msgstr ""
  8337. #: flatcamTools/ToolPaint.py:341
  8338. msgid ""
  8339. "- 'Area Selection' - left mouse click to start selection of the area to be "
  8340. "painted.\n"
  8341. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  8342. "areas.\n"
  8343. "- 'All Polygons' - the Paint will start after click.\n"
  8344. "- 'Reference Object' - will do non copper clearing within the area\n"
  8345. "specified by another object."
  8346. msgstr ""
  8347. #: flatcamTools/ToolPaint.py:912
  8348. msgid "Paint Tool. Reading parameters."
  8349. msgstr ""
  8350. #: flatcamTools/ToolPaint.py:927
  8351. msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive)"
  8352. msgstr ""
  8353. #: flatcamTools/ToolPaint.py:931 flatcamTools/ToolPaint.py:994
  8354. msgid "Click inside the desired polygon."
  8355. msgstr ""
  8356. #: flatcamTools/ToolPaint.py:951 flatcamTools/ToolPanelize.py:366
  8357. #: tclCommands/TclCommandBbox.py:66 tclCommands/TclCommandNregions.py:65
  8358. msgid "Object not found"
  8359. msgstr ""
  8360. #: flatcamTools/ToolPaint.py:959
  8361. msgid "Can't do Paint on MultiGeo geometries"
  8362. msgstr ""
  8363. #: flatcamTools/ToolPaint.py:1003 flatcamTools/ToolPaint.py:1239
  8364. msgid "Painting polygon..."
  8365. msgstr ""
  8366. #: flatcamTools/ToolPaint.py:1025
  8367. msgid "Click the start point of the paint area."
  8368. msgstr ""
  8369. #: flatcamTools/ToolPaint.py:1197 flatcamTools/ToolPaint.py:1200
  8370. #: flatcamTools/ToolPaint.py:1202
  8371. msgid "Paint Tool. Normal painting polygon task started."
  8372. msgstr ""
  8373. #: flatcamTools/ToolPaint.py:1198 flatcamTools/ToolPaint.py:1588
  8374. #: flatcamTools/ToolPaint.py:1763 flatcamTools/ToolPaint.py:2045
  8375. #: flatcamTools/ToolPaint.py:2224
  8376. msgid "Buffering geometry..."
  8377. msgstr ""
  8378. #: flatcamTools/ToolPaint.py:1236
  8379. msgid "[WARNING] No polygon found."
  8380. msgstr ""
  8381. #: flatcamTools/ToolPaint.py:1240
  8382. #, python-format
  8383. msgid "Paint Tool. Painting polygon at location: %s"
  8384. msgstr ""
  8385. #: flatcamTools/ToolPaint.py:1323
  8386. msgid "Geometry could not be painted completely"
  8387. msgstr ""
  8388. #: flatcamTools/ToolPaint.py:1368
  8389. msgid ""
  8390. "Could not do Paint. Try a different combination of parameters. Or a "
  8391. "different strategy of paint"
  8392. msgstr ""
  8393. #: flatcamTools/ToolPaint.py:1417
  8394. msgid "Paint Single Done."
  8395. msgstr ""
  8396. #: flatcamTools/ToolPaint.py:1442
  8397. msgid "PaintTool.paint_poly()"
  8398. msgstr ""
  8399. #: flatcamTools/ToolPaint.py:1449 flatcamTools/ToolPaint.py:1918
  8400. #: flatcamTools/ToolPaint.py:2383
  8401. msgid "Polygon Paint started ..."
  8402. msgstr ""
  8403. #: flatcamTools/ToolPaint.py:1505 flatcamTools/ToolPaint.py:1975
  8404. msgid "Painting polygons..."
  8405. msgstr ""
  8406. #: flatcamTools/ToolPaint.py:1587 flatcamTools/ToolPaint.py:1590
  8407. #: flatcamTools/ToolPaint.py:1592
  8408. msgid "Paint Tool. Normal painting all task started."
  8409. msgstr ""
  8410. #: flatcamTools/ToolPaint.py:1626 flatcamTools/ToolPaint.py:1796
  8411. #: flatcamTools/ToolPaint.py:2090 flatcamTools/ToolPaint.py:2264
  8412. msgid "Painting with tool diameter = "
  8413. msgstr ""
  8414. #: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:1799
  8415. #: flatcamTools/ToolPaint.py:2093 flatcamTools/ToolPaint.py:2267
  8416. msgid "started"
  8417. msgstr ""
  8418. #: flatcamTools/ToolPaint.py:1691 flatcamTools/ToolPaint.py:1845
  8419. msgid ""
  8420. "Could not do Paint All. Try a different combination of parameters. Or a "
  8421. "different Method of paint"
  8422. msgstr ""
  8423. #: flatcamTools/ToolPaint.py:1751
  8424. msgid "[success] Paint All Done."
  8425. msgstr ""
  8426. #: flatcamTools/ToolPaint.py:1762 flatcamTools/ToolPaint.py:1765
  8427. #: flatcamTools/ToolPaint.py:1767
  8428. msgid "Paint Tool. Rest machining painting all task started."
  8429. msgstr ""
  8430. #: flatcamTools/ToolPaint.py:1899 flatcamTools/ToolPaint.py:2364
  8431. msgid "Paint All with Rest-Machining done."
  8432. msgstr ""
  8433. #: flatcamTools/ToolPaint.py:2044 flatcamTools/ToolPaint.py:2047
  8434. #: flatcamTools/ToolPaint.py:2049
  8435. msgid "Paint Tool. Normal painting area task started."
  8436. msgstr ""
  8437. #: flatcamTools/ToolPaint.py:2153 flatcamTools/ToolPaint.py:2311
  8438. #, python-format
  8439. msgid ""
  8440. "Could not do Paint All. Try a different combination of parameters. Or a "
  8441. "different Method of paint\n"
  8442. "%s"
  8443. msgstr ""
  8444. #: flatcamTools/ToolPaint.py:2212
  8445. msgid "[success] Paint Area Done."
  8446. msgstr ""
  8447. #: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2226
  8448. #: flatcamTools/ToolPaint.py:2228
  8449. msgid "Paint Tool. Rest machining painting area task started."
  8450. msgstr ""
  8451. #: flatcamTools/ToolPanelize.py:25
  8452. msgid "Panelize PCB"
  8453. msgstr ""
  8454. #: flatcamTools/ToolPanelize.py:58
  8455. msgid ""
  8456. "Specify the type of object to be panelized\n"
  8457. "It can be of type: Gerber, Excellon or Geometry.\n"
  8458. "The selection here decide the type of objects that will be\n"
  8459. "in the Object combobox."
  8460. msgstr ""
  8461. #: flatcamTools/ToolPanelize.py:73
  8462. msgid ""
  8463. "Object to be panelized. This means that it will\n"
  8464. "be duplicated in an array of rows and columns."
  8465. msgstr ""
  8466. #: flatcamTools/ToolPanelize.py:86
  8467. msgid "Penelization Reference"
  8468. msgstr ""
  8469. #: flatcamTools/ToolPanelize.py:88
  8470. msgid ""
  8471. "Choose the reference for panelization:\n"
  8472. "- Object = the bounding box of a different object\n"
  8473. "- Bounding Box = the bounding box of the object to be panelized\n"
  8474. "\n"
  8475. "The reference is useful when doing panelization for more than one\n"
  8476. "object. The spacings (really offsets) will be applied in reference\n"
  8477. "to this reference object therefore maintaining the panelized\n"
  8478. "objects in sync."
  8479. msgstr ""
  8480. #: flatcamTools/ToolPanelize.py:111
  8481. msgid "Box Type"
  8482. msgstr ""
  8483. #: flatcamTools/ToolPanelize.py:113
  8484. msgid ""
  8485. "Specify the type of object to be used as an container for\n"
  8486. "panelization. It can be: Gerber or Geometry type.\n"
  8487. "The selection here decide the type of objects that will be\n"
  8488. "in the Box Object combobox."
  8489. msgstr ""
  8490. #: flatcamTools/ToolPanelize.py:128
  8491. msgid ""
  8492. "The actual object that is used a container for the\n"
  8493. " selected object that is to be panelized."
  8494. msgstr ""
  8495. #: flatcamTools/ToolPanelize.py:134
  8496. msgid "Panel Data"
  8497. msgstr ""
  8498. #: flatcamTools/ToolPanelize.py:136
  8499. msgid ""
  8500. "This informations will shape the resulting panel.\n"
  8501. "The number of rows and columns will set how many\n"
  8502. "duplicates of the original geometry will be generated.\n"
  8503. "\n"
  8504. "The spacings will set the distance between any two\n"
  8505. "elements of the panel array."
  8506. msgstr ""
  8507. #: flatcamTools/ToolPanelize.py:185
  8508. msgid ""
  8509. "Choose the type of object for the panel object:\n"
  8510. "- Geometry\n"
  8511. "- Gerber"
  8512. msgstr ""
  8513. #: flatcamTools/ToolPanelize.py:193
  8514. msgid "Constrain panel within"
  8515. msgstr ""
  8516. #: flatcamTools/ToolPanelize.py:227
  8517. msgid "Panelize Object"
  8518. msgstr ""
  8519. #: flatcamTools/ToolPanelize.py:229
  8520. msgid ""
  8521. "Panelize the specified object around the specified box.\n"
  8522. "In other words it creates multiple copies of the source object,\n"
  8523. "arranged in a 2D array of rows and columns."
  8524. msgstr ""
  8525. #: flatcamTools/ToolPanelize.py:277
  8526. msgid "Panel. Tool"
  8527. msgstr ""
  8528. #: flatcamTools/ToolPanelize.py:465
  8529. msgid "Columns or Rows are zero value. Change them to a positive integer."
  8530. msgstr ""
  8531. #: flatcamTools/ToolPanelize.py:490
  8532. msgid "Generating panel ... Please wait."
  8533. msgstr ""
  8534. #: flatcamTools/ToolPanelize.py:631
  8535. msgid "Panel done..."
  8536. msgstr ""
  8537. #: flatcamTools/ToolPanelize.py:634
  8538. #, python-brace-format
  8539. msgid ""
  8540. "{text} Too big for the constrain area. Final panel has {col} columns and "
  8541. "{row} rows"
  8542. msgstr ""
  8543. #: flatcamTools/ToolPanelize.py:638
  8544. msgid "Generating panel..."
  8545. msgstr ""
  8546. #: flatcamTools/ToolPanelize.py:643
  8547. msgid "Panel created successfully."
  8548. msgstr ""
  8549. #: flatcamTools/ToolPcbWizard.py:32
  8550. msgid "PcbWizard Import Tool"
  8551. msgstr ""
  8552. #: flatcamTools/ToolPcbWizard.py:40
  8553. msgid "Import 2-file Excellon"
  8554. msgstr ""
  8555. #: flatcamTools/ToolPcbWizard.py:51
  8556. msgid "Load files"
  8557. msgstr ""
  8558. #: flatcamTools/ToolPcbWizard.py:57
  8559. msgid "Excellon file"
  8560. msgstr ""
  8561. #: flatcamTools/ToolPcbWizard.py:59
  8562. msgid ""
  8563. "Load the Excellon file.\n"
  8564. "Usually it has a .DRL extension"
  8565. msgstr ""
  8566. #: flatcamTools/ToolPcbWizard.py:65
  8567. msgid "INF file"
  8568. msgstr ""
  8569. #: flatcamTools/ToolPcbWizard.py:67
  8570. msgid "Load the INF file."
  8571. msgstr ""
  8572. #: flatcamTools/ToolPcbWizard.py:79
  8573. msgid "Tool Number"
  8574. msgstr ""
  8575. #: flatcamTools/ToolPcbWizard.py:81
  8576. msgid "Tool diameter in file units."
  8577. msgstr ""
  8578. #: flatcamTools/ToolPcbWizard.py:87
  8579. msgid "Excellon format"
  8580. msgstr ""
  8581. #: flatcamTools/ToolPcbWizard.py:95
  8582. msgid "Int. digits"
  8583. msgstr ""
  8584. #: flatcamTools/ToolPcbWizard.py:97
  8585. msgid "The number of digits for the integral part of the coordinates."
  8586. msgstr ""
  8587. #: flatcamTools/ToolPcbWizard.py:104
  8588. msgid "Frac. digits"
  8589. msgstr ""
  8590. #: flatcamTools/ToolPcbWizard.py:106
  8591. msgid "The number of digits for the fractional part of the coordinates."
  8592. msgstr ""
  8593. #: flatcamTools/ToolPcbWizard.py:113
  8594. msgid "No Suppression"
  8595. msgstr ""
  8596. #: flatcamTools/ToolPcbWizard.py:114
  8597. msgid "Zeros supp."
  8598. msgstr ""
  8599. #: flatcamTools/ToolPcbWizard.py:116
  8600. msgid ""
  8601. "The type of zeros suppression used.\n"
  8602. "Can be of type:\n"
  8603. "- LZ = leading zeros are kept\n"
  8604. "- TZ = trailing zeros are kept\n"
  8605. "- No Suppression = no zero suppression"
  8606. msgstr ""
  8607. #: flatcamTools/ToolPcbWizard.py:129
  8608. msgid ""
  8609. "The type of units that the coordinates and tool\n"
  8610. "diameters are using. Can be INCH or MM."
  8611. msgstr ""
  8612. #: flatcamTools/ToolPcbWizard.py:136
  8613. msgid "Import Excellon"
  8614. msgstr ""
  8615. #: flatcamTools/ToolPcbWizard.py:138
  8616. msgid ""
  8617. "Import in FlatCAM an Excellon file\n"
  8618. "that store it's information's in 2 files.\n"
  8619. "One usually has .DRL extension while\n"
  8620. "the other has .INF extension."
  8621. msgstr ""
  8622. #: flatcamTools/ToolPcbWizard.py:197
  8623. msgid "PCBWizard Tool"
  8624. msgstr ""
  8625. #: flatcamTools/ToolPcbWizard.py:291 flatcamTools/ToolPcbWizard.py:295
  8626. msgid "Load PcbWizard Excellon file"
  8627. msgstr ""
  8628. #: flatcamTools/ToolPcbWizard.py:314 flatcamTools/ToolPcbWizard.py:318
  8629. msgid "Load PcbWizard INF file"
  8630. msgstr ""
  8631. #: flatcamTools/ToolPcbWizard.py:366
  8632. msgid ""
  8633. "The INF file does not contain the tool table.\n"
  8634. "Try to open the Excellon file from File -> Open -> Excellon\n"
  8635. "and edit the drill diameters manually."
  8636. msgstr ""
  8637. #: flatcamTools/ToolPcbWizard.py:387
  8638. msgid "PcbWizard .INF file loaded."
  8639. msgstr ""
  8640. #: flatcamTools/ToolPcbWizard.py:392
  8641. msgid "Main PcbWizard Excellon file loaded."
  8642. msgstr ""
  8643. #: flatcamTools/ToolPcbWizard.py:431
  8644. msgid "Cannot parse file"
  8645. msgstr ""
  8646. #: flatcamTools/ToolPcbWizard.py:456
  8647. msgid "Importing Excellon."
  8648. msgstr ""
  8649. #: flatcamTools/ToolPcbWizard.py:463
  8650. msgid "Import Excellon file failed."
  8651. msgstr ""
  8652. #: flatcamTools/ToolPcbWizard.py:471
  8653. msgid "Imported"
  8654. msgstr ""
  8655. #: flatcamTools/ToolPcbWizard.py:475
  8656. msgid "Excellon merging is in progress. Please wait..."
  8657. msgstr ""
  8658. #: flatcamTools/ToolPcbWizard.py:478
  8659. msgid "The imported Excellon file is None."
  8660. msgstr ""
  8661. #: flatcamTools/ToolProperties.py:112
  8662. msgid "Properties Tool was not displayed. No object selected."
  8663. msgstr ""
  8664. #: flatcamTools/ToolProperties.py:120
  8665. msgid "Object Properties are displayed."
  8666. msgstr ""
  8667. #: flatcamTools/ToolProperties.py:121
  8668. msgid "Properties Tool"
  8669. msgstr ""
  8670. #: flatcamTools/ToolProperties.py:130
  8671. msgid "TYPE"
  8672. msgstr ""
  8673. #: flatcamTools/ToolProperties.py:131
  8674. msgid "NAME"
  8675. msgstr ""
  8676. #: flatcamTools/ToolProperties.py:132
  8677. msgid "Dimensions"
  8678. msgstr ""
  8679. #: flatcamTools/ToolProperties.py:135
  8680. msgid "Options"
  8681. msgstr ""
  8682. #: flatcamTools/ToolProperties.py:146
  8683. msgid "Geo Type"
  8684. msgstr ""
  8685. #: flatcamTools/ToolProperties.py:147
  8686. msgid "Single-Geo"
  8687. msgstr ""
  8688. #: flatcamTools/ToolProperties.py:147
  8689. msgid "Multi-Geo"
  8690. msgstr ""
  8691. #: flatcamTools/ToolProperties.py:155
  8692. msgid "Calculating dimensions ... Please wait."
  8693. msgstr ""
  8694. #: flatcamTools/ToolProperties.py:246
  8695. msgid "Inch"
  8696. msgstr ""
  8697. #: flatcamTools/ToolProperties.py:247
  8698. msgid "Metric"
  8699. msgstr ""
  8700. #: flatcamTools/ToolProperties.py:298 flatcamTools/ToolProperties.py:312
  8701. #: flatcamTools/ToolProperties.py:315 flatcamTools/ToolProperties.py:318
  8702. msgid "Present"
  8703. msgstr ""
  8704. #: flatcamTools/ToolProperties.py:352
  8705. msgid "Width"
  8706. msgstr ""
  8707. #: flatcamTools/ToolProperties.py:357 flatcamTools/ToolProperties.py:361
  8708. msgid "Box Area"
  8709. msgstr ""
  8710. #: flatcamTools/ToolProperties.py:358 flatcamTools/ToolProperties.py:362
  8711. msgid "Convex_Hull Area"
  8712. msgstr ""
  8713. #: flatcamTools/ToolShell.py:69
  8714. msgid "...proccessing..."
  8715. msgstr ""
  8716. #: flatcamTools/ToolShell.py:71
  8717. #, python-format
  8718. msgid "...proccessing... [%s]"
  8719. msgstr ""
  8720. #: flatcamTools/ToolSolderPaste.py:37
  8721. msgid "Solder Paste Tool"
  8722. msgstr ""
  8723. #: flatcamTools/ToolSolderPaste.py:65
  8724. msgid "Gerber Solder paste object. "
  8725. msgstr ""
  8726. #: flatcamTools/ToolSolderPaste.py:72
  8727. msgid ""
  8728. "Tools pool from which the algorithm\n"
  8729. "will pick the ones used for dispensing solder paste."
  8730. msgstr ""
  8731. #: flatcamTools/ToolSolderPaste.py:87
  8732. msgid ""
  8733. "This is the Tool Number.\n"
  8734. "The solder dispensing will start with the tool with the biggest \n"
  8735. "diameter, continuing until there are no more Nozzle tools.\n"
  8736. "If there are no longer tools but there are still pads not covered\n"
  8737. " with solder paste, the app will issue a warning message box."
  8738. msgstr ""
  8739. #: flatcamTools/ToolSolderPaste.py:94
  8740. msgid ""
  8741. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  8742. "is the width of the solder paste dispensed."
  8743. msgstr ""
  8744. #: flatcamTools/ToolSolderPaste.py:101
  8745. msgid "New Nozzle Tool"
  8746. msgstr ""
  8747. #: flatcamTools/ToolSolderPaste.py:117
  8748. msgid ""
  8749. "Add a new nozzle tool to the Tool Table\n"
  8750. "with the diameter specified above."
  8751. msgstr ""
  8752. #: flatcamTools/ToolSolderPaste.py:129
  8753. msgid "Generate solder paste dispensing geometry."
  8754. msgstr ""
  8755. #: flatcamTools/ToolSolderPaste.py:142
  8756. msgid "STEP 1"
  8757. msgstr ""
  8758. #: flatcamTools/ToolSolderPaste.py:144
  8759. msgid ""
  8760. "First step is to select a number of nozzle tools for usage\n"
  8761. "and then optionally modify the GCode parameters bellow."
  8762. msgstr ""
  8763. #: flatcamTools/ToolSolderPaste.py:147
  8764. msgid ""
  8765. "Select tools.\n"
  8766. "Modify parameters."
  8767. msgstr ""
  8768. #: flatcamTools/ToolSolderPaste.py:235
  8769. msgid ""
  8770. "Feedrate (speed) while moving up vertically\n"
  8771. " to Dispense position (on Z plane)."
  8772. msgstr ""
  8773. #: flatcamTools/ToolSolderPaste.py:289
  8774. msgid "Generate GCode"
  8775. msgstr ""
  8776. #: flatcamTools/ToolSolderPaste.py:291
  8777. msgid ""
  8778. "Generate GCode for Solder Paste dispensing\n"
  8779. "on PCB pads."
  8780. msgstr ""
  8781. #: flatcamTools/ToolSolderPaste.py:306
  8782. msgid "STEP 2"
  8783. msgstr ""
  8784. #: flatcamTools/ToolSolderPaste.py:308
  8785. msgid ""
  8786. "Second step is to create a solder paste dispensing\n"
  8787. "geometry out of an Solder Paste Mask Gerber file."
  8788. msgstr ""
  8789. #: flatcamTools/ToolSolderPaste.py:324
  8790. msgid "Geo Result"
  8791. msgstr ""
  8792. #: flatcamTools/ToolSolderPaste.py:326
  8793. msgid ""
  8794. "Geometry Solder Paste object.\n"
  8795. "The name of the object has to end in:\n"
  8796. "'_solderpaste' as a protection."
  8797. msgstr ""
  8798. #: flatcamTools/ToolSolderPaste.py:335
  8799. msgid "STEP 3"
  8800. msgstr ""
  8801. #: flatcamTools/ToolSolderPaste.py:337
  8802. msgid ""
  8803. "Third step is to select a solder paste dispensing geometry,\n"
  8804. "and then generate a CNCJob object.\n"
  8805. "\n"
  8806. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  8807. "first you need to generate a geometry with those new params,\n"
  8808. "and only after that you can generate an updated CNCJob."
  8809. msgstr ""
  8810. #: flatcamTools/ToolSolderPaste.py:357
  8811. msgid "CNC Result"
  8812. msgstr ""
  8813. #: flatcamTools/ToolSolderPaste.py:359
  8814. msgid ""
  8815. "CNCJob Solder paste object.\n"
  8816. "In order to enable the GCode save section,\n"
  8817. "the name of the object has to end in:\n"
  8818. "'_solderpaste' as a protection."
  8819. msgstr ""
  8820. #: flatcamTools/ToolSolderPaste.py:369
  8821. msgid "View GCode"
  8822. msgstr ""
  8823. #: flatcamTools/ToolSolderPaste.py:371
  8824. msgid ""
  8825. "View the generated GCode for Solder Paste dispensing\n"
  8826. "on PCB pads."
  8827. msgstr ""
  8828. #: flatcamTools/ToolSolderPaste.py:375
  8829. msgid "Save GCode"
  8830. msgstr ""
  8831. #: flatcamTools/ToolSolderPaste.py:377
  8832. msgid ""
  8833. "Save the generated GCode for Solder Paste dispensing\n"
  8834. "on PCB pads, to a file."
  8835. msgstr ""
  8836. #: flatcamTools/ToolSolderPaste.py:381
  8837. msgid "STEP 4"
  8838. msgstr ""
  8839. #: flatcamTools/ToolSolderPaste.py:383
  8840. msgid ""
  8841. "Fourth step (and last) is to select a CNCJob made from \n"
  8842. "a solder paste dispensing geometry, and then view/save it's GCode."
  8843. msgstr ""
  8844. #: flatcamTools/ToolSolderPaste.py:412
  8845. msgid "Delete Object"
  8846. msgstr ""
  8847. #: flatcamTools/ToolSolderPaste.py:799
  8848. msgid "Adding Nozzle tool cancelled. Tool already in Tool Table."
  8849. msgstr ""
  8850. #: flatcamTools/ToolSolderPaste.py:805
  8851. msgid "New Nozzle tool added to Tool Table."
  8852. msgstr ""
  8853. #: flatcamTools/ToolSolderPaste.py:848
  8854. msgid "Nozzle tool from Tool Table was edited."
  8855. msgstr ""
  8856. #: flatcamTools/ToolSolderPaste.py:906
  8857. msgid "Delete failed. Select a Nozzle tool to delete."
  8858. msgstr ""
  8859. #: flatcamTools/ToolSolderPaste.py:912
  8860. msgid "Nozzle tool(s) deleted from Tool Table."
  8861. msgstr ""
  8862. #: flatcamTools/ToolSolderPaste.py:968
  8863. msgid "No SolderPaste mask Gerber object loaded."
  8864. msgstr ""
  8865. #: flatcamTools/ToolSolderPaste.py:986
  8866. msgid "Creating Solder Paste dispensing geometry."
  8867. msgstr ""
  8868. #: flatcamTools/ToolSolderPaste.py:999
  8869. msgid "No Nozzle tools in the tool table."
  8870. msgstr ""
  8871. #: flatcamTools/ToolSolderPaste.py:1126
  8872. msgid "Cancelled. Empty file, it has no geometry..."
  8873. msgstr ""
  8874. #: flatcamTools/ToolSolderPaste.py:1130
  8875. msgid "Solder Paste geometry generated successfully"
  8876. msgstr ""
  8877. #: flatcamTools/ToolSolderPaste.py:1137
  8878. msgid "Some or all pads have no solder due of inadequate nozzle diameters..."
  8879. msgstr ""
  8880. #: flatcamTools/ToolSolderPaste.py:1151
  8881. msgid "Generating Solder Paste dispensing geometry..."
  8882. msgstr ""
  8883. #: flatcamTools/ToolSolderPaste.py:1172
  8884. msgid "There is no Geometry object available."
  8885. msgstr ""
  8886. #: flatcamTools/ToolSolderPaste.py:1177
  8887. msgid "This Geometry can't be processed. NOT a solder_paste_tool geometry."
  8888. msgstr ""
  8889. #: flatcamTools/ToolSolderPaste.py:1285
  8890. msgid "ToolSolderPaste CNCjob created"
  8891. msgstr ""
  8892. #: flatcamTools/ToolSolderPaste.py:1318 flatcamTools/ToolSolderPaste.py:1323
  8893. #: flatcamTools/ToolSolderPaste.py:1378
  8894. msgid ""
  8895. "This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object."
  8896. msgstr ""
  8897. #: flatcamTools/ToolSolderPaste.py:1348
  8898. msgid "No Gcode in the object"
  8899. msgstr ""
  8900. #: flatcamTools/ToolSolderPaste.py:1358
  8901. msgid "ToolSolderPaste.on_view_gcode()"
  8902. msgstr ""
  8903. #: flatcamTools/ToolSolderPaste.py:1388
  8904. msgid "Export GCode ..."
  8905. msgstr ""
  8906. #: flatcamTools/ToolSolderPaste.py:1436
  8907. msgid "Solder paste dispenser GCode file saved to"
  8908. msgstr ""
  8909. #: flatcamTools/ToolSub.py:57
  8910. msgid "Gerber Objects"
  8911. msgstr ""
  8912. #: flatcamTools/ToolSub.py:66 flatcamTools/ToolSub.py:112
  8913. msgid "Target"
  8914. msgstr ""
  8915. #: flatcamTools/ToolSub.py:68
  8916. msgid ""
  8917. "Gerber object from which to substract\n"
  8918. "the substractor Gerber object."
  8919. msgstr ""
  8920. #: flatcamTools/ToolSub.py:80 flatcamTools/ToolSub.py:126
  8921. msgid "Substractor"
  8922. msgstr ""
  8923. #: flatcamTools/ToolSub.py:82
  8924. msgid ""
  8925. "Gerber object that will be substracted\n"
  8926. "from the target Gerber object."
  8927. msgstr ""
  8928. #: flatcamTools/ToolSub.py:89
  8929. msgid "Substract Gerber"
  8930. msgstr ""
  8931. #: flatcamTools/ToolSub.py:91
  8932. msgid ""
  8933. "Will remove the area occupied by the substractor\n"
  8934. "Gerber from the Target Gerber.\n"
  8935. "Can be used to remove the overlapping silkscreen\n"
  8936. "over the soldermask."
  8937. msgstr ""
  8938. #: flatcamTools/ToolSub.py:103
  8939. msgid "Geometry Objects"
  8940. msgstr ""
  8941. #: flatcamTools/ToolSub.py:114
  8942. msgid ""
  8943. "Geometry object from which to substract\n"
  8944. "the substractor Geometry object."
  8945. msgstr ""
  8946. #: flatcamTools/ToolSub.py:128
  8947. msgid ""
  8948. "Geometry object that will be substracted\n"
  8949. "from the target Geometry object."
  8950. msgstr ""
  8951. #: flatcamTools/ToolSub.py:139
  8952. msgid "Substract Geometry"
  8953. msgstr ""
  8954. #: flatcamTools/ToolSub.py:141
  8955. msgid ""
  8956. "Will remove the area occupied by the substractor\n"
  8957. "Geometry from the Target Geometry."
  8958. msgstr ""
  8959. #: flatcamTools/ToolSub.py:228
  8960. msgid "Sub Tool"
  8961. msgstr ""
  8962. #: flatcamTools/ToolSub.py:245 flatcamTools/ToolSub.py:447
  8963. msgid "No Target object loaded."
  8964. msgstr ""
  8965. #: flatcamTools/ToolSub.py:260 flatcamTools/ToolSub.py:462
  8966. msgid "No Substractor object loaded."
  8967. msgstr ""
  8968. #: flatcamTools/ToolSub.py:314
  8969. #, python-format
  8970. msgid "Parsing aperture %s geometry ..."
  8971. msgstr ""
  8972. #: flatcamTools/ToolSub.py:416 flatcamTools/ToolSub.py:619
  8973. msgid "Generating new object ..."
  8974. msgstr ""
  8975. #: flatcamTools/ToolSub.py:420 flatcamTools/ToolSub.py:623
  8976. #: flatcamTools/ToolSub.py:704
  8977. msgid "Generating new object failed."
  8978. msgstr ""
  8979. #: flatcamTools/ToolSub.py:425 flatcamTools/ToolSub.py:629
  8980. msgid "Created"
  8981. msgstr ""
  8982. #: flatcamTools/ToolSub.py:476
  8983. msgid "Currently, the Substractor geometry cannot be of type Multigeo."
  8984. msgstr ""
  8985. #: flatcamTools/ToolSub.py:521
  8986. msgid "Parsing solid_geometry ..."
  8987. msgstr ""
  8988. #: flatcamTools/ToolSub.py:523
  8989. #, python-format
  8990. msgid "Parsing tool %s geometry ..."
  8991. msgstr ""
  8992. #: flatcamTools/ToolTransform.py:23
  8993. msgid "Object Transform"
  8994. msgstr ""
  8995. #: flatcamTools/ToolTransform.py:84
  8996. msgid ""
  8997. "Rotate the selected object(s).\n"
  8998. "The point of reference is the middle of\n"
  8999. "the bounding box for all selected objects."
  9000. msgstr ""
  9001. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  9002. msgid ""
  9003. "Skew/shear the selected object(s).\n"
  9004. "The point of reference is the middle of\n"
  9005. "the bounding box for all selected objects."
  9006. msgstr ""
  9007. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  9008. msgid ""
  9009. "Scale the selected object(s).\n"
  9010. "The point of reference depends on \n"
  9011. "the Scale reference checkbox state."
  9012. msgstr ""
  9013. #: flatcamTools/ToolTransform.py:251 flatcamTools/ToolTransform.py:268
  9014. msgid ""
  9015. "Offset the selected object(s).\n"
  9016. "The point of reference is the middle of\n"
  9017. "the bounding box for all selected objects.\n"
  9018. msgstr ""
  9019. #: flatcamTools/ToolTransform.py:298 flatcamTools/ToolTransform.py:306
  9020. msgid ""
  9021. "Flip the selected object(s) over the X axis.\n"
  9022. "Does not create a new object.\n"
  9023. " "
  9024. msgstr ""
  9025. #: flatcamTools/ToolTransform.py:643
  9026. msgid "No object selected. Please Select an object to rotate!"
  9027. msgstr ""
  9028. #: flatcamTools/ToolTransform.py:671
  9029. msgid "CNCJob objects can't be rotated."
  9030. msgstr ""
  9031. #: flatcamTools/ToolTransform.py:679
  9032. msgid "Rotate done"
  9033. msgstr ""
  9034. #: flatcamTools/ToolTransform.py:684 flatcamTools/ToolTransform.py:759
  9035. #: flatcamTools/ToolTransform.py:808 flatcamTools/ToolTransform.py:867
  9036. #: flatcamTools/ToolTransform.py:903
  9037. msgid "Due of"
  9038. msgstr ""
  9039. #: flatcamTools/ToolTransform.py:684 flatcamTools/ToolTransform.py:759
  9040. #: flatcamTools/ToolTransform.py:808 flatcamTools/ToolTransform.py:867
  9041. #: flatcamTools/ToolTransform.py:903
  9042. msgid "action was not executed."
  9043. msgstr ""
  9044. #: flatcamTools/ToolTransform.py:696
  9045. msgid "No object selected. Please Select an object to flip"
  9046. msgstr ""
  9047. #: flatcamTools/ToolTransform.py:731
  9048. msgid "CNCJob objects can't be mirrored/flipped."
  9049. msgstr ""
  9050. #: flatcamTools/ToolTransform.py:769
  9051. msgid "No object selected. Please Select an object to shear/skew!"
  9052. msgstr ""
  9053. #: flatcamTools/ToolTransform.py:791
  9054. msgid "CNCJob objects can't be skewed."
  9055. msgstr ""
  9056. #: flatcamTools/ToolTransform.py:803
  9057. #, python-format
  9058. msgid "[success] Skew on the %s axis done ..."
  9059. msgstr ""
  9060. #: flatcamTools/ToolTransform.py:820
  9061. msgid "No object selected. Please Select an object to scale!"
  9062. msgstr ""
  9063. #: flatcamTools/ToolTransform.py:853
  9064. msgid "CNCJob objects can't be scaled."
  9065. msgstr ""
  9066. #: flatcamTools/ToolTransform.py:863
  9067. msgid "Scale on the"
  9068. msgstr ""
  9069. #: flatcamTools/ToolTransform.py:863 flatcamTools/ToolTransform.py:898
  9070. msgid "axis done"
  9071. msgstr ""
  9072. #: flatcamTools/ToolTransform.py:875
  9073. msgid "No object selected. Please Select an object to offset!"
  9074. msgstr ""
  9075. #: flatcamTools/ToolTransform.py:884
  9076. msgid "CNCJob objects can't be offset."
  9077. msgstr ""
  9078. #: flatcamTools/ToolTransform.py:898
  9079. msgid "Offset on the"
  9080. msgstr ""
  9081. #: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:68
  9082. msgid "Expected FlatCAMGerber or FlatCAMGeometry, got"
  9083. msgstr ""
  9084. #: tclCommands/TclCommandCopperClear.py:234 tclCommands/TclCommandPaint.py:231
  9085. msgid "Expected -box <value>."
  9086. msgstr ""
  9087. #: tclCommands/TclCommandCopperClear.py:243 tclCommands/TclCommandPaint.py:240
  9088. #: tclCommands/TclCommandScale.py:63
  9089. msgid "Could not retrieve box object"
  9090. msgstr ""
  9091. #: tclCommands/TclCommandCopperClear.py:263
  9092. msgid ""
  9093. "None of the following args: 'ref', 'all' were found or none was set to 1.\n"
  9094. "Copper clearing failed."
  9095. msgstr ""
  9096. #: tclCommands/TclCommandPaint.py:210
  9097. msgid "Expected -x <value> and -y <value>."
  9098. msgstr ""
  9099. #: tclCommands/TclCommandPaint.py:257
  9100. msgid ""
  9101. "There was none of the following args: 'ref', 'single', 'all'.\n"
  9102. "Paint failed."
  9103. msgstr ""
  9104. #: tclCommands/TclCommandScale.py:83
  9105. msgid "Expected -origin <origin> or -origin <min_bounds> or -origin <center>."
  9106. msgstr ""
  9107. #: tclCommands/TclCommandScale.py:92
  9108. msgid "Expected -x <value> -y <value>."
  9109. msgstr ""
  9110. #: tclCommands/TclCommandSubtractRectangle.py:49
  9111. msgid "No Geometry name in args. Provide a name and try again."
  9112. msgstr ""
  9113. #~ msgid ""
  9114. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  9115. #~ "Example:\n"
  9116. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  9117. #~ "\n"
  9118. #~ "Adjust the value starting with lower values\n"
  9119. #~ "and increasing it if areas that should be painted are still \n"
  9120. #~ "not painted.\n"
  9121. #~ "Lower values = faster processing, faster execution on PCB.\n"
  9122. #~ "Higher values = slow processing and slow execution on CNC\n"
  9123. #~ "due of too many paths."
  9124. #~ msgstr ""
  9125. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  9126. #~ "Example:\n"
  9127. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  9128. #~ "\n"
  9129. #~ "Adjust the value starting with lower values\n"
  9130. #~ "and increasing it if areas that should be painted are still \n"
  9131. #~ "not painted.\n"
  9132. #~ "Lower values = faster processing, faster execution on PCB.\n"
  9133. #~ "Higher values = slow processing and slow execution on CNC\n"
  9134. #~ "due of too many paths."
  9135. #~| msgid "z_toolchange = Z coord for Toolchange"
  9136. #~ msgid "z_cut = Z coord for Toolchange"
  9137. #~ msgstr "z_cut = Z coord for Toolchange"
  9138. #~| msgid "z_toolchange = Z coord for Toolchange"
  9139. #~ msgid "z_move = Z coord for Toolchange"
  9140. #~ msgstr "z_move = Z coord for Toolchange"
  9141. #~ msgid "%s/Project_%s"
  9142. #~ msgstr "%s/Project_%s"
  9143. #~ msgid "tool_tab"
  9144. #~ msgstr "tool_tab"