strings.po 285 KB

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