strings.po 320 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244
  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-03-17 23:12+0200\n"
  9. "PO-Revision-Date: 2019-03-17 23:13+0200\n"
  10. "Language-Team: \n"
  11. "MIME-Version: 1.0\n"
  12. "Content-Type: text/plain; charset=UTF-8\n"
  13. "Content-Transfer-Encoding: 8bit\n"
  14. "Generated-By: pygettext.py 1.5\n"
  15. "X-Generator: Poedit 2.2.1\n"
  16. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  17. "X-Poedit-Basepath: ../../..\n"
  18. "Last-Translator: \n"
  19. "Language: en\n"
  20. "X-Poedit-SearchPath-0: .\n"
  21. #: FlatCAMApp.py:844
  22. msgid "[ERROR] Could not find the Language files. The App strings are missing."
  23. msgstr ""
  24. "[ERROR] Could not find the Language files. The App strings are missing."
  25. #: FlatCAMApp.py:1672 ObjectCollection.py:80 flatcamTools/ToolImage.py:213
  26. msgid "Open cancelled."
  27. msgstr "Open cancelled."
  28. #: FlatCAMApp.py:1686
  29. msgid "Open Config file failed."
  30. msgstr "Open Config file failed."
  31. #: FlatCAMApp.py:1871
  32. msgid ""
  33. "[WARNING_NOTCL] Editing a MultiGeo Geometry is not possible for the moment."
  34. msgstr ""
  35. "[WARNING_NOTCL] Editing a MultiGeo Geometry is not possible for the moment."
  36. #: FlatCAMApp.py:1892
  37. msgid "[WARNING_NOTCL]Select a Geometry or Excellon Object to edit."
  38. msgstr "[WARNING_NOTCL]Select a Geometry or Excellon Object to edit."
  39. #: FlatCAMApp.py:1903
  40. msgid "[WARNING_NOTCL]Editor is activated ..."
  41. msgstr "[WARNING_NOTCL]Editor is activated ..."
  42. #: FlatCAMApp.py:1942
  43. msgid "[WARNING] Object empty after edit."
  44. msgstr "[WARNING] Object empty after edit."
  45. #: FlatCAMApp.py:1951
  46. msgid "[WARNING_NOTCL]Select a Geometry or Excellon Object to update."
  47. msgstr "[WARNING_NOTCL]Select a Geometry or Excellon Object to update."
  48. #: FlatCAMApp.py:1964
  49. #, python-format
  50. msgid "[selected] %s is updated, returning to App..."
  51. msgstr "[selected] %s is updated, returning to App..."
  52. #: FlatCAMApp.py:2287
  53. msgid "[ERROR] Could not load defaults file."
  54. msgstr "[ERROR] Could not load defaults file."
  55. #: FlatCAMApp.py:2299
  56. msgid "[ERROR] Failed to parse defaults file."
  57. msgstr "[ERROR] Failed to parse defaults file."
  58. #: FlatCAMApp.py:2320 FlatCAMApp.py:2323
  59. msgid "Import FlatCAM Preferences"
  60. msgstr "Import FlatCAM Preferences"
  61. #: FlatCAMApp.py:2328
  62. msgid "[WARNING_NOTCL]FlatCAM preferences import cancelled."
  63. msgstr "[WARNING_NOTCL]FlatCAM preferences import cancelled."
  64. #: FlatCAMApp.py:2336 FlatCAMApp.py:2810
  65. msgid "[ERROR_NOTCL] Could not load defaults file."
  66. msgstr "[ERROR_NOTCL] Could not load defaults file."
  67. #: FlatCAMApp.py:2344 FlatCAMApp.py:2819
  68. msgid "[ERROR_NOTCL] Failed to parse defaults file."
  69. msgstr "[ERROR_NOTCL] Failed to parse defaults file."
  70. #: FlatCAMApp.py:2347
  71. #, python-format
  72. msgid "[success]Imported Defaults from %s"
  73. msgstr "[success]Imported Defaults from %s"
  74. #: FlatCAMApp.py:2357 FlatCAMApp.py:2361
  75. msgid "Export FlatCAM Preferences"
  76. msgstr "Export FlatCAM Preferences"
  77. #: FlatCAMApp.py:2367
  78. msgid "[WARNING_NOTCL]FlatCAM preferences export cancelled."
  79. msgstr "[WARNING_NOTCL]FlatCAM preferences export cancelled."
  80. #: FlatCAMApp.py:2383
  81. msgid "[ERROR_NOTCL]Could not load defaults file."
  82. msgstr "[ERROR_NOTCL]Could not load defaults file."
  83. #: FlatCAMApp.py:2402 FlatCAMApp.py:2833
  84. msgid "[ERROR_NOTCL] Failed to write defaults to file."
  85. msgstr "[ERROR_NOTCL] Failed to write defaults to file."
  86. #: FlatCAMApp.py:2454
  87. msgid "[ERROR_NOTCL]Failed to open recent files file for writing."
  88. msgstr "[ERROR_NOTCL]Failed to open recent files file for writing."
  89. #: FlatCAMApp.py:2539 camlib.py:4229
  90. msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
  91. msgstr "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
  92. #: FlatCAMApp.py:2540
  93. #, python-brace-format
  94. msgid ""
  95. "Object ({kind}) failed because: {error} \n"
  96. "\n"
  97. msgstr ""
  98. "Object ({kind}) failed because: {error} \n"
  99. "\n"
  100. #: FlatCAMApp.py:2560
  101. msgid "Converting units to "
  102. msgstr "Converting units to "
  103. #: FlatCAMApp.py:2618 FlatCAMApp.py:2621 FlatCAMApp.py:2624 FlatCAMApp.py:2627
  104. #, python-brace-format
  105. msgid ""
  106. "[selected]{kind} created/selected: <span style=\"color:{color};\">{name}</"
  107. "span>"
  108. msgstr ""
  109. "[selected]{kind} created/selected: <span style=\"color:{color};\">{name}</"
  110. "span>"
  111. #: FlatCAMApp.py:2865
  112. msgid "[success]Defaults saved."
  113. msgstr "[success]Defaults saved."
  114. #: FlatCAMApp.py:2886
  115. msgid "[ERROR_NOTCL] Could not load factory defaults file."
  116. msgstr "[ERROR_NOTCL] Could not load factory defaults file."
  117. #: FlatCAMApp.py:2895
  118. msgid "[ERROR_NOTCL] Failed to parse factory defaults file."
  119. msgstr "[ERROR_NOTCL] Failed to parse factory defaults file."
  120. #: FlatCAMApp.py:2909
  121. msgid "[ERROR_NOTCL] Failed to write factory defaults to file."
  122. msgstr "[ERROR_NOTCL] Failed to write factory defaults to file."
  123. #: FlatCAMApp.py:2913
  124. msgid "Factory defaults saved."
  125. msgstr "Factory defaults saved."
  126. #: FlatCAMApp.py:2918
  127. msgid ""
  128. "There are files/objects modified in FlatCAM. \n"
  129. "Do you want to Save the project?"
  130. msgstr ""
  131. "There are files/objects modified in FlatCAM. \n"
  132. "Do you want to Save the project?"
  133. #: FlatCAMApp.py:2921 FlatCAMApp.py:5190
  134. msgid "Save changes"
  135. msgstr "Save changes"
  136. #: FlatCAMApp.py:2981
  137. msgid ""
  138. "[ERROR] Failed join. The Geometry objects are of different types.\n"
  139. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  140. "is to convert from one to another and retry joining \n"
  141. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  142. "be lost and the result may not be what was expected. \n"
  143. "Check the generated GCODE."
  144. msgstr ""
  145. "[ERROR] Failed join. The Geometry objects are of different types.\n"
  146. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  147. "is to convert from one to another and retry joining \n"
  148. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  149. "be lost and the result may not be what was expected. \n"
  150. "Check the generated GCODE."
  151. #: FlatCAMApp.py:3022
  152. msgid "[ERROR_NOTCL]Failed. Excellon joining works only on Excellon objects."
  153. msgstr "[ERROR_NOTCL]Failed. Excellon joining works only on Excellon objects."
  154. #: FlatCAMApp.py:3044
  155. msgid "[ERROR_NOTCL]Failed. Gerber joining works only on Gerber objects."
  156. msgstr "[ERROR_NOTCL]Failed. Gerber joining works only on Gerber objects."
  157. #: FlatCAMApp.py:3059 FlatCAMApp.py:3084
  158. msgid "[ERROR_NOTCL]Failed. Select a Geometry Object and try again."
  159. msgstr "[ERROR_NOTCL]Failed. Select a Geometry Object and try again."
  160. #: FlatCAMApp.py:3063 FlatCAMApp.py:3088
  161. #, python-format
  162. msgid "[ERROR_NOTCL]Expected a FlatCAMGeometry, got %s"
  163. msgstr "[ERROR_NOTCL]Expected a FlatCAMGeometry, got %s"
  164. #: FlatCAMApp.py:3076
  165. msgid "[success] A Geometry object was converted to MultiGeo type."
  166. msgstr "[success] A Geometry object was converted to MultiGeo type."
  167. #: FlatCAMApp.py:3102
  168. msgid "[success] A Geometry object was converted to SingleGeo type."
  169. msgstr "[success] A Geometry object was converted to SingleGeo type."
  170. #: FlatCAMApp.py:3286
  171. #, python-format
  172. msgid "[success]Converted units to %s"
  173. msgstr "[success]Converted units to %s"
  174. #: FlatCAMApp.py:3297
  175. msgid "[WARNING_NOTCL]Units conversion cancelled."
  176. msgstr "[WARNING_NOTCL]Units conversion cancelled."
  177. #: FlatCAMApp.py:3862
  178. msgid "Open file"
  179. msgstr "Open file"
  180. #: FlatCAMApp.py:3913 FlatCAMApp.py:3918
  181. msgid "Export G-Code ..."
  182. msgstr "Export G-Code ..."
  183. #: FlatCAMApp.py:3921
  184. msgid "[WARNING_NOTCL]Export Code cancelled."
  185. msgstr "[WARNING_NOTCL]Export Code cancelled."
  186. #: FlatCAMApp.py:3931
  187. msgid "[WARNING] No such file or directory"
  188. msgstr "[WARNING] No such file or directory"
  189. #: FlatCAMApp.py:3938
  190. #, python-format
  191. msgid "Saved to: %s"
  192. msgstr "Saved to: %s"
  193. #: FlatCAMApp.py:4001 FlatCAMApp.py:4033 FlatCAMApp.py:4044 FlatCAMApp.py:4055
  194. #: flatcamTools/ToolNonCopperClear.py:487 flatcamTools/ToolSolderPaste.py:764
  195. msgid ""
  196. "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
  197. "format."
  198. msgstr ""
  199. "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
  200. "format."
  201. #: FlatCAMApp.py:4006 FlatCAMApp.py:4038 FlatCAMApp.py:4049 FlatCAMApp.py:4060
  202. #: flatcamGUI/FlatCAMGUI.py:2484
  203. msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
  204. msgstr "[WARNING_NOTCL] Adding Tool cancelled ..."
  205. #: FlatCAMApp.py:4009
  206. msgid ""
  207. "Adding Tool works only when Advanced is checked.\n"
  208. "Go to Preferences -> General - Show Advanced Options."
  209. msgstr ""
  210. "Adding Tool works only when Advanced is checked.\n"
  211. "Go to Preferences -> General - Show Advanced Options."
  212. #: FlatCAMApp.py:4114
  213. msgid "Object(s) deleted ..."
  214. msgstr "Object(s) deleted ..."
  215. #: FlatCAMApp.py:4118
  216. msgid "Failed. No object(s) selected..."
  217. msgstr "Failed. No object(s) selected..."
  218. #: FlatCAMApp.py:4120
  219. msgid "Save the work in Editor and try again ..."
  220. msgstr "Save the work in Editor and try again ..."
  221. #: FlatCAMApp.py:4133
  222. msgid "Click to set the origin ..."
  223. msgstr "Click to set the origin ..."
  224. #: FlatCAMApp.py:4145
  225. msgid "Jump to ..."
  226. msgstr "Jump to ..."
  227. #: FlatCAMApp.py:4146
  228. msgid "Enter the coordinates in format X,Y:"
  229. msgstr "Enter the coordinates in format X,Y:"
  230. #: FlatCAMApp.py:4153
  231. msgid "Wrong coordinates. Enter coordinates in format: X,Y"
  232. msgstr "Wrong coordinates. Enter coordinates in format: X,Y"
  233. #: FlatCAMApp.py:4168
  234. msgid "Done."
  235. msgstr "Done."
  236. #: FlatCAMApp.py:4300
  237. msgid "[success] Origin set ..."
  238. msgstr "[success] Origin set ..."
  239. #: FlatCAMApp.py:4318
  240. msgid "Preferences"
  241. msgstr "Preferences"
  242. #: FlatCAMApp.py:4338
  243. msgid "[WARNING_NOTCL] No object selected to Flip on Y axis."
  244. msgstr "[WARNING_NOTCL] No object selected to Flip on Y axis."
  245. #: FlatCAMApp.py:4363
  246. msgid "[success] Flip on Y axis done."
  247. msgstr "[success] Flip on Y axis done."
  248. #: FlatCAMApp.py:4365 FlatCAMApp.py:4405 FlatCAMEditor.py:1340
  249. #: flatcamTools/ToolTransform.py:750
  250. #, python-format
  251. msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
  252. msgstr "[ERROR_NOTCL] Due of %s, Flip action was not executed."
  253. #: FlatCAMApp.py:4378
  254. msgid "[WARNING_NOTCL] No object selected to Flip on X axis."
  255. msgstr "[WARNING_NOTCL] No object selected to Flip on X axis."
  256. #: FlatCAMApp.py:4403
  257. msgid "[success] Flip on X axis done."
  258. msgstr "[success] Flip on X axis done."
  259. #: FlatCAMApp.py:4418
  260. msgid "[WARNING_NOTCL] No object selected to Rotate."
  261. msgstr "[WARNING_NOTCL] No object selected to Rotate."
  262. #: FlatCAMApp.py:4421 FlatCAMApp.py:4466 FlatCAMApp.py:4497
  263. msgid "Transform"
  264. msgstr "Transform"
  265. #: FlatCAMApp.py:4421 FlatCAMApp.py:4466 FlatCAMApp.py:4497
  266. msgid "Enter the Angle value:"
  267. msgstr "Enter the Angle value:"
  268. #: FlatCAMApp.py:4451
  269. msgid "[success] Rotation done."
  270. msgstr "[success] Rotation done."
  271. #: FlatCAMApp.py:4453 FlatCAMEditor.py:1283 flatcamTools/ToolTransform.py:678
  272. #, python-format
  273. msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
  274. msgstr "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
  275. #: FlatCAMApp.py:4464
  276. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
  277. msgstr "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
  278. #: FlatCAMApp.py:4485
  279. msgid "[success] Skew on X axis done."
  280. msgstr "[success] Skew on X axis done."
  281. #: FlatCAMApp.py:4495
  282. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
  283. msgstr "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
  284. #: FlatCAMApp.py:4516
  285. msgid "[success] Skew on Y axis done."
  286. msgstr "[success] Skew on Y axis done."
  287. #: FlatCAMApp.py:4612 FlatCAMApp.py:4639
  288. msgid ""
  289. "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
  290. "format."
  291. msgstr ""
  292. "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
  293. "format."
  294. #: FlatCAMApp.py:4618
  295. msgid "[success] New Grid added ..."
  296. msgstr "[success] New Grid added ..."
  297. #: FlatCAMApp.py:4621
  298. msgid "[WARNING_NOTCL] Grid already exists ..."
  299. msgstr "[WARNING_NOTCL] Grid already exists ..."
  300. #: FlatCAMApp.py:4624
  301. msgid "[WARNING_NOTCL] Adding New Grid cancelled ..."
  302. msgstr "[WARNING_NOTCL] Adding New Grid cancelled ..."
  303. #: FlatCAMApp.py:4646
  304. msgid "[ERROR_NOTCL] Grid Value does not exist ..."
  305. msgstr "[ERROR_NOTCL] Grid Value does not exist ..."
  306. #: FlatCAMApp.py:4649
  307. msgid "[success] Grid Value deleted ..."
  308. msgstr "[success] Grid Value deleted ..."
  309. #: FlatCAMApp.py:4652
  310. msgid "[WARNING_NOTCL] Delete Grid value cancelled ..."
  311. msgstr "[WARNING_NOTCL] Delete Grid value cancelled ..."
  312. #: FlatCAMApp.py:4691
  313. msgid "[WARNING_NOTCL]No object selected to copy it's name"
  314. msgstr "[WARNING_NOTCL]No object selected to copy it's name"
  315. #: FlatCAMApp.py:4695
  316. msgid "Name copied on clipboard ..."
  317. msgstr "Name copied on clipboard ..."
  318. #: FlatCAMApp.py:4990 FlatCAMApp.py:4993 FlatCAMApp.py:4996 FlatCAMApp.py:4999
  319. #: FlatCAMApp.py:5013 FlatCAMApp.py:5016 FlatCAMApp.py:5019 FlatCAMApp.py:5022
  320. #: FlatCAMApp.py:5061 FlatCAMApp.py:5064 FlatCAMApp.py:5067 FlatCAMApp.py:5070
  321. #: ObjectCollection.py:696 ObjectCollection.py:699 ObjectCollection.py:702
  322. #: ObjectCollection.py:705
  323. #, python-brace-format
  324. msgid "[selected]<span style=\"color:{color};\">{name}</span> selected"
  325. msgstr "[selected]<span style=\"color:{color};\">{name}</span> selected"
  326. #: FlatCAMApp.py:5187
  327. msgid ""
  328. "There are files/objects opened in FlatCAM.\n"
  329. "Creating a New project will delete them.\n"
  330. "Do you want to Save the project?"
  331. msgstr ""
  332. "There are files/objects opened in FlatCAM.\n"
  333. "Creating a New project will delete them.\n"
  334. "Do you want to Save the project?"
  335. #: FlatCAMApp.py:5205
  336. msgid "[success] New Project created..."
  337. msgstr "[success] New Project created..."
  338. #: FlatCAMApp.py:5286
  339. msgid ""
  340. "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  341. msgstr ""
  342. "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  343. #: FlatCAMApp.py:5293
  344. msgid ""
  345. "[WARNING_NOTCL] There is no selected object for which to see it's source "
  346. "file code."
  347. msgstr ""
  348. "[WARNING_NOTCL] There is no selected object for which to see it's source "
  349. "file code."
  350. #: FlatCAMApp.py:5297 FlatCAMApp.py:6728 FlatCAMObj.py:5398
  351. msgid "Code Editor"
  352. msgstr "Code Editor"
  353. #: FlatCAMApp.py:5310
  354. #, python-format
  355. msgid "[ERROR]App.on_view_source() -->%s"
  356. msgstr "[ERROR]App.on_view_source() -->%s"
  357. #: FlatCAMApp.py:5348 FlatCAMApp.py:5351 flatcamGUI/FlatCAMGUI.py:541
  358. #: flatcamGUI/FlatCAMGUI.py:1590
  359. msgid "Open Gerber"
  360. msgstr "Open Gerber"
  361. #: FlatCAMApp.py:5356
  362. msgid "[WARNING_NOTCL] Open Gerber cancelled."
  363. msgstr "[WARNING_NOTCL] Open Gerber cancelled."
  364. #: FlatCAMApp.py:5377 FlatCAMApp.py:5380 flatcamGUI/FlatCAMGUI.py:542
  365. #: flatcamGUI/FlatCAMGUI.py:1591
  366. msgid "Open Excellon"
  367. msgstr "Open Excellon"
  368. #: FlatCAMApp.py:5385
  369. msgid "[WARNING_NOTCL]Open Excellon cancelled."
  370. msgstr "[WARNING_NOTCL]Open Excellon cancelled."
  371. #: FlatCAMApp.py:5407 FlatCAMApp.py:5410
  372. msgid "Open G-Code"
  373. msgstr "Open G-Code"
  374. #: FlatCAMApp.py:5415
  375. msgid "[WARNING_NOTCL]Open G-Code cancelled."
  376. msgstr "[WARNING_NOTCL]Open G-Code cancelled."
  377. #: FlatCAMApp.py:5433 FlatCAMApp.py:5436
  378. msgid "Open Project"
  379. msgstr "Open Project"
  380. #: FlatCAMApp.py:5444
  381. msgid "[WARNING_NOTCL]Open Project cancelled."
  382. msgstr "[WARNING_NOTCL]Open Project cancelled."
  383. #: FlatCAMApp.py:5463 FlatCAMApp.py:5466
  384. msgid "Open Configuration File"
  385. msgstr "Open Configuration File"
  386. #: FlatCAMApp.py:5470
  387. msgid "[WARNING_NOTCL]Open Config cancelled."
  388. msgstr "[WARNING_NOTCL]Open Config cancelled."
  389. #: FlatCAMApp.py:5485 FlatCAMApp.py:5682 FlatCAMApp.py:7588 FlatCAMApp.py:7608
  390. #: FlatCAMApp.py:7629 FlatCAMApp.py:7651
  391. msgid "[WARNING_NOTCL] No object selected."
  392. msgstr "[WARNING_NOTCL] No object selected."
  393. #: FlatCAMApp.py:5486 FlatCAMApp.py:5683
  394. msgid "Please Select a Geometry object to export"
  395. msgstr "Please Select a Geometry object to export"
  396. #: FlatCAMApp.py:5497
  397. msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  398. msgstr "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  399. #: FlatCAMApp.py:5510 FlatCAMApp.py:5514
  400. msgid "Export SVG"
  401. msgstr "Export SVG"
  402. #: FlatCAMApp.py:5519
  403. msgid "[WARNING_NOTCL]Export SVG cancelled."
  404. msgstr "[WARNING_NOTCL]Export SVG cancelled."
  405. #: FlatCAMApp.py:5533
  406. msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  407. msgstr "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  408. #: FlatCAMApp.py:5539 FlatCAMApp.py:5543
  409. msgid "Export PNG Image"
  410. msgstr "Export PNG Image"
  411. #: FlatCAMApp.py:5548
  412. msgid "Export PNG cancelled."
  413. msgstr "Export PNG cancelled."
  414. #: FlatCAMApp.py:5565
  415. msgid ""
  416. "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  417. msgstr ""
  418. "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  419. #: FlatCAMApp.py:5570
  420. msgid ""
  421. "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  422. msgstr ""
  423. "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  424. #: FlatCAMApp.py:5582
  425. msgid "Save Gerber source file"
  426. msgstr "Save Gerber source file"
  427. #: FlatCAMApp.py:5587
  428. msgid "[WARNING_NOTCL] Save Gerber source file cancelled."
  429. msgstr "[WARNING_NOTCL] Save Gerber source file cancelled."
  430. #: FlatCAMApp.py:5604
  431. msgid ""
  432. "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
  433. "export."
  434. msgstr ""
  435. "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
  436. "export."
  437. #: FlatCAMApp.py:5609 FlatCAMApp.py:5648
  438. msgid ""
  439. "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  440. msgstr ""
  441. "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  442. #: FlatCAMApp.py:5617 FlatCAMApp.py:5621
  443. msgid "Save Excellon source file"
  444. msgstr "Save Excellon source file"
  445. #: FlatCAMApp.py:5626
  446. msgid "[WARNING_NOTCL] Saving Excellon source file cancelled."
  447. msgstr "[WARNING_NOTCL] Saving Excellon source file cancelled."
  448. #: FlatCAMApp.py:5643
  449. msgid ""
  450. "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
  451. "export."
  452. msgstr ""
  453. "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
  454. "export."
  455. #: FlatCAMApp.py:5656 FlatCAMApp.py:5660
  456. msgid "Export Excellon"
  457. msgstr "Export Excellon"
  458. #: FlatCAMApp.py:5665
  459. msgid "[WARNING_NOTCL]Export Excellon cancelled."
  460. msgstr "[WARNING_NOTCL]Export Excellon cancelled."
  461. #: FlatCAMApp.py:5693
  462. msgid "[ERROR_NOTCL] Only Geometry objects can be used."
  463. msgstr "[ERROR_NOTCL] Only Geometry objects can be used."
  464. #: FlatCAMApp.py:5706 FlatCAMApp.py:5710
  465. msgid "Export DXF"
  466. msgstr "Export DXF"
  467. #: FlatCAMApp.py:5715
  468. msgid "[WARNING_NOTCL] Export DXF cancelled."
  469. msgstr "[WARNING_NOTCL] Export DXF cancelled."
  470. #: FlatCAMApp.py:5733 FlatCAMApp.py:5736
  471. msgid "Import SVG"
  472. msgstr "Import SVG"
  473. #: FlatCAMApp.py:5744
  474. msgid "[WARNING_NOTCL] Open SVG cancelled."
  475. msgstr "[WARNING_NOTCL] Open SVG cancelled."
  476. #: FlatCAMApp.py:5763 FlatCAMApp.py:5766
  477. msgid "Import DXF"
  478. msgstr "Import DXF"
  479. #: FlatCAMApp.py:5774
  480. msgid "[WARNING_NOTCL]Open DXF cancelled."
  481. msgstr "[WARNING_NOTCL]Open DXF cancelled."
  482. #: FlatCAMApp.py:5792 FlatCAMApp.py:5795
  483. msgid "Open TCL script"
  484. msgstr "Open TCL script"
  485. #: FlatCAMApp.py:5803
  486. msgid "[WARNING_NOTCL]Open TCL script cancelled."
  487. msgstr "[WARNING_NOTCL]Open TCL script cancelled."
  488. #: FlatCAMApp.py:5851 FlatCAMApp.py:5855
  489. msgid "Save Project As ..."
  490. msgstr "Save Project As ..."
  491. #: FlatCAMApp.py:5852
  492. #, python-brace-format
  493. msgid "{l_save}/Project_{date}"
  494. msgstr "{l_save}/Project_{date}"
  495. #: FlatCAMApp.py:5860
  496. msgid "[WARNING_NOTCL] Save Project cancelled."
  497. msgstr "[WARNING_NOTCL] Save Project cancelled."
  498. #: FlatCAMApp.py:5905
  499. msgid "Exporting SVG"
  500. msgstr "Exporting SVG"
  501. #: FlatCAMApp.py:5938 FlatCAMApp.py:6043 FlatCAMApp.py:6157
  502. #, python-format
  503. msgid "[success] SVG file exported to %s"
  504. msgstr "[success] SVG file exported to %s"
  505. #: FlatCAMApp.py:5969 FlatCAMApp.py:6089
  506. #, python-format
  507. msgid "[WARNING_NOTCL]No object Box. Using instead %s"
  508. msgstr "[WARNING_NOTCL]No object Box. Using instead %s"
  509. #: FlatCAMApp.py:6046 FlatCAMApp.py:6160
  510. msgid "Generating Film ... Please wait."
  511. msgstr "Generating Film ... Please wait."
  512. #: FlatCAMApp.py:6307
  513. #, python-format
  514. msgid "[success] Excellon file exported to %s"
  515. msgstr "[success] Excellon file exported to %s"
  516. #: FlatCAMApp.py:6314
  517. msgid "Exporting Excellon"
  518. msgstr "Exporting Excellon"
  519. #: FlatCAMApp.py:6319 FlatCAMApp.py:6326
  520. msgid "[ERROR_NOTCL] Could not export Excellon file."
  521. msgstr "[ERROR_NOTCL] Could not export Excellon file."
  522. #: FlatCAMApp.py:6365
  523. #, python-format
  524. msgid "[success] DXF file exported to %s"
  525. msgstr "[success] DXF file exported to %s"
  526. #: FlatCAMApp.py:6371
  527. msgid "Exporting DXF"
  528. msgstr "Exporting DXF"
  529. #: FlatCAMApp.py:6376 FlatCAMApp.py:6383
  530. msgid "[[WARNING_NOTCL]] Could not export DXF file."
  531. msgstr "[[WARNING_NOTCL]] Could not export DXF file."
  532. #: FlatCAMApp.py:6403 FlatCAMApp.py:6445 FlatCAMApp.py:6486
  533. msgid ""
  534. "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
  535. "Gerber are supported"
  536. msgstr ""
  537. "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
  538. "Gerber are supported"
  539. #: FlatCAMApp.py:6413
  540. msgid "Importing SVG"
  541. msgstr "Importing SVG"
  542. #: FlatCAMApp.py:6424 FlatCAMApp.py:6466 FlatCAMApp.py:6506 FlatCAMApp.py:6582
  543. #: FlatCAMApp.py:6649 FlatCAMApp.py:6714
  544. #, python-format
  545. msgid "[success] Opened: %s"
  546. msgstr "[success] Opened: %s"
  547. #: FlatCAMApp.py:6455
  548. msgid "Importing DXF"
  549. msgstr "Importing DXF"
  550. #: FlatCAMApp.py:6494
  551. msgid "Importing Image"
  552. msgstr "Importing Image"
  553. #: FlatCAMApp.py:6535 FlatCAMApp.py:6537
  554. #, python-format
  555. msgid "[ERROR_NOTCL] Failed to open file: %s"
  556. msgstr "[ERROR_NOTCL] Failed to open file: %s"
  557. #: FlatCAMApp.py:6540
  558. #, python-brace-format
  559. msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  560. msgstr "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  561. #: FlatCAMApp.py:6546 FlatCAMEditor.py:5802 FlatCAMObj.py:4104
  562. msgid "[ERROR] An internal error has ocurred. See shell.\n"
  563. msgstr "[ERROR] An internal error has ocurred. See shell.\n"
  564. #: FlatCAMApp.py:6555
  565. msgid ""
  566. "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  567. msgstr ""
  568. "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  569. #: FlatCAMApp.py:6563
  570. msgid "Opening Gerber"
  571. msgstr "Opening Gerber"
  572. #: FlatCAMApp.py:6573
  573. msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  574. msgstr "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  575. #: FlatCAMApp.py:6608
  576. msgid "[ERROR_NOTCL] This is not Excellon file."
  577. msgstr "[ERROR_NOTCL] This is not Excellon file."
  578. #: FlatCAMApp.py:6611
  579. #, python-format
  580. msgid "[ERROR_NOTCL] Cannot open file: %s"
  581. msgstr "[ERROR_NOTCL] Cannot open file: %s"
  582. #: FlatCAMApp.py:6616
  583. msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  584. msgstr "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  585. #: FlatCAMApp.py:6632
  586. #, python-format
  587. msgid "[ERROR_NOTCL] No geometry found in file: %s"
  588. msgstr "[ERROR_NOTCL] No geometry found in file: %s"
  589. #: FlatCAMApp.py:6635
  590. msgid "Opening Excellon."
  591. msgstr "Opening Excellon."
  592. #: FlatCAMApp.py:6642
  593. msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  594. msgstr ""
  595. "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  596. #: FlatCAMApp.py:6681
  597. #, python-format
  598. msgid "[ERROR_NOTCL] Failed to open %s"
  599. msgstr "[ERROR_NOTCL] Failed to open %s"
  600. #: FlatCAMApp.py:6691
  601. msgid "[ERROR_NOTCL] This is not GCODE"
  602. msgstr "[ERROR_NOTCL] This is not GCODE"
  603. #: FlatCAMApp.py:6697
  604. msgid "Opening G-Code."
  605. msgstr "Opening G-Code."
  606. #: FlatCAMApp.py:6705
  607. msgid ""
  608. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  609. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  610. "processing"
  611. msgstr ""
  612. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  613. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  614. "processing"
  615. #: FlatCAMApp.py:6745
  616. #, python-format
  617. msgid "[ERROR_NOTCL] Failed to open config file: %s"
  618. msgstr "[ERROR_NOTCL] Failed to open config file: %s"
  619. #: FlatCAMApp.py:6770 FlatCAMApp.py:6787
  620. #, python-format
  621. msgid "[ERROR_NOTCL] Failed to open project file: %s"
  622. msgstr "[ERROR_NOTCL] Failed to open project file: %s"
  623. #: FlatCAMApp.py:6777
  624. #, python-format
  625. msgid "[ERROR_NOTCL] Failed to parse project file: %s"
  626. msgstr "[ERROR_NOTCL] Failed to parse project file: %s"
  627. #: FlatCAMApp.py:6813
  628. #, python-format
  629. msgid "[success] Project loaded from: %s"
  630. msgstr "[success] Project loaded from: %s"
  631. #: FlatCAMApp.py:6943
  632. msgid "Available commands:\n"
  633. msgstr "Available commands:\n"
  634. #: FlatCAMApp.py:6945
  635. msgid ""
  636. "\n"
  637. "\n"
  638. "Type help <command_name> for usage.\n"
  639. " Example: help open_gerber"
  640. msgstr ""
  641. "\n"
  642. "\n"
  643. "Type help <command_name> for usage.\n"
  644. " Example: help open_gerber"
  645. #: FlatCAMApp.py:7093
  646. msgid "Shows list of commands."
  647. msgstr "Shows list of commands."
  648. #: FlatCAMApp.py:7146
  649. msgid "[ERROR_NOTCL] Failed to load recent item list."
  650. msgstr "[ERROR_NOTCL] Failed to load recent item list."
  651. #: FlatCAMApp.py:7153
  652. msgid "[ERROR_NOTCL] Failed to parse recent item list."
  653. msgstr "[ERROR_NOTCL] Failed to parse recent item list."
  654. #: FlatCAMApp.py:7214 flatcamGUI/FlatCAMGUI.py:856
  655. msgid "<b>Shortcut Key List</b>"
  656. msgstr "<b>Shortcut Key List</b>"
  657. #: FlatCAMApp.py:7221
  658. msgid ""
  659. "\n"
  660. "<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from "
  661. "Project Tab</strong></span></p>\n"
  662. "\n"
  663. "<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
  664. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  665. "\n"
  666. "<ol>\n"
  667. "\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, "
  668. "DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, "
  669. "toolbars, key shortcuts or even dragging and dropping the files on the GUI."
  670. "<br />\n"
  671. "\t<br />\n"
  672. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  673. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  674. "through the menu/toolbar links offered within the app.</span><br />\n"
  675. "\t&nbsp;</li>\n"
  676. "\t<li><span style=\"font-size:10px\">Once an object is available in the "
  677. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  678. "strong>(more simpler is to double click the object name in the Project Tab), "
  679. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  680. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  681. ">\n"
  682. "\t<br />\n"
  683. "\tIf the selection of the object is done on the canvas by single click "
  684. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  685. "properties will be displayed into the Selected Tab. Alternatively, double "
  686. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  687. "strong> and populate it even if it was out of focus.<br />\n"
  688. "\t<br />\n"
  689. "\tYou can change the parameters in this screen and the flow direction is "
  690. "like this:<br />\n"
  691. "\t<br />\n"
  692. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  693. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  694. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  695. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  696. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  697. "span></li>\n"
  698. "</ol>\n"
  699. "\n"
  700. "<p><span style=\"font-size:10px\">A list of key shortcuts is available "
  701. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  702. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  703. "\n"
  704. " "
  705. msgstr ""
  706. "\n"
  707. "<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from "
  708. "Project Tab</strong></span></p>\n"
  709. "\n"
  710. "<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
  711. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  712. "\n"
  713. "<ol>\n"
  714. "\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, "
  715. "DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, "
  716. "toolbars, key shortcuts or even dragging and dropping the files on the GUI."
  717. "<br />\n"
  718. "\t<br />\n"
  719. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  720. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  721. "through the menu/toolbar links offered within the app.</span><br />\n"
  722. "\t&nbsp;</li>\n"
  723. "\t<li><span style=\"font-size:10px\">Once an object is available in the "
  724. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  725. "strong>(more simpler is to double click the object name in the Project Tab), "
  726. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  727. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  728. ">\n"
  729. "\t<br />\n"
  730. "\tIf the selection of the object is done on the canvas by single click "
  731. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  732. "properties will be displayed into the Selected Tab. Alternatively, double "
  733. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  734. "strong> and populate it even if it was out of focus.<br />\n"
  735. "\t<br />\n"
  736. "\tYou can change the parameters in this screen and the flow direction is "
  737. "like this:<br />\n"
  738. "\t<br />\n"
  739. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  740. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  741. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  742. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  743. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  744. "span></li>\n"
  745. "</ol>\n"
  746. "\n"
  747. "<p><span style=\"font-size:10px\">A list of key shortcuts is available "
  748. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  749. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  750. "\n"
  751. " "
  752. #: FlatCAMApp.py:7325
  753. msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  754. msgstr "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  755. #: FlatCAMApp.py:7332
  756. msgid "[ERROR_NOTCL] Could not parse information about latest version."
  757. msgstr "[ERROR_NOTCL] Could not parse information about latest version."
  758. #: FlatCAMApp.py:7342
  759. msgid "[success] FlatCAM is up to date!"
  760. msgstr "[success] FlatCAM is up to date!"
  761. #: FlatCAMApp.py:7347
  762. msgid "Newer Version Available"
  763. msgstr "Newer Version Available"
  764. #: FlatCAMApp.py:7348
  765. msgid ""
  766. "There is a newer version of FlatCAM available for download:\n"
  767. "\n"
  768. msgstr ""
  769. "There is a newer version of FlatCAM available for download:\n"
  770. "\n"
  771. #: FlatCAMApp.py:7350
  772. msgid "info"
  773. msgstr "info"
  774. #: FlatCAMApp.py:7369
  775. msgid "[success]All plots disabled."
  776. msgstr "[success]All plots disabled."
  777. #: FlatCAMApp.py:7375
  778. msgid "[success]All non selected plots disabled."
  779. msgstr "[success]All non selected plots disabled."
  780. #: FlatCAMApp.py:7381
  781. msgid "[success]All plots enabled."
  782. msgstr "[success]All plots enabled."
  783. #: FlatCAMApp.py:7491
  784. msgid "Saving FlatCAM Project"
  785. msgstr "Saving FlatCAM Project"
  786. #: FlatCAMApp.py:7512 FlatCAMApp.py:7543
  787. #, python-format
  788. msgid "[success] Project saved to: %s"
  789. msgstr "[success] Project saved to: %s"
  790. #: FlatCAMApp.py:7530
  791. #, python-format
  792. msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  793. msgstr "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  794. #: FlatCAMApp.py:7537
  795. #, python-format
  796. msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  797. msgstr ""
  798. "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  799. #: FlatCAMApp.py:7545
  800. #, python-format
  801. msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  802. msgstr "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  803. #: FlatCAMEditor.py:76
  804. msgid "Buffer distance:"
  805. msgstr "Buffer distance:"
  806. #: FlatCAMEditor.py:77
  807. msgid "Buffer corner:"
  808. msgstr "Buffer corner:"
  809. #: FlatCAMEditor.py:79
  810. msgid ""
  811. "There are 3 types of corners:\n"
  812. " - 'Round': the corner is rounded for exterior buffer.\n"
  813. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  814. " - 'Beveled:' the corner is a line that directly connects the features "
  815. "meeting in the corner"
  816. msgstr ""
  817. "There are 3 types of corners:\n"
  818. " - 'Round': the corner is rounded for exterior buffer.\n"
  819. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  820. " - 'Beveled:' the corner is a line that directly connects the features "
  821. "meeting in the corner"
  822. #: FlatCAMEditor.py:85
  823. msgid "Round"
  824. msgstr "Round"
  825. #: FlatCAMEditor.py:86
  826. msgid "Square"
  827. msgstr "Square"
  828. #: FlatCAMEditor.py:87
  829. msgid "Beveled"
  830. msgstr "Beveled"
  831. #: FlatCAMEditor.py:94
  832. msgid "Buffer Interior"
  833. msgstr "Buffer Interior"
  834. #: FlatCAMEditor.py:96
  835. msgid "Buffer Exterior"
  836. msgstr "Buffer Exterior"
  837. #: FlatCAMEditor.py:102
  838. msgid "Full Buffer"
  839. msgstr "Full Buffer"
  840. #: FlatCAMEditor.py:123 FlatCAMEditor.py:2623
  841. msgid "Buffer Tool"
  842. msgstr "Buffer Tool"
  843. #: FlatCAMEditor.py:134 FlatCAMEditor.py:151 FlatCAMEditor.py:168
  844. #: FlatCAMEditor.py:2641 FlatCAMEditor.py:2667 FlatCAMEditor.py:2693
  845. msgid ""
  846. "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
  847. "retry."
  848. msgstr ""
  849. "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
  850. "retry."
  851. #: FlatCAMEditor.py:416 flatcamGUI/FlatCAMGUI.py:3402
  852. #: flatcamGUI/FlatCAMGUI.py:4608 flatcamGUI/FlatCAMGUI.py:4884
  853. #: flatcamGUI/FlatCAMGUI.py:5015 flatcamGUI/ObjectUI.py:331
  854. msgid "Tool dia:"
  855. msgstr "Tool dia:"
  856. #: FlatCAMEditor.py:418 flatcamGUI/FlatCAMGUI.py:5017
  857. msgid ""
  858. "Diameter of the tool to\n"
  859. "be used in the operation."
  860. msgstr ""
  861. "Diameter of the tool to\n"
  862. "be used in the operation."
  863. #: FlatCAMEditor.py:427 flatcamGUI/FlatCAMGUI.py:4790
  864. #: flatcamGUI/FlatCAMGUI.py:5026 flatcamTools/ToolNonCopperClear.py:164
  865. #: flatcamTools/ToolPaint.py:160
  866. msgid "Overlap:"
  867. msgstr "Overlap:"
  868. #: FlatCAMEditor.py:429 flatcamTools/ToolPaint.py:162
  869. #, python-format
  870. msgid ""
  871. "How much (fraction) of the tool width to overlap each tool pass.\n"
  872. "Example:\n"
  873. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  874. "\n"
  875. "Adjust the value starting with lower values\n"
  876. "and increasing it if areas that should be painted are still \n"
  877. "not painted.\n"
  878. "Lower values = faster processing, faster execution on PCB.\n"
  879. "Higher values = slow processing and slow execution on CNC\n"
  880. "due of too many paths."
  881. msgstr ""
  882. "How much (fraction) of the tool width to overlap each tool pass.\n"
  883. "Example:\n"
  884. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  885. "\n"
  886. "Adjust the value starting with lower values\n"
  887. "and increasing it if areas that should be painted are still \n"
  888. "not painted.\n"
  889. "Lower values = faster processing, faster execution on PCB.\n"
  890. "Higher values = slow processing and slow execution on CNC\n"
  891. "due of too many paths."
  892. #: FlatCAMEditor.py:445 flatcamGUI/FlatCAMGUI.py:4806
  893. #: flatcamGUI/FlatCAMGUI.py:4892 flatcamGUI/FlatCAMGUI.py:5036
  894. #: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:180
  895. #: flatcamTools/ToolPaint.py:177
  896. msgid "Margin:"
  897. msgstr "Margin:"
  898. #: FlatCAMEditor.py:447 flatcamGUI/FlatCAMGUI.py:5038
  899. #: flatcamTools/ToolPaint.py:179
  900. msgid ""
  901. "Distance by which to avoid\n"
  902. "the edges of the polygon to\n"
  903. "be painted."
  904. msgstr ""
  905. "Distance by which to avoid\n"
  906. "the edges of the polygon to\n"
  907. "be painted."
  908. #: FlatCAMEditor.py:456 flatcamGUI/FlatCAMGUI.py:4815
  909. #: flatcamGUI/FlatCAMGUI.py:5047 flatcamTools/ToolNonCopperClear.py:189
  910. #: flatcamTools/ToolPaint.py:188
  911. msgid "Method:"
  912. msgstr "Method:"
  913. #: FlatCAMEditor.py:458 flatcamGUI/FlatCAMGUI.py:5049
  914. msgid ""
  915. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  916. "<BR><B>Seed-based</B>: Outwards from seed."
  917. msgstr ""
  918. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  919. "<BR><B>Seed-based</B>: Outwards from seed."
  920. #: FlatCAMEditor.py:464 flatcamGUI/FlatCAMGUI.py:4824
  921. #: flatcamGUI/FlatCAMGUI.py:5055
  922. msgid "Standard"
  923. msgstr "Standard"
  924. #: FlatCAMEditor.py:465 flatcamGUI/FlatCAMGUI.py:4825
  925. #: flatcamGUI/FlatCAMGUI.py:5056
  926. msgid "Seed-based"
  927. msgstr "Seed-based"
  928. #: FlatCAMEditor.py:466 flatcamGUI/FlatCAMGUI.py:4826
  929. #: flatcamGUI/FlatCAMGUI.py:5057
  930. msgid "Straight lines"
  931. msgstr "Straight lines"
  932. #: FlatCAMEditor.py:471 flatcamGUI/FlatCAMGUI.py:4831
  933. #: flatcamGUI/FlatCAMGUI.py:5062 flatcamTools/ToolNonCopperClear.py:205
  934. #: flatcamTools/ToolPaint.py:204
  935. msgid "Connect:"
  936. msgstr "Connect:"
  937. #: FlatCAMEditor.py:473 flatcamGUI/FlatCAMGUI.py:4833
  938. #: flatcamGUI/FlatCAMGUI.py:5064 flatcamTools/ToolNonCopperClear.py:207
  939. #: flatcamTools/ToolPaint.py:206
  940. msgid ""
  941. "Draw lines between resulting\n"
  942. "segments to minimize tool lifts."
  943. msgstr ""
  944. "Draw lines between resulting\n"
  945. "segments to minimize tool lifts."
  946. #: FlatCAMEditor.py:480 flatcamGUI/FlatCAMGUI.py:4840
  947. #: flatcamGUI/FlatCAMGUI.py:5072 flatcamTools/ToolNonCopperClear.py:214
  948. #: flatcamTools/ToolPaint.py:213
  949. msgid "Contour:"
  950. msgstr "Contour:"
  951. #: FlatCAMEditor.py:482 flatcamGUI/FlatCAMGUI.py:4842
  952. #: flatcamGUI/FlatCAMGUI.py:5074 flatcamTools/ToolNonCopperClear.py:216
  953. #: flatcamTools/ToolPaint.py:215
  954. msgid ""
  955. "Cut around the perimeter of the polygon\n"
  956. "to trim rough edges."
  957. msgstr ""
  958. "Cut around the perimeter of the polygon\n"
  959. "to trim rough edges."
  960. #: FlatCAMEditor.py:494
  961. msgid "Paint"
  962. msgstr "Paint"
  963. #: FlatCAMEditor.py:512 flatcamGUI/FlatCAMGUI.py:575
  964. #: flatcamGUI/FlatCAMGUI.py:1624 flatcamGUI/ObjectUI.py:1379
  965. #: flatcamTools/ToolPaint.py:340
  966. msgid "Paint Tool"
  967. msgstr "Paint Tool"
  968. #: FlatCAMEditor.py:548
  969. msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
  970. msgstr "[WARNING_NOTCL] Paint cancelled. No shape selected."
  971. #: FlatCAMEditor.py:559 flatcamTools/ToolCutOut.py:343
  972. #: flatcamTools/ToolCutOut.py:481 flatcamTools/ToolCutOut.py:601
  973. #: flatcamTools/ToolCutOut.py:706 flatcamTools/ToolDblSided.py:363
  974. msgid ""
  975. "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
  976. "retry."
  977. msgstr ""
  978. "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
  979. "retry."
  980. #: FlatCAMEditor.py:570
  981. msgid ""
  982. "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  983. msgstr ""
  984. "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  985. #: FlatCAMEditor.py:582
  986. msgid ""
  987. "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
  988. "retry."
  989. msgstr ""
  990. "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
  991. "retry."
  992. #: FlatCAMEditor.py:591 FlatCAMEditor.py:2648 FlatCAMEditor.py:2674
  993. #: FlatCAMEditor.py:2700 flatcamTools/ToolNonCopperClear.py:806
  994. #: flatcamTools/ToolProperties.py:104
  995. msgid "Tools"
  996. msgstr "Tools"
  997. #: FlatCAMEditor.py:602 FlatCAMEditor.py:975 flatcamGUI/FlatCAMGUI.py:584
  998. #: flatcamGUI/FlatCAMGUI.py:1635 flatcamTools/ToolTransform.py:398
  999. msgid "Transform Tool"
  1000. msgstr "Transform Tool"
  1001. #: FlatCAMEditor.py:603 FlatCAMEditor.py:664 flatcamTools/ToolTransform.py:24
  1002. #: flatcamTools/ToolTransform.py:82
  1003. msgid "Rotate"
  1004. msgstr "Rotate"
  1005. #: FlatCAMEditor.py:604 flatcamTools/ToolTransform.py:25
  1006. msgid "Skew/Shear"
  1007. msgstr "Skew/Shear"
  1008. #: FlatCAMEditor.py:605 flatcamGUI/ObjectUI.py:100 flatcamGUI/ObjectUI.py:265
  1009. #: flatcamTools/ToolTransform.py:26
  1010. msgid "Scale"
  1011. msgstr "Scale"
  1012. #: FlatCAMEditor.py:606 flatcamTools/ToolTransform.py:27
  1013. msgid "Mirror (Flip)"
  1014. msgstr "Mirror (Flip)"
  1015. #: FlatCAMEditor.py:607 flatcamGUI/ObjectUI.py:127 flatcamGUI/ObjectUI.py:959
  1016. #: flatcamGUI/ObjectUI.py:1517 flatcamTools/ToolTransform.py:28
  1017. msgid "Offset"
  1018. msgstr "Offset"
  1019. #: FlatCAMEditor.py:618
  1020. #, python-format
  1021. msgid "Editor %s"
  1022. msgstr "Editor %s"
  1023. #: FlatCAMEditor.py:650 FlatCAMEditor.py:4851 FlatCAMEditor.py:4887
  1024. #: flatcamTools/ToolTransform.py:68
  1025. msgid "Angle:"
  1026. msgstr "Angle:"
  1027. #: FlatCAMEditor.py:652 flatcamTools/ToolTransform.py:70
  1028. msgid ""
  1029. "Angle for Rotation action, in degrees.\n"
  1030. "Float number between -360 and 359.\n"
  1031. "Positive numbers for CW motion.\n"
  1032. "Negative numbers for CCW motion."
  1033. msgstr ""
  1034. "Angle for Rotation action, in degrees.\n"
  1035. "Float number between -360 and 359.\n"
  1036. "Positive numbers for CW motion.\n"
  1037. "Negative numbers for CCW motion."
  1038. #: FlatCAMEditor.py:666
  1039. msgid ""
  1040. "Rotate the selected shape(s).\n"
  1041. "The point of reference is the middle of\n"
  1042. "the bounding box for all selected shapes."
  1043. msgstr ""
  1044. "Rotate the selected shape(s).\n"
  1045. "The point of reference is the middle of\n"
  1046. "the bounding box for all selected shapes."
  1047. #: FlatCAMEditor.py:689 flatcamTools/ToolTransform.py:107
  1048. msgid "Angle X:"
  1049. msgstr "Angle X:"
  1050. #: FlatCAMEditor.py:691 FlatCAMEditor.py:709 flatcamTools/ToolTransform.py:109
  1051. #: flatcamTools/ToolTransform.py:127
  1052. msgid ""
  1053. "Angle for Skew action, in degrees.\n"
  1054. "Float number between -360 and 359."
  1055. msgstr ""
  1056. "Angle for Skew action, in degrees.\n"
  1057. "Float number between -360 and 359."
  1058. #: FlatCAMEditor.py:700 flatcamTools/ToolTransform.py:118
  1059. msgid "Skew X"
  1060. msgstr "Skew X"
  1061. #: FlatCAMEditor.py:702 FlatCAMEditor.py:720
  1062. msgid ""
  1063. "Skew/shear the selected shape(s).\n"
  1064. "The point of reference is the middle of\n"
  1065. "the bounding box for all selected shapes."
  1066. msgstr ""
  1067. "Skew/shear the selected shape(s).\n"
  1068. "The point of reference is the middle of\n"
  1069. "the bounding box for all selected shapes."
  1070. #: FlatCAMEditor.py:707 flatcamTools/ToolTransform.py:125
  1071. msgid "Angle Y:"
  1072. msgstr "Angle Y:"
  1073. #: FlatCAMEditor.py:718 flatcamTools/ToolTransform.py:136
  1074. msgid "Skew Y"
  1075. msgstr "Skew Y"
  1076. #: FlatCAMEditor.py:746 flatcamTools/ToolTransform.py:164
  1077. msgid "Factor X:"
  1078. msgstr "Factor X:"
  1079. #: FlatCAMEditor.py:748 flatcamTools/ToolTransform.py:166
  1080. msgid "Factor for Scale action over X axis."
  1081. msgstr "Factor for Scale action over X axis."
  1082. #: FlatCAMEditor.py:756 flatcamTools/ToolTransform.py:174
  1083. msgid "Scale X"
  1084. msgstr "Scale X"
  1085. #: FlatCAMEditor.py:758 FlatCAMEditor.py:775
  1086. msgid ""
  1087. "Scale the selected shape(s).\n"
  1088. "The point of reference depends on \n"
  1089. "the Scale reference checkbox state."
  1090. msgstr ""
  1091. "Scale the selected shape(s).\n"
  1092. "The point of reference depends on \n"
  1093. "the Scale reference checkbox state."
  1094. #: FlatCAMEditor.py:763 flatcamTools/ToolTransform.py:181
  1095. msgid "Factor Y:"
  1096. msgstr "Factor Y:"
  1097. #: FlatCAMEditor.py:765 flatcamTools/ToolTransform.py:183
  1098. msgid "Factor for Scale action over Y axis."
  1099. msgstr "Factor for Scale action over Y axis."
  1100. #: FlatCAMEditor.py:773 flatcamTools/ToolTransform.py:191
  1101. msgid "Scale Y"
  1102. msgstr "Scale Y"
  1103. #: FlatCAMEditor.py:782 flatcamGUI/FlatCAMGUI.py:5421
  1104. #: flatcamTools/ToolTransform.py:200
  1105. msgid "Link"
  1106. msgstr "Link"
  1107. #: FlatCAMEditor.py:784
  1108. msgid ""
  1109. "Scale the selected shape(s)\n"
  1110. "using the Scale Factor X for both axis."
  1111. msgstr ""
  1112. "Scale the selected shape(s)\n"
  1113. "using the Scale Factor X for both axis."
  1114. #: FlatCAMEditor.py:790 flatcamGUI/FlatCAMGUI.py:5429
  1115. #: flatcamTools/ToolTransform.py:208
  1116. msgid "Scale Reference"
  1117. msgstr "Scale Reference"
  1118. #: FlatCAMEditor.py:792
  1119. msgid ""
  1120. "Scale the selected shape(s)\n"
  1121. "using the origin reference when checked,\n"
  1122. "and the center of the biggest bounding box\n"
  1123. "of the selected shapes when unchecked."
  1124. msgstr ""
  1125. "Scale the selected shape(s)\n"
  1126. "using the origin reference when checked,\n"
  1127. "and the center of the biggest bounding box\n"
  1128. "of the selected shapes when unchecked."
  1129. #: FlatCAMEditor.py:820 flatcamTools/ToolTransform.py:238
  1130. msgid "Value X:"
  1131. msgstr "Value X:"
  1132. #: FlatCAMEditor.py:822 flatcamTools/ToolTransform.py:240
  1133. msgid "Value for Offset action on X axis."
  1134. msgstr "Value for Offset action on X axis."
  1135. #: FlatCAMEditor.py:830 flatcamTools/ToolTransform.py:248
  1136. msgid "Offset X"
  1137. msgstr "Offset X"
  1138. #: FlatCAMEditor.py:832 FlatCAMEditor.py:850
  1139. msgid ""
  1140. "Offset the selected shape(s).\n"
  1141. "The point of reference is the middle of\n"
  1142. "the bounding box for all selected shapes.\n"
  1143. msgstr ""
  1144. "Offset the selected shape(s).\n"
  1145. "The point of reference is the middle of\n"
  1146. "the bounding box for all selected shapes.\n"
  1147. #: FlatCAMEditor.py:838 flatcamTools/ToolTransform.py:255
  1148. msgid "Value Y:"
  1149. msgstr "Value Y:"
  1150. #: FlatCAMEditor.py:840 flatcamTools/ToolTransform.py:257
  1151. msgid "Value for Offset action on Y axis."
  1152. msgstr "Value for Offset action on Y axis."
  1153. #: FlatCAMEditor.py:848 flatcamTools/ToolTransform.py:265
  1154. msgid "Offset Y"
  1155. msgstr "Offset Y"
  1156. #: FlatCAMEditor.py:879 flatcamTools/ToolTransform.py:295
  1157. msgid "Flip on X"
  1158. msgstr "Flip on X"
  1159. #: FlatCAMEditor.py:881 FlatCAMEditor.py:889
  1160. msgid ""
  1161. "Flip the selected shape(s) over the X axis.\n"
  1162. "Does not create a new shape."
  1163. msgstr ""
  1164. "Flip the selected shape(s) over the X axis.\n"
  1165. "Does not create a new shape."
  1166. #: FlatCAMEditor.py:887 flatcamTools/ToolTransform.py:303
  1167. msgid "Flip on Y"
  1168. msgstr "Flip on Y"
  1169. #: FlatCAMEditor.py:896 flatcamTools/ToolTransform.py:312
  1170. msgid "Ref Pt"
  1171. msgstr "Ref Pt"
  1172. #: FlatCAMEditor.py:898
  1173. msgid ""
  1174. "Flip the selected shape(s)\n"
  1175. "around the point in Point Entry Field.\n"
  1176. "\n"
  1177. "The point coordinates can be captured by\n"
  1178. "left click on canvas together with pressing\n"
  1179. "SHIFT key. \n"
  1180. "Then click Add button to insert coordinates.\n"
  1181. "Or enter the coords in format (x, y) in the\n"
  1182. "Point Entry field and click Flip on X(Y)"
  1183. msgstr ""
  1184. "Flip the selected shape(s)\n"
  1185. "around the point in Point Entry Field.\n"
  1186. "\n"
  1187. "The point coordinates can be captured by\n"
  1188. "left click on canvas together with pressing\n"
  1189. "SHIFT key. \n"
  1190. "Then click Add button to insert coordinates.\n"
  1191. "Or enter the coords in format (x, y) in the\n"
  1192. "Point Entry field and click Flip on X(Y)"
  1193. #: FlatCAMEditor.py:910 flatcamTools/ToolTransform.py:325
  1194. msgid "Point:"
  1195. msgstr "Point:"
  1196. #: FlatCAMEditor.py:912
  1197. msgid ""
  1198. "Coordinates in format (x, y) used as reference for mirroring.\n"
  1199. "The 'x' in (x, y) will be used when using Flip on X and\n"
  1200. "the 'y' in (x, y) will be used when using Flip on Y."
  1201. msgstr ""
  1202. "Coordinates in format (x, y) used as reference for mirroring.\n"
  1203. "The 'x' in (x, y) will be used when using Flip on X and\n"
  1204. "the 'y' in (x, y) will be used when using Flip on Y."
  1205. #: FlatCAMEditor.py:922 flatcamGUI/ObjectUI.py:1059
  1206. #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208
  1207. #: flatcamTools/ToolNonCopperClear.py:133 flatcamTools/ToolPaint.py:131
  1208. #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:478
  1209. #: flatcamTools/ToolTransform.py:337
  1210. msgid "Add"
  1211. msgstr "Add"
  1212. #: FlatCAMEditor.py:924 flatcamTools/ToolTransform.py:339
  1213. msgid ""
  1214. "The point coordinates can be captured by\n"
  1215. "left click on canvas together with pressing\n"
  1216. "SHIFT key. Then click Add button to insert."
  1217. msgstr ""
  1218. "The point coordinates can be captured by\n"
  1219. "left click on canvas together with pressing\n"
  1220. "SHIFT key. Then click Add button to insert."
  1221. #: FlatCAMEditor.py:1039
  1222. msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  1223. msgstr "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  1224. #: FlatCAMEditor.py:1060 flatcamTools/ToolTransform.py:468
  1225. msgid "[ERROR_NOTCL]Wrong value format entered for Rotate, use a number."
  1226. msgstr "[ERROR_NOTCL]Wrong value format entered for Rotate, use a number."
  1227. #: FlatCAMEditor.py:1097 flatcamTools/ToolTransform.py:502
  1228. msgid "[ERROR_NOTCL]Wrong value format entered for Skew X, use a number."
  1229. msgstr "[ERROR_NOTCL]Wrong value format entered for Skew X, use a number."
  1230. #: FlatCAMEditor.py:1118 flatcamTools/ToolTransform.py:520
  1231. msgid "[ERROR_NOTCL]Wrong value format entered for Skew Y, use a number."
  1232. msgstr "[ERROR_NOTCL]Wrong value format entered for Skew Y, use a number."
  1233. #: FlatCAMEditor.py:1139 flatcamTools/ToolTransform.py:538
  1234. msgid "[ERROR_NOTCL]Wrong value format entered for Scale X, use a number."
  1235. msgstr "[ERROR_NOTCL]Wrong value format entered for Scale X, use a number."
  1236. #: FlatCAMEditor.py:1176 flatcamTools/ToolTransform.py:572
  1237. msgid "[ERROR_NOTCL]Wrong value format entered for Scale Y, use a number."
  1238. msgstr "[ERROR_NOTCL]Wrong value format entered for Scale Y, use a number."
  1239. #: FlatCAMEditor.py:1208 flatcamTools/ToolTransform.py:601
  1240. msgid "[ERROR_NOTCL]Wrong value format entered for Offset X, use a number."
  1241. msgstr "[ERROR_NOTCL]Wrong value format entered for Offset X, use a number."
  1242. #: FlatCAMEditor.py:1229 flatcamTools/ToolTransform.py:619
  1243. msgid "[ERROR_NOTCL]Wrong value format entered for Offset Y, use a number."
  1244. msgstr "[ERROR_NOTCL]Wrong value format entered for Offset Y, use a number."
  1245. #: FlatCAMEditor.py:1247
  1246. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  1247. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  1248. #: FlatCAMEditor.py:1250 flatcamTools/ToolTransform.py:640
  1249. msgid "Appying Rotate"
  1250. msgstr "Appying Rotate"
  1251. #: FlatCAMEditor.py:1278
  1252. msgid "[success] Done. Rotate completed."
  1253. msgstr "[success] Done. Rotate completed."
  1254. #: FlatCAMEditor.py:1294
  1255. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  1256. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  1257. #: FlatCAMEditor.py:1297 flatcamTools/ToolTransform.py:692
  1258. msgid "Applying Flip"
  1259. msgstr "Applying Flip"
  1260. #: FlatCAMEditor.py:1327
  1261. msgid "[success] Flip on the Y axis done ..."
  1262. msgstr "[success] Flip on the Y axis done ..."
  1263. #: FlatCAMEditor.py:1330
  1264. msgid "[success] Flip on the X axis done ..."
  1265. msgstr "[success] Flip on the X axis done ..."
  1266. #: FlatCAMEditor.py:1349
  1267. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  1268. msgstr ""
  1269. "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  1270. #: FlatCAMEditor.py:1352 flatcamTools/ToolTransform.py:762
  1271. msgid "Applying Skew"
  1272. msgstr "Applying Skew"
  1273. #: FlatCAMEditor.py:1377
  1274. #, python-format
  1275. msgid "[success] Skew on the %s axis done ..."
  1276. msgstr "[success] Skew on the %s axis done ..."
  1277. #: FlatCAMEditor.py:1381 flatcamTools/ToolTransform.py:797
  1278. #, python-format
  1279. msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  1280. msgstr "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  1281. #: FlatCAMEditor.py:1392
  1282. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  1283. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  1284. #: FlatCAMEditor.py:1395 flatcamTools/ToolTransform.py:811
  1285. msgid "Applying Scale"
  1286. msgstr "Applying Scale"
  1287. #: FlatCAMEditor.py:1428 flatcamTools/ToolTransform.py:849
  1288. #, python-format
  1289. msgid "[success] Scale on the %s axis done ..."
  1290. msgstr "[success] Scale on the %s axis done ..."
  1291. #: FlatCAMEditor.py:1431 flatcamTools/ToolTransform.py:852
  1292. #, python-format
  1293. msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  1294. msgstr "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  1295. #: FlatCAMEditor.py:1440
  1296. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  1297. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  1298. #: FlatCAMEditor.py:1443 flatcamTools/ToolTransform.py:864
  1299. msgid "Applying Offset"
  1300. msgstr "Applying Offset"
  1301. #: FlatCAMEditor.py:1467
  1302. #, python-format
  1303. msgid "[success] Offset on the %s axis done ..."
  1304. msgstr "[success] Offset on the %s axis done ..."
  1305. #: FlatCAMEditor.py:1471 flatcamTools/ToolTransform.py:898
  1306. #, python-format
  1307. msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  1308. msgstr "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  1309. #: FlatCAMEditor.py:1475
  1310. msgid "Rotate ..."
  1311. msgstr "Rotate ..."
  1312. #: FlatCAMEditor.py:1476 FlatCAMEditor.py:1533 FlatCAMEditor.py:1550
  1313. msgid "Enter an Angle Value (degrees):"
  1314. msgstr "Enter an Angle Value (degrees):"
  1315. #: FlatCAMEditor.py:1485
  1316. msgid "[success] Geometry shape rotate done..."
  1317. msgstr "[success] Geometry shape rotate done..."
  1318. #: FlatCAMEditor.py:1490
  1319. msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  1320. msgstr "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  1321. #: FlatCAMEditor.py:1496
  1322. msgid "Offset on X axis ..."
  1323. msgstr "Offset on X axis ..."
  1324. #: FlatCAMEditor.py:1497 FlatCAMEditor.py:1516
  1325. #, python-format
  1326. msgid "Enter a distance Value (%s):"
  1327. msgstr "Enter a distance Value (%s):"
  1328. #: FlatCAMEditor.py:1506
  1329. msgid "[success] Geometry shape offset on X axis done..."
  1330. msgstr "[success] Geometry shape offset on X axis done..."
  1331. #: FlatCAMEditor.py:1510
  1332. msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  1333. msgstr "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  1334. #: FlatCAMEditor.py:1515
  1335. msgid "Offset on Y axis ..."
  1336. msgstr "Offset on Y axis ..."
  1337. #: FlatCAMEditor.py:1525
  1338. msgid "[success] Geometry shape offset on Y axis done..."
  1339. msgstr "[success] Geometry shape offset on Y axis done..."
  1340. #: FlatCAMEditor.py:1529
  1341. msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  1342. msgstr "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  1343. #: FlatCAMEditor.py:1532
  1344. msgid "Skew on X axis ..."
  1345. msgstr "Skew on X axis ..."
  1346. #: FlatCAMEditor.py:1542
  1347. msgid "[success] Geometry shape skew on X axis done..."
  1348. msgstr "[success] Geometry shape skew on X axis done..."
  1349. #: FlatCAMEditor.py:1546
  1350. msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  1351. msgstr "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  1352. #: FlatCAMEditor.py:1549
  1353. msgid "Skew on Y axis ..."
  1354. msgstr "Skew on Y axis ..."
  1355. #: FlatCAMEditor.py:1559
  1356. msgid "[success] Geometry shape skew on Y axis done..."
  1357. msgstr "[success] Geometry shape skew on Y axis done..."
  1358. #: FlatCAMEditor.py:1563
  1359. msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  1360. msgstr "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  1361. #: FlatCAMEditor.py:1894 FlatCAMEditor.py:1933
  1362. msgid "Click on CENTER ..."
  1363. msgstr "Click on CENTER ..."
  1364. #: FlatCAMEditor.py:1901
  1365. msgid "Click on Circle perimeter point to complete ..."
  1366. msgstr "Click on Circle perimeter point to complete ..."
  1367. #: FlatCAMEditor.py:1925
  1368. msgid "[success]Done. Adding Circle completed."
  1369. msgstr "[success]Done. Adding Circle completed."
  1370. #: FlatCAMEditor.py:1952
  1371. msgid "Click on Start arc point ..."
  1372. msgstr "Click on Start arc point ..."
  1373. #: FlatCAMEditor.py:1956
  1374. msgid "Click on End arc point to complete ..."
  1375. msgstr "Click on End arc point to complete ..."
  1376. #: FlatCAMEditor.py:2111
  1377. msgid "[success]Done. Arc completed."
  1378. msgstr "[success]Done. Arc completed."
  1379. #: FlatCAMEditor.py:2123
  1380. msgid "Click on 1st corner ..."
  1381. msgstr "Click on 1st corner ..."
  1382. #: FlatCAMEditor.py:2163
  1383. msgid "Click on 1st point ..."
  1384. msgstr "Click on 1st point ..."
  1385. #: FlatCAMEditor.py:2170
  1386. msgid "Click on next Point or click Right mouse button to complete ..."
  1387. msgstr "Click on next Point or click Right mouse button to complete ..."
  1388. #: FlatCAMEditor.py:2193
  1389. msgid "[success]Done. Polygon completed."
  1390. msgstr "[success]Done. Polygon completed."
  1391. #: FlatCAMEditor.py:2212
  1392. msgid "[success]Done. Path completed."
  1393. msgstr "[success]Done. Path completed."
  1394. #: FlatCAMEditor.py:2472 FlatCAMEditor.py:4034
  1395. msgid "[WARNING_NOTCL] Move cancelled. No shape selected."
  1396. msgstr "[WARNING_NOTCL] Move cancelled. No shape selected."
  1397. #: FlatCAMEditor.py:2476
  1398. msgid "Click on reference point."
  1399. msgstr "Click on reference point."
  1400. #: FlatCAMEditor.py:2479
  1401. msgid "Click on destination point."
  1402. msgstr "Click on destination point."
  1403. #: FlatCAMEditor.py:2510
  1404. msgid "[success]Done. Geometry(s) Move completed."
  1405. msgstr "[success]Done. Geometry(s) Move completed."
  1406. #: FlatCAMEditor.py:2555
  1407. msgid "[success]Done. Geometry(s) Copy completed."
  1408. msgstr "[success]Done. Geometry(s) Copy completed."
  1409. #: FlatCAMEditor.py:2567
  1410. msgid "Click on the Destination point..."
  1411. msgstr "Click on the Destination point..."
  1412. #: FlatCAMEditor.py:2581
  1413. #, python-format
  1414. msgid ""
  1415. "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
  1416. "supported. Error: %s"
  1417. msgstr ""
  1418. "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
  1419. "supported. Error: %s"
  1420. #: FlatCAMEditor.py:2591
  1421. msgid "[success]Done. Adding Text completed."
  1422. msgstr "[success]Done. Adding Text completed."
  1423. #: FlatCAMEditor.py:2619
  1424. msgid "Create buffer geometry ..."
  1425. msgstr "Create buffer geometry ..."
  1426. #: FlatCAMEditor.py:2630 FlatCAMEditor.py:2656 FlatCAMEditor.py:2682
  1427. msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  1428. msgstr "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  1429. #: FlatCAMEditor.py:2652
  1430. msgid "[success]Done. Buffer Tool completed."
  1431. msgstr "[success]Done. Buffer Tool completed."
  1432. #: FlatCAMEditor.py:2678
  1433. msgid "[success]Done. Buffer Int Tool completed."
  1434. msgstr "[success]Done. Buffer Int Tool completed."
  1435. #: FlatCAMEditor.py:2704
  1436. msgid "[success]Done. Buffer Ext Tool completed."
  1437. msgstr "[success]Done. Buffer Ext Tool completed."
  1438. #: FlatCAMEditor.py:2737
  1439. msgid "Create Paint geometry ..."
  1440. msgstr "Create Paint geometry ..."
  1441. #: FlatCAMEditor.py:2751
  1442. msgid "Shape transformations ..."
  1443. msgstr "Shape transformations ..."
  1444. #: FlatCAMEditor.py:2776
  1445. msgid "[WARNING_NOTCL] To add a drill first select a tool"
  1446. msgstr "[WARNING_NOTCL] To add a drill first select a tool"
  1447. #: FlatCAMEditor.py:2785 FlatCAMEditor.py:2875 FlatCAMEditor.py:3148
  1448. #: FlatCAMEditor.py:3173
  1449. msgid "Click on target location ..."
  1450. msgstr "Click on target location ..."
  1451. #: FlatCAMEditor.py:2825
  1452. msgid "[success]Done. Drill added."
  1453. msgstr "[success]Done. Drill added."
  1454. #: FlatCAMEditor.py:2867
  1455. msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1456. msgstr ""
  1457. "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1458. #: FlatCAMEditor.py:2892
  1459. msgid "Click on the Drill Circular Array Start position"
  1460. msgstr "Click on the Drill Circular Array Start position"
  1461. #: FlatCAMEditor.py:2914
  1462. msgid ""
  1463. "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
  1464. "separator."
  1465. msgstr ""
  1466. "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
  1467. "separator."
  1468. #: FlatCAMEditor.py:2917
  1469. msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
  1470. msgstr "[ERROR_NOTCL] The value is mistyped. Check the value."
  1471. #: FlatCAMEditor.py:3010
  1472. msgid "[WARNING_NOTCL]Too many drills for the selected spacing angle."
  1473. msgstr "[WARNING_NOTCL]Too many drills for the selected spacing angle."
  1474. #: FlatCAMEditor.py:3027
  1475. msgid "[success]Done. Drill Array added."
  1476. msgstr "[success]Done. Drill Array added."
  1477. #: FlatCAMEditor.py:3038
  1478. msgid "Click on the Drill(s) to resize ..."
  1479. msgstr "Click on the Drill(s) to resize ..."
  1480. #: FlatCAMEditor.py:3058
  1481. msgid ""
  1482. "[ERROR_NOTCL]Resize drill(s) failed. Please enter a diameter for resize."
  1483. msgstr ""
  1484. "[ERROR_NOTCL]Resize drill(s) failed. Please enter a diameter for resize."
  1485. #: FlatCAMEditor.py:3130
  1486. msgid "[success]Done. Drill Resize completed."
  1487. msgstr "[success]Done. Drill Resize completed."
  1488. #: FlatCAMEditor.py:3150
  1489. msgid "Click on reference location ..."
  1490. msgstr "Click on reference location ..."
  1491. #: FlatCAMEditor.py:3205
  1492. msgid "[success]Done. Drill(s) Move completed."
  1493. msgstr "[success]Done. Drill(s) Move completed."
  1494. #: FlatCAMEditor.py:3258
  1495. msgid "[success]Done. Drill(s) copied."
  1496. msgstr "[success]Done. Drill(s) copied."
  1497. #: FlatCAMEditor.py:3908 flatcamGUI/FlatCAMGUI.py:2114
  1498. #: flatcamGUI/FlatCAMGUI.py:2126
  1499. msgid "[success]Done."
  1500. msgstr "[success]Done."
  1501. #: FlatCAMEditor.py:4041
  1502. msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
  1503. msgstr "[WARNING_NOTCL] Copy cancelled. No shape selected."
  1504. #: FlatCAMEditor.py:4048 flatcamGUI/FlatCAMGUI.py:2406
  1505. #: flatcamGUI/FlatCAMGUI.py:2418 flatcamGUI/FlatCAMGUI.py:2452
  1506. msgid "Click on target point."
  1507. msgstr "Click on target point."
  1508. #: FlatCAMEditor.py:4289
  1509. msgid ""
  1510. "[WARNING_NOTCL]A selection of at least 2 geo items is required to do "
  1511. "Intersection."
  1512. msgstr ""
  1513. "[WARNING_NOTCL]A selection of at least 2 geo items is required to do "
  1514. "Intersection."
  1515. #: FlatCAMEditor.py:4327 FlatCAMEditor.py:4364 FlatCAMEditor.py:4436
  1516. msgid ""
  1517. "[ERROR_NOTCL]Negative buffer value is not accepted. Use Buffer interior to "
  1518. "generate an 'inside' shape"
  1519. msgstr ""
  1520. "[ERROR_NOTCL]Negative buffer value is not accepted. Use Buffer interior to "
  1521. "generate an 'inside' shape"
  1522. #: FlatCAMEditor.py:4335 FlatCAMEditor.py:4373 FlatCAMEditor.py:4444
  1523. msgid "[WARNING_NOTCL] Nothing selected for buffering."
  1524. msgstr "[WARNING_NOTCL] Nothing selected for buffering."
  1525. #: FlatCAMEditor.py:4339 FlatCAMEditor.py:4377 FlatCAMEditor.py:4448
  1526. msgid "[WARNING_NOTCL] Invalid distance for buffering."
  1527. msgstr "[WARNING_NOTCL] Invalid distance for buffering."
  1528. #: FlatCAMEditor.py:4349 FlatCAMEditor.py:4457
  1529. msgid ""
  1530. "[ERROR_NOTCL]Failed, the result is empty. Choose a different buffer value."
  1531. msgstr ""
  1532. "[ERROR_NOTCL]Failed, the result is empty. Choose a different buffer value."
  1533. #: FlatCAMEditor.py:4357
  1534. msgid "[success]Full buffer geometry created."
  1535. msgstr "[success]Full buffer geometry created."
  1536. #: FlatCAMEditor.py:4386
  1537. msgid ""
  1538. "[ERROR_NOTCL]Failed, the result is empty. Choose a smaller buffer value."
  1539. msgstr ""
  1540. "[ERROR_NOTCL]Failed, the result is empty. Choose a smaller buffer value."
  1541. #: FlatCAMEditor.py:4398 FlatCAMEditor.py:4469
  1542. msgid "[success]Exterior buffer geometry created."
  1543. msgstr "[success]Exterior buffer geometry created."
  1544. #: FlatCAMEditor.py:4533
  1545. msgid "[WARNING_NOTCL]Nothing selected for painting."
  1546. msgstr "[WARNING_NOTCL]Nothing selected for painting."
  1547. #: FlatCAMEditor.py:4539
  1548. msgid "[WARNING] Invalid value for {}"
  1549. msgstr "[WARNING] Invalid value for {}"
  1550. #: FlatCAMEditor.py:4545
  1551. msgid ""
  1552. "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
  1553. "(100%)."
  1554. msgstr ""
  1555. "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
  1556. "(100%)."
  1557. #: FlatCAMEditor.py:4604
  1558. #, python-format
  1559. msgid ""
  1560. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  1561. "different method of Paint\n"
  1562. "%s"
  1563. msgstr ""
  1564. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  1565. "different method of Paint\n"
  1566. "%s"
  1567. #: FlatCAMEditor.py:4615
  1568. msgid "[success] Paint done."
  1569. msgstr "[success] Paint done."
  1570. #: FlatCAMEditor.py:4647
  1571. msgid "Excellon Editor"
  1572. msgstr "Excellon Editor"
  1573. #: FlatCAMEditor.py:4654
  1574. msgid "Name:"
  1575. msgstr "Name:"
  1576. #: FlatCAMEditor.py:4674 flatcamTools/ToolNonCopperClear.py:71
  1577. #: flatcamTools/ToolPaint.py:69 flatcamTools/ToolSolderPaste.py:70
  1578. msgid "Tools Table"
  1579. msgstr "Tools Table"
  1580. #: FlatCAMEditor.py:4676 flatcamGUI/ObjectUI.py:609
  1581. msgid ""
  1582. "Tools in this Excellon object\n"
  1583. "when are used for drilling."
  1584. msgstr ""
  1585. "Tools in this Excellon object\n"
  1586. "when are used for drilling."
  1587. #: FlatCAMEditor.py:4685 FlatCAMEditor.py:5745 FlatCAMObj.py:2203
  1588. #: FlatCAMObj.py:2297 FlatCAMObj.py:2408 flatcamGUI/ObjectUI.py:627
  1589. #: flatcamTools/ToolNonCopperClear.py:82 flatcamTools/ToolPaint.py:80
  1590. #: flatcamTools/ToolSolderPaste.py:81
  1591. msgid "Diameter"
  1592. msgstr "Diameter"
  1593. #: FlatCAMEditor.py:4693
  1594. msgid "Add/Delete Tool"
  1595. msgstr "Add/Delete Tool"
  1596. #: FlatCAMEditor.py:4695
  1597. msgid ""
  1598. "Add/Delete a tool to the tool list\n"
  1599. "for this Excellon object."
  1600. msgstr ""
  1601. "Add/Delete a tool to the tool list\n"
  1602. "for this Excellon object."
  1603. #: FlatCAMEditor.py:4703 flatcamTools/ToolCutOut.py:77
  1604. msgid "Tool Dia:"
  1605. msgstr "Tool Dia:"
  1606. #: FlatCAMEditor.py:4705 flatcamGUI/ObjectUI.py:1046
  1607. msgid "Diameter for the new tool"
  1608. msgstr "Diameter for the new tool"
  1609. #: FlatCAMEditor.py:4714
  1610. msgid "Add Tool"
  1611. msgstr "Add Tool"
  1612. #: FlatCAMEditor.py:4716
  1613. msgid ""
  1614. "Add a new tool to the tool list\n"
  1615. "with the diameter specified above."
  1616. msgstr ""
  1617. "Add a new tool to the tool list\n"
  1618. "with the diameter specified above."
  1619. #: FlatCAMEditor.py:4726
  1620. msgid "Delete Tool"
  1621. msgstr "Delete Tool"
  1622. #: FlatCAMEditor.py:4728
  1623. msgid ""
  1624. "Delete a tool in the tool list\n"
  1625. "by selecting a row in the tool table."
  1626. msgstr ""
  1627. "Delete a tool in the tool list\n"
  1628. "by selecting a row in the tool table."
  1629. #: FlatCAMEditor.py:4746
  1630. msgid "Resize Drill(s)"
  1631. msgstr "Resize Drill(s)"
  1632. #: FlatCAMEditor.py:4748
  1633. msgid "Resize a drill or a selection of drills."
  1634. msgstr "Resize a drill or a selection of drills."
  1635. #: FlatCAMEditor.py:4755
  1636. msgid "Resize Dia:"
  1637. msgstr "Resize Dia:"
  1638. #: FlatCAMEditor.py:4757
  1639. msgid "Diameter to resize to."
  1640. msgstr "Diameter to resize to."
  1641. #: FlatCAMEditor.py:4765
  1642. msgid "Resize"
  1643. msgstr "Resize"
  1644. #: FlatCAMEditor.py:4767
  1645. msgid "Resize drill(s)"
  1646. msgstr "Resize drill(s)"
  1647. #: FlatCAMEditor.py:4789 flatcamGUI/FlatCAMGUI.py:1384
  1648. msgid "Add Drill Array"
  1649. msgstr "Add Drill Array"
  1650. #: FlatCAMEditor.py:4791
  1651. msgid "Add an array of drills (linear or circular array)"
  1652. msgstr "Add an array of drills (linear or circular array)"
  1653. #: FlatCAMEditor.py:4797
  1654. msgid ""
  1655. "Select the type of drills array to create.\n"
  1656. "It can be Linear X(Y) or Circular"
  1657. msgstr ""
  1658. "Select the type of drills array to create.\n"
  1659. "It can be Linear X(Y) or Circular"
  1660. #: FlatCAMEditor.py:4800
  1661. msgid "Linear"
  1662. msgstr "Linear"
  1663. #: FlatCAMEditor.py:4801
  1664. msgid "Circular"
  1665. msgstr "Circular"
  1666. #: FlatCAMEditor.py:4808
  1667. msgid "Nr of drills:"
  1668. msgstr "Nr of drills:"
  1669. #: FlatCAMEditor.py:4810
  1670. msgid "Specify how many drills to be in the array."
  1671. msgstr "Specify how many drills to be in the array."
  1672. #: FlatCAMEditor.py:4827 FlatCAMEditor.py:4872
  1673. msgid "Direction:"
  1674. msgstr "Direction:"
  1675. #: FlatCAMEditor.py:4829
  1676. msgid ""
  1677. "Direction on which the linear array is oriented:\n"
  1678. "- 'X' - horizontal axis \n"
  1679. "- 'Y' - vertical axis or \n"
  1680. "- 'Angle' - a custom angle for the array inclination"
  1681. msgstr ""
  1682. "Direction on which the linear array is oriented:\n"
  1683. "- 'X' - horizontal axis \n"
  1684. "- 'Y' - vertical axis or \n"
  1685. "- 'Angle' - a custom angle for the array inclination"
  1686. #: FlatCAMEditor.py:4838
  1687. msgid "Angle"
  1688. msgstr "Angle"
  1689. #: FlatCAMEditor.py:4842
  1690. msgid "Pitch:"
  1691. msgstr "Pitch:"
  1692. #: FlatCAMEditor.py:4844
  1693. msgid "Pitch = Distance between elements of the array."
  1694. msgstr "Pitch = Distance between elements of the array."
  1695. #: FlatCAMEditor.py:4853
  1696. msgid ""
  1697. "Angle at which the linear array is placed.\n"
  1698. "The precision is of max 2 decimals.\n"
  1699. "Min value is: -359.99 degrees.\n"
  1700. "Max value is: 360.00 degrees."
  1701. msgstr ""
  1702. "Angle at which the linear array is placed.\n"
  1703. "The precision is of max 2 decimals.\n"
  1704. "Min value is: -359.99 degrees.\n"
  1705. "Max value is: 360.00 degrees."
  1706. #: FlatCAMEditor.py:4874
  1707. msgid ""
  1708. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1709. "clockwise."
  1710. msgstr ""
  1711. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1712. "clockwise."
  1713. #: FlatCAMEditor.py:4889
  1714. msgid "Angle at which each element in circular array is placed."
  1715. msgstr "Angle at which each element in circular array is placed."
  1716. #: FlatCAMEditor.py:5210 FlatCAMObj.py:1725
  1717. msgid "Total Drills"
  1718. msgstr "Total Drills"
  1719. #: FlatCAMEditor.py:5242 FlatCAMObj.py:1751
  1720. msgid "Total Slots"
  1721. msgstr "Total Slots"
  1722. #: FlatCAMEditor.py:5316 FlatCAMObj.py:1958 FlatCAMObj.py:3221
  1723. #: FlatCAMObj.py:3527 FlatCAMObj.py:3714 FlatCAMObj.py:3727 FlatCAMObj.py:3844
  1724. #: FlatCAMObj.py:4252 FlatCAMObj.py:4485 FlatCAMObj.py:4891
  1725. #: flatcamTools/ToolCalculators.py:307 flatcamTools/ToolCalculators.py:318
  1726. #: flatcamTools/ToolCalculators.py:330 flatcamTools/ToolCalculators.py:345
  1727. #: flatcamTools/ToolCalculators.py:358 flatcamTools/ToolCalculators.py:372
  1728. #: flatcamTools/ToolCalculators.py:383 flatcamTools/ToolCalculators.py:394
  1729. #: flatcamTools/ToolCalculators.py:405 flatcamTools/ToolFilm.py:241
  1730. #: flatcamTools/ToolFilm.py:248 flatcamTools/ToolNonCopperClear.py:478
  1731. #: flatcamTools/ToolNonCopperClear.py:625
  1732. #: flatcamTools/ToolNonCopperClear.py:637 flatcamTools/ToolPaint.py:537
  1733. #: flatcamTools/ToolPaint.py:607 flatcamTools/ToolPaint.py:743
  1734. #: flatcamTools/ToolPaint.py:833 flatcamTools/ToolPaint.py:988
  1735. #: flatcamTools/ToolPanelize.py:323 flatcamTools/ToolPanelize.py:335
  1736. #: flatcamTools/ToolPanelize.py:348 flatcamTools/ToolPanelize.py:361
  1737. #: flatcamTools/ToolPanelize.py:373 flatcamTools/ToolPanelize.py:384
  1738. #: flatcamTools/ToolSolderPaste.py:755 flatcamTools/ToolSolderPaste.py:826
  1739. msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
  1740. msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."
  1741. #: FlatCAMEditor.py:5329
  1742. msgid ""
  1743. "[WARNING_NOTCL]Tool already in the original or actual tool list.\n"
  1744. "Save and reedit Excellon if you need to add this tool. "
  1745. msgstr ""
  1746. "[WARNING_NOTCL]Tool already in the original or actual tool list.\n"
  1747. "Save and reedit Excellon if you need to add this tool. "
  1748. #: FlatCAMEditor.py:5338 flatcamGUI/FlatCAMGUI.py:2481
  1749. #, python-brace-format
  1750. msgid "[success]Added new tool with dia: {dia} {units}"
  1751. msgstr "[success]Added new tool with dia: {dia} {units}"
  1752. #: FlatCAMEditor.py:5369
  1753. msgid "[WARNING_NOTCL]Select a tool in Tool Table"
  1754. msgstr "[WARNING_NOTCL]Select a tool in Tool Table"
  1755. #: FlatCAMEditor.py:5402
  1756. #, python-brace-format
  1757. msgid "[success]Deleted tool with dia: {del_dia} {units}"
  1758. msgstr "[success]Deleted tool with dia: {del_dia} {units}"
  1759. #: FlatCAMEditor.py:5799
  1760. msgid ""
  1761. "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
  1762. "creation."
  1763. msgstr ""
  1764. "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
  1765. "creation."
  1766. #: FlatCAMEditor.py:5808
  1767. msgid "Creating Excellon."
  1768. msgstr "Creating Excellon."
  1769. #: FlatCAMEditor.py:5817
  1770. msgid "[success]Excellon editing finished."
  1771. msgstr "[success]Excellon editing finished."
  1772. #: FlatCAMEditor.py:5834
  1773. msgid "[WARNING_NOTCL]Cancelled. There is no Tool/Drill selected"
  1774. msgstr "[WARNING_NOTCL]Cancelled. There is no Tool/Drill selected"
  1775. #: FlatCAMEditor.py:6316
  1776. msgid "[success]Done. Drill(s) deleted."
  1777. msgstr "[success]Done. Drill(s) deleted."
  1778. #: FlatCAMEditor.py:6386
  1779. msgid "Click on the circular array Center position"
  1780. msgstr "Click on the circular array Center position"
  1781. #: FlatCAMObj.py:193
  1782. #, python-brace-format
  1783. msgid "[success]Name changed from {old} to {new}"
  1784. msgstr "[success]Name changed from {old} to {new}"
  1785. #: FlatCAMObj.py:532 FlatCAMObj.py:1886 FlatCAMObj.py:3149 FlatCAMObj.py:5296
  1786. msgid "<span style=\"color:green;\"><b>Basic</b></span>"
  1787. msgstr "<span style=\"color:green;\"><b>Basic</b></span>"
  1788. #: FlatCAMObj.py:544 FlatCAMObj.py:1902 FlatCAMObj.py:3171 FlatCAMObj.py:5302
  1789. msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
  1790. msgstr "<span style=\"color:red;\"><b>Advanced</b></span>"
  1791. #: FlatCAMObj.py:899 FlatCAMObj.py:954
  1792. #, python-format
  1793. msgid "[success]Isolation geometry created: %s"
  1794. msgstr "[success]Isolation geometry created: %s"
  1795. #: FlatCAMObj.py:1029
  1796. msgid ""
  1797. "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  1798. msgstr ""
  1799. "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  1800. #: FlatCAMObj.py:1044 FlatCAMObj.py:1079
  1801. msgid ""
  1802. "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
  1803. "again."
  1804. msgstr ""
  1805. "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
  1806. "again."
  1807. #: FlatCAMObj.py:1064
  1808. msgid "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  1809. msgstr "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  1810. #: FlatCAMObj.py:1136
  1811. msgid "Generating Gerber"
  1812. msgstr "Generating Gerber"
  1813. #: FlatCAMObj.py:1144
  1814. msgid "[ERROR_NOTCL] Cretion of Gerber failed."
  1815. msgstr "[ERROR_NOTCL] Cretion of Gerber failed."
  1816. #: FlatCAMObj.py:1151
  1817. #, python-format
  1818. msgid "[success] Created: %s"
  1819. msgstr "[success] Created: %s"
  1820. #: FlatCAMObj.py:1271
  1821. msgid "Plotting Apertures"
  1822. msgstr "Plotting Apertures"
  1823. #: FlatCAMObj.py:2182 FlatCAMObj.py:2273 FlatCAMObj.py:2388
  1824. msgid ""
  1825. "[ERROR_NOTCL]Please select one or more tools from the list and try again."
  1826. msgstr ""
  1827. "[ERROR_NOTCL]Please select one or more tools from the list and try again."
  1828. #: FlatCAMObj.py:2189
  1829. msgid ""
  1830. "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  1831. msgstr ""
  1832. "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  1833. #: FlatCAMObj.py:2203 FlatCAMObj.py:2297 FlatCAMObj.py:2408
  1834. msgid "Tool_nr"
  1835. msgstr "Tool_nr"
  1836. #: FlatCAMObj.py:2203 FlatCAMObj.py:2297 FlatCAMObj.py:2408
  1837. msgid "Drills_Nr"
  1838. msgstr "Drills_Nr"
  1839. #: FlatCAMObj.py:2203 FlatCAMObj.py:2297 FlatCAMObj.py:2408
  1840. msgid "Slots_Nr"
  1841. msgstr "Slots_Nr"
  1842. #: FlatCAMObj.py:2283
  1843. msgid ""
  1844. "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  1845. msgstr ""
  1846. "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  1847. #: FlatCAMObj.py:2446 FlatCAMObj.py:4140 FlatCAMObj.py:4351 FlatCAMObj.py:4666
  1848. msgid ""
  1849. "[ERROR_NOTCL]Wrong value format for self.defaults[\"z_pdepth\"] or self."
  1850. "options[\"z_pdepth\"]"
  1851. msgstr ""
  1852. "[ERROR_NOTCL]Wrong value format for self.defaults[\"z_pdepth\"] or self."
  1853. "options[\"z_pdepth\"]"
  1854. #: FlatCAMObj.py:2458 FlatCAMObj.py:4152 FlatCAMObj.py:4363 FlatCAMObj.py:4678
  1855. msgid ""
  1856. "[ERROR_NOTCL]Wrong value format for self.defaults[\"feedrate_probe\"] or "
  1857. "self.options[\"feedrate_probe\"]"
  1858. msgstr ""
  1859. "[ERROR_NOTCL]Wrong value format for self.defaults[\"feedrate_probe\"] or "
  1860. "self.options[\"feedrate_probe\"]"
  1861. #: FlatCAMObj.py:2490 FlatCAMObj.py:4553 FlatCAMObj.py:4558 FlatCAMObj.py:4704
  1862. msgid "Generating CNC Code"
  1863. msgstr "Generating CNC Code"
  1864. #: FlatCAMObj.py:2516 FlatCAMObj.py:4850 camlib.py:4929 camlib.py:5365
  1865. #: camlib.py:5636
  1866. msgid ""
  1867. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
  1868. "format (x, y) \n"
  1869. "but now there is only one value, not two. "
  1870. msgstr ""
  1871. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
  1872. "format (x, y) \n"
  1873. "but now there is only one value, not two. "
  1874. #: FlatCAMObj.py:2863 FlatCAMObj.py:3105 FlatCAMObj.py:3390
  1875. msgid "Path"
  1876. msgstr "Path"
  1877. #: FlatCAMObj.py:2863
  1878. msgid "In"
  1879. msgstr "In"
  1880. #: FlatCAMObj.py:2863
  1881. msgid "Out"
  1882. msgstr "Out"
  1883. #: FlatCAMObj.py:2863 FlatCAMObj.py:3186 FlatCAMObj.py:3759
  1884. msgid "Custom"
  1885. msgstr "Custom"
  1886. #: FlatCAMObj.py:2864 FlatCAMObj.py:3770 FlatCAMObj.py:3771 FlatCAMObj.py:3780
  1887. msgid "Iso"
  1888. msgstr "Iso"
  1889. #: FlatCAMObj.py:2864 FlatCAMObj.py:3107 FlatCAMObj.py:3392
  1890. msgid "Rough"
  1891. msgstr "Rough"
  1892. #: FlatCAMObj.py:2864
  1893. msgid "Finish"
  1894. msgstr "Finish"
  1895. #: FlatCAMObj.py:3142 flatcamGUI/FlatCAMGUI.py:463
  1896. #: flatcamGUI/FlatCAMGUI.py:1388 flatcamGUI/ObjectUI.py:1067
  1897. msgid "Copy"
  1898. msgstr "Copy"
  1899. #: FlatCAMObj.py:3144 flatcamGUI/FlatCAMGUI.py:464
  1900. #: flatcamGUI/FlatCAMGUI.py:1389 flatcamGUI/ObjectUI.py:1075
  1901. #: flatcamTools/ToolNonCopperClear.py:145 flatcamTools/ToolPaint.py:143
  1902. #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:480
  1903. msgid "Delete"
  1904. msgstr "Delete"
  1905. #: FlatCAMObj.py:3362
  1906. msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  1907. msgstr "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  1908. #: FlatCAMObj.py:3437
  1909. msgid "[success] Tool added in Tool Table."
  1910. msgstr "[success] Tool added in Tool Table."
  1911. #: FlatCAMObj.py:3442
  1912. msgid "[ERROR_NOTCL]Default Tool added. Wrong value format entered."
  1913. msgstr "[ERROR_NOTCL]Default Tool added. Wrong value format entered."
  1914. #: FlatCAMObj.py:3472 FlatCAMObj.py:3482
  1915. msgid "[WARNING_NOTCL]Failed. Select a tool to copy."
  1916. msgstr "[WARNING_NOTCL]Failed. Select a tool to copy."
  1917. #: FlatCAMObj.py:3511
  1918. msgid "[success] Tool was copied in Tool Table."
  1919. msgstr "[success] Tool was copied in Tool Table."
  1920. #: FlatCAMObj.py:3544
  1921. msgid "[success] Tool was edited in Tool Table."
  1922. msgstr "[success] Tool was edited in Tool Table."
  1923. #: FlatCAMObj.py:3575 FlatCAMObj.py:3585
  1924. msgid "[WARNING_NOTCL]Failed. Select a tool to delete."
  1925. msgstr "[WARNING_NOTCL]Failed. Select a tool to delete."
  1926. #: FlatCAMObj.py:3609
  1927. msgid "[success] Tool was deleted in Tool Table."
  1928. msgstr "[success] Tool was deleted in Tool Table."
  1929. #: FlatCAMObj.py:4023
  1930. #, python-format
  1931. msgid ""
  1932. "[WARNING_NOTCL]This Geometry can't be processed because it is %s geometry."
  1933. msgstr ""
  1934. "[WARNING_NOTCL]This Geometry can't be processed because it is %s geometry."
  1935. #: FlatCAMObj.py:4040
  1936. msgid "[ERROR_NOTCL]Wrong Tool Dia value format entered, use a number."
  1937. msgstr "[ERROR_NOTCL]Wrong Tool Dia value format entered, use a number."
  1938. #: FlatCAMObj.py:4067
  1939. msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  1940. msgstr "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  1941. #: FlatCAMObj.py:4105
  1942. #, python-format
  1943. msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1944. msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1945. #: FlatCAMObj.py:4261 FlatCAMObj.py:4494
  1946. msgid ""
  1947. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  1948. "Add a Tool Offset or change the Offset Type."
  1949. msgstr ""
  1950. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  1951. "Add a Tool Offset or change the Offset Type."
  1952. #: FlatCAMObj.py:4375
  1953. msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  1954. msgstr "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  1955. #: FlatCAMObj.py:4737 FlatCAMObj.py:4747 camlib.py:3229 camlib.py:3238
  1956. msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  1957. msgstr "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  1958. #: FlatCAMObj.py:4785
  1959. msgid "[success]Geometry Scale done."
  1960. msgstr "[success]Geometry Scale done."
  1961. #: FlatCAMObj.py:4802 camlib.py:3300
  1962. msgid ""
  1963. "[ERROR_NOTCL]An (x,y) pair of values are needed. Probable you entered only "
  1964. "one value in the Offset field."
  1965. msgstr ""
  1966. "[ERROR_NOTCL]An (x,y) pair of values are needed. Probable you entered only "
  1967. "one value in the Offset field."
  1968. #: FlatCAMObj.py:4822
  1969. msgid "[success]Geometry Offset done."
  1970. msgstr "[success]Geometry Offset done."
  1971. #: FlatCAMObj.py:5364 FlatCAMObj.py:5369 flatcamTools/ToolSolderPaste.py:1360
  1972. msgid "Export Machine Code ..."
  1973. msgstr "Export Machine Code ..."
  1974. #: FlatCAMObj.py:5375
  1975. msgid "[WARNING_NOTCL]Export Machine Code cancelled ..."
  1976. msgstr "[WARNING_NOTCL]Export Machine Code cancelled ..."
  1977. #: FlatCAMObj.py:5386
  1978. #, python-format
  1979. msgid "[success] Machine Code file saved to: %s"
  1980. msgstr "[success] Machine Code file saved to: %s"
  1981. #: FlatCAMObj.py:5417
  1982. #, python-format
  1983. msgid "[ERROR]FlatCAMCNNJob.on_modifygcode_button_click() -->%s"
  1984. msgstr "[ERROR]FlatCAMCNNJob.on_modifygcode_button_click() -->%s"
  1985. #: FlatCAMObj.py:5523
  1986. #, python-format
  1987. msgid ""
  1988. "[WARNING_NOTCL]This CNCJob object can't be processed because it is a %s "
  1989. "CNCJob object."
  1990. msgstr ""
  1991. "[WARNING_NOTCL]This CNCJob object can't be processed because it is a %s "
  1992. "CNCJob object."
  1993. #: FlatCAMObj.py:5576
  1994. msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  1995. msgstr "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  1996. #: FlatCAMObj.py:5589
  1997. msgid ""
  1998. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  1999. "empty."
  2000. msgstr ""
  2001. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  2002. "empty."
  2003. #: FlatCAMObj.py:5596
  2004. msgid "[success] Toolchange G-code was replaced by a custom code."
  2005. msgstr "[success] Toolchange G-code was replaced by a custom code."
  2006. #: FlatCAMObj.py:5611 flatcamTools/ToolSolderPaste.py:1389
  2007. msgid "[WARNING_NOTCL] No such file or directory"
  2008. msgstr "[WARNING_NOTCL] No such file or directory"
  2009. #: FlatCAMObj.py:5630 FlatCAMObj.py:5642
  2010. msgid ""
  2011. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  2012. "'toolchange_custom'"
  2013. msgstr ""
  2014. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  2015. "'toolchange_custom'"
  2016. #: FlatCAMObj.py:5648
  2017. msgid "[ERROR] There is no postprocessor file."
  2018. msgstr "[ERROR] There is no postprocessor file."
  2019. #: ObjectCollection.py:402
  2020. #, python-brace-format
  2021. msgid "Object renamed from {old} to {new}"
  2022. msgstr "Object renamed from {old} to {new}"
  2023. #: ObjectCollection.py:736
  2024. #, python-format
  2025. msgid "[ERROR] Cause of error: %s"
  2026. msgstr "[ERROR] Cause of error: %s"
  2027. #: camlib.py:200
  2028. msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  2029. msgstr "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  2030. #: camlib.py:1387
  2031. msgid "[success]Object was mirrored ..."
  2032. msgstr "[success]Object was mirrored ..."
  2033. #: camlib.py:1389
  2034. msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
  2035. msgstr "[ERROR_NOTCL] Failed to mirror. No object selected"
  2036. #: camlib.py:1425
  2037. msgid "[success]Object was rotated ..."
  2038. msgstr "[success]Object was rotated ..."
  2039. #: camlib.py:1427
  2040. msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
  2041. msgstr "[ERROR_NOTCL] Failed to rotate. No object selected"
  2042. #: camlib.py:1461
  2043. msgid "[success]Object was skewed ..."
  2044. msgstr "[success]Object was skewed ..."
  2045. #: camlib.py:1463
  2046. msgid "[ERROR_NOTCL] Failed to skew. No object selected"
  2047. msgstr "[ERROR_NOTCL] Failed to skew. No object selected"
  2048. #: camlib.py:2647 camlib.py:2727
  2049. #, python-format
  2050. msgid "[WARNING] Coordinates missing, line ignored: %s"
  2051. msgstr "[WARNING] Coordinates missing, line ignored: %s"
  2052. #: camlib.py:2648 camlib.py:2728
  2053. msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  2054. msgstr "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  2055. #: camlib.py:2696
  2056. #, python-format
  2057. msgid ""
  2058. "[ERROR] Region does not have enough points. File will be processed but there "
  2059. "are parser errors. Line number: %s"
  2060. msgstr ""
  2061. "[ERROR] Region does not have enough points. File will be processed but there "
  2062. "are parser errors. Line number: %s"
  2063. #: camlib.py:3051
  2064. #, python-format
  2065. msgid ""
  2066. "[ERROR]Gerber Parser ERROR.\n"
  2067. "%s:"
  2068. msgstr ""
  2069. "[ERROR]Gerber Parser ERROR.\n"
  2070. "%s:"
  2071. #: camlib.py:3267
  2072. msgid "[success]Gerber Scale done."
  2073. msgstr "[success]Gerber Scale done."
  2074. #: camlib.py:3324
  2075. msgid "[success]Gerber Offset done."
  2076. msgstr "[success]Gerber Offset done."
  2077. #: camlib.py:3700
  2078. #, python-format
  2079. msgid "[ERROR_NOTCL] This is GCODE mark: %s"
  2080. msgstr "[ERROR_NOTCL] This is GCODE mark: %s"
  2081. #: camlib.py:4230
  2082. #, python-brace-format
  2083. msgid ""
  2084. "[ERROR] Excellon Parser error.\n"
  2085. "Parsing Failed. Line {l_nr}: {line}\n"
  2086. msgstr ""
  2087. "[ERROR] Excellon Parser error.\n"
  2088. "Parsing Failed. Line {l_nr}: {line}\n"
  2089. #: camlib.py:4307
  2090. msgid ""
  2091. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  2092. "not having a tool associated.\n"
  2093. "Check the resulting GCode."
  2094. msgstr ""
  2095. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  2096. "not having a tool associated.\n"
  2097. "Check the resulting GCode."
  2098. #: camlib.py:4843
  2099. #, python-format
  2100. msgid "[ERROR] There is no such parameter: %s"
  2101. msgstr "[ERROR] There is no such parameter: %s"
  2102. #: camlib.py:4908
  2103. msgid ""
  2104. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  2105. "drill into material.\n"
  2106. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  2107. "therefore the app will convert the value to negative. Check the resulting "
  2108. "CNC code (Gcode etc)."
  2109. msgstr ""
  2110. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  2111. "drill into material.\n"
  2112. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  2113. "therefore the app will convert the value to negative. Check the resulting "
  2114. "CNC code (Gcode etc)."
  2115. #: camlib.py:4915 camlib.py:5388 camlib.py:5659
  2116. #, python-format
  2117. msgid ""
  2118. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  2119. msgstr ""
  2120. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  2121. #: camlib.py:5131 camlib.py:5226 camlib.py:5277
  2122. msgid "[ERROR_NOTCL]The loaded Excellon file has no drills ..."
  2123. msgstr "[ERROR_NOTCL]The loaded Excellon file has no drills ..."
  2124. #: camlib.py:5231
  2125. msgid "[ERROR_NOTCL] Wrong optimization type selected."
  2126. msgstr "[ERROR_NOTCL] Wrong optimization type selected."
  2127. #: camlib.py:5376 camlib.py:5647
  2128. msgid ""
  2129. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  2130. "combinations of other parameters."
  2131. msgstr ""
  2132. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  2133. "combinations of other parameters."
  2134. #: camlib.py:5381 camlib.py:5652
  2135. msgid ""
  2136. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  2137. "cut into material.\n"
  2138. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  2139. "therefore the app will convert the value to negative.Check the resulting CNC "
  2140. "code (Gcode etc)."
  2141. msgstr ""
  2142. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  2143. "cut into material.\n"
  2144. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  2145. "therefore the app will convert the value to negative.Check the resulting CNC "
  2146. "code (Gcode etc)."
  2147. #: camlib.py:5393 camlib.py:5664
  2148. msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
  2149. msgstr "[ERROR_NOTCL] Travel Z parameter is None or zero."
  2150. #: camlib.py:5397 camlib.py:5668
  2151. msgid ""
  2152. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  2153. "to travel between cuts.\n"
  2154. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  2155. "therefore the app will convert the value to positive.Check the resulting CNC "
  2156. "code (Gcode etc)."
  2157. msgstr ""
  2158. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  2159. "to travel between cuts.\n"
  2160. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  2161. "therefore the app will convert the value to positive.Check the resulting CNC "
  2162. "code (Gcode etc)."
  2163. #: camlib.py:5404 camlib.py:5675
  2164. #, python-format
  2165. msgid ""
  2166. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  2167. msgstr ""
  2168. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  2169. #: camlib.py:5534
  2170. #, python-format
  2171. msgid "[ERROR]Expected a Geometry, got %s"
  2172. msgstr "[ERROR]Expected a Geometry, got %s"
  2173. #: camlib.py:5540
  2174. msgid ""
  2175. "[ERROR_NOTCL]Trying to generate a CNC Job from a Geometry object without "
  2176. "solid_geometry."
  2177. msgstr ""
  2178. "[ERROR_NOTCL]Trying to generate a CNC Job from a Geometry object without "
  2179. "solid_geometry."
  2180. #: camlib.py:5579
  2181. msgid ""
  2182. "[ERROR_NOTCL]The Tool Offset value is too negative to use for the "
  2183. "current_geometry.\n"
  2184. "Raise the value (in module) and try again."
  2185. msgstr ""
  2186. "[ERROR_NOTCL]The Tool Offset value is too negative to use for the "
  2187. "current_geometry.\n"
  2188. "Raise the value (in module) and try again."
  2189. #: camlib.py:5801
  2190. msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  2191. msgstr "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  2192. #: flatcamGUI/FlatCAMGUI.py:50
  2193. msgid "&File"
  2194. msgstr "&File"
  2195. #: flatcamGUI/FlatCAMGUI.py:55
  2196. msgid "&New Project ...\tCTRL+N"
  2197. msgstr "&New Project ...\tCTRL+N"
  2198. #: flatcamGUI/FlatCAMGUI.py:57
  2199. msgid "Will create a new, blank project"
  2200. msgstr "Will create a new, blank project"
  2201. #: flatcamGUI/FlatCAMGUI.py:62
  2202. msgid "&New"
  2203. msgstr "&New"
  2204. #: flatcamGUI/FlatCAMGUI.py:65
  2205. msgid "Geometry\tN"
  2206. msgstr "Geometry\tN"
  2207. #: flatcamGUI/FlatCAMGUI.py:67
  2208. msgid "Will create a new, empty Geometry Object."
  2209. msgstr "Will create a new, empty Geometry Object."
  2210. #: flatcamGUI/FlatCAMGUI.py:69
  2211. msgid "Excellon\tL"
  2212. msgstr "Excellon\tL"
  2213. #: flatcamGUI/FlatCAMGUI.py:71
  2214. msgid "Will create a new, empty Excellon Object."
  2215. msgstr "Will create a new, empty Excellon Object."
  2216. #: flatcamGUI/FlatCAMGUI.py:74
  2217. msgid "Open"
  2218. msgstr "Open"
  2219. #: flatcamGUI/FlatCAMGUI.py:79
  2220. msgid "Open &Gerber ...\tCTRL+G"
  2221. msgstr "Open &Gerber ...\tCTRL+G"
  2222. #: flatcamGUI/FlatCAMGUI.py:86
  2223. msgid "Open &Excellon ...\tCTRL+E"
  2224. msgstr "Open &Excellon ...\tCTRL+E"
  2225. #: flatcamGUI/FlatCAMGUI.py:91
  2226. msgid "Open G-&Code ..."
  2227. msgstr "Open G-&Code ..."
  2228. #: flatcamGUI/FlatCAMGUI.py:95
  2229. msgid "Open &Project ..."
  2230. msgstr "Open &Project ..."
  2231. #: flatcamGUI/FlatCAMGUI.py:101
  2232. msgid "Open Config ..."
  2233. msgstr "Open Config ..."
  2234. #: flatcamGUI/FlatCAMGUI.py:105
  2235. msgid "Recent files"
  2236. msgstr "Recent files"
  2237. #: flatcamGUI/FlatCAMGUI.py:111
  2238. msgid "Run Script ...\tSHIFT+S"
  2239. msgstr "Run Script ...\tSHIFT+S"
  2240. #: flatcamGUI/FlatCAMGUI.py:114
  2241. msgid ""
  2242. "Will run the opened Tcl Script thus\n"
  2243. "enabling the automation of certain\n"
  2244. "functions of FlatCAM."
  2245. msgstr ""
  2246. "Will run the opened Tcl Script thus\n"
  2247. "enabling the automation of certain\n"
  2248. "functions of FlatCAM."
  2249. #: flatcamGUI/FlatCAMGUI.py:124
  2250. msgid "Import"
  2251. msgstr "Import"
  2252. #: flatcamGUI/FlatCAMGUI.py:126
  2253. msgid "&SVG as Geometry Object ..."
  2254. msgstr "&SVG as Geometry Object ..."
  2255. #: flatcamGUI/FlatCAMGUI.py:129
  2256. msgid "&SVG as Gerber Object ..."
  2257. msgstr "&SVG as Gerber Object ..."
  2258. #: flatcamGUI/FlatCAMGUI.py:134
  2259. msgid "&DXF as Geometry Object ..."
  2260. msgstr "&DXF as Geometry Object ..."
  2261. #: flatcamGUI/FlatCAMGUI.py:137
  2262. msgid "&DXF as Gerber Object ..."
  2263. msgstr "&DXF as Gerber Object ..."
  2264. #: flatcamGUI/FlatCAMGUI.py:142
  2265. msgid "Export"
  2266. msgstr "Export"
  2267. #: flatcamGUI/FlatCAMGUI.py:145
  2268. msgid "Export &SVG ..."
  2269. msgstr "Export &SVG ..."
  2270. #: flatcamGUI/FlatCAMGUI.py:148
  2271. msgid "Export DXF ..."
  2272. msgstr "Export DXF ..."
  2273. #: flatcamGUI/FlatCAMGUI.py:153
  2274. msgid "Export &PNG ..."
  2275. msgstr "Export &PNG ..."
  2276. #: flatcamGUI/FlatCAMGUI.py:155
  2277. msgid ""
  2278. "Will export an image in PNG format,\n"
  2279. "the saved image will contain the visual \n"
  2280. "information currently in FlatCAM Plot Area."
  2281. msgstr ""
  2282. "Will export an image in PNG format,\n"
  2283. "the saved image will contain the visual \n"
  2284. "information currently in FlatCAM Plot Area."
  2285. #: flatcamGUI/FlatCAMGUI.py:163
  2286. msgid "Export &Excellon ..."
  2287. msgstr "Export &Excellon ..."
  2288. #: flatcamGUI/FlatCAMGUI.py:166
  2289. msgid ""
  2290. "Will export an Excellon Object as Excellon file,\n"
  2291. "the coordinates format, the file units and zeros\n"
  2292. "are set in Preferences -> Excellon Export."
  2293. msgstr ""
  2294. "Will export an Excellon Object as Excellon file,\n"
  2295. "the coordinates format, the file units and zeros\n"
  2296. "are set in Preferences -> Excellon Export."
  2297. #: flatcamGUI/FlatCAMGUI.py:177
  2298. msgid "Save &Defaults"
  2299. msgstr "Save &Defaults"
  2300. #: flatcamGUI/FlatCAMGUI.py:183 flatcamGUI/FlatCAMGUI.py:465
  2301. msgid "Save"
  2302. msgstr "Save"
  2303. #: flatcamGUI/FlatCAMGUI.py:185
  2304. msgid "&Save Project ..."
  2305. msgstr "&Save Project ..."
  2306. #: flatcamGUI/FlatCAMGUI.py:190
  2307. msgid "Save Project &As ...\tCTRL+S"
  2308. msgstr "Save Project &As ...\tCTRL+S"
  2309. #: flatcamGUI/FlatCAMGUI.py:194
  2310. msgid "Save Project C&opy ..."
  2311. msgstr "Save Project C&opy ..."
  2312. #: flatcamGUI/FlatCAMGUI.py:202
  2313. msgid "E&xit"
  2314. msgstr "E&xit"
  2315. #: flatcamGUI/FlatCAMGUI.py:208
  2316. msgid "&Edit"
  2317. msgstr "&Edit"
  2318. #: flatcamGUI/FlatCAMGUI.py:211
  2319. msgid "Edit Object\tE"
  2320. msgstr "Edit Object\tE"
  2321. #: flatcamGUI/FlatCAMGUI.py:212
  2322. msgid "Save && Close Editor\tCTRL+S"
  2323. msgstr "Save && Close Editor\tCTRL+S"
  2324. #: flatcamGUI/FlatCAMGUI.py:220
  2325. msgid "Conversion"
  2326. msgstr "Conversion"
  2327. #: flatcamGUI/FlatCAMGUI.py:222
  2328. msgid "&Join Geo/Gerber/Exc -> Geo"
  2329. msgstr "&Join Geo/Gerber/Exc -> Geo"
  2330. #: flatcamGUI/FlatCAMGUI.py:224
  2331. msgid ""
  2332. "Merge a selection of objects, which can be of type:\n"
  2333. "- Gerber\n"
  2334. "- Excellon\n"
  2335. "- Geometry\n"
  2336. "into a new combo Geometry object."
  2337. msgstr ""
  2338. "Merge a selection of objects, which can be of type:\n"
  2339. "- Gerber\n"
  2340. "- Excellon\n"
  2341. "- Geometry\n"
  2342. "into a new combo Geometry object."
  2343. #: flatcamGUI/FlatCAMGUI.py:231
  2344. msgid "Join Excellon(s) -> Excellon"
  2345. msgstr "Join Excellon(s) -> Excellon"
  2346. #: flatcamGUI/FlatCAMGUI.py:233
  2347. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  2348. msgstr ""
  2349. "Merge a selection of Excellon objects into a new combo Excellon object."
  2350. #: flatcamGUI/FlatCAMGUI.py:236
  2351. msgid "Join Gerber(s) -> Gerber"
  2352. msgstr "Join Gerber(s) -> Gerber"
  2353. #: flatcamGUI/FlatCAMGUI.py:238
  2354. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  2355. msgstr "Merge a selection of Gerber objects into a new combo Gerber object."
  2356. #: flatcamGUI/FlatCAMGUI.py:243
  2357. msgid "Convert Single to MultiGeo"
  2358. msgstr "Convert Single to MultiGeo"
  2359. #: flatcamGUI/FlatCAMGUI.py:245
  2360. msgid ""
  2361. "Will convert a Geometry object from single_geometry type\n"
  2362. "to a multi_geometry type."
  2363. msgstr ""
  2364. "Will convert a Geometry object from single_geometry type\n"
  2365. "to a multi_geometry type."
  2366. #: flatcamGUI/FlatCAMGUI.py:249
  2367. msgid "Convert Multi to SingleGeo"
  2368. msgstr "Convert Multi to SingleGeo"
  2369. #: flatcamGUI/FlatCAMGUI.py:251
  2370. msgid ""
  2371. "Will convert a Geometry object from multi_geometry type\n"
  2372. "to a single_geometry type."
  2373. msgstr ""
  2374. "Will convert a Geometry object from multi_geometry type\n"
  2375. "to a single_geometry type."
  2376. #: flatcamGUI/FlatCAMGUI.py:258
  2377. msgid "&Copy Object\tCTRL+C"
  2378. msgstr "&Copy Object\tCTRL+C"
  2379. #: flatcamGUI/FlatCAMGUI.py:260
  2380. msgid "Copy as &Geom"
  2381. msgstr "Copy as &Geom"
  2382. #: flatcamGUI/FlatCAMGUI.py:263
  2383. msgid "&Delete\tDEL"
  2384. msgstr "&Delete\tDEL"
  2385. #: flatcamGUI/FlatCAMGUI.py:267
  2386. msgid "Se&t Origin\tO"
  2387. msgstr "Se&t Origin\tO"
  2388. #: flatcamGUI/FlatCAMGUI.py:268
  2389. msgid "Jump to Location\tJ"
  2390. msgstr "Jump to Location\tJ"
  2391. #: flatcamGUI/FlatCAMGUI.py:273
  2392. msgid "Toggle Units\tQ"
  2393. msgstr "Toggle Units\tQ"
  2394. #: flatcamGUI/FlatCAMGUI.py:275
  2395. msgid "&Select All\tCTRL+A"
  2396. msgstr "&Select All\tCTRL+A"
  2397. #: flatcamGUI/FlatCAMGUI.py:279
  2398. msgid "&Preferences\tSHIFT+P"
  2399. msgstr "&Preferences\tSHIFT+P"
  2400. #: flatcamGUI/FlatCAMGUI.py:282
  2401. msgid "&Options"
  2402. msgstr "&Options"
  2403. #: flatcamGUI/FlatCAMGUI.py:297
  2404. msgid "&Rotate Selection\tSHIFT+(R)"
  2405. msgstr "&Rotate Selection\tSHIFT+(R)"
  2406. #: flatcamGUI/FlatCAMGUI.py:302
  2407. msgid "&Skew on X axis\tSHIFT+X"
  2408. msgstr "&Skew on X axis\tSHIFT+X"
  2409. #: flatcamGUI/FlatCAMGUI.py:304
  2410. msgid "S&kew on Y axis\tSHIFT+Y"
  2411. msgstr "S&kew on Y axis\tSHIFT+Y"
  2412. #: flatcamGUI/FlatCAMGUI.py:309
  2413. msgid "Flip on &X axis\tX"
  2414. msgstr "Flip on &X axis\tX"
  2415. #: flatcamGUI/FlatCAMGUI.py:311
  2416. msgid "Flip on &Y axis\tY"
  2417. msgstr "Flip on &Y axis\tY"
  2418. #: flatcamGUI/FlatCAMGUI.py:316
  2419. msgid "View source\tALT+S"
  2420. msgstr "View source\tALT+S"
  2421. #: flatcamGUI/FlatCAMGUI.py:321
  2422. msgid "&View"
  2423. msgstr "&View"
  2424. #: flatcamGUI/FlatCAMGUI.py:322
  2425. msgid "Enable all plots\tALT+1"
  2426. msgstr "Enable all plots\tALT+1"
  2427. #: flatcamGUI/FlatCAMGUI.py:324
  2428. msgid "Disable all plots\tALT+2"
  2429. msgstr "Disable all plots\tALT+2"
  2430. #: flatcamGUI/FlatCAMGUI.py:326
  2431. msgid "Disable non-selected\tALT+3"
  2432. msgstr "Disable non-selected\tALT+3"
  2433. #: flatcamGUI/FlatCAMGUI.py:329
  2434. msgid "&Zoom Fit\tV"
  2435. msgstr "&Zoom Fit\tV"
  2436. #: flatcamGUI/FlatCAMGUI.py:330
  2437. msgid "&Zoom In\t-"
  2438. msgstr "&Zoom In\t-"
  2439. #: flatcamGUI/FlatCAMGUI.py:331
  2440. msgid "&Zoom Out\t="
  2441. msgstr "&Zoom Out\t="
  2442. #: flatcamGUI/FlatCAMGUI.py:335
  2443. msgid "Toggle Code Editor\tCTRL+E"
  2444. msgstr "Toggle Code Editor\tCTRL+E"
  2445. #: flatcamGUI/FlatCAMGUI.py:338
  2446. msgid "&Toggle FullScreen\tALT+F10"
  2447. msgstr "&Toggle FullScreen\tALT+F10"
  2448. #: flatcamGUI/FlatCAMGUI.py:340
  2449. msgid "&Toggle Plot Area\tCTRL+F10"
  2450. msgstr "&Toggle Plot Area\tCTRL+F10"
  2451. #: flatcamGUI/FlatCAMGUI.py:342
  2452. msgid "&Toggle Project/Sel/Tool\t`"
  2453. msgstr "&Toggle Project/Sel/Tool\t`"
  2454. #: flatcamGUI/FlatCAMGUI.py:345
  2455. msgid "&Toggle Grid Snap\tG"
  2456. msgstr "&Toggle Grid Snap\tG"
  2457. #: flatcamGUI/FlatCAMGUI.py:347
  2458. msgid "&Toggle Axis\tSHIFT+G"
  2459. msgstr "&Toggle Axis\tSHIFT+G"
  2460. #: flatcamGUI/FlatCAMGUI.py:350
  2461. msgid "Toggle Workspace\tSHIFT+W"
  2462. msgstr "Toggle Workspace\tSHIFT+W"
  2463. #: flatcamGUI/FlatCAMGUI.py:354
  2464. msgid "&Tool"
  2465. msgstr "&Tool"
  2466. #: flatcamGUI/FlatCAMGUI.py:356
  2467. msgid "&Command Line\tS"
  2468. msgstr "&Command Line\tS"
  2469. #: flatcamGUI/FlatCAMGUI.py:359
  2470. msgid "&Help"
  2471. msgstr "&Help"
  2472. #: flatcamGUI/FlatCAMGUI.py:360
  2473. msgid "Help\tF1"
  2474. msgstr "Help\tF1"
  2475. #: flatcamGUI/FlatCAMGUI.py:361
  2476. msgid "FlatCAM.org"
  2477. msgstr "FlatCAM.org"
  2478. #: flatcamGUI/FlatCAMGUI.py:364
  2479. msgid "Shortcuts List\tF3"
  2480. msgstr "Shortcuts List\tF3"
  2481. #: flatcamGUI/FlatCAMGUI.py:365
  2482. msgid "YouTube Channel\tF4"
  2483. msgstr "YouTube Channel\tF4"
  2484. #: flatcamGUI/FlatCAMGUI.py:367
  2485. msgid "About"
  2486. msgstr "About"
  2487. #: flatcamGUI/FlatCAMGUI.py:378
  2488. msgid "Add Circle\tO"
  2489. msgstr "Add Circle\tO"
  2490. #: flatcamGUI/FlatCAMGUI.py:380
  2491. msgid "Add Arc\tA"
  2492. msgstr "Add Arc\tA"
  2493. #: flatcamGUI/FlatCAMGUI.py:383
  2494. msgid "Add Rectangle\tR"
  2495. msgstr "Add Rectangle\tR"
  2496. #: flatcamGUI/FlatCAMGUI.py:386
  2497. msgid "Add Polygon\tN"
  2498. msgstr "Add Polygon\tN"
  2499. #: flatcamGUI/FlatCAMGUI.py:388
  2500. msgid "Add Path\tP"
  2501. msgstr "Add Path\tP"
  2502. #: flatcamGUI/FlatCAMGUI.py:390
  2503. msgid "Add Text\tT"
  2504. msgstr "Add Text\tT"
  2505. #: flatcamGUI/FlatCAMGUI.py:393
  2506. msgid "Polygon Union\tU"
  2507. msgstr "Polygon Union\tU"
  2508. #: flatcamGUI/FlatCAMGUI.py:395
  2509. msgid "Polygon Intersection\tE"
  2510. msgstr "Polygon Intersection\tE"
  2511. #: flatcamGUI/FlatCAMGUI.py:397
  2512. msgid "Polygon Subtraction\tS"
  2513. msgstr "Polygon Subtraction\tS"
  2514. #: flatcamGUI/FlatCAMGUI.py:401
  2515. msgid "Cut Path\tX"
  2516. msgstr "Cut Path\tX"
  2517. #: flatcamGUI/FlatCAMGUI.py:403
  2518. msgid "Copy Geom\tC"
  2519. msgstr "Copy Geom\tC"
  2520. #: flatcamGUI/FlatCAMGUI.py:405
  2521. msgid "Delete Shape\tDEL"
  2522. msgstr "Delete Shape\tDEL"
  2523. #: flatcamGUI/FlatCAMGUI.py:408
  2524. msgid "Move\tM"
  2525. msgstr "Move\tM"
  2526. #: flatcamGUI/FlatCAMGUI.py:410
  2527. msgid "Buffer Tool\tB"
  2528. msgstr "Buffer Tool\tB"
  2529. #: flatcamGUI/FlatCAMGUI.py:413
  2530. msgid "Paint Tool\tI"
  2531. msgstr "Paint Tool\tI"
  2532. #: flatcamGUI/FlatCAMGUI.py:416
  2533. msgid "Transform Tool\tALT+R"
  2534. msgstr "Transform Tool\tALT+R"
  2535. #: flatcamGUI/FlatCAMGUI.py:420
  2536. msgid "Toggle Corner Snap\tK"
  2537. msgstr "Toggle Corner Snap\tK"
  2538. #: flatcamGUI/FlatCAMGUI.py:423
  2539. msgid ">Excellon Editor<"
  2540. msgstr ">Excellon Editor<"
  2541. #: flatcamGUI/FlatCAMGUI.py:427
  2542. msgid "Add Drill Array\tA"
  2543. msgstr "Add Drill Array\tA"
  2544. #: flatcamGUI/FlatCAMGUI.py:429
  2545. msgid "Add Drill\tD"
  2546. msgstr "Add Drill\tD"
  2547. #: flatcamGUI/FlatCAMGUI.py:433
  2548. msgid "Resize Drill(S)\tR"
  2549. msgstr "Resize Drill(S)\tR"
  2550. #: flatcamGUI/FlatCAMGUI.py:435
  2551. msgid "Copy\tC"
  2552. msgstr "Copy\tC"
  2553. #: flatcamGUI/FlatCAMGUI.py:437
  2554. msgid "Delete\tDEL"
  2555. msgstr "Delete\tDEL"
  2556. #: flatcamGUI/FlatCAMGUI.py:442
  2557. msgid "Move Drill(s)\tM"
  2558. msgstr "Move Drill(s)\tM"
  2559. #: flatcamGUI/FlatCAMGUI.py:456
  2560. msgid "Enable Plot"
  2561. msgstr "Enable Plot"
  2562. #: flatcamGUI/FlatCAMGUI.py:457
  2563. msgid "Disable Plot"
  2564. msgstr "Disable Plot"
  2565. #: flatcamGUI/FlatCAMGUI.py:459
  2566. msgid "Generate CNC"
  2567. msgstr "Generate CNC"
  2568. #: flatcamGUI/FlatCAMGUI.py:460
  2569. msgid "View Source"
  2570. msgstr "View Source"
  2571. #: flatcamGUI/FlatCAMGUI.py:462 flatcamGUI/FlatCAMGUI.py:1390
  2572. msgid "Edit"
  2573. msgstr "Edit"
  2574. #: flatcamGUI/FlatCAMGUI.py:468 flatcamGUI/FlatCAMGUI.py:1396
  2575. #: flatcamTools/ToolProperties.py:25
  2576. msgid "Properties"
  2577. msgstr "Properties"
  2578. #: flatcamGUI/FlatCAMGUI.py:497
  2579. msgid "File Toolbar"
  2580. msgstr "File Toolbar"
  2581. #: flatcamGUI/FlatCAMGUI.py:501
  2582. msgid "Edit Toolbar"
  2583. msgstr "Edit Toolbar"
  2584. #: flatcamGUI/FlatCAMGUI.py:505
  2585. msgid "View Toolbar"
  2586. msgstr "View Toolbar"
  2587. #: flatcamGUI/FlatCAMGUI.py:509
  2588. msgid "Shell Toolbar"
  2589. msgstr "Shell Toolbar"
  2590. #: flatcamGUI/FlatCAMGUI.py:513
  2591. msgid "Tools Toolbar"
  2592. msgstr "Tools Toolbar"
  2593. #: flatcamGUI/FlatCAMGUI.py:517
  2594. msgid "Excellon Editor Toolbar"
  2595. msgstr "Excellon Editor Toolbar"
  2596. #: flatcamGUI/FlatCAMGUI.py:521
  2597. msgid "Geometry Editor Toolbar"
  2598. msgstr "Geometry Editor Toolbar"
  2599. #: flatcamGUI/FlatCAMGUI.py:525
  2600. msgid "Grid Toolbar"
  2601. msgstr "Grid Toolbar"
  2602. #: flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:1593
  2603. msgid "Open project"
  2604. msgstr "Open project"
  2605. #: flatcamGUI/FlatCAMGUI.py:545 flatcamGUI/FlatCAMGUI.py:1594
  2606. msgid "Save project"
  2607. msgstr "Save project"
  2608. #: flatcamGUI/FlatCAMGUI.py:548 flatcamGUI/FlatCAMGUI.py:1597
  2609. msgid "New Blank Geometry"
  2610. msgstr "New Blank Geometry"
  2611. #: flatcamGUI/FlatCAMGUI.py:549 flatcamGUI/FlatCAMGUI.py:1598
  2612. msgid "New Blank Excellon"
  2613. msgstr "New Blank Excellon"
  2614. #: flatcamGUI/FlatCAMGUI.py:551 flatcamGUI/FlatCAMGUI.py:1600
  2615. msgid "Editor"
  2616. msgstr "Editor"
  2617. #: flatcamGUI/FlatCAMGUI.py:553 flatcamGUI/FlatCAMGUI.py:1602
  2618. msgid "Save Object and close the Editor"
  2619. msgstr "Save Object and close the Editor"
  2620. #: flatcamGUI/FlatCAMGUI.py:557 flatcamGUI/FlatCAMGUI.py:1606
  2621. msgid "&Delete"
  2622. msgstr "&Delete"
  2623. #: flatcamGUI/FlatCAMGUI.py:560 flatcamGUI/FlatCAMGUI.py:1609
  2624. msgid "&Replot"
  2625. msgstr "&Replot"
  2626. #: flatcamGUI/FlatCAMGUI.py:561 flatcamGUI/FlatCAMGUI.py:1610
  2627. msgid "&Clear plot"
  2628. msgstr "&Clear plot"
  2629. #: flatcamGUI/FlatCAMGUI.py:562 flatcamGUI/FlatCAMGUI.py:1611
  2630. msgid "Zoom In"
  2631. msgstr "Zoom In"
  2632. #: flatcamGUI/FlatCAMGUI.py:563 flatcamGUI/FlatCAMGUI.py:1612
  2633. msgid "Zoom Out"
  2634. msgstr "Zoom Out"
  2635. #: flatcamGUI/FlatCAMGUI.py:564 flatcamGUI/FlatCAMGUI.py:1370
  2636. #: flatcamGUI/FlatCAMGUI.py:1613
  2637. msgid "Zoom Fit"
  2638. msgstr "Zoom Fit"
  2639. #: flatcamGUI/FlatCAMGUI.py:569 flatcamGUI/FlatCAMGUI.py:1618
  2640. msgid "&Command Line"
  2641. msgstr "&Command Line"
  2642. #: flatcamGUI/FlatCAMGUI.py:572 flatcamGUI/FlatCAMGUI.py:1621
  2643. msgid "2Sided Tool"
  2644. msgstr "2Sided Tool"
  2645. #: flatcamGUI/FlatCAMGUI.py:573 flatcamGUI/FlatCAMGUI.py:1622
  2646. msgid "&Cutout Tool"
  2647. msgstr "&Cutout Tool"
  2648. #: flatcamGUI/FlatCAMGUI.py:574 flatcamGUI/FlatCAMGUI.py:1623
  2649. #: flatcamGUI/ObjectUI.py:463 flatcamTools/ToolNonCopperClear.py:283
  2650. msgid "NCC Tool"
  2651. msgstr "NCC Tool"
  2652. #: flatcamGUI/FlatCAMGUI.py:578 flatcamGUI/FlatCAMGUI.py:1627
  2653. msgid "Panel Tool"
  2654. msgstr "Panel Tool"
  2655. #: flatcamGUI/FlatCAMGUI.py:579 flatcamGUI/FlatCAMGUI.py:1628
  2656. #: flatcamTools/ToolFilm.py:204
  2657. msgid "Film Tool"
  2658. msgstr "Film Tool"
  2659. #: flatcamGUI/FlatCAMGUI.py:580 flatcamGUI/FlatCAMGUI.py:1630
  2660. msgid "SolderPaste Tool"
  2661. msgstr "SolderPaste Tool"
  2662. #: flatcamGUI/FlatCAMGUI.py:583 flatcamGUI/FlatCAMGUI.py:1634
  2663. msgid "Calculators Tool"
  2664. msgstr "Calculators Tool"
  2665. #: flatcamGUI/FlatCAMGUI.py:587 flatcamGUI/FlatCAMGUI.py:601
  2666. #: flatcamGUI/FlatCAMGUI.py:1638
  2667. msgid "Select"
  2668. msgstr "Select"
  2669. #: flatcamGUI/FlatCAMGUI.py:588 flatcamGUI/FlatCAMGUI.py:1639
  2670. msgid "Add Drill Hole"
  2671. msgstr "Add Drill Hole"
  2672. #: flatcamGUI/FlatCAMGUI.py:591 flatcamGUI/FlatCAMGUI.py:1642
  2673. msgid "Resize Drill"
  2674. msgstr "Resize Drill"
  2675. #: flatcamGUI/FlatCAMGUI.py:594 flatcamGUI/FlatCAMGUI.py:1645
  2676. msgid "Copy Drill"
  2677. msgstr "Copy Drill"
  2678. #: flatcamGUI/FlatCAMGUI.py:595 flatcamGUI/FlatCAMGUI.py:1647
  2679. msgid "Delete Drill"
  2680. msgstr "Delete Drill"
  2681. #: flatcamGUI/FlatCAMGUI.py:598 flatcamGUI/FlatCAMGUI.py:1650
  2682. msgid "Move Drill"
  2683. msgstr "Move Drill"
  2684. #: flatcamGUI/FlatCAMGUI.py:602 flatcamGUI/FlatCAMGUI.py:1654
  2685. msgid "Add Circle"
  2686. msgstr "Add Circle"
  2687. #: flatcamGUI/FlatCAMGUI.py:603 flatcamGUI/FlatCAMGUI.py:1655
  2688. msgid "Add Arc"
  2689. msgstr "Add Arc"
  2690. #: flatcamGUI/FlatCAMGUI.py:605 flatcamGUI/FlatCAMGUI.py:1657
  2691. msgid "Add Rectangle"
  2692. msgstr "Add Rectangle"
  2693. #: flatcamGUI/FlatCAMGUI.py:608 flatcamGUI/FlatCAMGUI.py:1660
  2694. msgid "Add Path"
  2695. msgstr "Add Path"
  2696. #: flatcamGUI/FlatCAMGUI.py:609 flatcamGUI/FlatCAMGUI.py:1662
  2697. msgid "Add Polygon"
  2698. msgstr "Add Polygon"
  2699. #: flatcamGUI/FlatCAMGUI.py:611 flatcamGUI/FlatCAMGUI.py:1664
  2700. msgid "Add Text"
  2701. msgstr "Add Text"
  2702. #: flatcamGUI/FlatCAMGUI.py:612 flatcamGUI/FlatCAMGUI.py:1666
  2703. msgid "Add Buffer"
  2704. msgstr "Add Buffer"
  2705. #: flatcamGUI/FlatCAMGUI.py:613 flatcamGUI/FlatCAMGUI.py:1667
  2706. msgid "Paint Shape"
  2707. msgstr "Paint Shape"
  2708. #: flatcamGUI/FlatCAMGUI.py:616 flatcamGUI/FlatCAMGUI.py:1670
  2709. msgid "Polygon Union"
  2710. msgstr "Polygon Union"
  2711. #: flatcamGUI/FlatCAMGUI.py:618 flatcamGUI/FlatCAMGUI.py:1672
  2712. msgid "Polygon Intersection"
  2713. msgstr "Polygon Intersection"
  2714. #: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1674
  2715. msgid "Polygon Subtraction"
  2716. msgstr "Polygon Subtraction"
  2717. #: flatcamGUI/FlatCAMGUI.py:623 flatcamGUI/FlatCAMGUI.py:1677
  2718. msgid "Cut Path"
  2719. msgstr "Cut Path"
  2720. #: flatcamGUI/FlatCAMGUI.py:624
  2721. msgid "Copy Shape(s)"
  2722. msgstr "Copy Shape(s)"
  2723. #: flatcamGUI/FlatCAMGUI.py:627
  2724. msgid "Delete Shape '-'"
  2725. msgstr "Delete Shape '-'"
  2726. #: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1682
  2727. msgid "Transformations"
  2728. msgstr "Transformations"
  2729. #: flatcamGUI/FlatCAMGUI.py:631
  2730. msgid "Move Objects "
  2731. msgstr "Move Objects "
  2732. #: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1691
  2733. msgid "Snap to grid"
  2734. msgstr "Snap to grid"
  2735. #: flatcamGUI/FlatCAMGUI.py:640 flatcamGUI/FlatCAMGUI.py:1694
  2736. msgid "Grid X snapping distance"
  2737. msgstr "Grid X snapping distance"
  2738. #: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1699
  2739. msgid "Grid Y snapping distance"
  2740. msgstr "Grid Y snapping distance"
  2741. #: flatcamGUI/FlatCAMGUI.py:651 flatcamGUI/FlatCAMGUI.py:1705
  2742. msgid ""
  2743. "When active, value on Grid_X\n"
  2744. "is copied to the Grid_Y value."
  2745. msgstr ""
  2746. "When active, value on Grid_X\n"
  2747. "is copied to the Grid_Y value."
  2748. #: flatcamGUI/FlatCAMGUI.py:657 flatcamGUI/FlatCAMGUI.py:1711
  2749. msgid "Snap to corner"
  2750. msgstr "Snap to corner"
  2751. #: flatcamGUI/FlatCAMGUI.py:661 flatcamGUI/FlatCAMGUI.py:1715
  2752. #: flatcamGUI/FlatCAMGUI.py:2787
  2753. msgid "Max. magnet distance"
  2754. msgstr "Max. magnet distance"
  2755. #: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:1364
  2756. msgid "Project"
  2757. msgstr "Project"
  2758. #: flatcamGUI/FlatCAMGUI.py:684
  2759. msgid "Selected"
  2760. msgstr "Selected"
  2761. #: flatcamGUI/FlatCAMGUI.py:691
  2762. msgid "Tool"
  2763. msgstr "Tool"
  2764. #: flatcamGUI/FlatCAMGUI.py:703 flatcamGUI/FlatCAMGUI.py:711
  2765. msgid "Plot Area"
  2766. msgstr "Plot Area"
  2767. #: flatcamGUI/FlatCAMGUI.py:735
  2768. msgid "General"
  2769. msgstr "General"
  2770. #: flatcamGUI/FlatCAMGUI.py:744
  2771. msgid "APP. DEFAULTS"
  2772. msgstr "APP. DEFAULTS"
  2773. #: flatcamGUI/FlatCAMGUI.py:745
  2774. msgid "PROJ. OPTIONS "
  2775. msgstr "PROJ. OPTIONS "
  2776. #: flatcamGUI/FlatCAMGUI.py:756
  2777. msgid "GERBER"
  2778. msgstr "GERBER"
  2779. #: flatcamGUI/FlatCAMGUI.py:765
  2780. msgid "EXCELLON"
  2781. msgstr "EXCELLON"
  2782. #: flatcamGUI/FlatCAMGUI.py:774
  2783. msgid "GEOMETRY"
  2784. msgstr "GEOMETRY"
  2785. #: flatcamGUI/FlatCAMGUI.py:784
  2786. msgid "CNC-JOB"
  2787. msgstr "CNC-JOB"
  2788. #: flatcamGUI/FlatCAMGUI.py:793
  2789. msgid "TOOLS"
  2790. msgstr "TOOLS"
  2791. #: flatcamGUI/FlatCAMGUI.py:810
  2792. msgid "Import Preferences"
  2793. msgstr "Import Preferences"
  2794. #: flatcamGUI/FlatCAMGUI.py:813
  2795. msgid ""
  2796. "Import a full set of FlatCAM settings from a file\n"
  2797. "previously saved on HDD.\n"
  2798. "\n"
  2799. "FlatCAM automatically save a 'factory_defaults' file\n"
  2800. "on the first start. Do not delete that file."
  2801. msgstr ""
  2802. "Import a full set of FlatCAM settings from a file\n"
  2803. "previously saved on HDD.\n"
  2804. "\n"
  2805. "FlatCAM automatically save a 'factory_defaults' file\n"
  2806. "on the first start. Do not delete that file."
  2807. #: flatcamGUI/FlatCAMGUI.py:820
  2808. msgid "Export Preferences"
  2809. msgstr "Export Preferences"
  2810. #: flatcamGUI/FlatCAMGUI.py:823
  2811. msgid ""
  2812. "Export a full set of FlatCAM settings in a file\n"
  2813. "that is saved on HDD."
  2814. msgstr ""
  2815. "Export a full set of FlatCAM settings in a file\n"
  2816. "that is saved on HDD."
  2817. #: flatcamGUI/FlatCAMGUI.py:828
  2818. msgid "Open Pref Folder"
  2819. msgstr "Open Pref Folder"
  2820. #: flatcamGUI/FlatCAMGUI.py:831
  2821. msgid "Open the folder where FlatCAM save the preferences files."
  2822. msgstr "Open the folder where FlatCAM save the preferences files."
  2823. #: flatcamGUI/FlatCAMGUI.py:839
  2824. msgid "Save Preferences"
  2825. msgstr "Save Preferences"
  2826. #: flatcamGUI/FlatCAMGUI.py:842
  2827. msgid ""
  2828. "Save the current settings in the 'current_defaults' file\n"
  2829. "which is the file storing the working default preferences."
  2830. msgstr ""
  2831. "Save the current settings in the 'current_defaults' file\n"
  2832. "which is the file storing the working default preferences."
  2833. #: flatcamGUI/FlatCAMGUI.py:868
  2834. msgid ""
  2835. "<b>General Shortcut list</b><br>\n"
  2836. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  2837. "\"width:283px\">\n"
  2838. " <tbody>\n"
  2839. " <tr height=\"20\">\n"
  2840. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  2841. "td>\n"
  2842. " <td width=\"194\"><span style=\"color:"
  2843. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  2844. " </tr>\n"
  2845. " <tr height=\"20\">\n"
  2846. " <td height=\"20\">&nbsp;</td>\n"
  2847. " <td>&nbsp;</td>\n"
  2848. " </tr>\n"
  2849. " <tr height=\"20\">\n"
  2850. " <td height=\"20\"><strong>1</strong></td>\n"
  2851. " <td>&nbsp;Switch to Project Tab</td>\n"
  2852. " </tr>\n"
  2853. " <tr height=\"20\">\n"
  2854. " <td height=\"20\"><strong>2</strong></td>\n"
  2855. " <td>&nbsp;Switch to Selected Tab</td>\n"
  2856. " </tr>\n"
  2857. " <tr height=\"20\">\n"
  2858. " <td height=\"20\"><strong>3</strong></td>\n"
  2859. " <td>&nbsp;Switch to Tool Tab</td>\n"
  2860. " </tr>\n"
  2861. " <tr height=\"20\">\n"
  2862. " <td height=\"20\">&nbsp;</td>\n"
  2863. " <td>&nbsp;</td>\n"
  2864. " </tr>\n"
  2865. " <tr height=\"20\">\n"
  2866. " <td height=\"20\"><strong>E</strong></td>\n"
  2867. " <td>&nbsp;Edit Object (if selected)</td>\n"
  2868. " </tr>\n"
  2869. " <tr height=\"20\">\n"
  2870. " <td height=\"20\"><strong>G</strong></td>\n"
  2871. " <td>&nbsp;Grid On/Off</td>\n"
  2872. " </tr>\n"
  2873. " <tr height=\"20\">\n"
  2874. " <td height=\"20\"><strong>J</strong></td>\n"
  2875. " <td>&nbsp;Jump to Coordinates</td>\n"
  2876. " </tr>\n"
  2877. " <tr height=\"20\">\n"
  2878. " <td height=\"20\"><strong>L</strong></td>\n"
  2879. " <td>&nbsp;New Excellon</td>\n"
  2880. " </tr>\n"
  2881. " <tr height=\"20\">\n"
  2882. " <td height=\"20\"><strong>M</strong></td>\n"
  2883. " <td>&nbsp;Move Obj</td>\n"
  2884. " </tr>\n"
  2885. " <tr height=\"20\">\n"
  2886. " <td height=\"20\"><strong>N</strong></td>\n"
  2887. " <td>&nbsp;New Geometry</td>\n"
  2888. " </tr>\n"
  2889. " <tr height=\"20\">\n"
  2890. " <td height=\"20\"><strong>O</strong></td>\n"
  2891. " <td>&nbsp;Set Origin</td>\n"
  2892. " </tr>\n"
  2893. " <tr height=\"20\">\n"
  2894. " <td height=\"20\"><strong>Q</strong></td>\n"
  2895. " <td>&nbsp;Change Units</td>\n"
  2896. " </tr>\n"
  2897. " <tr height=\"20\">\n"
  2898. " <td height=\"20\"><strong>P</strong></td>\n"
  2899. " <td>&nbsp;Open Properties Tool</td>\n"
  2900. " </tr>\n"
  2901. " <tr height=\"20\">\n"
  2902. " <td height=\"20\"><strong>R</strong></td>\n"
  2903. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  2904. " </tr>\n"
  2905. " <tr height=\"20\">\n"
  2906. " <td height=\"20\"><strong>S</strong></td>\n"
  2907. " <td>&nbsp;Shell Toggle</td>\n"
  2908. " </tr>\n"
  2909. " <tr height=\"20\">\n"
  2910. " <td height=\"20\"><strong>T</strong></td>\n"
  2911. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  2912. "or in Tools NCC or Tools Paint)</td>\n"
  2913. " </tr>\n"
  2914. " <tr height=\"20\">\n"
  2915. " <td height=\"20\"><strong>V</strong></td>\n"
  2916. " <td>&nbsp;Zoom Fit</td>\n"
  2917. " </tr>\n"
  2918. " <tr height=\"20\">\n"
  2919. " <td height=\"20\"><strong>X</strong></td>\n"
  2920. " <td>&nbsp;Flip on X_axis</td>\n"
  2921. " </tr>\n"
  2922. " <tr height=\"20\">\n"
  2923. " <td height=\"20\"><strong>Y</strong></td>\n"
  2924. " <td>&nbsp;Flip on Y_axis</td>\n"
  2925. " </tr>\n"
  2926. " <tr height=\"20\">\n"
  2927. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  2928. " <td>&nbsp;Zoom Out</td>\n"
  2929. " </tr>\n"
  2930. " <tr height=\"20\">\n"
  2931. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  2932. " <td>&nbsp;Zoom In</td>\n"
  2933. " </tr>\n"
  2934. " <tr height=\"20\">\n"
  2935. " <td height=\"20\">&nbsp;</td>\n"
  2936. " <td>&nbsp;</td>\n"
  2937. " </tr>\n"
  2938. " <tr height=\"20\">\n"
  2939. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  2940. " <td>&nbsp;Select All</td>\n"
  2941. " </tr>\n"
  2942. " <tr height=\"20\">\n"
  2943. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  2944. " <td>&nbsp;Copy Obj</td>\n"
  2945. " </tr>\n"
  2946. " <tr height=\"20\">\n"
  2947. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  2948. " <td>&nbsp;Open Excellon File</td>\n"
  2949. " </tr>\n"
  2950. " <tr height=\"20\">\n"
  2951. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  2952. " <td>&nbsp;Open Gerber File</td>\n"
  2953. " </tr>\n"
  2954. " <tr height=\"20\">\n"
  2955. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  2956. " <td>&nbsp;New Project</td>\n"
  2957. " </tr>\n"
  2958. " <tr height=\"20\">\n"
  2959. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  2960. " <td>&nbsp;Measurement Tool</td>\n"
  2961. " </tr>\n"
  2962. " <tr height=\"20\">\n"
  2963. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  2964. " <td>&nbsp;Open Project</td>\n"
  2965. " </tr>\n"
  2966. " <tr height=\"20\">\n"
  2967. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  2968. " <td>&nbsp;Save Project As</td>\n"
  2969. " </tr>\n"
  2970. " <tr height=\"20\">\n"
  2971. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  2972. " <td>&nbsp;Toggle Plot Area</td>\n"
  2973. " </tr>\n"
  2974. " <tr height=\"20\">\n"
  2975. " <td height=\"20\">&nbsp;</td>\n"
  2976. " <td>&nbsp;</td>\n"
  2977. " </tr>\n"
  2978. " <tr height=\"20\">\n"
  2979. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  2980. " <td>&nbsp;Copy Obj_Name</td>\n"
  2981. " </tr>\n"
  2982. " <tr height=\"20\">\n"
  2983. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  2984. " <td>&nbsp;Toggle Code Editor</td>\n"
  2985. " </tr>\n"
  2986. " <tr height=\"20\">\n"
  2987. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  2988. " <td>&nbsp;Toggle the axis</td>\n"
  2989. " </tr>\n"
  2990. " <tr height=\"20\">\n"
  2991. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  2992. " <td>&nbsp;Open Preferences Window</td>\n"
  2993. " </tr>\n"
  2994. " <tr height=\"20\">\n"
  2995. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  2996. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  2997. " </tr>\n"
  2998. " <tr height=\"20\">\n"
  2999. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  3000. " <td>&nbsp;Run a Script</td>\n"
  3001. " </tr>\n"
  3002. " <tr height=\"20\">\n"
  3003. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  3004. " <td>&nbsp;Toggle the workspace</td>\n"
  3005. " </tr>\n"
  3006. " <tr height=\"20\">\n"
  3007. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3008. " <td>&nbsp;Skew on X axis</td>\n"
  3009. " </tr>\n"
  3010. " <tr height=\"20\">\n"
  3011. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3012. " <td>&nbsp;Skew on Y axis</td>\n"
  3013. " </tr>\n"
  3014. " <tr height=\"20\">\n"
  3015. " <td height=\"20\">&nbsp;</td>\n"
  3016. " <td>&nbsp;</td>\n"
  3017. " </tr>\n"
  3018. " <tr height=\"20\">\n"
  3019. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  3020. " <td>&nbsp;Calculators Tool</td>\n"
  3021. " </tr>\n"
  3022. " <tr height=\"20\">\n"
  3023. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  3024. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  3025. " </tr>\n"
  3026. " <tr height=\"20\">\n"
  3027. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  3028. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  3029. " </tr>\n"
  3030. " <tr height=\"20\">\n"
  3031. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  3032. " <td>&nbsp;Film PCB Tool</td>\n"
  3033. " </tr>\n"
  3034. " <tr height=\"20\">\n"
  3035. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  3036. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  3037. " </tr>\n"
  3038. " <tr height=\"20\">\n"
  3039. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  3040. " <td>&nbsp;Paint Area Tool</td>\n"
  3041. " </tr>\n"
  3042. " <tr height=\"20\">\n"
  3043. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3044. " <td>&nbsp;Transformations Tool</td>\n"
  3045. " </tr>\n"
  3046. " <tr height=\"20\">\n"
  3047. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  3048. " <td>&nbsp;View File Source</td>\n"
  3049. " </tr>\n"
  3050. " <tr height=\"20\">\n"
  3051. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  3052. " <td>&nbsp;Cutout PCB Tool</td>\n"
  3053. " </tr>\n"
  3054. " <tr height=\"20\">\n"
  3055. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  3056. " <td>&nbsp;Enable all Plots</td>\n"
  3057. " </tr>\n"
  3058. " <tr height=\"20\">\n"
  3059. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  3060. " <td>&nbsp;Disable all Plots</td>\n"
  3061. " </tr>\n"
  3062. " <tr height=\"20\">\n"
  3063. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  3064. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  3065. " </tr>\n"
  3066. " <tr height=\"20\">\n"
  3067. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  3068. " <td>&nbsp;Toggle Full Screen</td>\n"
  3069. " </tr>\n"
  3070. " <tr height=\"20\">\n"
  3071. " <td height=\"20\">&nbsp;</td>\n"
  3072. " <td>&nbsp;</td>\n"
  3073. " </tr>\n"
  3074. " <tr height=\"20\">\n"
  3075. " <td height=\"20\"><strong>F1</strong></td>\n"
  3076. " <td>&nbsp;Open Online Manual</td>\n"
  3077. " </tr>\n"
  3078. " <tr height=\"20\">\n"
  3079. " <td height=\"20\"><strong>F4</strong></td>\n"
  3080. " <td>&nbsp;Open Online Tutorials</td>\n"
  3081. " </tr>\n"
  3082. " <tr height=\"20\">\n"
  3083. " <td height=\"20\"><strong>Del</strong></td>\n"
  3084. " <td>&nbsp;Delete Object</td>\n"
  3085. " </tr>\n"
  3086. " <tr height=\"20\">\n"
  3087. " <td height=\"20\"><strong>Del</strong></td>\n"
  3088. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  3089. " </tr>\n"
  3090. " <tr height=\"20\">\n"
  3091. " <td height=\"20\"><strong>'`'</strong></td>\n"
  3092. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  3093. "Side)</td>\n"
  3094. " </tr>\n"
  3095. " <tr height=\"20\">\n"
  3096. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  3097. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  3098. " </tr>\n"
  3099. " <tr height=\"20\">\n"
  3100. " <td height=\"20\"><strong>Escape</strong></td>\n"
  3101. " <td>&nbsp;Deselects all objects</td>\n"
  3102. " </tr>\n"
  3103. " </tbody>\n"
  3104. " </table>\n"
  3105. " \n"
  3106. " "
  3107. msgstr ""
  3108. "<b>General Shortcut list</b><br>\n"
  3109. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3110. "\"width:283px\">\n"
  3111. " <tbody>\n"
  3112. " <tr height=\"20\">\n"
  3113. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  3114. "td>\n"
  3115. " <td width=\"194\"><span style=\"color:"
  3116. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  3117. " </tr>\n"
  3118. " <tr height=\"20\">\n"
  3119. " <td height=\"20\">&nbsp;</td>\n"
  3120. " <td>&nbsp;</td>\n"
  3121. " </tr>\n"
  3122. " <tr height=\"20\">\n"
  3123. " <td height=\"20\"><strong>1</strong></td>\n"
  3124. " <td>&nbsp;Switch to Project Tab</td>\n"
  3125. " </tr>\n"
  3126. " <tr height=\"20\">\n"
  3127. " <td height=\"20\"><strong>2</strong></td>\n"
  3128. " <td>&nbsp;Switch to Selected Tab</td>\n"
  3129. " </tr>\n"
  3130. " <tr height=\"20\">\n"
  3131. " <td height=\"20\"><strong>3</strong></td>\n"
  3132. " <td>&nbsp;Switch to Tool Tab</td>\n"
  3133. " </tr>\n"
  3134. " <tr height=\"20\">\n"
  3135. " <td height=\"20\">&nbsp;</td>\n"
  3136. " <td>&nbsp;</td>\n"
  3137. " </tr>\n"
  3138. " <tr height=\"20\">\n"
  3139. " <td height=\"20\"><strong>E</strong></td>\n"
  3140. " <td>&nbsp;Edit Object (if selected)</td>\n"
  3141. " </tr>\n"
  3142. " <tr height=\"20\">\n"
  3143. " <td height=\"20\"><strong>G</strong></td>\n"
  3144. " <td>&nbsp;Grid On/Off</td>\n"
  3145. " </tr>\n"
  3146. " <tr height=\"20\">\n"
  3147. " <td height=\"20\"><strong>J</strong></td>\n"
  3148. " <td>&nbsp;Jump to Coordinates</td>\n"
  3149. " </tr>\n"
  3150. " <tr height=\"20\">\n"
  3151. " <td height=\"20\"><strong>L</strong></td>\n"
  3152. " <td>&nbsp;New Excellon</td>\n"
  3153. " </tr>\n"
  3154. " <tr height=\"20\">\n"
  3155. " <td height=\"20\"><strong>M</strong></td>\n"
  3156. " <td>&nbsp;Move Obj</td>\n"
  3157. " </tr>\n"
  3158. " <tr height=\"20\">\n"
  3159. " <td height=\"20\"><strong>N</strong></td>\n"
  3160. " <td>&nbsp;New Geometry</td>\n"
  3161. " </tr>\n"
  3162. " <tr height=\"20\">\n"
  3163. " <td height=\"20\"><strong>O</strong></td>\n"
  3164. " <td>&nbsp;Set Origin</td>\n"
  3165. " </tr>\n"
  3166. " <tr height=\"20\">\n"
  3167. " <td height=\"20\"><strong>Q</strong></td>\n"
  3168. " <td>&nbsp;Change Units</td>\n"
  3169. " </tr>\n"
  3170. " <tr height=\"20\">\n"
  3171. " <td height=\"20\"><strong>P</strong></td>\n"
  3172. " <td>&nbsp;Open Properties Tool</td>\n"
  3173. " </tr>\n"
  3174. " <tr height=\"20\">\n"
  3175. " <td height=\"20\"><strong>R</strong></td>\n"
  3176. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  3177. " </tr>\n"
  3178. " <tr height=\"20\">\n"
  3179. " <td height=\"20\"><strong>S</strong></td>\n"
  3180. " <td>&nbsp;Shell Toggle</td>\n"
  3181. " </tr>\n"
  3182. " <tr height=\"20\">\n"
  3183. " <td height=\"20\"><strong>T</strong></td>\n"
  3184. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  3185. "or in Tools NCC or Tools Paint)</td>\n"
  3186. " </tr>\n"
  3187. " <tr height=\"20\">\n"
  3188. " <td height=\"20\"><strong>V</strong></td>\n"
  3189. " <td>&nbsp;Zoom Fit</td>\n"
  3190. " </tr>\n"
  3191. " <tr height=\"20\">\n"
  3192. " <td height=\"20\"><strong>X</strong></td>\n"
  3193. " <td>&nbsp;Flip on X_axis</td>\n"
  3194. " </tr>\n"
  3195. " <tr height=\"20\">\n"
  3196. " <td height=\"20\"><strong>Y</strong></td>\n"
  3197. " <td>&nbsp;Flip on Y_axis</td>\n"
  3198. " </tr>\n"
  3199. " <tr height=\"20\">\n"
  3200. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  3201. " <td>&nbsp;Zoom Out</td>\n"
  3202. " </tr>\n"
  3203. " <tr height=\"20\">\n"
  3204. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  3205. " <td>&nbsp;Zoom In</td>\n"
  3206. " </tr>\n"
  3207. " <tr height=\"20\">\n"
  3208. " <td height=\"20\">&nbsp;</td>\n"
  3209. " <td>&nbsp;</td>\n"
  3210. " </tr>\n"
  3211. " <tr height=\"20\">\n"
  3212. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  3213. " <td>&nbsp;Select All</td>\n"
  3214. " </tr>\n"
  3215. " <tr height=\"20\">\n"
  3216. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  3217. " <td>&nbsp;Copy Obj</td>\n"
  3218. " </tr>\n"
  3219. " <tr height=\"20\">\n"
  3220. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  3221. " <td>&nbsp;Open Excellon File</td>\n"
  3222. " </tr>\n"
  3223. " <tr height=\"20\">\n"
  3224. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  3225. " <td>&nbsp;Open Gerber File</td>\n"
  3226. " </tr>\n"
  3227. " <tr height=\"20\">\n"
  3228. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  3229. " <td>&nbsp;New Project</td>\n"
  3230. " </tr>\n"
  3231. " <tr height=\"20\">\n"
  3232. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3233. " <td>&nbsp;Measurement Tool</td>\n"
  3234. " </tr>\n"
  3235. " <tr height=\"20\">\n"
  3236. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  3237. " <td>&nbsp;Open Project</td>\n"
  3238. " </tr>\n"
  3239. " <tr height=\"20\">\n"
  3240. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3241. " <td>&nbsp;Save Project As</td>\n"
  3242. " </tr>\n"
  3243. " <tr height=\"20\">\n"
  3244. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  3245. " <td>&nbsp;Toggle Plot Area</td>\n"
  3246. " </tr>\n"
  3247. " <tr height=\"20\">\n"
  3248. " <td height=\"20\">&nbsp;</td>\n"
  3249. " <td>&nbsp;</td>\n"
  3250. " </tr>\n"
  3251. " <tr height=\"20\">\n"
  3252. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  3253. " <td>&nbsp;Copy Obj_Name</td>\n"
  3254. " </tr>\n"
  3255. " <tr height=\"20\">\n"
  3256. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  3257. " <td>&nbsp;Toggle Code Editor</td>\n"
  3258. " </tr>\n"
  3259. " <tr height=\"20\">\n"
  3260. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  3261. " <td>&nbsp;Toggle the axis</td>\n"
  3262. " </tr>\n"
  3263. " <tr height=\"20\">\n"
  3264. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  3265. " <td>&nbsp;Open Preferences Window</td>\n"
  3266. " </tr>\n"
  3267. " <tr height=\"20\">\n"
  3268. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  3269. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  3270. " </tr>\n"
  3271. " <tr height=\"20\">\n"
  3272. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  3273. " <td>&nbsp;Run a Script</td>\n"
  3274. " </tr>\n"
  3275. " <tr height=\"20\">\n"
  3276. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  3277. " <td>&nbsp;Toggle the workspace</td>\n"
  3278. " </tr>\n"
  3279. " <tr height=\"20\">\n"
  3280. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3281. " <td>&nbsp;Skew on X axis</td>\n"
  3282. " </tr>\n"
  3283. " <tr height=\"20\">\n"
  3284. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3285. " <td>&nbsp;Skew on Y axis</td>\n"
  3286. " </tr>\n"
  3287. " <tr height=\"20\">\n"
  3288. " <td height=\"20\">&nbsp;</td>\n"
  3289. " <td>&nbsp;</td>\n"
  3290. " </tr>\n"
  3291. " <tr height=\"20\">\n"
  3292. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  3293. " <td>&nbsp;Calculators Tool</td>\n"
  3294. " </tr>\n"
  3295. " <tr height=\"20\">\n"
  3296. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  3297. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  3298. " </tr>\n"
  3299. " <tr height=\"20\">\n"
  3300. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  3301. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  3302. " </tr>\n"
  3303. " <tr height=\"20\">\n"
  3304. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  3305. " <td>&nbsp;Film PCB Tool</td>\n"
  3306. " </tr>\n"
  3307. " <tr height=\"20\">\n"
  3308. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  3309. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  3310. " </tr>\n"
  3311. " <tr height=\"20\">\n"
  3312. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  3313. " <td>&nbsp;Paint Area Tool</td>\n"
  3314. " </tr>\n"
  3315. " <tr height=\"20\">\n"
  3316. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3317. " <td>&nbsp;Transformations Tool</td>\n"
  3318. " </tr>\n"
  3319. " <tr height=\"20\">\n"
  3320. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  3321. " <td>&nbsp;View File Source</td>\n"
  3322. " </tr>\n"
  3323. " <tr height=\"20\">\n"
  3324. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  3325. " <td>&nbsp;Cutout PCB Tool</td>\n"
  3326. " </tr>\n"
  3327. " <tr height=\"20\">\n"
  3328. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  3329. " <td>&nbsp;Enable all Plots</td>\n"
  3330. " </tr>\n"
  3331. " <tr height=\"20\">\n"
  3332. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  3333. " <td>&nbsp;Disable all Plots</td>\n"
  3334. " </tr>\n"
  3335. " <tr height=\"20\">\n"
  3336. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  3337. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  3338. " </tr>\n"
  3339. " <tr height=\"20\">\n"
  3340. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  3341. " <td>&nbsp;Toggle Full Screen</td>\n"
  3342. " </tr>\n"
  3343. " <tr height=\"20\">\n"
  3344. " <td height=\"20\">&nbsp;</td>\n"
  3345. " <td>&nbsp;</td>\n"
  3346. " </tr>\n"
  3347. " <tr height=\"20\">\n"
  3348. " <td height=\"20\"><strong>F1</strong></td>\n"
  3349. " <td>&nbsp;Open Online Manual</td>\n"
  3350. " </tr>\n"
  3351. " <tr height=\"20\">\n"
  3352. " <td height=\"20\"><strong>F4</strong></td>\n"
  3353. " <td>&nbsp;Open Online Tutorials</td>\n"
  3354. " </tr>\n"
  3355. " <tr height=\"20\">\n"
  3356. " <td height=\"20\"><strong>Del</strong></td>\n"
  3357. " <td>&nbsp;Delete Object</td>\n"
  3358. " </tr>\n"
  3359. " <tr height=\"20\">\n"
  3360. " <td height=\"20\"><strong>Del</strong></td>\n"
  3361. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  3362. " </tr>\n"
  3363. " <tr height=\"20\">\n"
  3364. " <td height=\"20\"><strong>'`'</strong></td>\n"
  3365. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  3366. "Side)</td>\n"
  3367. " </tr>\n"
  3368. " <tr height=\"20\">\n"
  3369. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  3370. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  3371. " </tr>\n"
  3372. " <tr height=\"20\">\n"
  3373. " <td height=\"20\"><strong>Escape</strong></td>\n"
  3374. " <td>&nbsp;Deselects all objects</td>\n"
  3375. " </tr>\n"
  3376. " </tbody>\n"
  3377. " </table>\n"
  3378. " \n"
  3379. " "
  3380. #: flatcamGUI/FlatCAMGUI.py:1145
  3381. msgid ""
  3382. "<b>Editor Shortcut list</b><br>\n"
  3383. " <br>\n"
  3384. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  3385. "strong><br>\n"
  3386. " \n"
  3387. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3388. "\"width:283px\">\n"
  3389. " <tbody>\n"
  3390. " <tr height=\"20\">\n"
  3391. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3392. "td>\n"
  3393. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  3394. " </tr>\n"
  3395. " <tr height=\"20\">\n"
  3396. " <td height=\"20\"><strong>B</strong></td>\n"
  3397. " <td>&nbsp;Buffer Tool</td>\n"
  3398. " </tr>\n"
  3399. " <tr height=\"20\">\n"
  3400. " <td height=\"20\"><strong>C</strong></td>\n"
  3401. " <td>&nbsp;Copy Geo Item</td>\n"
  3402. " </tr>\n"
  3403. " <tr height=\"20\">\n"
  3404. " <td height=\"20\"><strong>E</strong></td>\n"
  3405. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  3406. " </tr>\n"
  3407. " <tr height=\"20\">\n"
  3408. " <td height=\"20\"><strong>I</strong></td>\n"
  3409. " <td>&nbsp;Paint Tool</td>\n"
  3410. " </tr>\n"
  3411. " <tr height=\"20\">\n"
  3412. " <td height=\"20\"><strong>J</strong></td>\n"
  3413. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3414. " </tr>\n"
  3415. " <tr height=\"20\">\n"
  3416. " <td height=\"20\"><strong>K</strong></td>\n"
  3417. " <td>&nbsp;Toggle Corner Snap</td>\n"
  3418. " </tr>\n"
  3419. " <tr height=\"20\">\n"
  3420. " <td height=\"20\"><strong>M</strong></td>\n"
  3421. " <td>&nbsp;Move Geo Item</td>\n"
  3422. " </tr>\n"
  3423. " <tr height=\"20\">\n"
  3424. " <td height=\"20\"><strong>N</strong></td>\n"
  3425. " <td>&nbsp;Draw a Polygon</td>\n"
  3426. " </tr>\n"
  3427. " <tr height=\"20\">\n"
  3428. " <td height=\"20\"><strong>O</strong></td>\n"
  3429. " <td>&nbsp;Draw a Circle</td>\n"
  3430. " </tr>\n"
  3431. " <tr height=\"20\">\n"
  3432. " <td height=\"20\"><strong>P</strong></td>\n"
  3433. " <td>&nbsp;Draw a Path</td>\n"
  3434. " </tr>\n"
  3435. " <tr height=\"20\">\n"
  3436. " <td height=\"20\"><strong>R</strong></td>\n"
  3437. " <td>&nbsp;Draw Rectangle</td>\n"
  3438. " </tr>\n"
  3439. " <tr height=\"20\">\n"
  3440. " <td height=\"20\"><strong>S</strong></td>\n"
  3441. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  3442. " </tr>\n"
  3443. " <tr height=\"20\">\n"
  3444. " <td height=\"20\"><strong>T</strong></td>\n"
  3445. " <td>&nbsp;Add Text Tool</td>\n"
  3446. " </tr>\n"
  3447. " <tr height=\"20\">\n"
  3448. " <td height=\"20\"><strong>U</strong></td>\n"
  3449. " <td>&nbsp;Polygon Union Tool</td>\n"
  3450. " </tr>\n"
  3451. " <tr height=\"20\">\n"
  3452. " <td height=\"20\"><strong>X</strong></td>\n"
  3453. " <td>&nbsp;Flip shape on X axis</td>\n"
  3454. " </tr>\n"
  3455. " <tr height=\"20\">\n"
  3456. " <td height=\"20\"><strong>Y</strong></td>\n"
  3457. " <td>&nbsp;Flip shape on Y axis</td>\n"
  3458. " </tr>\n"
  3459. " <tr height=\"20\">\n"
  3460. " <td height=\"20\">&nbsp;</td>\n"
  3461. " <td>&nbsp;</td>\n"
  3462. " </tr>\n"
  3463. " <tr height=\"20\">\n"
  3464. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3465. " <td>&nbsp;Skew shape on X axis</td>\n"
  3466. " </tr>\n"
  3467. " <tr height=\"20\">\n"
  3468. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3469. " <td>&nbsp;Skew shape on Y axis</td>\n"
  3470. " </tr>\n"
  3471. " <tr height=\"20\">\n"
  3472. " <td height=\"20\">&nbsp;</td>\n"
  3473. " <td>&nbsp;</td>\n"
  3474. " </tr>\n"
  3475. " <tr height=\"20\">\n"
  3476. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3477. " <td>&nbsp;Editor Transformation Tool</td>\n"
  3478. " </tr>\n"
  3479. " <tr height=\"20\">\n"
  3480. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  3481. " <td>&nbsp;Offset shape on X axis</td>\n"
  3482. " </tr>\n"
  3483. " <tr height=\"20\">\n"
  3484. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  3485. " <td>&nbsp;Offset shape on Y axis</td>\n"
  3486. " </tr>\n"
  3487. " <tr height=\"20\">\n"
  3488. " <td height=\"20\">&nbsp;</td>\n"
  3489. " <td>&nbsp;</td>\n"
  3490. " </tr>\n"
  3491. " <tr height=\"20\">\n"
  3492. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3493. " <td>&nbsp;Measurement Tool</td>\n"
  3494. " </tr>\n"
  3495. " <tr height=\"20\">\n"
  3496. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3497. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3498. " </tr>\n"
  3499. " <tr height=\"20\">\n"
  3500. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  3501. " <td>&nbsp;Polygon Cut Tool</td>\n"
  3502. " </tr>\n"
  3503. " <tr height=\"20\">\n"
  3504. " <td height=\"20\">&nbsp;</td>\n"
  3505. " <td>&nbsp;</td>\n"
  3506. " </tr>\n"
  3507. " <tr height=\"20\">\n"
  3508. " <td height=\"20\"><strong>Space</strong></td>\n"
  3509. " <td>&nbsp;Rotate Geometry</td>\n"
  3510. " </tr>\n"
  3511. " <tr height=\"20\">\n"
  3512. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  3513. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  3514. " </tr>\n"
  3515. " <tr height=\"20\">\n"
  3516. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3517. " <td>&nbsp;Abort and return to Select</td>\n"
  3518. " </tr>\n"
  3519. " <tr height=\"20\">\n"
  3520. " <td height=\"20\"><strong>Del</strong></td>\n"
  3521. " <td>&nbsp;Delete Shape</td>\n"
  3522. " </tr>\n"
  3523. " </tbody>\n"
  3524. " </table>\n"
  3525. " <br>\n"
  3526. " <br>\n"
  3527. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  3528. "strong><br>\n"
  3529. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3530. "\"width:283px\">\n"
  3531. " <tbody>\n"
  3532. " <tr height=\"20\">\n"
  3533. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3534. "td>\n"
  3535. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  3536. " </tr>\n"
  3537. " <tr height=\"20\">\n"
  3538. " <td height=\"20\"><strong>C</strong></td>\n"
  3539. " <td>&nbsp;Copy Drill(s)</td>\n"
  3540. " </tr>\n"
  3541. " <tr height=\"20\">\n"
  3542. " <td height=\"20\"><strong>D</strong></td>\n"
  3543. " <td>&nbsp;Add Drill</td>\n"
  3544. " </tr>\n"
  3545. " <tr height=\"20\">\n"
  3546. " <td height=\"20\"><strong>J</strong></td>\n"
  3547. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3548. " </tr>\n"
  3549. " <tr height=\"20\">\n"
  3550. " <td height=\"20\"><strong>M</strong></td>\n"
  3551. " <td>&nbsp;Move Drill(s)</td>\n"
  3552. " </tr>\n"
  3553. " <tr height=\"20\">\n"
  3554. " <td height=\"20\"><strong>R</strong></td>\n"
  3555. " <td>&nbsp;Resize Drill(s)</td>\n"
  3556. " </tr>\n"
  3557. " <tr height=\"20\">\n"
  3558. " <td height=\"20\"><strong>T</strong></td>\n"
  3559. " <td>&nbsp;Add a new Tool</td>\n"
  3560. " </tr>\n"
  3561. " <tr height=\"20\">\n"
  3562. " <td height=\"20\">&nbsp;</td>\n"
  3563. " <td>&nbsp;</td>\n"
  3564. " </tr>\n"
  3565. " <tr height=\"20\">\n"
  3566. " <td height=\"20\"><strong>Del</strong></td>\n"
  3567. " <td>&nbsp;Delete Drill(s)</td>\n"
  3568. " </tr>\n"
  3569. " <tr height=\"20\">\n"
  3570. " <td height=\"20\"><strong>Del</strong></td>\n"
  3571. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  3572. " </tr>\n"
  3573. " <tr height=\"20\">\n"
  3574. " <td height=\"20\">&nbsp;</td>\n"
  3575. " <td>&nbsp;</td>\n"
  3576. " </tr>\n"
  3577. " <tr height=\"20\">\n"
  3578. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3579. " <td>&nbsp;Abort and return to Select</td>\n"
  3580. " </tr>\n"
  3581. " <tr height=\"20\">\n"
  3582. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3583. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3584. " </tr>\n"
  3585. " </tbody>\n"
  3586. " </table>\n"
  3587. " "
  3588. msgstr ""
  3589. "<b>Editor Shortcut list</b><br>\n"
  3590. " <br>\n"
  3591. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  3592. "strong><br>\n"
  3593. " \n"
  3594. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3595. "\"width:283px\">\n"
  3596. " <tbody>\n"
  3597. " <tr height=\"20\">\n"
  3598. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3599. "td>\n"
  3600. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  3601. " </tr>\n"
  3602. " <tr height=\"20\">\n"
  3603. " <td height=\"20\"><strong>B</strong></td>\n"
  3604. " <td>&nbsp;Buffer Tool</td>\n"
  3605. " </tr>\n"
  3606. " <tr height=\"20\">\n"
  3607. " <td height=\"20\"><strong>C</strong></td>\n"
  3608. " <td>&nbsp;Copy Geo Item</td>\n"
  3609. " </tr>\n"
  3610. " <tr height=\"20\">\n"
  3611. " <td height=\"20\"><strong>E</strong></td>\n"
  3612. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  3613. " </tr>\n"
  3614. " <tr height=\"20\">\n"
  3615. " <td height=\"20\"><strong>I</strong></td>\n"
  3616. " <td>&nbsp;Paint Tool</td>\n"
  3617. " </tr>\n"
  3618. " <tr height=\"20\">\n"
  3619. " <td height=\"20\"><strong>J</strong></td>\n"
  3620. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3621. " </tr>\n"
  3622. " <tr height=\"20\">\n"
  3623. " <td height=\"20\"><strong>K</strong></td>\n"
  3624. " <td>&nbsp;Toggle Corner Snap</td>\n"
  3625. " </tr>\n"
  3626. " <tr height=\"20\">\n"
  3627. " <td height=\"20\"><strong>M</strong></td>\n"
  3628. " <td>&nbsp;Move Geo Item</td>\n"
  3629. " </tr>\n"
  3630. " <tr height=\"20\">\n"
  3631. " <td height=\"20\"><strong>N</strong></td>\n"
  3632. " <td>&nbsp;Draw a Polygon</td>\n"
  3633. " </tr>\n"
  3634. " <tr height=\"20\">\n"
  3635. " <td height=\"20\"><strong>O</strong></td>\n"
  3636. " <td>&nbsp;Draw a Circle</td>\n"
  3637. " </tr>\n"
  3638. " <tr height=\"20\">\n"
  3639. " <td height=\"20\"><strong>P</strong></td>\n"
  3640. " <td>&nbsp;Draw a Path</td>\n"
  3641. " </tr>\n"
  3642. " <tr height=\"20\">\n"
  3643. " <td height=\"20\"><strong>R</strong></td>\n"
  3644. " <td>&nbsp;Draw Rectangle</td>\n"
  3645. " </tr>\n"
  3646. " <tr height=\"20\">\n"
  3647. " <td height=\"20\"><strong>S</strong></td>\n"
  3648. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  3649. " </tr>\n"
  3650. " <tr height=\"20\">\n"
  3651. " <td height=\"20\"><strong>T</strong></td>\n"
  3652. " <td>&nbsp;Add Text Tool</td>\n"
  3653. " </tr>\n"
  3654. " <tr height=\"20\">\n"
  3655. " <td height=\"20\"><strong>U</strong></td>\n"
  3656. " <td>&nbsp;Polygon Union Tool</td>\n"
  3657. " </tr>\n"
  3658. " <tr height=\"20\">\n"
  3659. " <td height=\"20\"><strong>X</strong></td>\n"
  3660. " <td>&nbsp;Flip shape on X axis</td>\n"
  3661. " </tr>\n"
  3662. " <tr height=\"20\">\n"
  3663. " <td height=\"20\"><strong>Y</strong></td>\n"
  3664. " <td>&nbsp;Flip shape on Y axis</td>\n"
  3665. " </tr>\n"
  3666. " <tr height=\"20\">\n"
  3667. " <td height=\"20\">&nbsp;</td>\n"
  3668. " <td>&nbsp;</td>\n"
  3669. " </tr>\n"
  3670. " <tr height=\"20\">\n"
  3671. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3672. " <td>&nbsp;Skew shape on X axis</td>\n"
  3673. " </tr>\n"
  3674. " <tr height=\"20\">\n"
  3675. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3676. " <td>&nbsp;Skew shape on Y axis</td>\n"
  3677. " </tr>\n"
  3678. " <tr height=\"20\">\n"
  3679. " <td height=\"20\">&nbsp;</td>\n"
  3680. " <td>&nbsp;</td>\n"
  3681. " </tr>\n"
  3682. " <tr height=\"20\">\n"
  3683. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3684. " <td>&nbsp;Editor Transformation Tool</td>\n"
  3685. " </tr>\n"
  3686. " <tr height=\"20\">\n"
  3687. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  3688. " <td>&nbsp;Offset shape on X axis</td>\n"
  3689. " </tr>\n"
  3690. " <tr height=\"20\">\n"
  3691. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  3692. " <td>&nbsp;Offset shape on Y axis</td>\n"
  3693. " </tr>\n"
  3694. " <tr height=\"20\">\n"
  3695. " <td height=\"20\">&nbsp;</td>\n"
  3696. " <td>&nbsp;</td>\n"
  3697. " </tr>\n"
  3698. " <tr height=\"20\">\n"
  3699. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3700. " <td>&nbsp;Measurement Tool</td>\n"
  3701. " </tr>\n"
  3702. " <tr height=\"20\">\n"
  3703. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3704. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3705. " </tr>\n"
  3706. " <tr height=\"20\">\n"
  3707. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  3708. " <td>&nbsp;Polygon Cut Tool</td>\n"
  3709. " </tr>\n"
  3710. " <tr height=\"20\">\n"
  3711. " <td height=\"20\">&nbsp;</td>\n"
  3712. " <td>&nbsp;</td>\n"
  3713. " </tr>\n"
  3714. " <tr height=\"20\">\n"
  3715. " <td height=\"20\"><strong>Space</strong></td>\n"
  3716. " <td>&nbsp;Rotate Geometry</td>\n"
  3717. " </tr>\n"
  3718. " <tr height=\"20\">\n"
  3719. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  3720. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  3721. " </tr>\n"
  3722. " <tr height=\"20\">\n"
  3723. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3724. " <td>&nbsp;Abort and return to Select</td>\n"
  3725. " </tr>\n"
  3726. " <tr height=\"20\">\n"
  3727. " <td height=\"20\"><strong>Del</strong></td>\n"
  3728. " <td>&nbsp;Delete Shape</td>\n"
  3729. " </tr>\n"
  3730. " </tbody>\n"
  3731. " </table>\n"
  3732. " <br>\n"
  3733. " <br>\n"
  3734. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  3735. "strong><br>\n"
  3736. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3737. "\"width:283px\">\n"
  3738. " <tbody>\n"
  3739. " <tr height=\"20\">\n"
  3740. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3741. "td>\n"
  3742. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  3743. " </tr>\n"
  3744. " <tr height=\"20\">\n"
  3745. " <td height=\"20\"><strong>C</strong></td>\n"
  3746. " <td>&nbsp;Copy Drill(s)</td>\n"
  3747. " </tr>\n"
  3748. " <tr height=\"20\">\n"
  3749. " <td height=\"20\"><strong>D</strong></td>\n"
  3750. " <td>&nbsp;Add Drill</td>\n"
  3751. " </tr>\n"
  3752. " <tr height=\"20\">\n"
  3753. " <td height=\"20\"><strong>J</strong></td>\n"
  3754. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3755. " </tr>\n"
  3756. " <tr height=\"20\">\n"
  3757. " <td height=\"20\"><strong>M</strong></td>\n"
  3758. " <td>&nbsp;Move Drill(s)</td>\n"
  3759. " </tr>\n"
  3760. " <tr height=\"20\">\n"
  3761. " <td height=\"20\"><strong>R</strong></td>\n"
  3762. " <td>&nbsp;Resize Drill(s)</td>\n"
  3763. " </tr>\n"
  3764. " <tr height=\"20\">\n"
  3765. " <td height=\"20\"><strong>T</strong></td>\n"
  3766. " <td>&nbsp;Add a new Tool</td>\n"
  3767. " </tr>\n"
  3768. " <tr height=\"20\">\n"
  3769. " <td height=\"20\">&nbsp;</td>\n"
  3770. " <td>&nbsp;</td>\n"
  3771. " </tr>\n"
  3772. " <tr height=\"20\">\n"
  3773. " <td height=\"20\"><strong>Del</strong></td>\n"
  3774. " <td>&nbsp;Delete Drill(s)</td>\n"
  3775. " </tr>\n"
  3776. " <tr height=\"20\">\n"
  3777. " <td height=\"20\"><strong>Del</strong></td>\n"
  3778. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  3779. " </tr>\n"
  3780. " <tr height=\"20\">\n"
  3781. " <td height=\"20\">&nbsp;</td>\n"
  3782. " <td>&nbsp;</td>\n"
  3783. " </tr>\n"
  3784. " <tr height=\"20\">\n"
  3785. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3786. " <td>&nbsp;Abort and return to Select</td>\n"
  3787. " </tr>\n"
  3788. " <tr height=\"20\">\n"
  3789. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3790. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3791. " </tr>\n"
  3792. " </tbody>\n"
  3793. " </table>\n"
  3794. " "
  3795. #: flatcamGUI/FlatCAMGUI.py:1358
  3796. msgid "Disable"
  3797. msgstr "Disable"
  3798. #: flatcamGUI/FlatCAMGUI.py:1360
  3799. msgid "New"
  3800. msgstr "New"
  3801. #: flatcamGUI/FlatCAMGUI.py:1361
  3802. msgid "Geometry"
  3803. msgstr "Geometry"
  3804. #: flatcamGUI/FlatCAMGUI.py:1362
  3805. msgid "Excellon"
  3806. msgstr "Excellon"
  3807. #: flatcamGUI/FlatCAMGUI.py:1367
  3808. msgid "Grids"
  3809. msgstr "Grids"
  3810. #: flatcamGUI/FlatCAMGUI.py:1369
  3811. msgid "View"
  3812. msgstr "View"
  3813. #: flatcamGUI/FlatCAMGUI.py:1371
  3814. msgid "Clear Plot"
  3815. msgstr "Clear Plot"
  3816. #: flatcamGUI/FlatCAMGUI.py:1372
  3817. msgid "Replot"
  3818. msgstr "Replot"
  3819. #: flatcamGUI/FlatCAMGUI.py:1375
  3820. msgid "Geo Editor"
  3821. msgstr "Geo Editor"
  3822. #: flatcamGUI/FlatCAMGUI.py:1376
  3823. msgid "Line"
  3824. msgstr "Line"
  3825. #: flatcamGUI/FlatCAMGUI.py:1377
  3826. msgid "Rectangle"
  3827. msgstr "Rectangle"
  3828. #: flatcamGUI/FlatCAMGUI.py:1378 flatcamGUI/FlatCAMGUI.py:4590
  3829. #: flatcamGUI/ObjectUI.py:1431
  3830. msgid "Cut"
  3831. msgstr "Cut"
  3832. #: flatcamGUI/FlatCAMGUI.py:1380 flatcamGUI/FlatCAMGUI.py:1395
  3833. #: flatcamTools/ToolMove.py:26
  3834. msgid "Move"
  3835. msgstr "Move"
  3836. #: flatcamGUI/FlatCAMGUI.py:1382
  3837. msgid "Exc Editor"
  3838. msgstr "Exc Editor"
  3839. #: flatcamGUI/FlatCAMGUI.py:1383
  3840. msgid "Add Drill"
  3841. msgstr "Add Drill"
  3842. #: flatcamGUI/FlatCAMGUI.py:1385
  3843. msgid "Copy Drill(s)"
  3844. msgstr "Copy Drill(s)"
  3845. #: flatcamGUI/FlatCAMGUI.py:1391
  3846. msgid "Save && Close Edit"
  3847. msgstr "Save && Close Edit"
  3848. #: flatcamGUI/FlatCAMGUI.py:1416
  3849. msgid "Print Preview"
  3850. msgstr "Print Preview"
  3851. #: flatcamGUI/FlatCAMGUI.py:1417
  3852. msgid "Print Code"
  3853. msgstr "Print Code"
  3854. #: flatcamGUI/FlatCAMGUI.py:1418
  3855. msgid "Find in Code"
  3856. msgstr "Find in Code"
  3857. #: flatcamGUI/FlatCAMGUI.py:1423
  3858. msgid "Replace With"
  3859. msgstr "Replace With"
  3860. #: flatcamGUI/FlatCAMGUI.py:1427 flatcamGUI/FlatCAMGUI.py:4588
  3861. #: flatcamGUI/FlatCAMGUI.py:5089 flatcamGUI/ObjectUI.py:1429
  3862. msgid "All"
  3863. msgstr "All"
  3864. #: flatcamGUI/FlatCAMGUI.py:1429
  3865. msgid ""
  3866. "When checked it will replace all instances in the 'Find' box\n"
  3867. "with the text in the 'Replace' box.."
  3868. msgstr ""
  3869. "When checked it will replace all instances in the 'Find' box\n"
  3870. "with the text in the 'Replace' box.."
  3871. #: flatcamGUI/FlatCAMGUI.py:1432
  3872. msgid "Open Code"
  3873. msgstr "Open Code"
  3874. #: flatcamGUI/FlatCAMGUI.py:1433
  3875. msgid "Save Code"
  3876. msgstr "Save Code"
  3877. #: flatcamGUI/FlatCAMGUI.py:1468
  3878. msgid ""
  3879. "Relative neasurement.\n"
  3880. "Reference is last click position"
  3881. msgstr ""
  3882. "Relative neasurement.\n"
  3883. "Reference is last click position"
  3884. #: flatcamGUI/FlatCAMGUI.py:1474
  3885. msgid ""
  3886. "Absolute neasurement.\n"
  3887. "Reference is (X=0, Y= 0) position"
  3888. msgstr ""
  3889. "Absolute neasurement.\n"
  3890. "Reference is (X=0, Y= 0) position"
  3891. #: flatcamGUI/FlatCAMGUI.py:1641
  3892. msgid "Add Drill Hole Array"
  3893. msgstr "Add Drill Hole Array"
  3894. #: flatcamGUI/FlatCAMGUI.py:1653
  3895. msgid "Select 'Esc'"
  3896. msgstr "Select 'Esc'"
  3897. #: flatcamGUI/FlatCAMGUI.py:1678
  3898. msgid "Copy Objects"
  3899. msgstr "Copy Objects"
  3900. #: flatcamGUI/FlatCAMGUI.py:1680
  3901. msgid "Delete Shape"
  3902. msgstr "Delete Shape"
  3903. #: flatcamGUI/FlatCAMGUI.py:1685
  3904. msgid "Move Objects"
  3905. msgstr "Move Objects"
  3906. #: flatcamGUI/FlatCAMGUI.py:2060
  3907. msgid ""
  3908. "Please first select a geometry item to be cutted\n"
  3909. "then select the geometry item that will be cutted\n"
  3910. "out of the first item. In the end press ~X~ key or\n"
  3911. "the toolbar button."
  3912. msgstr ""
  3913. "Please first select a geometry item to be cutted\n"
  3914. "then select the geometry item that will be cutted\n"
  3915. "out of the first item. In the end press ~X~ key or\n"
  3916. "the toolbar button."
  3917. #: flatcamGUI/FlatCAMGUI.py:2067 flatcamGUI/FlatCAMGUI.py:2199
  3918. #: flatcamGUI/FlatCAMGUI.py:2258 flatcamGUI/FlatCAMGUI.py:2278
  3919. msgid "Warning"
  3920. msgstr "Warning"
  3921. #: flatcamGUI/FlatCAMGUI.py:2134 flatcamGUI/FlatCAMGUI.py:2328
  3922. msgid "[WARNING_NOTCL]Cancelled."
  3923. msgstr "[WARNING_NOTCL]Cancelled."
  3924. #: flatcamGUI/FlatCAMGUI.py:2194
  3925. msgid ""
  3926. "Please select geometry items \n"
  3927. "on which to perform Intersection Tool."
  3928. msgstr ""
  3929. "Please select geometry items \n"
  3930. "on which to perform Intersection Tool."
  3931. #: flatcamGUI/FlatCAMGUI.py:2253
  3932. msgid ""
  3933. "Please select geometry items \n"
  3934. "on which to perform Substraction Tool."
  3935. msgstr ""
  3936. "Please select geometry items \n"
  3937. "on which to perform Substraction Tool."
  3938. #: flatcamGUI/FlatCAMGUI.py:2273
  3939. msgid ""
  3940. "Please select geometry items \n"
  3941. "on which to perform union."
  3942. msgstr ""
  3943. "Please select geometry items \n"
  3944. "on which to perform union."
  3945. #: flatcamGUI/FlatCAMGUI.py:2345
  3946. msgid "[WARNING_NOTCL]Cancelled. Nothing selected to delete."
  3947. msgstr "[WARNING_NOTCL]Cancelled. Nothing selected to delete."
  3948. #: flatcamGUI/FlatCAMGUI.py:2412
  3949. msgid "[WARNING_NOTCL]Cancelled. Nothing selected to copy."
  3950. msgstr "[WARNING_NOTCL]Cancelled. Nothing selected to copy."
  3951. #: flatcamGUI/FlatCAMGUI.py:2458
  3952. msgid "[WARNING_NOTCL]Cancelled. Nothing selected to move."
  3953. msgstr "[WARNING_NOTCL]Cancelled. Nothing selected to move."
  3954. #: flatcamGUI/FlatCAMGUI.py:2472
  3955. msgid "New Tool ..."
  3956. msgstr "New Tool ..."
  3957. #: flatcamGUI/FlatCAMGUI.py:2473
  3958. msgid "Enter a Tool Diameter:"
  3959. msgstr "Enter a Tool Diameter:"
  3960. #: flatcamGUI/FlatCAMGUI.py:2772
  3961. msgid "Grid X value:"
  3962. msgstr "Grid X value:"
  3963. #: flatcamGUI/FlatCAMGUI.py:2774
  3964. msgid "This is the Grid snap value on X axis."
  3965. msgstr "This is the Grid snap value on X axis."
  3966. #: flatcamGUI/FlatCAMGUI.py:2779
  3967. msgid "Grid Y value:"
  3968. msgstr "Grid Y value:"
  3969. #: flatcamGUI/FlatCAMGUI.py:2781
  3970. msgid "This is the Grid snap value on Y axis."
  3971. msgstr "This is the Grid snap value on Y axis."
  3972. #: flatcamGUI/FlatCAMGUI.py:2786
  3973. msgid "Snap Max:"
  3974. msgstr "Snap Max:"
  3975. #: flatcamGUI/FlatCAMGUI.py:2791
  3976. msgid "Workspace:"
  3977. msgstr "Workspace:"
  3978. #: flatcamGUI/FlatCAMGUI.py:2793
  3979. msgid ""
  3980. "Draw a delimiting rectangle on canvas.\n"
  3981. "The purpose is to illustrate the limits for our work."
  3982. msgstr ""
  3983. "Draw a delimiting rectangle on canvas.\n"
  3984. "The purpose is to illustrate the limits for our work."
  3985. #: flatcamGUI/FlatCAMGUI.py:2796
  3986. msgid "Wk. format:"
  3987. msgstr "Wk. format:"
  3988. #: flatcamGUI/FlatCAMGUI.py:2798
  3989. msgid ""
  3990. "Select the type of rectangle to be used on canvas,\n"
  3991. "as valid workspace."
  3992. msgstr ""
  3993. "Select the type of rectangle to be used on canvas,\n"
  3994. "as valid workspace."
  3995. #: flatcamGUI/FlatCAMGUI.py:2811
  3996. msgid "Plot Fill:"
  3997. msgstr "Plot Fill:"
  3998. #: flatcamGUI/FlatCAMGUI.py:2813
  3999. msgid ""
  4000. "Set the fill color for plotted objects.\n"
  4001. "First 6 digits are the color and the last 2\n"
  4002. "digits are for alpha (transparency) level."
  4003. msgstr ""
  4004. "Set the fill color for plotted objects.\n"
  4005. "First 6 digits are the color and the last 2\n"
  4006. "digits are for alpha (transparency) level."
  4007. #: flatcamGUI/FlatCAMGUI.py:2827 flatcamGUI/FlatCAMGUI.py:2877
  4008. #: flatcamGUI/FlatCAMGUI.py:2927
  4009. msgid "Alpha Level:"
  4010. msgstr "Alpha Level:"
  4011. #: flatcamGUI/FlatCAMGUI.py:2829
  4012. msgid "Set the fill transparency for plotted objects."
  4013. msgstr "Set the fill transparency for plotted objects."
  4014. #: flatcamGUI/FlatCAMGUI.py:2846
  4015. msgid "Plot Line:"
  4016. msgstr "Plot Line:"
  4017. #: flatcamGUI/FlatCAMGUI.py:2848
  4018. msgid "Set the line color for plotted objects."
  4019. msgstr "Set the line color for plotted objects."
  4020. #: flatcamGUI/FlatCAMGUI.py:2860
  4021. msgid "Sel. Fill:"
  4022. msgstr "Sel. Fill:"
  4023. #: flatcamGUI/FlatCAMGUI.py:2862
  4024. msgid ""
  4025. "Set the fill color for the selection box\n"
  4026. "in case that the selection is done from left to right.\n"
  4027. "First 6 digits are the color and the last 2\n"
  4028. "digits are for alpha (transparency) level."
  4029. msgstr ""
  4030. "Set the fill color for the selection box\n"
  4031. "in case that the selection is done from left to right.\n"
  4032. "First 6 digits are the color and the last 2\n"
  4033. "digits are for alpha (transparency) level."
  4034. #: flatcamGUI/FlatCAMGUI.py:2879
  4035. msgid "Set the fill transparency for the 'left to right' selection box."
  4036. msgstr "Set the fill transparency for the 'left to right' selection box."
  4037. #: flatcamGUI/FlatCAMGUI.py:2896
  4038. msgid "Sel. Line:"
  4039. msgstr "Sel. Line:"
  4040. #: flatcamGUI/FlatCAMGUI.py:2898
  4041. msgid "Set the line color for the 'left to right' selection box."
  4042. msgstr "Set the line color for the 'left to right' selection box."
  4043. #: flatcamGUI/FlatCAMGUI.py:2910
  4044. msgid "Sel2. Fill:"
  4045. msgstr "Sel2. Fill:"
  4046. #: flatcamGUI/FlatCAMGUI.py:2912
  4047. msgid ""
  4048. "Set the fill color for the selection box\n"
  4049. "in case that the selection is done from right to left.\n"
  4050. "First 6 digits are the color and the last 2\n"
  4051. "digits are for alpha (transparency) level."
  4052. msgstr ""
  4053. "Set the fill color for the selection box\n"
  4054. "in case that the selection is done from right to left.\n"
  4055. "First 6 digits are the color and the last 2\n"
  4056. "digits are for alpha (transparency) level."
  4057. #: flatcamGUI/FlatCAMGUI.py:2929
  4058. msgid "Set the fill transparency for selection 'right to left' box."
  4059. msgstr "Set the fill transparency for selection 'right to left' box."
  4060. #: flatcamGUI/FlatCAMGUI.py:2946
  4061. msgid "Sel2. Line:"
  4062. msgstr "Sel2. Line:"
  4063. #: flatcamGUI/FlatCAMGUI.py:2948
  4064. msgid "Set the line color for the 'right to left' selection box."
  4065. msgstr "Set the line color for the 'right to left' selection box."
  4066. #: flatcamGUI/FlatCAMGUI.py:2960
  4067. msgid "Editor Draw:"
  4068. msgstr "Editor Draw:"
  4069. #: flatcamGUI/FlatCAMGUI.py:2962
  4070. msgid "Set the color for the shape."
  4071. msgstr "Set the color for the shape."
  4072. #: flatcamGUI/FlatCAMGUI.py:2974
  4073. msgid "Editor Draw Sel.:"
  4074. msgstr "Editor Draw Sel.:"
  4075. #: flatcamGUI/FlatCAMGUI.py:2976
  4076. msgid "Set the color of the shape when selected."
  4077. msgstr "Set the color of the shape when selected."
  4078. #: flatcamGUI/FlatCAMGUI.py:3023
  4079. msgid "GUI Settings"
  4080. msgstr "GUI Settings"
  4081. #: flatcamGUI/FlatCAMGUI.py:3030
  4082. msgid "Layout:"
  4083. msgstr "Layout:"
  4084. #: flatcamGUI/FlatCAMGUI.py:3032
  4085. msgid ""
  4086. "Select an layout for FlatCAM.\n"
  4087. "It is applied immediately."
  4088. msgstr ""
  4089. "Select an layout for FlatCAM.\n"
  4090. "It is applied immediately."
  4091. #: flatcamGUI/FlatCAMGUI.py:3048
  4092. msgid "Style:"
  4093. msgstr "Style:"
  4094. #: flatcamGUI/FlatCAMGUI.py:3050
  4095. msgid ""
  4096. "Select an style for FlatCAM.\n"
  4097. "It will be applied at the next app start."
  4098. msgstr ""
  4099. "Select an style for FlatCAM.\n"
  4100. "It will be applied at the next app start."
  4101. #: flatcamGUI/FlatCAMGUI.py:3061
  4102. msgid "HDPI Support:"
  4103. msgstr "HDPI Support:"
  4104. #: flatcamGUI/FlatCAMGUI.py:3063
  4105. msgid ""
  4106. "Enable High DPI support for FlatCAM.\n"
  4107. "It will be applied at the next app start."
  4108. msgstr ""
  4109. "Enable High DPI support for FlatCAM.\n"
  4110. "It will be applied at the next app start."
  4111. #: flatcamGUI/FlatCAMGUI.py:3076
  4112. msgid "Clear GUI Settings:"
  4113. msgstr "Clear GUI Settings:"
  4114. #: flatcamGUI/FlatCAMGUI.py:3078
  4115. msgid ""
  4116. "Clear the GUI settings for FlatCAM,\n"
  4117. "such as: layout, gui state, style, hdpi support etc."
  4118. msgstr ""
  4119. "Clear the GUI settings for FlatCAM,\n"
  4120. "such as: layout, gui state, style, hdpi support etc."
  4121. #: flatcamGUI/FlatCAMGUI.py:3081
  4122. msgid "Clear"
  4123. msgstr "Clear"
  4124. #: flatcamGUI/FlatCAMGUI.py:3085
  4125. msgid "Hover Shape:"
  4126. msgstr "Hover Shape:"
  4127. #: flatcamGUI/FlatCAMGUI.py:3087
  4128. msgid ""
  4129. "Enable display of a hover shape for FlatCAM objects.\n"
  4130. "It is displayed whenever the mouse cursor is hovering\n"
  4131. "over any kind of not-selected object."
  4132. msgstr ""
  4133. "Enable display of a hover shape for FlatCAM objects.\n"
  4134. "It is displayed whenever the mouse cursor is hovering\n"
  4135. "over any kind of not-selected object."
  4136. #: flatcamGUI/FlatCAMGUI.py:3128
  4137. msgid "Are you sure you want to delete the GUI Settings? \n"
  4138. msgstr "Are you sure you want to delete the GUI Settings? \n"
  4139. #: flatcamGUI/FlatCAMGUI.py:3131
  4140. msgid "Clear GUI Settings"
  4141. msgstr "Clear GUI Settings"
  4142. #: flatcamGUI/FlatCAMGUI.py:3144
  4143. msgid "[success] GUI settings deleted ..."
  4144. msgstr "[success] GUI settings deleted ..."
  4145. #: flatcamGUI/FlatCAMGUI.py:3151
  4146. msgid "App Preferences"
  4147. msgstr "App Preferences"
  4148. #: flatcamGUI/FlatCAMGUI.py:3157
  4149. msgid "<b>Units:</b>"
  4150. msgstr "<b>Units:</b>"
  4151. #: flatcamGUI/FlatCAMGUI.py:3158
  4152. msgid ""
  4153. "The default value for FlatCAM units.\n"
  4154. "Whatever is selected here is set every time\n"
  4155. "FLatCAM is started."
  4156. msgstr ""
  4157. "The default value for FlatCAM units.\n"
  4158. "Whatever is selected here is set every time\n"
  4159. "FLatCAM is started."
  4160. #: flatcamGUI/FlatCAMGUI.py:3165
  4161. msgid "<b>APP. LEVEL:</b>"
  4162. msgstr "<b>APP. LEVEL:</b>"
  4163. #: flatcamGUI/FlatCAMGUI.py:3166
  4164. msgid ""
  4165. "Choose the default level of usage for FlatCAM.\n"
  4166. "BASIC level -> reduced functionality, best for beginner's.\n"
  4167. "ADVANCED level -> full functionality.\n"
  4168. "\n"
  4169. "The choice here will influence the parameters in\n"
  4170. "the Selected Tab for all kinds of FlatCAM objects."
  4171. msgstr ""
  4172. "Choose the default level of usage for FlatCAM.\n"
  4173. "BASIC level -> reduced functionality, best for beginner's.\n"
  4174. "ADVANCED level -> full functionality.\n"
  4175. "\n"
  4176. "The choice here will influence the parameters in\n"
  4177. "the Selected Tab for all kinds of FlatCAM objects."
  4178. #: flatcamGUI/FlatCAMGUI.py:3171 flatcamGUI/FlatCAMGUI.py:3775
  4179. msgid "Basic"
  4180. msgstr "Basic"
  4181. #: flatcamGUI/FlatCAMGUI.py:3172
  4182. msgid "Advanced"
  4183. msgstr "Advanced"
  4184. #: flatcamGUI/FlatCAMGUI.py:3175
  4185. msgid "<b>Languages:</b>"
  4186. msgstr "<b>Languages:</b>"
  4187. #: flatcamGUI/FlatCAMGUI.py:3176
  4188. msgid "Set the language used throughout FlatCAM."
  4189. msgstr "Set the language used throughout FlatCAM."
  4190. #: flatcamGUI/FlatCAMGUI.py:3179
  4191. msgid "Apply Language"
  4192. msgstr "Apply Language"
  4193. #: flatcamGUI/FlatCAMGUI.py:3182
  4194. msgid "Shell at StartUp:"
  4195. msgstr "Shell at StartUp:"
  4196. #: flatcamGUI/FlatCAMGUI.py:3184 flatcamGUI/FlatCAMGUI.py:3189
  4197. msgid ""
  4198. "Check this box if you want the shell to\n"
  4199. "start automatically at startup."
  4200. msgstr ""
  4201. "Check this box if you want the shell to\n"
  4202. "start automatically at startup."
  4203. #: flatcamGUI/FlatCAMGUI.py:3194
  4204. msgid "Version Check:"
  4205. msgstr "Version Check:"
  4206. #: flatcamGUI/FlatCAMGUI.py:3196 flatcamGUI/FlatCAMGUI.py:3201
  4207. msgid ""
  4208. "Check this box if you want to check\n"
  4209. "for a new version automatically at startup."
  4210. msgstr ""
  4211. "Check this box if you want to check\n"
  4212. "for a new version automatically at startup."
  4213. #: flatcamGUI/FlatCAMGUI.py:3206
  4214. msgid "Send Stats:"
  4215. msgstr "Send Stats:"
  4216. #: flatcamGUI/FlatCAMGUI.py:3208 flatcamGUI/FlatCAMGUI.py:3213
  4217. msgid ""
  4218. "Check this box if you agree to send anonymous\n"
  4219. "stats automatically at startup, to help improve FlatCAM."
  4220. msgstr ""
  4221. "Check this box if you agree to send anonymous\n"
  4222. "stats automatically at startup, to help improve FlatCAM."
  4223. #: flatcamGUI/FlatCAMGUI.py:3220
  4224. msgid "<b>Pan Button:</b>"
  4225. msgstr "<b>Pan Button:</b>"
  4226. #: flatcamGUI/FlatCAMGUI.py:3221
  4227. msgid ""
  4228. "Select the mouse button to use for panning:\n"
  4229. "- MMB --> Middle Mouse Button\n"
  4230. "- RMB --> Right Mouse Button"
  4231. msgstr ""
  4232. "Select the mouse button to use for panning:\n"
  4233. "- MMB --> Middle Mouse Button\n"
  4234. "- RMB --> Right Mouse Button"
  4235. #: flatcamGUI/FlatCAMGUI.py:3224
  4236. msgid "MMB"
  4237. msgstr "MMB"
  4238. #: flatcamGUI/FlatCAMGUI.py:3225
  4239. msgid "RMB"
  4240. msgstr "RMB"
  4241. #: flatcamGUI/FlatCAMGUI.py:3228
  4242. msgid "<b>Multiple Sel:</b>"
  4243. msgstr "<b>Multiple Sel:</b>"
  4244. #: flatcamGUI/FlatCAMGUI.py:3229
  4245. msgid "Select the key used for multiple selection."
  4246. msgstr "Select the key used for multiple selection."
  4247. #: flatcamGUI/FlatCAMGUI.py:3230
  4248. msgid "CTRL"
  4249. msgstr "CTRL"
  4250. #: flatcamGUI/FlatCAMGUI.py:3231
  4251. msgid "SHIFT"
  4252. msgstr "SHIFT"
  4253. #: flatcamGUI/FlatCAMGUI.py:3234
  4254. msgid "Project at StartUp:"
  4255. msgstr "Project at StartUp:"
  4256. #: flatcamGUI/FlatCAMGUI.py:3236 flatcamGUI/FlatCAMGUI.py:3241
  4257. msgid ""
  4258. "Check this box if you want the project/selected/tool tab area to\n"
  4259. "to be shown automatically at startup."
  4260. msgstr ""
  4261. "Check this box if you want the project/selected/tool tab area to\n"
  4262. "to be shown automatically at startup."
  4263. #: flatcamGUI/FlatCAMGUI.py:3246
  4264. msgid "Project AutoHide:"
  4265. msgstr "Project AutoHide:"
  4266. #: flatcamGUI/FlatCAMGUI.py:3248 flatcamGUI/FlatCAMGUI.py:3254
  4267. msgid ""
  4268. "Check this box if you want the project/selected/tool tab area to\n"
  4269. "hide automatically when there are no objects loaded and\n"
  4270. "to show whenever a new object is created."
  4271. msgstr ""
  4272. "Check this box if you want the project/selected/tool tab area to\n"
  4273. "hide automatically when there are no objects loaded and\n"
  4274. "to show whenever a new object is created."
  4275. #: flatcamGUI/FlatCAMGUI.py:3260
  4276. msgid "<b>Enable ToolTips:</b>"
  4277. msgstr "<b>Enable ToolTips:</b>"
  4278. #: flatcamGUI/FlatCAMGUI.py:3262 flatcamGUI/FlatCAMGUI.py:3267
  4279. msgid ""
  4280. "Check this box if you want to have toolTips displayed\n"
  4281. "when hovering with mouse over items throughout the App."
  4282. msgstr ""
  4283. "Check this box if you want to have toolTips displayed\n"
  4284. "when hovering with mouse over items throughout the App."
  4285. #: flatcamGUI/FlatCAMGUI.py:3301
  4286. msgid "Save Compressed Project"
  4287. msgstr "Save Compressed Project"
  4288. #: flatcamGUI/FlatCAMGUI.py:3303
  4289. msgid ""
  4290. "Whether to save a compressed or uncompressed project.\n"
  4291. "When checked it will save a compressed FlatCAM project."
  4292. msgstr ""
  4293. "Whether to save a compressed or uncompressed project.\n"
  4294. "When checked it will save a compressed FlatCAM project."
  4295. #: flatcamGUI/FlatCAMGUI.py:3314
  4296. msgid "Compression Level:"
  4297. msgstr "Compression Level:"
  4298. #: flatcamGUI/FlatCAMGUI.py:3316
  4299. msgid ""
  4300. "The level of compression used when saving\n"
  4301. "a FlatCAM project. Higher value means better compression\n"
  4302. "but require more RAM usage and more processing time."
  4303. msgstr ""
  4304. "The level of compression used when saving\n"
  4305. "a FlatCAM project. Higher value means better compression\n"
  4306. "but require more RAM usage and more processing time."
  4307. #: flatcamGUI/FlatCAMGUI.py:3342 flatcamGUI/FlatCAMGUI.py:3583
  4308. #: flatcamGUI/FlatCAMGUI.py:4238 flatcamGUI/FlatCAMGUI.py:4562
  4309. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:576
  4310. #: flatcamGUI/ObjectUI.py:901 flatcamGUI/ObjectUI.py:1415
  4311. msgid "<b>Plot Options:</b>"
  4312. msgstr "<b>Plot Options:</b>"
  4313. #: flatcamGUI/FlatCAMGUI.py:3349 flatcamGUI/FlatCAMGUI.py:3595
  4314. #: flatcamGUI/ObjectUI.py:577
  4315. msgid "Solid"
  4316. msgstr "Solid"
  4317. #: flatcamGUI/FlatCAMGUI.py:3351 flatcamGUI/ObjectUI.py:158
  4318. msgid "Solid color polygons."
  4319. msgstr "Solid color polygons."
  4320. #: flatcamGUI/FlatCAMGUI.py:3356
  4321. msgid "M-Color"
  4322. msgstr "M-Color"
  4323. #: flatcamGUI/FlatCAMGUI.py:3358 flatcamGUI/ObjectUI.py:166
  4324. msgid "Draw polygons in different colors."
  4325. msgstr "Draw polygons in different colors."
  4326. #: flatcamGUI/FlatCAMGUI.py:3363 flatcamGUI/FlatCAMGUI.py:3589
  4327. #: flatcamGUI/FlatCAMGUI.py:4242 flatcamGUI/ObjectUI.py:172
  4328. msgid "Plot"
  4329. msgstr "Plot"
  4330. #: flatcamGUI/FlatCAMGUI.py:3365 flatcamGUI/FlatCAMGUI.py:4244
  4331. #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:617
  4332. #: flatcamGUI/ObjectUI.py:947 flatcamGUI/ObjectUI.py:1502
  4333. msgid "Plot (show) this object."
  4334. msgstr "Plot (show) this object."
  4335. #: flatcamGUI/FlatCAMGUI.py:3370 flatcamGUI/FlatCAMGUI.py:4251
  4336. #: flatcamGUI/FlatCAMGUI.py:4598
  4337. msgid "Circle Steps:"
  4338. msgstr "Circle Steps:"
  4339. #: flatcamGUI/FlatCAMGUI.py:3372
  4340. msgid ""
  4341. "The number of circle steps for Gerber \n"
  4342. "circular aperture linear approximation."
  4343. msgstr ""
  4344. "The number of circle steps for Gerber \n"
  4345. "circular aperture linear approximation."
  4346. #: flatcamGUI/FlatCAMGUI.py:3387
  4347. msgid "Gerber Options"
  4348. msgstr "Gerber Options"
  4349. #: flatcamGUI/FlatCAMGUI.py:3391 flatcamGUI/ObjectUI.py:322
  4350. msgid "<b>Isolation Routing:</b>"
  4351. msgstr "<b>Isolation Routing:</b>"
  4352. #: flatcamGUI/FlatCAMGUI.py:3393 flatcamGUI/ObjectUI.py:324
  4353. msgid ""
  4354. "Create a Geometry object with\n"
  4355. "toolpaths to cut outside polygons."
  4356. msgstr ""
  4357. "Create a Geometry object with\n"
  4358. "toolpaths to cut outside polygons."
  4359. #: flatcamGUI/FlatCAMGUI.py:3404 flatcamGUI/FlatCAMGUI.py:3961
  4360. #: flatcamGUI/FlatCAMGUI.py:4886 flatcamGUI/ObjectUI.py:856
  4361. #: flatcamGUI/ObjectUI.py:872
  4362. msgid "Diameter of the cutting tool."
  4363. msgstr "Diameter of the cutting tool."
  4364. #: flatcamGUI/FlatCAMGUI.py:3411
  4365. msgid "Width (# passes):"
  4366. msgstr "Width (# passes):"
  4367. #: flatcamGUI/FlatCAMGUI.py:3413 flatcamGUI/ObjectUI.py:346
  4368. msgid ""
  4369. "Width of the isolation gap in\n"
  4370. "number (integer) of tool widths."
  4371. msgstr ""
  4372. "Width of the isolation gap in\n"
  4373. "number (integer) of tool widths."
  4374. #: flatcamGUI/FlatCAMGUI.py:3421 flatcamGUI/ObjectUI.py:354
  4375. msgid "Pass overlap:"
  4376. msgstr "Pass overlap:"
  4377. #: flatcamGUI/FlatCAMGUI.py:3423 flatcamGUI/ObjectUI.py:356
  4378. #, python-format
  4379. msgid ""
  4380. "How much (fraction) of the tool width to overlap each tool pass.\n"
  4381. "Example:\n"
  4382. "A value here of 0.25 means an overlap of 25%% from the tool diameter found "
  4383. "above."
  4384. msgstr ""
  4385. "How much (fraction) of the tool width to overlap each tool pass.\n"
  4386. "Example:\n"
  4387. "A value here of 0.25 means an overlap of 25%% from the tool diameter found "
  4388. "above."
  4389. #: flatcamGUI/FlatCAMGUI.py:3431 flatcamGUI/ObjectUI.py:366
  4390. msgid "Milling Type:"
  4391. msgstr "Milling Type:"
  4392. #: flatcamGUI/FlatCAMGUI.py:3433 flatcamGUI/ObjectUI.py:368
  4393. msgid ""
  4394. "Milling type:\n"
  4395. "- climb / best for precision milling and to reduce tool usage\n"
  4396. "- conventional / useful when there is no backlash compensation"
  4397. msgstr ""
  4398. "Milling type:\n"
  4399. "- climb / best for precision milling and to reduce tool usage\n"
  4400. "- conventional / useful when there is no backlash compensation"
  4401. #: flatcamGUI/FlatCAMGUI.py:3438 flatcamGUI/ObjectUI.py:373
  4402. msgid "Climb"
  4403. msgstr "Climb"
  4404. #: flatcamGUI/FlatCAMGUI.py:3439 flatcamGUI/ObjectUI.py:374
  4405. msgid "Conv."
  4406. msgstr "Conv."
  4407. #: flatcamGUI/FlatCAMGUI.py:3443
  4408. msgid "Combine Passes"
  4409. msgstr "Combine Passes"
  4410. #: flatcamGUI/FlatCAMGUI.py:3445 flatcamGUI/ObjectUI.py:380
  4411. msgid "Combine all passes into one object"
  4412. msgstr "Combine all passes into one object"
  4413. #: flatcamGUI/FlatCAMGUI.py:3450
  4414. msgid "<b>Clear non-copper:</b>"
  4415. msgstr "<b>Clear non-copper:</b>"
  4416. #: flatcamGUI/FlatCAMGUI.py:3452 flatcamGUI/FlatCAMGUI.py:4774
  4417. #: flatcamGUI/ObjectUI.py:457
  4418. msgid ""
  4419. "Create a Geometry object with\n"
  4420. "toolpaths to cut all non-copper regions."
  4421. msgstr ""
  4422. "Create a Geometry object with\n"
  4423. "toolpaths to cut all non-copper regions."
  4424. #: flatcamGUI/FlatCAMGUI.py:3461 flatcamGUI/FlatCAMGUI.py:3487
  4425. #: flatcamGUI/ObjectUI.py:501 flatcamGUI/ObjectUI.py:535
  4426. msgid "Boundary Margin:"
  4427. msgstr "Boundary Margin:"
  4428. #: flatcamGUI/FlatCAMGUI.py:3463 flatcamGUI/ObjectUI.py:503
  4429. msgid ""
  4430. "Specify the edge of the PCB\n"
  4431. "by drawing a box around all\n"
  4432. "objects with this minimum\n"
  4433. "distance."
  4434. msgstr ""
  4435. "Specify the edge of the PCB\n"
  4436. "by drawing a box around all\n"
  4437. "objects with this minimum\n"
  4438. "distance."
  4439. #: flatcamGUI/FlatCAMGUI.py:3473 flatcamGUI/FlatCAMGUI.py:3496
  4440. msgid "Rounded corners"
  4441. msgstr "Rounded corners"
  4442. #: flatcamGUI/FlatCAMGUI.py:3475
  4443. msgid ""
  4444. "Creates a Geometry objects with polygons\n"
  4445. "covering the copper-free areas of the PCB."
  4446. msgstr ""
  4447. "Creates a Geometry objects with polygons\n"
  4448. "covering the copper-free areas of the PCB."
  4449. #: flatcamGUI/FlatCAMGUI.py:3481 flatcamGUI/ObjectUI.py:525
  4450. msgid "<b>Bounding Box:</b>"
  4451. msgstr "<b>Bounding Box:</b>"
  4452. #: flatcamGUI/FlatCAMGUI.py:3489 flatcamGUI/ObjectUI.py:537
  4453. msgid ""
  4454. "Distance of the edges of the box\n"
  4455. "to the nearest polygon."
  4456. msgstr ""
  4457. "Distance of the edges of the box\n"
  4458. "to the nearest polygon."
  4459. #: flatcamGUI/FlatCAMGUI.py:3498 flatcamGUI/ObjectUI.py:547
  4460. msgid ""
  4461. "If the bounding box is \n"
  4462. "to have rounded corners\n"
  4463. "their radius is equal to\n"
  4464. "the margin."
  4465. msgstr ""
  4466. "If the bounding box is \n"
  4467. "to have rounded corners\n"
  4468. "their radius is equal to\n"
  4469. "the margin."
  4470. #: flatcamGUI/FlatCAMGUI.py:3512
  4471. msgid "Gerber Adv. Options"
  4472. msgstr "Gerber Adv. Options"
  4473. #: flatcamGUI/FlatCAMGUI.py:3516
  4474. msgid "<b>Advanced Param.:</b>"
  4475. msgstr "<b>Advanced Param.:</b>"
  4476. #: flatcamGUI/FlatCAMGUI.py:3518
  4477. msgid ""
  4478. "A list of Gerber advanced parameters.\n"
  4479. "Those parameters are available only for\n"
  4480. "Advanced App. Level."
  4481. msgstr ""
  4482. "A list of Gerber advanced parameters.\n"
  4483. "Those parameters are available only for\n"
  4484. "Advanced App. Level."
  4485. #: flatcamGUI/FlatCAMGUI.py:3528 flatcamGUI/ObjectUI.py:385
  4486. msgid "\"Follow\""
  4487. msgstr "\"Follow\""
  4488. #: flatcamGUI/FlatCAMGUI.py:3530 flatcamGUI/ObjectUI.py:387
  4489. msgid ""
  4490. "Generate a 'Follow' geometry.\n"
  4491. "This means that it will cut through\n"
  4492. "the middle of the trace."
  4493. msgstr ""
  4494. "Generate a 'Follow' geometry.\n"
  4495. "This means that it will cut through\n"
  4496. "the middle of the trace."
  4497. #: flatcamGUI/FlatCAMGUI.py:3538
  4498. msgid "Table Show/Hide"
  4499. msgstr "Table Show/Hide"
  4500. #: flatcamGUI/FlatCAMGUI.py:3540
  4501. msgid ""
  4502. "Toggle the display of the Gerber Apertures Table.\n"
  4503. "Also, on hide, it will delete all mark shapes\n"
  4504. "that are drawn on canvas."
  4505. msgstr ""
  4506. "Toggle the display of the Gerber Apertures Table.\n"
  4507. "Also, on hide, it will delete all mark shapes\n"
  4508. "that are drawn on canvas."
  4509. #: flatcamGUI/FlatCAMGUI.py:3548
  4510. msgid "Ap. Scale Factor:"
  4511. msgstr "Ap. Scale Factor:"
  4512. #: flatcamGUI/FlatCAMGUI.py:3550 flatcamGUI/ObjectUI.py:254
  4513. msgid ""
  4514. "Change the size of the selected apertures.\n"
  4515. "Factor by which to multiply\n"
  4516. "geometric features of this object."
  4517. msgstr ""
  4518. "Change the size of the selected apertures.\n"
  4519. "Factor by which to multiply\n"
  4520. "geometric features of this object."
  4521. #: flatcamGUI/FlatCAMGUI.py:3560
  4522. msgid "Ap. Buffer Factor:"
  4523. msgstr "Ap. Buffer Factor:"
  4524. #: flatcamGUI/FlatCAMGUI.py:3562 flatcamGUI/ObjectUI.py:275
  4525. msgid ""
  4526. "Change the size of the selected apertures.\n"
  4527. "Factor by which to expand/shrink\n"
  4528. "geometric features of this object."
  4529. msgstr ""
  4530. "Change the size of the selected apertures.\n"
  4531. "Factor by which to expand/shrink\n"
  4532. "geometric features of this object."
  4533. #: flatcamGUI/FlatCAMGUI.py:3580
  4534. msgid "Excellon General"
  4535. msgstr "Excellon General"
  4536. #: flatcamGUI/FlatCAMGUI.py:3602
  4537. msgid "<b>Excellon Format:</b>"
  4538. msgstr "<b>Excellon Format:</b>"
  4539. #: flatcamGUI/FlatCAMGUI.py:3604
  4540. msgid ""
  4541. "The NC drill files, usually named Excellon files\n"
  4542. "are files that can be found in different formats.\n"
  4543. "Here we set the format used when the provided\n"
  4544. "coordinates are not using period.\n"
  4545. "\n"
  4546. "Possible presets:\n"
  4547. "\n"
  4548. "PROTEUS 3:3 MM LZ\n"
  4549. "DipTrace 5:2 MM TZ\n"
  4550. "DipTrace 4:3 MM LZ\n"
  4551. "\n"
  4552. "EAGLE 3:3 MM TZ\n"
  4553. "EAGLE 4:3 MM TZ\n"
  4554. "EAGLE 2:5 INCH TZ\n"
  4555. "EAGLE 3:5 INCH TZ\n"
  4556. "\n"
  4557. "ALTIUM 2:4 INCH LZ\n"
  4558. "Sprint Layout 2:4 INCH LZ\n"
  4559. "KiCAD 3:5 INCH TZ"
  4560. msgstr ""
  4561. "The NC drill files, usually named Excellon files\n"
  4562. "are files that can be found in different formats.\n"
  4563. "Here we set the format used when the provided\n"
  4564. "coordinates are not using period.\n"
  4565. "\n"
  4566. "Possible presets:\n"
  4567. "\n"
  4568. "PROTEUS 3:3 MM LZ\n"
  4569. "DipTrace 5:2 MM TZ\n"
  4570. "DipTrace 4:3 MM LZ\n"
  4571. "\n"
  4572. "EAGLE 3:3 MM TZ\n"
  4573. "EAGLE 4:3 MM TZ\n"
  4574. "EAGLE 2:5 INCH TZ\n"
  4575. "EAGLE 3:5 INCH TZ\n"
  4576. "\n"
  4577. "ALTIUM 2:4 INCH LZ\n"
  4578. "Sprint Layout 2:4 INCH LZ\n"
  4579. "KiCAD 3:5 INCH TZ"
  4580. #: flatcamGUI/FlatCAMGUI.py:3629
  4581. msgid "INCH:"
  4582. msgstr "INCH:"
  4583. #: flatcamGUI/FlatCAMGUI.py:3632
  4584. msgid "Default values for INCH are 2:4"
  4585. msgstr "Default values for INCH are 2:4"
  4586. #: flatcamGUI/FlatCAMGUI.py:3640 flatcamGUI/FlatCAMGUI.py:3673
  4587. #: flatcamGUI/FlatCAMGUI.py:4150
  4588. msgid ""
  4589. "This numbers signify the number of digits in\n"
  4590. "the whole part of Excellon coordinates."
  4591. msgstr ""
  4592. "This numbers signify the number of digits in\n"
  4593. "the whole part of Excellon coordinates."
  4594. #: flatcamGUI/FlatCAMGUI.py:3654 flatcamGUI/FlatCAMGUI.py:3687
  4595. #: flatcamGUI/FlatCAMGUI.py:4164
  4596. msgid ""
  4597. "This numbers signify the number of digits in\n"
  4598. "the decimal part of Excellon coordinates."
  4599. msgstr ""
  4600. "This numbers signify the number of digits in\n"
  4601. "the decimal part of Excellon coordinates."
  4602. #: flatcamGUI/FlatCAMGUI.py:3662
  4603. msgid "METRIC:"
  4604. msgstr "METRIC:"
  4605. #: flatcamGUI/FlatCAMGUI.py:3665
  4606. msgid "Default values for METRIC are 3:3"
  4607. msgstr "Default values for METRIC are 3:3"
  4608. #: flatcamGUI/FlatCAMGUI.py:3696
  4609. msgid "Default <b>Zeros</b>:"
  4610. msgstr "Default <b>Zeros</b>:"
  4611. #: flatcamGUI/FlatCAMGUI.py:3699 flatcamGUI/FlatCAMGUI.py:4199
  4612. msgid ""
  4613. "This sets the type of Excellon zeros.\n"
  4614. "If LZ then Leading Zeros are kept and\n"
  4615. "Trailing Zeros are removed.\n"
  4616. "If TZ is checked then Trailing Zeros are kept\n"
  4617. "and Leading Zeros are removed."
  4618. msgstr ""
  4619. "This sets the type of Excellon zeros.\n"
  4620. "If LZ then Leading Zeros are kept and\n"
  4621. "Trailing Zeros are removed.\n"
  4622. "If TZ is checked then Trailing Zeros are kept\n"
  4623. "and Leading Zeros are removed."
  4624. #: flatcamGUI/FlatCAMGUI.py:3707 flatcamGUI/FlatCAMGUI.py:4206
  4625. msgid "LZ"
  4626. msgstr "LZ"
  4627. #: flatcamGUI/FlatCAMGUI.py:3708 flatcamGUI/FlatCAMGUI.py:4207
  4628. msgid "TZ"
  4629. msgstr "TZ"
  4630. #: flatcamGUI/FlatCAMGUI.py:3710
  4631. msgid ""
  4632. "This sets the default type of Excellon zeros.\n"
  4633. "If it is not detected in the parsed file the value here\n"
  4634. "will be used.If LZ then Leading Zeros are kept and\n"
  4635. "Trailing Zeros are removed.\n"
  4636. "If TZ is checked then Trailing Zeros are kept\n"
  4637. "and Leading Zeros are removed."
  4638. msgstr ""
  4639. "This sets the default type of Excellon zeros.\n"
  4640. "If it is not detected in the parsed file the value here\n"
  4641. "will be used.If LZ then Leading Zeros are kept and\n"
  4642. "Trailing Zeros are removed.\n"
  4643. "If TZ is checked then Trailing Zeros are kept\n"
  4644. "and Leading Zeros are removed."
  4645. #: flatcamGUI/FlatCAMGUI.py:3724
  4646. msgid "Default <b>Units</b>:"
  4647. msgstr "Default <b>Units</b>:"
  4648. #: flatcamGUI/FlatCAMGUI.py:3727
  4649. msgid ""
  4650. "This sets the default units of Excellon files.\n"
  4651. "If it is not detected in the parsed file the value here\n"
  4652. "will be used.Some Excellon files don't have an header\n"
  4653. "therefore this parameter will be used."
  4654. msgstr ""
  4655. "This sets the default units of Excellon files.\n"
  4656. "If it is not detected in the parsed file the value here\n"
  4657. "will be used.Some Excellon files don't have an header\n"
  4658. "therefore this parameter will be used."
  4659. #: flatcamGUI/FlatCAMGUI.py:3735 flatcamGUI/FlatCAMGUI.py:4126
  4660. msgid "INCH"
  4661. msgstr "INCH"
  4662. #: flatcamGUI/FlatCAMGUI.py:3736 flatcamGUI/FlatCAMGUI.py:4127
  4663. msgid "MM"
  4664. msgstr "MM"
  4665. #: flatcamGUI/FlatCAMGUI.py:3738
  4666. msgid ""
  4667. "This sets the units of Excellon files.\n"
  4668. "Some Excellon files don't have an header\n"
  4669. "therefore this parameter will be used."
  4670. msgstr ""
  4671. "This sets the units of Excellon files.\n"
  4672. "Some Excellon files don't have an header\n"
  4673. "therefore this parameter will be used."
  4674. #: flatcamGUI/FlatCAMGUI.py:3754
  4675. msgid "<b>Excellon Optimization:</b>"
  4676. msgstr "<b>Excellon Optimization:</b>"
  4677. #: flatcamGUI/FlatCAMGUI.py:3761
  4678. msgid "Algorithm: "
  4679. msgstr "Algorithm: "
  4680. #: flatcamGUI/FlatCAMGUI.py:3764 flatcamGUI/FlatCAMGUI.py:3777
  4681. msgid ""
  4682. "This sets the optimization type for the Excellon drill path.\n"
  4683. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  4684. "Guided Local Path is used. Default search time is 3sec.\n"
  4685. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  4686. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  4687. "\n"
  4688. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  4689. "Travelling Salesman algorithm for path optimization."
  4690. msgstr ""
  4691. "This sets the optimization type for the Excellon drill path.\n"
  4692. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  4693. "Guided Local Path is used. Default search time is 3sec.\n"
  4694. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  4695. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  4696. "\n"
  4697. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  4698. "Travelling Salesman algorithm for path optimization."
  4699. #: flatcamGUI/FlatCAMGUI.py:3774
  4700. msgid "MH"
  4701. msgstr "MH"
  4702. #: flatcamGUI/FlatCAMGUI.py:3789
  4703. msgid "Optimization Time: "
  4704. msgstr "Optimization Time: "
  4705. #: flatcamGUI/FlatCAMGUI.py:3792
  4706. msgid ""
  4707. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  4708. "maximum threshold for how much time is spent doing the\n"
  4709. "path optimization. This max duration is set here.\n"
  4710. "In seconds."
  4711. msgstr ""
  4712. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  4713. "maximum threshold for how much time is spent doing the\n"
  4714. "path optimization. This max duration is set here.\n"
  4715. "In seconds."
  4716. #: flatcamGUI/FlatCAMGUI.py:3833
  4717. msgid "Excellon Options"
  4718. msgstr "Excellon Options"
  4719. #: flatcamGUI/FlatCAMGUI.py:3836 flatcamGUI/ObjectUI.py:655
  4720. msgid "<b>Create CNC Job</b>"
  4721. msgstr "<b>Create CNC Job</b>"
  4722. #: flatcamGUI/FlatCAMGUI.py:3838
  4723. msgid ""
  4724. "Parameters used to create a CNC Job object\n"
  4725. "for this drill object."
  4726. msgstr ""
  4727. "Parameters used to create a CNC Job object\n"
  4728. "for this drill object."
  4729. #: flatcamGUI/FlatCAMGUI.py:3846 flatcamGUI/FlatCAMGUI.py:4302
  4730. #: flatcamGUI/FlatCAMGUI.py:5301 flatcamGUI/ObjectUI.py:666
  4731. #: flatcamGUI/ObjectUI.py:1130 flatcamTools/ToolCalculators.py:108
  4732. msgid "Cut Z:"
  4733. msgstr "Cut Z:"
  4734. #: flatcamGUI/FlatCAMGUI.py:3848 flatcamGUI/ObjectUI.py:668
  4735. msgid ""
  4736. "Drill depth (negative)\n"
  4737. "below the copper surface."
  4738. msgstr ""
  4739. "Drill depth (negative)\n"
  4740. "below the copper surface."
  4741. #: flatcamGUI/FlatCAMGUI.py:3855 flatcamGUI/FlatCAMGUI.py:4335
  4742. #: flatcamGUI/ObjectUI.py:676 flatcamGUI/ObjectUI.py:1166
  4743. msgid "Travel Z:"
  4744. msgstr "Travel Z:"
  4745. #: flatcamGUI/FlatCAMGUI.py:3857 flatcamGUI/ObjectUI.py:678
  4746. msgid ""
  4747. "Tool height when travelling\n"
  4748. "across the XY plane."
  4749. msgstr ""
  4750. "Tool height when travelling\n"
  4751. "across the XY plane."
  4752. #: flatcamGUI/FlatCAMGUI.py:3865 flatcamGUI/FlatCAMGUI.py:4345
  4753. msgid "Tool change:"
  4754. msgstr "Tool change:"
  4755. #: flatcamGUI/FlatCAMGUI.py:3867 flatcamGUI/FlatCAMGUI.py:4347
  4756. #: flatcamGUI/ObjectUI.py:688
  4757. msgid ""
  4758. "Include tool-change sequence\n"
  4759. "in G-Code (Pause for tool change)."
  4760. msgstr ""
  4761. "Include tool-change sequence\n"
  4762. "in G-Code (Pause for tool change)."
  4763. #: flatcamGUI/FlatCAMGUI.py:3874 flatcamGUI/FlatCAMGUI.py:4355
  4764. msgid "Toolchange Z:"
  4765. msgstr "Toolchange Z:"
  4766. #: flatcamGUI/FlatCAMGUI.py:3876 flatcamGUI/FlatCAMGUI.py:4357
  4767. msgid "Toolchange Z position."
  4768. msgstr "Toolchange Z position."
  4769. #: flatcamGUI/FlatCAMGUI.py:3882
  4770. msgid "Feedrate:"
  4771. msgstr "Feedrate:"
  4772. #: flatcamGUI/FlatCAMGUI.py:3884
  4773. msgid ""
  4774. "Tool speed while drilling\n"
  4775. "(in units per minute)."
  4776. msgstr ""
  4777. "Tool speed while drilling\n"
  4778. "(in units per minute)."
  4779. #: flatcamGUI/FlatCAMGUI.py:3892
  4780. msgid "Spindle Speed:"
  4781. msgstr "Spindle Speed:"
  4782. #: flatcamGUI/FlatCAMGUI.py:3894 flatcamGUI/FlatCAMGUI.py:4387
  4783. #: flatcamGUI/ObjectUI.py:752
  4784. msgid ""
  4785. "Speed of the spindle\n"
  4786. "in RPM (optional)"
  4787. msgstr ""
  4788. "Speed of the spindle\n"
  4789. "in RPM (optional)"
  4790. #: flatcamGUI/FlatCAMGUI.py:3902 flatcamGUI/FlatCAMGUI.py:4395
  4791. #: flatcamGUI/ObjectUI.py:760 flatcamGUI/ObjectUI.py:1289
  4792. msgid "Dwell:"
  4793. msgstr "Dwell:"
  4794. #: flatcamGUI/FlatCAMGUI.py:3904 flatcamGUI/FlatCAMGUI.py:4397
  4795. #: flatcamGUI/ObjectUI.py:762 flatcamGUI/ObjectUI.py:1292
  4796. msgid ""
  4797. "Pause to allow the spindle to reach its\n"
  4798. "speed before cutting."
  4799. msgstr ""
  4800. "Pause to allow the spindle to reach its\n"
  4801. "speed before cutting."
  4802. #: flatcamGUI/FlatCAMGUI.py:3907 flatcamGUI/FlatCAMGUI.py:4400
  4803. msgid "Duration:"
  4804. msgstr "Duration:"
  4805. #: flatcamGUI/FlatCAMGUI.py:3909 flatcamGUI/FlatCAMGUI.py:4402
  4806. #: flatcamGUI/ObjectUI.py:767 flatcamGUI/ObjectUI.py:1299
  4807. msgid "Number of milliseconds for spindle to dwell."
  4808. msgstr "Number of milliseconds for spindle to dwell."
  4809. #: flatcamGUI/FlatCAMGUI.py:3921 flatcamGUI/FlatCAMGUI.py:4412
  4810. #: flatcamGUI/ObjectUI.py:775
  4811. msgid "Postprocessor:"
  4812. msgstr "Postprocessor:"
  4813. #: flatcamGUI/FlatCAMGUI.py:3923
  4814. msgid ""
  4815. "The postprocessor file that dictates\n"
  4816. "gcode output."
  4817. msgstr ""
  4818. "The postprocessor file that dictates\n"
  4819. "gcode output."
  4820. #: flatcamGUI/FlatCAMGUI.py:3933
  4821. msgid "<b>Gcode: </b>"
  4822. msgstr "<b>Gcode: </b>"
  4823. #: flatcamGUI/FlatCAMGUI.py:3935
  4824. msgid ""
  4825. "Choose what to use for GCode generation:\n"
  4826. "'Drills', 'Slots' or 'Both'.\n"
  4827. "When choosing 'Slots' or 'Both', slots will be\n"
  4828. "converted to drills."
  4829. msgstr ""
  4830. "Choose what to use for GCode generation:\n"
  4831. "'Drills', 'Slots' or 'Both'.\n"
  4832. "When choosing 'Slots' or 'Both', slots will be\n"
  4833. "converted to drills."
  4834. #: flatcamGUI/FlatCAMGUI.py:3940 flatcamGUI/ObjectUI.py:627
  4835. #: flatcamGUI/ObjectUI.py:823
  4836. msgid "Drills"
  4837. msgstr "Drills"
  4838. #: flatcamGUI/FlatCAMGUI.py:3941 flatcamGUI/ObjectUI.py:627
  4839. #: flatcamGUI/ObjectUI.py:824
  4840. msgid "Slots"
  4841. msgstr "Slots"
  4842. #: flatcamGUI/FlatCAMGUI.py:3942 flatcamGUI/ObjectUI.py:825
  4843. msgid "Both"
  4844. msgstr "Both"
  4845. #: flatcamGUI/FlatCAMGUI.py:3951 flatcamGUI/ObjectUI.py:840
  4846. msgid "<b>Mill Holes</b>"
  4847. msgstr "<b>Mill Holes</b>"
  4848. #: flatcamGUI/FlatCAMGUI.py:3953 flatcamGUI/ObjectUI.py:842
  4849. msgid "Create Geometry for milling holes."
  4850. msgstr "Create Geometry for milling holes."
  4851. #: flatcamGUI/FlatCAMGUI.py:3959
  4852. msgid "Drill Tool dia:"
  4853. msgstr "Drill Tool dia:"
  4854. #: flatcamGUI/FlatCAMGUI.py:3966
  4855. msgid "Slot Tool dia:"
  4856. msgstr "Slot Tool dia:"
  4857. #: flatcamGUI/FlatCAMGUI.py:3968
  4858. msgid ""
  4859. "Diameter of the cutting tool\n"
  4860. "when milling slots."
  4861. msgstr ""
  4862. "Diameter of the cutting tool\n"
  4863. "when milling slots."
  4864. #: flatcamGUI/FlatCAMGUI.py:3980
  4865. msgid "Defaults"
  4866. msgstr "Defaults"
  4867. #: flatcamGUI/FlatCAMGUI.py:3993
  4868. msgid "Excellon Adv. Options"
  4869. msgstr "Excellon Adv. Options"
  4870. #: flatcamGUI/FlatCAMGUI.py:3999 flatcamGUI/FlatCAMGUI.py:4435
  4871. msgid "<b>Advanced Options:</b>"
  4872. msgstr "<b>Advanced Options:</b>"
  4873. #: flatcamGUI/FlatCAMGUI.py:4001
  4874. msgid ""
  4875. "Parameters used to create a CNC Job object\n"
  4876. "for this drill object that are shown when App Level is Advanced."
  4877. msgstr ""
  4878. "Parameters used to create a CNC Job object\n"
  4879. "for this drill object that are shown when App Level is Advanced."
  4880. #: flatcamGUI/FlatCAMGUI.py:4009
  4881. msgid "Offset Z:"
  4882. msgstr "Offset Z:"
  4883. #: flatcamGUI/FlatCAMGUI.py:4011 flatcamGUI/ObjectUI.py:645
  4884. msgid ""
  4885. "Some drill bits (the larger ones) need to drill deeper\n"
  4886. "to create the desired exit hole diameter due of the tip shape.\n"
  4887. "The value here can compensate the Cut Z parameter."
  4888. msgstr ""
  4889. "Some drill bits (the larger ones) need to drill deeper\n"
  4890. "to create the desired exit hole diameter due of the tip shape.\n"
  4891. "The value here can compensate the Cut Z parameter."
  4892. #: flatcamGUI/FlatCAMGUI.py:4018 flatcamGUI/FlatCAMGUI.py:4446
  4893. msgid "Toolchange X,Y:"
  4894. msgstr "Toolchange X,Y:"
  4895. #: flatcamGUI/FlatCAMGUI.py:4020 flatcamGUI/FlatCAMGUI.py:4448
  4896. msgid "Toolchange X,Y position."
  4897. msgstr "Toolchange X,Y position."
  4898. #: flatcamGUI/FlatCAMGUI.py:4026 flatcamGUI/FlatCAMGUI.py:4455
  4899. #: flatcamGUI/ObjectUI.py:705
  4900. msgid "Start move Z:"
  4901. msgstr "Start move Z:"
  4902. #: flatcamGUI/FlatCAMGUI.py:4028
  4903. msgid ""
  4904. "Height of the tool just after start.\n"
  4905. "Delete the value if you don't need this feature."
  4906. msgstr ""
  4907. "Height of the tool just after start.\n"
  4908. "Delete the value if you don't need this feature."
  4909. #: flatcamGUI/FlatCAMGUI.py:4035 flatcamGUI/FlatCAMGUI.py:4465
  4910. #: flatcamGUI/ObjectUI.py:715 flatcamGUI/ObjectUI.py:1212
  4911. msgid "End move Z:"
  4912. msgstr "End move Z:"
  4913. #: flatcamGUI/FlatCAMGUI.py:4037 flatcamGUI/FlatCAMGUI.py:4467
  4914. msgid ""
  4915. "Height of the tool after\n"
  4916. "the last move at the end of the job."
  4917. msgstr ""
  4918. "Height of the tool after\n"
  4919. "the last move at the end of the job."
  4920. #: flatcamGUI/FlatCAMGUI.py:4044 flatcamGUI/FlatCAMGUI.py:4475
  4921. #: flatcamGUI/ObjectUI.py:736
  4922. msgid "Feedrate Rapids:"
  4923. msgstr "Feedrate Rapids:"
  4924. #: flatcamGUI/FlatCAMGUI.py:4046 flatcamGUI/ObjectUI.py:738
  4925. msgid ""
  4926. "Tool speed while drilling\n"
  4927. "(in units per minute).\n"
  4928. "This is for the rapid move G00.\n"
  4929. "It is useful only for Marlin,\n"
  4930. "ignore for any other cases."
  4931. msgstr ""
  4932. "Tool speed while drilling\n"
  4933. "(in units per minute).\n"
  4934. "This is for the rapid move G00.\n"
  4935. "It is useful only for Marlin,\n"
  4936. "ignore for any other cases."
  4937. #: flatcamGUI/FlatCAMGUI.py:4057 flatcamGUI/FlatCAMGUI.py:4499
  4938. #: flatcamGUI/ObjectUI.py:786 flatcamGUI/ObjectUI.py:1321
  4939. msgid "Probe Z depth:"
  4940. msgstr "Probe Z depth:"
  4941. #: flatcamGUI/FlatCAMGUI.py:4059 flatcamGUI/FlatCAMGUI.py:4501
  4942. #: flatcamGUI/ObjectUI.py:788 flatcamGUI/ObjectUI.py:1324
  4943. msgid ""
  4944. "The maximum depth that the probe is allowed\n"
  4945. "to probe. Negative value, in current units."
  4946. msgstr ""
  4947. "The maximum depth that the probe is allowed\n"
  4948. "to probe. Negative value, in current units."
  4949. #: flatcamGUI/FlatCAMGUI.py:4067 flatcamGUI/FlatCAMGUI.py:4509
  4950. #: flatcamGUI/ObjectUI.py:798 flatcamGUI/ObjectUI.py:1335
  4951. msgid "Feedrate Probe:"
  4952. msgstr "Feedrate Probe:"
  4953. #: flatcamGUI/FlatCAMGUI.py:4069 flatcamGUI/FlatCAMGUI.py:4511
  4954. #: flatcamGUI/ObjectUI.py:800 flatcamGUI/ObjectUI.py:1338
  4955. msgid "The feedrate used while the probe is probing."
  4956. msgstr "The feedrate used while the probe is probing."
  4957. #: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/FlatCAMGUI.py:4518
  4958. msgid "Fast Plunge:"
  4959. msgstr "Fast Plunge:"
  4960. #: flatcamGUI/FlatCAMGUI.py:4077 flatcamGUI/FlatCAMGUI.py:4520
  4961. msgid ""
  4962. "By checking this, the vertical move from\n"
  4963. "Z_Toolchange to Z_move is done with G0,\n"
  4964. "meaning the fastest speed available.\n"
  4965. "WARNING: the move is done at Toolchange X,Y coords."
  4966. msgstr ""
  4967. "By checking this, the vertical move from\n"
  4968. "Z_Toolchange to Z_move is done with G0,\n"
  4969. "meaning the fastest speed available.\n"
  4970. "WARNING: the move is done at Toolchange X,Y coords."
  4971. #: flatcamGUI/FlatCAMGUI.py:4086
  4972. msgid "Fast Retract:"
  4973. msgstr "Fast Retract:"
  4974. #: flatcamGUI/FlatCAMGUI.py:4088
  4975. msgid ""
  4976. "Exit hole strategy.\n"
  4977. " - When uncheked, while exiting the drilled hole the drill bit\n"
  4978. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  4979. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  4980. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  4981. "(travel height) is done as fast as possible (G0) in one move."
  4982. msgstr ""
  4983. "Exit hole strategy.\n"
  4984. " - When uncheked, while exiting the drilled hole the drill bit\n"
  4985. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  4986. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  4987. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  4988. "(travel height) is done as fast as possible (G0) in one move."
  4989. #: flatcamGUI/FlatCAMGUI.py:4107
  4990. msgid "Excellon Export"
  4991. msgstr "Excellon Export"
  4992. #: flatcamGUI/FlatCAMGUI.py:4110
  4993. msgid "<b>Export Options:</b>"
  4994. msgstr "<b>Export Options:</b>"
  4995. #: flatcamGUI/FlatCAMGUI.py:4112
  4996. msgid ""
  4997. "The parameters set here are used in the file exported\n"
  4998. "when using the File -> Export -> Export Excellon menu entry."
  4999. msgstr ""
  5000. "The parameters set here are used in the file exported\n"
  5001. "when using the File -> Export -> Export Excellon menu entry."
  5002. #: flatcamGUI/FlatCAMGUI.py:4121
  5003. msgid "<b>Units</b>:"
  5004. msgstr "<b>Units</b>:"
  5005. #: flatcamGUI/FlatCAMGUI.py:4123 flatcamGUI/FlatCAMGUI.py:4129
  5006. msgid "The units used in the Excellon file."
  5007. msgstr "The units used in the Excellon file."
  5008. #: flatcamGUI/FlatCAMGUI.py:4135
  5009. msgid "<b>Int/Decimals:</b>"
  5010. msgstr "<b>Int/Decimals:</b>"
  5011. #: flatcamGUI/FlatCAMGUI.py:4137
  5012. msgid ""
  5013. "The NC drill files, usually named Excellon files\n"
  5014. "are files that can be found in different formats.\n"
  5015. "Here we set the format used when the provided\n"
  5016. "coordinates are not using period."
  5017. msgstr ""
  5018. "The NC drill files, usually named Excellon files\n"
  5019. "are files that can be found in different formats.\n"
  5020. "Here we set the format used when the provided\n"
  5021. "coordinates are not using period."
  5022. #: flatcamGUI/FlatCAMGUI.py:4173
  5023. msgid "<b>Format:</b>"
  5024. msgstr "<b>Format:</b>"
  5025. #: flatcamGUI/FlatCAMGUI.py:4175 flatcamGUI/FlatCAMGUI.py:4185
  5026. msgid ""
  5027. "Select the kind of coordinates format used.\n"
  5028. "Coordinates can be saved with decimal point or without.\n"
  5029. "When there is no decimal point, it is required to specify\n"
  5030. "the number of digits for integer part and the number of decimals.\n"
  5031. "Also it will have to be specified if LZ = leading zeros are kept\n"
  5032. "or TZ = trailing zeros are kept."
  5033. msgstr ""
  5034. "Select the kind of coordinates format used.\n"
  5035. "Coordinates can be saved with decimal point or without.\n"
  5036. "When there is no decimal point, it is required to specify\n"
  5037. "the number of digits for integer part and the number of decimals.\n"
  5038. "Also it will have to be specified if LZ = leading zeros are kept\n"
  5039. "or TZ = trailing zeros are kept."
  5040. #: flatcamGUI/FlatCAMGUI.py:4182
  5041. msgid "Decimal"
  5042. msgstr "Decimal"
  5043. #: flatcamGUI/FlatCAMGUI.py:4183
  5044. msgid "No-Decimal"
  5045. msgstr "No-Decimal"
  5046. #: flatcamGUI/FlatCAMGUI.py:4196
  5047. msgid "<b>Zeros</b>:"
  5048. msgstr "<b>Zeros</b>:"
  5049. #: flatcamGUI/FlatCAMGUI.py:4209
  5050. msgid ""
  5051. "This sets the default type of Excellon zeros.\n"
  5052. "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. "This sets the default type of Excellon zeros.\n"
  5058. "If LZ then Leading Zeros are kept and\n"
  5059. "Trailing Zeros are removed.\n"
  5060. "If TZ is checked then Trailing Zeros are kept\n"
  5061. "and Leading Zeros are removed."
  5062. #: flatcamGUI/FlatCAMGUI.py:4235
  5063. msgid "Geometry General"
  5064. msgstr "Geometry General"
  5065. #: flatcamGUI/FlatCAMGUI.py:4253
  5066. msgid ""
  5067. "The number of circle steps for <b>Geometry</b> \n"
  5068. "circle and arc shapes linear approximation."
  5069. msgstr ""
  5070. "The number of circle steps for <b>Geometry</b> \n"
  5071. "circle and arc shapes linear approximation."
  5072. #: flatcamGUI/FlatCAMGUI.py:4261
  5073. msgid "<b>Tools</b>"
  5074. msgstr "<b>Tools</b>"
  5075. #: flatcamGUI/FlatCAMGUI.py:4268
  5076. msgid "Tool dia: "
  5077. msgstr "Tool dia: "
  5078. #: flatcamGUI/FlatCAMGUI.py:4270
  5079. msgid ""
  5080. "The diameter of the cutting\n"
  5081. "tool.."
  5082. msgstr ""
  5083. "The diameter of the cutting\n"
  5084. "tool.."
  5085. #: flatcamGUI/FlatCAMGUI.py:4285
  5086. msgid "Geometry Options"
  5087. msgstr "Geometry Options"
  5088. #: flatcamGUI/FlatCAMGUI.py:4290
  5089. msgid "<b>Create CNC Job:</b>"
  5090. msgstr "<b>Create CNC Job:</b>"
  5091. #: flatcamGUI/FlatCAMGUI.py:4292
  5092. msgid ""
  5093. "Create a CNC Job object\n"
  5094. "tracing the contours of this\n"
  5095. "Geometry object."
  5096. msgstr ""
  5097. "Create a CNC Job object\n"
  5098. "tracing the contours of this\n"
  5099. "Geometry object."
  5100. #: flatcamGUI/FlatCAMGUI.py:4304 flatcamGUI/ObjectUI.py:1133
  5101. msgid ""
  5102. "Cutting depth (negative)\n"
  5103. "below the copper surface."
  5104. msgstr ""
  5105. "Cutting depth (negative)\n"
  5106. "below the copper surface."
  5107. #: flatcamGUI/FlatCAMGUI.py:4312
  5108. msgid "Multidepth"
  5109. msgstr "Multidepth"
  5110. #: flatcamGUI/FlatCAMGUI.py:4314
  5111. msgid "Multidepth usage: True or False."
  5112. msgstr "Multidepth usage: True or False."
  5113. #: flatcamGUI/FlatCAMGUI.py:4319
  5114. msgid "Depth/Pass:"
  5115. msgstr "Depth/Pass:"
  5116. #: flatcamGUI/FlatCAMGUI.py:4321
  5117. msgid ""
  5118. "The depth to cut on each pass,\n"
  5119. "when multidepth is enabled.\n"
  5120. "It has positive value although\n"
  5121. "it is a fraction from the depth\n"
  5122. "which has negative value."
  5123. msgstr ""
  5124. "The depth to cut on each pass,\n"
  5125. "when multidepth is enabled.\n"
  5126. "It has positive value although\n"
  5127. "it is a fraction from the depth\n"
  5128. "which has negative value."
  5129. #: flatcamGUI/FlatCAMGUI.py:4337 flatcamGUI/ObjectUI.py:1169
  5130. msgid ""
  5131. "Height of the tool when\n"
  5132. "moving without cutting."
  5133. msgstr ""
  5134. "Height of the tool when\n"
  5135. "moving without cutting."
  5136. #: flatcamGUI/FlatCAMGUI.py:4364 flatcamGUI/ObjectUI.py:1224
  5137. msgid "Feed Rate X-Y:"
  5138. msgstr "Feed Rate X-Y:"
  5139. #: flatcamGUI/FlatCAMGUI.py:4366 flatcamGUI/ObjectUI.py:1227
  5140. msgid ""
  5141. "Cutting speed in the XY\n"
  5142. "plane in units per minute"
  5143. msgstr ""
  5144. "Cutting speed in the XY\n"
  5145. "plane in units per minute"
  5146. #: flatcamGUI/FlatCAMGUI.py:4374
  5147. msgid "Feed Rate Z:"
  5148. msgstr "Feed Rate Z:"
  5149. #: flatcamGUI/FlatCAMGUI.py:4376
  5150. msgid ""
  5151. "Cutting speed in the XY\n"
  5152. "plane in units per minute.\n"
  5153. "It is called also Plunge."
  5154. msgstr ""
  5155. "Cutting speed in the XY\n"
  5156. "plane in units per minute.\n"
  5157. "It is called also Plunge."
  5158. #: flatcamGUI/FlatCAMGUI.py:4385 flatcamGUI/ObjectUI.py:750
  5159. #: flatcamGUI/ObjectUI.py:1276
  5160. msgid "Spindle speed:"
  5161. msgstr "Spindle speed:"
  5162. #: flatcamGUI/FlatCAMGUI.py:4414
  5163. msgid ""
  5164. "The postprocessor file that dictates\n"
  5165. "Machine Code output."
  5166. msgstr ""
  5167. "The postprocessor file that dictates\n"
  5168. "Machine Code output."
  5169. #: flatcamGUI/FlatCAMGUI.py:4430
  5170. msgid "Geometry Adv. Options"
  5171. msgstr "Geometry Adv. Options"
  5172. #: flatcamGUI/FlatCAMGUI.py:4437
  5173. msgid ""
  5174. "Parameters to create a CNC Job object\n"
  5175. "tracing the contours of a Geometry object."
  5176. msgstr ""
  5177. "Parameters to create a CNC Job object\n"
  5178. "tracing the contours of a Geometry object."
  5179. #: flatcamGUI/FlatCAMGUI.py:4457
  5180. msgid ""
  5181. "Height of the tool just after starting the work.\n"
  5182. "Delete the value if you don't need this feature."
  5183. msgstr ""
  5184. "Height of the tool just after starting the work.\n"
  5185. "Delete the value if you don't need this feature."
  5186. #: flatcamGUI/FlatCAMGUI.py:4477
  5187. msgid ""
  5188. "Cutting speed in the XY plane\n"
  5189. "(in units per minute).\n"
  5190. "This is for the rapid move G00.\n"
  5191. "It is useful only for Marlin,\n"
  5192. "ignore for any other cases."
  5193. msgstr ""
  5194. "Cutting speed in the XY plane\n"
  5195. "(in units per minute).\n"
  5196. "This is for the rapid move G00.\n"
  5197. "It is useful only for Marlin,\n"
  5198. "ignore for any other cases."
  5199. #: flatcamGUI/FlatCAMGUI.py:4489
  5200. msgid "Re-cut 1st pt."
  5201. msgstr "Re-cut 1st pt."
  5202. #: flatcamGUI/FlatCAMGUI.py:4491 flatcamGUI/ObjectUI.py:1267
  5203. msgid ""
  5204. "In order to remove possible\n"
  5205. "copper leftovers where first cut\n"
  5206. "meet with last cut, we generate an\n"
  5207. "extended cut over the first cut section."
  5208. msgstr ""
  5209. "In order to remove possible\n"
  5210. "copper leftovers where first cut\n"
  5211. "meet with last cut, we generate an\n"
  5212. "extended cut over the first cut section."
  5213. #: flatcamGUI/FlatCAMGUI.py:4530
  5214. msgid "Seg. X size:"
  5215. msgstr "Seg. X size:"
  5216. #: flatcamGUI/FlatCAMGUI.py:4532
  5217. msgid ""
  5218. "The size of the trace segment on the X axis.\n"
  5219. "Useful for auto-leveling.\n"
  5220. "A value of 0 means no segmentation on the X axis."
  5221. msgstr ""
  5222. "The size of the trace segment on the X axis.\n"
  5223. "Useful for auto-leveling.\n"
  5224. "A value of 0 means no segmentation on the X axis."
  5225. #: flatcamGUI/FlatCAMGUI.py:4541
  5226. msgid "Seg. Y size:"
  5227. msgstr "Seg. Y size:"
  5228. #: flatcamGUI/FlatCAMGUI.py:4543
  5229. msgid ""
  5230. "The size of the trace segment on the Y axis.\n"
  5231. "Useful for auto-leveling.\n"
  5232. "A value of 0 means no segmentation on the Y axis."
  5233. msgstr ""
  5234. "The size of the trace segment on the Y axis.\n"
  5235. "Useful for auto-leveling.\n"
  5236. "A value of 0 means no segmentation on the Y axis."
  5237. #: flatcamGUI/FlatCAMGUI.py:4559
  5238. msgid "CNC Job General"
  5239. msgstr "CNC Job General"
  5240. #: flatcamGUI/FlatCAMGUI.py:4572 flatcamGUI/ObjectUI.py:615
  5241. #: flatcamGUI/ObjectUI.py:945 flatcamGUI/ObjectUI.py:1499
  5242. msgid "Plot Object"
  5243. msgstr "Plot Object"
  5244. #: flatcamGUI/FlatCAMGUI.py:4579
  5245. msgid "Plot kind:"
  5246. msgstr "Plot kind:"
  5247. #: flatcamGUI/FlatCAMGUI.py:4581 flatcamGUI/ObjectUI.py:1421
  5248. msgid ""
  5249. "This selects the kind of geometries on the canvas to plot.\n"
  5250. "Those can be either of type 'Travel' which means the moves\n"
  5251. "above the work piece or it can be of type 'Cut',\n"
  5252. "which means the moves that cut into the material."
  5253. msgstr ""
  5254. "This selects the kind of geometries on the canvas to plot.\n"
  5255. "Those can be either of type 'Travel' which means the moves\n"
  5256. "above the work piece or it can be of type 'Cut',\n"
  5257. "which means the moves that cut into the material."
  5258. #: flatcamGUI/FlatCAMGUI.py:4589 flatcamGUI/ObjectUI.py:1430
  5259. msgid "Travel"
  5260. msgstr "Travel"
  5261. #: flatcamGUI/FlatCAMGUI.py:4600
  5262. msgid ""
  5263. "The number of circle steps for <b>GCode</b> \n"
  5264. "circle and arc shapes linear approximation."
  5265. msgstr ""
  5266. "The number of circle steps for <b>GCode</b> \n"
  5267. "circle and arc shapes linear approximation."
  5268. #: flatcamGUI/FlatCAMGUI.py:4610
  5269. msgid ""
  5270. "Diameter of the tool to be\n"
  5271. "rendered in the plot."
  5272. msgstr ""
  5273. "Diameter of the tool to be\n"
  5274. "rendered in the plot."
  5275. #: flatcamGUI/FlatCAMGUI.py:4618
  5276. msgid "Coords dec.:"
  5277. msgstr "Coords dec.:"
  5278. #: flatcamGUI/FlatCAMGUI.py:4620
  5279. msgid ""
  5280. "The number of decimals to be used for \n"
  5281. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  5282. msgstr ""
  5283. "The number of decimals to be used for \n"
  5284. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  5285. #: flatcamGUI/FlatCAMGUI.py:4628
  5286. msgid "Feedrate dec.:"
  5287. msgstr "Feedrate dec.:"
  5288. #: flatcamGUI/FlatCAMGUI.py:4630
  5289. msgid ""
  5290. "The number of decimals to be used for \n"
  5291. "the Feedrate parameter in CNC code (GCODE, etc.)"
  5292. msgstr ""
  5293. "The number of decimals to be used for \n"
  5294. "the Feedrate parameter in CNC code (GCODE, etc.)"
  5295. #: flatcamGUI/FlatCAMGUI.py:4645
  5296. msgid "CNC Job Options"
  5297. msgstr "CNC Job Options"
  5298. #: flatcamGUI/FlatCAMGUI.py:4648 flatcamGUI/FlatCAMGUI.py:4689
  5299. msgid "<b>Export G-Code:</b>"
  5300. msgstr "<b>Export G-Code:</b>"
  5301. #: flatcamGUI/FlatCAMGUI.py:4650 flatcamGUI/FlatCAMGUI.py:4691
  5302. #: flatcamGUI/ObjectUI.py:1535
  5303. msgid ""
  5304. "Export and save G-Code to\n"
  5305. "make this object to a file."
  5306. msgstr ""
  5307. "Export and save G-Code to\n"
  5308. "make this object to a file."
  5309. #: flatcamGUI/FlatCAMGUI.py:4656
  5310. msgid "Prepend to G-Code:"
  5311. msgstr "Prepend to G-Code:"
  5312. #: flatcamGUI/FlatCAMGUI.py:4658
  5313. msgid ""
  5314. "Type here any G-Code commands you would\n"
  5315. "like to add at the beginning of the G-Code file."
  5316. msgstr ""
  5317. "Type here any G-Code commands you would\n"
  5318. "like to add at the beginning of the G-Code file."
  5319. #: flatcamGUI/FlatCAMGUI.py:4667
  5320. msgid "Append to G-Code:"
  5321. msgstr "Append to G-Code:"
  5322. #: flatcamGUI/FlatCAMGUI.py:4669 flatcamGUI/ObjectUI.py:1557
  5323. msgid ""
  5324. "Type here any G-Code commands you would\n"
  5325. "like to append to the generated file.\n"
  5326. "I.e.: M2 (End of program)"
  5327. msgstr ""
  5328. "Type here any G-Code commands you would\n"
  5329. "like to append to the generated file.\n"
  5330. "I.e.: M2 (End of program)"
  5331. #: flatcamGUI/FlatCAMGUI.py:4686
  5332. msgid "CNC Job Adv. Options"
  5333. msgstr "CNC Job Adv. Options"
  5334. #: flatcamGUI/FlatCAMGUI.py:4697 flatcamGUI/ObjectUI.py:1575
  5335. msgid "Toolchange G-Code:"
  5336. msgstr "Toolchange G-Code:"
  5337. #: flatcamGUI/FlatCAMGUI.py:4699
  5338. msgid ""
  5339. "Type here any G-Code commands you would\n"
  5340. "like to be executed when Toolchange event is encountered.\n"
  5341. "This will constitute a Custom Toolchange GCode,\n"
  5342. "or a Toolchange Macro."
  5343. msgstr ""
  5344. "Type here any G-Code commands you would\n"
  5345. "like to be executed when Toolchange event is encountered.\n"
  5346. "This will constitute a Custom Toolchange GCode,\n"
  5347. "or a Toolchange Macro."
  5348. #: flatcamGUI/FlatCAMGUI.py:4713 flatcamGUI/ObjectUI.py:1597
  5349. msgid "Use Toolchange Macro"
  5350. msgstr "Use Toolchange Macro"
  5351. #: flatcamGUI/FlatCAMGUI.py:4715 flatcamGUI/ObjectUI.py:1600
  5352. msgid ""
  5353. "Check this box if you want to use\n"
  5354. "a Custom Toolchange GCode (macro)."
  5355. msgstr ""
  5356. "Check this box if you want to use\n"
  5357. "a Custom Toolchange GCode (macro)."
  5358. #: flatcamGUI/FlatCAMGUI.py:4727 flatcamGUI/ObjectUI.py:1616
  5359. msgid ""
  5360. "A list of the FlatCAM variables that can be used\n"
  5361. "in the Toolchange event.\n"
  5362. "They have to be surrounded by the '%' symbol"
  5363. msgstr ""
  5364. "A list of the FlatCAM variables that can be used\n"
  5365. "in the Toolchange event.\n"
  5366. "They have to be surrounded by the '%' symbol"
  5367. #: flatcamGUI/FlatCAMGUI.py:4734 flatcamGUI/ObjectUI.py:1624
  5368. msgid "Parameters"
  5369. msgstr "Parameters"
  5370. #: flatcamGUI/FlatCAMGUI.py:4737 flatcamGUI/ObjectUI.py:1627
  5371. msgid "FlatCAM CNC parameters"
  5372. msgstr "FlatCAM CNC parameters"
  5373. #: flatcamGUI/FlatCAMGUI.py:4738 flatcamGUI/ObjectUI.py:1628
  5374. msgid "tool = tool number"
  5375. msgstr "tool = tool number"
  5376. #: flatcamGUI/FlatCAMGUI.py:4739 flatcamGUI/ObjectUI.py:1629
  5377. msgid "tooldia = tool diameter"
  5378. msgstr "tooldia = tool diameter"
  5379. #: flatcamGUI/FlatCAMGUI.py:4740 flatcamGUI/ObjectUI.py:1630
  5380. msgid "t_drills = for Excellon, total number of drills"
  5381. msgstr "t_drills = for Excellon, total number of drills"
  5382. #: flatcamGUI/FlatCAMGUI.py:4741 flatcamGUI/ObjectUI.py:1631
  5383. msgid "x_toolchange = X coord for Toolchange"
  5384. msgstr "x_toolchange = X coord for Toolchange"
  5385. #: flatcamGUI/FlatCAMGUI.py:4742 flatcamGUI/ObjectUI.py:1632
  5386. msgid "y_toolchange = Y coord for Toolchange"
  5387. msgstr "y_toolchange = Y coord for Toolchange"
  5388. #: flatcamGUI/FlatCAMGUI.py:4743 flatcamGUI/ObjectUI.py:1633
  5389. msgid "z_toolchange = Z coord for Toolchange"
  5390. msgstr "z_toolchange = Z coord for Toolchange"
  5391. #: flatcamGUI/FlatCAMGUI.py:4744
  5392. msgid "z_cut = Z depth for the cut"
  5393. msgstr "z_cut = Z depth for the cut"
  5394. #: flatcamGUI/FlatCAMGUI.py:4745
  5395. msgid "z_move = Z height for travel"
  5396. msgstr "z_move = Z height for travel"
  5397. #: flatcamGUI/FlatCAMGUI.py:4746 flatcamGUI/ObjectUI.py:1636
  5398. msgid "z_depthpercut = the step value for multidepth cut"
  5399. msgstr "z_depthpercut = the step value for multidepth cut"
  5400. #: flatcamGUI/FlatCAMGUI.py:4747 flatcamGUI/ObjectUI.py:1637
  5401. msgid "spindlesspeed = the value for the spindle speed"
  5402. msgstr "spindlesspeed = the value for the spindle speed"
  5403. #: flatcamGUI/FlatCAMGUI.py:4748 flatcamGUI/ObjectUI.py:1638
  5404. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  5405. msgstr "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  5406. #: flatcamGUI/FlatCAMGUI.py:4769
  5407. msgid "NCC Tool Options"
  5408. msgstr "NCC Tool Options"
  5409. #: flatcamGUI/FlatCAMGUI.py:4772 flatcamGUI/FlatCAMGUI.py:4873
  5410. #: flatcamGUI/FlatCAMGUI.py:4943 flatcamGUI/FlatCAMGUI.py:5002
  5411. #: flatcamGUI/FlatCAMGUI.py:5105 flatcamGUI/FlatCAMGUI.py:5166
  5412. #: flatcamGUI/FlatCAMGUI.py:5365 flatcamGUI/FlatCAMGUI.py:5492
  5413. msgid "<b>Parameters:</b>"
  5414. msgstr "<b>Parameters:</b>"
  5415. #: flatcamGUI/FlatCAMGUI.py:4782 flatcamGUI/FlatCAMGUI.py:5503
  5416. msgid "Tools dia:"
  5417. msgstr "Tools dia:"
  5418. #: flatcamGUI/FlatCAMGUI.py:4784
  5419. msgid "Diameters of the cutting tools, separated by ','"
  5420. msgstr "Diameters of the cutting tools, separated by ','"
  5421. #: flatcamGUI/FlatCAMGUI.py:4792 flatcamTools/ToolNonCopperClear.py:166
  5422. #, python-format
  5423. msgid ""
  5424. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5425. "Example:\n"
  5426. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  5427. "\n"
  5428. "Adjust the value starting with lower values\n"
  5429. "and increasing it if areas that should be cleared are still \n"
  5430. "not cleared.\n"
  5431. "Lower values = faster processing, faster execution on PCB.\n"
  5432. "Higher values = slow processing and slow execution on CNC\n"
  5433. "due of too many paths."
  5434. msgstr ""
  5435. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5436. "Example:\n"
  5437. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  5438. "\n"
  5439. "Adjust the value starting with lower values\n"
  5440. "and increasing it if areas that should be cleared are still \n"
  5441. "not cleared.\n"
  5442. "Lower values = faster processing, faster execution on PCB.\n"
  5443. "Higher values = slow processing and slow execution on CNC\n"
  5444. "due of too many paths."
  5445. #: flatcamGUI/FlatCAMGUI.py:4808 flatcamTools/ToolNonCopperClear.py:182
  5446. msgid "Bounding box margin."
  5447. msgstr "Bounding box margin."
  5448. #: flatcamGUI/FlatCAMGUI.py:4817 flatcamTools/ToolNonCopperClear.py:191
  5449. #: flatcamTools/ToolPaint.py:190
  5450. msgid ""
  5451. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  5452. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  5453. "lines."
  5454. msgstr ""
  5455. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  5456. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  5457. "lines."
  5458. #: flatcamGUI/FlatCAMGUI.py:4849 flatcamTools/ToolNonCopperClear.py:223
  5459. #: flatcamTools/ToolPaint.py:222
  5460. msgid "Rest M.:"
  5461. msgstr "Rest M.:"
  5462. #: flatcamGUI/FlatCAMGUI.py:4851
  5463. msgid ""
  5464. "If checked, use 'rest machining'.\n"
  5465. "Basically it will clear copper outside PCB features,\n"
  5466. "using the biggest tool and continue with the next tools,\n"
  5467. "from bigger to smaller, to clear areas of copper that\n"
  5468. "could not be cleared by previous tool.\n"
  5469. "If not checked, use the standard algorithm."
  5470. msgstr ""
  5471. "If checked, use 'rest machining'.\n"
  5472. "Basically it will clear copper outside PCB features,\n"
  5473. "using the biggest tool and continue with the next tools,\n"
  5474. "from bigger to smaller, to clear areas of copper that\n"
  5475. "could not be cleared by previous tool.\n"
  5476. "If not checked, use the standard algorithm."
  5477. #: flatcamGUI/FlatCAMGUI.py:4870
  5478. msgid "Cutout Tool Options"
  5479. msgstr "Cutout Tool Options"
  5480. #: flatcamGUI/FlatCAMGUI.py:4875 flatcamGUI/ObjectUI.py:473
  5481. msgid ""
  5482. "Create toolpaths to cut around\n"
  5483. "the PCB and separate it from\n"
  5484. "the original board."
  5485. msgstr ""
  5486. "Create toolpaths to cut around\n"
  5487. "the PCB and separate it from\n"
  5488. "the original board."
  5489. #: flatcamGUI/FlatCAMGUI.py:4894
  5490. msgid ""
  5491. "Distance from objects at which\n"
  5492. "to draw the cutout."
  5493. msgstr ""
  5494. "Distance from objects at which\n"
  5495. "to draw the cutout."
  5496. #: flatcamGUI/FlatCAMGUI.py:4901 flatcamTools/ToolCutOut.py:96
  5497. msgid "Gap size:"
  5498. msgstr "Gap size:"
  5499. #: flatcamGUI/FlatCAMGUI.py:4903
  5500. msgid ""
  5501. "Size of the gaps in the toolpath\n"
  5502. "that will remain to hold the\n"
  5503. "board in place."
  5504. msgstr ""
  5505. "Size of the gaps in the toolpath\n"
  5506. "that will remain to hold the\n"
  5507. "board in place."
  5508. #: flatcamGUI/FlatCAMGUI.py:4911 flatcamTools/ToolCutOut.py:125
  5509. msgid "Gaps:"
  5510. msgstr "Gaps:"
  5511. #: flatcamGUI/FlatCAMGUI.py:4913
  5512. msgid ""
  5513. "Number of bridge gaps used for the cutout.\n"
  5514. "There can be maximum 8 bridges/gaps.\n"
  5515. "The choices are:\n"
  5516. "- lr - left + right\n"
  5517. "- tb - top + bottom\n"
  5518. "- 4 - left + right +top + bottom\n"
  5519. "- 2lr - 2*left + 2*right\n"
  5520. "- 2tb - 2*top + 2*bottom\n"
  5521. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  5522. msgstr ""
  5523. "Number of bridge gaps used for the cutout.\n"
  5524. "There can be maximum 8 bridges/gaps.\n"
  5525. "The choices are:\n"
  5526. "- lr - left + right\n"
  5527. "- tb - top + bottom\n"
  5528. "- 4 - left + right +top + bottom\n"
  5529. "- 2lr - 2*left + 2*right\n"
  5530. "- 2tb - 2*top + 2*bottom\n"
  5531. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  5532. #: flatcamGUI/FlatCAMGUI.py:4940
  5533. msgid "2Sided Tool Options"
  5534. msgstr "2Sided Tool Options"
  5535. #: flatcamGUI/FlatCAMGUI.py:4945
  5536. msgid ""
  5537. "A tool to help in creating a double sided\n"
  5538. "PCB using alignment holes."
  5539. msgstr ""
  5540. "A tool to help in creating a double sided\n"
  5541. "PCB using alignment holes."
  5542. #: flatcamGUI/FlatCAMGUI.py:4955 flatcamTools/ToolDblSided.py:235
  5543. msgid "Drill diam.:"
  5544. msgstr "Drill diam.:"
  5545. #: flatcamGUI/FlatCAMGUI.py:4957 flatcamTools/ToolDblSided.py:226
  5546. #: flatcamTools/ToolDblSided.py:237
  5547. msgid "Diameter of the drill for the alignment holes."
  5548. msgstr "Diameter of the drill for the alignment holes."
  5549. #: flatcamGUI/FlatCAMGUI.py:4964
  5550. msgid "X"
  5551. msgstr "X"
  5552. #: flatcamGUI/FlatCAMGUI.py:4965
  5553. msgid "Y"
  5554. msgstr "Y"
  5555. #: flatcamGUI/FlatCAMGUI.py:4966 flatcamTools/ToolDblSided.py:120
  5556. msgid "Mirror Axis:"
  5557. msgstr "Mirror Axis:"
  5558. #: flatcamGUI/FlatCAMGUI.py:4968 flatcamTools/ToolDblSided.py:122
  5559. msgid "Mirror vertically (X) or horizontally (Y)."
  5560. msgstr "Mirror vertically (X) or horizontally (Y)."
  5561. #: flatcamGUI/FlatCAMGUI.py:4977
  5562. msgid "Point"
  5563. msgstr "Point"
  5564. #: flatcamGUI/FlatCAMGUI.py:4978
  5565. msgid "Box"
  5566. msgstr "Box"
  5567. #: flatcamGUI/FlatCAMGUI.py:4979 flatcamTools/ToolDblSided.py:133
  5568. msgid "Axis Ref:"
  5569. msgstr "Axis Ref:"
  5570. #: flatcamGUI/FlatCAMGUI.py:4981
  5571. msgid ""
  5572. "The axis should pass through a <b>point</b> or cut\n"
  5573. " a specified <b>box</b> (in a Geometry object) in \n"
  5574. "the middle."
  5575. msgstr ""
  5576. "The axis should pass through a <b>point</b> or cut\n"
  5577. " a specified <b>box</b> (in a Geometry object) in \n"
  5578. "the middle."
  5579. #: flatcamGUI/FlatCAMGUI.py:4997
  5580. msgid "Paint Tool Options"
  5581. msgstr "Paint Tool Options"
  5582. #: flatcamGUI/FlatCAMGUI.py:5004 flatcamGUI/ObjectUI.py:1370
  5583. msgid ""
  5584. "Creates tool paths to cover the\n"
  5585. "whole area of a polygon (remove\n"
  5586. "all copper). You will be asked\n"
  5587. "to click on the desired polygon."
  5588. msgstr ""
  5589. "Creates tool paths to cover the\n"
  5590. "whole area of a polygon (remove\n"
  5591. "all copper). You will be asked\n"
  5592. "to click on the desired polygon."
  5593. #: flatcamGUI/FlatCAMGUI.py:5028
  5594. msgid ""
  5595. "How much (fraction) of the tool\n"
  5596. "width to overlap each tool pass."
  5597. msgstr ""
  5598. "How much (fraction) of the tool\n"
  5599. "width to overlap each tool pass."
  5600. #: flatcamGUI/FlatCAMGUI.py:5082 flatcamTools/ToolPaint.py:237
  5601. msgid "Selection:"
  5602. msgstr "Selection:"
  5603. #: flatcamGUI/FlatCAMGUI.py:5084
  5604. msgid "How to select the polygons to paint."
  5605. msgstr "How to select the polygons to paint."
  5606. #: flatcamGUI/FlatCAMGUI.py:5088
  5607. msgid "Single"
  5608. msgstr "Single"
  5609. #: flatcamGUI/FlatCAMGUI.py:5102
  5610. msgid "Film Tool Options"
  5611. msgstr "Film Tool Options"
  5612. #: flatcamGUI/FlatCAMGUI.py:5107
  5613. msgid ""
  5614. "Create a PCB film from a Gerber or Geometry\n"
  5615. "FlatCAM object.\n"
  5616. "The file is saved in SVG format."
  5617. msgstr ""
  5618. "Create a PCB film from a Gerber or Geometry\n"
  5619. "FlatCAM object.\n"
  5620. "The file is saved in SVG format."
  5621. #: flatcamGUI/FlatCAMGUI.py:5116
  5622. msgid "Pos"
  5623. msgstr "Pos"
  5624. #: flatcamGUI/FlatCAMGUI.py:5117
  5625. msgid "Neg"
  5626. msgstr "Neg"
  5627. #: flatcamGUI/FlatCAMGUI.py:5118 flatcamTools/ToolFilm.py:116
  5628. msgid "Film Type:"
  5629. msgstr "Film Type:"
  5630. #: flatcamGUI/FlatCAMGUI.py:5120 flatcamTools/ToolFilm.py:118
  5631. msgid ""
  5632. "Generate a Positive black film or a Negative film.\n"
  5633. "Positive means that it will print the features\n"
  5634. "with black on a white canvas.\n"
  5635. "Negative means that it will print the features\n"
  5636. "with white on a black canvas.\n"
  5637. "The Film format is SVG."
  5638. msgstr ""
  5639. "Generate a Positive black film or a Negative film.\n"
  5640. "Positive means that it will print the features\n"
  5641. "with black on a white canvas.\n"
  5642. "Negative means that it will print the features\n"
  5643. "with white on a black canvas.\n"
  5644. "The Film format is SVG."
  5645. #: flatcamGUI/FlatCAMGUI.py:5131 flatcamTools/ToolFilm.py:130
  5646. msgid "Border:"
  5647. msgstr "Border:"
  5648. #: flatcamGUI/FlatCAMGUI.py:5133 flatcamTools/ToolFilm.py:132
  5649. msgid ""
  5650. "Specify a border around the object.\n"
  5651. "Only for negative film.\n"
  5652. "It helps if we use as a Box Object the same \n"
  5653. "object as in Film Object. It will create a thick\n"
  5654. "black bar around the actual print allowing for a\n"
  5655. "better delimitation of the outline features which are of\n"
  5656. "white color like the rest and which may confound with the\n"
  5657. "surroundings if not for this border."
  5658. msgstr ""
  5659. "Specify a border around the object.\n"
  5660. "Only for negative film.\n"
  5661. "It helps if we use as a Box Object the same \n"
  5662. "object as in Film Object. It will create a thick\n"
  5663. "black bar around the actual print allowing for a\n"
  5664. "better delimitation of the outline features which are of\n"
  5665. "white color like the rest and which may confound with the\n"
  5666. "surroundings if not for this border."
  5667. #: flatcamGUI/FlatCAMGUI.py:5146 flatcamTools/ToolFilm.py:144
  5668. msgid "Scale Stroke:"
  5669. msgstr "Scale Stroke:"
  5670. #: flatcamGUI/FlatCAMGUI.py:5148 flatcamTools/ToolFilm.py:146
  5671. msgid ""
  5672. "Scale the line stroke thickness of each feature in the SVG file.\n"
  5673. "It means that the line that envelope each SVG feature will be thicker or "
  5674. "thinner,\n"
  5675. "therefore the fine features may be more affected by this parameter."
  5676. msgstr ""
  5677. "Scale the line stroke thickness of each feature in the SVG file.\n"
  5678. "It means that the line that envelope each SVG feature will be thicker or "
  5679. "thinner,\n"
  5680. "therefore the fine features may be more affected by this parameter."
  5681. #: flatcamGUI/FlatCAMGUI.py:5163
  5682. msgid "Panelize Tool Options"
  5683. msgstr "Panelize Tool Options"
  5684. #: flatcamGUI/FlatCAMGUI.py:5168
  5685. msgid ""
  5686. "Create an object that contains an array of (x, y) elements,\n"
  5687. "each element is a copy of the source object spaced\n"
  5688. "at a X distance, Y distance of each other."
  5689. msgstr ""
  5690. "Create an object that contains an array of (x, y) elements,\n"
  5691. "each element is a copy of the source object spaced\n"
  5692. "at a X distance, Y distance of each other."
  5693. #: flatcamGUI/FlatCAMGUI.py:5179 flatcamTools/ToolPanelize.py:113
  5694. msgid "Spacing cols:"
  5695. msgstr "Spacing cols:"
  5696. #: flatcamGUI/FlatCAMGUI.py:5181 flatcamTools/ToolPanelize.py:115
  5697. msgid ""
  5698. "Spacing between columns of the desired panel.\n"
  5699. "In current units."
  5700. msgstr ""
  5701. "Spacing between columns of the desired panel.\n"
  5702. "In current units."
  5703. #: flatcamGUI/FlatCAMGUI.py:5189 flatcamTools/ToolPanelize.py:122
  5704. msgid "Spacing rows:"
  5705. msgstr "Spacing rows:"
  5706. #: flatcamGUI/FlatCAMGUI.py:5191 flatcamTools/ToolPanelize.py:124
  5707. msgid ""
  5708. "Spacing between rows of the desired panel.\n"
  5709. "In current units."
  5710. msgstr ""
  5711. "Spacing between rows of the desired panel.\n"
  5712. "In current units."
  5713. #: flatcamGUI/FlatCAMGUI.py:5199 flatcamTools/ToolPanelize.py:131
  5714. msgid "Columns:"
  5715. msgstr "Columns:"
  5716. #: flatcamGUI/FlatCAMGUI.py:5201 flatcamTools/ToolPanelize.py:133
  5717. msgid "Number of columns of the desired panel"
  5718. msgstr "Number of columns of the desired panel"
  5719. #: flatcamGUI/FlatCAMGUI.py:5208 flatcamTools/ToolPanelize.py:139
  5720. msgid "Rows:"
  5721. msgstr "Rows:"
  5722. #: flatcamGUI/FlatCAMGUI.py:5210 flatcamTools/ToolPanelize.py:141
  5723. msgid "Number of rows of the desired panel"
  5724. msgstr "Number of rows of the desired panel"
  5725. #: flatcamGUI/FlatCAMGUI.py:5216
  5726. msgid "Gerber"
  5727. msgstr "Gerber"
  5728. #: flatcamGUI/FlatCAMGUI.py:5217
  5729. msgid "Geo"
  5730. msgstr "Geo"
  5731. #: flatcamGUI/FlatCAMGUI.py:5218 flatcamTools/ToolPanelize.py:148
  5732. msgid "Panel Type:"
  5733. msgstr "Panel Type:"
  5734. #: flatcamGUI/FlatCAMGUI.py:5220
  5735. msgid ""
  5736. "Choose the type of object for the panel object:\n"
  5737. "- Gerber\n"
  5738. "- Geometry"
  5739. msgstr ""
  5740. "Choose the type of object for the panel object:\n"
  5741. "- Gerber\n"
  5742. "- Geometry"
  5743. #: flatcamGUI/FlatCAMGUI.py:5229
  5744. msgid "Constrain within:"
  5745. msgstr "Constrain within:"
  5746. #: flatcamGUI/FlatCAMGUI.py:5231 flatcamTools/ToolPanelize.py:160
  5747. msgid ""
  5748. "Area define by DX and DY within to constrain the panel.\n"
  5749. "DX and DY values are in current units.\n"
  5750. "Regardless of how many columns and rows are desired,\n"
  5751. "the final panel will have as many columns and rows as\n"
  5752. "they fit completely within selected area."
  5753. msgstr ""
  5754. "Area define by DX and DY within to constrain the panel.\n"
  5755. "DX and DY values are in current units.\n"
  5756. "Regardless of how many columns and rows are desired,\n"
  5757. "the final panel will have as many columns and rows as\n"
  5758. "they fit completely within selected area."
  5759. #: flatcamGUI/FlatCAMGUI.py:5240 flatcamTools/ToolPanelize.py:169
  5760. msgid "Width (DX):"
  5761. msgstr "Width (DX):"
  5762. #: flatcamGUI/FlatCAMGUI.py:5242 flatcamTools/ToolPanelize.py:171
  5763. msgid ""
  5764. "The width (DX) within which the panel must fit.\n"
  5765. "In current units."
  5766. msgstr ""
  5767. "The width (DX) within which the panel must fit.\n"
  5768. "In current units."
  5769. #: flatcamGUI/FlatCAMGUI.py:5249 flatcamTools/ToolPanelize.py:177
  5770. msgid "Height (DY):"
  5771. msgstr "Height (DY):"
  5772. #: flatcamGUI/FlatCAMGUI.py:5251 flatcamTools/ToolPanelize.py:179
  5773. msgid ""
  5774. "The height (DY)within which the panel must fit.\n"
  5775. "In current units."
  5776. msgstr ""
  5777. "The height (DY)within which the panel must fit.\n"
  5778. "In current units."
  5779. #: flatcamGUI/FlatCAMGUI.py:5265
  5780. msgid "Calculators Tool Options"
  5781. msgstr "Calculators Tool Options"
  5782. #: flatcamGUI/FlatCAMGUI.py:5268
  5783. msgid "<b>V-Shape Tool Calculator:</b>"
  5784. msgstr "<b>V-Shape Tool Calculator:</b>"
  5785. #: flatcamGUI/FlatCAMGUI.py:5270
  5786. msgid ""
  5787. "Calculate the tool diameter for a given V-shape tool,\n"
  5788. "having the tip diameter, tip angle and\n"
  5789. "depth-of-cut as parameters."
  5790. msgstr ""
  5791. "Calculate the tool diameter for a given V-shape tool,\n"
  5792. "having the tip diameter, tip angle and\n"
  5793. "depth-of-cut as parameters."
  5794. #: flatcamGUI/FlatCAMGUI.py:5281 flatcamTools/ToolCalculators.py:94
  5795. msgid "Tip Diameter:"
  5796. msgstr "Tip Diameter:"
  5797. #: flatcamGUI/FlatCAMGUI.py:5283
  5798. msgid ""
  5799. "This is the tool tip diameter.\n"
  5800. "It is specified by manufacturer."
  5801. msgstr ""
  5802. "This is the tool tip diameter.\n"
  5803. "It is specified by manufacturer."
  5804. #: flatcamGUI/FlatCAMGUI.py:5291
  5805. msgid "Tip angle:"
  5806. msgstr "Tip angle:"
  5807. #: flatcamGUI/FlatCAMGUI.py:5293
  5808. msgid ""
  5809. "This is the angle on the tip of the tool.\n"
  5810. "It is specified by manufacturer."
  5811. msgstr ""
  5812. "This is the angle on the tip of the tool.\n"
  5813. "It is specified by manufacturer."
  5814. #: flatcamGUI/FlatCAMGUI.py:5303
  5815. msgid ""
  5816. "This is depth to cut into material.\n"
  5817. "In the CNCJob object it is the CutZ parameter."
  5818. msgstr ""
  5819. "This is depth to cut into material.\n"
  5820. "In the CNCJob object it is the CutZ parameter."
  5821. #: flatcamGUI/FlatCAMGUI.py:5310
  5822. msgid "<b>ElectroPlating Calculator:</b>"
  5823. msgstr "<b>ElectroPlating Calculator:</b>"
  5824. #: flatcamGUI/FlatCAMGUI.py:5312 flatcamTools/ToolCalculators.py:152
  5825. msgid ""
  5826. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  5827. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  5828. "chloride."
  5829. msgstr ""
  5830. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  5831. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  5832. "chloride."
  5833. #: flatcamGUI/FlatCAMGUI.py:5322 flatcamTools/ToolCalculators.py:161
  5834. msgid "Board Length:"
  5835. msgstr "Board Length:"
  5836. #: flatcamGUI/FlatCAMGUI.py:5324 flatcamTools/ToolCalculators.py:165
  5837. msgid "This is the board length. In centimeters."
  5838. msgstr "This is the board length. In centimeters."
  5839. #: flatcamGUI/FlatCAMGUI.py:5330 flatcamTools/ToolCalculators.py:167
  5840. msgid "Board Width:"
  5841. msgstr "Board Width:"
  5842. #: flatcamGUI/FlatCAMGUI.py:5332 flatcamTools/ToolCalculators.py:171
  5843. msgid "This is the board width.In centimeters."
  5844. msgstr "This is the board width.In centimeters."
  5845. #: flatcamGUI/FlatCAMGUI.py:5337 flatcamTools/ToolCalculators.py:173
  5846. msgid "Current Density:"
  5847. msgstr "Current Density:"
  5848. #: flatcamGUI/FlatCAMGUI.py:5340 flatcamTools/ToolCalculators.py:177
  5849. msgid ""
  5850. "Current density to pass through the board. \n"
  5851. "In Amps per Square Feet ASF."
  5852. msgstr ""
  5853. "Current density to pass through the board. \n"
  5854. "In Amps per Square Feet ASF."
  5855. #: flatcamGUI/FlatCAMGUI.py:5346 flatcamTools/ToolCalculators.py:181
  5856. msgid "Copper Growth:"
  5857. msgstr "Copper Growth:"
  5858. #: flatcamGUI/FlatCAMGUI.py:5349 flatcamTools/ToolCalculators.py:185
  5859. msgid ""
  5860. "How thick the copper growth is intended to be.\n"
  5861. "In microns."
  5862. msgstr ""
  5863. "How thick the copper growth is intended to be.\n"
  5864. "In microns."
  5865. #: flatcamGUI/FlatCAMGUI.py:5362
  5866. msgid "Transform Tool Options"
  5867. msgstr "Transform Tool Options"
  5868. #: flatcamGUI/FlatCAMGUI.py:5367
  5869. msgid ""
  5870. "Various transformations that can be applied\n"
  5871. "on a FlatCAM object."
  5872. msgstr ""
  5873. "Various transformations that can be applied\n"
  5874. "on a FlatCAM object."
  5875. #: flatcamGUI/FlatCAMGUI.py:5377
  5876. msgid "Rotate Angle:"
  5877. msgstr "Rotate Angle:"
  5878. #: flatcamGUI/FlatCAMGUI.py:5379
  5879. msgid "Angle for rotation. In degrees."
  5880. msgstr "Angle for rotation. In degrees."
  5881. #: flatcamGUI/FlatCAMGUI.py:5386
  5882. msgid "Skew_X angle:"
  5883. msgstr "Skew_X angle:"
  5884. #: flatcamGUI/FlatCAMGUI.py:5388
  5885. msgid "Angle for Skew/Shear on X axis. In degrees."
  5886. msgstr "Angle for Skew/Shear on X axis. In degrees."
  5887. #: flatcamGUI/FlatCAMGUI.py:5395
  5888. msgid "Skew_Y angle:"
  5889. msgstr "Skew_Y angle:"
  5890. #: flatcamGUI/FlatCAMGUI.py:5397
  5891. msgid "Angle for Skew/Shear on Y axis. In degrees."
  5892. msgstr "Angle for Skew/Shear on Y axis. In degrees."
  5893. #: flatcamGUI/FlatCAMGUI.py:5404
  5894. msgid "Scale_X factor:"
  5895. msgstr "Scale_X factor:"
  5896. #: flatcamGUI/FlatCAMGUI.py:5406
  5897. msgid "Factor for scaling on X axis."
  5898. msgstr "Factor for scaling on X axis."
  5899. #: flatcamGUI/FlatCAMGUI.py:5413
  5900. msgid "Scale_Y factor:"
  5901. msgstr "Scale_Y factor:"
  5902. #: flatcamGUI/FlatCAMGUI.py:5415
  5903. msgid "Factor for scaling on Y axis."
  5904. msgstr "Factor for scaling on Y axis."
  5905. #: flatcamGUI/FlatCAMGUI.py:5423
  5906. msgid ""
  5907. "Scale the selected object(s)\n"
  5908. "using the Scale_X factor for both axis."
  5909. msgstr ""
  5910. "Scale the selected object(s)\n"
  5911. "using the Scale_X factor for both axis."
  5912. #: flatcamGUI/FlatCAMGUI.py:5431 flatcamTools/ToolTransform.py:210
  5913. msgid ""
  5914. "Scale the selected object(s)\n"
  5915. "using the origin reference when checked,\n"
  5916. "and the center of the biggest bounding box\n"
  5917. "of the selected objects when unchecked."
  5918. msgstr ""
  5919. "Scale the selected object(s)\n"
  5920. "using the origin reference when checked,\n"
  5921. "and the center of the biggest bounding box\n"
  5922. "of the selected objects when unchecked."
  5923. #: flatcamGUI/FlatCAMGUI.py:5440
  5924. msgid "Offset_X val:"
  5925. msgstr "Offset_X val:"
  5926. #: flatcamGUI/FlatCAMGUI.py:5442
  5927. msgid "Distance to offset on X axis. In current units."
  5928. msgstr "Distance to offset on X axis. In current units."
  5929. #: flatcamGUI/FlatCAMGUI.py:5449
  5930. msgid "Offset_Y val:"
  5931. msgstr "Offset_Y val:"
  5932. #: flatcamGUI/FlatCAMGUI.py:5451
  5933. msgid "Distance to offset on Y axis. In current units."
  5934. msgstr "Distance to offset on Y axis. In current units."
  5935. #: flatcamGUI/FlatCAMGUI.py:5457
  5936. msgid "Mirror Reference"
  5937. msgstr "Mirror Reference"
  5938. #: flatcamGUI/FlatCAMGUI.py:5459 flatcamTools/ToolTransform.py:314
  5939. msgid ""
  5940. "Flip the selected object(s)\n"
  5941. "around the point in Point Entry Field.\n"
  5942. "\n"
  5943. "The point coordinates can be captured by\n"
  5944. "left click on canvas together with pressing\n"
  5945. "SHIFT key. \n"
  5946. "Then click Add button to insert coordinates.\n"
  5947. "Or enter the coords in format (x, y) in the\n"
  5948. "Point Entry field and click Flip on X(Y)"
  5949. msgstr ""
  5950. "Flip the selected object(s)\n"
  5951. "around the point in Point Entry Field.\n"
  5952. "\n"
  5953. "The point coordinates can be captured by\n"
  5954. "left click on canvas together with pressing\n"
  5955. "SHIFT key. \n"
  5956. "Then click Add button to insert coordinates.\n"
  5957. "Or enter the coords in format (x, y) in the\n"
  5958. "Point Entry field and click Flip on X(Y)"
  5959. #: flatcamGUI/FlatCAMGUI.py:5470
  5960. msgid " Mirror Ref. Point:"
  5961. msgstr " Mirror Ref. Point:"
  5962. #: flatcamGUI/FlatCAMGUI.py:5472 flatcamTools/ToolTransform.py:327
  5963. msgid ""
  5964. "Coordinates in format (x, y) used as reference for mirroring.\n"
  5965. "The 'x' in (x, y) will be used when using Flip on X and\n"
  5966. "the 'y' in (x, y) will be used when using Flip on Y and"
  5967. msgstr ""
  5968. "Coordinates in format (x, y) used as reference for mirroring.\n"
  5969. "The 'x' in (x, y) will be used when using Flip on X and\n"
  5970. "the 'y' in (x, y) will be used when using Flip on Y and"
  5971. #: flatcamGUI/FlatCAMGUI.py:5489
  5972. msgid "SolderPaste Tool Options"
  5973. msgstr "SolderPaste Tool Options"
  5974. #: flatcamGUI/FlatCAMGUI.py:5494
  5975. msgid ""
  5976. "A tool to create GCode for dispensing\n"
  5977. "solder paste onto a PCB."
  5978. msgstr ""
  5979. "A tool to create GCode for dispensing\n"
  5980. "solder paste onto a PCB."
  5981. #: flatcamGUI/FlatCAMGUI.py:5505
  5982. msgid "Diameters of nozzle tools, separated by ','"
  5983. msgstr "Diameters of nozzle tools, separated by ','"
  5984. #: flatcamGUI/FlatCAMGUI.py:5512
  5985. msgid "<b>New Nozzle Dia:</b>"
  5986. msgstr "<b>New Nozzle Dia:</b>"
  5987. #: flatcamGUI/FlatCAMGUI.py:5514 flatcamTools/ToolSolderPaste.py:103
  5988. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  5989. msgstr "Diameter for the new Nozzle tool to add in the Tool Table"
  5990. #: flatcamGUI/FlatCAMGUI.py:5522 flatcamTools/ToolSolderPaste.py:166
  5991. msgid "Z Dispense Start:"
  5992. msgstr "Z Dispense Start:"
  5993. #: flatcamGUI/FlatCAMGUI.py:5524 flatcamTools/ToolSolderPaste.py:168
  5994. msgid "The height (Z) when solder paste dispensing starts."
  5995. msgstr "The height (Z) when solder paste dispensing starts."
  5996. #: flatcamGUI/FlatCAMGUI.py:5531 flatcamTools/ToolSolderPaste.py:174
  5997. msgid "Z Dispense:"
  5998. msgstr "Z Dispense:"
  5999. #: flatcamGUI/FlatCAMGUI.py:5533 flatcamTools/ToolSolderPaste.py:176
  6000. msgid "The height (Z) when doing solder paste dispensing."
  6001. msgstr "The height (Z) when doing solder paste dispensing."
  6002. #: flatcamGUI/FlatCAMGUI.py:5540 flatcamTools/ToolSolderPaste.py:183
  6003. msgid "Z Dispense Stop:"
  6004. msgstr "Z Dispense Stop:"
  6005. #: flatcamGUI/FlatCAMGUI.py:5542 flatcamTools/ToolSolderPaste.py:185
  6006. msgid "The height (Z) when solder paste dispensing stops."
  6007. msgstr "The height (Z) when solder paste dispensing stops."
  6008. #: flatcamGUI/FlatCAMGUI.py:5549 flatcamTools/ToolSolderPaste.py:191
  6009. msgid "Z Travel:"
  6010. msgstr "Z Travel:"
  6011. #: flatcamGUI/FlatCAMGUI.py:5551 flatcamTools/ToolSolderPaste.py:193
  6012. msgid ""
  6013. "The height (Z) for travel between pads\n"
  6014. "(without dispensing solder paste)."
  6015. msgstr ""
  6016. "The height (Z) for travel between pads\n"
  6017. "(without dispensing solder paste)."
  6018. #: flatcamGUI/FlatCAMGUI.py:5559 flatcamTools/ToolSolderPaste.py:200
  6019. msgid "Z Toolchange:"
  6020. msgstr "Z Toolchange:"
  6021. #: flatcamGUI/FlatCAMGUI.py:5561 flatcamTools/ToolSolderPaste.py:202
  6022. msgid "The height (Z) for tool (nozzle) change."
  6023. msgstr "The height (Z) for tool (nozzle) change."
  6024. #: flatcamGUI/FlatCAMGUI.py:5568 flatcamTools/ToolSolderPaste.py:208
  6025. msgid "XY Toolchange:"
  6026. msgstr "XY Toolchange:"
  6027. #: flatcamGUI/FlatCAMGUI.py:5570 flatcamTools/ToolSolderPaste.py:210
  6028. msgid ""
  6029. "The X,Y location for tool (nozzle) change.\n"
  6030. "The format is (x, y) where x and y are real numbers."
  6031. msgstr ""
  6032. "The X,Y location for tool (nozzle) change.\n"
  6033. "The format is (x, y) where x and y are real numbers."
  6034. #: flatcamGUI/FlatCAMGUI.py:5578 flatcamTools/ToolSolderPaste.py:217
  6035. msgid "Feedrate X-Y:"
  6036. msgstr "Feedrate X-Y:"
  6037. #: flatcamGUI/FlatCAMGUI.py:5580 flatcamTools/ToolSolderPaste.py:219
  6038. msgid "Feedrate (speed) while moving on the X-Y plane."
  6039. msgstr "Feedrate (speed) while moving on the X-Y plane."
  6040. #: flatcamGUI/FlatCAMGUI.py:5587 flatcamTools/ToolSolderPaste.py:225
  6041. msgid "Feedrate Z:"
  6042. msgstr "Feedrate Z:"
  6043. #: flatcamGUI/FlatCAMGUI.py:5589 flatcamTools/ToolSolderPaste.py:227
  6044. msgid ""
  6045. "Feedrate (speed) while moving vertically\n"
  6046. "(on Z plane)."
  6047. msgstr ""
  6048. "Feedrate (speed) while moving vertically\n"
  6049. "(on Z plane)."
  6050. #: flatcamGUI/FlatCAMGUI.py:5597 flatcamTools/ToolSolderPaste.py:234
  6051. msgid "Feedrate Z Dispense:"
  6052. msgstr "Feedrate Z Dispense:"
  6053. #: flatcamGUI/FlatCAMGUI.py:5599 flatcamTools/ToolSolderPaste.py:236
  6054. msgid ""
  6055. "Feedrate (speed) while moving up vertically\n"
  6056. " to Dispense position (on Z plane)."
  6057. msgstr ""
  6058. "Feedrate (speed) while moving up vertically\n"
  6059. " to Dispense position (on Z plane)."
  6060. #: flatcamGUI/FlatCAMGUI.py:5607 flatcamTools/ToolSolderPaste.py:243
  6061. msgid "Spindle Speed FWD:"
  6062. msgstr "Spindle Speed FWD:"
  6063. #: flatcamGUI/FlatCAMGUI.py:5609 flatcamTools/ToolSolderPaste.py:245
  6064. msgid ""
  6065. "The dispenser speed while pushing solder paste\n"
  6066. "through the dispenser nozzle."
  6067. msgstr ""
  6068. "The dispenser speed while pushing solder paste\n"
  6069. "through the dispenser nozzle."
  6070. #: flatcamGUI/FlatCAMGUI.py:5617 flatcamTools/ToolSolderPaste.py:252
  6071. msgid "Dwell FWD:"
  6072. msgstr "Dwell FWD:"
  6073. #: flatcamGUI/FlatCAMGUI.py:5619 flatcamTools/ToolSolderPaste.py:254
  6074. msgid "Pause after solder dispensing."
  6075. msgstr "Pause after solder dispensing."
  6076. #: flatcamGUI/FlatCAMGUI.py:5626 flatcamTools/ToolSolderPaste.py:260
  6077. msgid "Spindle Speed REV:"
  6078. msgstr "Spindle Speed REV:"
  6079. #: flatcamGUI/FlatCAMGUI.py:5628 flatcamTools/ToolSolderPaste.py:262
  6080. msgid ""
  6081. "The dispenser speed while retracting solder paste\n"
  6082. "through the dispenser nozzle."
  6083. msgstr ""
  6084. "The dispenser speed while retracting solder paste\n"
  6085. "through the dispenser nozzle."
  6086. #: flatcamGUI/FlatCAMGUI.py:5636 flatcamTools/ToolSolderPaste.py:269
  6087. msgid "Dwell REV:"
  6088. msgstr "Dwell REV:"
  6089. #: flatcamGUI/FlatCAMGUI.py:5638 flatcamTools/ToolSolderPaste.py:271
  6090. msgid ""
  6091. "Pause after solder paste dispenser retracted,\n"
  6092. "to allow pressure equilibrium."
  6093. msgstr ""
  6094. "Pause after solder paste dispenser retracted,\n"
  6095. "to allow pressure equilibrium."
  6096. #: flatcamGUI/FlatCAMGUI.py:5645 flatcamTools/ToolSolderPaste.py:277
  6097. msgid "PostProcessors:"
  6098. msgstr "PostProcessors:"
  6099. #: flatcamGUI/FlatCAMGUI.py:5647 flatcamTools/ToolSolderPaste.py:279
  6100. msgid "Files that control the GCode generation."
  6101. msgstr "Files that control the GCode generation."
  6102. #: flatcamGUI/FlatCAMGUI.py:5677 flatcamGUI/FlatCAMGUI.py:5683
  6103. msgid "Idle."
  6104. msgstr "Idle."
  6105. #: flatcamGUI/FlatCAMGUI.py:5707
  6106. msgid "Application started ..."
  6107. msgstr "Application started ..."
  6108. #: flatcamGUI/FlatCAMGUI.py:5708
  6109. msgid "Hello!"
  6110. msgstr "Hello!"
  6111. #: flatcamGUI/ObjectUI.py:33
  6112. msgid "FlatCAM Object"
  6113. msgstr "FlatCAM Object"
  6114. #: flatcamGUI/ObjectUI.py:58
  6115. msgid ""
  6116. "BASIC is suitable for a beginner. Many parameters\n"
  6117. "are hidden from the user in this mode.\n"
  6118. "ADVANCED mode will make available all parameters.\n"
  6119. "\n"
  6120. "To change the application LEVEL, go to:\n"
  6121. "Edit -> Preferences -> General and check:\n"
  6122. "'APP. LEVEL' radio button."
  6123. msgstr ""
  6124. "BASIC is suitable for a beginner. Many parameters\n"
  6125. "are hidden from the user in this mode.\n"
  6126. "ADVANCED mode will make available all parameters.\n"
  6127. "\n"
  6128. "To change the application LEVEL, go to:\n"
  6129. "Edit -> Preferences -> General and check:\n"
  6130. "'APP. LEVEL' radio button."
  6131. #: flatcamGUI/ObjectUI.py:79
  6132. msgid "<b>Scale:</b>"
  6133. msgstr "<b>Scale:</b>"
  6134. #: flatcamGUI/ObjectUI.py:81
  6135. msgid "Change the size of the object."
  6136. msgstr "Change the size of the object."
  6137. #: flatcamGUI/ObjectUI.py:89
  6138. msgid "Factor:"
  6139. msgstr "Factor:"
  6140. #: flatcamGUI/ObjectUI.py:91
  6141. msgid ""
  6142. "Factor by which to multiply\n"
  6143. "geometric features of this object."
  6144. msgstr ""
  6145. "Factor by which to multiply\n"
  6146. "geometric features of this object."
  6147. #: flatcamGUI/ObjectUI.py:102
  6148. msgid "Perform scaling operation."
  6149. msgstr "Perform scaling operation."
  6150. #: flatcamGUI/ObjectUI.py:108
  6151. msgid "<b>Offset:</b>"
  6152. msgstr "<b>Offset:</b>"
  6153. #: flatcamGUI/ObjectUI.py:110
  6154. msgid "Change the position of this object."
  6155. msgstr "Change the position of this object."
  6156. #: flatcamGUI/ObjectUI.py:117
  6157. msgid "Vector:"
  6158. msgstr "Vector:"
  6159. #: flatcamGUI/ObjectUI.py:119
  6160. msgid ""
  6161. "Amount by which to move the object\n"
  6162. "in the x and y axes in (x, y) format."
  6163. msgstr ""
  6164. "Amount by which to move the object\n"
  6165. "in the x and y axes in (x, y) format."
  6166. #: flatcamGUI/ObjectUI.py:129
  6167. msgid "Perform the offset operation."
  6168. msgstr "Perform the offset operation."
  6169. #: flatcamGUI/ObjectUI.py:143
  6170. msgid "Gerber Object"
  6171. msgstr "Gerber Object"
  6172. #: flatcamGUI/ObjectUI.py:156
  6173. msgid "Solid "
  6174. msgstr "Solid "
  6175. #: flatcamGUI/ObjectUI.py:164
  6176. msgid "M-Color "
  6177. msgstr "M-Color "
  6178. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:588
  6179. #: flatcamGUI/ObjectUI.py:907 flatcamGUI/ObjectUI.py:1437
  6180. msgid "<b>Name:</b>"
  6181. msgstr "<b>Name:</b>"
  6182. #: flatcamGUI/ObjectUI.py:192
  6183. msgid "<b>Apertures:</b>"
  6184. msgstr "<b>Apertures:</b>"
  6185. #: flatcamGUI/ObjectUI.py:194
  6186. msgid "Apertures Table for the Gerber Object."
  6187. msgstr "Apertures Table for the Gerber Object."
  6188. #: flatcamGUI/ObjectUI.py:203
  6189. msgid ""
  6190. "Toggle the display of the Gerber Apertures Table.\n"
  6191. "When unchecked, it will delete all mark shapes\n"
  6192. "that are drawn on canvas."
  6193. msgstr ""
  6194. "Toggle the display of the Gerber Apertures Table.\n"
  6195. "When unchecked, it will delete all mark shapes\n"
  6196. "that are drawn on canvas."
  6197. #: flatcamGUI/ObjectUI.py:214
  6198. msgid "Mark All"
  6199. msgstr "Mark All"
  6200. #: flatcamGUI/ObjectUI.py:216
  6201. msgid ""
  6202. "When checked it will display all the apertures.\n"
  6203. "When unchecked, it will delete all mark shapes\n"
  6204. "that are drawn on canvas."
  6205. msgstr ""
  6206. "When checked it will display all the apertures.\n"
  6207. "When unchecked, it will delete all mark shapes\n"
  6208. "that are drawn on canvas."
  6209. #: flatcamGUI/ObjectUI.py:228
  6210. msgid "Code"
  6211. msgstr "Code"
  6212. #: flatcamGUI/ObjectUI.py:228 flatcamGUI/ObjectUI.py:959
  6213. #: flatcamGUI/ObjectUI.py:1517
  6214. msgid "Type"
  6215. msgstr "Type"
  6216. #: flatcamGUI/ObjectUI.py:228
  6217. msgid "Size"
  6218. msgstr "Size"
  6219. #: flatcamGUI/ObjectUI.py:228
  6220. msgid "Dim"
  6221. msgstr "Dim"
  6222. #: flatcamGUI/ObjectUI.py:232
  6223. msgid "Index"
  6224. msgstr "Index"
  6225. #: flatcamGUI/ObjectUI.py:234
  6226. msgid "Aperture Code"
  6227. msgstr "Aperture Code"
  6228. #: flatcamGUI/ObjectUI.py:236
  6229. msgid "Type of aperture: circular, rectangle, macros etc"
  6230. msgstr "Type of aperture: circular, rectangle, macros etc"
  6231. #: flatcamGUI/ObjectUI.py:238
  6232. msgid "Aperture Size:"
  6233. msgstr "Aperture Size:"
  6234. #: flatcamGUI/ObjectUI.py:240
  6235. msgid ""
  6236. "Aperture Dimensions:\n"
  6237. " - (width, height) for R, O type.\n"
  6238. " - (dia, nVertices) for P type"
  6239. msgstr ""
  6240. "Aperture Dimensions:\n"
  6241. " - (width, height) for R, O type.\n"
  6242. " - (dia, nVertices) for P type"
  6243. #: flatcamGUI/ObjectUI.py:244
  6244. msgid "Mark the aperture instances on canvas."
  6245. msgstr "Mark the aperture instances on canvas."
  6246. #: flatcamGUI/ObjectUI.py:252
  6247. msgid "Scale Factor:"
  6248. msgstr "Scale Factor:"
  6249. #: flatcamGUI/ObjectUI.py:267
  6250. msgid "Perform scaling operation on the selected apertures."
  6251. msgstr "Perform scaling operation on the selected apertures."
  6252. #: flatcamGUI/ObjectUI.py:273
  6253. msgid "Buffer Factor:"
  6254. msgstr "Buffer Factor:"
  6255. #: flatcamGUI/ObjectUI.py:286
  6256. msgid "Buffer"
  6257. msgstr "Buffer"
  6258. #: flatcamGUI/ObjectUI.py:288
  6259. msgid "Perform buffer operation on the selected apertures."
  6260. msgstr "Perform buffer operation on the selected apertures."
  6261. #: flatcamGUI/ObjectUI.py:296
  6262. msgid "<b>Generate new Gerber Object:</b>"
  6263. msgstr "<b>Generate new Gerber Object:</b>"
  6264. #: flatcamGUI/ObjectUI.py:298
  6265. msgid "Will generate a new Gerber object from the changed apertures."
  6266. msgstr "Will generate a new Gerber object from the changed apertures."
  6267. #: flatcamGUI/ObjectUI.py:304
  6268. msgid "Go"
  6269. msgstr "Go"
  6270. #: flatcamGUI/ObjectUI.py:306
  6271. msgid ""
  6272. "Will generate a new Gerber object from the changed apertures.\n"
  6273. "This new object can then be isolated etc."
  6274. msgstr ""
  6275. "Will generate a new Gerber object from the changed apertures.\n"
  6276. "This new object can then be isolated etc."
  6277. #: flatcamGUI/ObjectUI.py:333
  6278. msgid ""
  6279. "Diameter of the cutting tool.\n"
  6280. "If you want to have an isolation path\n"
  6281. "inside the actual shape of the Gerber\n"
  6282. "feature, use a negative value for\n"
  6283. "this parameter."
  6284. msgstr ""
  6285. "Diameter of the cutting tool.\n"
  6286. "If you want to have an isolation path\n"
  6287. "inside the actual shape of the Gerber\n"
  6288. "feature, use a negative value for\n"
  6289. "this parameter."
  6290. #: flatcamGUI/ObjectUI.py:344
  6291. msgid "Passes:"
  6292. msgstr "Passes:"
  6293. #: flatcamGUI/ObjectUI.py:378
  6294. msgid "Combine"
  6295. msgstr "Combine"
  6296. #: flatcamGUI/ObjectUI.py:394
  6297. msgid "<b>Generate Isolation Geometry:</b>"
  6298. msgstr "<b>Generate Isolation Geometry:</b>"
  6299. #: flatcamGUI/ObjectUI.py:396
  6300. msgid ""
  6301. "Create a Geometry object with toolpaths to cut \n"
  6302. "isolation outside, inside or on both sides of the\n"
  6303. "object. For a Gerber object outside means outside\n"
  6304. "of the Gerber feature and inside means inside of\n"
  6305. "the Gerber feature, if possible at all. This means\n"
  6306. "that only if the Gerber feature has openings inside, they\n"
  6307. "will be isolated. If what is wanted is to cut isolation\n"
  6308. "inside the actual Gerber feature, use a negative tool\n"
  6309. "diameter above."
  6310. msgstr ""
  6311. "Create a Geometry object with toolpaths to cut \n"
  6312. "isolation outside, inside or on both sides of the\n"
  6313. "object. For a Gerber object outside means outside\n"
  6314. "of the Gerber feature and inside means inside of\n"
  6315. "the Gerber feature, if possible at all. This means\n"
  6316. "that only if the Gerber feature has openings inside, they\n"
  6317. "will be isolated. If what is wanted is to cut isolation\n"
  6318. "inside the actual Gerber feature, use a negative tool\n"
  6319. "diameter above."
  6320. #: flatcamGUI/ObjectUI.py:415
  6321. msgid "FULL Geo"
  6322. msgstr "FULL Geo"
  6323. #: flatcamGUI/ObjectUI.py:417
  6324. msgid ""
  6325. "Create the Geometry Object\n"
  6326. "for isolation routing. It contains both\n"
  6327. "the interiors and exteriors geometry."
  6328. msgstr ""
  6329. "Create the Geometry Object\n"
  6330. "for isolation routing. It contains both\n"
  6331. "the interiors and exteriors geometry."
  6332. #: flatcamGUI/ObjectUI.py:426
  6333. msgid "Ext Geo"
  6334. msgstr "Ext Geo"
  6335. #: flatcamGUI/ObjectUI.py:428
  6336. msgid ""
  6337. "Create the Geometry Object\n"
  6338. "for isolation routing containing\n"
  6339. "only the exteriors geometry."
  6340. msgstr ""
  6341. "Create the Geometry Object\n"
  6342. "for isolation routing containing\n"
  6343. "only the exteriors geometry."
  6344. #: flatcamGUI/ObjectUI.py:435
  6345. msgid "Int Geo"
  6346. msgstr "Int Geo"
  6347. #: flatcamGUI/ObjectUI.py:437
  6348. msgid ""
  6349. "Create the Geometry Object\n"
  6350. "for isolation routing containing\n"
  6351. "only the interiors geometry."
  6352. msgstr ""
  6353. "Create the Geometry Object\n"
  6354. "for isolation routing containing\n"
  6355. "only the interiors geometry."
  6356. #: flatcamGUI/ObjectUI.py:455
  6357. msgid "<b>Clear N-copper:</b>"
  6358. msgstr "<b>Clear N-copper:</b>"
  6359. #: flatcamGUI/ObjectUI.py:465 flatcamTools/ToolNonCopperClear.py:239
  6360. msgid ""
  6361. "Create the Geometry Object\n"
  6362. "for non-copper routing."
  6363. msgstr ""
  6364. "Create the Geometry Object\n"
  6365. "for non-copper routing."
  6366. #: flatcamGUI/ObjectUI.py:471
  6367. msgid "<b>Board cutout:</b>"
  6368. msgstr "<b>Board cutout:</b>"
  6369. #: flatcamGUI/ObjectUI.py:479
  6370. msgid "Cutout Tool"
  6371. msgstr "Cutout Tool"
  6372. #: flatcamGUI/ObjectUI.py:481
  6373. msgid ""
  6374. "Generate the geometry for\n"
  6375. "the board cutout."
  6376. msgstr ""
  6377. "Generate the geometry for\n"
  6378. "the board cutout."
  6379. #: flatcamGUI/ObjectUI.py:487
  6380. msgid "<b>Non-copper regions:</b>"
  6381. msgstr "<b>Non-copper regions:</b>"
  6382. #: flatcamGUI/ObjectUI.py:489
  6383. msgid ""
  6384. "Create polygons covering the\n"
  6385. "areas without copper on the PCB.\n"
  6386. "Equivalent to the inverse of this\n"
  6387. "object. Can be used to remove all\n"
  6388. "copper from a specified region."
  6389. msgstr ""
  6390. "Create polygons covering the\n"
  6391. "areas without copper on the PCB.\n"
  6392. "Equivalent to the inverse of this\n"
  6393. "object. Can be used to remove all\n"
  6394. "copper from a specified region."
  6395. #: flatcamGUI/ObjectUI.py:514 flatcamGUI/ObjectUI.py:545
  6396. msgid "Rounded Geo"
  6397. msgstr "Rounded Geo"
  6398. #: flatcamGUI/ObjectUI.py:516
  6399. msgid "Resulting geometry will have rounded corners."
  6400. msgstr "Resulting geometry will have rounded corners."
  6401. #: flatcamGUI/ObjectUI.py:521 flatcamGUI/ObjectUI.py:555
  6402. #: flatcamTools/ToolCutOut.py:159 flatcamTools/ToolCutOut.py:179
  6403. #: flatcamTools/ToolCutOut.py:230 flatcamTools/ToolSolderPaste.py:127
  6404. msgid "Generate Geo"
  6405. msgstr "Generate Geo"
  6406. #: flatcamGUI/ObjectUI.py:527
  6407. msgid ""
  6408. "Create a geometry surrounding the Gerber object.\n"
  6409. "Square shape."
  6410. msgstr ""
  6411. "Create a geometry surrounding the Gerber object.\n"
  6412. "Square shape."
  6413. #: flatcamGUI/ObjectUI.py:557
  6414. msgid "Generate the Geometry object."
  6415. msgstr "Generate the Geometry object."
  6416. #: flatcamGUI/ObjectUI.py:568
  6417. msgid "Excellon Object"
  6418. msgstr "Excellon Object"
  6419. #: flatcamGUI/ObjectUI.py:579
  6420. msgid "Solid circles."
  6421. msgstr "Solid circles."
  6422. #: flatcamGUI/ObjectUI.py:607 flatcamGUI/ObjectUI.py:926
  6423. msgid "<b>Tools Table</b>"
  6424. msgstr "<b>Tools Table</b>"
  6425. #: flatcamGUI/ObjectUI.py:628
  6426. msgid "Offset Z"
  6427. msgstr "Offset Z"
  6428. #: flatcamGUI/ObjectUI.py:632
  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. "This is the Tool Number.\n"
  6435. "When ToolChange is checked, on toolchange event this value\n"
  6436. "will be showed as a T1, T2 ... Tn in the Machine Code."
  6437. #: flatcamGUI/ObjectUI.py:636 flatcamGUI/ObjectUI.py:972
  6438. #: flatcamTools/ToolNonCopperClear.py:96 flatcamTools/ToolPaint.py:94
  6439. msgid ""
  6440. "Tool Diameter. It's value (in current FlatCAM units) \n"
  6441. "is the cut width into the material."
  6442. msgstr ""
  6443. "Tool Diameter. It's value (in current FlatCAM units) \n"
  6444. "is the cut width into the material."
  6445. #: flatcamGUI/ObjectUI.py:639
  6446. msgid ""
  6447. "The number of Drill holes. Holes that are drilled with\n"
  6448. "a drill bit."
  6449. msgstr ""
  6450. "The number of Drill holes. Holes that are drilled with\n"
  6451. "a drill bit."
  6452. #: flatcamGUI/ObjectUI.py:642
  6453. msgid ""
  6454. "The number of Slot holes. Holes that are created by\n"
  6455. "milling them with an endmill bit."
  6456. msgstr ""
  6457. "The number of Slot holes. Holes that are created by\n"
  6458. "milling them with an endmill bit."
  6459. #: flatcamGUI/ObjectUI.py:649
  6460. msgid "Toggle display of the drills for the current tool."
  6461. msgstr "Toggle display of the drills for the current tool."
  6462. #: flatcamGUI/ObjectUI.py:657
  6463. msgid ""
  6464. "Create a CNC Job object\n"
  6465. "for this drill object."
  6466. msgstr ""
  6467. "Create a CNC Job object\n"
  6468. "for this drill object."
  6469. #: flatcamGUI/ObjectUI.py:686 flatcamGUI/ObjectUI.py:1186
  6470. msgid "Tool change"
  6471. msgstr "Tool change"
  6472. #: flatcamGUI/ObjectUI.py:694 flatcamGUI/ObjectUI.py:1179
  6473. msgid "Tool change Z:"
  6474. msgstr "Tool change Z:"
  6475. #: flatcamGUI/ObjectUI.py:696 flatcamGUI/ObjectUI.py:1182
  6476. msgid ""
  6477. "Z-axis position (height) for\n"
  6478. "tool change."
  6479. msgstr ""
  6480. "Z-axis position (height) for\n"
  6481. "tool change."
  6482. #: flatcamGUI/ObjectUI.py:707
  6483. msgid ""
  6484. "Tool height just before starting the work.\n"
  6485. "Delete the value if you don't need this feature."
  6486. msgstr ""
  6487. "Tool height just before starting the work.\n"
  6488. "Delete the value if you don't need this feature."
  6489. #: flatcamGUI/ObjectUI.py:717
  6490. msgid ""
  6491. "Z-axis position (height) for\n"
  6492. "the last move."
  6493. msgstr ""
  6494. "Z-axis position (height) for\n"
  6495. "the last move."
  6496. #: flatcamGUI/ObjectUI.py:725
  6497. msgid "Feedrate (Plunge):"
  6498. msgstr "Feedrate (Plunge):"
  6499. #: flatcamGUI/ObjectUI.py:727
  6500. msgid ""
  6501. "Tool speed while drilling\n"
  6502. "(in units per minute).\n"
  6503. "This is for linear move G01."
  6504. msgstr ""
  6505. "Tool speed while drilling\n"
  6506. "(in units per minute).\n"
  6507. "This is for linear move G01."
  6508. #: flatcamGUI/ObjectUI.py:777
  6509. msgid ""
  6510. "The json file that dictates\n"
  6511. "gcode output."
  6512. msgstr ""
  6513. "The json file that dictates\n"
  6514. "gcode output."
  6515. #: flatcamGUI/ObjectUI.py:809
  6516. msgid ""
  6517. "Select from the Tools Table above\n"
  6518. "the tools you want to include."
  6519. msgstr ""
  6520. "Select from the Tools Table above\n"
  6521. "the tools you want to include."
  6522. #: flatcamGUI/ObjectUI.py:816
  6523. msgid "<b>Type: </b>"
  6524. msgstr "<b>Type: </b>"
  6525. #: flatcamGUI/ObjectUI.py:818
  6526. msgid ""
  6527. "Choose what to use for GCode generation:\n"
  6528. "'Drills', 'Slots' or 'Both'.\n"
  6529. "When choosing 'Slots' or 'Both', slots will be\n"
  6530. "converted to a series of drills."
  6531. msgstr ""
  6532. "Choose what to use for GCode generation:\n"
  6533. "'Drills', 'Slots' or 'Both'.\n"
  6534. "When choosing 'Slots' or 'Both', slots will be\n"
  6535. "converted to a series of drills."
  6536. #: flatcamGUI/ObjectUI.py:833
  6537. msgid "Create GCode"
  6538. msgstr "Create GCode"
  6539. #: flatcamGUI/ObjectUI.py:835
  6540. msgid "Generate the CNC Job."
  6541. msgstr "Generate the CNC Job."
  6542. #: flatcamGUI/ObjectUI.py:847
  6543. msgid ""
  6544. "Select from the Tools Table above\n"
  6545. " the hole dias that are to be milled."
  6546. msgstr ""
  6547. "Select from the Tools Table above\n"
  6548. " the hole dias that are to be milled."
  6549. #: flatcamGUI/ObjectUI.py:854
  6550. msgid "Drills Tool dia:"
  6551. msgstr "Drills Tool dia:"
  6552. #: flatcamGUI/ObjectUI.py:861
  6553. msgid "Mill Drills Geo"
  6554. msgstr "Mill Drills Geo"
  6555. #: flatcamGUI/ObjectUI.py:863
  6556. msgid ""
  6557. "Create the Geometry Object\n"
  6558. "for milling DRILLS toolpaths."
  6559. msgstr ""
  6560. "Create the Geometry Object\n"
  6561. "for milling DRILLS toolpaths."
  6562. #: flatcamGUI/ObjectUI.py:870
  6563. msgid "Slots Tool dia:"
  6564. msgstr "Slots Tool dia:"
  6565. #: flatcamGUI/ObjectUI.py:877
  6566. msgid "Mill Slots Geo"
  6567. msgstr "Mill Slots Geo"
  6568. #: flatcamGUI/ObjectUI.py:879
  6569. msgid ""
  6570. "Create the Geometry Object\n"
  6571. "for milling SLOTS toolpaths."
  6572. msgstr ""
  6573. "Create the Geometry Object\n"
  6574. "for milling SLOTS toolpaths."
  6575. #: flatcamGUI/ObjectUI.py:897
  6576. msgid "Geometry Object"
  6577. msgstr "Geometry Object"
  6578. #: flatcamGUI/ObjectUI.py:928
  6579. msgid ""
  6580. "Tools in this Geometry object used for cutting.\n"
  6581. "The 'Offset' entry will set an offset for the cut.\n"
  6582. "'Offset' can be inside, outside, on path (none) and custom.\n"
  6583. "'Type' entry is only informative and it allow to know the \n"
  6584. "intent of using the current tool. \n"
  6585. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  6586. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  6587. "ball(B), or V-Shaped(V). \n"
  6588. "When V-shaped is selected the 'Type' entry is automatically \n"
  6589. "set to Isolation, the CutZ parameter in the UI form is\n"
  6590. "grayed out and Cut Z is automatically calculated from the newly \n"
  6591. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  6592. msgstr ""
  6593. "Tools in this Geometry object used for cutting.\n"
  6594. "The 'Offset' entry will set an offset for the cut.\n"
  6595. "'Offset' can be inside, outside, on path (none) and custom.\n"
  6596. "'Type' entry is only informative and it allow to know the \n"
  6597. "intent of using the current tool. \n"
  6598. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  6599. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  6600. "ball(B), or V-Shaped(V). \n"
  6601. "When V-shaped is selected the 'Type' entry is automatically \n"
  6602. "set to Isolation, the CutZ parameter in the UI form is\n"
  6603. "grayed out and Cut Z is automatically calculated from the newly \n"
  6604. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  6605. #: flatcamGUI/ObjectUI.py:959 flatcamGUI/ObjectUI.py:1517
  6606. msgid "Dia"
  6607. msgstr "Dia"
  6608. #: flatcamGUI/ObjectUI.py:959 flatcamGUI/ObjectUI.py:1517
  6609. msgid "TT"
  6610. msgstr "TT"
  6611. #: flatcamGUI/ObjectUI.py:966
  6612. msgid ""
  6613. "This is the Tool Number.\n"
  6614. "When ToolChange is checked, on toolchange event this value\n"
  6615. "will be showed as a T1, T2 ... Tn"
  6616. msgstr ""
  6617. "This is the Tool Number.\n"
  6618. "When ToolChange is checked, on toolchange event this value\n"
  6619. "will be showed as a T1, T2 ... Tn"
  6620. #: flatcamGUI/ObjectUI.py:977
  6621. msgid ""
  6622. "The value for the Offset can be:\n"
  6623. "- Path -> There is no offset, the tool cut will be done through the geometry "
  6624. "line.\n"
  6625. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  6626. "'pocket'.\n"
  6627. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  6628. msgstr ""
  6629. "The value for the Offset can be:\n"
  6630. "- Path -> There is no offset, the tool cut will be done through the geometry "
  6631. "line.\n"
  6632. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  6633. "'pocket'.\n"
  6634. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  6635. #: flatcamGUI/ObjectUI.py:984
  6636. msgid ""
  6637. "The (Operation) Type has only informative value. Usually the UI form "
  6638. "values \n"
  6639. "are choosed based on the operation type and this will serve as a reminder.\n"
  6640. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  6641. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  6642. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  6643. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  6644. "tip."
  6645. msgstr ""
  6646. "The (Operation) Type has only informative value. Usually the UI form "
  6647. "values \n"
  6648. "are choosed based on the operation type and this will serve as a reminder.\n"
  6649. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  6650. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  6651. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  6652. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  6653. "tip."
  6654. #: flatcamGUI/ObjectUI.py:993
  6655. msgid ""
  6656. "The Tool Type (TT) can be:\n"
  6657. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  6658. "cut width in material\n"
  6659. "is exactly the tool diameter.\n"
  6660. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  6661. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  6662. "two additional UI form\n"
  6663. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  6664. "the Z-Cut parameter such\n"
  6665. "as the cut width into material will be equal with the value in the Tool "
  6666. "Diameter column of this table.\n"
  6667. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  6668. "as Isolation."
  6669. msgstr ""
  6670. "The Tool Type (TT) can be:\n"
  6671. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  6672. "cut width in material\n"
  6673. "is exactly the tool diameter.\n"
  6674. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  6675. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  6676. "two additional UI form\n"
  6677. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  6678. "the Z-Cut parameter such\n"
  6679. "as the cut width into material will be equal with the value in the Tool "
  6680. "Diameter column of this table.\n"
  6681. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  6682. "as Isolation."
  6683. #: flatcamGUI/ObjectUI.py:1004
  6684. msgid ""
  6685. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  6686. "that holds the geometry\n"
  6687. "data into the tools. For those geometries, deleting the tool will delete the "
  6688. "geometry data also,\n"
  6689. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  6690. "plot on canvas\n"
  6691. "for the corresponding tool."
  6692. msgstr ""
  6693. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  6694. "that holds the geometry\n"
  6695. "data into the tools. For those geometries, deleting the tool will delete the "
  6696. "geometry data also,\n"
  6697. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  6698. "plot on canvas\n"
  6699. "for the corresponding tool."
  6700. #: flatcamGUI/ObjectUI.py:1017
  6701. msgid "Tool Offset:"
  6702. msgstr "Tool Offset:"
  6703. #: flatcamGUI/ObjectUI.py:1020
  6704. msgid ""
  6705. "The value to offset the cut when \n"
  6706. "the Offset type selected is 'Offset'.\n"
  6707. "The value can be positive for 'outside'\n"
  6708. "cut and negative for 'inside' cut."
  6709. msgstr ""
  6710. "The value to offset the cut when \n"
  6711. "the Offset type selected is 'Offset'.\n"
  6712. "The value can be positive for 'outside'\n"
  6713. "cut and negative for 'inside' cut."
  6714. #: flatcamGUI/ObjectUI.py:1043
  6715. msgid "<b>Tool Dia:</b>"
  6716. msgstr "<b>Tool Dia:</b>"
  6717. #: flatcamGUI/ObjectUI.py:1062 flatcamTools/ToolNonCopperClear.py:135
  6718. #: flatcamTools/ToolPaint.py:133
  6719. msgid ""
  6720. "Add a new tool to the Tool Table\n"
  6721. "with the diameter specified above."
  6722. msgstr ""
  6723. "Add a new tool to the Tool Table\n"
  6724. "with the diameter specified above."
  6725. #: flatcamGUI/ObjectUI.py:1070
  6726. msgid ""
  6727. "Copy a selection of tools in the Tool Table\n"
  6728. "by first selecting a row in the Tool Table."
  6729. msgstr ""
  6730. "Copy a selection of tools in the Tool Table\n"
  6731. "by first selecting a row in the Tool Table."
  6732. #: flatcamGUI/ObjectUI.py:1078
  6733. msgid ""
  6734. "Delete a selection of tools in the Tool Table\n"
  6735. "by first selecting a row in the Tool Table."
  6736. msgstr ""
  6737. "Delete a selection of tools in the Tool Table\n"
  6738. "by first selecting a row in the Tool Table."
  6739. #: flatcamGUI/ObjectUI.py:1094
  6740. msgid "<b>Tool Data</b>"
  6741. msgstr "<b>Tool Data</b>"
  6742. #: flatcamGUI/ObjectUI.py:1097
  6743. msgid ""
  6744. "The data used for creating GCode.\n"
  6745. "Each tool store it's own set of such data."
  6746. msgstr ""
  6747. "The data used for creating GCode.\n"
  6748. "Each tool store it's own set of such data."
  6749. #: flatcamGUI/ObjectUI.py:1107
  6750. msgid "V-Tip Dia:"
  6751. msgstr "V-Tip Dia:"
  6752. #: flatcamGUI/ObjectUI.py:1110
  6753. msgid "The tip diameter for V-Shape Tool"
  6754. msgstr "The tip diameter for V-Shape Tool"
  6755. #: flatcamGUI/ObjectUI.py:1118
  6756. msgid "V-Tip Angle:"
  6757. msgstr "V-Tip Angle:"
  6758. #: flatcamGUI/ObjectUI.py:1121
  6759. msgid ""
  6760. "The tip angle for V-Shape Tool.\n"
  6761. "In degree."
  6762. msgstr ""
  6763. "The tip angle for V-Shape Tool.\n"
  6764. "In degree."
  6765. #: flatcamGUI/ObjectUI.py:1142
  6766. msgid "Multi-Depth:"
  6767. msgstr "Multi-Depth:"
  6768. #: flatcamGUI/ObjectUI.py:1145
  6769. msgid ""
  6770. "Use multiple passes to limit\n"
  6771. "the cut depth in each pass. Will\n"
  6772. "cut multiple times until Cut Z is\n"
  6773. "reached.\n"
  6774. "To the right, input the depth of \n"
  6775. "each pass (positive value)."
  6776. msgstr ""
  6777. "Use multiple passes to limit\n"
  6778. "the cut depth in each pass. Will\n"
  6779. "cut multiple times until Cut Z is\n"
  6780. "reached.\n"
  6781. "To the right, input the depth of \n"
  6782. "each pass (positive value)."
  6783. #: flatcamGUI/ObjectUI.py:1158
  6784. msgid "Depth of each pass (positive)."
  6785. msgstr "Depth of each pass (positive)."
  6786. #: flatcamGUI/ObjectUI.py:1189
  6787. msgid ""
  6788. "Include tool-change sequence\n"
  6789. "in the Machine Code (Pause for tool change)."
  6790. msgstr ""
  6791. "Include tool-change sequence\n"
  6792. "in the Machine Code (Pause for tool change)."
  6793. #: flatcamGUI/ObjectUI.py:1215
  6794. msgid ""
  6795. "This is the height (Z) at which the CNC\n"
  6796. "will go as the last move."
  6797. msgstr ""
  6798. "This is the height (Z) at which the CNC\n"
  6799. "will go as the last move."
  6800. #: flatcamGUI/ObjectUI.py:1236
  6801. msgid "Feed Rate Z (Plunge):"
  6802. msgstr "Feed Rate Z (Plunge):"
  6803. #: flatcamGUI/ObjectUI.py:1239
  6804. msgid ""
  6805. "Cutting speed in the Z\n"
  6806. "plane in units per minute"
  6807. msgstr ""
  6808. "Cutting speed in the Z\n"
  6809. "plane in units per minute"
  6810. #: flatcamGUI/ObjectUI.py:1248
  6811. msgid "Feed Rate Rapids:"
  6812. msgstr "Feed Rate Rapids:"
  6813. #: flatcamGUI/ObjectUI.py:1251
  6814. msgid ""
  6815. "Cutting speed in the XY\n"
  6816. "plane in units per minute\n"
  6817. "(in units per minute).\n"
  6818. "This is for the rapid move G00.\n"
  6819. "It is useful only for Marlin,\n"
  6820. "ignore for any other cases."
  6821. msgstr ""
  6822. "Cutting speed in the XY\n"
  6823. "plane in units per minute\n"
  6824. "(in units per minute).\n"
  6825. "This is for the rapid move G00.\n"
  6826. "It is useful only for Marlin,\n"
  6827. "ignore for any other cases."
  6828. #: flatcamGUI/ObjectUI.py:1264
  6829. msgid "Cut over 1st pt"
  6830. msgstr "Cut over 1st pt"
  6831. #: flatcamGUI/ObjectUI.py:1279
  6832. msgid ""
  6833. "Speed of the spindle in RPM (optional).\n"
  6834. "If LASER postprocessor is used,\n"
  6835. "this value is the power of laser."
  6836. msgstr ""
  6837. "Speed of the spindle in RPM (optional).\n"
  6838. "If LASER postprocessor is used,\n"
  6839. "this value is the power of laser."
  6840. #: flatcamGUI/ObjectUI.py:1308
  6841. msgid "PostProcessor:"
  6842. msgstr "PostProcessor:"
  6843. #: flatcamGUI/ObjectUI.py:1311
  6844. msgid ""
  6845. "The Postprocessor file that dictates\n"
  6846. "the Machine Code (like GCode, RML, HPGL) output."
  6847. msgstr ""
  6848. "The Postprocessor file that dictates\n"
  6849. "the Machine Code (like GCode, RML, HPGL) output."
  6850. #: flatcamGUI/ObjectUI.py:1349
  6851. msgid ""
  6852. "Add at least one tool in the tool-table.\n"
  6853. "Click the header to select all, or Ctrl + LMB\n"
  6854. "for custom selection of tools."
  6855. msgstr ""
  6856. "Add at least one tool in the tool-table.\n"
  6857. "Click the header to select all, or Ctrl + LMB\n"
  6858. "for custom selection of tools."
  6859. #: flatcamGUI/ObjectUI.py:1356
  6860. msgid "Generate"
  6861. msgstr "Generate"
  6862. #: flatcamGUI/ObjectUI.py:1359
  6863. msgid "Generate the CNC Job object."
  6864. msgstr "Generate the CNC Job object."
  6865. #: flatcamGUI/ObjectUI.py:1367
  6866. msgid "<b>Paint Area:</b>"
  6867. msgstr "<b>Paint Area:</b>"
  6868. #: flatcamGUI/ObjectUI.py:1382
  6869. msgid "Launch Paint Tool in Tools Tab."
  6870. msgstr "Launch Paint Tool in Tools Tab."
  6871. #: flatcamGUI/ObjectUI.py:1399
  6872. msgid "CNC Job Object"
  6873. msgstr "CNC Job Object"
  6874. #: flatcamGUI/ObjectUI.py:1418
  6875. msgid "<b>Plot kind:</b>"
  6876. msgstr "<b>Plot kind:</b>"
  6877. #: flatcamGUI/ObjectUI.py:1443
  6878. msgid "<b>Travelled dist.:</b>"
  6879. msgstr "<b>Travelled dist.:</b>"
  6880. #: flatcamGUI/ObjectUI.py:1446 flatcamGUI/ObjectUI.py:1453
  6881. msgid ""
  6882. "This is the total travelled distance on X-Y plane.\n"
  6883. "In current units."
  6884. msgstr ""
  6885. "This is the total travelled distance on X-Y plane.\n"
  6886. "In current units."
  6887. #: flatcamGUI/ObjectUI.py:1481
  6888. msgid "<b>CNC Tools Table</b>"
  6889. msgstr "<b>CNC Tools Table</b>"
  6890. #: flatcamGUI/ObjectUI.py:1484
  6891. msgid ""
  6892. "Tools in this CNCJob object used for cutting.\n"
  6893. "The tool diameter is used for plotting on canvas.\n"
  6894. "The 'Offset' entry will set an offset for the cut.\n"
  6895. "'Offset' can be inside, outside, on path (none) and custom.\n"
  6896. "'Type' entry is only informative and it allow to know the \n"
  6897. "intent of using the current tool. \n"
  6898. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  6899. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  6900. "ball(B), or V-Shaped(V)."
  6901. msgstr ""
  6902. "Tools in this CNCJob object used for cutting.\n"
  6903. "The tool diameter is used for plotting on canvas.\n"
  6904. "The 'Offset' entry will set an offset for the cut.\n"
  6905. "'Offset' can be inside, outside, on path (none) and custom.\n"
  6906. "'Type' entry is only informative and it allow to know the \n"
  6907. "intent of using the current tool. \n"
  6908. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  6909. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  6910. "ball(B), or V-Shaped(V)."
  6911. #: flatcamGUI/ObjectUI.py:1518
  6912. msgid "P"
  6913. msgstr "P"
  6914. #: flatcamGUI/ObjectUI.py:1524
  6915. msgid "Update Plot"
  6916. msgstr "Update Plot"
  6917. #: flatcamGUI/ObjectUI.py:1526
  6918. msgid "Update the plot."
  6919. msgstr "Update the plot."
  6920. #: flatcamGUI/ObjectUI.py:1533
  6921. msgid "<b>Export CNC Code:</b>"
  6922. msgstr "<b>Export CNC Code:</b>"
  6923. #: flatcamGUI/ObjectUI.py:1541
  6924. msgid "Prepend to CNC Code:"
  6925. msgstr "Prepend to CNC Code:"
  6926. #: flatcamGUI/ObjectUI.py:1544
  6927. msgid ""
  6928. "Type here any G-Code commands you would\n"
  6929. "like to add to the beginning of the generated file."
  6930. msgstr ""
  6931. "Type here any G-Code commands you would\n"
  6932. "like to add to the beginning of the generated file."
  6933. #: flatcamGUI/ObjectUI.py:1554
  6934. msgid "Append to CNC Code"
  6935. msgstr "Append to CNC Code"
  6936. #: flatcamGUI/ObjectUI.py:1578
  6937. msgid ""
  6938. "Type here any G-Code commands you would\n"
  6939. "like to be executed when Toolchange event is encountered.\n"
  6940. "This will constitute a Custom Toolchange GCode,\n"
  6941. "or a Toolchange Macro.\n"
  6942. "The FlatCAM variables are surrounded by '%' symbol.\n"
  6943. "\n"
  6944. "WARNING: it can be used only with a postprocessor file\n"
  6945. "that has 'toolchange_custom' in it's name and this is built\n"
  6946. "having as template the 'Toolchange Custom' posprocessor file."
  6947. msgstr ""
  6948. "Type here any G-Code commands you would\n"
  6949. "like to be executed when Toolchange event is encountered.\n"
  6950. "This will constitute a Custom Toolchange GCode,\n"
  6951. "or a Toolchange Macro.\n"
  6952. "The FlatCAM variables are surrounded by '%' symbol.\n"
  6953. "\n"
  6954. "WARNING: it can be used only with a postprocessor file\n"
  6955. "that has 'toolchange_custom' in it's name and this is built\n"
  6956. "having as template the 'Toolchange Custom' posprocessor file."
  6957. #: flatcamGUI/ObjectUI.py:1634
  6958. msgid "z_cut = depth where to cut"
  6959. msgstr "z_cut = depth where to cut"
  6960. #: flatcamGUI/ObjectUI.py:1635
  6961. msgid "z_move = height where to travel"
  6962. msgstr "z_move = height where to travel"
  6963. #: flatcamGUI/ObjectUI.py:1656
  6964. msgid "View CNC Code"
  6965. msgstr "View CNC Code"
  6966. #: flatcamGUI/ObjectUI.py:1659
  6967. msgid ""
  6968. "Opens TAB to view/modify/print G-Code\n"
  6969. "file."
  6970. msgstr ""
  6971. "Opens TAB to view/modify/print G-Code\n"
  6972. "file."
  6973. #: flatcamGUI/ObjectUI.py:1665
  6974. msgid "Save CNC Code"
  6975. msgstr "Save CNC Code"
  6976. #: flatcamGUI/ObjectUI.py:1668
  6977. msgid ""
  6978. "Opens dialog to save G-Code\n"
  6979. "file."
  6980. msgstr ""
  6981. "Opens dialog to save G-Code\n"
  6982. "file."
  6983. #: flatcamTools/ToolCalculators.py:24
  6984. msgid "Calculators"
  6985. msgstr "Calculators"
  6986. #: flatcamTools/ToolCalculators.py:25
  6987. msgid "V-Shape Tool Calculator"
  6988. msgstr "V-Shape Tool Calculator"
  6989. #: flatcamTools/ToolCalculators.py:26
  6990. msgid "Units Calculator"
  6991. msgstr "Units Calculator"
  6992. #: flatcamTools/ToolCalculators.py:27
  6993. msgid "ElectroPlating Calculator"
  6994. msgstr "ElectroPlating Calculator"
  6995. #: flatcamTools/ToolCalculators.py:68
  6996. msgid "Here you enter the value to be converted from INCH to MM"
  6997. msgstr "Here you enter the value to be converted from INCH to MM"
  6998. #: flatcamTools/ToolCalculators.py:73
  6999. msgid "Here you enter the value to be converted from MM to INCH"
  7000. msgstr "Here you enter the value to be converted from MM to INCH"
  7001. #: flatcamTools/ToolCalculators.py:98
  7002. msgid ""
  7003. "This is the diameter of the tool tip.\n"
  7004. "The manufacturer specifies it."
  7005. msgstr ""
  7006. "This is the diameter of the tool tip.\n"
  7007. "The manufacturer specifies it."
  7008. #: flatcamTools/ToolCalculators.py:101
  7009. msgid "Tip Angle:"
  7010. msgstr "Tip Angle:"
  7011. #: flatcamTools/ToolCalculators.py:105
  7012. msgid ""
  7013. "This is the angle of the tip of the tool.\n"
  7014. "It is specified by manufacturer."
  7015. msgstr ""
  7016. "This is the angle of the tip of the tool.\n"
  7017. "It is specified by manufacturer."
  7018. #: flatcamTools/ToolCalculators.py:112
  7019. msgid ""
  7020. "This is the depth to cut into the material.\n"
  7021. "In the CNCJob is the CutZ parameter."
  7022. msgstr ""
  7023. "This is the depth to cut into the material.\n"
  7024. "In the CNCJob is the CutZ parameter."
  7025. #: flatcamTools/ToolCalculators.py:115
  7026. msgid "Tool Diameter:"
  7027. msgstr "Tool Diameter:"
  7028. #: flatcamTools/ToolCalculators.py:119
  7029. msgid ""
  7030. "This is the tool diameter to be entered into\n"
  7031. "FlatCAM Gerber section.\n"
  7032. "In the CNCJob section it is called >Tool dia<."
  7033. msgstr ""
  7034. "This is the tool diameter to be entered into\n"
  7035. "FlatCAM Gerber section.\n"
  7036. "In the CNCJob section it is called >Tool dia<."
  7037. #: flatcamTools/ToolCalculators.py:131 flatcamTools/ToolCalculators.py:214
  7038. msgid "Calculate"
  7039. msgstr "Calculate"
  7040. #: flatcamTools/ToolCalculators.py:134
  7041. msgid ""
  7042. "Calculate either the Cut Z or the effective tool diameter,\n"
  7043. " depending on which is desired and which is known. "
  7044. msgstr ""
  7045. "Calculate either the Cut Z or the effective tool diameter,\n"
  7046. " depending on which is desired and which is known. "
  7047. #: flatcamTools/ToolCalculators.py:190
  7048. msgid "Current Value:"
  7049. msgstr "Current Value:"
  7050. #: flatcamTools/ToolCalculators.py:194
  7051. msgid ""
  7052. "This is the current intensity value\n"
  7053. "to be set on the Power Supply. In Amps."
  7054. msgstr ""
  7055. "This is the current intensity value\n"
  7056. "to be set on the Power Supply. In Amps."
  7057. #: flatcamTools/ToolCalculators.py:198
  7058. msgid "Time:"
  7059. msgstr "Time:"
  7060. #: flatcamTools/ToolCalculators.py:202
  7061. msgid ""
  7062. "This is the calculated time required for the procedure.\n"
  7063. "In minutes."
  7064. msgstr ""
  7065. "This is the calculated time required for the procedure.\n"
  7066. "In minutes."
  7067. #: flatcamTools/ToolCalculators.py:217
  7068. msgid ""
  7069. "Calculate the current intensity value and the procedure time,\n"
  7070. " depending on the parameters above"
  7071. msgstr ""
  7072. "Calculate the current intensity value and the procedure time,\n"
  7073. " depending on the parameters above"
  7074. #: flatcamTools/ToolCutOut.py:17
  7075. msgid "Cutout PCB"
  7076. msgstr "Cutout PCB"
  7077. #: flatcamTools/ToolCutOut.py:53
  7078. msgid "Obj Type:"
  7079. msgstr "Obj Type:"
  7080. #: flatcamTools/ToolCutOut.py:55
  7081. msgid ""
  7082. "Specify the type of object to be cutout.\n"
  7083. "It can be of type: Gerber or Geometry.\n"
  7084. "What is selected here will dictate the kind\n"
  7085. "of objects that will populate the 'Object' combobox."
  7086. msgstr ""
  7087. "Specify the type of object to be cutout.\n"
  7088. "It can be of type: Gerber or Geometry.\n"
  7089. "What is selected here will dictate the kind\n"
  7090. "of objects that will populate the 'Object' combobox."
  7091. #: flatcamTools/ToolCutOut.py:69 flatcamTools/ToolPanelize.py:71
  7092. msgid "Object:"
  7093. msgstr "Object:"
  7094. #: flatcamTools/ToolCutOut.py:71
  7095. msgid "Object to be cutout. "
  7096. msgstr "Object to be cutout. "
  7097. #: flatcamTools/ToolCutOut.py:79
  7098. msgid ""
  7099. "Diameter of the tool used to cutout\n"
  7100. "the PCB shape out of the surrounding material."
  7101. msgstr ""
  7102. "Diameter of the tool used to cutout\n"
  7103. "the PCB shape out of the surrounding material."
  7104. #: flatcamTools/ToolCutOut.py:88
  7105. msgid ""
  7106. "Margin over bounds. A positive value here\n"
  7107. "will make the cutout of the PCB further from\n"
  7108. "the actual PCB border"
  7109. msgstr ""
  7110. "Margin over bounds. A positive value here\n"
  7111. "will make the cutout of the PCB further from\n"
  7112. "the actual PCB border"
  7113. #: flatcamTools/ToolCutOut.py:98
  7114. msgid ""
  7115. "The size of the bridge gaps in the cutout\n"
  7116. "used to keep the board connected to\n"
  7117. "the surrounding material (the one \n"
  7118. "from which the PCB is cutout)."
  7119. msgstr ""
  7120. "The size of the bridge gaps in the cutout\n"
  7121. "used to keep the board connected to\n"
  7122. "the surrounding material (the one \n"
  7123. "from which the PCB is cutout)."
  7124. #: flatcamTools/ToolCutOut.py:114
  7125. msgid "A. Automatic Bridge Gaps"
  7126. msgstr "A. Automatic Bridge Gaps"
  7127. #: flatcamTools/ToolCutOut.py:116
  7128. msgid "This section handle creation of automatic bridge gaps."
  7129. msgstr "This section handle creation of automatic bridge gaps."
  7130. #: flatcamTools/ToolCutOut.py:127
  7131. msgid ""
  7132. "Number of gaps used for the Automatic cutout.\n"
  7133. "There can be maximum 8 bridges/gaps.\n"
  7134. "The choices are:\n"
  7135. "- lr - left + right\n"
  7136. "- tb - top + bottom\n"
  7137. "- 4 - left + right +top + bottom\n"
  7138. "- 2lr - 2*left + 2*right\n"
  7139. "- 2tb - 2*top + 2*bottom\n"
  7140. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7141. msgstr ""
  7142. "Number of gaps used for the Automatic cutout.\n"
  7143. "There can be maximum 8 bridges/gaps.\n"
  7144. "The choices are:\n"
  7145. "- lr - left + right\n"
  7146. "- tb - top + bottom\n"
  7147. "- 4 - left + right +top + bottom\n"
  7148. "- 2lr - 2*left + 2*right\n"
  7149. "- 2tb - 2*top + 2*bottom\n"
  7150. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7151. #: flatcamTools/ToolCutOut.py:150
  7152. msgid "FreeForm:"
  7153. msgstr "FreeForm:"
  7154. #: flatcamTools/ToolCutOut.py:152
  7155. msgid ""
  7156. "The cutout shape can be of ny shape.\n"
  7157. "Useful when the PCB has a non-rectangular shape."
  7158. msgstr ""
  7159. "The cutout shape can be of ny shape.\n"
  7160. "Useful when the PCB has a non-rectangular shape."
  7161. #: flatcamTools/ToolCutOut.py:161
  7162. msgid ""
  7163. "Cutout the selected object.\n"
  7164. "The cutout shape can be of any shape.\n"
  7165. "Useful when the PCB has a non-rectangular shape."
  7166. msgstr ""
  7167. "Cutout the selected object.\n"
  7168. "The cutout shape can be of any shape.\n"
  7169. "Useful when the PCB has a non-rectangular shape."
  7170. #: flatcamTools/ToolCutOut.py:170
  7171. msgid "Rectangular:"
  7172. msgstr "Rectangular:"
  7173. #: flatcamTools/ToolCutOut.py:172
  7174. msgid ""
  7175. "The resulting cutout shape is\n"
  7176. "always a rectangle shape and it will be\n"
  7177. "the bounding box of the Object."
  7178. msgstr ""
  7179. "The resulting cutout shape is\n"
  7180. "always a rectangle shape and it will be\n"
  7181. "the bounding box of the Object."
  7182. #: flatcamTools/ToolCutOut.py:181
  7183. msgid ""
  7184. "Cutout the selected object.\n"
  7185. "The resulting cutout shape is\n"
  7186. "always a rectangle shape and it will be\n"
  7187. "the bounding box of the Object."
  7188. msgstr ""
  7189. "Cutout the selected object.\n"
  7190. "The resulting cutout shape is\n"
  7191. "always a rectangle shape and it will be\n"
  7192. "the bounding box of the Object."
  7193. #: flatcamTools/ToolCutOut.py:189
  7194. msgid "B. Manual Bridge Gaps"
  7195. msgstr "B. Manual Bridge Gaps"
  7196. #: flatcamTools/ToolCutOut.py:191
  7197. msgid ""
  7198. "This section handle creation of manual bridge gaps.\n"
  7199. "This is done by mouse clicking on the perimeter of the\n"
  7200. "Geometry object that is used as a cutout object. "
  7201. msgstr ""
  7202. "This section handle creation of manual bridge gaps.\n"
  7203. "This is done by mouse clicking on the perimeter of the\n"
  7204. "Geometry object that is used as a cutout object. "
  7205. #: flatcamTools/ToolCutOut.py:207
  7206. msgid "Geo Obj:"
  7207. msgstr "Geo Obj:"
  7208. #: flatcamTools/ToolCutOut.py:209
  7209. msgid "Geometry object used to create the manual cutout."
  7210. msgstr "Geometry object used to create the manual cutout."
  7211. #: flatcamTools/ToolCutOut.py:220
  7212. msgid "Manual Geo:"
  7213. msgstr "Manual Geo:"
  7214. #: flatcamTools/ToolCutOut.py:222 flatcamTools/ToolCutOut.py:232
  7215. msgid ""
  7216. "If the object to be cutout is a Gerber\n"
  7217. "first create a Geometry that surrounds it,\n"
  7218. "to be used as the cutout, if one doesn't exist yet.\n"
  7219. "Select the source Gerber file in the top object combobox."
  7220. msgstr ""
  7221. "If the object to be cutout is a Gerber\n"
  7222. "first create a Geometry that surrounds it,\n"
  7223. "to be used as the cutout, if one doesn't exist yet.\n"
  7224. "Select the source Gerber file in the top object combobox."
  7225. #: flatcamTools/ToolCutOut.py:242
  7226. msgid "Manual Add Bridge Gaps:"
  7227. msgstr "Manual Add Bridge Gaps:"
  7228. #: flatcamTools/ToolCutOut.py:244
  7229. msgid ""
  7230. "Use the left mouse button (LMB) click\n"
  7231. "to create a bridge gap to separate the PCB from\n"
  7232. "the surrounding material."
  7233. msgstr ""
  7234. "Use the left mouse button (LMB) click\n"
  7235. "to create a bridge gap to separate the PCB from\n"
  7236. "the surrounding material."
  7237. #: flatcamTools/ToolCutOut.py:251
  7238. msgid "Generate Gap"
  7239. msgstr "Generate Gap"
  7240. #: flatcamTools/ToolCutOut.py:253
  7241. msgid ""
  7242. "Use the left mouse button (LMB) click\n"
  7243. "to create a bridge gap to separate the PCB from\n"
  7244. "the surrounding material.\n"
  7245. "The LMB click has to be done on the perimeter of\n"
  7246. "the Geometry object used as a cutout geometry."
  7247. msgstr ""
  7248. "Use the left mouse button (LMB) click\n"
  7249. "to create a bridge gap to separate the PCB from\n"
  7250. "the surrounding material.\n"
  7251. "The LMB click has to be done on the perimeter of\n"
  7252. "the Geometry object used as a cutout geometry."
  7253. #: flatcamTools/ToolCutOut.py:329 flatcamTools/ToolCutOut.py:468
  7254. #: flatcamTools/ToolNonCopperClear.py:659 flatcamTools/ToolPaint.py:757
  7255. #: flatcamTools/ToolPanelize.py:293 flatcamTools/ToolPanelize.py:307
  7256. #, python-format
  7257. msgid "[ERROR_NOTCL]Could not retrieve object: %s"
  7258. msgstr "[ERROR_NOTCL]Could not retrieve object: %s"
  7259. #: flatcamTools/ToolCutOut.py:333
  7260. msgid ""
  7261. "[ERROR_NOTCL]There is no object selected for Cutout.\n"
  7262. "Select one and try again."
  7263. msgstr ""
  7264. "[ERROR_NOTCL]There is no object selected for Cutout.\n"
  7265. "Select one and try again."
  7266. #: flatcamTools/ToolCutOut.py:349
  7267. msgid ""
  7268. "[WARNING_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
  7269. msgstr ""
  7270. "[WARNING_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
  7271. #: flatcamTools/ToolCutOut.py:359 flatcamTools/ToolCutOut.py:496
  7272. #: flatcamTools/ToolCutOut.py:721
  7273. msgid ""
  7274. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  7275. msgstr ""
  7276. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  7277. #: flatcamTools/ToolCutOut.py:370 flatcamTools/ToolCutOut.py:507
  7278. #: flatcamTools/ToolCutOut.py:616
  7279. msgid ""
  7280. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  7281. msgstr ""
  7282. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  7283. #: flatcamTools/ToolCutOut.py:377 flatcamTools/ToolCutOut.py:514
  7284. msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  7285. msgstr "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  7286. #: flatcamTools/ToolCutOut.py:381 flatcamTools/ToolCutOut.py:518
  7287. msgid ""
  7288. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  7289. "or 8. Fill in a correct value and retry. "
  7290. msgstr ""
  7291. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  7292. "or 8. Fill in a correct value and retry. "
  7293. #: flatcamTools/ToolCutOut.py:386 flatcamTools/ToolCutOut.py:523
  7294. msgid ""
  7295. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  7296. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  7297. "Geometry,\n"
  7298. "and after that perform Cutout."
  7299. msgstr ""
  7300. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  7301. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  7302. "Geometry,\n"
  7303. "and after that perform Cutout."
  7304. #: flatcamTools/ToolCutOut.py:452 flatcamTools/ToolCutOut.py:586
  7305. msgid "[success] Any form CutOut operation finished."
  7306. msgstr "[success] Any form CutOut operation finished."
  7307. #: flatcamTools/ToolCutOut.py:472 flatcamTools/ToolPaint.py:761
  7308. #: flatcamTools/ToolPanelize.py:299
  7309. #, python-format
  7310. msgid "[ERROR_NOTCL]Object not found: %s"
  7311. msgstr "[ERROR_NOTCL]Object not found: %s"
  7312. #: flatcamTools/ToolCutOut.py:486 flatcamTools/ToolCutOut.py:606
  7313. #: flatcamTools/ToolCutOut.py:711
  7314. msgid ""
  7315. "[ERROR_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
  7316. msgstr ""
  7317. "[ERROR_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
  7318. #: flatcamTools/ToolCutOut.py:591
  7319. msgid ""
  7320. "Click on the selected geometry object perimeter to create a bridge gap ..."
  7321. msgstr ""
  7322. "Click on the selected geometry object perimeter to create a bridge gap ..."
  7323. #: flatcamTools/ToolCutOut.py:632
  7324. msgid "Making manual bridge gap..."
  7325. msgstr "Making manual bridge gap..."
  7326. #: flatcamTools/ToolCutOut.py:655
  7327. #, python-format
  7328. msgid "[ERROR_NOTCL]Could not retrieve Geoemtry object: %s"
  7329. msgstr "[ERROR_NOTCL]Could not retrieve Geoemtry object: %s"
  7330. #: flatcamTools/ToolCutOut.py:659
  7331. #, python-format
  7332. msgid "[ERROR_NOTCL]Geometry object for manual cutout not found: %s"
  7333. msgstr "[ERROR_NOTCL]Geometry object for manual cutout not found: %s"
  7334. #: flatcamTools/ToolCutOut.py:669
  7335. msgid "[success] Added manual Bridge Gap."
  7336. msgstr "[success] Added manual Bridge Gap."
  7337. #: flatcamTools/ToolCutOut.py:686
  7338. #, python-format
  7339. msgid "[ERROR_NOTCL]Could not retrieve Gerber object: %s"
  7340. msgstr "[ERROR_NOTCL]Could not retrieve Gerber object: %s"
  7341. #: flatcamTools/ToolCutOut.py:690
  7342. msgid ""
  7343. "[ERROR_NOTCL]There is no Gerber object selected for Cutout.\n"
  7344. "Select one and try again."
  7345. msgstr ""
  7346. "[ERROR_NOTCL]There is no Gerber object selected for Cutout.\n"
  7347. "Select one and try again."
  7348. #: flatcamTools/ToolCutOut.py:695
  7349. msgid ""
  7350. "[ERROR_NOTCL]The selected object has to be of Gerber type.\n"
  7351. "Select a Gerber file and try again."
  7352. msgstr ""
  7353. "[ERROR_NOTCL]The selected object has to be of Gerber type.\n"
  7354. "Select a Gerber file and try again."
  7355. #: flatcamTools/ToolDblSided.py:18
  7356. msgid "2-Sided PCB"
  7357. msgstr "2-Sided PCB"
  7358. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  7359. #: flatcamTools/ToolDblSided.py:100
  7360. msgid "Mirror"
  7361. msgstr "Mirror"
  7362. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  7363. #: flatcamTools/ToolDblSided.py:102
  7364. msgid ""
  7365. "Mirrors (flips) the specified object around \n"
  7366. "the specified axis. Does not create a new \n"
  7367. "object, but modifies it."
  7368. msgstr ""
  7369. "Mirrors (flips) the specified object around \n"
  7370. "the specified axis. Does not create a new \n"
  7371. "object, but modifies it."
  7372. #: flatcamTools/ToolDblSided.py:73
  7373. msgid "Excellon Object to be mirrored."
  7374. msgstr "Excellon Object to be mirrored."
  7375. #: flatcamTools/ToolDblSided.py:97
  7376. msgid "Geometry Obj to be mirrored."
  7377. msgstr "Geometry Obj to be mirrored."
  7378. #: flatcamTools/ToolDblSided.py:135
  7379. msgid ""
  7380. "The axis should pass through a <b>point</b> or cut\n"
  7381. " a specified <b>box</b> (in a FlatCAM object) through \n"
  7382. "the center."
  7383. msgstr ""
  7384. "The axis should pass through a <b>point</b> or cut\n"
  7385. " a specified <b>box</b> (in a FlatCAM object) through \n"
  7386. "the center."
  7387. #: flatcamTools/ToolDblSided.py:152
  7388. msgid "Point/Box Reference:"
  7389. msgstr "Point/Box Reference:"
  7390. #: flatcamTools/ToolDblSided.py:154
  7391. msgid ""
  7392. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  7393. "the mirroring axis passes.\n"
  7394. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  7395. "Geo).\n"
  7396. "Through the center of this object pass the mirroring axis selected above."
  7397. msgstr ""
  7398. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  7399. "the mirroring axis passes.\n"
  7400. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  7401. "Geo).\n"
  7402. "Through the center of this object pass the mirroring axis selected above."
  7403. #: flatcamTools/ToolDblSided.py:162
  7404. msgid ""
  7405. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  7406. "axis \n"
  7407. " selected in 'MIRROR AXIS' pass.\n"
  7408. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  7409. "and left mouse button click on canvas or you can enter the coords manually."
  7410. msgstr ""
  7411. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  7412. "axis \n"
  7413. " selected in 'MIRROR AXIS' pass.\n"
  7414. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  7415. "and left mouse button click on canvas or you can enter the coords manually."
  7416. #: flatcamTools/ToolDblSided.py:182
  7417. msgid "Gerber Reference Box Object"
  7418. msgstr "Gerber Reference Box Object"
  7419. #: flatcamTools/ToolDblSided.py:183
  7420. msgid "Excellon Reference Box Object"
  7421. msgstr "Excellon Reference Box Object"
  7422. #: flatcamTools/ToolDblSided.py:184
  7423. msgid "Geometry Reference Box Object"
  7424. msgstr "Geometry Reference Box Object"
  7425. #: flatcamTools/ToolDblSided.py:193
  7426. msgid "Alignment Drill Coordinates:"
  7427. msgstr "Alignment Drill Coordinates:"
  7428. #: flatcamTools/ToolDblSided.py:195
  7429. msgid ""
  7430. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  7431. "each set of (x, y) coordinates\n"
  7432. "entered here, a pair of drills will be created:\n"
  7433. "\n"
  7434. "- one drill at the coordinates from the field\n"
  7435. "- one drill in mirror position over the axis selected above in the 'Mirror "
  7436. "Axis'."
  7437. msgstr ""
  7438. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  7439. "each set of (x, y) coordinates\n"
  7440. "entered here, a pair of drills will be created:\n"
  7441. "\n"
  7442. "- one drill at the coordinates from the field\n"
  7443. "- one drill in mirror position over the axis selected above in the 'Mirror "
  7444. "Axis'."
  7445. #: flatcamTools/ToolDblSided.py:210
  7446. msgid ""
  7447. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  7448. "on one side of the mirror axis.\n"
  7449. "\n"
  7450. "The coordinates set can be obtained:\n"
  7451. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  7452. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  7453. "field.\n"
  7454. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  7455. "field and click Paste.\n"
  7456. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  7457. msgstr ""
  7458. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  7459. "on one side of the mirror axis.\n"
  7460. "\n"
  7461. "The coordinates set can be obtained:\n"
  7462. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  7463. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  7464. "field.\n"
  7465. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  7466. "field and click Paste.\n"
  7467. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  7468. #: flatcamTools/ToolDblSided.py:224
  7469. msgid "Alignment Drill Diameter"
  7470. msgstr "Alignment Drill Diameter"
  7471. #: flatcamTools/ToolDblSided.py:247
  7472. msgid "Create Excellon Object"
  7473. msgstr "Create Excellon Object"
  7474. #: flatcamTools/ToolDblSided.py:249
  7475. msgid ""
  7476. "Creates an Excellon Object containing the\n"
  7477. "specified alignment holes and their mirror\n"
  7478. "images."
  7479. msgstr ""
  7480. "Creates an Excellon Object containing the\n"
  7481. "specified alignment holes and their mirror\n"
  7482. "images."
  7483. #: flatcamTools/ToolDblSided.py:255
  7484. msgid "Reset"
  7485. msgstr "Reset"
  7486. #: flatcamTools/ToolDblSided.py:257
  7487. msgid "Resets all the fields."
  7488. msgstr "Resets all the fields."
  7489. #: flatcamTools/ToolDblSided.py:302
  7490. msgid "2-Sided Tool"
  7491. msgstr "2-Sided Tool"
  7492. #: flatcamTools/ToolDblSided.py:327
  7493. msgid ""
  7494. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  7495. "missing. Add them and retry."
  7496. msgstr ""
  7497. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  7498. "missing. Add them and retry."
  7499. #: flatcamTools/ToolDblSided.py:346
  7500. msgid ""
  7501. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  7502. msgstr ""
  7503. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  7504. #: flatcamTools/ToolDblSided.py:368
  7505. msgid ""
  7506. "[WARNING_NOTCL]No value or wrong format in Drill Dia entry. Add it and retry."
  7507. msgstr ""
  7508. "[WARNING_NOTCL]No value or wrong format in Drill Dia entry. Add it and retry."
  7509. #: flatcamTools/ToolDblSided.py:375
  7510. msgid ""
  7511. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  7512. "and retry."
  7513. msgstr ""
  7514. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  7515. "and retry."
  7516. #: flatcamTools/ToolDblSided.py:397
  7517. msgid "[success] Excellon object with alignment drills created..."
  7518. msgstr "[success] Excellon object with alignment drills created..."
  7519. #: flatcamTools/ToolDblSided.py:406
  7520. msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
  7521. msgstr "[WARNING_NOTCL] There is no Gerber object loaded ..."
  7522. #: flatcamTools/ToolDblSided.py:410 flatcamTools/ToolDblSided.py:453
  7523. #: flatcamTools/ToolDblSided.py:497
  7524. msgid ""
  7525. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  7526. msgstr ""
  7527. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  7528. #: flatcamTools/ToolDblSided.py:420
  7529. msgid ""
  7530. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  7531. "mirroring reference."
  7532. msgstr ""
  7533. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  7534. "mirroring reference."
  7535. #: flatcamTools/ToolDblSided.py:430 flatcamTools/ToolDblSided.py:474
  7536. #: flatcamTools/ToolDblSided.py:511
  7537. msgid "[WARNING_NOTCL] There is no Box object loaded ..."
  7538. msgstr "[WARNING_NOTCL] There is no Box object loaded ..."
  7539. #: flatcamTools/ToolDblSided.py:440
  7540. #, python-format
  7541. msgid "[success] Gerber %s was mirrored..."
  7542. msgstr "[success] Gerber %s was mirrored..."
  7543. #: flatcamTools/ToolDblSided.py:449
  7544. msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
  7545. msgstr "[WARNING_NOTCL] There is no Excellon object loaded ..."
  7546. #: flatcamTools/ToolDblSided.py:464
  7547. msgid ""
  7548. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  7549. "coords and try again ..."
  7550. msgstr ""
  7551. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  7552. "coords and try again ..."
  7553. #: flatcamTools/ToolDblSided.py:484
  7554. #, python-format
  7555. msgid "[success] Excellon %s was mirrored..."
  7556. msgstr "[success] Excellon %s was mirrored..."
  7557. #: flatcamTools/ToolDblSided.py:493
  7558. msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
  7559. msgstr "[WARNING_NOTCL] There is no Geometry object loaded ..."
  7560. #: flatcamTools/ToolDblSided.py:521
  7561. #, python-format
  7562. msgid "[success] Geometry %s was mirrored..."
  7563. msgstr "[success] Geometry %s was mirrored..."
  7564. #: flatcamTools/ToolFilm.py:25
  7565. msgid "Film PCB"
  7566. msgstr "Film PCB"
  7567. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  7568. #: flatcamTools/ToolPanelize.py:56
  7569. msgid "Object Type:"
  7570. msgstr "Object Type:"
  7571. #: flatcamTools/ToolFilm.py:58
  7572. msgid ""
  7573. "Specify the type of object for which to create the film.\n"
  7574. "The object can be of type: Gerber or Geometry.\n"
  7575. "The selection here decide the type of objects that will be\n"
  7576. "in the Film Object combobox."
  7577. msgstr ""
  7578. "Specify the type of object for which to create the film.\n"
  7579. "The object can be of type: Gerber or Geometry.\n"
  7580. "The selection here decide the type of objects that will be\n"
  7581. "in the Film Object combobox."
  7582. #: flatcamTools/ToolFilm.py:71
  7583. msgid "Film Object:"
  7584. msgstr "Film Object:"
  7585. #: flatcamTools/ToolFilm.py:73
  7586. msgid "Object for which to create the film."
  7587. msgstr "Object for which to create the film."
  7588. #: flatcamTools/ToolFilm.py:89 flatcamTools/ToolPanelize.py:89
  7589. msgid "Box Type:"
  7590. msgstr "Box Type:"
  7591. #: flatcamTools/ToolFilm.py:91
  7592. msgid ""
  7593. "Specify the type of object to be used as an container for\n"
  7594. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  7595. "the type of objects that will be\n"
  7596. "in the Box Object combobox."
  7597. msgstr ""
  7598. "Specify the type of object to be used as an container for\n"
  7599. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  7600. "the type of objects that will be\n"
  7601. "in the Box Object combobox."
  7602. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:104
  7603. msgid "Box Object:"
  7604. msgstr "Box Object:"
  7605. #: flatcamTools/ToolFilm.py:106
  7606. msgid ""
  7607. "The actual object that is used a container for the\n"
  7608. " selected object for which we create the film.\n"
  7609. "Usually it is the PCB outline but it can be also the\n"
  7610. "same object for which the film is created."
  7611. msgstr ""
  7612. "The actual object that is used a container for the\n"
  7613. " selected object for which we create the film.\n"
  7614. "Usually it is the PCB outline but it can be also the\n"
  7615. "same object for which the film is created."
  7616. #: flatcamTools/ToolFilm.py:157
  7617. msgid "Save Film"
  7618. msgstr "Save Film"
  7619. #: flatcamTools/ToolFilm.py:159
  7620. msgid ""
  7621. "Create a Film for the selected object, within\n"
  7622. "the specified box. Does not create a new \n"
  7623. " FlatCAM object, but directly save it in SVG format\n"
  7624. "which can be opened with Inkscape."
  7625. msgstr ""
  7626. "Create a Film for the selected object, within\n"
  7627. "the specified box. Does not create a new \n"
  7628. " FlatCAM object, but directly save it in SVG format\n"
  7629. "which can be opened with Inkscape."
  7630. #: flatcamTools/ToolFilm.py:225
  7631. msgid ""
  7632. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  7633. msgstr ""
  7634. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  7635. #: flatcamTools/ToolFilm.py:231
  7636. msgid ""
  7637. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  7638. msgstr ""
  7639. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  7640. #: flatcamTools/ToolFilm.py:255
  7641. msgid "Generating Film ..."
  7642. msgstr "Generating Film ..."
  7643. #: flatcamTools/ToolFilm.py:260 flatcamTools/ToolFilm.py:264
  7644. msgid "Export SVG positive"
  7645. msgstr "Export SVG positive"
  7646. #: flatcamTools/ToolFilm.py:269
  7647. msgid "[WARNING_NOTCL]Export SVG positive cancelled."
  7648. msgstr "[WARNING_NOTCL]Export SVG positive cancelled."
  7649. #: flatcamTools/ToolFilm.py:276 flatcamTools/ToolFilm.py:280
  7650. msgid "Export SVG negative"
  7651. msgstr "Export SVG negative"
  7652. #: flatcamTools/ToolFilm.py:285
  7653. msgid "[WARNING_NOTCL]Export SVG negative cancelled."
  7654. msgstr "[WARNING_NOTCL]Export SVG negative cancelled."
  7655. #: flatcamTools/ToolImage.py:25
  7656. msgid "Image as Object"
  7657. msgstr "Image as Object"
  7658. #: flatcamTools/ToolImage.py:31
  7659. msgid "Image to PCB"
  7660. msgstr "Image to PCB"
  7661. #: flatcamTools/ToolImage.py:55
  7662. msgid ""
  7663. "Specify the type of object to create from the image.\n"
  7664. "It can be of type: Gerber or Geometry."
  7665. msgstr ""
  7666. "Specify the type of object to create from the image.\n"
  7667. "It can be of type: Gerber or Geometry."
  7668. #: flatcamTools/ToolImage.py:63
  7669. msgid "DPI value:"
  7670. msgstr "DPI value:"
  7671. #: flatcamTools/ToolImage.py:65
  7672. msgid "Specify a DPI value for the image."
  7673. msgstr "Specify a DPI value for the image."
  7674. #: flatcamTools/ToolImage.py:72
  7675. msgid "Level of detail"
  7676. msgstr "Level of detail"
  7677. #: flatcamTools/ToolImage.py:81
  7678. msgid "Image type"
  7679. msgstr "Image type"
  7680. #: flatcamTools/ToolImage.py:83
  7681. msgid ""
  7682. "Choose a method for the image interpretation.\n"
  7683. "B/W means a black & white image. Color means a colored image."
  7684. msgstr ""
  7685. "Choose a method for the image interpretation.\n"
  7686. "B/W means a black & white image. Color means a colored image."
  7687. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  7688. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  7689. msgid "Mask value"
  7690. msgstr "Mask value"
  7691. #: flatcamTools/ToolImage.py:92
  7692. msgid ""
  7693. "Mask for monochrome image.\n"
  7694. "Takes values between [0 ... 255].\n"
  7695. "Decides the level of details to include\n"
  7696. "in the resulting geometry.\n"
  7697. "0 means no detail and 255 means everything \n"
  7698. "(which is totally black)."
  7699. msgstr ""
  7700. "Mask for monochrome image.\n"
  7701. "Takes values between [0 ... 255].\n"
  7702. "Decides the level of details to include\n"
  7703. "in the resulting geometry.\n"
  7704. "0 means no detail and 255 means everything \n"
  7705. "(which is totally black)."
  7706. #: flatcamTools/ToolImage.py:105
  7707. msgid ""
  7708. "Mask for RED color.\n"
  7709. "Takes values between [0 ... 255].\n"
  7710. "Decides the level of details to include\n"
  7711. "in the resulting geometry."
  7712. msgstr ""
  7713. "Mask for RED color.\n"
  7714. "Takes values between [0 ... 255].\n"
  7715. "Decides the level of details to include\n"
  7716. "in the resulting geometry."
  7717. #: flatcamTools/ToolImage.py:116
  7718. msgid ""
  7719. "Mask for GREEN color.\n"
  7720. "Takes values between [0 ... 255].\n"
  7721. "Decides the level of details to include\n"
  7722. "in the resulting geometry."
  7723. msgstr ""
  7724. "Mask for GREEN color.\n"
  7725. "Takes values between [0 ... 255].\n"
  7726. "Decides the level of details to include\n"
  7727. "in the resulting geometry."
  7728. #: flatcamTools/ToolImage.py:127
  7729. msgid ""
  7730. "Mask for BLUE color.\n"
  7731. "Takes values between [0 ... 255].\n"
  7732. "Decides the level of details to include\n"
  7733. "in the resulting geometry."
  7734. msgstr ""
  7735. "Mask for BLUE color.\n"
  7736. "Takes values between [0 ... 255].\n"
  7737. "Decides the level of details to include\n"
  7738. "in the resulting geometry."
  7739. #: flatcamTools/ToolImage.py:139
  7740. msgid "Import image"
  7741. msgstr "Import image"
  7742. #: flatcamTools/ToolImage.py:141
  7743. msgid "Open a image of raster type and then import it in FlatCAM."
  7744. msgstr "Open a image of raster type and then import it in FlatCAM."
  7745. #: flatcamTools/ToolImage.py:170
  7746. msgid "Image Tool"
  7747. msgstr "Image Tool"
  7748. #: flatcamTools/ToolImage.py:200 flatcamTools/ToolImage.py:203
  7749. msgid "Import IMAGE"
  7750. msgstr "Import IMAGE"
  7751. #: flatcamTools/ToolMeasurement.py:26
  7752. msgid "Measurement"
  7753. msgstr "Measurement"
  7754. #: flatcamTools/ToolMeasurement.py:47
  7755. msgid "Start"
  7756. msgstr "Start"
  7757. #: flatcamTools/ToolMeasurement.py:47 flatcamTools/ToolMeasurement.py:50
  7758. msgid "Coords"
  7759. msgstr "Coords"
  7760. #: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:99
  7761. msgid "This is measuring Start point coordinates."
  7762. msgstr "This is measuring Start point coordinates."
  7763. #: flatcamTools/ToolMeasurement.py:50
  7764. msgid "Stop"
  7765. msgstr "Stop"
  7766. #: flatcamTools/ToolMeasurement.py:51 flatcamTools/ToolMeasurement.py:104
  7767. msgid "This is the measuring Stop point coordinates."
  7768. msgstr "This is the measuring Stop point coordinates."
  7769. #: flatcamTools/ToolMeasurement.py:54 flatcamTools/ToolMeasurement.py:109
  7770. msgid "This is the distance measured over the X axis."
  7771. msgstr "This is the distance measured over the X axis."
  7772. #: flatcamTools/ToolMeasurement.py:57 flatcamTools/ToolMeasurement.py:115
  7773. msgid "This is the distance measured over the Y axis."
  7774. msgstr "This is the distance measured over the Y axis."
  7775. #: flatcamTools/ToolMeasurement.py:59
  7776. msgid "DISTANCE"
  7777. msgstr "DISTANCE"
  7778. #: flatcamTools/ToolMeasurement.py:60 flatcamTools/ToolMeasurement.py:121
  7779. msgid "This is the point to point Euclidian distance."
  7780. msgstr "This is the point to point Euclidian distance."
  7781. #: flatcamTools/ToolMeasurement.py:63 flatcamTools/ToolMeasurement.py:70
  7782. #: flatcamTools/ToolMeasurement.py:77 flatcamTools/ToolMeasurement.py:84
  7783. #: flatcamTools/ToolMeasurement.py:91
  7784. msgid "Those are the units in which the distance is measured."
  7785. msgstr "Those are the units in which the distance is measured."
  7786. #: flatcamTools/ToolMeasurement.py:124
  7787. msgid "Measure"
  7788. msgstr "Measure"
  7789. #: flatcamTools/ToolMeasurement.py:183
  7790. msgid "Meas. Tool"
  7791. msgstr "Meas. Tool"
  7792. #: flatcamTools/ToolMeasurement.py:276
  7793. msgid "MEASURING: Click on the Start point ..."
  7794. msgstr "MEASURING: Click on the Start point ..."
  7795. #: flatcamTools/ToolMeasurement.py:305
  7796. msgid "MEASURING: Click on the Destination point ..."
  7797. msgstr "MEASURING: Click on the Destination point ..."
  7798. #: flatcamTools/ToolMeasurement.py:326
  7799. #, python-brace-format
  7800. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  7801. msgstr "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  7802. #: flatcamTools/ToolMove.py:81
  7803. msgid "MOVE: Click on the Start point ..."
  7804. msgstr "MOVE: Click on the Start point ..."
  7805. #: flatcamTools/ToolMove.py:88
  7806. msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  7807. msgstr "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  7808. #: flatcamTools/ToolMove.py:110
  7809. msgid "MOVE: Click on the Destination point ..."
  7810. msgstr "MOVE: Click on the Destination point ..."
  7811. #: flatcamTools/ToolMove.py:128
  7812. msgid "Moving ..."
  7813. msgstr "Moving ..."
  7814. #: flatcamTools/ToolMove.py:135
  7815. msgid "[WARNING_NOTCL] No object(s) selected."
  7816. msgstr "[WARNING_NOTCL] No object(s) selected."
  7817. #: flatcamTools/ToolMove.py:158
  7818. #, python-format
  7819. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  7820. msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  7821. #: flatcamTools/ToolMove.py:164
  7822. #, python-format
  7823. msgid "[success]%s object was moved ..."
  7824. msgstr "[success]%s object was moved ..."
  7825. #: flatcamTools/ToolMove.py:174
  7826. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  7827. msgstr ""
  7828. "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  7829. #: flatcamTools/ToolMove.py:202
  7830. msgid "[WARNING_NOTCL]Move action cancelled."
  7831. msgstr "[WARNING_NOTCL]Move action cancelled."
  7832. #: flatcamTools/ToolMove.py:214
  7833. msgid "[WARNING_NOTCL]Object(s) not selected"
  7834. msgstr "[WARNING_NOTCL]Object(s) not selected"
  7835. #: flatcamTools/ToolNonCopperClear.py:25
  7836. msgid "Non-Copper Clearing"
  7837. msgstr "Non-Copper Clearing"
  7838. #: flatcamTools/ToolNonCopperClear.py:63
  7839. msgid "Gerber object to be cleared of excess copper. "
  7840. msgstr "Gerber object to be cleared of excess copper. "
  7841. #: flatcamTools/ToolNonCopperClear.py:73
  7842. msgid ""
  7843. "Tools pool from which the algorithm\n"
  7844. "will pick the ones used for copper clearing."
  7845. msgstr ""
  7846. "Tools pool from which the algorithm\n"
  7847. "will pick the ones used for copper clearing."
  7848. #: flatcamTools/ToolNonCopperClear.py:88
  7849. msgid ""
  7850. "This is the Tool Number.\n"
  7851. "Non copper clearing will start with the tool with the biggest \n"
  7852. "diameter, continuing until there are no more tools.\n"
  7853. "Only tools that create NCC clearing geometry will still be present\n"
  7854. "in the resulting geometry. This is because with some tools\n"
  7855. "this function will not be able to create painting geometry."
  7856. msgstr ""
  7857. "This is the Tool Number.\n"
  7858. "Non copper clearing will start with the tool with the biggest \n"
  7859. "diameter, continuing until there are no more tools.\n"
  7860. "Only tools that create NCC clearing geometry will still be present\n"
  7861. "in the resulting geometry. This is because with some tools\n"
  7862. "this function will not be able to create painting geometry."
  7863. #: flatcamTools/ToolNonCopperClear.py:100 flatcamTools/ToolPaint.py:98
  7864. msgid ""
  7865. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  7866. "informative only. Being circular, <BR>the cut width in material is exactly "
  7867. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  7868. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  7869. "parameter in the resulting geometry UI form and enable two additional UI "
  7870. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  7871. "those two values will adjust the Z-Cut parameter such as the cut width into "
  7872. "material will be equal with the value in the Tool Diameter column of this "
  7873. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  7874. "the Operation Type in the resulting geometry as Isolation."
  7875. msgstr ""
  7876. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  7877. "informative only. Being circular, <BR>the cut width in material is exactly "
  7878. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  7879. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  7880. "parameter in the resulting geometry UI form and enable two additional UI "
  7881. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  7882. "those two values will adjust the Z-Cut parameter such as the cut width into "
  7883. "material will be equal with the value in the Tool Diameter column of this "
  7884. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  7885. "the Operation Type in the resulting geometry as Isolation."
  7886. #: flatcamTools/ToolNonCopperClear.py:119 flatcamTools/ToolPaint.py:117
  7887. msgid "Tool Dia"
  7888. msgstr "Tool Dia"
  7889. #: flatcamTools/ToolNonCopperClear.py:121
  7890. msgid "Diameter for the new tool to add in the Tool Table"
  7891. msgstr "Diameter for the new tool to add in the Tool Table"
  7892. #: flatcamTools/ToolNonCopperClear.py:147 flatcamTools/ToolPaint.py:145
  7893. #: flatcamTools/ToolSolderPaste.py:123
  7894. msgid ""
  7895. "Delete a selection of tools in the Tool Table\n"
  7896. "by first selecting a row(s) in the Tool Table."
  7897. msgstr ""
  7898. "Delete a selection of tools in the Tool Table\n"
  7899. "by first selecting a row(s) in the Tool Table."
  7900. #: flatcamTools/ToolNonCopperClear.py:225
  7901. msgid ""
  7902. "If checked, use 'rest machining'.\n"
  7903. "Basically it will clear copper outside PCB features,\n"
  7904. "using the biggest tool and continue with the next tools,\n"
  7905. "from bigger to smaller, to clear areas of copper that\n"
  7906. "could not be cleared by previous tool, until there is\n"
  7907. "no more copper to clear or there are no more tools.\n"
  7908. "If not checked, use the standard algorithm."
  7909. msgstr ""
  7910. "If checked, use 'rest machining'.\n"
  7911. "Basically it will clear copper outside PCB features,\n"
  7912. "using the biggest tool and continue with the next tools,\n"
  7913. "from bigger to smaller, to clear areas of copper that\n"
  7914. "could not be cleared by previous tool, until there is\n"
  7915. "no more copper to clear or there are no more tools.\n"
  7916. "If not checked, use the standard algorithm."
  7917. #: flatcamTools/ToolNonCopperClear.py:237
  7918. msgid "Generate Geometry"
  7919. msgstr "Generate Geometry"
  7920. #: flatcamTools/ToolNonCopperClear.py:483 flatcamTools/ToolPaint.py:543
  7921. #: flatcamTools/ToolSolderPaste.py:760
  7922. msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  7923. msgstr "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  7924. #: flatcamTools/ToolNonCopperClear.py:511 flatcamTools/ToolPaint.py:567
  7925. msgid "[WARNING_NOTCL]Adding tool cancelled. Tool already in Tool Table."
  7926. msgstr "[WARNING_NOTCL]Adding tool cancelled. Tool already in Tool Table."
  7927. #: flatcamTools/ToolNonCopperClear.py:516 flatcamTools/ToolPaint.py:572
  7928. msgid "[success] New tool added to Tool Table."
  7929. msgstr "[success] New tool added to Tool Table."
  7930. #: flatcamTools/ToolNonCopperClear.py:549
  7931. msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
  7932. msgstr "[ERROR_NOTCL] Wrong value format entered, use a number."
  7933. #: flatcamTools/ToolNonCopperClear.py:558 flatcamTools/ToolPaint.py:615
  7934. msgid "[success] Tool from Tool Table was edited."
  7935. msgstr "[success] Tool from Tool Table was edited."
  7936. #: flatcamTools/ToolNonCopperClear.py:569 flatcamTools/ToolPaint.py:626
  7937. #: flatcamTools/ToolSolderPaste.py:846
  7938. msgid ""
  7939. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  7940. "Table."
  7941. msgstr ""
  7942. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  7943. "Table."
  7944. #: flatcamTools/ToolNonCopperClear.py:608 flatcamTools/ToolPaint.py:723
  7945. msgid "[WARNING_NOTCL]Delete failed. Select a tool to delete."
  7946. msgstr "[WARNING_NOTCL]Delete failed. Select a tool to delete."
  7947. #: flatcamTools/ToolNonCopperClear.py:613 flatcamTools/ToolPaint.py:728
  7948. msgid "[success] Tool(s) deleted from Tool Table."
  7949. msgstr "[success] Tool(s) deleted from Tool Table."
  7950. #: flatcamTools/ToolNonCopperClear.py:666
  7951. msgid "[ERROR_NOTCL]No Gerber file available."
  7952. msgstr "[ERROR_NOTCL]No Gerber file available."
  7953. #: flatcamTools/ToolNonCopperClear.py:704
  7954. #: flatcamTools/ToolNonCopperClear.py:826
  7955. msgid "Clearing Non-Copper areas."
  7956. msgstr "Clearing Non-Copper areas."
  7957. #: flatcamTools/ToolNonCopperClear.py:722
  7958. #, python-format
  7959. msgid "[success] Non-Copper Clearing with ToolDia = %s started."
  7960. msgstr "[success] Non-Copper Clearing with ToolDia = %s started."
  7961. #: flatcamTools/ToolNonCopperClear.py:791
  7962. #, python-format
  7963. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  7964. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  7965. #: flatcamTools/ToolNonCopperClear.py:796
  7966. msgid "[success] NCC Tool finished."
  7967. msgstr "[success] NCC Tool finished."
  7968. #: flatcamTools/ToolNonCopperClear.py:798
  7969. msgid ""
  7970. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  7971. "cleared. Check the result."
  7972. msgstr ""
  7973. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  7974. "cleared. Check the result."
  7975. #: flatcamTools/ToolNonCopperClear.py:844
  7976. #, python-format
  7977. msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  7978. msgstr "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  7979. #: flatcamTools/ToolNonCopperClear.py:942
  7980. #, python-format
  7981. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  7982. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  7983. #: flatcamTools/ToolNonCopperClear.py:950
  7984. msgid ""
  7985. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  7986. "settings."
  7987. msgstr ""
  7988. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  7989. "settings."
  7990. #: flatcamTools/ToolPaint.py:24
  7991. msgid "Paint Area"
  7992. msgstr "Paint Area"
  7993. #: flatcamTools/ToolPaint.py:60
  7994. msgid "Geometry:"
  7995. msgstr "Geometry:"
  7996. #: flatcamTools/ToolPaint.py:62
  7997. msgid "Geometry object to be painted. "
  7998. msgstr "Geometry object to be painted. "
  7999. #: flatcamTools/ToolPaint.py:71
  8000. msgid ""
  8001. "Tools pool from which the algorithm\n"
  8002. "will pick the ones used for painting."
  8003. msgstr ""
  8004. "Tools pool from which the algorithm\n"
  8005. "will pick the ones used for painting."
  8006. #: flatcamTools/ToolPaint.py:86
  8007. msgid ""
  8008. "This is the Tool Number.\n"
  8009. "Painting will start with the tool with the biggest diameter,\n"
  8010. "continuing until there are no more tools.\n"
  8011. "Only tools that create painting geometry will still be present\n"
  8012. "in the resulting geometry. This is because with some tools\n"
  8013. "this function will not be able to create painting geometry."
  8014. msgstr ""
  8015. "This is the Tool Number.\n"
  8016. "Painting will start with the tool with the biggest diameter,\n"
  8017. "continuing until there are no more tools.\n"
  8018. "Only tools that create painting geometry will still be present\n"
  8019. "in the resulting geometry. This is because with some tools\n"
  8020. "this function will not be able to create painting geometry."
  8021. #: flatcamTools/ToolPaint.py:119
  8022. msgid "Diameter for the new tool."
  8023. msgstr "Diameter for the new tool."
  8024. #: flatcamTools/ToolPaint.py:224
  8025. msgid ""
  8026. "If checked, use 'rest machining'.\n"
  8027. "Basically it will clear copper outside PCB features,\n"
  8028. "using the biggest tool and continue with the next tools,\n"
  8029. "from bigger to smaller, to clear areas of copper that\n"
  8030. "could not be cleared by previous tool, until there is\n"
  8031. "no more copper to clear or there are no more tools.\n"
  8032. "\n"
  8033. "If not checked, use the standard algorithm."
  8034. msgstr ""
  8035. "If checked, use 'rest machining'.\n"
  8036. "Basically it will clear copper outside PCB features,\n"
  8037. "using the biggest tool and continue with the next tools,\n"
  8038. "from bigger to smaller, to clear areas of copper that\n"
  8039. "could not be cleared by previous tool, until there is\n"
  8040. "no more copper to clear or there are no more tools.\n"
  8041. "\n"
  8042. "If not checked, use the standard algorithm."
  8043. #: flatcamTools/ToolPaint.py:239
  8044. msgid ""
  8045. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  8046. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  8047. "polygons."
  8048. msgstr ""
  8049. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  8050. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  8051. "polygons."
  8052. #: flatcamTools/ToolPaint.py:254
  8053. msgid "Create Paint Geometry"
  8054. msgstr "Create Paint Geometry"
  8055. #: flatcamTools/ToolPaint.py:256
  8056. msgid ""
  8057. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  8058. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  8059. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  8060. "created."
  8061. msgstr ""
  8062. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  8063. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  8064. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  8065. "created."
  8066. #: flatcamTools/ToolPaint.py:732
  8067. msgid "geometry_on_paint_button"
  8068. msgstr "geometry_on_paint_button"
  8069. #: flatcamTools/ToolPaint.py:735 flatcamTools/ToolPaint.py:780
  8070. msgid "[WARNING_NOTCL]Click inside the desired polygon."
  8071. msgstr "[WARNING_NOTCL]Click inside the desired polygon."
  8072. #: flatcamTools/ToolPaint.py:767
  8073. msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  8074. msgstr "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  8075. #: flatcamTools/ToolPaint.py:789 flatcamTools/ToolPaint.py:992
  8076. msgid "Painting polygon..."
  8077. msgstr "Painting polygon..."
  8078. #: flatcamTools/ToolPaint.py:840
  8079. msgid "[WARNING] No polygon found."
  8080. msgstr "[WARNING] No polygon found."
  8081. #: flatcamTools/ToolPaint.py:843
  8082. msgid "Painting polygon."
  8083. msgstr "Painting polygon."
  8084. #: flatcamTools/ToolPaint.py:885
  8085. msgid "[ERROR_NOTCL] Geometry could not be painted completely"
  8086. msgstr "[ERROR_NOTCL] Geometry could not be painted completely"
  8087. #: flatcamTools/ToolPaint.py:911
  8088. #, python-format
  8089. msgid ""
  8090. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  8091. "different strategy of paint\n"
  8092. "%s"
  8093. msgstr ""
  8094. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  8095. "different strategy of paint\n"
  8096. "%s"
  8097. #: flatcamTools/ToolPaint.py:953
  8098. #, python-format
  8099. msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  8100. msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  8101. #: flatcamTools/ToolPaint.py:959 flatcamTools/ToolPaint.py:1251
  8102. msgid "Polygon Paint started ..."
  8103. msgstr "Polygon Paint started ..."
  8104. #: flatcamTools/ToolPaint.py:1107 flatcamTools/ToolPaint.py:1196
  8105. #, python-format
  8106. msgid ""
  8107. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  8108. "Or a different Method of paint\n"
  8109. "%s"
  8110. msgstr ""
  8111. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  8112. "Or a different Method of paint\n"
  8113. "%s"
  8114. #: flatcamTools/ToolPaint.py:1131
  8115. msgid ""
  8116. "[ERROR] There is no Painting Geometry in the file.\n"
  8117. "Usually it means that the tool diameter is too big for the painted "
  8118. "geometry.\n"
  8119. "Change the painting parameters and try again."
  8120. msgstr ""
  8121. "[ERROR] There is no Painting Geometry in the file.\n"
  8122. "Usually it means that the tool diameter is too big for the painted "
  8123. "geometry.\n"
  8124. "Change the painting parameters and try again."
  8125. #: flatcamTools/ToolPaint.py:1140
  8126. msgid "[success] Paint All Done."
  8127. msgstr "[success] Paint All Done."
  8128. #: flatcamTools/ToolPaint.py:1226
  8129. msgid ""
  8130. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  8131. "Usually it means that the tool diameter is too big for the painted "
  8132. "geometry.\n"
  8133. "Change the painting parameters and try again."
  8134. msgstr ""
  8135. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  8136. "Usually it means that the tool diameter is too big for the painted "
  8137. "geometry.\n"
  8138. "Change the painting parameters and try again."
  8139. #: flatcamTools/ToolPaint.py:1235
  8140. msgid "[success] Paint All with Rest-Machining done."
  8141. msgstr "[success] Paint All with Rest-Machining done."
  8142. #: flatcamTools/ToolPanelize.py:25
  8143. msgid "Panelize PCB"
  8144. msgstr "Panelize PCB"
  8145. #: flatcamTools/ToolPanelize.py:58
  8146. msgid ""
  8147. "Specify the type of object to be panelized\n"
  8148. "It can be of type: Gerber, Excellon or Geometry.\n"
  8149. "The selection here decide the type of objects that will be\n"
  8150. "in the Object combobox."
  8151. msgstr ""
  8152. "Specify the type of object to be panelized\n"
  8153. "It can be of type: Gerber, Excellon or Geometry.\n"
  8154. "The selection here decide the type of objects that will be\n"
  8155. "in the Object combobox."
  8156. #: flatcamTools/ToolPanelize.py:73
  8157. msgid ""
  8158. "Object to be panelized. This means that it will\n"
  8159. "be duplicated in an array of rows and columns."
  8160. msgstr ""
  8161. "Object to be panelized. This means that it will\n"
  8162. "be duplicated in an array of rows and columns."
  8163. #: flatcamTools/ToolPanelize.py:91
  8164. msgid ""
  8165. "Specify the type of object to be used as an container for\n"
  8166. "panelization. It can be: Gerber or Geometry type.\n"
  8167. "The selection here decide the type of objects that will be\n"
  8168. "in the Box Object combobox."
  8169. msgstr ""
  8170. "Specify the type of object to be used as an container for\n"
  8171. "panelization. It can be: Gerber or Geometry type.\n"
  8172. "The selection here decide the type of objects that will be\n"
  8173. "in the Box Object combobox."
  8174. #: flatcamTools/ToolPanelize.py:106
  8175. msgid ""
  8176. "The actual object that is used a container for the\n"
  8177. " selected object that is to be panelized."
  8178. msgstr ""
  8179. "The actual object that is used a container for the\n"
  8180. " selected object that is to be panelized."
  8181. #: flatcamTools/ToolPanelize.py:150
  8182. msgid ""
  8183. "Choose the type of object for the panel object:\n"
  8184. "- Geometry\n"
  8185. "- Gerber"
  8186. msgstr ""
  8187. "Choose the type of object for the panel object:\n"
  8188. "- Geometry\n"
  8189. "- Gerber"
  8190. #: flatcamTools/ToolPanelize.py:158
  8191. msgid "Constrain panel within:"
  8192. msgstr "Constrain panel within:"
  8193. #: flatcamTools/ToolPanelize.py:192
  8194. msgid "Panelize Object"
  8195. msgstr "Panelize Object"
  8196. #: flatcamTools/ToolPanelize.py:194
  8197. msgid ""
  8198. "Panelize the specified object around the specified box.\n"
  8199. "In other words it creates multiple copies of the source object,\n"
  8200. "arranged in a 2D array of rows and columns."
  8201. msgstr ""
  8202. "Panelize the specified object around the specified box.\n"
  8203. "In other words it creates multiple copies of the source object,\n"
  8204. "arranged in a 2D array of rows and columns."
  8205. #: flatcamTools/ToolPanelize.py:311
  8206. #, python-format
  8207. msgid "[WARNING]No object Box. Using instead %s"
  8208. msgstr "[WARNING]No object Box. Using instead %s"
  8209. #: flatcamTools/ToolPanelize.py:392
  8210. msgid ""
  8211. "[ERROR_NOTCL]Columns or Rows are zero value. Change them to a positive "
  8212. "integer."
  8213. msgstr ""
  8214. "[ERROR_NOTCL]Columns or Rows are zero value. Change them to a positive "
  8215. "integer."
  8216. #: flatcamTools/ToolPanelize.py:417 flatcamTools/ToolPanelize.py:526
  8217. msgid "Generating panel ... Please wait."
  8218. msgstr "Generating panel ... Please wait."
  8219. #: flatcamTools/ToolPanelize.py:520
  8220. msgid "[success]Panel done..."
  8221. msgstr "[success]Panel done..."
  8222. #: flatcamTools/ToolPanelize.py:523
  8223. #, python-brace-format
  8224. msgid ""
  8225. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  8226. "{row} rows"
  8227. msgstr ""
  8228. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  8229. "{row} rows"
  8230. #: flatcamTools/ToolPanelize.py:531
  8231. msgid "[success]Panel created successfully."
  8232. msgstr "[success]Panel created successfully."
  8233. #: flatcamTools/ToolProperties.py:103
  8234. msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  8235. msgstr "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  8236. #: flatcamTools/ToolProperties.py:110
  8237. msgid "[success] Object Properties are displayed."
  8238. msgstr "[success] Object Properties are displayed."
  8239. #: flatcamTools/ToolProperties.py:111
  8240. msgid "Properties Tool"
  8241. msgstr "Properties Tool"
  8242. #: flatcamTools/ToolShell.py:69
  8243. msgid "...proccessing..."
  8244. msgstr "...proccessing..."
  8245. #: flatcamTools/ToolShell.py:71
  8246. #, python-format
  8247. msgid "...proccessing... [%s]"
  8248. msgstr "...proccessing... [%s]"
  8249. #: flatcamTools/ToolSolderPaste.py:37
  8250. msgid "Solder Paste Tool"
  8251. msgstr "Solder Paste Tool"
  8252. #: flatcamTools/ToolSolderPaste.py:65
  8253. msgid "Gerber Solder paste object. "
  8254. msgstr "Gerber Solder paste object. "
  8255. #: flatcamTools/ToolSolderPaste.py:72
  8256. msgid ""
  8257. "Tools pool from which the algorithm\n"
  8258. "will pick the ones used for dispensing solder paste."
  8259. msgstr ""
  8260. "Tools pool from which the algorithm\n"
  8261. "will pick the ones used for dispensing solder paste."
  8262. #: flatcamTools/ToolSolderPaste.py:87
  8263. msgid ""
  8264. "This is the Tool Number.\n"
  8265. "The solder dispensing will start with the tool with the biggest \n"
  8266. "diameter, continuing until there are no more Nozzle tools.\n"
  8267. "If there are no longer tools but there are still pads not covered\n"
  8268. " with solder paste, the app will issue a warning message box."
  8269. msgstr ""
  8270. "This is the Tool Number.\n"
  8271. "The solder dispensing will start with the tool with the biggest \n"
  8272. "diameter, continuing until there are no more Nozzle tools.\n"
  8273. "If there are no longer tools but there are still pads not covered\n"
  8274. " with solder paste, the app will issue a warning message box."
  8275. #: flatcamTools/ToolSolderPaste.py:94
  8276. msgid ""
  8277. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  8278. "is the width of the solder paste dispensed."
  8279. msgstr ""
  8280. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  8281. "is the width of the solder paste dispensed."
  8282. #: flatcamTools/ToolSolderPaste.py:101
  8283. msgid "New Nozzle Tool"
  8284. msgstr "New Nozzle Tool"
  8285. #: flatcamTools/ToolSolderPaste.py:117
  8286. msgid ""
  8287. "Add a new nozzle tool to the Tool Table\n"
  8288. "with the diameter specified above."
  8289. msgstr ""
  8290. "Add a new nozzle tool to the Tool Table\n"
  8291. "with the diameter specified above."
  8292. #: flatcamTools/ToolSolderPaste.py:129
  8293. msgid "Generate solder paste dispensing geometry."
  8294. msgstr "Generate solder paste dispensing geometry."
  8295. #: flatcamTools/ToolSolderPaste.py:142
  8296. msgid "STEP 1"
  8297. msgstr "STEP 1"
  8298. #: flatcamTools/ToolSolderPaste.py:144
  8299. msgid ""
  8300. "First step is to select a number of nozzle tools for usage\n"
  8301. "and then optionally modify the GCode parameters bellow."
  8302. msgstr ""
  8303. "First step is to select a number of nozzle tools for usage\n"
  8304. "and then optionally modify the GCode parameters bellow."
  8305. #: flatcamTools/ToolSolderPaste.py:147
  8306. msgid ""
  8307. "Select tools.\n"
  8308. "Modify parameters."
  8309. msgstr ""
  8310. "Select tools.\n"
  8311. "Modify parameters."
  8312. #: flatcamTools/ToolSolderPaste.py:290
  8313. msgid "Generate GCode"
  8314. msgstr "Generate GCode"
  8315. #: flatcamTools/ToolSolderPaste.py:292
  8316. msgid ""
  8317. "Generate GCode for Solder Paste dispensing\n"
  8318. "on PCB pads."
  8319. msgstr ""
  8320. "Generate GCode for Solder Paste dispensing\n"
  8321. "on PCB pads."
  8322. #: flatcamTools/ToolSolderPaste.py:308
  8323. msgid "STEP 2:"
  8324. msgstr "STEP 2:"
  8325. #: flatcamTools/ToolSolderPaste.py:310
  8326. msgid ""
  8327. "Second step is to create a solder paste dispensing\n"
  8328. "geometry out of an Solder Paste Mask Gerber file."
  8329. msgstr ""
  8330. "Second step is to create a solder paste dispensing\n"
  8331. "geometry out of an Solder Paste Mask Gerber file."
  8332. #: flatcamTools/ToolSolderPaste.py:326
  8333. msgid "Geo Result:"
  8334. msgstr "Geo Result:"
  8335. #: flatcamTools/ToolSolderPaste.py:328
  8336. msgid ""
  8337. "Geometry Solder Paste object.\n"
  8338. "The name of the object has to end in:\n"
  8339. "'_solderpaste' as a protection."
  8340. msgstr ""
  8341. "Geometry Solder Paste object.\n"
  8342. "The name of the object has to end in:\n"
  8343. "'_solderpaste' as a protection."
  8344. #: flatcamTools/ToolSolderPaste.py:337
  8345. msgid "STEP 3:"
  8346. msgstr "STEP 3:"
  8347. #: flatcamTools/ToolSolderPaste.py:339
  8348. msgid ""
  8349. "Third step is to select a solder paste dispensing geometry,\n"
  8350. "and then generate a CNCJob object.\n"
  8351. "\n"
  8352. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  8353. "first you need to generate a geometry with those new params,\n"
  8354. "and only after that you can generate an updated CNCJob."
  8355. msgstr ""
  8356. "Third step is to select a solder paste dispensing geometry,\n"
  8357. "and then generate a CNCJob object.\n"
  8358. "\n"
  8359. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  8360. "first you need to generate a geometry with those new params,\n"
  8361. "and only after that you can generate an updated CNCJob."
  8362. #: flatcamTools/ToolSolderPaste.py:359
  8363. msgid "CNC Result:"
  8364. msgstr "CNC Result:"
  8365. #: flatcamTools/ToolSolderPaste.py:361
  8366. msgid ""
  8367. "CNCJob Solder paste object.\n"
  8368. "In order to enable the GCode save section,\n"
  8369. "the name of the object has to end in:\n"
  8370. "'_solderpaste' as a protection."
  8371. msgstr ""
  8372. "CNCJob Solder paste object.\n"
  8373. "In order to enable the GCode save section,\n"
  8374. "the name of the object has to end in:\n"
  8375. "'_solderpaste' as a protection."
  8376. #: flatcamTools/ToolSolderPaste.py:371
  8377. msgid "View GCode"
  8378. msgstr "View GCode"
  8379. #: flatcamTools/ToolSolderPaste.py:373
  8380. msgid ""
  8381. "View the generated GCode for Solder Paste dispensing\n"
  8382. "on PCB pads."
  8383. msgstr ""
  8384. "View the generated GCode for Solder Paste dispensing\n"
  8385. "on PCB pads."
  8386. #: flatcamTools/ToolSolderPaste.py:377
  8387. msgid "Save GCode"
  8388. msgstr "Save GCode"
  8389. #: flatcamTools/ToolSolderPaste.py:379
  8390. msgid ""
  8391. "Save the generated GCode for Solder Paste dispensing\n"
  8392. "on PCB pads, to a file."
  8393. msgstr ""
  8394. "Save the generated GCode for Solder Paste dispensing\n"
  8395. "on PCB pads, to a file."
  8396. #: flatcamTools/ToolSolderPaste.py:383
  8397. msgid "STEP 4:"
  8398. msgstr "STEP 4:"
  8399. #: flatcamTools/ToolSolderPaste.py:385
  8400. msgid ""
  8401. "Fourth step (and last) is to select a CNCJob made from \n"
  8402. "a solder paste dispensing geometry, and then view/save it's GCode."
  8403. msgstr ""
  8404. "Fourth step (and last) is to select a CNCJob made from \n"
  8405. "a solder paste dispensing geometry, and then view/save it's GCode."
  8406. #: flatcamTools/ToolSolderPaste.py:413
  8407. msgid "Delete Object"
  8408. msgstr "Delete Object"
  8409. #: flatcamTools/ToolSolderPaste.py:788
  8410. msgid ""
  8411. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  8412. msgstr ""
  8413. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  8414. #: flatcamTools/ToolSolderPaste.py:793
  8415. msgid "[success] New Nozzle tool added to Tool Table."
  8416. msgstr "[success] New Nozzle tool added to Tool Table."
  8417. #: flatcamTools/ToolSolderPaste.py:835
  8418. msgid "[success] Nozzle tool from Tool Table was edited."
  8419. msgstr "[success] Nozzle tool from Tool Table was edited."
  8420. #: flatcamTools/ToolSolderPaste.py:891
  8421. msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  8422. msgstr "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  8423. #: flatcamTools/ToolSolderPaste.py:896
  8424. msgid "[success] Nozzle tool(s) deleted from Tool Table."
  8425. msgstr "[success] Nozzle tool(s) deleted from Tool Table."
  8426. #: flatcamTools/ToolSolderPaste.py:951
  8427. msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  8428. msgstr "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  8429. #: flatcamTools/ToolSolderPaste.py:968
  8430. msgid "Creating Solder Paste dispensing geometry."
  8431. msgstr "Creating Solder Paste dispensing geometry."
  8432. #: flatcamTools/ToolSolderPaste.py:980
  8433. msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
  8434. msgstr "[WARNING_NOTCL] No Nozzle tools in the tool table."
  8435. #: flatcamTools/ToolSolderPaste.py:1106 flatcamTools/ToolSolderPaste.py:1161
  8436. msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  8437. msgstr "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  8438. #: flatcamTools/ToolSolderPaste.py:1109
  8439. msgid "[success] Solder Paste geometry generated successfully..."
  8440. msgstr "[success] Solder Paste geometry generated successfully..."
  8441. #: flatcamTools/ToolSolderPaste.py:1115
  8442. msgid ""
  8443. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  8444. "diameters..."
  8445. msgstr ""
  8446. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  8447. "diameters..."
  8448. #: flatcamTools/ToolSolderPaste.py:1129
  8449. msgid "Generating Solder Paste dispensing geometry..."
  8450. msgstr "Generating Solder Paste dispensing geometry..."
  8451. #: flatcamTools/ToolSolderPaste.py:1149
  8452. msgid "[WARNING_NOTCL] There is no Geometry object available."
  8453. msgstr "[WARNING_NOTCL] There is no Geometry object available."
  8454. #: flatcamTools/ToolSolderPaste.py:1153
  8455. msgid ""
  8456. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  8457. "geometry."
  8458. msgstr ""
  8459. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  8460. "geometry."
  8461. #: flatcamTools/ToolSolderPaste.py:1258
  8462. #, python-format
  8463. msgid "[success] ToolSolderPaste CNCjob created: %s"
  8464. msgstr "[success] ToolSolderPaste CNCjob created: %s"
  8465. #: flatcamTools/ToolSolderPaste.py:1290 flatcamTools/ToolSolderPaste.py:1294
  8466. #: flatcamTools/ToolSolderPaste.py:1345
  8467. msgid ""
  8468. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  8469. "solder_paste_tool CNCJob object."
  8470. msgstr ""
  8471. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  8472. "solder_paste_tool CNCJob object."
  8473. #: flatcamTools/ToolSolderPaste.py:1317
  8474. msgid "[ERROR_NOTCL] No Gcode in the object..."
  8475. msgstr "[ERROR_NOTCL] No Gcode in the object..."
  8476. #: flatcamTools/ToolSolderPaste.py:1326
  8477. #, python-format
  8478. msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  8479. msgstr "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  8480. #: flatcamTools/ToolSolderPaste.py:1355
  8481. msgid "Export GCode ..."
  8482. msgstr "Export GCode ..."
  8483. #: flatcamTools/ToolSolderPaste.py:1363
  8484. msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
  8485. msgstr "[WARNING_NOTCL] Export Machine Code cancelled ..."
  8486. #: flatcamTools/ToolSolderPaste.py:1393
  8487. #, python-format
  8488. msgid "[success] Solder paste dispenser GCode file saved to: %s"
  8489. msgstr "[success] Solder paste dispenser GCode file saved to: %s"
  8490. #: flatcamTools/ToolTransform.py:23
  8491. msgid "Object Transform"
  8492. msgstr "Object Transform"
  8493. #: flatcamTools/ToolTransform.py:84
  8494. msgid ""
  8495. "Rotate the selected object(s).\n"
  8496. "The point of reference is the middle of\n"
  8497. "the bounding box for all selected objects."
  8498. msgstr ""
  8499. "Rotate the selected object(s).\n"
  8500. "The point of reference is the middle of\n"
  8501. "the bounding box for all selected objects."
  8502. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  8503. msgid ""
  8504. "Skew/shear the selected object(s).\n"
  8505. "The point of reference is the middle of\n"
  8506. "the bounding box for all selected objects."
  8507. msgstr ""
  8508. "Skew/shear the selected object(s).\n"
  8509. "The point of reference is the middle of\n"
  8510. "the bounding box for all selected objects."
  8511. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  8512. msgid ""
  8513. "Scale the selected object(s).\n"
  8514. "The point of reference depends on \n"
  8515. "the Scale reference checkbox state."
  8516. msgstr ""
  8517. "Scale the selected object(s).\n"
  8518. "The point of reference depends on \n"
  8519. "the Scale reference checkbox state."
  8520. #: flatcamTools/ToolTransform.py:202
  8521. msgid ""
  8522. "Scale the selected object(s)\n"
  8523. "using the Scale Factor X for both axis."
  8524. msgstr ""
  8525. "Scale the selected object(s)\n"
  8526. "using the Scale Factor X for both axis."
  8527. #: flatcamTools/ToolTransform.py:250 flatcamTools/ToolTransform.py:267
  8528. msgid ""
  8529. "Offset the selected object(s).\n"
  8530. "The point of reference is the middle of\n"
  8531. "the bounding box for all selected objects.\n"
  8532. msgstr ""
  8533. "Offset the selected object(s).\n"
  8534. "The point of reference is the middle of\n"
  8535. "the bounding box for all selected objects.\n"
  8536. #: flatcamTools/ToolTransform.py:297 flatcamTools/ToolTransform.py:305
  8537. msgid ""
  8538. "Flip the selected object(s) over the X axis.\n"
  8539. "Does not create a new object.\n"
  8540. " "
  8541. msgstr ""
  8542. "Flip the selected object(s) over the X axis.\n"
  8543. "Does not create a new object.\n"
  8544. " "
  8545. #: flatcamTools/ToolTransform.py:637
  8546. msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  8547. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  8548. #: flatcamTools/ToolTransform.py:665
  8549. msgid "CNCJob objects can't be rotated."
  8550. msgstr "CNCJob objects can't be rotated."
  8551. #: flatcamTools/ToolTransform.py:674
  8552. msgid "[success]Rotate done ..."
  8553. msgstr "[success]Rotate done ..."
  8554. #: flatcamTools/ToolTransform.py:689
  8555. msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  8556. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  8557. #: flatcamTools/ToolTransform.py:724
  8558. msgid "CNCJob objects can't be mirrored/flipped."
  8559. msgstr "CNCJob objects can't be mirrored/flipped."
  8560. #: flatcamTools/ToolTransform.py:735
  8561. msgid "[success]Flip on the Y axis done ..."
  8562. msgstr "[success]Flip on the Y axis done ..."
  8563. #: flatcamTools/ToolTransform.py:745
  8564. msgid "[success]Flip on the X axis done ..."
  8565. msgstr "[success]Flip on the X axis done ..."
  8566. #: flatcamTools/ToolTransform.py:759
  8567. msgid ""
  8568. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  8569. msgstr ""
  8570. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  8571. #: flatcamTools/ToolTransform.py:781
  8572. msgid "CNCJob objects can't be skewed."
  8573. msgstr "CNCJob objects can't be skewed."
  8574. #: flatcamTools/ToolTransform.py:793
  8575. #, python-format
  8576. msgid "[success]Skew on the %s axis done ..."
  8577. msgstr "[success]Skew on the %s axis done ..."
  8578. #: flatcamTools/ToolTransform.py:808
  8579. msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  8580. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  8581. #: flatcamTools/ToolTransform.py:841
  8582. msgid "CNCJob objects can't be scaled."
  8583. msgstr "CNCJob objects can't be scaled."
  8584. #: flatcamTools/ToolTransform.py:861
  8585. msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  8586. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  8587. #: flatcamTools/ToolTransform.py:882
  8588. msgid "CNCJob objects can't be offseted."
  8589. msgstr "CNCJob objects can't be offseted."
  8590. #: flatcamTools/ToolTransform.py:894
  8591. #, python-format
  8592. msgid "[success]Offset on the %s axis done ..."
  8593. msgstr "[success]Offset on the %s axis done ..."
  8594. msgid ""
  8595. "How much (fraction) of the tool width to overlap each tool pass.\n"
  8596. "Example:\n"
  8597. "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  8598. "\n"
  8599. "Adjust the value starting with lower values\n"
  8600. "and increasing it if areas that should be painted are still \n"
  8601. "not painted.\n"
  8602. "Lower values = faster processing, faster execution on PCB.\n"
  8603. "Higher values = slow processing and slow execution on CNC\n"
  8604. "due of too many paths."
  8605. msgstr ""
  8606. "How much (fraction) of the tool width to overlap each tool pass.\n"
  8607. "Example:\n"
  8608. "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  8609. "\n"
  8610. "Adjust the value starting with lower values\n"
  8611. "and increasing it if areas that should be painted are still \n"
  8612. "not painted.\n"
  8613. "Lower values = faster processing, faster execution on PCB.\n"
  8614. "Higher values = slow processing and slow execution on CNC\n"
  8615. "due of too many paths."
  8616. #| msgid "z_toolchange = Z coord for Toolchange"
  8617. msgid "z_cut = Z coord for Toolchange"
  8618. msgstr "z_cut = Z coord for Toolchange"
  8619. #| msgid "z_toolchange = Z coord for Toolchange"
  8620. msgid "z_move = Z coord for Toolchange"
  8621. msgstr "z_move = Z coord for Toolchange"
  8622. msgid "%s/Project_%s"
  8623. msgstr "%s/Project_%s"
  8624. msgid "tool_tab"
  8625. msgstr "tool_tab"