strings.po 269 KB

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