strings.po 324 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: \n"
  4. "POT-Creation-Date: 2019-03-25 15:11+0200\n"
  5. "PO-Revision-Date: 2019-03-25 16:32+0200\n"
  6. "Last-Translator: \n"
  7. "Language-Team: \n"
  8. "Language: de\n"
  9. "MIME-Version: 1.0\n"
  10. "Content-Type: text/plain; charset=UTF-8\n"
  11. "Content-Transfer-Encoding: 8bit\n"
  12. "X-Generator: Poedit 2.2.1\n"
  13. "X-Poedit-Basepath: .\n"
  14. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  15. #: FlatCAMApp.py:845
  16. msgid "[ERROR] Could not find the Language files. The App strings are missing."
  17. msgstr ""
  18. "[ERROR] Die Sprachdateien konnten nicht gefunden werden. Die App-"
  19. "Zeichenfolgen fehlen."
  20. #: FlatCAMApp.py:1987 ObjectCollection.py:80 flatcamTools/ToolImage.py:213
  21. msgid "Open cancelled."
  22. msgstr "Geöffnet storniert."
  23. #: FlatCAMApp.py:2001
  24. msgid "Open Config file failed."
  25. msgstr "Open Config-Datei ist fehlgeschlagen."
  26. #: FlatCAMApp.py:2015
  27. msgid "Open Script file failed."
  28. msgstr "Open Script-Datei ist fehlgeschlagen."
  29. #: FlatCAMApp.py:2200
  30. msgid ""
  31. "[WARNING_NOTCL] Editing a MultiGeo Geometry is not possible for the moment."
  32. msgstr ""
  33. "[WARNING_NOTCL] Das Bearbeiten einer MultiGeo-Geometrie ist momentan nicht "
  34. "möglich."
  35. #: FlatCAMApp.py:2221
  36. msgid "[WARNING_NOTCL]Select a Geometry or Excellon Object to edit."
  37. msgstr ""
  38. "[WARNING_NOTCL] Wählen Sie ein Geometrie- oder Excellon-Objekt zum "
  39. "Bearbeiten aus."
  40. #: FlatCAMApp.py:2232
  41. msgid "[WARNING_NOTCL]Editor is activated ..."
  42. msgstr "[WARNING_NOTCL] Editor ist aktiviert ..."
  43. #: FlatCAMApp.py:2271
  44. msgid "[WARNING] Object empty after edit."
  45. msgstr "[WARNING] Das Objekt ist nach der Bearbeitung leer."
  46. #: FlatCAMApp.py:2280
  47. msgid "[WARNING_NOTCL]Select a Geometry or Excellon Object to update."
  48. msgstr ""
  49. "[WARNING_NOTCL] Wählen Sie ein zu aktualisierendes Geometrie- oder Excellon-"
  50. "Objekt aus."
  51. #: FlatCAMApp.py:2293
  52. #, python-format
  53. msgid "[selected] %s is updated, returning to App..."
  54. msgstr "[selected] %s wird aktualisiert und kehrt zur App zurück ..."
  55. #: FlatCAMApp.py:2616
  56. msgid "[ERROR] Could not load defaults file."
  57. msgstr "[ERROR] Standarddatei konnte nicht geladen werden."
  58. #: FlatCAMApp.py:2628
  59. msgid "[ERROR] Failed to parse defaults file."
  60. msgstr "[ERROR] Fehler beim Parsen der Standarddatei."
  61. #: FlatCAMApp.py:2649 FlatCAMApp.py:2652
  62. msgid "Import FlatCAM Preferences"
  63. msgstr "FlatCAM-Voreinstellungen importieren"
  64. #: FlatCAMApp.py:2657
  65. msgid "[WARNING_NOTCL]FlatCAM preferences import cancelled."
  66. msgstr "[WARNING_NOTCL] Import der FlatCAM-Einstellungen wurde abgebrochen."
  67. #: FlatCAMApp.py:2665 FlatCAMApp.py:3145
  68. msgid "[ERROR_NOTCL] Could not load defaults file."
  69. msgstr "[ERROR_NOTCL] Standarddatei konnte nicht geladen werden."
  70. #: FlatCAMApp.py:2673 FlatCAMApp.py:3154
  71. msgid "[ERROR_NOTCL] Failed to parse defaults file."
  72. msgstr "[ERROR_NOTCL] Fehler beim Parsen der Standarddatei."
  73. #: FlatCAMApp.py:2676
  74. #, python-format
  75. msgid "[success]Imported Defaults from %s"
  76. msgstr "[success] Importierte Standardwerte aus %s"
  77. #: FlatCAMApp.py:2686 FlatCAMApp.py:2690
  78. msgid "Export FlatCAM Preferences"
  79. msgstr "FlatCAM-Voreinstellungen exportieren"
  80. #: FlatCAMApp.py:2696
  81. msgid "[WARNING_NOTCL]FlatCAM preferences export cancelled."
  82. msgstr "[WARNING_NOTCL] Export der FlatCAM-Einstellungen wurde abgebrochen."
  83. #: FlatCAMApp.py:2712
  84. msgid "[ERROR_NOTCL]Could not load defaults file."
  85. msgstr "[ERROR_NOTCL] Standarddatei konnte nicht geladen werden."
  86. #: FlatCAMApp.py:2731 FlatCAMApp.py:3168
  87. msgid "[ERROR_NOTCL] Failed to write defaults to file."
  88. msgstr "[ERROR_NOTCL] Fehler beim Schreiben der Standardwerte in die Datei."
  89. #: FlatCAMApp.py:2783
  90. msgid "[ERROR_NOTCL]Failed to open recent files file for writing."
  91. msgstr ""
  92. "[ERROR_NOTCL] Fehler beim Öffnen der zuletzt geöffneten Datei zum Schreiben."
  93. #: FlatCAMApp.py:2868 camlib.py:4229
  94. msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
  95. msgstr "[ERROR_NOTCL] Ein interner Fehler ist aufgetreten. Siehe Shell.\n"
  96. #: FlatCAMApp.py:2869
  97. #, python-brace-format
  98. msgid ""
  99. "Object ({kind}) failed because: {error} \n"
  100. "\n"
  101. msgstr ""
  102. "Objekt ({kind}) gescheitert weil: {error} \n"
  103. "\n"
  104. #: FlatCAMApp.py:2889
  105. msgid "Converting units to "
  106. msgstr "Einheiten in umrechnen "
  107. #: FlatCAMApp.py:2947 FlatCAMApp.py:2950 FlatCAMApp.py:2953 FlatCAMApp.py:2956
  108. #, python-brace-format
  109. msgid ""
  110. "[selected]{kind} created/selected: <span style=\"color:{color};\">{name}</"
  111. "span>"
  112. msgstr ""
  113. "[selected]{kind} erstellt / ausgewählt: <span style=\"color:{color};\">{name}"
  114. "</span>"
  115. #: FlatCAMApp.py:3050
  116. #, python-brace-format
  117. msgid ""
  118. "<font size=8><B>FlatCAM</B></font><BR>Version {version} {beta} ({date}) - "
  119. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  120. "<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> Main Contributors:</"
  121. "B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu "
  122. "Berthomé<BR>and many others found <a href = \"https://bitbucket.org/jpcgt/"
  123. "flatcam/pull-requests/?state=MERGED\">here.</a><BR><BR>Development is done "
  124. "<a href = \"https://bitbucket.org/jpcgt/flatcam/src/Beta/\">here.</"
  125. "a><BR>DOWNLOAD area <a href = \"https://bitbucket.org/jpcgt/flatcam/"
  126. "downloads/\">here.</a><BR>"
  127. msgstr ""
  128. "<font size=8><B>FlatCAM</B></font><BR>Ausführung {version} {beta} ({date}) - "
  129. "{arch} <BR><BR>Computerunterstützte 2D-Leiterplatte<BR>13/5000\n"
  130. "Herstellung.<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> "
  131. "Hauptakteure:</B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius "
  132. "Stanciu<BR>Matthieu Berthomé<BR>und viele andere gefunden <a href = "
  133. "\"https://bitbucket.org/jpcgt/flatcam/pull-requests/?state=MERGED\">hier.</"
  134. "a><BR><BR>Die Entwicklung ist abgeschlossen <a href = \"https://bitbucket."
  135. "org/jpcgt/flatcam/src/Beta/\">hier.</a><BR>DOWNLOAD-Bereich <a href = "
  136. "\"https://bitbucket.org/jpcgt/flatcam/downloads/\">hier.</a><BR>"
  137. #: FlatCAMApp.py:3200
  138. msgid "[success]Defaults saved."
  139. msgstr "[success] Standardeinstellungen gespeichert."
  140. #: FlatCAMApp.py:3221
  141. msgid "[ERROR_NOTCL] Could not load factory defaults file."
  142. msgstr "[ERROR_NOTCL] Factory-Standarddatei konnte nicht geladen werden."
  143. #: FlatCAMApp.py:3230
  144. msgid "[ERROR_NOTCL] Failed to parse factory defaults file."
  145. msgstr "[ERROR_NOTCL] Fehler beim Parsen der Werksvorgaben-Datei."
  146. #: FlatCAMApp.py:3244
  147. msgid "[ERROR_NOTCL] Failed to write factory defaults to file."
  148. msgstr ""
  149. "[ERROR_NOTCL] Fehler beim Schreiben der Werkseinstellungen in die Datei."
  150. #: FlatCAMApp.py:3248
  151. msgid "Factory defaults saved."
  152. msgstr "Werkseinstellungen gespeichert."
  153. #: FlatCAMApp.py:3253
  154. msgid ""
  155. "There are files/objects modified in FlatCAM. \n"
  156. "Do you want to Save the project?"
  157. msgstr ""
  158. "In FlatCAM wurden Dateien / Objekte geändert.\n"
  159. "Möchten Sie das Projekt speichern?"
  160. #: FlatCAMApp.py:3256 FlatCAMApp.py:5513
  161. msgid "Save changes"
  162. msgstr "Änderungen speichern"
  163. #: FlatCAMApp.py:3316
  164. msgid ""
  165. "[ERROR] Failed join. The Geometry objects are of different types.\n"
  166. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  167. "is to convert from one to another and retry joining \n"
  168. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  169. "be lost and the result may not be what was expected. \n"
  170. "Check the generated GCODE."
  171. msgstr ""
  172. "[ERROR]Fehlgeschlagen beitreten. Die Geometrieobjekte sind unterschiedlich.\n"
  173. "Mindestens einer ist vom Typ MultiGeo und der andere vom Typ SingleGeo. \n"
  174. "Eine Möglichkeit besteht darin, von einem zum anderen zu konvertieren und "
  175. "erneut zu verbinden\n"
  176. "Bei einer Konvertierung von MultiGeo in SingleGeo können jedoch "
  177. "Informationen verloren gehen \n"
  178. "und das Ergebnis entspricht möglicherweise nicht dem, was erwartet wurde.\n"
  179. "Überprüfen Sie den generierten GCODE."
  180. #: FlatCAMApp.py:3357
  181. msgid "[ERROR_NOTCL]Failed. Excellon joining works only on Excellon objects."
  182. msgstr ""
  183. "[ERROR_NOTCL] Gescheitert. Die Verbindung von Excellon funktioniert nur bei "
  184. "Excellon-Objekten."
  185. #: FlatCAMApp.py:3379
  186. msgid "[ERROR_NOTCL]Failed. Gerber joining works only on Gerber objects."
  187. msgstr ""
  188. "[ERROR_NOTCL] Gescheitert. Das Gerber-Verbinden funktioniert nur bei Gerber-"
  189. "Objekten."
  190. #: FlatCAMApp.py:3394 FlatCAMApp.py:3419
  191. msgid "[ERROR_NOTCL]Failed. Select a Geometry Object and try again."
  192. msgstr ""
  193. "[ERROR_NOTCL] Gescheitert. Wählen Sie ein Geometrieobjekt aus und versuchen "
  194. "Sie es erneut."
  195. #: FlatCAMApp.py:3398 FlatCAMApp.py:3423
  196. #, python-format
  197. msgid "[ERROR_NOTCL]Expected a FlatCAMGeometry, got %s"
  198. msgstr "[ERROR_NOTCL] Erwartete eine FlatCAMGeometry, bekam % s"
  199. #: FlatCAMApp.py:3411
  200. msgid "[success] A Geometry object was converted to MultiGeo type."
  201. msgstr "[success] Ein Geometrieobjekt wurde in den MultiGeo-Typ konvertiert."
  202. #: FlatCAMApp.py:3437
  203. msgid "[success] A Geometry object was converted to SingleGeo type."
  204. msgstr "[success] Ein Geometrieobjekt wurde in den SingleGeo-Typ konvertiert."
  205. #: FlatCAMApp.py:3623
  206. #, python-format
  207. msgid "[success]Converted units to %s"
  208. msgstr "[success] Einheiten in umgerechnet %s"
  209. #: FlatCAMApp.py:3634
  210. msgid "[WARNING_NOTCL]Units conversion cancelled."
  211. msgstr "[WARNING_NOTCL] Einheitenumrechnung abgebrochen."
  212. #: FlatCAMApp.py:4205
  213. msgid "Open file"
  214. msgstr "Datei öffnen"
  215. #: FlatCAMApp.py:4236 FlatCAMApp.py:4241
  216. msgid "Export G-Code ..."
  217. msgstr "G-Code exportieren ..."
  218. #: FlatCAMApp.py:4244
  219. msgid "[WARNING_NOTCL]Export Code cancelled."
  220. msgstr "[WARNING_NOTCL] Exportcode wurde abgebrochen."
  221. #: FlatCAMApp.py:4254
  222. msgid "[WARNING] No such file or directory"
  223. msgstr "[WARNING] Keine solche Datei oder Ordner"
  224. #: FlatCAMApp.py:4261
  225. #, python-format
  226. msgid "Saved to: %s"
  227. msgstr "Gespeichert in: %s"
  228. #: FlatCAMApp.py:4324 FlatCAMApp.py:4356 FlatCAMApp.py:4367 FlatCAMApp.py:4378
  229. #: flatcamTools/ToolNonCopperClear.py:487 flatcamTools/ToolSolderPaste.py:764
  230. msgid ""
  231. "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
  232. "format."
  233. msgstr ""
  234. "[WARNING_NOTCL] Bitte geben Sie einen Werkzeugdurchmesser mit einem Wert "
  235. "ungleich Null im Float-Format ein."
  236. #: FlatCAMApp.py:4329 FlatCAMApp.py:4361 FlatCAMApp.py:4372 FlatCAMApp.py:4383
  237. #: flatcamGUI/FlatCAMGUI.py:2501
  238. msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
  239. msgstr "[WARNING_NOTCL] Addierwerkzeug abgebrochen ..."
  240. #: FlatCAMApp.py:4332
  241. msgid ""
  242. "Adding Tool works only when Advanced is checked.\n"
  243. "Go to Preferences -> General - Show Advanced Options."
  244. msgstr ""
  245. "Das Hinzufügen eines Tools funktioniert nur, wenn \"Erweitert\" aktiviert "
  246. "ist.\n"
  247. "Gehen Sie zu Einstellungen -> Allgemein - Erweiterte Optionen anzeigen."
  248. #: FlatCAMApp.py:4437
  249. msgid "Object(s) deleted ..."
  250. msgstr "Objekt (e) gelöscht ..."
  251. #: FlatCAMApp.py:4441
  252. msgid "Failed. No object(s) selected..."
  253. msgstr "Gescheitert. Kein Objekt ausgewählt ..."
  254. #: FlatCAMApp.py:4443
  255. msgid "Save the work in Editor and try again ..."
  256. msgstr "Speichern Sie die Arbeit im Editor und versuchen Sie es erneut ..."
  257. #: FlatCAMApp.py:4456
  258. msgid "Click to set the origin ..."
  259. msgstr "Klicken Sie hier, um den Ursprung festzulegen ..."
  260. #: FlatCAMApp.py:4468
  261. msgid "Jump to ..."
  262. msgstr "Springen zu ..."
  263. #: FlatCAMApp.py:4469
  264. msgid "Enter the coordinates in format X,Y:"
  265. msgstr "Geben Sie die Koordinaten im Format X, Y ein:"
  266. #: FlatCAMApp.py:4476
  267. msgid "Wrong coordinates. Enter coordinates in format: X,Y"
  268. msgstr "Falsche Koordinaten. Koordinaten im Format eingeben: X, Y"
  269. #: FlatCAMApp.py:4491
  270. msgid "Done."
  271. msgstr "Gemacht."
  272. #: FlatCAMApp.py:4623
  273. msgid "[success] Origin set ..."
  274. msgstr "[success] Ursprung gesetzt ..."
  275. #: FlatCAMApp.py:4641
  276. msgid "Preferences"
  277. msgstr "Einstellungen"
  278. #: FlatCAMApp.py:4661
  279. msgid "[WARNING_NOTCL] No object selected to Flip on Y axis."
  280. msgstr "[WARNING_NOTCL] Kein Objekt ausgewählt, um auf der Y-Achse zu kippen."
  281. #: FlatCAMApp.py:4686
  282. msgid "[success] Flip on Y axis done."
  283. msgstr "[success] Y-Achse umdrehen fertig."
  284. #: FlatCAMApp.py:4688 FlatCAMApp.py:4728 FlatCAMEditor.py:1340
  285. #: flatcamTools/ToolTransform.py:750
  286. #, python-format
  287. msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
  288. msgstr "[ERROR_NOTCL] Aufgrund von %s wurde die Flip-Aktion nicht ausgeführt."
  289. #: FlatCAMApp.py:4701
  290. msgid "[WARNING_NOTCL] No object selected to Flip on X axis."
  291. msgstr "[WARNING_NOTCL] Kein Objekt ausgewählt, um auf der X-Achse zu kippen."
  292. #: FlatCAMApp.py:4726
  293. msgid "[success] Flip on X axis done."
  294. msgstr "[success] Dreh auf der X-Achse fertig."
  295. #: FlatCAMApp.py:4741
  296. msgid "[WARNING_NOTCL] No object selected to Rotate."
  297. msgstr "[WARNING_NOTCL] Kein Objekt zum Drehen ausgewählt."
  298. #: FlatCAMApp.py:4744 FlatCAMApp.py:4789 FlatCAMApp.py:4820
  299. msgid "Transform"
  300. msgstr "Verwandeln"
  301. #: FlatCAMApp.py:4744 FlatCAMApp.py:4789 FlatCAMApp.py:4820
  302. msgid "Enter the Angle value:"
  303. msgstr "Geben Sie den Winkelwert ein:"
  304. #: FlatCAMApp.py:4774
  305. msgid "[success] Rotation done."
  306. msgstr "[success] Rotation erfolgt."
  307. #: FlatCAMApp.py:4776 FlatCAMEditor.py:1283 flatcamTools/ToolTransform.py:678
  308. #, python-format
  309. msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
  310. msgstr ""
  311. "[ERROR_NOTCL] Aufgrund von %s wurde keine Rotationsbewegung ausgeführt."
  312. #: FlatCAMApp.py:4787
  313. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
  314. msgstr ""
  315. "[WARNING_NOTCL] Kein Objekt für Neigung / Scherung auf der X-Achse "
  316. "ausgewählt."
  317. #: FlatCAMApp.py:4808
  318. msgid "[success] Skew on X axis done."
  319. msgstr "[success] Neigung auf der X-Achse fertig."
  320. #: FlatCAMApp.py:4818
  321. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
  322. msgstr ""
  323. "[WARNING_NOTCL] Kein Objekt für Neigung / Scherung auf der Y-Achse "
  324. "ausgewählt."
  325. #: FlatCAMApp.py:4839
  326. msgid "[success] Skew on Y axis done."
  327. msgstr "[success] Neigung auf der Y-Achse fertig."
  328. #: FlatCAMApp.py:4935 FlatCAMApp.py:4962
  329. msgid ""
  330. "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
  331. "format."
  332. msgstr ""
  333. "[WARNING_NOTCL] Bitte geben Sie im Float-Format einen Rasterwert mit einem "
  334. "Wert ungleich Null ein."
  335. #: FlatCAMApp.py:4941
  336. msgid "[success] New Grid added ..."
  337. msgstr "[success] Neues Netz hinzugefügt ..."
  338. #: FlatCAMApp.py:4944
  339. msgid "[WARNING_NOTCL] Grid already exists ..."
  340. msgstr "[WARNING_NOTCL] Netz existiert bereits ..."
  341. #: FlatCAMApp.py:4947
  342. msgid "[WARNING_NOTCL] Adding New Grid cancelled ..."
  343. msgstr "[WARNING_NOTCL] Neues Netz wurde abgebrochen ..."
  344. #: FlatCAMApp.py:4969
  345. msgid "[ERROR_NOTCL] Grid Value does not exist ..."
  346. msgstr "[ERROR_NOTCL] Rasterwert existiert nicht ..."
  347. #: FlatCAMApp.py:4972
  348. msgid "[success] Grid Value deleted ..."
  349. msgstr "[success] Rasterwert gelöscht ..."
  350. #: FlatCAMApp.py:4975
  351. msgid "[WARNING_NOTCL] Delete Grid value cancelled ..."
  352. msgstr "[WARNING_NOTCL] Rasterwert löschen abgebrochen ..."
  353. #: FlatCAMApp.py:5014
  354. msgid "[WARNING_NOTCL]No object selected to copy it's name"
  355. msgstr "[WARNING_NOTCL] Kein Objekt zum Kopieren des Namens ausgewählt"
  356. #: FlatCAMApp.py:5018
  357. msgid "Name copied on clipboard ..."
  358. msgstr "Name in Zwischenablage kopiert ..."
  359. #: FlatCAMApp.py:5313 FlatCAMApp.py:5316 FlatCAMApp.py:5319 FlatCAMApp.py:5322
  360. #: FlatCAMApp.py:5336 FlatCAMApp.py:5339 FlatCAMApp.py:5342 FlatCAMApp.py:5345
  361. #: FlatCAMApp.py:5384 FlatCAMApp.py:5387 FlatCAMApp.py:5390 FlatCAMApp.py:5393
  362. #: ObjectCollection.py:698 ObjectCollection.py:701 ObjectCollection.py:704
  363. #: ObjectCollection.py:707
  364. #, python-brace-format
  365. msgid "[selected]<span style=\"color:{color};\">{name}</span> selected"
  366. msgstr "[selected]<span style=\"color:{color};\">{name}</span> ausgewählt"
  367. #: FlatCAMApp.py:5510
  368. msgid ""
  369. "There are files/objects opened in FlatCAM.\n"
  370. "Creating a New project will delete them.\n"
  371. "Do you want to Save the project?"
  372. msgstr ""
  373. "In FlatCAM sind Dateien / Objekte geöffnet.\n"
  374. "Wenn Sie ein neues Projekt erstellen, werden diese gelöscht.\n"
  375. "Möchten Sie das Projekt speichern?"
  376. #: FlatCAMApp.py:5528
  377. msgid "[success] New Project created..."
  378. msgstr "[success] Neues Projekt erstellt ..."
  379. #: FlatCAMApp.py:5629 FlatCAMApp.py:5632 flatcamGUI/FlatCAMGUI.py:551
  380. #: flatcamGUI/FlatCAMGUI.py:1600
  381. msgid "Open Gerber"
  382. msgstr "Gerber öffnen"
  383. #: FlatCAMApp.py:5637
  384. msgid "[WARNING_NOTCL] Open Gerber cancelled."
  385. msgstr "[WARNING_NOTCL] Offener Gerber abgebrochen."
  386. #: FlatCAMApp.py:5658 FlatCAMApp.py:5661 flatcamGUI/FlatCAMGUI.py:552
  387. #: flatcamGUI/FlatCAMGUI.py:1601
  388. msgid "Open Excellon"
  389. msgstr "Excellon öffnen"
  390. #: FlatCAMApp.py:5666
  391. msgid "[WARNING_NOTCL]Open Excellon cancelled."
  392. msgstr "[WARNING_NOTCL] Offener Excellon abgebrochen."
  393. #: FlatCAMApp.py:5688 FlatCAMApp.py:5691
  394. msgid "Open G-Code"
  395. msgstr "G-Code öffnen"
  396. #: FlatCAMApp.py:5696
  397. msgid "[WARNING_NOTCL]Open G-Code cancelled."
  398. msgstr "[WARNING_NOTCL] Geöffneter G-Code wurde abgebrochen."
  399. #: FlatCAMApp.py:5714 FlatCAMApp.py:5717
  400. msgid "Open Project"
  401. msgstr "Offenes Projekt"
  402. #: FlatCAMApp.py:5725
  403. msgid "[WARNING_NOTCL]Open Project cancelled."
  404. msgstr "[WARNING_NOTCL] Projekt abbrechen abgebrochen."
  405. #: FlatCAMApp.py:5744 FlatCAMApp.py:5747
  406. msgid "Open Configuration File"
  407. msgstr "Open Configuration File"
  408. #: FlatCAMApp.py:5751
  409. msgid "[WARNING_NOTCL]Open Config cancelled."
  410. msgstr "[WARNING_NOTCL]Open Config cancelled."
  411. #: FlatCAMApp.py:5766 FlatCAMApp.py:5963 FlatCAMApp.py:8011 FlatCAMApp.py:8031
  412. #: FlatCAMApp.py:8052 FlatCAMApp.py:8074
  413. msgid "[WARNING_NOTCL] No object selected."
  414. msgstr "[WARNING_NOTCL] No object selected."
  415. #: FlatCAMApp.py:5767 FlatCAMApp.py:5964
  416. msgid "Please Select a Geometry object to export"
  417. msgstr "Please Select a Geometry object to export"
  418. #: FlatCAMApp.py:5778
  419. msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  420. msgstr "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  421. #: FlatCAMApp.py:5791 FlatCAMApp.py:5795
  422. msgid "Export SVG"
  423. msgstr "Export SVG"
  424. #: FlatCAMApp.py:5800
  425. msgid "[WARNING_NOTCL]Export SVG cancelled."
  426. msgstr "[WARNING_NOTCL]Export SVG cancelled."
  427. #: FlatCAMApp.py:5814
  428. msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  429. msgstr "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  430. #: FlatCAMApp.py:5820 FlatCAMApp.py:5824
  431. msgid "Export PNG Image"
  432. msgstr "Export PNG Image"
  433. #: FlatCAMApp.py:5829
  434. msgid "Export PNG cancelled."
  435. msgstr "Export PNG cancelled."
  436. #: FlatCAMApp.py:5846
  437. msgid ""
  438. "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  439. msgstr ""
  440. "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  441. #: FlatCAMApp.py:5851
  442. msgid ""
  443. "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  444. msgstr ""
  445. "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  446. #: FlatCAMApp.py:5863
  447. msgid "Save Gerber source file"
  448. msgstr "Save Gerber source file"
  449. #: FlatCAMApp.py:5868
  450. msgid "[WARNING_NOTCL] Save Gerber source file cancelled."
  451. msgstr "[WARNING_NOTCL] Save Gerber source file cancelled."
  452. #: FlatCAMApp.py:5885
  453. msgid ""
  454. "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
  455. "export."
  456. msgstr ""
  457. "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
  458. "export."
  459. #: FlatCAMApp.py:5890 FlatCAMApp.py:5929
  460. msgid ""
  461. "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  462. msgstr ""
  463. "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  464. #: FlatCAMApp.py:5898 FlatCAMApp.py:5902
  465. msgid "Save Excellon source file"
  466. msgstr "Save Excellon source file"
  467. #: FlatCAMApp.py:5907
  468. msgid "[WARNING_NOTCL] Saving Excellon source file cancelled."
  469. msgstr "[WARNING_NOTCL] Saving Excellon source file cancelled."
  470. #: FlatCAMApp.py:5924
  471. msgid ""
  472. "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
  473. "export."
  474. msgstr ""
  475. "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
  476. "export."
  477. #: FlatCAMApp.py:5937 FlatCAMApp.py:5941
  478. msgid "Export Excellon"
  479. msgstr "Export Excellon"
  480. #: FlatCAMApp.py:5946
  481. msgid "[WARNING_NOTCL]Export Excellon cancelled."
  482. msgstr "[WARNING_NOTCL]Export Excellon cancelled."
  483. #: FlatCAMApp.py:5974
  484. msgid "[ERROR_NOTCL] Only Geometry objects can be used."
  485. msgstr "[ERROR_NOTCL] Only Geometry objects can be used."
  486. #: FlatCAMApp.py:5987 FlatCAMApp.py:5991
  487. msgid "Export DXF"
  488. msgstr "Export DXF"
  489. #: FlatCAMApp.py:5996
  490. msgid "[WARNING_NOTCL] Export DXF cancelled."
  491. msgstr "[WARNING_NOTCL] Export DXF cancelled."
  492. #: FlatCAMApp.py:6014 FlatCAMApp.py:6017
  493. msgid "Import SVG"
  494. msgstr "Import SVG"
  495. #: FlatCAMApp.py:6025
  496. msgid "[WARNING_NOTCL] Open SVG cancelled."
  497. msgstr "[WARNING_NOTCL] Open SVG cancelled."
  498. #: FlatCAMApp.py:6044 FlatCAMApp.py:6047
  499. msgid "Import DXF"
  500. msgstr "Import DXF"
  501. #: FlatCAMApp.py:6055
  502. msgid "[WARNING_NOTCL]Open DXF cancelled."
  503. msgstr "[WARNING_NOTCL]Open DXF cancelled."
  504. #: FlatCAMApp.py:6073
  505. #, python-format
  506. msgid "%s"
  507. msgstr "%s"
  508. #: FlatCAMApp.py:6093
  509. msgid ""
  510. "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  511. msgstr ""
  512. "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  513. #: FlatCAMApp.py:6100
  514. msgid ""
  515. "[WARNING_NOTCL] There is no selected object for which to see it's source "
  516. "file code."
  517. msgstr ""
  518. "[WARNING_NOTCL] There is no selected object for which to see it's source "
  519. "file code."
  520. #: FlatCAMApp.py:6108
  521. msgid "Source Editor"
  522. msgstr "Source Editor"
  523. #: FlatCAMApp.py:6118
  524. #, python-format
  525. msgid "[ERROR]App.on_view_source() -->%s"
  526. msgstr "[ERROR]App.on_view_source() -->%s"
  527. #: FlatCAMApp.py:6130 FlatCAMApp.py:7151 FlatCAMObj.py:5407
  528. msgid "Code Editor"
  529. msgstr "Code Editor"
  530. #: FlatCAMApp.py:6142
  531. msgid "Script Editor"
  532. msgstr "Script Editor"
  533. #: FlatCAMApp.py:6145
  534. msgid ""
  535. "#\n"
  536. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  537. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  538. "html\n"
  539. "#\n"
  540. "\n"
  541. "# FlatCAM commands list:\n"
  542. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  543. "AlignDrillGrid, ClearShell, Cncjob,\n"
  544. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  545. "GeoUnion, GetNames, GetSys,\n"
  546. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  547. "ListSys, MillHoles, Mirror, New,\n"
  548. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  549. "Options, Paint, Panelize,\n"
  550. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  551. "SubtractRectangle, Version,\n"
  552. "# WriteGCode\n"
  553. "#\n"
  554. "\n"
  555. msgstr ""
  556. "#\n"
  557. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  558. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  559. "html\n"
  560. "#\n"
  561. "\n"
  562. "# FlatCAM commands list:\n"
  563. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  564. "AlignDrillGrid, ClearShell, Cncjob,\n"
  565. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  566. "GeoUnion, GetNames, GetSys,\n"
  567. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  568. "ListSys, MillHoles, Mirror, New,\n"
  569. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  570. "Options, Paint, Panelize,\n"
  571. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  572. "SubtractRectangle, Version,\n"
  573. "# WriteGCode\n"
  574. "#\n"
  575. "\n"
  576. #: FlatCAMApp.py:6168 FlatCAMApp.py:6171
  577. msgid "Open TCL script"
  578. msgstr "Open TCL script"
  579. #: FlatCAMApp.py:6179
  580. msgid "[WARNING_NOTCL]Open TCL script cancelled."
  581. msgstr "[WARNING_NOTCL]Open TCL script cancelled."
  582. #: FlatCAMApp.py:6191
  583. #, python-format
  584. msgid "[ERROR]App.on_fileopenscript() -->%s"
  585. msgstr "[ERROR]App.on_fileopenscript() -->%s"
  586. #: FlatCAMApp.py:6217 FlatCAMApp.py:6220
  587. msgid "Run TCL script"
  588. msgstr "Run TCL script"
  589. #: FlatCAMApp.py:6228
  590. msgid "[WARNING_NOTCL]Run TCL script cancelled."
  591. msgstr "[WARNING_NOTCL]Run TCL script cancelled."
  592. #: FlatCAMApp.py:6274 FlatCAMApp.py:6278
  593. msgid "Save Project As ..."
  594. msgstr "Save Project As ..."
  595. #: FlatCAMApp.py:6275
  596. #, python-brace-format
  597. msgid "{l_save}/Project_{date}"
  598. msgstr "{l_save}/Project_{date}"
  599. #: FlatCAMApp.py:6283
  600. msgid "[WARNING_NOTCL] Save Project cancelled."
  601. msgstr "[WARNING_NOTCL] Save Project cancelled."
  602. #: FlatCAMApp.py:6328
  603. msgid "Exporting SVG"
  604. msgstr "Exporting SVG"
  605. #: FlatCAMApp.py:6361 FlatCAMApp.py:6466 FlatCAMApp.py:6580
  606. #, python-format
  607. msgid "[success] SVG file exported to %s"
  608. msgstr "[success] SVG file exported to %s"
  609. #: FlatCAMApp.py:6392 FlatCAMApp.py:6512
  610. #, python-format
  611. msgid "[WARNING_NOTCL]No object Box. Using instead %s"
  612. msgstr "[WARNING_NOTCL]No object Box. Using instead %s"
  613. #: FlatCAMApp.py:6469 FlatCAMApp.py:6583
  614. msgid "Generating Film ... Please wait."
  615. msgstr "Generating Film ... Please wait."
  616. #: FlatCAMApp.py:6730
  617. #, python-format
  618. msgid "[success] Excellon file exported to %s"
  619. msgstr "[success] Excellon file exported to %s"
  620. #: FlatCAMApp.py:6737
  621. msgid "Exporting Excellon"
  622. msgstr "Exporting Excellon"
  623. #: FlatCAMApp.py:6742 FlatCAMApp.py:6749
  624. msgid "[ERROR_NOTCL] Could not export Excellon file."
  625. msgstr "[ERROR_NOTCL] Could not export Excellon file."
  626. #: FlatCAMApp.py:6788
  627. #, python-format
  628. msgid "[success] DXF file exported to %s"
  629. msgstr "[success] DXF file exported to %s"
  630. #: FlatCAMApp.py:6794
  631. msgid "Exporting DXF"
  632. msgstr "Exporting DXF"
  633. #: FlatCAMApp.py:6799 FlatCAMApp.py:6806
  634. msgid "[[WARNING_NOTCL]] Could not export DXF file."
  635. msgstr "[[WARNING_NOTCL]] Could not export DXF file."
  636. #: FlatCAMApp.py:6826 FlatCAMApp.py:6868 FlatCAMApp.py:6909
  637. msgid ""
  638. "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
  639. "Gerber are supported"
  640. msgstr ""
  641. "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
  642. "Gerber are supported"
  643. #: FlatCAMApp.py:6836
  644. msgid "Importing SVG"
  645. msgstr "Importing SVG"
  646. #: FlatCAMApp.py:6847 FlatCAMApp.py:6889 FlatCAMApp.py:6929 FlatCAMApp.py:7005
  647. #: FlatCAMApp.py:7072 FlatCAMApp.py:7137
  648. #, python-format
  649. msgid "[success] Opened: %s"
  650. msgstr "[success] Opened: %s"
  651. #: FlatCAMApp.py:6878
  652. msgid "Importing DXF"
  653. msgstr "Importing DXF"
  654. #: FlatCAMApp.py:6917
  655. msgid "Importing Image"
  656. msgstr "Importing Image"
  657. #: FlatCAMApp.py:6958 FlatCAMApp.py:6960
  658. #, python-format
  659. msgid "[ERROR_NOTCL] Failed to open file: %s"
  660. msgstr "[ERROR_NOTCL] Failed to open file: %s"
  661. #: FlatCAMApp.py:6963
  662. #, python-brace-format
  663. msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  664. msgstr "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  665. #: FlatCAMApp.py:6969 FlatCAMEditor.py:5802 FlatCAMObj.py:4114
  666. msgid "[ERROR] An internal error has ocurred. See shell.\n"
  667. msgstr "[ERROR] An internal error has ocurred. See shell.\n"
  668. #: FlatCAMApp.py:6978
  669. msgid ""
  670. "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  671. msgstr ""
  672. "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  673. #: FlatCAMApp.py:6986
  674. msgid "Opening Gerber"
  675. msgstr "Opening Gerber"
  676. #: FlatCAMApp.py:6996
  677. msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  678. msgstr "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  679. #: FlatCAMApp.py:7031
  680. msgid "[ERROR_NOTCL] This is not Excellon file."
  681. msgstr "[ERROR_NOTCL] This is not Excellon file."
  682. #: FlatCAMApp.py:7034
  683. #, python-format
  684. msgid "[ERROR_NOTCL] Cannot open file: %s"
  685. msgstr "[ERROR_NOTCL] Cannot open file: %s"
  686. #: FlatCAMApp.py:7039
  687. msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  688. msgstr "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  689. #: FlatCAMApp.py:7055
  690. #, python-format
  691. msgid "[ERROR_NOTCL] No geometry found in file: %s"
  692. msgstr "[ERROR_NOTCL] No geometry found in file: %s"
  693. #: FlatCAMApp.py:7058
  694. msgid "Opening Excellon."
  695. msgstr "Opening Excellon."
  696. #: FlatCAMApp.py:7065
  697. msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  698. msgstr ""
  699. "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  700. #: FlatCAMApp.py:7104
  701. #, python-format
  702. msgid "[ERROR_NOTCL] Failed to open %s"
  703. msgstr "[ERROR_NOTCL] Failed to open %s"
  704. #: FlatCAMApp.py:7114
  705. msgid "[ERROR_NOTCL] This is not GCODE"
  706. msgstr "[ERROR_NOTCL] This is not GCODE"
  707. #: FlatCAMApp.py:7120
  708. msgid "Opening G-Code."
  709. msgstr "Opening G-Code."
  710. #: FlatCAMApp.py:7128
  711. msgid ""
  712. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  713. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  714. "processing"
  715. msgstr ""
  716. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  717. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  718. "processing"
  719. #: FlatCAMApp.py:7168
  720. #, python-format
  721. msgid "[ERROR_NOTCL] Failed to open config file: %s"
  722. msgstr "[ERROR_NOTCL] Failed to open config file: %s"
  723. #: FlatCAMApp.py:7193 FlatCAMApp.py:7210
  724. #, python-format
  725. msgid "[ERROR_NOTCL] Failed to open project file: %s"
  726. msgstr "[ERROR_NOTCL] Failed to open project file: %s"
  727. #: FlatCAMApp.py:7200
  728. #, python-format
  729. msgid "[ERROR_NOTCL] Failed to parse project file: %s"
  730. msgstr "[ERROR_NOTCL] Failed to parse project file: %s"
  731. #: FlatCAMApp.py:7236
  732. #, python-format
  733. msgid "[success] Project loaded from: %s"
  734. msgstr "[success] Project loaded from: %s"
  735. #: FlatCAMApp.py:7366
  736. msgid "Available commands:\n"
  737. msgstr "Available commands:\n"
  738. #: FlatCAMApp.py:7368
  739. msgid ""
  740. "\n"
  741. "\n"
  742. "Type help <command_name> for usage.\n"
  743. " Example: help open_gerber"
  744. msgstr ""
  745. "\n"
  746. "\n"
  747. "Type help <command_name> for usage.\n"
  748. " Example: help open_gerber"
  749. #: FlatCAMApp.py:7516
  750. msgid "Shows list of commands."
  751. msgstr "Shows list of commands."
  752. #: FlatCAMApp.py:7569
  753. msgid "[ERROR_NOTCL] Failed to load recent item list."
  754. msgstr "[ERROR_NOTCL] Failed to load recent item list."
  755. #: FlatCAMApp.py:7576
  756. msgid "[ERROR_NOTCL] Failed to parse recent item list."
  757. msgstr "[ERROR_NOTCL] Failed to parse recent item list."
  758. #: FlatCAMApp.py:7637 flatcamGUI/FlatCAMGUI.py:866
  759. msgid "<b>Shortcut Key List</b>"
  760. msgstr "<b>Shortcut Key List</b>"
  761. #: FlatCAMApp.py:7644
  762. msgid ""
  763. "\n"
  764. "<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from "
  765. "Project Tab</strong></span></p>\n"
  766. "\n"
  767. "<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
  768. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  769. "\n"
  770. "<ol>\n"
  771. "\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, "
  772. "DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, "
  773. "toolbars, key shortcuts or even dragging and dropping the files on the GUI."
  774. "<br />\n"
  775. "\t<br />\n"
  776. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  777. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  778. "through the menu/toolbar links offered within the app.</span><br />\n"
  779. "\t&nbsp;</li>\n"
  780. "\t<li><span style=\"font-size:10px\">Once an object is available in the "
  781. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  782. "strong>(more simpler is to double click the object name in the Project Tab), "
  783. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  784. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  785. ">\n"
  786. "\t<br />\n"
  787. "\tIf the selection of the object is done on the canvas by single click "
  788. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  789. "properties will be displayed into the Selected Tab. Alternatively, double "
  790. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  791. "strong> and populate it even if it was out of focus.<br />\n"
  792. "\t<br />\n"
  793. "\tYou can change the parameters in this screen and the flow direction is "
  794. "like this:<br />\n"
  795. "\t<br />\n"
  796. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  797. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  798. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  799. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  800. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  801. "span></li>\n"
  802. "</ol>\n"
  803. "\n"
  804. "<p><span style=\"font-size:10px\">A list of key shortcuts is available "
  805. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  806. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  807. "\n"
  808. " "
  809. msgstr ""
  810. "\n"
  811. "<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from "
  812. "Project Tab</strong></span></p>\n"
  813. "\n"
  814. "<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
  815. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  816. "\n"
  817. "<ol>\n"
  818. "\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, "
  819. "DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, "
  820. "toolbars, key shortcuts or even dragging and dropping the files on the GUI."
  821. "<br />\n"
  822. "\t<br />\n"
  823. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  824. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  825. "through the menu/toolbar links offered within the app.</span><br />\n"
  826. "\t&nbsp;</li>\n"
  827. "\t<li><span style=\"font-size:10px\">Once an object is available in the "
  828. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  829. "strong>(more simpler is to double click the object name in the Project Tab), "
  830. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  831. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  832. ">\n"
  833. "\t<br />\n"
  834. "\tIf the selection of the object is done on the canvas by single click "
  835. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  836. "properties will be displayed into the Selected Tab. Alternatively, double "
  837. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  838. "strong> and populate it even if it was out of focus.<br />\n"
  839. "\t<br />\n"
  840. "\tYou can change the parameters in this screen and the flow direction is "
  841. "like this:<br />\n"
  842. "\t<br />\n"
  843. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  844. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  845. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  846. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  847. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  848. "span></li>\n"
  849. "</ol>\n"
  850. "\n"
  851. "<p><span style=\"font-size:10px\">A list of key shortcuts is available "
  852. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  853. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  854. "\n"
  855. " "
  856. #: FlatCAMApp.py:7748
  857. msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  858. msgstr "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  859. #: FlatCAMApp.py:7755
  860. msgid "[ERROR_NOTCL] Could not parse information about latest version."
  861. msgstr "[ERROR_NOTCL] Could not parse information about latest version."
  862. #: FlatCAMApp.py:7765
  863. msgid "[success] FlatCAM is up to date!"
  864. msgstr "[success] FlatCAM is up to date!"
  865. #: FlatCAMApp.py:7770
  866. msgid "Newer Version Available"
  867. msgstr "Newer Version Available"
  868. #: FlatCAMApp.py:7771
  869. msgid ""
  870. "There is a newer version of FlatCAM available for download:\n"
  871. "\n"
  872. msgstr ""
  873. "There is a newer version of FlatCAM available for download:\n"
  874. "\n"
  875. #: FlatCAMApp.py:7773
  876. msgid "info"
  877. msgstr "info"
  878. #: FlatCAMApp.py:7792
  879. msgid "[success]All plots disabled."
  880. msgstr "[success]All plots disabled."
  881. #: FlatCAMApp.py:7798
  882. msgid "[success]All non selected plots disabled."
  883. msgstr "[success]All non selected plots disabled."
  884. #: FlatCAMApp.py:7804
  885. msgid "[success]All plots enabled."
  886. msgstr "[success]All plots enabled."
  887. #: FlatCAMApp.py:7914
  888. msgid "Saving FlatCAM Project"
  889. msgstr "Saving FlatCAM Project"
  890. #: FlatCAMApp.py:7935 FlatCAMApp.py:7966
  891. #, python-format
  892. msgid "[success] Project saved to: %s"
  893. msgstr "[success] Project saved to: %s"
  894. #: FlatCAMApp.py:7953
  895. #, python-format
  896. msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  897. msgstr "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  898. #: FlatCAMApp.py:7960
  899. #, python-format
  900. msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  901. msgstr ""
  902. "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  903. #: FlatCAMApp.py:7968
  904. #, python-format
  905. msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  906. msgstr "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  907. #: FlatCAMEditor.py:76
  908. msgid "Buffer distance:"
  909. msgstr "Buffer distance:"
  910. #: FlatCAMEditor.py:77
  911. msgid "Buffer corner:"
  912. msgstr "Buffer corner:"
  913. #: FlatCAMEditor.py:79
  914. msgid ""
  915. "There are 3 types of corners:\n"
  916. " - 'Round': the corner is rounded for exterior buffer.\n"
  917. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  918. " - 'Beveled:' the corner is a line that directly connects the features "
  919. "meeting in the corner"
  920. msgstr ""
  921. "There are 3 types of corners:\n"
  922. " - 'Round': the corner is rounded for exterior buffer.\n"
  923. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  924. " - 'Beveled:' the corner is a line that directly connects the features "
  925. "meeting in the corner"
  926. #: FlatCAMEditor.py:85
  927. msgid "Round"
  928. msgstr "Round"
  929. #: FlatCAMEditor.py:86
  930. msgid "Square"
  931. msgstr "Square"
  932. #: FlatCAMEditor.py:87
  933. msgid "Beveled"
  934. msgstr "Beveled"
  935. #: FlatCAMEditor.py:94
  936. msgid "Buffer Interior"
  937. msgstr "Buffer Interior"
  938. #: FlatCAMEditor.py:96
  939. msgid "Buffer Exterior"
  940. msgstr "Buffer Exterior"
  941. #: FlatCAMEditor.py:102
  942. msgid "Full Buffer"
  943. msgstr "Full Buffer"
  944. #: FlatCAMEditor.py:123 FlatCAMEditor.py:2623
  945. msgid "Buffer Tool"
  946. msgstr "Buffer Tool"
  947. #: FlatCAMEditor.py:134 FlatCAMEditor.py:151 FlatCAMEditor.py:168
  948. #: FlatCAMEditor.py:2641 FlatCAMEditor.py:2667 FlatCAMEditor.py:2693
  949. msgid ""
  950. "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
  951. "retry."
  952. msgstr ""
  953. "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
  954. "retry."
  955. #: FlatCAMEditor.py:416 flatcamGUI/FlatCAMGUI.py:3419
  956. #: flatcamGUI/FlatCAMGUI.py:4625 flatcamGUI/FlatCAMGUI.py:4901
  957. #: flatcamGUI/FlatCAMGUI.py:5032 flatcamGUI/ObjectUI.py:331
  958. msgid "Tool dia:"
  959. msgstr "Tool dia:"
  960. #: FlatCAMEditor.py:418 flatcamGUI/FlatCAMGUI.py:5034
  961. msgid ""
  962. "Diameter of the tool to\n"
  963. "be used in the operation."
  964. msgstr ""
  965. "Diameter of the tool to\n"
  966. "be used in the operation."
  967. #: FlatCAMEditor.py:427 flatcamGUI/FlatCAMGUI.py:4807
  968. #: flatcamGUI/FlatCAMGUI.py:5043 flatcamTools/ToolNonCopperClear.py:164
  969. #: flatcamTools/ToolPaint.py:160
  970. msgid "Overlap:"
  971. msgstr "Overlap:"
  972. #: FlatCAMEditor.py:429 flatcamTools/ToolPaint.py:162
  973. #, python-format
  974. msgid ""
  975. "How much (fraction) of the tool width to overlap each tool pass.\n"
  976. "Example:\n"
  977. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  978. "\n"
  979. "Adjust the value starting with lower values\n"
  980. "and increasing it if areas that should be painted are still \n"
  981. "not painted.\n"
  982. "Lower values = faster processing, faster execution on PCB.\n"
  983. "Higher values = slow processing and slow execution on CNC\n"
  984. "due of too many paths."
  985. msgstr ""
  986. "How much (fraction) of the tool width to overlap each tool pass.\n"
  987. "Example:\n"
  988. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  989. "\n"
  990. "Adjust the value starting with lower values\n"
  991. "and increasing it if areas that should be painted are still \n"
  992. "not painted.\n"
  993. "Lower values = faster processing, faster execution on PCB.\n"
  994. "Higher values = slow processing and slow execution on CNC\n"
  995. "due of too many paths."
  996. #: FlatCAMEditor.py:445 flatcamGUI/FlatCAMGUI.py:4823
  997. #: flatcamGUI/FlatCAMGUI.py:4909 flatcamGUI/FlatCAMGUI.py:5053
  998. #: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:180
  999. #: flatcamTools/ToolPaint.py:177
  1000. msgid "Margin:"
  1001. msgstr "Margin:"
  1002. #: FlatCAMEditor.py:447 flatcamGUI/FlatCAMGUI.py:5055
  1003. #: flatcamTools/ToolPaint.py:179
  1004. msgid ""
  1005. "Distance by which to avoid\n"
  1006. "the edges of the polygon to\n"
  1007. "be painted."
  1008. msgstr ""
  1009. "Distance by which to avoid\n"
  1010. "the edges of the polygon to\n"
  1011. "be painted."
  1012. #: FlatCAMEditor.py:456 flatcamGUI/FlatCAMGUI.py:4832
  1013. #: flatcamGUI/FlatCAMGUI.py:5064 flatcamTools/ToolNonCopperClear.py:189
  1014. #: flatcamTools/ToolPaint.py:188
  1015. msgid "Method:"
  1016. msgstr "Method:"
  1017. #: FlatCAMEditor.py:458 flatcamGUI/FlatCAMGUI.py:5066
  1018. msgid ""
  1019. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  1020. "<BR><B>Seed-based</B>: Outwards from seed."
  1021. msgstr ""
  1022. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  1023. "<BR><B>Seed-based</B>: Outwards from seed."
  1024. #: FlatCAMEditor.py:464 flatcamGUI/FlatCAMGUI.py:4841
  1025. #: flatcamGUI/FlatCAMGUI.py:5072
  1026. msgid "Standard"
  1027. msgstr "Standard"
  1028. #: FlatCAMEditor.py:465 flatcamGUI/FlatCAMGUI.py:4842
  1029. #: flatcamGUI/FlatCAMGUI.py:5073
  1030. msgid "Seed-based"
  1031. msgstr "Seed-based"
  1032. #: FlatCAMEditor.py:466 flatcamGUI/FlatCAMGUI.py:4843
  1033. #: flatcamGUI/FlatCAMGUI.py:5074
  1034. msgid "Straight lines"
  1035. msgstr "Straight lines"
  1036. #: FlatCAMEditor.py:471 flatcamGUI/FlatCAMGUI.py:4848
  1037. #: flatcamGUI/FlatCAMGUI.py:5079 flatcamTools/ToolNonCopperClear.py:205
  1038. #: flatcamTools/ToolPaint.py:204
  1039. msgid "Connect:"
  1040. msgstr "Connect:"
  1041. #: FlatCAMEditor.py:473 flatcamGUI/FlatCAMGUI.py:4850
  1042. #: flatcamGUI/FlatCAMGUI.py:5081 flatcamTools/ToolNonCopperClear.py:207
  1043. #: flatcamTools/ToolPaint.py:206
  1044. msgid ""
  1045. "Draw lines between resulting\n"
  1046. "segments to minimize tool lifts."
  1047. msgstr ""
  1048. "Draw lines between resulting\n"
  1049. "segments to minimize tool lifts."
  1050. #: FlatCAMEditor.py:480 flatcamGUI/FlatCAMGUI.py:4857
  1051. #: flatcamGUI/FlatCAMGUI.py:5089 flatcamTools/ToolNonCopperClear.py:214
  1052. #: flatcamTools/ToolPaint.py:213
  1053. msgid "Contour:"
  1054. msgstr "Contour:"
  1055. #: FlatCAMEditor.py:482 flatcamGUI/FlatCAMGUI.py:4859
  1056. #: flatcamGUI/FlatCAMGUI.py:5091 flatcamTools/ToolNonCopperClear.py:216
  1057. #: flatcamTools/ToolPaint.py:215
  1058. msgid ""
  1059. "Cut around the perimeter of the polygon\n"
  1060. "to trim rough edges."
  1061. msgstr ""
  1062. "Cut around the perimeter of the polygon\n"
  1063. "to trim rough edges."
  1064. #: FlatCAMEditor.py:494
  1065. msgid "Paint"
  1066. msgstr "Paint"
  1067. #: FlatCAMEditor.py:512 flatcamGUI/FlatCAMGUI.py:585
  1068. #: flatcamGUI/FlatCAMGUI.py:1634 flatcamGUI/ObjectUI.py:1379
  1069. #: flatcamTools/ToolPaint.py:340
  1070. msgid "Paint Tool"
  1071. msgstr "Paint Tool"
  1072. #: FlatCAMEditor.py:548
  1073. msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
  1074. msgstr "[WARNING_NOTCL] Paint cancelled. No shape selected."
  1075. #: FlatCAMEditor.py:559 flatcamTools/ToolCutOut.py:343
  1076. #: flatcamTools/ToolCutOut.py:481 flatcamTools/ToolCutOut.py:601
  1077. #: flatcamTools/ToolCutOut.py:706 flatcamTools/ToolDblSided.py:363
  1078. msgid ""
  1079. "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
  1080. "retry."
  1081. msgstr ""
  1082. "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
  1083. "retry."
  1084. #: FlatCAMEditor.py:570
  1085. msgid ""
  1086. "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  1087. msgstr ""
  1088. "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  1089. #: FlatCAMEditor.py:582
  1090. msgid ""
  1091. "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
  1092. "retry."
  1093. msgstr ""
  1094. "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
  1095. "retry."
  1096. #: FlatCAMEditor.py:591 FlatCAMEditor.py:2648 FlatCAMEditor.py:2674
  1097. #: FlatCAMEditor.py:2700 flatcamTools/ToolNonCopperClear.py:806
  1098. #: flatcamTools/ToolProperties.py:104
  1099. msgid "Tools"
  1100. msgstr "Tools"
  1101. #: FlatCAMEditor.py:602 FlatCAMEditor.py:975 flatcamGUI/FlatCAMGUI.py:594
  1102. #: flatcamGUI/FlatCAMGUI.py:1645 flatcamTools/ToolTransform.py:398
  1103. msgid "Transform Tool"
  1104. msgstr "Transform Tool"
  1105. #: FlatCAMEditor.py:603 FlatCAMEditor.py:664 flatcamTools/ToolTransform.py:24
  1106. #: flatcamTools/ToolTransform.py:82
  1107. msgid "Rotate"
  1108. msgstr "Rotate"
  1109. #: FlatCAMEditor.py:604 flatcamTools/ToolTransform.py:25
  1110. msgid "Skew/Shear"
  1111. msgstr "Skew/Shear"
  1112. #: FlatCAMEditor.py:605 flatcamGUI/ObjectUI.py:100 flatcamGUI/ObjectUI.py:265
  1113. #: flatcamTools/ToolTransform.py:26
  1114. msgid "Scale"
  1115. msgstr "Scale"
  1116. #: FlatCAMEditor.py:606 flatcamTools/ToolTransform.py:27
  1117. msgid "Mirror (Flip)"
  1118. msgstr "Mirror (Flip)"
  1119. #: FlatCAMEditor.py:607 flatcamGUI/ObjectUI.py:127 flatcamGUI/ObjectUI.py:959
  1120. #: flatcamGUI/ObjectUI.py:1517 flatcamTools/ToolTransform.py:28
  1121. msgid "Offset"
  1122. msgstr "Offset"
  1123. #: FlatCAMEditor.py:618
  1124. #, python-format
  1125. msgid "Editor %s"
  1126. msgstr "Editor %s"
  1127. #: FlatCAMEditor.py:650 FlatCAMEditor.py:4851 FlatCAMEditor.py:4887
  1128. #: flatcamTools/ToolTransform.py:68
  1129. msgid "Angle:"
  1130. msgstr "Angle:"
  1131. #: FlatCAMEditor.py:652 flatcamTools/ToolTransform.py:70
  1132. msgid ""
  1133. "Angle for Rotation action, in degrees.\n"
  1134. "Float number between -360 and 359.\n"
  1135. "Positive numbers for CW motion.\n"
  1136. "Negative numbers for CCW motion."
  1137. msgstr ""
  1138. "Angle for Rotation action, in degrees.\n"
  1139. "Float number between -360 and 359.\n"
  1140. "Positive numbers for CW motion.\n"
  1141. "Negative numbers for CCW motion."
  1142. #: FlatCAMEditor.py:666
  1143. msgid ""
  1144. "Rotate the selected shape(s).\n"
  1145. "The point of reference is the middle of\n"
  1146. "the bounding box for all selected shapes."
  1147. msgstr ""
  1148. "Rotate the selected shape(s).\n"
  1149. "The point of reference is the middle of\n"
  1150. "the bounding box for all selected shapes."
  1151. #: FlatCAMEditor.py:689 flatcamTools/ToolTransform.py:107
  1152. msgid "Angle X:"
  1153. msgstr "Angle X:"
  1154. #: FlatCAMEditor.py:691 FlatCAMEditor.py:709 flatcamTools/ToolTransform.py:109
  1155. #: flatcamTools/ToolTransform.py:127
  1156. msgid ""
  1157. "Angle for Skew action, in degrees.\n"
  1158. "Float number between -360 and 359."
  1159. msgstr ""
  1160. "Angle for Skew action, in degrees.\n"
  1161. "Float number between -360 and 359."
  1162. #: FlatCAMEditor.py:700 flatcamTools/ToolTransform.py:118
  1163. msgid "Skew X"
  1164. msgstr "Skew X"
  1165. #: FlatCAMEditor.py:702 FlatCAMEditor.py:720
  1166. msgid ""
  1167. "Skew/shear the selected shape(s).\n"
  1168. "The point of reference is the middle of\n"
  1169. "the bounding box for all selected shapes."
  1170. msgstr ""
  1171. "Skew/shear the selected shape(s).\n"
  1172. "The point of reference is the middle of\n"
  1173. "the bounding box for all selected shapes."
  1174. #: FlatCAMEditor.py:707 flatcamTools/ToolTransform.py:125
  1175. msgid "Angle Y:"
  1176. msgstr "Angle Y:"
  1177. #: FlatCAMEditor.py:718 flatcamTools/ToolTransform.py:136
  1178. msgid "Skew Y"
  1179. msgstr "Skew Y"
  1180. #: FlatCAMEditor.py:746 flatcamTools/ToolTransform.py:164
  1181. msgid "Factor X:"
  1182. msgstr "Factor X:"
  1183. #: FlatCAMEditor.py:748 flatcamTools/ToolTransform.py:166
  1184. msgid "Factor for Scale action over X axis."
  1185. msgstr "Factor for Scale action over X axis."
  1186. #: FlatCAMEditor.py:756 flatcamTools/ToolTransform.py:174
  1187. msgid "Scale X"
  1188. msgstr "Scale X"
  1189. #: FlatCAMEditor.py:758 FlatCAMEditor.py:775
  1190. msgid ""
  1191. "Scale the selected shape(s).\n"
  1192. "The point of reference depends on \n"
  1193. "the Scale reference checkbox state."
  1194. msgstr ""
  1195. "Scale the selected shape(s).\n"
  1196. "The point of reference depends on \n"
  1197. "the Scale reference checkbox state."
  1198. #: FlatCAMEditor.py:763 flatcamTools/ToolTransform.py:181
  1199. msgid "Factor Y:"
  1200. msgstr "Factor Y:"
  1201. #: FlatCAMEditor.py:765 flatcamTools/ToolTransform.py:183
  1202. msgid "Factor for Scale action over Y axis."
  1203. msgstr "Factor for Scale action over Y axis."
  1204. #: FlatCAMEditor.py:773 flatcamTools/ToolTransform.py:191
  1205. msgid "Scale Y"
  1206. msgstr "Scale Y"
  1207. #: FlatCAMEditor.py:782 flatcamGUI/FlatCAMGUI.py:5438
  1208. #: flatcamTools/ToolTransform.py:200
  1209. msgid "Link"
  1210. msgstr "Link"
  1211. #: FlatCAMEditor.py:784
  1212. msgid ""
  1213. "Scale the selected shape(s)\n"
  1214. "using the Scale Factor X for both axis."
  1215. msgstr ""
  1216. "Scale the selected shape(s)\n"
  1217. "using the Scale Factor X for both axis."
  1218. #: FlatCAMEditor.py:790 flatcamGUI/FlatCAMGUI.py:5446
  1219. #: flatcamTools/ToolTransform.py:208
  1220. msgid "Scale Reference"
  1221. msgstr "Scale Reference"
  1222. #: FlatCAMEditor.py:792
  1223. msgid ""
  1224. "Scale the selected shape(s)\n"
  1225. "using the origin reference when checked,\n"
  1226. "and the center of the biggest bounding box\n"
  1227. "of the selected shapes when unchecked."
  1228. msgstr ""
  1229. "Scale the selected shape(s)\n"
  1230. "using the origin reference when checked,\n"
  1231. "and the center of the biggest bounding box\n"
  1232. "of the selected shapes when unchecked."
  1233. #: FlatCAMEditor.py:820 flatcamTools/ToolTransform.py:238
  1234. msgid "Value X:"
  1235. msgstr "Value X:"
  1236. #: FlatCAMEditor.py:822 flatcamTools/ToolTransform.py:240
  1237. msgid "Value for Offset action on X axis."
  1238. msgstr "Value for Offset action on X axis."
  1239. #: FlatCAMEditor.py:830 flatcamTools/ToolTransform.py:248
  1240. msgid "Offset X"
  1241. msgstr "Offset X"
  1242. #: FlatCAMEditor.py:832 FlatCAMEditor.py:850
  1243. msgid ""
  1244. "Offset the selected shape(s).\n"
  1245. "The point of reference is the middle of\n"
  1246. "the bounding box for all selected shapes.\n"
  1247. msgstr ""
  1248. "Offset the selected shape(s).\n"
  1249. "The point of reference is the middle of\n"
  1250. "the bounding box for all selected shapes.\n"
  1251. #: FlatCAMEditor.py:838 flatcamTools/ToolTransform.py:255
  1252. msgid "Value Y:"
  1253. msgstr "Value Y:"
  1254. #: FlatCAMEditor.py:840 flatcamTools/ToolTransform.py:257
  1255. msgid "Value for Offset action on Y axis."
  1256. msgstr "Value for Offset action on Y axis."
  1257. #: FlatCAMEditor.py:848 flatcamTools/ToolTransform.py:265
  1258. msgid "Offset Y"
  1259. msgstr "Offset Y"
  1260. #: FlatCAMEditor.py:879 flatcamTools/ToolTransform.py:295
  1261. msgid "Flip on X"
  1262. msgstr "Flip on X"
  1263. #: FlatCAMEditor.py:881 FlatCAMEditor.py:889
  1264. msgid ""
  1265. "Flip the selected shape(s) over the X axis.\n"
  1266. "Does not create a new shape."
  1267. msgstr ""
  1268. "Flip the selected shape(s) over the X axis.\n"
  1269. "Does not create a new shape."
  1270. #: FlatCAMEditor.py:887 flatcamTools/ToolTransform.py:303
  1271. msgid "Flip on Y"
  1272. msgstr "Flip on Y"
  1273. #: FlatCAMEditor.py:896 flatcamTools/ToolTransform.py:312
  1274. msgid "Ref Pt"
  1275. msgstr "Ref Pt"
  1276. #: FlatCAMEditor.py:898
  1277. msgid ""
  1278. "Flip the selected shape(s)\n"
  1279. "around the point in Point Entry Field.\n"
  1280. "\n"
  1281. "The point coordinates can be captured by\n"
  1282. "left click on canvas together with pressing\n"
  1283. "SHIFT key. \n"
  1284. "Then click Add button to insert coordinates.\n"
  1285. "Or enter the coords in format (x, y) in the\n"
  1286. "Point Entry field and click Flip on X(Y)"
  1287. msgstr ""
  1288. "Flip the selected shape(s)\n"
  1289. "around the point in Point Entry Field.\n"
  1290. "\n"
  1291. "The point coordinates can be captured by\n"
  1292. "left click on canvas together with pressing\n"
  1293. "SHIFT key. \n"
  1294. "Then click Add button to insert coordinates.\n"
  1295. "Or enter the coords in format (x, y) in the\n"
  1296. "Point Entry field and click Flip on X(Y)"
  1297. #: FlatCAMEditor.py:910 flatcamTools/ToolTransform.py:325
  1298. msgid "Point:"
  1299. msgstr "Point:"
  1300. #: FlatCAMEditor.py:912
  1301. msgid ""
  1302. "Coordinates in format (x, y) used as reference for mirroring.\n"
  1303. "The 'x' in (x, y) will be used when using Flip on X and\n"
  1304. "the 'y' in (x, y) will be used when using Flip on Y."
  1305. msgstr ""
  1306. "Coordinates in format (x, y) used as reference for mirroring.\n"
  1307. "The 'x' in (x, y) will be used when using Flip on X and\n"
  1308. "the 'y' in (x, y) will be used when using Flip on Y."
  1309. #: FlatCAMEditor.py:922 flatcamGUI/ObjectUI.py:1059
  1310. #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208
  1311. #: flatcamTools/ToolNonCopperClear.py:133 flatcamTools/ToolPaint.py:131
  1312. #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:478
  1313. #: flatcamTools/ToolTransform.py:337
  1314. msgid "Add"
  1315. msgstr "Add"
  1316. #: FlatCAMEditor.py:924 flatcamTools/ToolTransform.py:339
  1317. msgid ""
  1318. "The point coordinates can be captured by\n"
  1319. "left click on canvas together with pressing\n"
  1320. "SHIFT key. Then click Add button to insert."
  1321. msgstr ""
  1322. "The point coordinates can be captured by\n"
  1323. "left click on canvas together with pressing\n"
  1324. "SHIFT key. Then click Add button to insert."
  1325. #: FlatCAMEditor.py:1039
  1326. msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  1327. msgstr "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  1328. #: FlatCAMEditor.py:1060 flatcamTools/ToolTransform.py:468
  1329. msgid "[ERROR_NOTCL]Wrong value format entered for Rotate, use a number."
  1330. msgstr "[ERROR_NOTCL]Wrong value format entered for Rotate, use a number."
  1331. #: FlatCAMEditor.py:1097 flatcamTools/ToolTransform.py:502
  1332. msgid "[ERROR_NOTCL]Wrong value format entered for Skew X, use a number."
  1333. msgstr "[ERROR_NOTCL]Wrong value format entered for Skew X, use a number."
  1334. #: FlatCAMEditor.py:1118 flatcamTools/ToolTransform.py:520
  1335. msgid "[ERROR_NOTCL]Wrong value format entered for Skew Y, use a number."
  1336. msgstr "[ERROR_NOTCL]Wrong value format entered for Skew Y, use a number."
  1337. #: FlatCAMEditor.py:1139 flatcamTools/ToolTransform.py:538
  1338. msgid "[ERROR_NOTCL]Wrong value format entered for Scale X, use a number."
  1339. msgstr "[ERROR_NOTCL]Wrong value format entered for Scale X, use a number."
  1340. #: FlatCAMEditor.py:1176 flatcamTools/ToolTransform.py:572
  1341. msgid "[ERROR_NOTCL]Wrong value format entered for Scale Y, use a number."
  1342. msgstr "[ERROR_NOTCL]Wrong value format entered for Scale Y, use a number."
  1343. #: FlatCAMEditor.py:1208 flatcamTools/ToolTransform.py:601
  1344. msgid "[ERROR_NOTCL]Wrong value format entered for Offset X, use a number."
  1345. msgstr "[ERROR_NOTCL]Wrong value format entered for Offset X, use a number."
  1346. #: FlatCAMEditor.py:1229 flatcamTools/ToolTransform.py:619
  1347. msgid "[ERROR_NOTCL]Wrong value format entered for Offset Y, use a number."
  1348. msgstr "[ERROR_NOTCL]Wrong value format entered for Offset Y, use a number."
  1349. #: FlatCAMEditor.py:1247
  1350. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  1351. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  1352. #: FlatCAMEditor.py:1250 flatcamTools/ToolTransform.py:640
  1353. msgid "Appying Rotate"
  1354. msgstr "Appying Rotate"
  1355. #: FlatCAMEditor.py:1278
  1356. msgid "[success] Done. Rotate completed."
  1357. msgstr "[success] Done. Rotate completed."
  1358. #: FlatCAMEditor.py:1294
  1359. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  1360. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  1361. #: FlatCAMEditor.py:1297 flatcamTools/ToolTransform.py:692
  1362. msgid "Applying Flip"
  1363. msgstr "Applying Flip"
  1364. #: FlatCAMEditor.py:1327
  1365. msgid "[success] Flip on the Y axis done ..."
  1366. msgstr "[success] Flip on the Y axis done ..."
  1367. #: FlatCAMEditor.py:1330
  1368. msgid "[success] Flip on the X axis done ..."
  1369. msgstr "[success] Flip on the X axis done ..."
  1370. #: FlatCAMEditor.py:1349
  1371. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  1372. msgstr ""
  1373. "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  1374. #: FlatCAMEditor.py:1352 flatcamTools/ToolTransform.py:762
  1375. msgid "Applying Skew"
  1376. msgstr "Applying Skew"
  1377. #: FlatCAMEditor.py:1377
  1378. #, python-format
  1379. msgid "[success] Skew on the %s axis done ..."
  1380. msgstr "[success] Skew on the %s axis done ..."
  1381. #: FlatCAMEditor.py:1381 flatcamTools/ToolTransform.py:797
  1382. #, python-format
  1383. msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  1384. msgstr "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  1385. #: FlatCAMEditor.py:1392
  1386. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  1387. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  1388. #: FlatCAMEditor.py:1395 flatcamTools/ToolTransform.py:811
  1389. msgid "Applying Scale"
  1390. msgstr "Applying Scale"
  1391. #: FlatCAMEditor.py:1428 flatcamTools/ToolTransform.py:849
  1392. #, python-format
  1393. msgid "[success] Scale on the %s axis done ..."
  1394. msgstr "[success] Scale on the %s axis done ..."
  1395. #: FlatCAMEditor.py:1431 flatcamTools/ToolTransform.py:852
  1396. #, python-format
  1397. msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  1398. msgstr "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  1399. #: FlatCAMEditor.py:1440
  1400. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  1401. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  1402. #: FlatCAMEditor.py:1443 flatcamTools/ToolTransform.py:864
  1403. msgid "Applying Offset"
  1404. msgstr "Applying Offset"
  1405. #: FlatCAMEditor.py:1467
  1406. #, python-format
  1407. msgid "[success] Offset on the %s axis done ..."
  1408. msgstr "[success] Offset on the %s axis done ..."
  1409. #: FlatCAMEditor.py:1471 flatcamTools/ToolTransform.py:898
  1410. #, python-format
  1411. msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  1412. msgstr "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  1413. #: FlatCAMEditor.py:1475
  1414. msgid "Rotate ..."
  1415. msgstr "Rotate ..."
  1416. #: FlatCAMEditor.py:1476 FlatCAMEditor.py:1533 FlatCAMEditor.py:1550
  1417. msgid "Enter an Angle Value (degrees):"
  1418. msgstr "Enter an Angle Value (degrees):"
  1419. #: FlatCAMEditor.py:1485
  1420. msgid "[success] Geometry shape rotate done..."
  1421. msgstr "[success] Geometry shape rotate done..."
  1422. #: FlatCAMEditor.py:1490
  1423. msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  1424. msgstr "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  1425. #: FlatCAMEditor.py:1496
  1426. msgid "Offset on X axis ..."
  1427. msgstr "Offset on X axis ..."
  1428. #: FlatCAMEditor.py:1497 FlatCAMEditor.py:1516
  1429. #, python-format
  1430. msgid "Enter a distance Value (%s):"
  1431. msgstr "Enter a distance Value (%s):"
  1432. #: FlatCAMEditor.py:1506
  1433. msgid "[success] Geometry shape offset on X axis done..."
  1434. msgstr "[success] Geometry shape offset on X axis done..."
  1435. #: FlatCAMEditor.py:1510
  1436. msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  1437. msgstr "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  1438. #: FlatCAMEditor.py:1515
  1439. msgid "Offset on Y axis ..."
  1440. msgstr "Offset on Y axis ..."
  1441. #: FlatCAMEditor.py:1525
  1442. msgid "[success] Geometry shape offset on Y axis done..."
  1443. msgstr "[success] Geometry shape offset on Y axis done..."
  1444. #: FlatCAMEditor.py:1529
  1445. msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  1446. msgstr "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  1447. #: FlatCAMEditor.py:1532
  1448. msgid "Skew on X axis ..."
  1449. msgstr "Skew on X axis ..."
  1450. #: FlatCAMEditor.py:1542
  1451. msgid "[success] Geometry shape skew on X axis done..."
  1452. msgstr "[success] Geometry shape skew on X axis done..."
  1453. #: FlatCAMEditor.py:1546
  1454. msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  1455. msgstr "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  1456. #: FlatCAMEditor.py:1549
  1457. msgid "Skew on Y axis ..."
  1458. msgstr "Skew on Y axis ..."
  1459. #: FlatCAMEditor.py:1559
  1460. msgid "[success] Geometry shape skew on Y axis done..."
  1461. msgstr "[success] Geometry shape skew on Y axis done..."
  1462. #: FlatCAMEditor.py:1563
  1463. msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  1464. msgstr "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  1465. #: FlatCAMEditor.py:1894 FlatCAMEditor.py:1933
  1466. msgid "Click on CENTER ..."
  1467. msgstr "Click on CENTER ..."
  1468. #: FlatCAMEditor.py:1901
  1469. msgid "Click on Circle perimeter point to complete ..."
  1470. msgstr "Click on Circle perimeter point to complete ..."
  1471. #: FlatCAMEditor.py:1925
  1472. msgid "[success]Done. Adding Circle completed."
  1473. msgstr "[success]Done. Adding Circle completed."
  1474. #: FlatCAMEditor.py:1952
  1475. msgid "Click on Start arc point ..."
  1476. msgstr "Click on Start arc point ..."
  1477. #: FlatCAMEditor.py:1956
  1478. msgid "Click on End arc point to complete ..."
  1479. msgstr "Click on End arc point to complete ..."
  1480. #: FlatCAMEditor.py:2111
  1481. msgid "[success]Done. Arc completed."
  1482. msgstr "[success]Done. Arc completed."
  1483. #: FlatCAMEditor.py:2123
  1484. msgid "Click on 1st corner ..."
  1485. msgstr "Click on 1st corner ..."
  1486. #: FlatCAMEditor.py:2163
  1487. msgid "Click on 1st point ..."
  1488. msgstr "Click on 1st point ..."
  1489. #: FlatCAMEditor.py:2170
  1490. msgid "Click on next Point or click Right mouse button to complete ..."
  1491. msgstr "Click on next Point or click Right mouse button to complete ..."
  1492. #: FlatCAMEditor.py:2193
  1493. msgid "[success]Done. Polygon completed."
  1494. msgstr "[success]Done. Polygon completed."
  1495. #: FlatCAMEditor.py:2212
  1496. msgid "[success]Done. Path completed."
  1497. msgstr "[success]Done. Path completed."
  1498. #: FlatCAMEditor.py:2472 FlatCAMEditor.py:4034
  1499. msgid "[WARNING_NOTCL] Move cancelled. No shape selected."
  1500. msgstr "[WARNING_NOTCL] Move cancelled. No shape selected."
  1501. #: FlatCAMEditor.py:2476
  1502. msgid "Click on reference point."
  1503. msgstr "Click on reference point."
  1504. #: FlatCAMEditor.py:2479
  1505. msgid "Click on destination point."
  1506. msgstr "Click on destination point."
  1507. #: FlatCAMEditor.py:2510
  1508. msgid "[success]Done. Geometry(s) Move completed."
  1509. msgstr "[success]Done. Geometry(s) Move completed."
  1510. #: FlatCAMEditor.py:2555
  1511. msgid "[success]Done. Geometry(s) Copy completed."
  1512. msgstr "[success]Done. Geometry(s) Copy completed."
  1513. #: FlatCAMEditor.py:2567
  1514. msgid "Click on the Destination point..."
  1515. msgstr "Click on the Destination point..."
  1516. #: FlatCAMEditor.py:2581
  1517. #, python-format
  1518. msgid ""
  1519. "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
  1520. "supported. Error: %s"
  1521. msgstr ""
  1522. "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
  1523. "supported. Error: %s"
  1524. #: FlatCAMEditor.py:2591
  1525. msgid "[success]Done. Adding Text completed."
  1526. msgstr "[success]Done. Adding Text completed."
  1527. #: FlatCAMEditor.py:2619
  1528. msgid "Create buffer geometry ..."
  1529. msgstr "Create buffer geometry ..."
  1530. #: FlatCAMEditor.py:2630 FlatCAMEditor.py:2656 FlatCAMEditor.py:2682
  1531. msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  1532. msgstr "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  1533. #: FlatCAMEditor.py:2652
  1534. msgid "[success]Done. Buffer Tool completed."
  1535. msgstr "[success]Done. Buffer Tool completed."
  1536. #: FlatCAMEditor.py:2678
  1537. msgid "[success]Done. Buffer Int Tool completed."
  1538. msgstr "[success]Done. Buffer Int Tool completed."
  1539. #: FlatCAMEditor.py:2704
  1540. msgid "[success]Done. Buffer Ext Tool completed."
  1541. msgstr "[success]Done. Buffer Ext Tool completed."
  1542. #: FlatCAMEditor.py:2737
  1543. msgid "Create Paint geometry ..."
  1544. msgstr "Create Paint geometry ..."
  1545. #: FlatCAMEditor.py:2751
  1546. msgid "Shape transformations ..."
  1547. msgstr "Shape transformations ..."
  1548. #: FlatCAMEditor.py:2776
  1549. msgid "[WARNING_NOTCL] To add a drill first select a tool"
  1550. msgstr "[WARNING_NOTCL] To add a drill first select a tool"
  1551. #: FlatCAMEditor.py:2785 FlatCAMEditor.py:2875 FlatCAMEditor.py:3148
  1552. #: FlatCAMEditor.py:3173
  1553. msgid "Click on target location ..."
  1554. msgstr "Click on target location ..."
  1555. #: FlatCAMEditor.py:2825
  1556. msgid "[success]Done. Drill added."
  1557. msgstr "[success]Done. Drill added."
  1558. #: FlatCAMEditor.py:2867
  1559. msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1560. msgstr ""
  1561. "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1562. #: FlatCAMEditor.py:2892
  1563. msgid "Click on the Drill Circular Array Start position"
  1564. msgstr "Click on the Drill Circular Array Start position"
  1565. #: FlatCAMEditor.py:2914
  1566. msgid ""
  1567. "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
  1568. "separator."
  1569. msgstr ""
  1570. "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
  1571. "separator."
  1572. #: FlatCAMEditor.py:2917
  1573. msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
  1574. msgstr "[ERROR_NOTCL] The value is mistyped. Check the value."
  1575. #: FlatCAMEditor.py:3010
  1576. msgid "[WARNING_NOTCL]Too many drills for the selected spacing angle."
  1577. msgstr "[WARNING_NOTCL]Too many drills for the selected spacing angle."
  1578. #: FlatCAMEditor.py:3027
  1579. msgid "[success]Done. Drill Array added."
  1580. msgstr "[success]Done. Drill Array added."
  1581. #: FlatCAMEditor.py:3038
  1582. msgid "Click on the Drill(s) to resize ..."
  1583. msgstr "Click on the Drill(s) to resize ..."
  1584. #: FlatCAMEditor.py:3058
  1585. msgid ""
  1586. "[ERROR_NOTCL]Resize drill(s) failed. Please enter a diameter for resize."
  1587. msgstr ""
  1588. "[ERROR_NOTCL]Resize drill(s) failed. Please enter a diameter for resize."
  1589. #: FlatCAMEditor.py:3130
  1590. msgid "[success]Done. Drill Resize completed."
  1591. msgstr "[success]Done. Drill Resize completed."
  1592. #: FlatCAMEditor.py:3150
  1593. msgid "Click on reference location ..."
  1594. msgstr "Click on reference location ..."
  1595. #: FlatCAMEditor.py:3205
  1596. msgid "[success]Done. Drill(s) Move completed."
  1597. msgstr "[success]Done. Drill(s) Move completed."
  1598. #: FlatCAMEditor.py:3258
  1599. msgid "[success]Done. Drill(s) copied."
  1600. msgstr "[success]Done. Drill(s) copied."
  1601. #: FlatCAMEditor.py:3908 flatcamGUI/FlatCAMGUI.py:2131
  1602. #: flatcamGUI/FlatCAMGUI.py:2143
  1603. msgid "[success]Done."
  1604. msgstr "[success]Done."
  1605. #: FlatCAMEditor.py:4041
  1606. msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
  1607. msgstr "[WARNING_NOTCL] Copy cancelled. No shape selected."
  1608. #: FlatCAMEditor.py:4048 flatcamGUI/FlatCAMGUI.py:2423
  1609. #: flatcamGUI/FlatCAMGUI.py:2435 flatcamGUI/FlatCAMGUI.py:2469
  1610. msgid "Click on target point."
  1611. msgstr "Click on target point."
  1612. #: FlatCAMEditor.py:4289
  1613. msgid ""
  1614. "[WARNING_NOTCL]A selection of at least 2 geo items is required to do "
  1615. "Intersection."
  1616. msgstr ""
  1617. "[WARNING_NOTCL]A selection of at least 2 geo items is required to do "
  1618. "Intersection."
  1619. #: FlatCAMEditor.py:4327 FlatCAMEditor.py:4364 FlatCAMEditor.py:4436
  1620. msgid ""
  1621. "[ERROR_NOTCL]Negative buffer value is not accepted. Use Buffer interior to "
  1622. "generate an 'inside' shape"
  1623. msgstr ""
  1624. "[ERROR_NOTCL]Negative buffer value is not accepted. Use Buffer interior to "
  1625. "generate an 'inside' shape"
  1626. #: FlatCAMEditor.py:4335 FlatCAMEditor.py:4373 FlatCAMEditor.py:4444
  1627. msgid "[WARNING_NOTCL] Nothing selected for buffering."
  1628. msgstr "[WARNING_NOTCL] Nothing selected for buffering."
  1629. #: FlatCAMEditor.py:4339 FlatCAMEditor.py:4377 FlatCAMEditor.py:4448
  1630. msgid "[WARNING_NOTCL] Invalid distance for buffering."
  1631. msgstr "[WARNING_NOTCL] Invalid distance for buffering."
  1632. #: FlatCAMEditor.py:4349 FlatCAMEditor.py:4457
  1633. msgid ""
  1634. "[ERROR_NOTCL]Failed, the result is empty. Choose a different buffer value."
  1635. msgstr ""
  1636. "[ERROR_NOTCL]Failed, the result is empty. Choose a different buffer value."
  1637. #: FlatCAMEditor.py:4357
  1638. msgid "[success]Full buffer geometry created."
  1639. msgstr "[success]Full buffer geometry created."
  1640. #: FlatCAMEditor.py:4386
  1641. msgid ""
  1642. "[ERROR_NOTCL]Failed, the result is empty. Choose a smaller buffer value."
  1643. msgstr ""
  1644. "[ERROR_NOTCL]Failed, the result is empty. Choose a smaller buffer value."
  1645. #: FlatCAMEditor.py:4398 FlatCAMEditor.py:4469
  1646. msgid "[success]Exterior buffer geometry created."
  1647. msgstr "[success]Exterior buffer geometry created."
  1648. #: FlatCAMEditor.py:4533
  1649. msgid "[WARNING_NOTCL]Nothing selected for painting."
  1650. msgstr "[WARNING_NOTCL]Nothing selected for painting."
  1651. #: FlatCAMEditor.py:4539
  1652. msgid "[WARNING] Invalid value for {}"
  1653. msgstr "[WARNING] Invalid value for {}"
  1654. #: FlatCAMEditor.py:4545
  1655. msgid ""
  1656. "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
  1657. "(100%)."
  1658. msgstr ""
  1659. "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
  1660. "(100%)."
  1661. #: FlatCAMEditor.py:4604
  1662. #, python-format
  1663. msgid ""
  1664. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  1665. "different method of Paint\n"
  1666. "%s"
  1667. msgstr ""
  1668. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  1669. "different method of Paint\n"
  1670. "%s"
  1671. #: FlatCAMEditor.py:4615
  1672. msgid "[success] Paint done."
  1673. msgstr "[success] Paint done."
  1674. #: FlatCAMEditor.py:4647
  1675. msgid "Excellon Editor"
  1676. msgstr "Excellon Editor"
  1677. #: FlatCAMEditor.py:4654
  1678. msgid "Name:"
  1679. msgstr "Name:"
  1680. #: FlatCAMEditor.py:4674 flatcamTools/ToolNonCopperClear.py:71
  1681. #: flatcamTools/ToolPaint.py:69 flatcamTools/ToolSolderPaste.py:70
  1682. msgid "Tools Table"
  1683. msgstr "Tools Table"
  1684. #: FlatCAMEditor.py:4676 flatcamGUI/ObjectUI.py:609
  1685. msgid ""
  1686. "Tools in this Excellon object\n"
  1687. "when are used for drilling."
  1688. msgstr ""
  1689. "Tools in this Excellon object\n"
  1690. "when are used for drilling."
  1691. #: FlatCAMEditor.py:4685 FlatCAMEditor.py:5745 FlatCAMObj.py:2213
  1692. #: FlatCAMObj.py:2307 FlatCAMObj.py:2418 flatcamGUI/ObjectUI.py:627
  1693. #: flatcamTools/ToolNonCopperClear.py:82 flatcamTools/ToolPaint.py:80
  1694. #: flatcamTools/ToolSolderPaste.py:81
  1695. msgid "Diameter"
  1696. msgstr "Diameter"
  1697. #: FlatCAMEditor.py:4693
  1698. msgid "Add/Delete Tool"
  1699. msgstr "Add/Delete Tool"
  1700. #: FlatCAMEditor.py:4695
  1701. msgid ""
  1702. "Add/Delete a tool to the tool list\n"
  1703. "for this Excellon object."
  1704. msgstr ""
  1705. "Add/Delete a tool to the tool list\n"
  1706. "for this Excellon object."
  1707. #: FlatCAMEditor.py:4703 flatcamTools/ToolCutOut.py:77
  1708. msgid "Tool Dia:"
  1709. msgstr "Tool Dia:"
  1710. #: FlatCAMEditor.py:4705 flatcamGUI/ObjectUI.py:1046
  1711. msgid "Diameter for the new tool"
  1712. msgstr "Diameter for the new tool"
  1713. #: FlatCAMEditor.py:4714
  1714. msgid "Add Tool"
  1715. msgstr "Add Tool"
  1716. #: FlatCAMEditor.py:4716
  1717. msgid ""
  1718. "Add a new tool to the tool list\n"
  1719. "with the diameter specified above."
  1720. msgstr ""
  1721. "Add a new tool to the tool list\n"
  1722. "with the diameter specified above."
  1723. #: FlatCAMEditor.py:4726
  1724. msgid "Delete Tool"
  1725. msgstr "Delete Tool"
  1726. #: FlatCAMEditor.py:4728
  1727. msgid ""
  1728. "Delete a tool in the tool list\n"
  1729. "by selecting a row in the tool table."
  1730. msgstr ""
  1731. "Delete a tool in the tool list\n"
  1732. "by selecting a row in the tool table."
  1733. #: FlatCAMEditor.py:4746
  1734. msgid "Resize Drill(s)"
  1735. msgstr "Resize Drill(s)"
  1736. #: FlatCAMEditor.py:4748
  1737. msgid "Resize a drill or a selection of drills."
  1738. msgstr "Resize a drill or a selection of drills."
  1739. #: FlatCAMEditor.py:4755
  1740. msgid "Resize Dia:"
  1741. msgstr "Resize Dia:"
  1742. #: FlatCAMEditor.py:4757
  1743. msgid "Diameter to resize to."
  1744. msgstr "Diameter to resize to."
  1745. #: FlatCAMEditor.py:4765
  1746. msgid "Resize"
  1747. msgstr "Resize"
  1748. #: FlatCAMEditor.py:4767
  1749. msgid "Resize drill(s)"
  1750. msgstr "Resize drill(s)"
  1751. #: FlatCAMEditor.py:4789 flatcamGUI/FlatCAMGUI.py:1394
  1752. msgid "Add Drill Array"
  1753. msgstr "Add Drill Array"
  1754. #: FlatCAMEditor.py:4791
  1755. msgid "Add an array of drills (linear or circular array)"
  1756. msgstr "Add an array of drills (linear or circular array)"
  1757. #: FlatCAMEditor.py:4797
  1758. msgid ""
  1759. "Select the type of drills array to create.\n"
  1760. "It can be Linear X(Y) or Circular"
  1761. msgstr ""
  1762. "Select the type of drills array to create.\n"
  1763. "It can be Linear X(Y) or Circular"
  1764. #: FlatCAMEditor.py:4800
  1765. msgid "Linear"
  1766. msgstr "Linear"
  1767. #: FlatCAMEditor.py:4801
  1768. msgid "Circular"
  1769. msgstr "Circular"
  1770. #: FlatCAMEditor.py:4808
  1771. msgid "Nr of drills:"
  1772. msgstr "Nr of drills:"
  1773. #: FlatCAMEditor.py:4810
  1774. msgid "Specify how many drills to be in the array."
  1775. msgstr "Specify how many drills to be in the array."
  1776. #: FlatCAMEditor.py:4827 FlatCAMEditor.py:4872
  1777. msgid "Direction:"
  1778. msgstr "Direction:"
  1779. #: FlatCAMEditor.py:4829
  1780. msgid ""
  1781. "Direction on which the linear array is oriented:\n"
  1782. "- 'X' - horizontal axis \n"
  1783. "- 'Y' - vertical axis or \n"
  1784. "- 'Angle' - a custom angle for the array inclination"
  1785. msgstr ""
  1786. "Direction on which the linear array is oriented:\n"
  1787. "- 'X' - horizontal axis \n"
  1788. "- 'Y' - vertical axis or \n"
  1789. "- 'Angle' - a custom angle for the array inclination"
  1790. #: FlatCAMEditor.py:4838
  1791. msgid "Angle"
  1792. msgstr "Angle"
  1793. #: FlatCAMEditor.py:4842
  1794. msgid "Pitch:"
  1795. msgstr "Pitch:"
  1796. #: FlatCAMEditor.py:4844
  1797. msgid "Pitch = Distance between elements of the array."
  1798. msgstr "Pitch = Distance between elements of the array."
  1799. #: FlatCAMEditor.py:4853
  1800. msgid ""
  1801. "Angle at which the linear array is placed.\n"
  1802. "The precision is of max 2 decimals.\n"
  1803. "Min value is: -359.99 degrees.\n"
  1804. "Max value is: 360.00 degrees."
  1805. msgstr ""
  1806. "Angle at which the linear array is placed.\n"
  1807. "The precision is of max 2 decimals.\n"
  1808. "Min value is: -359.99 degrees.\n"
  1809. "Max value is: 360.00 degrees."
  1810. #: FlatCAMEditor.py:4874
  1811. msgid ""
  1812. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1813. "clockwise."
  1814. msgstr ""
  1815. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1816. "clockwise."
  1817. #: FlatCAMEditor.py:4889
  1818. msgid "Angle at which each element in circular array is placed."
  1819. msgstr "Angle at which each element in circular array is placed."
  1820. #: FlatCAMEditor.py:5210 FlatCAMObj.py:1735
  1821. msgid "Total Drills"
  1822. msgstr "Total Drills"
  1823. #: FlatCAMEditor.py:5242 FlatCAMObj.py:1761
  1824. msgid "Total Slots"
  1825. msgstr "Total Slots"
  1826. #: FlatCAMEditor.py:5316 FlatCAMObj.py:1968 FlatCAMObj.py:3231
  1827. #: FlatCAMObj.py:3537 FlatCAMObj.py:3724 FlatCAMObj.py:3737 FlatCAMObj.py:3854
  1828. #: FlatCAMObj.py:4262 FlatCAMObj.py:4495 FlatCAMObj.py:4901
  1829. #: flatcamTools/ToolCalculators.py:307 flatcamTools/ToolCalculators.py:318
  1830. #: flatcamTools/ToolCalculators.py:330 flatcamTools/ToolCalculators.py:345
  1831. #: flatcamTools/ToolCalculators.py:358 flatcamTools/ToolCalculators.py:372
  1832. #: flatcamTools/ToolCalculators.py:383 flatcamTools/ToolCalculators.py:394
  1833. #: flatcamTools/ToolCalculators.py:405 flatcamTools/ToolFilm.py:241
  1834. #: flatcamTools/ToolFilm.py:248 flatcamTools/ToolNonCopperClear.py:478
  1835. #: flatcamTools/ToolNonCopperClear.py:625
  1836. #: flatcamTools/ToolNonCopperClear.py:637 flatcamTools/ToolPaint.py:537
  1837. #: flatcamTools/ToolPaint.py:607 flatcamTools/ToolPaint.py:743
  1838. #: flatcamTools/ToolPaint.py:833 flatcamTools/ToolPaint.py:988
  1839. #: flatcamTools/ToolPanelize.py:323 flatcamTools/ToolPanelize.py:335
  1840. #: flatcamTools/ToolPanelize.py:348 flatcamTools/ToolPanelize.py:361
  1841. #: flatcamTools/ToolPanelize.py:373 flatcamTools/ToolPanelize.py:384
  1842. #: flatcamTools/ToolSolderPaste.py:755 flatcamTools/ToolSolderPaste.py:826
  1843. msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
  1844. msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."
  1845. #: FlatCAMEditor.py:5329
  1846. msgid ""
  1847. "[WARNING_NOTCL]Tool already in the original or actual tool list.\n"
  1848. "Save and reedit Excellon if you need to add this tool. "
  1849. msgstr ""
  1850. "[WARNING_NOTCL]Tool already in the original or actual tool list.\n"
  1851. "Save and reedit Excellon if you need to add this tool. "
  1852. #: FlatCAMEditor.py:5338 flatcamGUI/FlatCAMGUI.py:2498
  1853. #, python-brace-format
  1854. msgid "[success]Added new tool with dia: {dia} {units}"
  1855. msgstr "[success]Added new tool with dia: {dia} {units}"
  1856. #: FlatCAMEditor.py:5369
  1857. msgid "[WARNING_NOTCL]Select a tool in Tool Table"
  1858. msgstr "[WARNING_NOTCL]Select a tool in Tool Table"
  1859. #: FlatCAMEditor.py:5402
  1860. #, python-brace-format
  1861. msgid "[success]Deleted tool with dia: {del_dia} {units}"
  1862. msgstr "[success]Deleted tool with dia: {del_dia} {units}"
  1863. #: FlatCAMEditor.py:5799
  1864. msgid ""
  1865. "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
  1866. "creation."
  1867. msgstr ""
  1868. "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
  1869. "creation."
  1870. #: FlatCAMEditor.py:5808
  1871. msgid "Creating Excellon."
  1872. msgstr "Creating Excellon."
  1873. #: FlatCAMEditor.py:5817
  1874. msgid "[success]Excellon editing finished."
  1875. msgstr "[success]Excellon editing finished."
  1876. #: FlatCAMEditor.py:5834
  1877. msgid "[WARNING_NOTCL]Cancelled. There is no Tool/Drill selected"
  1878. msgstr "[WARNING_NOTCL]Cancelled. There is no Tool/Drill selected"
  1879. #: FlatCAMEditor.py:6316
  1880. msgid "[success]Done. Drill(s) deleted."
  1881. msgstr "[success]Done. Drill(s) deleted."
  1882. #: FlatCAMEditor.py:6386
  1883. msgid "Click on the circular array Center position"
  1884. msgstr "Click on the circular array Center position"
  1885. #: FlatCAMObj.py:194
  1886. #, python-brace-format
  1887. msgid "[success]Name changed from {old} to {new}"
  1888. msgstr "[success]Name changed from {old} to {new}"
  1889. #: FlatCAMObj.py:542 FlatCAMObj.py:1896 FlatCAMObj.py:3159 FlatCAMObj.py:5306
  1890. msgid "<span style=\"color:green;\"><b>Basic</b></span>"
  1891. msgstr "<span style=\"color:green;\"><b>Basic</b></span>"
  1892. #: FlatCAMObj.py:554 FlatCAMObj.py:1912 FlatCAMObj.py:3181 FlatCAMObj.py:5312
  1893. msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
  1894. msgstr "<span style=\"color:red;\"><b>Advanced</b></span>"
  1895. #: FlatCAMObj.py:909 FlatCAMObj.py:964
  1896. #, python-format
  1897. msgid "[success]Isolation geometry created: %s"
  1898. msgstr "[success]Isolation geometry created: %s"
  1899. #: FlatCAMObj.py:1039
  1900. msgid ""
  1901. "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  1902. msgstr ""
  1903. "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  1904. #: FlatCAMObj.py:1054 FlatCAMObj.py:1089
  1905. msgid ""
  1906. "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
  1907. "again."
  1908. msgstr ""
  1909. "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
  1910. "again."
  1911. #: FlatCAMObj.py:1074
  1912. msgid "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  1913. msgstr "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  1914. #: FlatCAMObj.py:1146
  1915. msgid "Generating Gerber"
  1916. msgstr "Generating Gerber"
  1917. #: FlatCAMObj.py:1154
  1918. msgid "[ERROR_NOTCL] Cretion of Gerber failed."
  1919. msgstr "[ERROR_NOTCL] Cretion of Gerber failed."
  1920. #: FlatCAMObj.py:1161
  1921. #, python-format
  1922. msgid "[success] Created: %s"
  1923. msgstr "[success] Created: %s"
  1924. #: FlatCAMObj.py:1281
  1925. msgid "Plotting Apertures"
  1926. msgstr "Plotting Apertures"
  1927. #: FlatCAMObj.py:2192 FlatCAMObj.py:2283 FlatCAMObj.py:2398
  1928. msgid ""
  1929. "[ERROR_NOTCL]Please select one or more tools from the list and try again."
  1930. msgstr ""
  1931. "[ERROR_NOTCL]Please select one or more tools from the list and try again."
  1932. #: FlatCAMObj.py:2199
  1933. msgid ""
  1934. "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  1935. msgstr ""
  1936. "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  1937. #: FlatCAMObj.py:2213 FlatCAMObj.py:2307 FlatCAMObj.py:2418
  1938. msgid "Tool_nr"
  1939. msgstr "Tool_nr"
  1940. #: FlatCAMObj.py:2213 FlatCAMObj.py:2307 FlatCAMObj.py:2418
  1941. msgid "Drills_Nr"
  1942. msgstr "Drills_Nr"
  1943. #: FlatCAMObj.py:2213 FlatCAMObj.py:2307 FlatCAMObj.py:2418
  1944. msgid "Slots_Nr"
  1945. msgstr "Slots_Nr"
  1946. #: FlatCAMObj.py:2293
  1947. msgid ""
  1948. "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  1949. msgstr ""
  1950. "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  1951. #: FlatCAMObj.py:2456 FlatCAMObj.py:4150 FlatCAMObj.py:4361 FlatCAMObj.py:4676
  1952. msgid ""
  1953. "[ERROR_NOTCL]Wrong value format for self.defaults[\"z_pdepth\"] or self."
  1954. "options[\"z_pdepth\"]"
  1955. msgstr ""
  1956. "[ERROR_NOTCL]Wrong value format for self.defaults[\"z_pdepth\"] or self."
  1957. "options[\"z_pdepth\"]"
  1958. #: FlatCAMObj.py:2468 FlatCAMObj.py:4162 FlatCAMObj.py:4373 FlatCAMObj.py:4688
  1959. msgid ""
  1960. "[ERROR_NOTCL]Wrong value format for self.defaults[\"feedrate_probe\"] or "
  1961. "self.options[\"feedrate_probe\"]"
  1962. msgstr ""
  1963. "[ERROR_NOTCL]Wrong value format for self.defaults[\"feedrate_probe\"] or "
  1964. "self.options[\"feedrate_probe\"]"
  1965. #: FlatCAMObj.py:2500 FlatCAMObj.py:4563 FlatCAMObj.py:4568 FlatCAMObj.py:4714
  1966. msgid "Generating CNC Code"
  1967. msgstr "Generating CNC Code"
  1968. #: FlatCAMObj.py:2526 FlatCAMObj.py:4860 camlib.py:4929 camlib.py:5365
  1969. #: camlib.py:5636
  1970. msgid ""
  1971. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
  1972. "format (x, y) \n"
  1973. "but now there is only one value, not two. "
  1974. msgstr ""
  1975. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
  1976. "format (x, y) \n"
  1977. "but now there is only one value, not two. "
  1978. #: FlatCAMObj.py:2873 FlatCAMObj.py:3115 FlatCAMObj.py:3400
  1979. msgid "Path"
  1980. msgstr "Path"
  1981. #: FlatCAMObj.py:2873
  1982. msgid "In"
  1983. msgstr "In"
  1984. #: FlatCAMObj.py:2873
  1985. msgid "Out"
  1986. msgstr "Out"
  1987. #: FlatCAMObj.py:2873 FlatCAMObj.py:3196 FlatCAMObj.py:3769
  1988. msgid "Custom"
  1989. msgstr "Custom"
  1990. #: FlatCAMObj.py:2874 FlatCAMObj.py:3780 FlatCAMObj.py:3781 FlatCAMObj.py:3790
  1991. msgid "Iso"
  1992. msgstr "Iso"
  1993. #: FlatCAMObj.py:2874 FlatCAMObj.py:3117 FlatCAMObj.py:3402
  1994. msgid "Rough"
  1995. msgstr "Rough"
  1996. #: FlatCAMObj.py:2874
  1997. msgid "Finish"
  1998. msgstr "Finish"
  1999. #: FlatCAMObj.py:3152 flatcamGUI/FlatCAMGUI.py:473
  2000. #: flatcamGUI/FlatCAMGUI.py:1398 flatcamGUI/ObjectUI.py:1067
  2001. msgid "Copy"
  2002. msgstr "Copy"
  2003. #: FlatCAMObj.py:3154 flatcamGUI/FlatCAMGUI.py:474
  2004. #: flatcamGUI/FlatCAMGUI.py:1399 flatcamGUI/ObjectUI.py:1075
  2005. #: flatcamTools/ToolNonCopperClear.py:145 flatcamTools/ToolPaint.py:143
  2006. #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:480
  2007. msgid "Delete"
  2008. msgstr "Delete"
  2009. #: FlatCAMObj.py:3372
  2010. msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  2011. msgstr "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  2012. #: FlatCAMObj.py:3447
  2013. msgid "[success] Tool added in Tool Table."
  2014. msgstr "[success] Tool added in Tool Table."
  2015. #: FlatCAMObj.py:3452
  2016. msgid "[ERROR_NOTCL]Default Tool added. Wrong value format entered."
  2017. msgstr "[ERROR_NOTCL]Default Tool added. Wrong value format entered."
  2018. #: FlatCAMObj.py:3482 FlatCAMObj.py:3492
  2019. msgid "[WARNING_NOTCL]Failed. Select a tool to copy."
  2020. msgstr "[WARNING_NOTCL]Failed. Select a tool to copy."
  2021. #: FlatCAMObj.py:3521
  2022. msgid "[success] Tool was copied in Tool Table."
  2023. msgstr "[success] Tool was copied in Tool Table."
  2024. #: FlatCAMObj.py:3554
  2025. msgid "[success] Tool was edited in Tool Table."
  2026. msgstr "[success] Tool was edited in Tool Table."
  2027. #: FlatCAMObj.py:3585 FlatCAMObj.py:3595
  2028. msgid "[WARNING_NOTCL]Failed. Select a tool to delete."
  2029. msgstr "[WARNING_NOTCL]Failed. Select a tool to delete."
  2030. #: FlatCAMObj.py:3619
  2031. msgid "[success] Tool was deleted in Tool Table."
  2032. msgstr "[success] Tool was deleted in Tool Table."
  2033. #: FlatCAMObj.py:4033
  2034. #, python-format
  2035. msgid ""
  2036. "[WARNING_NOTCL]This Geometry can't be processed because it is %s geometry."
  2037. msgstr ""
  2038. "[WARNING_NOTCL]This Geometry can't be processed because it is %s geometry."
  2039. #: FlatCAMObj.py:4050
  2040. msgid "[ERROR_NOTCL]Wrong Tool Dia value format entered, use a number."
  2041. msgstr "[ERROR_NOTCL]Wrong Tool Dia value format entered, use a number."
  2042. #: FlatCAMObj.py:4077
  2043. msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  2044. msgstr "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  2045. #: FlatCAMObj.py:4115
  2046. #, python-format
  2047. msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  2048. msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  2049. #: FlatCAMObj.py:4271 FlatCAMObj.py:4504
  2050. msgid ""
  2051. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  2052. "Add a Tool Offset or change the Offset Type."
  2053. msgstr ""
  2054. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  2055. "Add a Tool Offset or change the Offset Type."
  2056. #: FlatCAMObj.py:4385
  2057. msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  2058. msgstr "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  2059. #: FlatCAMObj.py:4747 FlatCAMObj.py:4757 camlib.py:3229 camlib.py:3238
  2060. msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  2061. msgstr "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  2062. #: FlatCAMObj.py:4795
  2063. msgid "[success]Geometry Scale done."
  2064. msgstr "[success]Geometry Scale done."
  2065. #: FlatCAMObj.py:4812 camlib.py:3300
  2066. msgid ""
  2067. "[ERROR_NOTCL]An (x,y) pair of values are needed. Probable you entered only "
  2068. "one value in the Offset field."
  2069. msgstr ""
  2070. "[ERROR_NOTCL]An (x,y) pair of values are needed. Probable you entered only "
  2071. "one value in the Offset field."
  2072. #: FlatCAMObj.py:4832
  2073. msgid "[success]Geometry Offset done."
  2074. msgstr "[success]Geometry Offset done."
  2075. #: FlatCAMObj.py:5374 FlatCAMObj.py:5379 flatcamTools/ToolSolderPaste.py:1360
  2076. msgid "Export Machine Code ..."
  2077. msgstr "Export Machine Code ..."
  2078. #: FlatCAMObj.py:5385
  2079. msgid "[WARNING_NOTCL]Export Machine Code cancelled ..."
  2080. msgstr "[WARNING_NOTCL]Export Machine Code cancelled ..."
  2081. #: FlatCAMObj.py:5396
  2082. #, python-format
  2083. msgid "[success] Machine Code file saved to: %s"
  2084. msgstr "[success] Machine Code file saved to: %s"
  2085. #: FlatCAMObj.py:5418
  2086. #, python-format
  2087. msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  2088. msgstr "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  2089. #: FlatCAMObj.py:5524
  2090. #, python-format
  2091. msgid ""
  2092. "[WARNING_NOTCL]This CNCJob object can't be processed because it is a %s "
  2093. "CNCJob object."
  2094. msgstr ""
  2095. "[WARNING_NOTCL]This CNCJob object can't be processed because it is a %s "
  2096. "CNCJob object."
  2097. #: FlatCAMObj.py:5577
  2098. msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  2099. msgstr "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  2100. #: FlatCAMObj.py:5590
  2101. msgid ""
  2102. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  2103. "empty."
  2104. msgstr ""
  2105. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  2106. "empty."
  2107. #: FlatCAMObj.py:5597
  2108. msgid "[success] Toolchange G-code was replaced by a custom code."
  2109. msgstr "[success] Toolchange G-code was replaced by a custom code."
  2110. #: FlatCAMObj.py:5612 flatcamTools/ToolSolderPaste.py:1389
  2111. msgid "[WARNING_NOTCL] No such file or directory"
  2112. msgstr "[WARNING_NOTCL] No such file or directory"
  2113. #: FlatCAMObj.py:5631 FlatCAMObj.py:5643
  2114. msgid ""
  2115. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  2116. "'toolchange_custom'"
  2117. msgstr ""
  2118. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  2119. "'toolchange_custom'"
  2120. #: FlatCAMObj.py:5649
  2121. msgid "[ERROR] There is no postprocessor file."
  2122. msgstr "[ERROR] There is no postprocessor file."
  2123. #: ObjectCollection.py:403
  2124. #, python-brace-format
  2125. msgid "Object renamed from {old} to {new}"
  2126. msgstr "Object renamed from {old} to {new}"
  2127. #: ObjectCollection.py:738
  2128. #, python-format
  2129. msgid "[ERROR] Cause of error: %s"
  2130. msgstr "[ERROR] Cause of error: %s"
  2131. #: camlib.py:200
  2132. msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  2133. msgstr "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  2134. #: camlib.py:1387
  2135. msgid "[success]Object was mirrored ..."
  2136. msgstr "[success]Object was mirrored ..."
  2137. #: camlib.py:1389
  2138. msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
  2139. msgstr "[ERROR_NOTCL] Failed to mirror. No object selected"
  2140. #: camlib.py:1425
  2141. msgid "[success]Object was rotated ..."
  2142. msgstr "[success]Object was rotated ..."
  2143. #: camlib.py:1427
  2144. msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
  2145. msgstr "[ERROR_NOTCL] Failed to rotate. No object selected"
  2146. #: camlib.py:1461
  2147. msgid "[success]Object was skewed ..."
  2148. msgstr "[success]Object was skewed ..."
  2149. #: camlib.py:1463
  2150. msgid "[ERROR_NOTCL] Failed to skew. No object selected"
  2151. msgstr "[ERROR_NOTCL] Failed to skew. No object selected"
  2152. #: camlib.py:2647 camlib.py:2727
  2153. #, python-format
  2154. msgid "[WARNING] Coordinates missing, line ignored: %s"
  2155. msgstr "[WARNING] Coordinates missing, line ignored: %s"
  2156. #: camlib.py:2648 camlib.py:2728
  2157. msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  2158. msgstr "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  2159. #: camlib.py:2696
  2160. #, python-format
  2161. msgid ""
  2162. "[ERROR] Region does not have enough points. File will be processed but there "
  2163. "are parser errors. Line number: %s"
  2164. msgstr ""
  2165. "[ERROR] Region does not have enough points. File will be processed but there "
  2166. "are parser errors. Line number: %s"
  2167. #: camlib.py:3051
  2168. #, python-format
  2169. msgid ""
  2170. "[ERROR]Gerber Parser ERROR.\n"
  2171. "%s:"
  2172. msgstr ""
  2173. "[ERROR]Gerber Parser ERROR.\n"
  2174. "%s:"
  2175. #: camlib.py:3267
  2176. msgid "[success]Gerber Scale done."
  2177. msgstr "[success]Gerber Scale done."
  2178. #: camlib.py:3324
  2179. msgid "[success]Gerber Offset done."
  2180. msgstr "[success]Gerber Offset done."
  2181. #: camlib.py:3700
  2182. #, python-format
  2183. msgid "[ERROR_NOTCL] This is GCODE mark: %s"
  2184. msgstr "[ERROR_NOTCL] This is GCODE mark: %s"
  2185. #: camlib.py:4230
  2186. #, python-brace-format
  2187. msgid ""
  2188. "[ERROR] Excellon Parser error.\n"
  2189. "Parsing Failed. Line {l_nr}: {line}\n"
  2190. msgstr ""
  2191. "[ERROR] Excellon Parser error.\n"
  2192. "Parsing Failed. Line {l_nr}: {line}\n"
  2193. #: camlib.py:4307
  2194. msgid ""
  2195. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  2196. "not having a tool associated.\n"
  2197. "Check the resulting GCode."
  2198. msgstr ""
  2199. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  2200. "not having a tool associated.\n"
  2201. "Check the resulting GCode."
  2202. #: camlib.py:4843
  2203. #, python-format
  2204. msgid "[ERROR] There is no such parameter: %s"
  2205. msgstr "[ERROR] There is no such parameter: %s"
  2206. #: camlib.py:4908
  2207. msgid ""
  2208. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  2209. "drill into material.\n"
  2210. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  2211. "therefore the app will convert the value to negative. Check the resulting "
  2212. "CNC code (Gcode etc)."
  2213. msgstr ""
  2214. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  2215. "drill into material.\n"
  2216. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  2217. "therefore the app will convert the value to negative. Check the resulting "
  2218. "CNC code (Gcode etc)."
  2219. #: camlib.py:4915 camlib.py:5388 camlib.py:5659
  2220. #, python-format
  2221. msgid ""
  2222. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  2223. msgstr ""
  2224. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  2225. #: camlib.py:5131 camlib.py:5226 camlib.py:5277
  2226. msgid "[ERROR_NOTCL]The loaded Excellon file has no drills ..."
  2227. msgstr "[ERROR_NOTCL]The loaded Excellon file has no drills ..."
  2228. #: camlib.py:5231
  2229. msgid "[ERROR_NOTCL] Wrong optimization type selected."
  2230. msgstr "[ERROR_NOTCL] Wrong optimization type selected."
  2231. #: camlib.py:5376 camlib.py:5647
  2232. msgid ""
  2233. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  2234. "combinations of other parameters."
  2235. msgstr ""
  2236. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  2237. "combinations of other parameters."
  2238. #: camlib.py:5381 camlib.py:5652
  2239. msgid ""
  2240. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  2241. "cut into material.\n"
  2242. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  2243. "therefore the app will convert the value to negative.Check the resulting CNC "
  2244. "code (Gcode etc)."
  2245. msgstr ""
  2246. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  2247. "cut into material.\n"
  2248. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  2249. "therefore the app will convert the value to negative.Check the resulting CNC "
  2250. "code (Gcode etc)."
  2251. #: camlib.py:5393 camlib.py:5664
  2252. msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
  2253. msgstr "[ERROR_NOTCL] Travel Z parameter is None or zero."
  2254. #: camlib.py:5397 camlib.py:5668
  2255. msgid ""
  2256. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  2257. "to travel between cuts.\n"
  2258. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  2259. "therefore the app will convert the value to positive.Check the resulting CNC "
  2260. "code (Gcode etc)."
  2261. msgstr ""
  2262. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  2263. "to travel between cuts.\n"
  2264. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  2265. "therefore the app will convert the value to positive.Check the resulting CNC "
  2266. "code (Gcode etc)."
  2267. #: camlib.py:5404 camlib.py:5675
  2268. #, python-format
  2269. msgid ""
  2270. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  2271. msgstr ""
  2272. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  2273. #: camlib.py:5534
  2274. #, python-format
  2275. msgid "[ERROR]Expected a Geometry, got %s"
  2276. msgstr "[ERROR]Expected a Geometry, got %s"
  2277. #: camlib.py:5540
  2278. msgid ""
  2279. "[ERROR_NOTCL]Trying to generate a CNC Job from a Geometry object without "
  2280. "solid_geometry."
  2281. msgstr ""
  2282. "[ERROR_NOTCL]Trying to generate a CNC Job from a Geometry object without "
  2283. "solid_geometry."
  2284. #: camlib.py:5579
  2285. msgid ""
  2286. "[ERROR_NOTCL]The Tool Offset value is too negative to use for the "
  2287. "current_geometry.\n"
  2288. "Raise the value (in module) and try again."
  2289. msgstr ""
  2290. "[ERROR_NOTCL]The Tool Offset value is too negative to use for the "
  2291. "current_geometry.\n"
  2292. "Raise the value (in module) and try again."
  2293. #: camlib.py:5801
  2294. msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  2295. msgstr "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  2296. #: flatcamGUI/FlatCAMGUI.py:50
  2297. msgid "&File"
  2298. msgstr "&Datei"
  2299. #: flatcamGUI/FlatCAMGUI.py:55
  2300. msgid "&New Project ...\tCTRL+N"
  2301. msgstr "&New Project ...\tCTRL+N"
  2302. #: flatcamGUI/FlatCAMGUI.py:57
  2303. msgid "Will create a new, blank project"
  2304. msgstr "Will create a new, blank project"
  2305. #: flatcamGUI/FlatCAMGUI.py:62
  2306. msgid "&New"
  2307. msgstr "&New"
  2308. #: flatcamGUI/FlatCAMGUI.py:65
  2309. msgid "Geometry\tN"
  2310. msgstr "Geometry\tN"
  2311. #: flatcamGUI/FlatCAMGUI.py:67
  2312. msgid "Will create a new, empty Geometry Object."
  2313. msgstr "Will create a new, empty Geometry Object."
  2314. #: flatcamGUI/FlatCAMGUI.py:69
  2315. msgid "Excellon\tL"
  2316. msgstr "Excellon\tL"
  2317. #: flatcamGUI/FlatCAMGUI.py:71
  2318. msgid "Will create a new, empty Excellon Object."
  2319. msgstr "Will create a new, empty Excellon Object."
  2320. #: flatcamGUI/FlatCAMGUI.py:74
  2321. msgid "Open"
  2322. msgstr "Open"
  2323. #: flatcamGUI/FlatCAMGUI.py:79
  2324. msgid "Open &Gerber ...\tCTRL+G"
  2325. msgstr "Open &Gerber ...\tCTRL+G"
  2326. #: flatcamGUI/FlatCAMGUI.py:86
  2327. msgid "Open &Excellon ...\tCTRL+E"
  2328. msgstr "Open &Excellon ...\tCTRL+E"
  2329. #: flatcamGUI/FlatCAMGUI.py:91
  2330. msgid "Open G-&Code ..."
  2331. msgstr "Open G-&Code ..."
  2332. #: flatcamGUI/FlatCAMGUI.py:95
  2333. msgid "Open &Project ..."
  2334. msgstr "Open &Project ..."
  2335. #: flatcamGUI/FlatCAMGUI.py:101
  2336. msgid "Open Config ..."
  2337. msgstr "Open Config ..."
  2338. #: flatcamGUI/FlatCAMGUI.py:105
  2339. msgid "Recent files"
  2340. msgstr "Recent files"
  2341. #: flatcamGUI/FlatCAMGUI.py:111
  2342. msgid "Scripting"
  2343. msgstr "Scripting"
  2344. #: flatcamGUI/FlatCAMGUI.py:114
  2345. msgid "New Script ..."
  2346. msgstr "New Script ..."
  2347. #: flatcamGUI/FlatCAMGUI.py:116
  2348. msgid "Open Script ..."
  2349. msgstr "Open Script ..."
  2350. #: flatcamGUI/FlatCAMGUI.py:118
  2351. msgid "Run Script ...\tSHIFT+S"
  2352. msgstr "Run Script ...\tSHIFT+S"
  2353. #: flatcamGUI/FlatCAMGUI.py:121
  2354. msgid ""
  2355. "Will run the opened Tcl Script thus\n"
  2356. "enabling the automation of certain\n"
  2357. "functions of FlatCAM."
  2358. msgstr ""
  2359. "Will run the opened Tcl Script thus\n"
  2360. "enabling the automation of certain\n"
  2361. "functions of FlatCAM."
  2362. #: flatcamGUI/FlatCAMGUI.py:134
  2363. msgid "Import"
  2364. msgstr "Import"
  2365. #: flatcamGUI/FlatCAMGUI.py:136
  2366. msgid "&SVG as Geometry Object ..."
  2367. msgstr "&SVG as Geometry Object ..."
  2368. #: flatcamGUI/FlatCAMGUI.py:139
  2369. msgid "&SVG as Gerber Object ..."
  2370. msgstr "&SVG as Gerber Object ..."
  2371. #: flatcamGUI/FlatCAMGUI.py:144
  2372. msgid "&DXF as Geometry Object ..."
  2373. msgstr "&DXF as Geometry Object ..."
  2374. #: flatcamGUI/FlatCAMGUI.py:147
  2375. msgid "&DXF as Gerber Object ..."
  2376. msgstr "&DXF as Gerber Object ..."
  2377. #: flatcamGUI/FlatCAMGUI.py:152
  2378. msgid "Export"
  2379. msgstr "Export"
  2380. #: flatcamGUI/FlatCAMGUI.py:155
  2381. msgid "Export &SVG ..."
  2382. msgstr "Export &SVG ..."
  2383. #: flatcamGUI/FlatCAMGUI.py:158
  2384. msgid "Export DXF ..."
  2385. msgstr "Export DXF ..."
  2386. #: flatcamGUI/FlatCAMGUI.py:163
  2387. msgid "Export &PNG ..."
  2388. msgstr "Export &PNG ..."
  2389. #: flatcamGUI/FlatCAMGUI.py:165
  2390. msgid ""
  2391. "Will export an image in PNG format,\n"
  2392. "the saved image will contain the visual \n"
  2393. "information currently in FlatCAM Plot Area."
  2394. msgstr ""
  2395. "Will export an image in PNG format,\n"
  2396. "the saved image will contain the visual \n"
  2397. "information currently in FlatCAM Plot Area."
  2398. #: flatcamGUI/FlatCAMGUI.py:173
  2399. msgid "Export &Excellon ..."
  2400. msgstr "Export &Excellon ..."
  2401. #: flatcamGUI/FlatCAMGUI.py:176
  2402. msgid ""
  2403. "Will export an Excellon Object as Excellon file,\n"
  2404. "the coordinates format, the file units and zeros\n"
  2405. "are set in Preferences -> Excellon Export."
  2406. msgstr ""
  2407. "Will export an Excellon Object as Excellon file,\n"
  2408. "the coordinates format, the file units and zeros\n"
  2409. "are set in Preferences -> Excellon Export."
  2410. #: flatcamGUI/FlatCAMGUI.py:187
  2411. msgid "Save &Defaults"
  2412. msgstr "Save &Defaults"
  2413. #: flatcamGUI/FlatCAMGUI.py:193 flatcamGUI/FlatCAMGUI.py:475
  2414. msgid "Save"
  2415. msgstr "Save"
  2416. #: flatcamGUI/FlatCAMGUI.py:195
  2417. msgid "&Save Project ..."
  2418. msgstr "&Save Project ..."
  2419. #: flatcamGUI/FlatCAMGUI.py:200
  2420. msgid "Save Project &As ...\tCTRL+S"
  2421. msgstr "Save Project &As ...\tCTRL+S"
  2422. #: flatcamGUI/FlatCAMGUI.py:204
  2423. msgid "Save Project C&opy ..."
  2424. msgstr "Save Project C&opy ..."
  2425. #: flatcamGUI/FlatCAMGUI.py:212
  2426. msgid "E&xit"
  2427. msgstr "E&xit"
  2428. #: flatcamGUI/FlatCAMGUI.py:218
  2429. msgid "&Edit"
  2430. msgstr "&Edit"
  2431. #: flatcamGUI/FlatCAMGUI.py:221
  2432. msgid "Edit Object\tE"
  2433. msgstr "Edit Object\tE"
  2434. #: flatcamGUI/FlatCAMGUI.py:222
  2435. msgid "Save && Close Editor\tCTRL+S"
  2436. msgstr "Save && Close Editor\tCTRL+S"
  2437. #: flatcamGUI/FlatCAMGUI.py:230
  2438. msgid "Conversion"
  2439. msgstr "Conversion"
  2440. #: flatcamGUI/FlatCAMGUI.py:232
  2441. msgid "&Join Geo/Gerber/Exc -> Geo"
  2442. msgstr "&Join Geo/Gerber/Exc -> Geo"
  2443. #: flatcamGUI/FlatCAMGUI.py:234
  2444. msgid ""
  2445. "Merge a selection of objects, which can be of type:\n"
  2446. "- Gerber\n"
  2447. "- Excellon\n"
  2448. "- Geometry\n"
  2449. "into a new combo Geometry object."
  2450. msgstr ""
  2451. "Merge a selection of objects, which can be of type:\n"
  2452. "- Gerber\n"
  2453. "- Excellon\n"
  2454. "- Geometry\n"
  2455. "into a new combo Geometry object."
  2456. #: flatcamGUI/FlatCAMGUI.py:241
  2457. msgid "Join Excellon(s) -> Excellon"
  2458. msgstr "Join Excellon(s) -> Excellon"
  2459. #: flatcamGUI/FlatCAMGUI.py:243
  2460. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  2461. msgstr ""
  2462. "Merge a selection of Excellon objects into a new combo Excellon object."
  2463. #: flatcamGUI/FlatCAMGUI.py:246
  2464. msgid "Join Gerber(s) -> Gerber"
  2465. msgstr "Join Gerber(s) -> Gerber"
  2466. #: flatcamGUI/FlatCAMGUI.py:248
  2467. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  2468. msgstr "Merge a selection of Gerber objects into a new combo Gerber object."
  2469. #: flatcamGUI/FlatCAMGUI.py:253
  2470. msgid "Convert Single to MultiGeo"
  2471. msgstr "Convert Single to MultiGeo"
  2472. #: flatcamGUI/FlatCAMGUI.py:255
  2473. msgid ""
  2474. "Will convert a Geometry object from single_geometry type\n"
  2475. "to a multi_geometry type."
  2476. msgstr ""
  2477. "Will convert a Geometry object from single_geometry type\n"
  2478. "to a multi_geometry type."
  2479. #: flatcamGUI/FlatCAMGUI.py:259
  2480. msgid "Convert Multi to SingleGeo"
  2481. msgstr "Convert Multi to SingleGeo"
  2482. #: flatcamGUI/FlatCAMGUI.py:261
  2483. msgid ""
  2484. "Will convert a Geometry object from multi_geometry type\n"
  2485. "to a single_geometry type."
  2486. msgstr ""
  2487. "Will convert a Geometry object from multi_geometry type\n"
  2488. "to a single_geometry type."
  2489. #: flatcamGUI/FlatCAMGUI.py:268
  2490. msgid "&Copy Object\tCTRL+C"
  2491. msgstr "&Copy Object\tCTRL+C"
  2492. #: flatcamGUI/FlatCAMGUI.py:270
  2493. msgid "Copy as &Geom"
  2494. msgstr "Copy as &Geom"
  2495. #: flatcamGUI/FlatCAMGUI.py:273
  2496. msgid "&Delete\tDEL"
  2497. msgstr "&Delete\tDEL"
  2498. #: flatcamGUI/FlatCAMGUI.py:277
  2499. msgid "Se&t Origin\tO"
  2500. msgstr "Se&t Origin\tO"
  2501. #: flatcamGUI/FlatCAMGUI.py:278
  2502. msgid "Jump to Location\tJ"
  2503. msgstr "Jump to Location\tJ"
  2504. #: flatcamGUI/FlatCAMGUI.py:283
  2505. msgid "Toggle Units\tQ"
  2506. msgstr "Toggle Units\tQ"
  2507. #: flatcamGUI/FlatCAMGUI.py:285
  2508. msgid "&Select All\tCTRL+A"
  2509. msgstr "&Select All\tCTRL+A"
  2510. #: flatcamGUI/FlatCAMGUI.py:289
  2511. msgid "&Preferences\tSHIFT+P"
  2512. msgstr "&Preferences\tSHIFT+P"
  2513. #: flatcamGUI/FlatCAMGUI.py:292
  2514. msgid "&Options"
  2515. msgstr "&Optionen"
  2516. #: flatcamGUI/FlatCAMGUI.py:307
  2517. msgid "&Rotate Selection\tSHIFT+(R)"
  2518. msgstr "&Rotate Selection\tSHIFT+(R)"
  2519. #: flatcamGUI/FlatCAMGUI.py:312
  2520. msgid "&Skew on X axis\tSHIFT+X"
  2521. msgstr "&Skew on X axis\tSHIFT+X"
  2522. #: flatcamGUI/FlatCAMGUI.py:314
  2523. msgid "S&kew on Y axis\tSHIFT+Y"
  2524. msgstr "S&kew on Y axis\tSHIFT+Y"
  2525. #: flatcamGUI/FlatCAMGUI.py:319
  2526. msgid "Flip on &X axis\tX"
  2527. msgstr "Flip on &X axis\tX"
  2528. #: flatcamGUI/FlatCAMGUI.py:321
  2529. msgid "Flip on &Y axis\tY"
  2530. msgstr "Flip on &Y axis\tY"
  2531. #: flatcamGUI/FlatCAMGUI.py:326
  2532. msgid "View source\tALT+S"
  2533. msgstr "View source\tALT+S"
  2534. #: flatcamGUI/FlatCAMGUI.py:331
  2535. msgid "&View"
  2536. msgstr "&Blick"
  2537. #: flatcamGUI/FlatCAMGUI.py:332
  2538. msgid "Enable all plots\tALT+1"
  2539. msgstr "Enable all plots\tALT+1"
  2540. #: flatcamGUI/FlatCAMGUI.py:334
  2541. msgid "Disable all plots\tALT+2"
  2542. msgstr "Disable all plots\tALT+2"
  2543. #: flatcamGUI/FlatCAMGUI.py:336
  2544. msgid "Disable non-selected\tALT+3"
  2545. msgstr "Disable non-selected\tALT+3"
  2546. #: flatcamGUI/FlatCAMGUI.py:339
  2547. msgid "&Zoom Fit\tV"
  2548. msgstr "&Zoom Fit\tV"
  2549. #: flatcamGUI/FlatCAMGUI.py:340
  2550. msgid "&Zoom In\t-"
  2551. msgstr "&Zoom In\t-"
  2552. #: flatcamGUI/FlatCAMGUI.py:341
  2553. msgid "&Zoom Out\t="
  2554. msgstr "&Zoom Out\t="
  2555. #: flatcamGUI/FlatCAMGUI.py:345
  2556. msgid "Toggle Code Editor\tCTRL+E"
  2557. msgstr "Toggle Code Editor\tCTRL+E"
  2558. #: flatcamGUI/FlatCAMGUI.py:348
  2559. msgid "&Toggle FullScreen\tALT+F10"
  2560. msgstr "&Toggle FullScreen\tALT+F10"
  2561. #: flatcamGUI/FlatCAMGUI.py:350
  2562. msgid "&Toggle Plot Area\tCTRL+F10"
  2563. msgstr "&Toggle Plot Area\tCTRL+F10"
  2564. #: flatcamGUI/FlatCAMGUI.py:352
  2565. msgid "&Toggle Project/Sel/Tool\t`"
  2566. msgstr "&Toggle Project/Sel/Tool\t`"
  2567. #: flatcamGUI/FlatCAMGUI.py:355
  2568. msgid "&Toggle Grid Snap\tG"
  2569. msgstr "&Toggle Grid Snap\tG"
  2570. #: flatcamGUI/FlatCAMGUI.py:357
  2571. msgid "&Toggle Axis\tSHIFT+G"
  2572. msgstr "&Toggle Axis\tSHIFT+G"
  2573. #: flatcamGUI/FlatCAMGUI.py:360
  2574. msgid "Toggle Workspace\tSHIFT+W"
  2575. msgstr "Toggle Workspace\tSHIFT+W"
  2576. #: flatcamGUI/FlatCAMGUI.py:364
  2577. msgid "&Tool"
  2578. msgstr "Werkzeug"
  2579. #: flatcamGUI/FlatCAMGUI.py:366
  2580. msgid "&Command Line\tS"
  2581. msgstr "Befehlszeile\tS"
  2582. #: flatcamGUI/FlatCAMGUI.py:369
  2583. msgid "&Help"
  2584. msgstr "&Hilfe"
  2585. #: flatcamGUI/FlatCAMGUI.py:370
  2586. msgid "Help\tF1"
  2587. msgstr "Help\tF1"
  2588. #: flatcamGUI/FlatCAMGUI.py:371
  2589. msgid "FlatCAM.org"
  2590. msgstr "FlatCAM.org"
  2591. #: flatcamGUI/FlatCAMGUI.py:374
  2592. msgid "Shortcuts List\tF3"
  2593. msgstr "Shortcuts List\tF3"
  2594. #: flatcamGUI/FlatCAMGUI.py:375
  2595. msgid "YouTube Channel\tF4"
  2596. msgstr "YouTube Channel\tF4"
  2597. #: flatcamGUI/FlatCAMGUI.py:377
  2598. msgid "About"
  2599. msgstr "About"
  2600. #: flatcamGUI/FlatCAMGUI.py:388
  2601. msgid "Add Circle\tO"
  2602. msgstr "Add Circle\tO"
  2603. #: flatcamGUI/FlatCAMGUI.py:390
  2604. msgid "Add Arc\tA"
  2605. msgstr "Add Arc\tA"
  2606. #: flatcamGUI/FlatCAMGUI.py:393
  2607. msgid "Add Rectangle\tR"
  2608. msgstr "Add Rectangle\tR"
  2609. #: flatcamGUI/FlatCAMGUI.py:396
  2610. msgid "Add Polygon\tN"
  2611. msgstr "Add Polygon\tN"
  2612. #: flatcamGUI/FlatCAMGUI.py:398
  2613. msgid "Add Path\tP"
  2614. msgstr "Add Path\tP"
  2615. #: flatcamGUI/FlatCAMGUI.py:400
  2616. msgid "Add Text\tT"
  2617. msgstr "Add Text\tT"
  2618. #: flatcamGUI/FlatCAMGUI.py:403
  2619. msgid "Polygon Union\tU"
  2620. msgstr "Polygon Union\tU"
  2621. #: flatcamGUI/FlatCAMGUI.py:405
  2622. msgid "Polygon Intersection\tE"
  2623. msgstr "Polygon Intersection\tE"
  2624. #: flatcamGUI/FlatCAMGUI.py:407
  2625. msgid "Polygon Subtraction\tS"
  2626. msgstr "Polygon Subtraction\tS"
  2627. #: flatcamGUI/FlatCAMGUI.py:411
  2628. msgid "Cut Path\tX"
  2629. msgstr "Cut Path\tX"
  2630. #: flatcamGUI/FlatCAMGUI.py:413
  2631. msgid "Copy Geom\tC"
  2632. msgstr "Copy Geom\tC"
  2633. #: flatcamGUI/FlatCAMGUI.py:415
  2634. msgid "Delete Shape\tDEL"
  2635. msgstr "Delete Shape\tDEL"
  2636. #: flatcamGUI/FlatCAMGUI.py:418
  2637. msgid "Move\tM"
  2638. msgstr "Move\tM"
  2639. #: flatcamGUI/FlatCAMGUI.py:420
  2640. msgid "Buffer Tool\tB"
  2641. msgstr "Buffer Tool\tB"
  2642. #: flatcamGUI/FlatCAMGUI.py:423
  2643. msgid "Paint Tool\tI"
  2644. msgstr "Paint Tool\tI"
  2645. #: flatcamGUI/FlatCAMGUI.py:426
  2646. msgid "Transform Tool\tALT+R"
  2647. msgstr "Transform Tool\tALT+R"
  2648. #: flatcamGUI/FlatCAMGUI.py:430
  2649. msgid "Toggle Corner Snap\tK"
  2650. msgstr "Toggle Corner Snap\tK"
  2651. #: flatcamGUI/FlatCAMGUI.py:433
  2652. msgid ">Excellon Editor<"
  2653. msgstr ">Excellon Editor<"
  2654. #: flatcamGUI/FlatCAMGUI.py:437
  2655. msgid "Add Drill Array\tA"
  2656. msgstr "Add Drill Array\tA"
  2657. #: flatcamGUI/FlatCAMGUI.py:439
  2658. msgid "Add Drill\tD"
  2659. msgstr "Add Drill\tD"
  2660. #: flatcamGUI/FlatCAMGUI.py:443
  2661. msgid "Resize Drill(S)\tR"
  2662. msgstr "Resize Drill(S)\tR"
  2663. #: flatcamGUI/FlatCAMGUI.py:445
  2664. msgid "Copy\tC"
  2665. msgstr "Copy\tC"
  2666. #: flatcamGUI/FlatCAMGUI.py:447
  2667. msgid "Delete\tDEL"
  2668. msgstr "Delete\tDEL"
  2669. #: flatcamGUI/FlatCAMGUI.py:452
  2670. msgid "Move Drill(s)\tM"
  2671. msgstr "Move Drill(s)\tM"
  2672. #: flatcamGUI/FlatCAMGUI.py:466
  2673. msgid "Enable Plot"
  2674. msgstr "Enable Plot"
  2675. #: flatcamGUI/FlatCAMGUI.py:467
  2676. msgid "Disable Plot"
  2677. msgstr "Disable Plot"
  2678. #: flatcamGUI/FlatCAMGUI.py:469
  2679. msgid "Generate CNC"
  2680. msgstr "Generate CNC"
  2681. #: flatcamGUI/FlatCAMGUI.py:470
  2682. msgid "View Source"
  2683. msgstr "View Source"
  2684. #: flatcamGUI/FlatCAMGUI.py:472 flatcamGUI/FlatCAMGUI.py:1400
  2685. msgid "Edit"
  2686. msgstr "Bearbeiten"
  2687. #: flatcamGUI/FlatCAMGUI.py:478 flatcamGUI/FlatCAMGUI.py:1406
  2688. #: flatcamTools/ToolProperties.py:25
  2689. msgid "Properties"
  2690. msgstr "Eigenschaften"
  2691. #: flatcamGUI/FlatCAMGUI.py:507
  2692. msgid "File Toolbar"
  2693. msgstr "Dateisymbolleiste"
  2694. #: flatcamGUI/FlatCAMGUI.py:511
  2695. msgid "Edit Toolbar"
  2696. msgstr "Edit Toolbar"
  2697. #: flatcamGUI/FlatCAMGUI.py:515
  2698. msgid "View Toolbar"
  2699. msgstr "View Toolbar"
  2700. #: flatcamGUI/FlatCAMGUI.py:519
  2701. msgid "Shell Toolbar"
  2702. msgstr "Shell Toolbar"
  2703. #: flatcamGUI/FlatCAMGUI.py:523
  2704. msgid "Tools Toolbar"
  2705. msgstr "Tools Toolbar"
  2706. #: flatcamGUI/FlatCAMGUI.py:527
  2707. msgid "Excellon Editor Toolbar"
  2708. msgstr "Excellon Editor Toolbar"
  2709. #: flatcamGUI/FlatCAMGUI.py:531
  2710. msgid "Geometry Editor Toolbar"
  2711. msgstr "Geometry Editor Toolbar"
  2712. #: flatcamGUI/FlatCAMGUI.py:535
  2713. msgid "Grid Toolbar"
  2714. msgstr "Grid Toolbar"
  2715. #: flatcamGUI/FlatCAMGUI.py:554 flatcamGUI/FlatCAMGUI.py:1603
  2716. msgid "Open project"
  2717. msgstr "Offenes Projekt"
  2718. #: flatcamGUI/FlatCAMGUI.py:555 flatcamGUI/FlatCAMGUI.py:1604
  2719. msgid "Save project"
  2720. msgstr "Projekt speichern"
  2721. #: flatcamGUI/FlatCAMGUI.py:558 flatcamGUI/FlatCAMGUI.py:1607
  2722. msgid "New Blank Geometry"
  2723. msgstr "New Blank Geometry"
  2724. #: flatcamGUI/FlatCAMGUI.py:559 flatcamGUI/FlatCAMGUI.py:1608
  2725. msgid "New Blank Excellon"
  2726. msgstr "New Blank Excellon"
  2727. #: flatcamGUI/FlatCAMGUI.py:561 flatcamGUI/FlatCAMGUI.py:1610
  2728. msgid "Editor"
  2729. msgstr "Editor"
  2730. #: flatcamGUI/FlatCAMGUI.py:563 flatcamGUI/FlatCAMGUI.py:1612
  2731. msgid "Save Object and close the Editor"
  2732. msgstr "Save Object and close the Editor"
  2733. #: flatcamGUI/FlatCAMGUI.py:567 flatcamGUI/FlatCAMGUI.py:1616
  2734. msgid "&Delete"
  2735. msgstr "&Löschen"
  2736. #: flatcamGUI/FlatCAMGUI.py:570 flatcamGUI/FlatCAMGUI.py:1619
  2737. msgid "&Replot"
  2738. msgstr "&Replotieren"
  2739. #: flatcamGUI/FlatCAMGUI.py:571 flatcamGUI/FlatCAMGUI.py:1620
  2740. msgid "&Clear plot"
  2741. msgstr "&Plot klar löschen"
  2742. #: flatcamGUI/FlatCAMGUI.py:572 flatcamGUI/FlatCAMGUI.py:1621
  2743. msgid "Zoom In"
  2744. msgstr "Zoom In"
  2745. #: flatcamGUI/FlatCAMGUI.py:573 flatcamGUI/FlatCAMGUI.py:1622
  2746. msgid "Zoom Out"
  2747. msgstr "Zoom Out"
  2748. #: flatcamGUI/FlatCAMGUI.py:574 flatcamGUI/FlatCAMGUI.py:1380
  2749. #: flatcamGUI/FlatCAMGUI.py:1623
  2750. msgid "Zoom Fit"
  2751. msgstr "Zoom Fit"
  2752. #: flatcamGUI/FlatCAMGUI.py:579 flatcamGUI/FlatCAMGUI.py:1628
  2753. msgid "&Command Line"
  2754. msgstr "&Command Line"
  2755. #: flatcamGUI/FlatCAMGUI.py:582 flatcamGUI/FlatCAMGUI.py:1631
  2756. msgid "2Sided Tool"
  2757. msgstr "2Sided Tool"
  2758. #: flatcamGUI/FlatCAMGUI.py:583 flatcamGUI/FlatCAMGUI.py:1632
  2759. msgid "&Cutout Tool"
  2760. msgstr "&Cutout Tool"
  2761. #: flatcamGUI/FlatCAMGUI.py:584 flatcamGUI/FlatCAMGUI.py:1633
  2762. #: flatcamGUI/ObjectUI.py:463 flatcamTools/ToolNonCopperClear.py:283
  2763. msgid "NCC Tool"
  2764. msgstr "NCC Tool"
  2765. #: flatcamGUI/FlatCAMGUI.py:588 flatcamGUI/FlatCAMGUI.py:1637
  2766. msgid "Panel Tool"
  2767. msgstr "Panel Tool"
  2768. #: flatcamGUI/FlatCAMGUI.py:589 flatcamGUI/FlatCAMGUI.py:1638
  2769. #: flatcamTools/ToolFilm.py:204
  2770. msgid "Film Tool"
  2771. msgstr "Film Tool"
  2772. #: flatcamGUI/FlatCAMGUI.py:590 flatcamGUI/FlatCAMGUI.py:1640
  2773. msgid "SolderPaste Tool"
  2774. msgstr "SolderPaste Tool"
  2775. #: flatcamGUI/FlatCAMGUI.py:593 flatcamGUI/FlatCAMGUI.py:1644
  2776. msgid "Calculators Tool"
  2777. msgstr "Calculators Tool"
  2778. #: flatcamGUI/FlatCAMGUI.py:597 flatcamGUI/FlatCAMGUI.py:611
  2779. #: flatcamGUI/FlatCAMGUI.py:1648
  2780. msgid "Select"
  2781. msgstr "Select"
  2782. #: flatcamGUI/FlatCAMGUI.py:598 flatcamGUI/FlatCAMGUI.py:1649
  2783. msgid "Add Drill Hole"
  2784. msgstr "Add Drill Hole"
  2785. #: flatcamGUI/FlatCAMGUI.py:601 flatcamGUI/FlatCAMGUI.py:1652
  2786. msgid "Resize Drill"
  2787. msgstr "Resize Drill"
  2788. #: flatcamGUI/FlatCAMGUI.py:604 flatcamGUI/FlatCAMGUI.py:1655
  2789. msgid "Copy Drill"
  2790. msgstr "Copy Drill"
  2791. #: flatcamGUI/FlatCAMGUI.py:605 flatcamGUI/FlatCAMGUI.py:1657
  2792. msgid "Delete Drill"
  2793. msgstr "Delete Drill"
  2794. #: flatcamGUI/FlatCAMGUI.py:608 flatcamGUI/FlatCAMGUI.py:1660
  2795. msgid "Move Drill"
  2796. msgstr "Move Drill"
  2797. #: flatcamGUI/FlatCAMGUI.py:612 flatcamGUI/FlatCAMGUI.py:1664
  2798. msgid "Add Circle"
  2799. msgstr "Add Circle"
  2800. #: flatcamGUI/FlatCAMGUI.py:613 flatcamGUI/FlatCAMGUI.py:1665
  2801. msgid "Add Arc"
  2802. msgstr "Add Arc"
  2803. #: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1667
  2804. msgid "Add Rectangle"
  2805. msgstr "Add Rectangle"
  2806. #: flatcamGUI/FlatCAMGUI.py:618 flatcamGUI/FlatCAMGUI.py:1670
  2807. msgid "Add Path"
  2808. msgstr "Add Path"
  2809. #: flatcamGUI/FlatCAMGUI.py:619 flatcamGUI/FlatCAMGUI.py:1672
  2810. msgid "Add Polygon"
  2811. msgstr "Add Polygon"
  2812. #: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1674
  2813. msgid "Add Text"
  2814. msgstr "Add Text"
  2815. #: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1676
  2816. msgid "Add Buffer"
  2817. msgstr "Add Buffer"
  2818. #: flatcamGUI/FlatCAMGUI.py:623 flatcamGUI/FlatCAMGUI.py:1677
  2819. msgid "Paint Shape"
  2820. msgstr "Paint Shape"
  2821. #: flatcamGUI/FlatCAMGUI.py:626 flatcamGUI/FlatCAMGUI.py:1680
  2822. msgid "Polygon Union"
  2823. msgstr "Polygon Union"
  2824. #: flatcamGUI/FlatCAMGUI.py:628 flatcamGUI/FlatCAMGUI.py:1682
  2825. msgid "Polygon Intersection"
  2826. msgstr "Polygon Intersection"
  2827. #: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1684
  2828. msgid "Polygon Subtraction"
  2829. msgstr "Polygon Subtraction"
  2830. #: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1687
  2831. msgid "Cut Path"
  2832. msgstr "Cut Path"
  2833. #: flatcamGUI/FlatCAMGUI.py:634
  2834. msgid "Copy Shape(s)"
  2835. msgstr "Copy Shape(s)"
  2836. #: flatcamGUI/FlatCAMGUI.py:637
  2837. msgid "Delete Shape '-'"
  2838. msgstr "Delete Shape '-'"
  2839. #: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1692
  2840. msgid "Transformations"
  2841. msgstr "Transformations"
  2842. #: flatcamGUI/FlatCAMGUI.py:641
  2843. msgid "Move Objects "
  2844. msgstr "Move Objects "
  2845. #: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1701
  2846. msgid "Snap to grid"
  2847. msgstr "Snap to grid"
  2848. #: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1704
  2849. msgid "Grid X snapping distance"
  2850. msgstr "Grid X snapping distance"
  2851. #: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1709
  2852. msgid "Grid Y snapping distance"
  2853. msgstr "Grid Y snapping distance"
  2854. #: flatcamGUI/FlatCAMGUI.py:661 flatcamGUI/FlatCAMGUI.py:1715
  2855. msgid ""
  2856. "When active, value on Grid_X\n"
  2857. "is copied to the Grid_Y value."
  2858. msgstr ""
  2859. "When active, value on Grid_X\n"
  2860. "is copied to the Grid_Y value."
  2861. #: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:1721
  2862. msgid "Snap to corner"
  2863. msgstr "Snap to corner"
  2864. #: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1725
  2865. #: flatcamGUI/FlatCAMGUI.py:2804
  2866. msgid "Max. magnet distance"
  2867. msgstr "Max. magnet distance"
  2868. #: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:1374
  2869. msgid "Project"
  2870. msgstr "Project"
  2871. #: flatcamGUI/FlatCAMGUI.py:694
  2872. msgid "Selected"
  2873. msgstr "Selected"
  2874. #: flatcamGUI/FlatCAMGUI.py:701
  2875. msgid "Tool"
  2876. msgstr "Tool"
  2877. #: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:721
  2878. msgid "Plot Area"
  2879. msgstr "Grundstücksfläche"
  2880. #: flatcamGUI/FlatCAMGUI.py:745
  2881. msgid "General"
  2882. msgstr "General"
  2883. #: flatcamGUI/FlatCAMGUI.py:754
  2884. msgid "APP. DEFAULTS"
  2885. msgstr "APP. DEFAULTS"
  2886. #: flatcamGUI/FlatCAMGUI.py:755
  2887. msgid "PROJ. OPTIONS "
  2888. msgstr "PROJ. OPTIONS "
  2889. #: flatcamGUI/FlatCAMGUI.py:766
  2890. msgid "GERBER"
  2891. msgstr "GERBER"
  2892. #: flatcamGUI/FlatCAMGUI.py:775
  2893. msgid "EXCELLON"
  2894. msgstr "EXCELLON"
  2895. #: flatcamGUI/FlatCAMGUI.py:784
  2896. msgid "GEOMETRY"
  2897. msgstr "GEOMETRY"
  2898. #: flatcamGUI/FlatCAMGUI.py:794
  2899. msgid "CNC-JOB"
  2900. msgstr "CNC-JOB"
  2901. #: flatcamGUI/FlatCAMGUI.py:803
  2902. msgid "TOOLS"
  2903. msgstr "TOOLS"
  2904. #: flatcamGUI/FlatCAMGUI.py:820
  2905. msgid "Import Preferences"
  2906. msgstr "Import Preferences"
  2907. #: flatcamGUI/FlatCAMGUI.py:823
  2908. msgid ""
  2909. "Import a full set of FlatCAM settings from a file\n"
  2910. "previously saved on HDD.\n"
  2911. "\n"
  2912. "FlatCAM automatically save a 'factory_defaults' file\n"
  2913. "on the first start. Do not delete that file."
  2914. msgstr ""
  2915. "Import a full set of FlatCAM settings from a file\n"
  2916. "previously saved on HDD.\n"
  2917. "\n"
  2918. "FlatCAM automatically save a 'factory_defaults' file\n"
  2919. "on the first start. Do not delete that file."
  2920. #: flatcamGUI/FlatCAMGUI.py:830
  2921. msgid "Export Preferences"
  2922. msgstr "Export Preferences"
  2923. #: flatcamGUI/FlatCAMGUI.py:833
  2924. msgid ""
  2925. "Export a full set of FlatCAM settings in a file\n"
  2926. "that is saved on HDD."
  2927. msgstr ""
  2928. "Export a full set of FlatCAM settings in a file\n"
  2929. "that is saved on HDD."
  2930. #: flatcamGUI/FlatCAMGUI.py:838
  2931. msgid "Open Pref Folder"
  2932. msgstr "Open Pref Folder"
  2933. #: flatcamGUI/FlatCAMGUI.py:841
  2934. msgid "Open the folder where FlatCAM save the preferences files."
  2935. msgstr "Open the folder where FlatCAM save the preferences files."
  2936. #: flatcamGUI/FlatCAMGUI.py:849
  2937. msgid "Save Preferences"
  2938. msgstr "Save Preferences"
  2939. #: flatcamGUI/FlatCAMGUI.py:852
  2940. msgid ""
  2941. "Save the current settings in the 'current_defaults' file\n"
  2942. "which is the file storing the working default preferences."
  2943. msgstr ""
  2944. "Save the current settings in the 'current_defaults' file\n"
  2945. "which is the file storing the working default preferences."
  2946. #: flatcamGUI/FlatCAMGUI.py:878
  2947. msgid ""
  2948. "<b>General Shortcut list</b><br>\n"
  2949. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  2950. "\"width:283px\">\n"
  2951. " <tbody>\n"
  2952. " <tr height=\"20\">\n"
  2953. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  2954. "td>\n"
  2955. " <td width=\"194\"><span style=\"color:"
  2956. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  2957. " </tr>\n"
  2958. " <tr height=\"20\">\n"
  2959. " <td height=\"20\">&nbsp;</td>\n"
  2960. " <td>&nbsp;</td>\n"
  2961. " </tr>\n"
  2962. " <tr height=\"20\">\n"
  2963. " <td height=\"20\"><strong>1</strong></td>\n"
  2964. " <td>&nbsp;Switch to Project Tab</td>\n"
  2965. " </tr>\n"
  2966. " <tr height=\"20\">\n"
  2967. " <td height=\"20\"><strong>2</strong></td>\n"
  2968. " <td>&nbsp;Switch to Selected Tab</td>\n"
  2969. " </tr>\n"
  2970. " <tr height=\"20\">\n"
  2971. " <td height=\"20\"><strong>3</strong></td>\n"
  2972. " <td>&nbsp;Switch to Tool Tab</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>E</strong></td>\n"
  2980. " <td>&nbsp;Edit Object (if selected)</td>\n"
  2981. " </tr>\n"
  2982. " <tr height=\"20\">\n"
  2983. " <td height=\"20\"><strong>G</strong></td>\n"
  2984. " <td>&nbsp;Grid On/Off</td>\n"
  2985. " </tr>\n"
  2986. " <tr height=\"20\">\n"
  2987. " <td height=\"20\"><strong>J</strong></td>\n"
  2988. " <td>&nbsp;Jump to Coordinates</td>\n"
  2989. " </tr>\n"
  2990. " <tr height=\"20\">\n"
  2991. " <td height=\"20\"><strong>L</strong></td>\n"
  2992. " <td>&nbsp;New Excellon</td>\n"
  2993. " </tr>\n"
  2994. " <tr height=\"20\">\n"
  2995. " <td height=\"20\"><strong>M</strong></td>\n"
  2996. " <td>&nbsp;Move Obj</td>\n"
  2997. " </tr>\n"
  2998. " <tr height=\"20\">\n"
  2999. " <td height=\"20\"><strong>N</strong></td>\n"
  3000. " <td>&nbsp;New Geometry</td>\n"
  3001. " </tr>\n"
  3002. " <tr height=\"20\">\n"
  3003. " <td height=\"20\"><strong>O</strong></td>\n"
  3004. " <td>&nbsp;Set Origin</td>\n"
  3005. " </tr>\n"
  3006. " <tr height=\"20\">\n"
  3007. " <td height=\"20\"><strong>Q</strong></td>\n"
  3008. " <td>&nbsp;Change Units</td>\n"
  3009. " </tr>\n"
  3010. " <tr height=\"20\">\n"
  3011. " <td height=\"20\"><strong>P</strong></td>\n"
  3012. " <td>&nbsp;Open Properties Tool</td>\n"
  3013. " </tr>\n"
  3014. " <tr height=\"20\">\n"
  3015. " <td height=\"20\"><strong>R</strong></td>\n"
  3016. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  3017. " </tr>\n"
  3018. " <tr height=\"20\">\n"
  3019. " <td height=\"20\"><strong>S</strong></td>\n"
  3020. " <td>&nbsp;Shell Toggle</td>\n"
  3021. " </tr>\n"
  3022. " <tr height=\"20\">\n"
  3023. " <td height=\"20\"><strong>T</strong></td>\n"
  3024. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  3025. "or in Tools NCC or Tools Paint)</td>\n"
  3026. " </tr>\n"
  3027. " <tr height=\"20\">\n"
  3028. " <td height=\"20\"><strong>V</strong></td>\n"
  3029. " <td>&nbsp;Zoom Fit</td>\n"
  3030. " </tr>\n"
  3031. " <tr height=\"20\">\n"
  3032. " <td height=\"20\"><strong>X</strong></td>\n"
  3033. " <td>&nbsp;Flip on X_axis</td>\n"
  3034. " </tr>\n"
  3035. " <tr height=\"20\">\n"
  3036. " <td height=\"20\"><strong>Y</strong></td>\n"
  3037. " <td>&nbsp;Flip on Y_axis</td>\n"
  3038. " </tr>\n"
  3039. " <tr height=\"20\">\n"
  3040. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  3041. " <td>&nbsp;Zoom Out</td>\n"
  3042. " </tr>\n"
  3043. " <tr height=\"20\">\n"
  3044. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  3045. " <td>&nbsp;Zoom In</td>\n"
  3046. " </tr>\n"
  3047. " <tr height=\"20\">\n"
  3048. " <td height=\"20\">&nbsp;</td>\n"
  3049. " <td>&nbsp;</td>\n"
  3050. " </tr>\n"
  3051. " <tr height=\"20\">\n"
  3052. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  3053. " <td>&nbsp;Select All</td>\n"
  3054. " </tr>\n"
  3055. " <tr height=\"20\">\n"
  3056. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  3057. " <td>&nbsp;Copy Obj</td>\n"
  3058. " </tr>\n"
  3059. " <tr height=\"20\">\n"
  3060. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  3061. " <td>&nbsp;Open Excellon File</td>\n"
  3062. " </tr>\n"
  3063. " <tr height=\"20\">\n"
  3064. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  3065. " <td>&nbsp;Open Gerber File</td>\n"
  3066. " </tr>\n"
  3067. " <tr height=\"20\">\n"
  3068. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  3069. " <td>&nbsp;New Project</td>\n"
  3070. " </tr>\n"
  3071. " <tr height=\"20\">\n"
  3072. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3073. " <td>&nbsp;Measurement Tool</td>\n"
  3074. " </tr>\n"
  3075. " <tr height=\"20\">\n"
  3076. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  3077. " <td>&nbsp;Open Project</td>\n"
  3078. " </tr>\n"
  3079. " <tr height=\"20\">\n"
  3080. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3081. " <td>&nbsp;Save Project As</td>\n"
  3082. " </tr>\n"
  3083. " <tr height=\"20\">\n"
  3084. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  3085. " <td>&nbsp;Toggle Plot Area</td>\n"
  3086. " </tr>\n"
  3087. " <tr height=\"20\">\n"
  3088. " <td height=\"20\">&nbsp;</td>\n"
  3089. " <td>&nbsp;</td>\n"
  3090. " </tr>\n"
  3091. " <tr height=\"20\">\n"
  3092. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  3093. " <td>&nbsp;Copy Obj_Name</td>\n"
  3094. " </tr>\n"
  3095. " <tr height=\"20\">\n"
  3096. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  3097. " <td>&nbsp;Toggle Code Editor</td>\n"
  3098. " </tr>\n"
  3099. " <tr height=\"20\">\n"
  3100. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  3101. " <td>&nbsp;Toggle the axis</td>\n"
  3102. " </tr>\n"
  3103. " <tr height=\"20\">\n"
  3104. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  3105. " <td>&nbsp;Open Preferences Window</td>\n"
  3106. " </tr>\n"
  3107. " <tr height=\"20\">\n"
  3108. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  3109. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  3110. " </tr>\n"
  3111. " <tr height=\"20\">\n"
  3112. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  3113. " <td>&nbsp;Run a Script</td>\n"
  3114. " </tr>\n"
  3115. " <tr height=\"20\">\n"
  3116. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  3117. " <td>&nbsp;Toggle the workspace</td>\n"
  3118. " </tr>\n"
  3119. " <tr height=\"20\">\n"
  3120. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3121. " <td>&nbsp;Skew on X axis</td>\n"
  3122. " </tr>\n"
  3123. " <tr height=\"20\">\n"
  3124. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3125. " <td>&nbsp;Skew on Y axis</td>\n"
  3126. " </tr>\n"
  3127. " <tr height=\"20\">\n"
  3128. " <td height=\"20\">&nbsp;</td>\n"
  3129. " <td>&nbsp;</td>\n"
  3130. " </tr>\n"
  3131. " <tr height=\"20\">\n"
  3132. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  3133. " <td>&nbsp;Calculators Tool</td>\n"
  3134. " </tr>\n"
  3135. " <tr height=\"20\">\n"
  3136. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  3137. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  3138. " </tr>\n"
  3139. " <tr height=\"20\">\n"
  3140. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  3141. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  3142. " </tr>\n"
  3143. " <tr height=\"20\">\n"
  3144. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  3145. " <td>&nbsp;Film PCB Tool</td>\n"
  3146. " </tr>\n"
  3147. " <tr height=\"20\">\n"
  3148. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  3149. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  3150. " </tr>\n"
  3151. " <tr height=\"20\">\n"
  3152. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  3153. " <td>&nbsp;Paint Area Tool</td>\n"
  3154. " </tr>\n"
  3155. " <tr height=\"20\">\n"
  3156. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3157. " <td>&nbsp;Transformations Tool</td>\n"
  3158. " </tr>\n"
  3159. " <tr height=\"20\">\n"
  3160. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  3161. " <td>&nbsp;View File Source</td>\n"
  3162. " </tr>\n"
  3163. " <tr height=\"20\">\n"
  3164. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  3165. " <td>&nbsp;Cutout PCB Tool</td>\n"
  3166. " </tr>\n"
  3167. " <tr height=\"20\">\n"
  3168. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  3169. " <td>&nbsp;Enable all Plots</td>\n"
  3170. " </tr>\n"
  3171. " <tr height=\"20\">\n"
  3172. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  3173. " <td>&nbsp;Disable all Plots</td>\n"
  3174. " </tr>\n"
  3175. " <tr height=\"20\">\n"
  3176. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  3177. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  3178. " </tr>\n"
  3179. " <tr height=\"20\">\n"
  3180. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  3181. " <td>&nbsp;Toggle Full Screen</td>\n"
  3182. " </tr>\n"
  3183. " <tr height=\"20\">\n"
  3184. " <td height=\"20\">&nbsp;</td>\n"
  3185. " <td>&nbsp;</td>\n"
  3186. " </tr>\n"
  3187. " <tr height=\"20\">\n"
  3188. " <td height=\"20\"><strong>F1</strong></td>\n"
  3189. " <td>&nbsp;Open Online Manual</td>\n"
  3190. " </tr>\n"
  3191. " <tr height=\"20\">\n"
  3192. " <td height=\"20\"><strong>F4</strong></td>\n"
  3193. " <td>&nbsp;Open Online Tutorials</td>\n"
  3194. " </tr>\n"
  3195. " <tr height=\"20\">\n"
  3196. " <td height=\"20\"><strong>Del</strong></td>\n"
  3197. " <td>&nbsp;Delete Object</td>\n"
  3198. " </tr>\n"
  3199. " <tr height=\"20\">\n"
  3200. " <td height=\"20\"><strong>Del</strong></td>\n"
  3201. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  3202. " </tr>\n"
  3203. " <tr height=\"20\">\n"
  3204. " <td height=\"20\"><strong>'`'</strong></td>\n"
  3205. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  3206. "Side)</td>\n"
  3207. " </tr>\n"
  3208. " <tr height=\"20\">\n"
  3209. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  3210. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  3211. " </tr>\n"
  3212. " <tr height=\"20\">\n"
  3213. " <td height=\"20\"><strong>Escape</strong></td>\n"
  3214. " <td>&nbsp;Deselects all objects</td>\n"
  3215. " </tr>\n"
  3216. " </tbody>\n"
  3217. " </table>\n"
  3218. " \n"
  3219. " "
  3220. msgstr ""
  3221. "<b>General Shortcut list</b><br>\n"
  3222. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3223. "\"width:283px\">\n"
  3224. " <tbody>\n"
  3225. " <tr height=\"20\">\n"
  3226. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  3227. "td>\n"
  3228. " <td width=\"194\"><span style=\"color:"
  3229. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  3230. " </tr>\n"
  3231. " <tr height=\"20\">\n"
  3232. " <td height=\"20\">&nbsp;</td>\n"
  3233. " <td>&nbsp;</td>\n"
  3234. " </tr>\n"
  3235. " <tr height=\"20\">\n"
  3236. " <td height=\"20\"><strong>1</strong></td>\n"
  3237. " <td>&nbsp;Switch to Project Tab</td>\n"
  3238. " </tr>\n"
  3239. " <tr height=\"20\">\n"
  3240. " <td height=\"20\"><strong>2</strong></td>\n"
  3241. " <td>&nbsp;Switch to Selected Tab</td>\n"
  3242. " </tr>\n"
  3243. " <tr height=\"20\">\n"
  3244. " <td height=\"20\"><strong>3</strong></td>\n"
  3245. " <td>&nbsp;Switch to Tool Tab</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>E</strong></td>\n"
  3253. " <td>&nbsp;Edit Object (if selected)</td>\n"
  3254. " </tr>\n"
  3255. " <tr height=\"20\">\n"
  3256. " <td height=\"20\"><strong>G</strong></td>\n"
  3257. " <td>&nbsp;Grid On/Off</td>\n"
  3258. " </tr>\n"
  3259. " <tr height=\"20\">\n"
  3260. " <td height=\"20\"><strong>J</strong></td>\n"
  3261. " <td>&nbsp;Jump to Coordinates</td>\n"
  3262. " </tr>\n"
  3263. " <tr height=\"20\">\n"
  3264. " <td height=\"20\"><strong>L</strong></td>\n"
  3265. " <td>&nbsp;New Excellon</td>\n"
  3266. " </tr>\n"
  3267. " <tr height=\"20\">\n"
  3268. " <td height=\"20\"><strong>M</strong></td>\n"
  3269. " <td>&nbsp;Move Obj</td>\n"
  3270. " </tr>\n"
  3271. " <tr height=\"20\">\n"
  3272. " <td height=\"20\"><strong>N</strong></td>\n"
  3273. " <td>&nbsp;New Geometry</td>\n"
  3274. " </tr>\n"
  3275. " <tr height=\"20\">\n"
  3276. " <td height=\"20\"><strong>O</strong></td>\n"
  3277. " <td>&nbsp;Set Origin</td>\n"
  3278. " </tr>\n"
  3279. " <tr height=\"20\">\n"
  3280. " <td height=\"20\"><strong>Q</strong></td>\n"
  3281. " <td>&nbsp;Change Units</td>\n"
  3282. " </tr>\n"
  3283. " <tr height=\"20\">\n"
  3284. " <td height=\"20\"><strong>P</strong></td>\n"
  3285. " <td>&nbsp;Open Properties Tool</td>\n"
  3286. " </tr>\n"
  3287. " <tr height=\"20\">\n"
  3288. " <td height=\"20\"><strong>R</strong></td>\n"
  3289. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  3290. " </tr>\n"
  3291. " <tr height=\"20\">\n"
  3292. " <td height=\"20\"><strong>S</strong></td>\n"
  3293. " <td>&nbsp;Shell Toggle</td>\n"
  3294. " </tr>\n"
  3295. " <tr height=\"20\">\n"
  3296. " <td height=\"20\"><strong>T</strong></td>\n"
  3297. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  3298. "or in Tools NCC or Tools Paint)</td>\n"
  3299. " </tr>\n"
  3300. " <tr height=\"20\">\n"
  3301. " <td height=\"20\"><strong>V</strong></td>\n"
  3302. " <td>&nbsp;Zoom Fit</td>\n"
  3303. " </tr>\n"
  3304. " <tr height=\"20\">\n"
  3305. " <td height=\"20\"><strong>X</strong></td>\n"
  3306. " <td>&nbsp;Flip on X_axis</td>\n"
  3307. " </tr>\n"
  3308. " <tr height=\"20\">\n"
  3309. " <td height=\"20\"><strong>Y</strong></td>\n"
  3310. " <td>&nbsp;Flip on Y_axis</td>\n"
  3311. " </tr>\n"
  3312. " <tr height=\"20\">\n"
  3313. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  3314. " <td>&nbsp;Zoom Out</td>\n"
  3315. " </tr>\n"
  3316. " <tr height=\"20\">\n"
  3317. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  3318. " <td>&nbsp;Zoom In</td>\n"
  3319. " </tr>\n"
  3320. " <tr height=\"20\">\n"
  3321. " <td height=\"20\">&nbsp;</td>\n"
  3322. " <td>&nbsp;</td>\n"
  3323. " </tr>\n"
  3324. " <tr height=\"20\">\n"
  3325. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  3326. " <td>&nbsp;Select All</td>\n"
  3327. " </tr>\n"
  3328. " <tr height=\"20\">\n"
  3329. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  3330. " <td>&nbsp;Copy Obj</td>\n"
  3331. " </tr>\n"
  3332. " <tr height=\"20\">\n"
  3333. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  3334. " <td>&nbsp;Open Excellon File</td>\n"
  3335. " </tr>\n"
  3336. " <tr height=\"20\">\n"
  3337. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  3338. " <td>&nbsp;Open Gerber File</td>\n"
  3339. " </tr>\n"
  3340. " <tr height=\"20\">\n"
  3341. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  3342. " <td>&nbsp;New Project</td>\n"
  3343. " </tr>\n"
  3344. " <tr height=\"20\">\n"
  3345. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3346. " <td>&nbsp;Measurement Tool</td>\n"
  3347. " </tr>\n"
  3348. " <tr height=\"20\">\n"
  3349. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  3350. " <td>&nbsp;Open Project</td>\n"
  3351. " </tr>\n"
  3352. " <tr height=\"20\">\n"
  3353. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3354. " <td>&nbsp;Save Project As</td>\n"
  3355. " </tr>\n"
  3356. " <tr height=\"20\">\n"
  3357. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  3358. " <td>&nbsp;Toggle Plot Area</td>\n"
  3359. " </tr>\n"
  3360. " <tr height=\"20\">\n"
  3361. " <td height=\"20\">&nbsp;</td>\n"
  3362. " <td>&nbsp;</td>\n"
  3363. " </tr>\n"
  3364. " <tr height=\"20\">\n"
  3365. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  3366. " <td>&nbsp;Copy Obj_Name</td>\n"
  3367. " </tr>\n"
  3368. " <tr height=\"20\">\n"
  3369. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  3370. " <td>&nbsp;Toggle Code Editor</td>\n"
  3371. " </tr>\n"
  3372. " <tr height=\"20\">\n"
  3373. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  3374. " <td>&nbsp;Toggle the axis</td>\n"
  3375. " </tr>\n"
  3376. " <tr height=\"20\">\n"
  3377. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  3378. " <td>&nbsp;Open Preferences Window</td>\n"
  3379. " </tr>\n"
  3380. " <tr height=\"20\">\n"
  3381. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  3382. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  3383. " </tr>\n"
  3384. " <tr height=\"20\">\n"
  3385. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  3386. " <td>&nbsp;Run a Script</td>\n"
  3387. " </tr>\n"
  3388. " <tr height=\"20\">\n"
  3389. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  3390. " <td>&nbsp;Toggle the workspace</td>\n"
  3391. " </tr>\n"
  3392. " <tr height=\"20\">\n"
  3393. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3394. " <td>&nbsp;Skew on X axis</td>\n"
  3395. " </tr>\n"
  3396. " <tr height=\"20\">\n"
  3397. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3398. " <td>&nbsp;Skew on Y axis</td>\n"
  3399. " </tr>\n"
  3400. " <tr height=\"20\">\n"
  3401. " <td height=\"20\">&nbsp;</td>\n"
  3402. " <td>&nbsp;</td>\n"
  3403. " </tr>\n"
  3404. " <tr height=\"20\">\n"
  3405. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  3406. " <td>&nbsp;Calculators Tool</td>\n"
  3407. " </tr>\n"
  3408. " <tr height=\"20\">\n"
  3409. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  3410. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  3411. " </tr>\n"
  3412. " <tr height=\"20\">\n"
  3413. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  3414. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  3415. " </tr>\n"
  3416. " <tr height=\"20\">\n"
  3417. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  3418. " <td>&nbsp;Film PCB Tool</td>\n"
  3419. " </tr>\n"
  3420. " <tr height=\"20\">\n"
  3421. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  3422. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  3423. " </tr>\n"
  3424. " <tr height=\"20\">\n"
  3425. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  3426. " <td>&nbsp;Paint Area Tool</td>\n"
  3427. " </tr>\n"
  3428. " <tr height=\"20\">\n"
  3429. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3430. " <td>&nbsp;Transformations Tool</td>\n"
  3431. " </tr>\n"
  3432. " <tr height=\"20\">\n"
  3433. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  3434. " <td>&nbsp;View File Source</td>\n"
  3435. " </tr>\n"
  3436. " <tr height=\"20\">\n"
  3437. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  3438. " <td>&nbsp;Cutout PCB Tool</td>\n"
  3439. " </tr>\n"
  3440. " <tr height=\"20\">\n"
  3441. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  3442. " <td>&nbsp;Enable all Plots</td>\n"
  3443. " </tr>\n"
  3444. " <tr height=\"20\">\n"
  3445. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  3446. " <td>&nbsp;Disable all Plots</td>\n"
  3447. " </tr>\n"
  3448. " <tr height=\"20\">\n"
  3449. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  3450. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  3451. " </tr>\n"
  3452. " <tr height=\"20\">\n"
  3453. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  3454. " <td>&nbsp;Toggle Full Screen</td>\n"
  3455. " </tr>\n"
  3456. " <tr height=\"20\">\n"
  3457. " <td height=\"20\">&nbsp;</td>\n"
  3458. " <td>&nbsp;</td>\n"
  3459. " </tr>\n"
  3460. " <tr height=\"20\">\n"
  3461. " <td height=\"20\"><strong>F1</strong></td>\n"
  3462. " <td>&nbsp;Open Online Manual</td>\n"
  3463. " </tr>\n"
  3464. " <tr height=\"20\">\n"
  3465. " <td height=\"20\"><strong>F4</strong></td>\n"
  3466. " <td>&nbsp;Open Online Tutorials</td>\n"
  3467. " </tr>\n"
  3468. " <tr height=\"20\">\n"
  3469. " <td height=\"20\"><strong>Del</strong></td>\n"
  3470. " <td>&nbsp;Delete Object</td>\n"
  3471. " </tr>\n"
  3472. " <tr height=\"20\">\n"
  3473. " <td height=\"20\"><strong>Del</strong></td>\n"
  3474. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  3475. " </tr>\n"
  3476. " <tr height=\"20\">\n"
  3477. " <td height=\"20\"><strong>'`'</strong></td>\n"
  3478. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  3479. "Side)</td>\n"
  3480. " </tr>\n"
  3481. " <tr height=\"20\">\n"
  3482. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  3483. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  3484. " </tr>\n"
  3485. " <tr height=\"20\">\n"
  3486. " <td height=\"20\"><strong>Escape</strong></td>\n"
  3487. " <td>&nbsp;Deselects all objects</td>\n"
  3488. " </tr>\n"
  3489. " </tbody>\n"
  3490. " </table>\n"
  3491. " \n"
  3492. " "
  3493. #: flatcamGUI/FlatCAMGUI.py:1155
  3494. msgid ""
  3495. "<b>Editor Shortcut list</b><br>\n"
  3496. " <br>\n"
  3497. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  3498. "strong><br>\n"
  3499. " \n"
  3500. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3501. "\"width:283px\">\n"
  3502. " <tbody>\n"
  3503. " <tr height=\"20\">\n"
  3504. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3505. "td>\n"
  3506. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  3507. " </tr>\n"
  3508. " <tr height=\"20\">\n"
  3509. " <td height=\"20\"><strong>B</strong></td>\n"
  3510. " <td>&nbsp;Buffer Tool</td>\n"
  3511. " </tr>\n"
  3512. " <tr height=\"20\">\n"
  3513. " <td height=\"20\"><strong>C</strong></td>\n"
  3514. " <td>&nbsp;Copy Geo Item</td>\n"
  3515. " </tr>\n"
  3516. " <tr height=\"20\">\n"
  3517. " <td height=\"20\"><strong>E</strong></td>\n"
  3518. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  3519. " </tr>\n"
  3520. " <tr height=\"20\">\n"
  3521. " <td height=\"20\"><strong>I</strong></td>\n"
  3522. " <td>&nbsp;Paint Tool</td>\n"
  3523. " </tr>\n"
  3524. " <tr height=\"20\">\n"
  3525. " <td height=\"20\"><strong>J</strong></td>\n"
  3526. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3527. " </tr>\n"
  3528. " <tr height=\"20\">\n"
  3529. " <td height=\"20\"><strong>K</strong></td>\n"
  3530. " <td>&nbsp;Toggle Corner Snap</td>\n"
  3531. " </tr>\n"
  3532. " <tr height=\"20\">\n"
  3533. " <td height=\"20\"><strong>M</strong></td>\n"
  3534. " <td>&nbsp;Move Geo Item</td>\n"
  3535. " </tr>\n"
  3536. " <tr height=\"20\">\n"
  3537. " <td height=\"20\"><strong>N</strong></td>\n"
  3538. " <td>&nbsp;Draw a Polygon</td>\n"
  3539. " </tr>\n"
  3540. " <tr height=\"20\">\n"
  3541. " <td height=\"20\"><strong>O</strong></td>\n"
  3542. " <td>&nbsp;Draw a Circle</td>\n"
  3543. " </tr>\n"
  3544. " <tr height=\"20\">\n"
  3545. " <td height=\"20\"><strong>P</strong></td>\n"
  3546. " <td>&nbsp;Draw a Path</td>\n"
  3547. " </tr>\n"
  3548. " <tr height=\"20\">\n"
  3549. " <td height=\"20\"><strong>R</strong></td>\n"
  3550. " <td>&nbsp;Draw Rectangle</td>\n"
  3551. " </tr>\n"
  3552. " <tr height=\"20\">\n"
  3553. " <td height=\"20\"><strong>S</strong></td>\n"
  3554. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  3555. " </tr>\n"
  3556. " <tr height=\"20\">\n"
  3557. " <td height=\"20\"><strong>T</strong></td>\n"
  3558. " <td>&nbsp;Add Text Tool</td>\n"
  3559. " </tr>\n"
  3560. " <tr height=\"20\">\n"
  3561. " <td height=\"20\"><strong>U</strong></td>\n"
  3562. " <td>&nbsp;Polygon Union Tool</td>\n"
  3563. " </tr>\n"
  3564. " <tr height=\"20\">\n"
  3565. " <td height=\"20\"><strong>X</strong></td>\n"
  3566. " <td>&nbsp;Flip shape on X axis</td>\n"
  3567. " </tr>\n"
  3568. " <tr height=\"20\">\n"
  3569. " <td height=\"20\"><strong>Y</strong></td>\n"
  3570. " <td>&nbsp;Flip shape on Y axis</td>\n"
  3571. " </tr>\n"
  3572. " <tr height=\"20\">\n"
  3573. " <td height=\"20\">&nbsp;</td>\n"
  3574. " <td>&nbsp;</td>\n"
  3575. " </tr>\n"
  3576. " <tr height=\"20\">\n"
  3577. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3578. " <td>&nbsp;Skew shape on X axis</td>\n"
  3579. " </tr>\n"
  3580. " <tr height=\"20\">\n"
  3581. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3582. " <td>&nbsp;Skew shape on Y axis</td>\n"
  3583. " </tr>\n"
  3584. " <tr height=\"20\">\n"
  3585. " <td height=\"20\">&nbsp;</td>\n"
  3586. " <td>&nbsp;</td>\n"
  3587. " </tr>\n"
  3588. " <tr height=\"20\">\n"
  3589. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3590. " <td>&nbsp;Editor Transformation Tool</td>\n"
  3591. " </tr>\n"
  3592. " <tr height=\"20\">\n"
  3593. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  3594. " <td>&nbsp;Offset shape on X axis</td>\n"
  3595. " </tr>\n"
  3596. " <tr height=\"20\">\n"
  3597. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  3598. " <td>&nbsp;Offset shape on Y axis</td>\n"
  3599. " </tr>\n"
  3600. " <tr height=\"20\">\n"
  3601. " <td height=\"20\">&nbsp;</td>\n"
  3602. " <td>&nbsp;</td>\n"
  3603. " </tr>\n"
  3604. " <tr height=\"20\">\n"
  3605. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3606. " <td>&nbsp;Measurement Tool</td>\n"
  3607. " </tr>\n"
  3608. " <tr height=\"20\">\n"
  3609. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3610. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3611. " </tr>\n"
  3612. " <tr height=\"20\">\n"
  3613. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  3614. " <td>&nbsp;Polygon Cut Tool</td>\n"
  3615. " </tr>\n"
  3616. " <tr height=\"20\">\n"
  3617. " <td height=\"20\">&nbsp;</td>\n"
  3618. " <td>&nbsp;</td>\n"
  3619. " </tr>\n"
  3620. " <tr height=\"20\">\n"
  3621. " <td height=\"20\"><strong>Space</strong></td>\n"
  3622. " <td>&nbsp;Rotate Geometry</td>\n"
  3623. " </tr>\n"
  3624. " <tr height=\"20\">\n"
  3625. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  3626. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  3627. " </tr>\n"
  3628. " <tr height=\"20\">\n"
  3629. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3630. " <td>&nbsp;Abort and return to Select</td>\n"
  3631. " </tr>\n"
  3632. " <tr height=\"20\">\n"
  3633. " <td height=\"20\"><strong>Del</strong></td>\n"
  3634. " <td>&nbsp;Delete Shape</td>\n"
  3635. " </tr>\n"
  3636. " </tbody>\n"
  3637. " </table>\n"
  3638. " <br>\n"
  3639. " <br>\n"
  3640. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  3641. "strong><br>\n"
  3642. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3643. "\"width:283px\">\n"
  3644. " <tbody>\n"
  3645. " <tr height=\"20\">\n"
  3646. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3647. "td>\n"
  3648. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  3649. " </tr>\n"
  3650. " <tr height=\"20\">\n"
  3651. " <td height=\"20\"><strong>C</strong></td>\n"
  3652. " <td>&nbsp;Copy Drill(s)</td>\n"
  3653. " </tr>\n"
  3654. " <tr height=\"20\">\n"
  3655. " <td height=\"20\"><strong>D</strong></td>\n"
  3656. " <td>&nbsp;Add Drill</td>\n"
  3657. " </tr>\n"
  3658. " <tr height=\"20\">\n"
  3659. " <td height=\"20\"><strong>J</strong></td>\n"
  3660. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3661. " </tr>\n"
  3662. " <tr height=\"20\">\n"
  3663. " <td height=\"20\"><strong>M</strong></td>\n"
  3664. " <td>&nbsp;Move Drill(s)</td>\n"
  3665. " </tr>\n"
  3666. " <tr height=\"20\">\n"
  3667. " <td height=\"20\"><strong>R</strong></td>\n"
  3668. " <td>&nbsp;Resize Drill(s)</td>\n"
  3669. " </tr>\n"
  3670. " <tr height=\"20\">\n"
  3671. " <td height=\"20\"><strong>T</strong></td>\n"
  3672. " <td>&nbsp;Add a new Tool</td>\n"
  3673. " </tr>\n"
  3674. " <tr height=\"20\">\n"
  3675. " <td height=\"20\">&nbsp;</td>\n"
  3676. " <td>&nbsp;</td>\n"
  3677. " </tr>\n"
  3678. " <tr height=\"20\">\n"
  3679. " <td height=\"20\"><strong>Del</strong></td>\n"
  3680. " <td>&nbsp;Delete Drill(s)</td>\n"
  3681. " </tr>\n"
  3682. " <tr height=\"20\">\n"
  3683. " <td height=\"20\"><strong>Del</strong></td>\n"
  3684. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  3685. " </tr>\n"
  3686. " <tr height=\"20\">\n"
  3687. " <td height=\"20\">&nbsp;</td>\n"
  3688. " <td>&nbsp;</td>\n"
  3689. " </tr>\n"
  3690. " <tr height=\"20\">\n"
  3691. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3692. " <td>&nbsp;Abort and return to Select</td>\n"
  3693. " </tr>\n"
  3694. " <tr height=\"20\">\n"
  3695. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3696. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3697. " </tr>\n"
  3698. " </tbody>\n"
  3699. " </table>\n"
  3700. " "
  3701. msgstr ""
  3702. "<b>Editor Shortcut list</b><br>\n"
  3703. " <br>\n"
  3704. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  3705. "strong><br>\n"
  3706. " \n"
  3707. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3708. "\"width:283px\">\n"
  3709. " <tbody>\n"
  3710. " <tr height=\"20\">\n"
  3711. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3712. "td>\n"
  3713. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  3714. " </tr>\n"
  3715. " <tr height=\"20\">\n"
  3716. " <td height=\"20\"><strong>B</strong></td>\n"
  3717. " <td>&nbsp;Buffer Tool</td>\n"
  3718. " </tr>\n"
  3719. " <tr height=\"20\">\n"
  3720. " <td height=\"20\"><strong>C</strong></td>\n"
  3721. " <td>&nbsp;Copy Geo Item</td>\n"
  3722. " </tr>\n"
  3723. " <tr height=\"20\">\n"
  3724. " <td height=\"20\"><strong>E</strong></td>\n"
  3725. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  3726. " </tr>\n"
  3727. " <tr height=\"20\">\n"
  3728. " <td height=\"20\"><strong>I</strong></td>\n"
  3729. " <td>&nbsp;Paint Tool</td>\n"
  3730. " </tr>\n"
  3731. " <tr height=\"20\">\n"
  3732. " <td height=\"20\"><strong>J</strong></td>\n"
  3733. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3734. " </tr>\n"
  3735. " <tr height=\"20\">\n"
  3736. " <td height=\"20\"><strong>K</strong></td>\n"
  3737. " <td>&nbsp;Toggle Corner Snap</td>\n"
  3738. " </tr>\n"
  3739. " <tr height=\"20\">\n"
  3740. " <td height=\"20\"><strong>M</strong></td>\n"
  3741. " <td>&nbsp;Move Geo Item</td>\n"
  3742. " </tr>\n"
  3743. " <tr height=\"20\">\n"
  3744. " <td height=\"20\"><strong>N</strong></td>\n"
  3745. " <td>&nbsp;Draw a Polygon</td>\n"
  3746. " </tr>\n"
  3747. " <tr height=\"20\">\n"
  3748. " <td height=\"20\"><strong>O</strong></td>\n"
  3749. " <td>&nbsp;Draw a Circle</td>\n"
  3750. " </tr>\n"
  3751. " <tr height=\"20\">\n"
  3752. " <td height=\"20\"><strong>P</strong></td>\n"
  3753. " <td>&nbsp;Draw a Path</td>\n"
  3754. " </tr>\n"
  3755. " <tr height=\"20\">\n"
  3756. " <td height=\"20\"><strong>R</strong></td>\n"
  3757. " <td>&nbsp;Draw Rectangle</td>\n"
  3758. " </tr>\n"
  3759. " <tr height=\"20\">\n"
  3760. " <td height=\"20\"><strong>S</strong></td>\n"
  3761. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  3762. " </tr>\n"
  3763. " <tr height=\"20\">\n"
  3764. " <td height=\"20\"><strong>T</strong></td>\n"
  3765. " <td>&nbsp;Add Text Tool</td>\n"
  3766. " </tr>\n"
  3767. " <tr height=\"20\">\n"
  3768. " <td height=\"20\"><strong>U</strong></td>\n"
  3769. " <td>&nbsp;Polygon Union Tool</td>\n"
  3770. " </tr>\n"
  3771. " <tr height=\"20\">\n"
  3772. " <td height=\"20\"><strong>X</strong></td>\n"
  3773. " <td>&nbsp;Flip shape on X axis</td>\n"
  3774. " </tr>\n"
  3775. " <tr height=\"20\">\n"
  3776. " <td height=\"20\"><strong>Y</strong></td>\n"
  3777. " <td>&nbsp;Flip shape on Y axis</td>\n"
  3778. " </tr>\n"
  3779. " <tr height=\"20\">\n"
  3780. " <td height=\"20\">&nbsp;</td>\n"
  3781. " <td>&nbsp;</td>\n"
  3782. " </tr>\n"
  3783. " <tr height=\"20\">\n"
  3784. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3785. " <td>&nbsp;Skew shape on X axis</td>\n"
  3786. " </tr>\n"
  3787. " <tr height=\"20\">\n"
  3788. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3789. " <td>&nbsp;Skew shape on Y axis</td>\n"
  3790. " </tr>\n"
  3791. " <tr height=\"20\">\n"
  3792. " <td height=\"20\">&nbsp;</td>\n"
  3793. " <td>&nbsp;</td>\n"
  3794. " </tr>\n"
  3795. " <tr height=\"20\">\n"
  3796. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3797. " <td>&nbsp;Editor Transformation Tool</td>\n"
  3798. " </tr>\n"
  3799. " <tr height=\"20\">\n"
  3800. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  3801. " <td>&nbsp;Offset shape on X axis</td>\n"
  3802. " </tr>\n"
  3803. " <tr height=\"20\">\n"
  3804. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  3805. " <td>&nbsp;Offset shape on Y axis</td>\n"
  3806. " </tr>\n"
  3807. " <tr height=\"20\">\n"
  3808. " <td height=\"20\">&nbsp;</td>\n"
  3809. " <td>&nbsp;</td>\n"
  3810. " </tr>\n"
  3811. " <tr height=\"20\">\n"
  3812. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3813. " <td>&nbsp;Measurement Tool</td>\n"
  3814. " </tr>\n"
  3815. " <tr height=\"20\">\n"
  3816. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3817. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3818. " </tr>\n"
  3819. " <tr height=\"20\">\n"
  3820. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  3821. " <td>&nbsp;Polygon Cut Tool</td>\n"
  3822. " </tr>\n"
  3823. " <tr height=\"20\">\n"
  3824. " <td height=\"20\">&nbsp;</td>\n"
  3825. " <td>&nbsp;</td>\n"
  3826. " </tr>\n"
  3827. " <tr height=\"20\">\n"
  3828. " <td height=\"20\"><strong>Space</strong></td>\n"
  3829. " <td>&nbsp;Rotate Geometry</td>\n"
  3830. " </tr>\n"
  3831. " <tr height=\"20\">\n"
  3832. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  3833. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  3834. " </tr>\n"
  3835. " <tr height=\"20\">\n"
  3836. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3837. " <td>&nbsp;Abort and return to Select</td>\n"
  3838. " </tr>\n"
  3839. " <tr height=\"20\">\n"
  3840. " <td height=\"20\"><strong>Del</strong></td>\n"
  3841. " <td>&nbsp;Delete Shape</td>\n"
  3842. " </tr>\n"
  3843. " </tbody>\n"
  3844. " </table>\n"
  3845. " <br>\n"
  3846. " <br>\n"
  3847. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  3848. "strong><br>\n"
  3849. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3850. "\"width:283px\">\n"
  3851. " <tbody>\n"
  3852. " <tr height=\"20\">\n"
  3853. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3854. "td>\n"
  3855. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  3856. " </tr>\n"
  3857. " <tr height=\"20\">\n"
  3858. " <td height=\"20\"><strong>C</strong></td>\n"
  3859. " <td>&nbsp;Copy Drill(s)</td>\n"
  3860. " </tr>\n"
  3861. " <tr height=\"20\">\n"
  3862. " <td height=\"20\"><strong>D</strong></td>\n"
  3863. " <td>&nbsp;Add Drill</td>\n"
  3864. " </tr>\n"
  3865. " <tr height=\"20\">\n"
  3866. " <td height=\"20\"><strong>J</strong></td>\n"
  3867. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3868. " </tr>\n"
  3869. " <tr height=\"20\">\n"
  3870. " <td height=\"20\"><strong>M</strong></td>\n"
  3871. " <td>&nbsp;Move Drill(s)</td>\n"
  3872. " </tr>\n"
  3873. " <tr height=\"20\">\n"
  3874. " <td height=\"20\"><strong>R</strong></td>\n"
  3875. " <td>&nbsp;Resize Drill(s)</td>\n"
  3876. " </tr>\n"
  3877. " <tr height=\"20\">\n"
  3878. " <td height=\"20\"><strong>T</strong></td>\n"
  3879. " <td>&nbsp;Add a new Tool</td>\n"
  3880. " </tr>\n"
  3881. " <tr height=\"20\">\n"
  3882. " <td height=\"20\">&nbsp;</td>\n"
  3883. " <td>&nbsp;</td>\n"
  3884. " </tr>\n"
  3885. " <tr height=\"20\">\n"
  3886. " <td height=\"20\"><strong>Del</strong></td>\n"
  3887. " <td>&nbsp;Delete Drill(s)</td>\n"
  3888. " </tr>\n"
  3889. " <tr height=\"20\">\n"
  3890. " <td height=\"20\"><strong>Del</strong></td>\n"
  3891. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  3892. " </tr>\n"
  3893. " <tr height=\"20\">\n"
  3894. " <td height=\"20\">&nbsp;</td>\n"
  3895. " <td>&nbsp;</td>\n"
  3896. " </tr>\n"
  3897. " <tr height=\"20\">\n"
  3898. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3899. " <td>&nbsp;Abort and return to Select</td>\n"
  3900. " </tr>\n"
  3901. " <tr height=\"20\">\n"
  3902. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3903. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3904. " </tr>\n"
  3905. " </tbody>\n"
  3906. " </table>\n"
  3907. " "
  3908. #: flatcamGUI/FlatCAMGUI.py:1368
  3909. msgid "Disable"
  3910. msgstr "Disable"
  3911. #: flatcamGUI/FlatCAMGUI.py:1370
  3912. msgid "New"
  3913. msgstr "New"
  3914. #: flatcamGUI/FlatCAMGUI.py:1371
  3915. msgid "Geometry"
  3916. msgstr "Geometry"
  3917. #: flatcamGUI/FlatCAMGUI.py:1372
  3918. msgid "Excellon"
  3919. msgstr "Excellon"
  3920. #: flatcamGUI/FlatCAMGUI.py:1377
  3921. msgid "Grids"
  3922. msgstr "Grids"
  3923. #: flatcamGUI/FlatCAMGUI.py:1379
  3924. msgid "View"
  3925. msgstr "View"
  3926. #: flatcamGUI/FlatCAMGUI.py:1381
  3927. msgid "Clear Plot"
  3928. msgstr "Clear Plot"
  3929. #: flatcamGUI/FlatCAMGUI.py:1382
  3930. msgid "Replot"
  3931. msgstr "Replot"
  3932. #: flatcamGUI/FlatCAMGUI.py:1385
  3933. msgid "Geo Editor"
  3934. msgstr "Geo Editor"
  3935. #: flatcamGUI/FlatCAMGUI.py:1386
  3936. msgid "Line"
  3937. msgstr "Line"
  3938. #: flatcamGUI/FlatCAMGUI.py:1387
  3939. msgid "Rectangle"
  3940. msgstr "Rectangle"
  3941. #: flatcamGUI/FlatCAMGUI.py:1388 flatcamGUI/FlatCAMGUI.py:4607
  3942. #: flatcamGUI/ObjectUI.py:1431
  3943. msgid "Cut"
  3944. msgstr "Cut"
  3945. #: flatcamGUI/FlatCAMGUI.py:1390 flatcamGUI/FlatCAMGUI.py:1405
  3946. #: flatcamTools/ToolMove.py:26
  3947. msgid "Move"
  3948. msgstr "Move"
  3949. #: flatcamGUI/FlatCAMGUI.py:1392
  3950. msgid "Exc Editor"
  3951. msgstr "Exc Editor"
  3952. #: flatcamGUI/FlatCAMGUI.py:1393
  3953. msgid "Add Drill"
  3954. msgstr "Add Drill"
  3955. #: flatcamGUI/FlatCAMGUI.py:1395
  3956. msgid "Copy Drill(s)"
  3957. msgstr "Copy Drill(s)"
  3958. #: flatcamGUI/FlatCAMGUI.py:1401
  3959. msgid "Save && Close Edit"
  3960. msgstr "Save && Close Edit"
  3961. #: flatcamGUI/FlatCAMGUI.py:1426
  3962. msgid "Print Preview"
  3963. msgstr "Print Preview"
  3964. #: flatcamGUI/FlatCAMGUI.py:1427
  3965. msgid "Print Code"
  3966. msgstr "Print Code"
  3967. #: flatcamGUI/FlatCAMGUI.py:1428
  3968. msgid "Find in Code"
  3969. msgstr "Find in Code"
  3970. #: flatcamGUI/FlatCAMGUI.py:1433
  3971. msgid "Replace With"
  3972. msgstr "Replace With"
  3973. #: flatcamGUI/FlatCAMGUI.py:1437 flatcamGUI/FlatCAMGUI.py:4605
  3974. #: flatcamGUI/FlatCAMGUI.py:5106 flatcamGUI/ObjectUI.py:1429
  3975. msgid "All"
  3976. msgstr "All"
  3977. #: flatcamGUI/FlatCAMGUI.py:1439
  3978. msgid ""
  3979. "When checked it will replace all instances in the 'Find' box\n"
  3980. "with the text in the 'Replace' box.."
  3981. msgstr ""
  3982. "When checked it will replace all instances in the 'Find' box\n"
  3983. "with the text in the 'Replace' box.."
  3984. #: flatcamGUI/FlatCAMGUI.py:1442
  3985. msgid "Open Code"
  3986. msgstr "Open Code"
  3987. #: flatcamGUI/FlatCAMGUI.py:1443
  3988. msgid "Save Code"
  3989. msgstr "Save Code"
  3990. #: flatcamGUI/FlatCAMGUI.py:1478
  3991. msgid ""
  3992. "Relative neasurement.\n"
  3993. "Reference is last click position"
  3994. msgstr ""
  3995. "Relative neasurement.\n"
  3996. "Reference is last click position"
  3997. #: flatcamGUI/FlatCAMGUI.py:1484
  3998. msgid ""
  3999. "Absolute neasurement.\n"
  4000. "Reference is (X=0, Y= 0) position"
  4001. msgstr ""
  4002. "Absolute neasurement.\n"
  4003. "Reference is (X=0, Y= 0) position"
  4004. #: flatcamGUI/FlatCAMGUI.py:1651
  4005. msgid "Add Drill Hole Array"
  4006. msgstr "Add Drill Hole Array"
  4007. #: flatcamGUI/FlatCAMGUI.py:1663
  4008. msgid "Select 'Esc'"
  4009. msgstr "Select 'Esc'"
  4010. #: flatcamGUI/FlatCAMGUI.py:1688
  4011. msgid "Copy Objects"
  4012. msgstr "Copy Objects"
  4013. #: flatcamGUI/FlatCAMGUI.py:1690
  4014. msgid "Delete Shape"
  4015. msgstr "Delete Shape"
  4016. #: flatcamGUI/FlatCAMGUI.py:1695
  4017. msgid "Move Objects"
  4018. msgstr "Move Objects"
  4019. #: flatcamGUI/FlatCAMGUI.py:2077
  4020. msgid ""
  4021. "Please first select a geometry item to be cutted\n"
  4022. "then select the geometry item that will be cutted\n"
  4023. "out of the first item. In the end press ~X~ key or\n"
  4024. "the toolbar button."
  4025. msgstr ""
  4026. "Please first select a geometry item to be cutted\n"
  4027. "then select the geometry item that will be cutted\n"
  4028. "out of the first item. In the end press ~X~ key or\n"
  4029. "the toolbar button."
  4030. #: flatcamGUI/FlatCAMGUI.py:2084 flatcamGUI/FlatCAMGUI.py:2216
  4031. #: flatcamGUI/FlatCAMGUI.py:2275 flatcamGUI/FlatCAMGUI.py:2295
  4032. msgid "Warning"
  4033. msgstr "Warning"
  4034. #: flatcamGUI/FlatCAMGUI.py:2151 flatcamGUI/FlatCAMGUI.py:2345
  4035. msgid "[WARNING_NOTCL]Cancelled."
  4036. msgstr "[WARNING_NOTCL]Cancelled."
  4037. #: flatcamGUI/FlatCAMGUI.py:2211
  4038. msgid ""
  4039. "Please select geometry items \n"
  4040. "on which to perform Intersection Tool."
  4041. msgstr ""
  4042. "Please select geometry items \n"
  4043. "on which to perform Intersection Tool."
  4044. #: flatcamGUI/FlatCAMGUI.py:2270
  4045. msgid ""
  4046. "Please select geometry items \n"
  4047. "on which to perform Substraction Tool."
  4048. msgstr ""
  4049. "Please select geometry items \n"
  4050. "on which to perform Substraction Tool."
  4051. #: flatcamGUI/FlatCAMGUI.py:2290
  4052. msgid ""
  4053. "Please select geometry items \n"
  4054. "on which to perform union."
  4055. msgstr ""
  4056. "Please select geometry items \n"
  4057. "on which to perform union."
  4058. #: flatcamGUI/FlatCAMGUI.py:2362
  4059. msgid "[WARNING_NOTCL]Cancelled. Nothing selected to delete."
  4060. msgstr "[WARNING_NOTCL]Cancelled. Nothing selected to delete."
  4061. #: flatcamGUI/FlatCAMGUI.py:2429
  4062. msgid "[WARNING_NOTCL]Cancelled. Nothing selected to copy."
  4063. msgstr "[WARNING_NOTCL]Cancelled. Nothing selected to copy."
  4064. #: flatcamGUI/FlatCAMGUI.py:2475
  4065. msgid "[WARNING_NOTCL]Cancelled. Nothing selected to move."
  4066. msgstr "[WARNING_NOTCL]Cancelled. Nothing selected to move."
  4067. #: flatcamGUI/FlatCAMGUI.py:2489
  4068. msgid "New Tool ..."
  4069. msgstr "New Tool ..."
  4070. #: flatcamGUI/FlatCAMGUI.py:2490
  4071. msgid "Enter a Tool Diameter:"
  4072. msgstr "Enter a Tool Diameter:"
  4073. #: flatcamGUI/FlatCAMGUI.py:2789
  4074. msgid "Grid X value:"
  4075. msgstr "Grid X value:"
  4076. #: flatcamGUI/FlatCAMGUI.py:2791
  4077. msgid "This is the Grid snap value on X axis."
  4078. msgstr "This is the Grid snap value on X axis."
  4079. #: flatcamGUI/FlatCAMGUI.py:2796
  4080. msgid "Grid Y value:"
  4081. msgstr "Grid Y value:"
  4082. #: flatcamGUI/FlatCAMGUI.py:2798
  4083. msgid "This is the Grid snap value on Y axis."
  4084. msgstr "This is the Grid snap value on Y axis."
  4085. #: flatcamGUI/FlatCAMGUI.py:2803
  4086. msgid "Snap Max:"
  4087. msgstr "Snap Max:"
  4088. #: flatcamGUI/FlatCAMGUI.py:2808
  4089. msgid "Workspace:"
  4090. msgstr "Workspace:"
  4091. #: flatcamGUI/FlatCAMGUI.py:2810
  4092. msgid ""
  4093. "Draw a delimiting rectangle on canvas.\n"
  4094. "The purpose is to illustrate the limits for our work."
  4095. msgstr ""
  4096. "Draw a delimiting rectangle on canvas.\n"
  4097. "The purpose is to illustrate the limits for our work."
  4098. #: flatcamGUI/FlatCAMGUI.py:2813
  4099. msgid "Wk. format:"
  4100. msgstr "Wk. format:"
  4101. #: flatcamGUI/FlatCAMGUI.py:2815
  4102. msgid ""
  4103. "Select the type of rectangle to be used on canvas,\n"
  4104. "as valid workspace."
  4105. msgstr ""
  4106. "Select the type of rectangle to be used on canvas,\n"
  4107. "as valid workspace."
  4108. #: flatcamGUI/FlatCAMGUI.py:2828
  4109. msgid "Plot Fill:"
  4110. msgstr "Plot Fill:"
  4111. #: flatcamGUI/FlatCAMGUI.py:2830
  4112. msgid ""
  4113. "Set the fill color for plotted objects.\n"
  4114. "First 6 digits are the color and the last 2\n"
  4115. "digits are for alpha (transparency) level."
  4116. msgstr ""
  4117. "Set the fill color for plotted objects.\n"
  4118. "First 6 digits are the color and the last 2\n"
  4119. "digits are for alpha (transparency) level."
  4120. #: flatcamGUI/FlatCAMGUI.py:2844 flatcamGUI/FlatCAMGUI.py:2894
  4121. #: flatcamGUI/FlatCAMGUI.py:2944
  4122. msgid "Alpha Level:"
  4123. msgstr "Alpha Level:"
  4124. #: flatcamGUI/FlatCAMGUI.py:2846
  4125. msgid "Set the fill transparency for plotted objects."
  4126. msgstr "Set the fill transparency for plotted objects."
  4127. #: flatcamGUI/FlatCAMGUI.py:2863
  4128. msgid "Plot Line:"
  4129. msgstr "Plot Line:"
  4130. #: flatcamGUI/FlatCAMGUI.py:2865
  4131. msgid "Set the line color for plotted objects."
  4132. msgstr "Set the line color for plotted objects."
  4133. #: flatcamGUI/FlatCAMGUI.py:2877
  4134. msgid "Sel. Fill:"
  4135. msgstr "Sel. Fill:"
  4136. #: flatcamGUI/FlatCAMGUI.py:2879
  4137. msgid ""
  4138. "Set the fill color for the selection box\n"
  4139. "in case that the selection is done from left to right.\n"
  4140. "First 6 digits are the color and the last 2\n"
  4141. "digits are for alpha (transparency) level."
  4142. msgstr ""
  4143. "Set the fill color for the selection box\n"
  4144. "in case that the selection is done from left to right.\n"
  4145. "First 6 digits are the color and the last 2\n"
  4146. "digits are for alpha (transparency) level."
  4147. #: flatcamGUI/FlatCAMGUI.py:2896
  4148. msgid "Set the fill transparency for the 'left to right' selection box."
  4149. msgstr "Set the fill transparency for the 'left to right' selection box."
  4150. #: flatcamGUI/FlatCAMGUI.py:2913
  4151. msgid "Sel. Line:"
  4152. msgstr "Sel. Line:"
  4153. #: flatcamGUI/FlatCAMGUI.py:2915
  4154. msgid "Set the line color for the 'left to right' selection box."
  4155. msgstr "Set the line color for the 'left to right' selection box."
  4156. #: flatcamGUI/FlatCAMGUI.py:2927
  4157. msgid "Sel2. Fill:"
  4158. msgstr "Sel2. Fill:"
  4159. #: flatcamGUI/FlatCAMGUI.py:2929
  4160. msgid ""
  4161. "Set the fill color for the selection box\n"
  4162. "in case that the selection is done from right to left.\n"
  4163. "First 6 digits are the color and the last 2\n"
  4164. "digits are for alpha (transparency) level."
  4165. msgstr ""
  4166. "Set the fill color for the selection box\n"
  4167. "in case that the selection is done from right to left.\n"
  4168. "First 6 digits are the color and the last 2\n"
  4169. "digits are for alpha (transparency) level."
  4170. #: flatcamGUI/FlatCAMGUI.py:2946
  4171. msgid "Set the fill transparency for selection 'right to left' box."
  4172. msgstr "Set the fill transparency for selection 'right to left' box."
  4173. #: flatcamGUI/FlatCAMGUI.py:2963
  4174. msgid "Sel2. Line:"
  4175. msgstr "Sel2. Line:"
  4176. #: flatcamGUI/FlatCAMGUI.py:2965
  4177. msgid "Set the line color for the 'right to left' selection box."
  4178. msgstr "Set the line color for the 'right to left' selection box."
  4179. #: flatcamGUI/FlatCAMGUI.py:2977
  4180. msgid "Editor Draw:"
  4181. msgstr "Editor Draw:"
  4182. #: flatcamGUI/FlatCAMGUI.py:2979
  4183. msgid "Set the color for the shape."
  4184. msgstr "Set the color for the shape."
  4185. #: flatcamGUI/FlatCAMGUI.py:2991
  4186. msgid "Editor Draw Sel.:"
  4187. msgstr "Editor Draw Sel.:"
  4188. #: flatcamGUI/FlatCAMGUI.py:2993
  4189. msgid "Set the color of the shape when selected."
  4190. msgstr "Set the color of the shape when selected."
  4191. #: flatcamGUI/FlatCAMGUI.py:3040
  4192. msgid "GUI Settings"
  4193. msgstr "GUI Settings"
  4194. #: flatcamGUI/FlatCAMGUI.py:3047
  4195. msgid "Layout:"
  4196. msgstr "Layout:"
  4197. #: flatcamGUI/FlatCAMGUI.py:3049
  4198. msgid ""
  4199. "Select an layout for FlatCAM.\n"
  4200. "It is applied immediately."
  4201. msgstr ""
  4202. "Select an layout for FlatCAM.\n"
  4203. "It is applied immediately."
  4204. #: flatcamGUI/FlatCAMGUI.py:3065
  4205. msgid "Style:"
  4206. msgstr "Style:"
  4207. #: flatcamGUI/FlatCAMGUI.py:3067
  4208. msgid ""
  4209. "Select an style for FlatCAM.\n"
  4210. "It will be applied at the next app start."
  4211. msgstr ""
  4212. "Select an style for FlatCAM.\n"
  4213. "It will be applied at the next app start."
  4214. #: flatcamGUI/FlatCAMGUI.py:3078
  4215. msgid "HDPI Support:"
  4216. msgstr "HDPI Support:"
  4217. #: flatcamGUI/FlatCAMGUI.py:3080
  4218. msgid ""
  4219. "Enable High DPI support for FlatCAM.\n"
  4220. "It will be applied at the next app start."
  4221. msgstr ""
  4222. "Enable High DPI support for FlatCAM.\n"
  4223. "It will be applied at the next app start."
  4224. #: flatcamGUI/FlatCAMGUI.py:3093
  4225. msgid "Clear GUI Settings:"
  4226. msgstr "Clear GUI Settings:"
  4227. #: flatcamGUI/FlatCAMGUI.py:3095
  4228. msgid ""
  4229. "Clear the GUI settings for FlatCAM,\n"
  4230. "such as: layout, gui state, style, hdpi support etc."
  4231. msgstr ""
  4232. "Clear the GUI settings for FlatCAM,\n"
  4233. "such as: layout, gui state, style, hdpi support etc."
  4234. #: flatcamGUI/FlatCAMGUI.py:3098
  4235. msgid "Clear"
  4236. msgstr "Clear"
  4237. #: flatcamGUI/FlatCAMGUI.py:3102
  4238. msgid "Hover Shape:"
  4239. msgstr "Hover Shape:"
  4240. #: flatcamGUI/FlatCAMGUI.py:3104
  4241. msgid ""
  4242. "Enable display of a hover shape for FlatCAM objects.\n"
  4243. "It is displayed whenever the mouse cursor is hovering\n"
  4244. "over any kind of not-selected object."
  4245. msgstr ""
  4246. "Enable display of a hover shape for FlatCAM objects.\n"
  4247. "It is displayed whenever the mouse cursor is hovering\n"
  4248. "over any kind of not-selected object."
  4249. #: flatcamGUI/FlatCAMGUI.py:3145
  4250. msgid "Are you sure you want to delete the GUI Settings? \n"
  4251. msgstr "Are you sure you want to delete the GUI Settings? \n"
  4252. #: flatcamGUI/FlatCAMGUI.py:3148
  4253. msgid "Clear GUI Settings"
  4254. msgstr "Clear GUI Settings"
  4255. #: flatcamGUI/FlatCAMGUI.py:3161
  4256. msgid "[success] GUI settings deleted ..."
  4257. msgstr "[success] GUI settings deleted ..."
  4258. #: flatcamGUI/FlatCAMGUI.py:3168
  4259. msgid "App Preferences"
  4260. msgstr "App Preferences"
  4261. #: flatcamGUI/FlatCAMGUI.py:3174
  4262. msgid "<b>Units:</b>"
  4263. msgstr "<b>Units:</b>"
  4264. #: flatcamGUI/FlatCAMGUI.py:3175
  4265. msgid ""
  4266. "The default value for FlatCAM units.\n"
  4267. "Whatever is selected here is set every time\n"
  4268. "FLatCAM is started."
  4269. msgstr ""
  4270. "The default value for FlatCAM units.\n"
  4271. "Whatever is selected here is set every time\n"
  4272. "FLatCAM is started."
  4273. #: flatcamGUI/FlatCAMGUI.py:3182
  4274. msgid "<b>APP. LEVEL:</b>"
  4275. msgstr "<b>APP. LEVEL:</b>"
  4276. #: flatcamGUI/FlatCAMGUI.py:3183
  4277. msgid ""
  4278. "Choose the default level of usage for FlatCAM.\n"
  4279. "BASIC level -> reduced functionality, best for beginner's.\n"
  4280. "ADVANCED level -> full functionality.\n"
  4281. "\n"
  4282. "The choice here will influence the parameters in\n"
  4283. "the Selected Tab for all kinds of FlatCAM objects."
  4284. msgstr ""
  4285. "Choose the default level of usage for FlatCAM.\n"
  4286. "BASIC level -> reduced functionality, best for beginner's.\n"
  4287. "ADVANCED level -> full functionality.\n"
  4288. "\n"
  4289. "The choice here will influence the parameters in\n"
  4290. "the Selected Tab for all kinds of FlatCAM objects."
  4291. #: flatcamGUI/FlatCAMGUI.py:3188 flatcamGUI/FlatCAMGUI.py:3792
  4292. msgid "Basic"
  4293. msgstr "Basic"
  4294. #: flatcamGUI/FlatCAMGUI.py:3189
  4295. msgid "Advanced"
  4296. msgstr "Advanced"
  4297. #: flatcamGUI/FlatCAMGUI.py:3192
  4298. msgid "<b>Languages:</b>"
  4299. msgstr "<b>Languages:</b>"
  4300. #: flatcamGUI/FlatCAMGUI.py:3193
  4301. msgid "Set the language used throughout FlatCAM."
  4302. msgstr "Set the language used throughout FlatCAM."
  4303. #: flatcamGUI/FlatCAMGUI.py:3196
  4304. msgid "Apply Language"
  4305. msgstr "Apply Language"
  4306. #: flatcamGUI/FlatCAMGUI.py:3199
  4307. msgid "Shell at StartUp:"
  4308. msgstr "Shell at StartUp:"
  4309. #: flatcamGUI/FlatCAMGUI.py:3201 flatcamGUI/FlatCAMGUI.py:3206
  4310. msgid ""
  4311. "Check this box if you want the shell to\n"
  4312. "start automatically at startup."
  4313. msgstr ""
  4314. "Check this box if you want the shell to\n"
  4315. "start automatically at startup."
  4316. #: flatcamGUI/FlatCAMGUI.py:3211
  4317. msgid "Version Check:"
  4318. msgstr "Version Check:"
  4319. #: flatcamGUI/FlatCAMGUI.py:3213 flatcamGUI/FlatCAMGUI.py:3218
  4320. msgid ""
  4321. "Check this box if you want to check\n"
  4322. "for a new version automatically at startup."
  4323. msgstr ""
  4324. "Check this box if you want to check\n"
  4325. "for a new version automatically at startup."
  4326. #: flatcamGUI/FlatCAMGUI.py:3223
  4327. msgid "Send Stats:"
  4328. msgstr "Send Stats:"
  4329. #: flatcamGUI/FlatCAMGUI.py:3225 flatcamGUI/FlatCAMGUI.py:3230
  4330. msgid ""
  4331. "Check this box if you agree to send anonymous\n"
  4332. "stats automatically at startup, to help improve FlatCAM."
  4333. msgstr ""
  4334. "Check this box if you agree to send anonymous\n"
  4335. "stats automatically at startup, to help improve FlatCAM."
  4336. #: flatcamGUI/FlatCAMGUI.py:3237
  4337. msgid "<b>Pan Button:</b>"
  4338. msgstr "<b>Pan Button:</b>"
  4339. #: flatcamGUI/FlatCAMGUI.py:3238
  4340. msgid ""
  4341. "Select the mouse button to use for panning:\n"
  4342. "- MMB --> Middle Mouse Button\n"
  4343. "- RMB --> Right Mouse Button"
  4344. msgstr ""
  4345. "Select the mouse button to use for panning:\n"
  4346. "- MMB --> Middle Mouse Button\n"
  4347. "- RMB --> Right Mouse Button"
  4348. #: flatcamGUI/FlatCAMGUI.py:3241
  4349. msgid "MMB"
  4350. msgstr "MMB"
  4351. #: flatcamGUI/FlatCAMGUI.py:3242
  4352. msgid "RMB"
  4353. msgstr "RMB"
  4354. #: flatcamGUI/FlatCAMGUI.py:3245
  4355. msgid "<b>Multiple Sel:</b>"
  4356. msgstr "<b>Multiple Sel:</b>"
  4357. #: flatcamGUI/FlatCAMGUI.py:3246
  4358. msgid "Select the key used for multiple selection."
  4359. msgstr "Select the key used for multiple selection."
  4360. #: flatcamGUI/FlatCAMGUI.py:3247
  4361. msgid "CTRL"
  4362. msgstr "CTRL"
  4363. #: flatcamGUI/FlatCAMGUI.py:3248
  4364. msgid "SHIFT"
  4365. msgstr "SHIFT"
  4366. #: flatcamGUI/FlatCAMGUI.py:3251
  4367. msgid "Project at StartUp:"
  4368. msgstr "Project at StartUp:"
  4369. #: flatcamGUI/FlatCAMGUI.py:3253 flatcamGUI/FlatCAMGUI.py:3258
  4370. msgid ""
  4371. "Check this box if you want the project/selected/tool tab area to\n"
  4372. "to be shown automatically at startup."
  4373. msgstr ""
  4374. "Check this box if you want the project/selected/tool tab area to\n"
  4375. "to be shown automatically at startup."
  4376. #: flatcamGUI/FlatCAMGUI.py:3263
  4377. msgid "Project AutoHide:"
  4378. msgstr "Project AutoHide:"
  4379. #: flatcamGUI/FlatCAMGUI.py:3265 flatcamGUI/FlatCAMGUI.py:3271
  4380. msgid ""
  4381. "Check this box if you want the project/selected/tool tab area to\n"
  4382. "hide automatically when there are no objects loaded and\n"
  4383. "to show whenever a new object is created."
  4384. msgstr ""
  4385. "Check this box if you want the project/selected/tool tab area to\n"
  4386. "hide automatically when there are no objects loaded and\n"
  4387. "to show whenever a new object is created."
  4388. #: flatcamGUI/FlatCAMGUI.py:3277
  4389. msgid "<b>Enable ToolTips:</b>"
  4390. msgstr "<b>Enable ToolTips:</b>"
  4391. #: flatcamGUI/FlatCAMGUI.py:3279 flatcamGUI/FlatCAMGUI.py:3284
  4392. msgid ""
  4393. "Check this box if you want to have toolTips displayed\n"
  4394. "when hovering with mouse over items throughout the App."
  4395. msgstr ""
  4396. "Check this box if you want to have toolTips displayed\n"
  4397. "when hovering with mouse over items throughout the App."
  4398. #: flatcamGUI/FlatCAMGUI.py:3318
  4399. msgid "Save Compressed Project"
  4400. msgstr "Save Compressed Project"
  4401. #: flatcamGUI/FlatCAMGUI.py:3320
  4402. msgid ""
  4403. "Whether to save a compressed or uncompressed project.\n"
  4404. "When checked it will save a compressed FlatCAM project."
  4405. msgstr ""
  4406. "Whether to save a compressed or uncompressed project.\n"
  4407. "When checked it will save a compressed FlatCAM project."
  4408. #: flatcamGUI/FlatCAMGUI.py:3331
  4409. msgid "Compression Level:"
  4410. msgstr "Compression Level:"
  4411. #: flatcamGUI/FlatCAMGUI.py:3333
  4412. msgid ""
  4413. "The level of compression used when saving\n"
  4414. "a FlatCAM project. Higher value means better compression\n"
  4415. "but require more RAM usage and more processing time."
  4416. msgstr ""
  4417. "The level of compression used when saving\n"
  4418. "a FlatCAM project. Higher value means better compression\n"
  4419. "but require more RAM usage and more processing time."
  4420. #: flatcamGUI/FlatCAMGUI.py:3359 flatcamGUI/FlatCAMGUI.py:3600
  4421. #: flatcamGUI/FlatCAMGUI.py:4255 flatcamGUI/FlatCAMGUI.py:4579
  4422. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:576
  4423. #: flatcamGUI/ObjectUI.py:901 flatcamGUI/ObjectUI.py:1415
  4424. msgid "<b>Plot Options:</b>"
  4425. msgstr "<b>Plot Options:</b>"
  4426. #: flatcamGUI/FlatCAMGUI.py:3366 flatcamGUI/FlatCAMGUI.py:3612
  4427. #: flatcamGUI/ObjectUI.py:577
  4428. msgid "Solid"
  4429. msgstr "Solid"
  4430. #: flatcamGUI/FlatCAMGUI.py:3368 flatcamGUI/ObjectUI.py:158
  4431. msgid "Solid color polygons."
  4432. msgstr "Solid color polygons."
  4433. #: flatcamGUI/FlatCAMGUI.py:3373
  4434. msgid "M-Color"
  4435. msgstr "M-Color"
  4436. #: flatcamGUI/FlatCAMGUI.py:3375 flatcamGUI/ObjectUI.py:166
  4437. msgid "Draw polygons in different colors."
  4438. msgstr "Draw polygons in different colors."
  4439. #: flatcamGUI/FlatCAMGUI.py:3380 flatcamGUI/FlatCAMGUI.py:3606
  4440. #: flatcamGUI/FlatCAMGUI.py:4259 flatcamGUI/ObjectUI.py:172
  4441. msgid "Plot"
  4442. msgstr "Plot"
  4443. #: flatcamGUI/FlatCAMGUI.py:3382 flatcamGUI/FlatCAMGUI.py:4261
  4444. #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:617
  4445. #: flatcamGUI/ObjectUI.py:947 flatcamGUI/ObjectUI.py:1502
  4446. msgid "Plot (show) this object."
  4447. msgstr "Plot (show) this object."
  4448. #: flatcamGUI/FlatCAMGUI.py:3387 flatcamGUI/FlatCAMGUI.py:4268
  4449. #: flatcamGUI/FlatCAMGUI.py:4615
  4450. msgid "Circle Steps:"
  4451. msgstr "Circle Steps:"
  4452. #: flatcamGUI/FlatCAMGUI.py:3389
  4453. msgid ""
  4454. "The number of circle steps for Gerber \n"
  4455. "circular aperture linear approximation."
  4456. msgstr ""
  4457. "The number of circle steps for Gerber \n"
  4458. "circular aperture linear approximation."
  4459. #: flatcamGUI/FlatCAMGUI.py:3404
  4460. msgid "Gerber Options"
  4461. msgstr "Gerber Options"
  4462. #: flatcamGUI/FlatCAMGUI.py:3408 flatcamGUI/ObjectUI.py:322
  4463. msgid "<b>Isolation Routing:</b>"
  4464. msgstr "<b>Isolation Routing:</b>"
  4465. #: flatcamGUI/FlatCAMGUI.py:3410 flatcamGUI/ObjectUI.py:324
  4466. msgid ""
  4467. "Create a Geometry object with\n"
  4468. "toolpaths to cut outside polygons."
  4469. msgstr ""
  4470. "Create a Geometry object with\n"
  4471. "toolpaths to cut outside polygons."
  4472. #: flatcamGUI/FlatCAMGUI.py:3421 flatcamGUI/FlatCAMGUI.py:3978
  4473. #: flatcamGUI/FlatCAMGUI.py:4903 flatcamGUI/ObjectUI.py:856
  4474. #: flatcamGUI/ObjectUI.py:872
  4475. msgid "Diameter of the cutting tool."
  4476. msgstr "Diameter of the cutting tool."
  4477. #: flatcamGUI/FlatCAMGUI.py:3428
  4478. msgid "Width (# passes):"
  4479. msgstr "Width (# passes):"
  4480. #: flatcamGUI/FlatCAMGUI.py:3430 flatcamGUI/ObjectUI.py:346
  4481. msgid ""
  4482. "Width of the isolation gap in\n"
  4483. "number (integer) of tool widths."
  4484. msgstr ""
  4485. "Width of the isolation gap in\n"
  4486. "number (integer) of tool widths."
  4487. #: flatcamGUI/FlatCAMGUI.py:3438 flatcamGUI/ObjectUI.py:354
  4488. msgid "Pass overlap:"
  4489. msgstr "Pass overlap:"
  4490. #: flatcamGUI/FlatCAMGUI.py:3440 flatcamGUI/ObjectUI.py:356
  4491. #, python-format
  4492. msgid ""
  4493. "How much (fraction) of the tool width to overlap each tool pass.\n"
  4494. "Example:\n"
  4495. "A value here of 0.25 means an overlap of 25%% from the tool diameter found "
  4496. "above."
  4497. msgstr ""
  4498. "How much (fraction) of the tool width to overlap each tool pass.\n"
  4499. "Example:\n"
  4500. "A value here of 0.25 means an overlap of 25%% from the tool diameter found "
  4501. "above."
  4502. #: flatcamGUI/FlatCAMGUI.py:3448 flatcamGUI/ObjectUI.py:366
  4503. msgid "Milling Type:"
  4504. msgstr "Milling Type:"
  4505. #: flatcamGUI/FlatCAMGUI.py:3450 flatcamGUI/ObjectUI.py:368
  4506. msgid ""
  4507. "Milling type:\n"
  4508. "- climb / best for precision milling and to reduce tool usage\n"
  4509. "- conventional / useful when there is no backlash compensation"
  4510. msgstr ""
  4511. "Milling type:\n"
  4512. "- climb / best for precision milling and to reduce tool usage\n"
  4513. "- conventional / useful when there is no backlash compensation"
  4514. #: flatcamGUI/FlatCAMGUI.py:3455 flatcamGUI/ObjectUI.py:373
  4515. msgid "Climb"
  4516. msgstr "Climb"
  4517. #: flatcamGUI/FlatCAMGUI.py:3456 flatcamGUI/ObjectUI.py:374
  4518. msgid "Conv."
  4519. msgstr "Conv."
  4520. #: flatcamGUI/FlatCAMGUI.py:3460
  4521. msgid "Combine Passes"
  4522. msgstr "Combine Passes"
  4523. #: flatcamGUI/FlatCAMGUI.py:3462 flatcamGUI/ObjectUI.py:380
  4524. msgid "Combine all passes into one object"
  4525. msgstr "Combine all passes into one object"
  4526. #: flatcamGUI/FlatCAMGUI.py:3467
  4527. msgid "<b>Clear non-copper:</b>"
  4528. msgstr "<b>Clear non-copper:</b>"
  4529. #: flatcamGUI/FlatCAMGUI.py:3469 flatcamGUI/FlatCAMGUI.py:4791
  4530. #: flatcamGUI/ObjectUI.py:457
  4531. msgid ""
  4532. "Create a Geometry object with\n"
  4533. "toolpaths to cut all non-copper regions."
  4534. msgstr ""
  4535. "Create a Geometry object with\n"
  4536. "toolpaths to cut all non-copper regions."
  4537. #: flatcamGUI/FlatCAMGUI.py:3478 flatcamGUI/FlatCAMGUI.py:3504
  4538. #: flatcamGUI/ObjectUI.py:501 flatcamGUI/ObjectUI.py:535
  4539. msgid "Boundary Margin:"
  4540. msgstr "Boundary Margin:"
  4541. #: flatcamGUI/FlatCAMGUI.py:3480 flatcamGUI/ObjectUI.py:503
  4542. msgid ""
  4543. "Specify the edge of the PCB\n"
  4544. "by drawing a box around all\n"
  4545. "objects with this minimum\n"
  4546. "distance."
  4547. msgstr ""
  4548. "Specify the edge of the PCB\n"
  4549. "by drawing a box around all\n"
  4550. "objects with this minimum\n"
  4551. "distance."
  4552. #: flatcamGUI/FlatCAMGUI.py:3490 flatcamGUI/FlatCAMGUI.py:3513
  4553. msgid "Rounded corners"
  4554. msgstr "Rounded corners"
  4555. #: flatcamGUI/FlatCAMGUI.py:3492
  4556. msgid ""
  4557. "Creates a Geometry objects with polygons\n"
  4558. "covering the copper-free areas of the PCB."
  4559. msgstr ""
  4560. "Creates a Geometry objects with polygons\n"
  4561. "covering the copper-free areas of the PCB."
  4562. #: flatcamGUI/FlatCAMGUI.py:3498 flatcamGUI/ObjectUI.py:525
  4563. msgid "<b>Bounding Box:</b>"
  4564. msgstr "<b>Bounding Box:</b>"
  4565. #: flatcamGUI/FlatCAMGUI.py:3506 flatcamGUI/ObjectUI.py:537
  4566. msgid ""
  4567. "Distance of the edges of the box\n"
  4568. "to the nearest polygon."
  4569. msgstr ""
  4570. "Distance of the edges of the box\n"
  4571. "to the nearest polygon."
  4572. #: flatcamGUI/FlatCAMGUI.py:3515 flatcamGUI/ObjectUI.py:547
  4573. msgid ""
  4574. "If the bounding box is \n"
  4575. "to have rounded corners\n"
  4576. "their radius is equal to\n"
  4577. "the margin."
  4578. msgstr ""
  4579. "If the bounding box is \n"
  4580. "to have rounded corners\n"
  4581. "their radius is equal to\n"
  4582. "the margin."
  4583. #: flatcamGUI/FlatCAMGUI.py:3529
  4584. msgid "Gerber Adv. Options"
  4585. msgstr "Gerber Adv. Options"
  4586. #: flatcamGUI/FlatCAMGUI.py:3533
  4587. msgid "<b>Advanced Param.:</b>"
  4588. msgstr "<b>Advanced Param.:</b>"
  4589. #: flatcamGUI/FlatCAMGUI.py:3535
  4590. msgid ""
  4591. "A list of Gerber advanced parameters.\n"
  4592. "Those parameters are available only for\n"
  4593. "Advanced App. Level."
  4594. msgstr ""
  4595. "A list of Gerber advanced parameters.\n"
  4596. "Those parameters are available only for\n"
  4597. "Advanced App. Level."
  4598. #: flatcamGUI/FlatCAMGUI.py:3545 flatcamGUI/ObjectUI.py:385
  4599. msgid "\"Follow\""
  4600. msgstr "\"Follow\""
  4601. #: flatcamGUI/FlatCAMGUI.py:3547 flatcamGUI/ObjectUI.py:387
  4602. msgid ""
  4603. "Generate a 'Follow' geometry.\n"
  4604. "This means that it will cut through\n"
  4605. "the middle of the trace."
  4606. msgstr ""
  4607. "Generate a 'Follow' geometry.\n"
  4608. "This means that it will cut through\n"
  4609. "the middle of the trace."
  4610. #: flatcamGUI/FlatCAMGUI.py:3555
  4611. msgid "Table Show/Hide"
  4612. msgstr "Table Show/Hide"
  4613. #: flatcamGUI/FlatCAMGUI.py:3557
  4614. msgid ""
  4615. "Toggle the display of the Gerber Apertures Table.\n"
  4616. "Also, on hide, it will delete all mark shapes\n"
  4617. "that are drawn on canvas."
  4618. msgstr ""
  4619. "Toggle the display of the Gerber Apertures Table.\n"
  4620. "Also, on hide, it will delete all mark shapes\n"
  4621. "that are drawn on canvas."
  4622. #: flatcamGUI/FlatCAMGUI.py:3565
  4623. msgid "Ap. Scale Factor:"
  4624. msgstr "Ap. Scale Factor:"
  4625. #: flatcamGUI/FlatCAMGUI.py:3567 flatcamGUI/ObjectUI.py:254
  4626. msgid ""
  4627. "Change the size of the selected apertures.\n"
  4628. "Factor by which to multiply\n"
  4629. "geometric features of this object."
  4630. msgstr ""
  4631. "Change the size of the selected apertures.\n"
  4632. "Factor by which to multiply\n"
  4633. "geometric features of this object."
  4634. #: flatcamGUI/FlatCAMGUI.py:3577
  4635. msgid "Ap. Buffer Factor:"
  4636. msgstr "Ap. Buffer Factor:"
  4637. #: flatcamGUI/FlatCAMGUI.py:3579 flatcamGUI/ObjectUI.py:275
  4638. msgid ""
  4639. "Change the size of the selected apertures.\n"
  4640. "Factor by which to expand/shrink\n"
  4641. "geometric features of this object."
  4642. msgstr ""
  4643. "Change the size of the selected apertures.\n"
  4644. "Factor by which to expand/shrink\n"
  4645. "geometric features of this object."
  4646. #: flatcamGUI/FlatCAMGUI.py:3597
  4647. msgid "Excellon General"
  4648. msgstr "Excellon General"
  4649. #: flatcamGUI/FlatCAMGUI.py:3619
  4650. msgid "<b>Excellon Format:</b>"
  4651. msgstr "<b>Excellon Format:</b>"
  4652. #: flatcamGUI/FlatCAMGUI.py:3621
  4653. msgid ""
  4654. "The NC drill files, usually named Excellon files\n"
  4655. "are files that can be found in different formats.\n"
  4656. "Here we set the format used when the provided\n"
  4657. "coordinates are not using period.\n"
  4658. "\n"
  4659. "Possible presets:\n"
  4660. "\n"
  4661. "PROTEUS 3:3 MM LZ\n"
  4662. "DipTrace 5:2 MM TZ\n"
  4663. "DipTrace 4:3 MM LZ\n"
  4664. "\n"
  4665. "EAGLE 3:3 MM TZ\n"
  4666. "EAGLE 4:3 MM TZ\n"
  4667. "EAGLE 2:5 INCH TZ\n"
  4668. "EAGLE 3:5 INCH TZ\n"
  4669. "\n"
  4670. "ALTIUM 2:4 INCH LZ\n"
  4671. "Sprint Layout 2:4 INCH LZ\n"
  4672. "KiCAD 3:5 INCH TZ"
  4673. msgstr ""
  4674. "The NC drill files, usually named Excellon files\n"
  4675. "are files that can be found in different formats.\n"
  4676. "Here we set the format used when the provided\n"
  4677. "coordinates are not using period.\n"
  4678. "\n"
  4679. "Possible presets:\n"
  4680. "\n"
  4681. "PROTEUS 3:3 MM LZ\n"
  4682. "DipTrace 5:2 MM TZ\n"
  4683. "DipTrace 4:3 MM LZ\n"
  4684. "\n"
  4685. "EAGLE 3:3 MM TZ\n"
  4686. "EAGLE 4:3 MM TZ\n"
  4687. "EAGLE 2:5 INCH TZ\n"
  4688. "EAGLE 3:5 INCH TZ\n"
  4689. "\n"
  4690. "ALTIUM 2:4 INCH LZ\n"
  4691. "Sprint Layout 2:4 INCH LZ\n"
  4692. "KiCAD 3:5 INCH TZ"
  4693. #: flatcamGUI/FlatCAMGUI.py:3646
  4694. msgid "INCH:"
  4695. msgstr "INCH:"
  4696. #: flatcamGUI/FlatCAMGUI.py:3649
  4697. msgid "Default values for INCH are 2:4"
  4698. msgstr "Default values for INCH are 2:4"
  4699. #: flatcamGUI/FlatCAMGUI.py:3657 flatcamGUI/FlatCAMGUI.py:3690
  4700. #: flatcamGUI/FlatCAMGUI.py:4167
  4701. msgid ""
  4702. "This numbers signify the number of digits in\n"
  4703. "the whole part of Excellon coordinates."
  4704. msgstr ""
  4705. "This numbers signify the number of digits in\n"
  4706. "the whole part of Excellon coordinates."
  4707. #: flatcamGUI/FlatCAMGUI.py:3671 flatcamGUI/FlatCAMGUI.py:3704
  4708. #: flatcamGUI/FlatCAMGUI.py:4181
  4709. msgid ""
  4710. "This numbers signify the number of digits in\n"
  4711. "the decimal part of Excellon coordinates."
  4712. msgstr ""
  4713. "This numbers signify the number of digits in\n"
  4714. "the decimal part of Excellon coordinates."
  4715. #: flatcamGUI/FlatCAMGUI.py:3679
  4716. msgid "METRIC:"
  4717. msgstr "METRIC:"
  4718. #: flatcamGUI/FlatCAMGUI.py:3682
  4719. msgid "Default values for METRIC are 3:3"
  4720. msgstr "Default values for METRIC are 3:3"
  4721. #: flatcamGUI/FlatCAMGUI.py:3713
  4722. msgid "Default <b>Zeros</b>:"
  4723. msgstr "Default <b>Zeros</b>:"
  4724. #: flatcamGUI/FlatCAMGUI.py:3716 flatcamGUI/FlatCAMGUI.py:4216
  4725. msgid ""
  4726. "This sets the type of Excellon zeros.\n"
  4727. "If LZ then Leading Zeros are kept and\n"
  4728. "Trailing Zeros are removed.\n"
  4729. "If TZ is checked then Trailing Zeros are kept\n"
  4730. "and Leading Zeros are removed."
  4731. msgstr ""
  4732. "This sets the type of Excellon zeros.\n"
  4733. "If LZ then Leading Zeros are kept and\n"
  4734. "Trailing Zeros are removed.\n"
  4735. "If TZ is checked then Trailing Zeros are kept\n"
  4736. "and Leading Zeros are removed."
  4737. #: flatcamGUI/FlatCAMGUI.py:3724 flatcamGUI/FlatCAMGUI.py:4223
  4738. msgid "LZ"
  4739. msgstr "LZ"
  4740. #: flatcamGUI/FlatCAMGUI.py:3725 flatcamGUI/FlatCAMGUI.py:4224
  4741. msgid "TZ"
  4742. msgstr "TZ"
  4743. #: flatcamGUI/FlatCAMGUI.py:3727
  4744. msgid ""
  4745. "This sets the default type of Excellon zeros.\n"
  4746. "If it is not detected in the parsed file the value here\n"
  4747. "will be used.If LZ then Leading Zeros are kept and\n"
  4748. "Trailing Zeros are removed.\n"
  4749. "If TZ is checked then Trailing Zeros are kept\n"
  4750. "and Leading Zeros are removed."
  4751. msgstr ""
  4752. "This sets the default type of Excellon zeros.\n"
  4753. "If it is not detected in the parsed file the value here\n"
  4754. "will be used.If LZ then Leading Zeros are kept and\n"
  4755. "Trailing Zeros are removed.\n"
  4756. "If TZ is checked then Trailing Zeros are kept\n"
  4757. "and Leading Zeros are removed."
  4758. #: flatcamGUI/FlatCAMGUI.py:3741
  4759. msgid "Default <b>Units</b>:"
  4760. msgstr "Default <b>Units</b>:"
  4761. #: flatcamGUI/FlatCAMGUI.py:3744
  4762. msgid ""
  4763. "This sets the default units of Excellon files.\n"
  4764. "If it is not detected in the parsed file the value here\n"
  4765. "will be used.Some Excellon files don't have an header\n"
  4766. "therefore this parameter will be used."
  4767. msgstr ""
  4768. "This sets the default units of Excellon files.\n"
  4769. "If it is not detected in the parsed file the value here\n"
  4770. "will be used.Some Excellon files don't have an header\n"
  4771. "therefore this parameter will be used."
  4772. #: flatcamGUI/FlatCAMGUI.py:3752 flatcamGUI/FlatCAMGUI.py:4143
  4773. msgid "INCH"
  4774. msgstr "INCH"
  4775. #: flatcamGUI/FlatCAMGUI.py:3753 flatcamGUI/FlatCAMGUI.py:4144
  4776. msgid "MM"
  4777. msgstr "MM"
  4778. #: flatcamGUI/FlatCAMGUI.py:3755
  4779. msgid ""
  4780. "This sets the units of Excellon files.\n"
  4781. "Some Excellon files don't have an header\n"
  4782. "therefore this parameter will be used."
  4783. msgstr ""
  4784. "This sets the units of Excellon files.\n"
  4785. "Some Excellon files don't have an header\n"
  4786. "therefore this parameter will be used."
  4787. #: flatcamGUI/FlatCAMGUI.py:3771
  4788. msgid "<b>Excellon Optimization:</b>"
  4789. msgstr "<b>Excellon Optimization:</b>"
  4790. #: flatcamGUI/FlatCAMGUI.py:3778
  4791. msgid "Algorithm: "
  4792. msgstr "Algorithm: "
  4793. #: flatcamGUI/FlatCAMGUI.py:3781 flatcamGUI/FlatCAMGUI.py:3794
  4794. msgid ""
  4795. "This sets the optimization type for the Excellon drill path.\n"
  4796. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  4797. "Guided Local Path is used. Default search time is 3sec.\n"
  4798. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  4799. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  4800. "\n"
  4801. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  4802. "Travelling Salesman algorithm for path optimization."
  4803. msgstr ""
  4804. "This sets the optimization type for the Excellon drill path.\n"
  4805. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  4806. "Guided Local Path is used. Default search time is 3sec.\n"
  4807. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  4808. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  4809. "\n"
  4810. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  4811. "Travelling Salesman algorithm for path optimization."
  4812. #: flatcamGUI/FlatCAMGUI.py:3791
  4813. msgid "MH"
  4814. msgstr "MH"
  4815. #: flatcamGUI/FlatCAMGUI.py:3806
  4816. msgid "Optimization Time: "
  4817. msgstr "Optimization Time: "
  4818. #: flatcamGUI/FlatCAMGUI.py:3809
  4819. msgid ""
  4820. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  4821. "maximum threshold for how much time is spent doing the\n"
  4822. "path optimization. This max duration is set here.\n"
  4823. "In seconds."
  4824. msgstr ""
  4825. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  4826. "maximum threshold for how much time is spent doing the\n"
  4827. "path optimization. This max duration is set here.\n"
  4828. "In seconds."
  4829. #: flatcamGUI/FlatCAMGUI.py:3850
  4830. msgid "Excellon Options"
  4831. msgstr "Excellon Options"
  4832. #: flatcamGUI/FlatCAMGUI.py:3853 flatcamGUI/ObjectUI.py:655
  4833. msgid "<b>Create CNC Job</b>"
  4834. msgstr "<b>Create CNC Job</b>"
  4835. #: flatcamGUI/FlatCAMGUI.py:3855
  4836. msgid ""
  4837. "Parameters used to create a CNC Job object\n"
  4838. "for this drill object."
  4839. msgstr ""
  4840. "Parameters used to create a CNC Job object\n"
  4841. "for this drill object."
  4842. #: flatcamGUI/FlatCAMGUI.py:3863 flatcamGUI/FlatCAMGUI.py:4319
  4843. #: flatcamGUI/FlatCAMGUI.py:5318 flatcamGUI/ObjectUI.py:666
  4844. #: flatcamGUI/ObjectUI.py:1130 flatcamTools/ToolCalculators.py:108
  4845. msgid "Cut Z:"
  4846. msgstr "Cut Z:"
  4847. #: flatcamGUI/FlatCAMGUI.py:3865 flatcamGUI/ObjectUI.py:668
  4848. msgid ""
  4849. "Drill depth (negative)\n"
  4850. "below the copper surface."
  4851. msgstr ""
  4852. "Drill depth (negative)\n"
  4853. "below the copper surface."
  4854. #: flatcamGUI/FlatCAMGUI.py:3872 flatcamGUI/FlatCAMGUI.py:4352
  4855. #: flatcamGUI/ObjectUI.py:676 flatcamGUI/ObjectUI.py:1166
  4856. msgid "Travel Z:"
  4857. msgstr "Travel Z:"
  4858. #: flatcamGUI/FlatCAMGUI.py:3874 flatcamGUI/ObjectUI.py:678
  4859. msgid ""
  4860. "Tool height when travelling\n"
  4861. "across the XY plane."
  4862. msgstr ""
  4863. "Tool height when travelling\n"
  4864. "across the XY plane."
  4865. #: flatcamGUI/FlatCAMGUI.py:3882 flatcamGUI/FlatCAMGUI.py:4362
  4866. msgid "Tool change:"
  4867. msgstr "Tool change:"
  4868. #: flatcamGUI/FlatCAMGUI.py:3884 flatcamGUI/FlatCAMGUI.py:4364
  4869. #: flatcamGUI/ObjectUI.py:688
  4870. msgid ""
  4871. "Include tool-change sequence\n"
  4872. "in G-Code (Pause for tool change)."
  4873. msgstr ""
  4874. "Include tool-change sequence\n"
  4875. "in G-Code (Pause for tool change)."
  4876. #: flatcamGUI/FlatCAMGUI.py:3891 flatcamGUI/FlatCAMGUI.py:4372
  4877. msgid "Toolchange Z:"
  4878. msgstr "Toolchange Z:"
  4879. #: flatcamGUI/FlatCAMGUI.py:3893 flatcamGUI/FlatCAMGUI.py:4374
  4880. msgid "Toolchange Z position."
  4881. msgstr "Toolchange Z position."
  4882. #: flatcamGUI/FlatCAMGUI.py:3899
  4883. msgid "Feedrate:"
  4884. msgstr "Feedrate:"
  4885. #: flatcamGUI/FlatCAMGUI.py:3901
  4886. msgid ""
  4887. "Tool speed while drilling\n"
  4888. "(in units per minute)."
  4889. msgstr ""
  4890. "Tool speed while drilling\n"
  4891. "(in units per minute)."
  4892. #: flatcamGUI/FlatCAMGUI.py:3909
  4893. msgid "Spindle Speed:"
  4894. msgstr "Spindle Speed:"
  4895. #: flatcamGUI/FlatCAMGUI.py:3911 flatcamGUI/FlatCAMGUI.py:4404
  4896. #: flatcamGUI/ObjectUI.py:752
  4897. msgid ""
  4898. "Speed of the spindle\n"
  4899. "in RPM (optional)"
  4900. msgstr ""
  4901. "Speed of the spindle\n"
  4902. "in RPM (optional)"
  4903. #: flatcamGUI/FlatCAMGUI.py:3919 flatcamGUI/FlatCAMGUI.py:4412
  4904. #: flatcamGUI/ObjectUI.py:760 flatcamGUI/ObjectUI.py:1289
  4905. msgid "Dwell:"
  4906. msgstr "Dwell:"
  4907. #: flatcamGUI/FlatCAMGUI.py:3921 flatcamGUI/FlatCAMGUI.py:4414
  4908. #: flatcamGUI/ObjectUI.py:762 flatcamGUI/ObjectUI.py:1292
  4909. msgid ""
  4910. "Pause to allow the spindle to reach its\n"
  4911. "speed before cutting."
  4912. msgstr ""
  4913. "Pause to allow the spindle to reach its\n"
  4914. "speed before cutting."
  4915. #: flatcamGUI/FlatCAMGUI.py:3924 flatcamGUI/FlatCAMGUI.py:4417
  4916. msgid "Duration:"
  4917. msgstr "Duration:"
  4918. #: flatcamGUI/FlatCAMGUI.py:3926 flatcamGUI/FlatCAMGUI.py:4419
  4919. #: flatcamGUI/ObjectUI.py:767 flatcamGUI/ObjectUI.py:1299
  4920. msgid "Number of milliseconds for spindle to dwell."
  4921. msgstr "Number of milliseconds for spindle to dwell."
  4922. #: flatcamGUI/FlatCAMGUI.py:3938 flatcamGUI/FlatCAMGUI.py:4429
  4923. #: flatcamGUI/ObjectUI.py:775
  4924. msgid "Postprocessor:"
  4925. msgstr "Postprocessor:"
  4926. #: flatcamGUI/FlatCAMGUI.py:3940
  4927. msgid ""
  4928. "The postprocessor file that dictates\n"
  4929. "gcode output."
  4930. msgstr ""
  4931. "The postprocessor file that dictates\n"
  4932. "gcode output."
  4933. #: flatcamGUI/FlatCAMGUI.py:3950
  4934. msgid "<b>Gcode: </b>"
  4935. msgstr "<b>Gcode: </b>"
  4936. #: flatcamGUI/FlatCAMGUI.py:3952
  4937. msgid ""
  4938. "Choose what to use for GCode generation:\n"
  4939. "'Drills', 'Slots' or 'Both'.\n"
  4940. "When choosing 'Slots' or 'Both', slots will be\n"
  4941. "converted to drills."
  4942. msgstr ""
  4943. "Choose what to use for GCode generation:\n"
  4944. "'Drills', 'Slots' or 'Both'.\n"
  4945. "When choosing 'Slots' or 'Both', slots will be\n"
  4946. "converted to drills."
  4947. #: flatcamGUI/FlatCAMGUI.py:3957 flatcamGUI/ObjectUI.py:627
  4948. #: flatcamGUI/ObjectUI.py:823
  4949. msgid "Drills"
  4950. msgstr "Drills"
  4951. #: flatcamGUI/FlatCAMGUI.py:3958 flatcamGUI/ObjectUI.py:627
  4952. #: flatcamGUI/ObjectUI.py:824
  4953. msgid "Slots"
  4954. msgstr "Slots"
  4955. #: flatcamGUI/FlatCAMGUI.py:3959 flatcamGUI/ObjectUI.py:825
  4956. msgid "Both"
  4957. msgstr "Both"
  4958. #: flatcamGUI/FlatCAMGUI.py:3968 flatcamGUI/ObjectUI.py:840
  4959. msgid "<b>Mill Holes</b>"
  4960. msgstr "<b>Mill Holes</b>"
  4961. #: flatcamGUI/FlatCAMGUI.py:3970 flatcamGUI/ObjectUI.py:842
  4962. msgid "Create Geometry for milling holes."
  4963. msgstr "Create Geometry for milling holes."
  4964. #: flatcamGUI/FlatCAMGUI.py:3976
  4965. msgid "Drill Tool dia:"
  4966. msgstr "Drill Tool dia:"
  4967. #: flatcamGUI/FlatCAMGUI.py:3983
  4968. msgid "Slot Tool dia:"
  4969. msgstr "Slot Tool dia:"
  4970. #: flatcamGUI/FlatCAMGUI.py:3985
  4971. msgid ""
  4972. "Diameter of the cutting tool\n"
  4973. "when milling slots."
  4974. msgstr ""
  4975. "Diameter of the cutting tool\n"
  4976. "when milling slots."
  4977. #: flatcamGUI/FlatCAMGUI.py:3997
  4978. msgid "Defaults"
  4979. msgstr "Defaults"
  4980. #: flatcamGUI/FlatCAMGUI.py:4010
  4981. msgid "Excellon Adv. Options"
  4982. msgstr "Excellon Adv. Options"
  4983. #: flatcamGUI/FlatCAMGUI.py:4016 flatcamGUI/FlatCAMGUI.py:4452
  4984. msgid "<b>Advanced Options:</b>"
  4985. msgstr "<b>Advanced Options:</b>"
  4986. #: flatcamGUI/FlatCAMGUI.py:4018
  4987. msgid ""
  4988. "Parameters used to create a CNC Job object\n"
  4989. "for this drill object that are shown when App Level is Advanced."
  4990. msgstr ""
  4991. "Parameters used to create a CNC Job object\n"
  4992. "for this drill object that are shown when App Level is Advanced."
  4993. #: flatcamGUI/FlatCAMGUI.py:4026
  4994. msgid "Offset Z:"
  4995. msgstr "Offset Z:"
  4996. #: flatcamGUI/FlatCAMGUI.py:4028 flatcamGUI/ObjectUI.py:645
  4997. msgid ""
  4998. "Some drill bits (the larger ones) need to drill deeper\n"
  4999. "to create the desired exit hole diameter due of the tip shape.\n"
  5000. "The value here can compensate the Cut Z parameter."
  5001. msgstr ""
  5002. "Some drill bits (the larger ones) need to drill deeper\n"
  5003. "to create the desired exit hole diameter due of the tip shape.\n"
  5004. "The value here can compensate the Cut Z parameter."
  5005. #: flatcamGUI/FlatCAMGUI.py:4035 flatcamGUI/FlatCAMGUI.py:4463
  5006. msgid "Toolchange X,Y:"
  5007. msgstr "Toolchange X,Y:"
  5008. #: flatcamGUI/FlatCAMGUI.py:4037 flatcamGUI/FlatCAMGUI.py:4465
  5009. msgid "Toolchange X,Y position."
  5010. msgstr "Toolchange X,Y position."
  5011. #: flatcamGUI/FlatCAMGUI.py:4043 flatcamGUI/FlatCAMGUI.py:4472
  5012. #: flatcamGUI/ObjectUI.py:705
  5013. msgid "Start move Z:"
  5014. msgstr "Start move Z:"
  5015. #: flatcamGUI/FlatCAMGUI.py:4045
  5016. msgid ""
  5017. "Height of the tool just after start.\n"
  5018. "Delete the value if you don't need this feature."
  5019. msgstr ""
  5020. "Height of the tool just after start.\n"
  5021. "Delete the value if you don't need this feature."
  5022. #: flatcamGUI/FlatCAMGUI.py:4052 flatcamGUI/FlatCAMGUI.py:4482
  5023. #: flatcamGUI/ObjectUI.py:715 flatcamGUI/ObjectUI.py:1212
  5024. msgid "End move Z:"
  5025. msgstr "End move Z:"
  5026. #: flatcamGUI/FlatCAMGUI.py:4054 flatcamGUI/FlatCAMGUI.py:4484
  5027. msgid ""
  5028. "Height of the tool after\n"
  5029. "the last move at the end of the job."
  5030. msgstr ""
  5031. "Height of the tool after\n"
  5032. "the last move at the end of the job."
  5033. #: flatcamGUI/FlatCAMGUI.py:4061 flatcamGUI/FlatCAMGUI.py:4492
  5034. #: flatcamGUI/ObjectUI.py:736
  5035. msgid "Feedrate Rapids:"
  5036. msgstr "Feedrate Rapids:"
  5037. #: flatcamGUI/FlatCAMGUI.py:4063 flatcamGUI/ObjectUI.py:738
  5038. msgid ""
  5039. "Tool speed while drilling\n"
  5040. "(in units per minute).\n"
  5041. "This is for the rapid move G00.\n"
  5042. "It is useful only for Marlin,\n"
  5043. "ignore for any other cases."
  5044. msgstr ""
  5045. "Tool speed while drilling\n"
  5046. "(in units per minute).\n"
  5047. "This is for the rapid move G00.\n"
  5048. "It is useful only for Marlin,\n"
  5049. "ignore for any other cases."
  5050. #: flatcamGUI/FlatCAMGUI.py:4074 flatcamGUI/FlatCAMGUI.py:4516
  5051. #: flatcamGUI/ObjectUI.py:786 flatcamGUI/ObjectUI.py:1321
  5052. msgid "Probe Z depth:"
  5053. msgstr "Probe Z depth:"
  5054. #: flatcamGUI/FlatCAMGUI.py:4076 flatcamGUI/FlatCAMGUI.py:4518
  5055. #: flatcamGUI/ObjectUI.py:788 flatcamGUI/ObjectUI.py:1324
  5056. msgid ""
  5057. "The maximum depth that the probe is allowed\n"
  5058. "to probe. Negative value, in current units."
  5059. msgstr ""
  5060. "The maximum depth that the probe is allowed\n"
  5061. "to probe. Negative value, in current units."
  5062. #: flatcamGUI/FlatCAMGUI.py:4084 flatcamGUI/FlatCAMGUI.py:4526
  5063. #: flatcamGUI/ObjectUI.py:798 flatcamGUI/ObjectUI.py:1335
  5064. msgid "Feedrate Probe:"
  5065. msgstr "Feedrate Probe:"
  5066. #: flatcamGUI/FlatCAMGUI.py:4086 flatcamGUI/FlatCAMGUI.py:4528
  5067. #: flatcamGUI/ObjectUI.py:800 flatcamGUI/ObjectUI.py:1338
  5068. msgid "The feedrate used while the probe is probing."
  5069. msgstr "The feedrate used while the probe is probing."
  5070. #: flatcamGUI/FlatCAMGUI.py:4092 flatcamGUI/FlatCAMGUI.py:4535
  5071. msgid "Fast Plunge:"
  5072. msgstr "Fast Plunge:"
  5073. #: flatcamGUI/FlatCAMGUI.py:4094 flatcamGUI/FlatCAMGUI.py:4537
  5074. msgid ""
  5075. "By checking this, the vertical move from\n"
  5076. "Z_Toolchange to Z_move is done with G0,\n"
  5077. "meaning the fastest speed available.\n"
  5078. "WARNING: the move is done at Toolchange X,Y coords."
  5079. msgstr ""
  5080. "By checking this, the vertical move from\n"
  5081. "Z_Toolchange to Z_move is done with G0,\n"
  5082. "meaning the fastest speed available.\n"
  5083. "WARNING: the move is done at Toolchange X,Y coords."
  5084. #: flatcamGUI/FlatCAMGUI.py:4103
  5085. msgid "Fast Retract:"
  5086. msgstr "Fast Retract:"
  5087. #: flatcamGUI/FlatCAMGUI.py:4105
  5088. msgid ""
  5089. "Exit hole strategy.\n"
  5090. " - When uncheked, while exiting the drilled hole the drill bit\n"
  5091. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  5092. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  5093. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  5094. "(travel height) is done as fast as possible (G0) in one move."
  5095. msgstr ""
  5096. "Exit hole strategy.\n"
  5097. " - When uncheked, while exiting the drilled hole the drill bit\n"
  5098. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  5099. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  5100. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  5101. "(travel height) is done as fast as possible (G0) in one move."
  5102. #: flatcamGUI/FlatCAMGUI.py:4124
  5103. msgid "Excellon Export"
  5104. msgstr "Excellon Export"
  5105. #: flatcamGUI/FlatCAMGUI.py:4127
  5106. msgid "<b>Export Options:</b>"
  5107. msgstr "<b>Export Options:</b>"
  5108. #: flatcamGUI/FlatCAMGUI.py:4129
  5109. msgid ""
  5110. "The parameters set here are used in the file exported\n"
  5111. "when using the File -> Export -> Export Excellon menu entry."
  5112. msgstr ""
  5113. "The parameters set here are used in the file exported\n"
  5114. "when using the File -> Export -> Export Excellon menu entry."
  5115. #: flatcamGUI/FlatCAMGUI.py:4138
  5116. msgid "<b>Units</b>:"
  5117. msgstr "<b>Units</b>:"
  5118. #: flatcamGUI/FlatCAMGUI.py:4140 flatcamGUI/FlatCAMGUI.py:4146
  5119. msgid "The units used in the Excellon file."
  5120. msgstr "The units used in the Excellon file."
  5121. #: flatcamGUI/FlatCAMGUI.py:4152
  5122. msgid "<b>Int/Decimals:</b>"
  5123. msgstr "<b>Int/Decimals:</b>"
  5124. #: flatcamGUI/FlatCAMGUI.py:4154
  5125. msgid ""
  5126. "The NC drill files, usually named Excellon files\n"
  5127. "are files that can be found in different formats.\n"
  5128. "Here we set the format used when the provided\n"
  5129. "coordinates are not using period."
  5130. msgstr ""
  5131. "The NC drill files, usually named Excellon files\n"
  5132. "are files that can be found in different formats.\n"
  5133. "Here we set the format used when the provided\n"
  5134. "coordinates are not using period."
  5135. #: flatcamGUI/FlatCAMGUI.py:4190
  5136. msgid "<b>Format:</b>"
  5137. msgstr "<b>Format:</b>"
  5138. #: flatcamGUI/FlatCAMGUI.py:4192 flatcamGUI/FlatCAMGUI.py:4202
  5139. msgid ""
  5140. "Select the kind of coordinates format used.\n"
  5141. "Coordinates can be saved with decimal point or without.\n"
  5142. "When there is no decimal point, it is required to specify\n"
  5143. "the number of digits for integer part and the number of decimals.\n"
  5144. "Also it will have to be specified if LZ = leading zeros are kept\n"
  5145. "or TZ = trailing zeros are kept."
  5146. msgstr ""
  5147. "Select the kind of coordinates format used.\n"
  5148. "Coordinates can be saved with decimal point or without.\n"
  5149. "When there is no decimal point, it is required to specify\n"
  5150. "the number of digits for integer part and the number of decimals.\n"
  5151. "Also it will have to be specified if LZ = leading zeros are kept\n"
  5152. "or TZ = trailing zeros are kept."
  5153. #: flatcamGUI/FlatCAMGUI.py:4199
  5154. msgid "Decimal"
  5155. msgstr "Decimal"
  5156. #: flatcamGUI/FlatCAMGUI.py:4200
  5157. msgid "No-Decimal"
  5158. msgstr "No-Decimal"
  5159. #: flatcamGUI/FlatCAMGUI.py:4213
  5160. msgid "<b>Zeros</b>:"
  5161. msgstr "<b>Zeros</b>:"
  5162. #: flatcamGUI/FlatCAMGUI.py:4226
  5163. msgid ""
  5164. "This sets the default type of Excellon zeros.\n"
  5165. "If LZ then Leading Zeros are kept and\n"
  5166. "Trailing Zeros are removed.\n"
  5167. "If TZ is checked then Trailing Zeros are kept\n"
  5168. "and Leading Zeros are removed."
  5169. msgstr ""
  5170. "This sets the default type of Excellon zeros.\n"
  5171. "If LZ then Leading Zeros are kept and\n"
  5172. "Trailing Zeros are removed.\n"
  5173. "If TZ is checked then Trailing Zeros are kept\n"
  5174. "and Leading Zeros are removed."
  5175. #: flatcamGUI/FlatCAMGUI.py:4252
  5176. msgid "Geometry General"
  5177. msgstr "Geometry General"
  5178. #: flatcamGUI/FlatCAMGUI.py:4270
  5179. msgid ""
  5180. "The number of circle steps for <b>Geometry</b> \n"
  5181. "circle and arc shapes linear approximation."
  5182. msgstr ""
  5183. "The number of circle steps for <b>Geometry</b> \n"
  5184. "circle and arc shapes linear approximation."
  5185. #: flatcamGUI/FlatCAMGUI.py:4278
  5186. msgid "<b>Tools</b>"
  5187. msgstr "<b>Tools</b>"
  5188. #: flatcamGUI/FlatCAMGUI.py:4285
  5189. msgid "Tool dia: "
  5190. msgstr "Tool dia: "
  5191. #: flatcamGUI/FlatCAMGUI.py:4287
  5192. msgid ""
  5193. "The diameter of the cutting\n"
  5194. "tool.."
  5195. msgstr ""
  5196. "The diameter of the cutting\n"
  5197. "tool.."
  5198. #: flatcamGUI/FlatCAMGUI.py:4302
  5199. msgid "Geometry Options"
  5200. msgstr "Geometry Options"
  5201. #: flatcamGUI/FlatCAMGUI.py:4307
  5202. msgid "<b>Create CNC Job:</b>"
  5203. msgstr "<b>Create CNC Job:</b>"
  5204. #: flatcamGUI/FlatCAMGUI.py:4309
  5205. msgid ""
  5206. "Create a CNC Job object\n"
  5207. "tracing the contours of this\n"
  5208. "Geometry object."
  5209. msgstr ""
  5210. "Create a CNC Job object\n"
  5211. "tracing the contours of this\n"
  5212. "Geometry object."
  5213. #: flatcamGUI/FlatCAMGUI.py:4321 flatcamGUI/ObjectUI.py:1133
  5214. msgid ""
  5215. "Cutting depth (negative)\n"
  5216. "below the copper surface."
  5217. msgstr ""
  5218. "Cutting depth (negative)\n"
  5219. "below the copper surface."
  5220. #: flatcamGUI/FlatCAMGUI.py:4329
  5221. msgid "Multidepth"
  5222. msgstr "Multidepth"
  5223. #: flatcamGUI/FlatCAMGUI.py:4331
  5224. msgid "Multidepth usage: True or False."
  5225. msgstr "Multidepth usage: True or False."
  5226. #: flatcamGUI/FlatCAMGUI.py:4336
  5227. msgid "Depth/Pass:"
  5228. msgstr "Depth/Pass:"
  5229. #: flatcamGUI/FlatCAMGUI.py:4338
  5230. msgid ""
  5231. "The depth to cut on each pass,\n"
  5232. "when multidepth is enabled.\n"
  5233. "It has positive value although\n"
  5234. "it is a fraction from the depth\n"
  5235. "which has negative value."
  5236. msgstr ""
  5237. "The depth to cut on each pass,\n"
  5238. "when multidepth is enabled.\n"
  5239. "It has positive value although\n"
  5240. "it is a fraction from the depth\n"
  5241. "which has negative value."
  5242. #: flatcamGUI/FlatCAMGUI.py:4354 flatcamGUI/ObjectUI.py:1169
  5243. msgid ""
  5244. "Height of the tool when\n"
  5245. "moving without cutting."
  5246. msgstr ""
  5247. "Height of the tool when\n"
  5248. "moving without cutting."
  5249. #: flatcamGUI/FlatCAMGUI.py:4381 flatcamGUI/ObjectUI.py:1224
  5250. msgid "Feed Rate X-Y:"
  5251. msgstr "Feed Rate X-Y:"
  5252. #: flatcamGUI/FlatCAMGUI.py:4383 flatcamGUI/ObjectUI.py:1227
  5253. msgid ""
  5254. "Cutting speed in the XY\n"
  5255. "plane in units per minute"
  5256. msgstr ""
  5257. "Cutting speed in the XY\n"
  5258. "plane in units per minute"
  5259. #: flatcamGUI/FlatCAMGUI.py:4391
  5260. msgid "Feed Rate Z:"
  5261. msgstr "Feed Rate Z:"
  5262. #: flatcamGUI/FlatCAMGUI.py:4393
  5263. msgid ""
  5264. "Cutting speed in the XY\n"
  5265. "plane in units per minute.\n"
  5266. "It is called also Plunge."
  5267. msgstr ""
  5268. "Cutting speed in the XY\n"
  5269. "plane in units per minute.\n"
  5270. "It is called also Plunge."
  5271. #: flatcamGUI/FlatCAMGUI.py:4402 flatcamGUI/ObjectUI.py:750
  5272. #: flatcamGUI/ObjectUI.py:1276
  5273. msgid "Spindle speed:"
  5274. msgstr "Spindle speed:"
  5275. #: flatcamGUI/FlatCAMGUI.py:4431
  5276. msgid ""
  5277. "The postprocessor file that dictates\n"
  5278. "Machine Code output."
  5279. msgstr ""
  5280. "The postprocessor file that dictates\n"
  5281. "Machine Code output."
  5282. #: flatcamGUI/FlatCAMGUI.py:4447
  5283. msgid "Geometry Adv. Options"
  5284. msgstr "Geometry Adv. Options"
  5285. #: flatcamGUI/FlatCAMGUI.py:4454
  5286. msgid ""
  5287. "Parameters to create a CNC Job object\n"
  5288. "tracing the contours of a Geometry object."
  5289. msgstr ""
  5290. "Parameters to create a CNC Job object\n"
  5291. "tracing the contours of a Geometry object."
  5292. #: flatcamGUI/FlatCAMGUI.py:4474
  5293. msgid ""
  5294. "Height of the tool just after starting the work.\n"
  5295. "Delete the value if you don't need this feature."
  5296. msgstr ""
  5297. "Height of the tool just after starting the work.\n"
  5298. "Delete the value if you don't need this feature."
  5299. #: flatcamGUI/FlatCAMGUI.py:4494
  5300. msgid ""
  5301. "Cutting speed in the XY plane\n"
  5302. "(in units per minute).\n"
  5303. "This is for the rapid move G00.\n"
  5304. "It is useful only for Marlin,\n"
  5305. "ignore for any other cases."
  5306. msgstr ""
  5307. "Cutting speed in the XY plane\n"
  5308. "(in units per minute).\n"
  5309. "This is for the rapid move G00.\n"
  5310. "It is useful only for Marlin,\n"
  5311. "ignore for any other cases."
  5312. #: flatcamGUI/FlatCAMGUI.py:4506
  5313. msgid "Re-cut 1st pt."
  5314. msgstr "Re-cut 1st pt."
  5315. #: flatcamGUI/FlatCAMGUI.py:4508 flatcamGUI/ObjectUI.py:1267
  5316. msgid ""
  5317. "In order to remove possible\n"
  5318. "copper leftovers where first cut\n"
  5319. "meet with last cut, we generate an\n"
  5320. "extended cut over the first cut section."
  5321. msgstr ""
  5322. "In order to remove possible\n"
  5323. "copper leftovers where first cut\n"
  5324. "meet with last cut, we generate an\n"
  5325. "extended cut over the first cut section."
  5326. #: flatcamGUI/FlatCAMGUI.py:4547
  5327. msgid "Seg. X size:"
  5328. msgstr "Seg. X size:"
  5329. #: flatcamGUI/FlatCAMGUI.py:4549
  5330. msgid ""
  5331. "The size of the trace segment on the X axis.\n"
  5332. "Useful for auto-leveling.\n"
  5333. "A value of 0 means no segmentation on the X axis."
  5334. msgstr ""
  5335. "The size of the trace segment on the X axis.\n"
  5336. "Useful for auto-leveling.\n"
  5337. "A value of 0 means no segmentation on the X axis."
  5338. #: flatcamGUI/FlatCAMGUI.py:4558
  5339. msgid "Seg. Y size:"
  5340. msgstr "Seg. Y size:"
  5341. #: flatcamGUI/FlatCAMGUI.py:4560
  5342. msgid ""
  5343. "The size of the trace segment on the Y axis.\n"
  5344. "Useful for auto-leveling.\n"
  5345. "A value of 0 means no segmentation on the Y axis."
  5346. msgstr ""
  5347. "The size of the trace segment on the Y axis.\n"
  5348. "Useful for auto-leveling.\n"
  5349. "A value of 0 means no segmentation on the Y axis."
  5350. #: flatcamGUI/FlatCAMGUI.py:4576
  5351. msgid "CNC Job General"
  5352. msgstr "CNC Job General"
  5353. #: flatcamGUI/FlatCAMGUI.py:4589 flatcamGUI/ObjectUI.py:615
  5354. #: flatcamGUI/ObjectUI.py:945 flatcamGUI/ObjectUI.py:1499
  5355. msgid "Plot Object"
  5356. msgstr "Plot Object"
  5357. #: flatcamGUI/FlatCAMGUI.py:4596
  5358. msgid "Plot kind:"
  5359. msgstr "Plot kind:"
  5360. #: flatcamGUI/FlatCAMGUI.py:4598 flatcamGUI/ObjectUI.py:1421
  5361. msgid ""
  5362. "This selects the kind of geometries on the canvas to plot.\n"
  5363. "Those can be either of type 'Travel' which means the moves\n"
  5364. "above the work piece or it can be of type 'Cut',\n"
  5365. "which means the moves that cut into the material."
  5366. msgstr ""
  5367. "This selects the kind of geometries on the canvas to plot.\n"
  5368. "Those can be either of type 'Travel' which means the moves\n"
  5369. "above the work piece or it can be of type 'Cut',\n"
  5370. "which means the moves that cut into the material."
  5371. #: flatcamGUI/FlatCAMGUI.py:4606 flatcamGUI/ObjectUI.py:1430
  5372. msgid "Travel"
  5373. msgstr "Travel"
  5374. #: flatcamGUI/FlatCAMGUI.py:4617
  5375. msgid ""
  5376. "The number of circle steps for <b>GCode</b> \n"
  5377. "circle and arc shapes linear approximation."
  5378. msgstr ""
  5379. "The number of circle steps for <b>GCode</b> \n"
  5380. "circle and arc shapes linear approximation."
  5381. #: flatcamGUI/FlatCAMGUI.py:4627
  5382. msgid ""
  5383. "Diameter of the tool to be\n"
  5384. "rendered in the plot."
  5385. msgstr ""
  5386. "Diameter of the tool to be\n"
  5387. "rendered in the plot."
  5388. #: flatcamGUI/FlatCAMGUI.py:4635
  5389. msgid "Coords dec.:"
  5390. msgstr "Coords dec.:"
  5391. #: flatcamGUI/FlatCAMGUI.py:4637
  5392. msgid ""
  5393. "The number of decimals to be used for \n"
  5394. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  5395. msgstr ""
  5396. "The number of decimals to be used for \n"
  5397. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  5398. #: flatcamGUI/FlatCAMGUI.py:4645
  5399. msgid "Feedrate dec.:"
  5400. msgstr "Feedrate dec.:"
  5401. #: flatcamGUI/FlatCAMGUI.py:4647
  5402. msgid ""
  5403. "The number of decimals to be used for \n"
  5404. "the Feedrate parameter in CNC code (GCODE, etc.)"
  5405. msgstr ""
  5406. "The number of decimals to be used for \n"
  5407. "the Feedrate parameter in CNC code (GCODE, etc.)"
  5408. #: flatcamGUI/FlatCAMGUI.py:4662
  5409. msgid "CNC Job Options"
  5410. msgstr "CNC Job Options"
  5411. #: flatcamGUI/FlatCAMGUI.py:4665 flatcamGUI/FlatCAMGUI.py:4706
  5412. msgid "<b>Export G-Code:</b>"
  5413. msgstr "<b>Export G-Code:</b>"
  5414. #: flatcamGUI/FlatCAMGUI.py:4667 flatcamGUI/FlatCAMGUI.py:4708
  5415. #: flatcamGUI/ObjectUI.py:1535
  5416. msgid ""
  5417. "Export and save G-Code to\n"
  5418. "make this object to a file."
  5419. msgstr ""
  5420. "Export and save G-Code to\n"
  5421. "make this object to a file."
  5422. #: flatcamGUI/FlatCAMGUI.py:4673
  5423. msgid "Prepend to G-Code:"
  5424. msgstr "Prepend to G-Code:"
  5425. #: flatcamGUI/FlatCAMGUI.py:4675
  5426. msgid ""
  5427. "Type here any G-Code commands you would\n"
  5428. "like to add at the beginning of the G-Code file."
  5429. msgstr ""
  5430. "Type here any G-Code commands you would\n"
  5431. "like to add at the beginning of the G-Code file."
  5432. #: flatcamGUI/FlatCAMGUI.py:4684
  5433. msgid "Append to G-Code:"
  5434. msgstr "Append to G-Code:"
  5435. #: flatcamGUI/FlatCAMGUI.py:4686 flatcamGUI/ObjectUI.py:1557
  5436. msgid ""
  5437. "Type here any G-Code commands you would\n"
  5438. "like to append to the generated file.\n"
  5439. "I.e.: M2 (End of program)"
  5440. msgstr ""
  5441. "Type here any G-Code commands you would\n"
  5442. "like to append to the generated file.\n"
  5443. "I.e.: M2 (End of program)"
  5444. #: flatcamGUI/FlatCAMGUI.py:4703
  5445. msgid "CNC Job Adv. Options"
  5446. msgstr "CNC Job Adv. Options"
  5447. #: flatcamGUI/FlatCAMGUI.py:4714 flatcamGUI/ObjectUI.py:1575
  5448. msgid "Toolchange G-Code:"
  5449. msgstr "Toolchange G-Code:"
  5450. #: flatcamGUI/FlatCAMGUI.py:4716
  5451. msgid ""
  5452. "Type here any G-Code commands you would\n"
  5453. "like to be executed when Toolchange event is encountered.\n"
  5454. "This will constitute a Custom Toolchange GCode,\n"
  5455. "or a Toolchange Macro."
  5456. msgstr ""
  5457. "Type here any G-Code commands you would\n"
  5458. "like to be executed when Toolchange event is encountered.\n"
  5459. "This will constitute a Custom Toolchange GCode,\n"
  5460. "or a Toolchange Macro."
  5461. #: flatcamGUI/FlatCAMGUI.py:4730 flatcamGUI/ObjectUI.py:1597
  5462. msgid "Use Toolchange Macro"
  5463. msgstr "Use Toolchange Macro"
  5464. #: flatcamGUI/FlatCAMGUI.py:4732 flatcamGUI/ObjectUI.py:1600
  5465. msgid ""
  5466. "Check this box if you want to use\n"
  5467. "a Custom Toolchange GCode (macro)."
  5468. msgstr ""
  5469. "Check this box if you want to use\n"
  5470. "a Custom Toolchange GCode (macro)."
  5471. #: flatcamGUI/FlatCAMGUI.py:4744 flatcamGUI/ObjectUI.py:1616
  5472. msgid ""
  5473. "A list of the FlatCAM variables that can be used\n"
  5474. "in the Toolchange event.\n"
  5475. "They have to be surrounded by the '%' symbol"
  5476. msgstr ""
  5477. "A list of the FlatCAM variables that can be used\n"
  5478. "in the Toolchange event.\n"
  5479. "They have to be surrounded by the '%' symbol"
  5480. #: flatcamGUI/FlatCAMGUI.py:4751 flatcamGUI/ObjectUI.py:1624
  5481. msgid "Parameters"
  5482. msgstr "Parameters"
  5483. #: flatcamGUI/FlatCAMGUI.py:4754 flatcamGUI/ObjectUI.py:1627
  5484. msgid "FlatCAM CNC parameters"
  5485. msgstr "FlatCAM CNC parameters"
  5486. #: flatcamGUI/FlatCAMGUI.py:4755 flatcamGUI/ObjectUI.py:1628
  5487. msgid "tool = tool number"
  5488. msgstr "tool = tool number"
  5489. #: flatcamGUI/FlatCAMGUI.py:4756 flatcamGUI/ObjectUI.py:1629
  5490. msgid "tooldia = tool diameter"
  5491. msgstr "tooldia = tool diameter"
  5492. #: flatcamGUI/FlatCAMGUI.py:4757 flatcamGUI/ObjectUI.py:1630
  5493. msgid "t_drills = for Excellon, total number of drills"
  5494. msgstr "t_drills = for Excellon, total number of drills"
  5495. #: flatcamGUI/FlatCAMGUI.py:4758 flatcamGUI/ObjectUI.py:1631
  5496. msgid "x_toolchange = X coord for Toolchange"
  5497. msgstr "x_toolchange = X coord for Toolchange"
  5498. #: flatcamGUI/FlatCAMGUI.py:4759 flatcamGUI/ObjectUI.py:1632
  5499. msgid "y_toolchange = Y coord for Toolchange"
  5500. msgstr "y_toolchange = Y coord for Toolchange"
  5501. #: flatcamGUI/FlatCAMGUI.py:4760 flatcamGUI/ObjectUI.py:1633
  5502. msgid "z_toolchange = Z coord for Toolchange"
  5503. msgstr "z_toolchange = Z coord for Toolchange"
  5504. #: flatcamGUI/FlatCAMGUI.py:4761
  5505. msgid "z_cut = Z depth for the cut"
  5506. msgstr "z_cut = Z depth for the cut"
  5507. #: flatcamGUI/FlatCAMGUI.py:4762
  5508. msgid "z_move = Z height for travel"
  5509. msgstr "z_move = Z height for travel"
  5510. #: flatcamGUI/FlatCAMGUI.py:4763 flatcamGUI/ObjectUI.py:1636
  5511. msgid "z_depthpercut = the step value for multidepth cut"
  5512. msgstr "z_depthpercut = the step value for multidepth cut"
  5513. #: flatcamGUI/FlatCAMGUI.py:4764 flatcamGUI/ObjectUI.py:1637
  5514. msgid "spindlesspeed = the value for the spindle speed"
  5515. msgstr "spindlesspeed = the value for the spindle speed"
  5516. #: flatcamGUI/FlatCAMGUI.py:4765 flatcamGUI/ObjectUI.py:1638
  5517. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  5518. msgstr "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  5519. #: flatcamGUI/FlatCAMGUI.py:4786
  5520. msgid "NCC Tool Options"
  5521. msgstr "NCC Tool Options"
  5522. #: flatcamGUI/FlatCAMGUI.py:4789 flatcamGUI/FlatCAMGUI.py:4890
  5523. #: flatcamGUI/FlatCAMGUI.py:4960 flatcamGUI/FlatCAMGUI.py:5019
  5524. #: flatcamGUI/FlatCAMGUI.py:5122 flatcamGUI/FlatCAMGUI.py:5183
  5525. #: flatcamGUI/FlatCAMGUI.py:5382 flatcamGUI/FlatCAMGUI.py:5509
  5526. msgid "<b>Parameters:</b>"
  5527. msgstr "<b>Parameters:</b>"
  5528. #: flatcamGUI/FlatCAMGUI.py:4799 flatcamGUI/FlatCAMGUI.py:5520
  5529. msgid "Tools dia:"
  5530. msgstr "Tools dia:"
  5531. #: flatcamGUI/FlatCAMGUI.py:4801
  5532. msgid "Diameters of the cutting tools, separated by ','"
  5533. msgstr "Diameters of the cutting tools, separated by ','"
  5534. #: flatcamGUI/FlatCAMGUI.py:4809 flatcamTools/ToolNonCopperClear.py:166
  5535. #, python-format
  5536. msgid ""
  5537. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5538. "Example:\n"
  5539. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  5540. "\n"
  5541. "Adjust the value starting with lower values\n"
  5542. "and increasing it if areas that should be cleared are still \n"
  5543. "not cleared.\n"
  5544. "Lower values = faster processing, faster execution on PCB.\n"
  5545. "Higher values = slow processing and slow execution on CNC\n"
  5546. "due of too many paths."
  5547. msgstr ""
  5548. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5549. "Example:\n"
  5550. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  5551. "\n"
  5552. "Adjust the value starting with lower values\n"
  5553. "and increasing it if areas that should be cleared are still \n"
  5554. "not cleared.\n"
  5555. "Lower values = faster processing, faster execution on PCB.\n"
  5556. "Higher values = slow processing and slow execution on CNC\n"
  5557. "due of too many paths."
  5558. #: flatcamGUI/FlatCAMGUI.py:4825 flatcamTools/ToolNonCopperClear.py:182
  5559. msgid "Bounding box margin."
  5560. msgstr "Bounding box margin."
  5561. #: flatcamGUI/FlatCAMGUI.py:4834 flatcamTools/ToolNonCopperClear.py:191
  5562. #: flatcamTools/ToolPaint.py:190
  5563. msgid ""
  5564. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  5565. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  5566. "lines."
  5567. msgstr ""
  5568. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  5569. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  5570. "lines."
  5571. #: flatcamGUI/FlatCAMGUI.py:4866 flatcamTools/ToolNonCopperClear.py:223
  5572. #: flatcamTools/ToolPaint.py:222
  5573. msgid "Rest M.:"
  5574. msgstr "Rest M.:"
  5575. #: flatcamGUI/FlatCAMGUI.py:4868
  5576. msgid ""
  5577. "If checked, use 'rest machining'.\n"
  5578. "Basically it will clear copper outside PCB features,\n"
  5579. "using the biggest tool and continue with the next tools,\n"
  5580. "from bigger to smaller, to clear areas of copper that\n"
  5581. "could not be cleared by previous tool.\n"
  5582. "If not checked, use the standard algorithm."
  5583. msgstr ""
  5584. "If checked, use 'rest machining'.\n"
  5585. "Basically it will clear copper outside PCB features,\n"
  5586. "using the biggest tool and continue with the next tools,\n"
  5587. "from bigger to smaller, to clear areas of copper that\n"
  5588. "could not be cleared by previous tool.\n"
  5589. "If not checked, use the standard algorithm."
  5590. #: flatcamGUI/FlatCAMGUI.py:4887
  5591. msgid "Cutout Tool Options"
  5592. msgstr "Cutout Tool Options"
  5593. #: flatcamGUI/FlatCAMGUI.py:4892 flatcamGUI/ObjectUI.py:473
  5594. msgid ""
  5595. "Create toolpaths to cut around\n"
  5596. "the PCB and separate it from\n"
  5597. "the original board."
  5598. msgstr ""
  5599. "Create toolpaths to cut around\n"
  5600. "the PCB and separate it from\n"
  5601. "the original board."
  5602. #: flatcamGUI/FlatCAMGUI.py:4911
  5603. msgid ""
  5604. "Distance from objects at which\n"
  5605. "to draw the cutout."
  5606. msgstr ""
  5607. "Distance from objects at which\n"
  5608. "to draw the cutout."
  5609. #: flatcamGUI/FlatCAMGUI.py:4918 flatcamTools/ToolCutOut.py:96
  5610. msgid "Gap size:"
  5611. msgstr "Gap size:"
  5612. #: flatcamGUI/FlatCAMGUI.py:4920
  5613. msgid ""
  5614. "Size of the gaps in the toolpath\n"
  5615. "that will remain to hold the\n"
  5616. "board in place."
  5617. msgstr ""
  5618. "Size of the gaps in the toolpath\n"
  5619. "that will remain to hold the\n"
  5620. "board in place."
  5621. #: flatcamGUI/FlatCAMGUI.py:4928 flatcamTools/ToolCutOut.py:125
  5622. msgid "Gaps:"
  5623. msgstr "Gaps:"
  5624. #: flatcamGUI/FlatCAMGUI.py:4930
  5625. msgid ""
  5626. "Number of bridge gaps used for the cutout.\n"
  5627. "There can be maximum 8 bridges/gaps.\n"
  5628. "The choices are:\n"
  5629. "- lr - left + right\n"
  5630. "- tb - top + bottom\n"
  5631. "- 4 - left + right +top + bottom\n"
  5632. "- 2lr - 2*left + 2*right\n"
  5633. "- 2tb - 2*top + 2*bottom\n"
  5634. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  5635. msgstr ""
  5636. "Number of bridge gaps used for the cutout.\n"
  5637. "There can be maximum 8 bridges/gaps.\n"
  5638. "The choices are:\n"
  5639. "- lr - left + right\n"
  5640. "- tb - top + bottom\n"
  5641. "- 4 - left + right +top + bottom\n"
  5642. "- 2lr - 2*left + 2*right\n"
  5643. "- 2tb - 2*top + 2*bottom\n"
  5644. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  5645. #: flatcamGUI/FlatCAMGUI.py:4957
  5646. msgid "2Sided Tool Options"
  5647. msgstr "2Sided Tool Options"
  5648. #: flatcamGUI/FlatCAMGUI.py:4962
  5649. msgid ""
  5650. "A tool to help in creating a double sided\n"
  5651. "PCB using alignment holes."
  5652. msgstr ""
  5653. "A tool to help in creating a double sided\n"
  5654. "PCB using alignment holes."
  5655. #: flatcamGUI/FlatCAMGUI.py:4972 flatcamTools/ToolDblSided.py:235
  5656. msgid "Drill diam.:"
  5657. msgstr "Drill diam.:"
  5658. #: flatcamGUI/FlatCAMGUI.py:4974 flatcamTools/ToolDblSided.py:226
  5659. #: flatcamTools/ToolDblSided.py:237
  5660. msgid "Diameter of the drill for the alignment holes."
  5661. msgstr "Diameter of the drill for the alignment holes."
  5662. #: flatcamGUI/FlatCAMGUI.py:4981
  5663. msgid "X"
  5664. msgstr "X"
  5665. #: flatcamGUI/FlatCAMGUI.py:4982
  5666. msgid "Y"
  5667. msgstr "Y"
  5668. #: flatcamGUI/FlatCAMGUI.py:4983 flatcamTools/ToolDblSided.py:120
  5669. msgid "Mirror Axis:"
  5670. msgstr "Mirror Axis:"
  5671. #: flatcamGUI/FlatCAMGUI.py:4985 flatcamTools/ToolDblSided.py:122
  5672. msgid "Mirror vertically (X) or horizontally (Y)."
  5673. msgstr "Mirror vertically (X) or horizontally (Y)."
  5674. #: flatcamGUI/FlatCAMGUI.py:4994
  5675. msgid "Point"
  5676. msgstr "Point"
  5677. #: flatcamGUI/FlatCAMGUI.py:4995
  5678. msgid "Box"
  5679. msgstr "Box"
  5680. #: flatcamGUI/FlatCAMGUI.py:4996 flatcamTools/ToolDblSided.py:133
  5681. msgid "Axis Ref:"
  5682. msgstr "Axis Ref:"
  5683. #: flatcamGUI/FlatCAMGUI.py:4998
  5684. msgid ""
  5685. "The axis should pass through a <b>point</b> or cut\n"
  5686. " a specified <b>box</b> (in a Geometry object) in \n"
  5687. "the middle."
  5688. msgstr ""
  5689. "The axis should pass through a <b>point</b> or cut\n"
  5690. " a specified <b>box</b> (in a Geometry object) in \n"
  5691. "the middle."
  5692. #: flatcamGUI/FlatCAMGUI.py:5014
  5693. msgid "Paint Tool Options"
  5694. msgstr "Paint Tool Options"
  5695. #: flatcamGUI/FlatCAMGUI.py:5021 flatcamGUI/ObjectUI.py:1370
  5696. msgid ""
  5697. "Creates tool paths to cover the\n"
  5698. "whole area of a polygon (remove\n"
  5699. "all copper). You will be asked\n"
  5700. "to click on the desired polygon."
  5701. msgstr ""
  5702. "Creates tool paths to cover the\n"
  5703. "whole area of a polygon (remove\n"
  5704. "all copper). You will be asked\n"
  5705. "to click on the desired polygon."
  5706. #: flatcamGUI/FlatCAMGUI.py:5045
  5707. msgid ""
  5708. "How much (fraction) of the tool\n"
  5709. "width to overlap each tool pass."
  5710. msgstr ""
  5711. "How much (fraction) of the tool\n"
  5712. "width to overlap each tool pass."
  5713. #: flatcamGUI/FlatCAMGUI.py:5099 flatcamTools/ToolPaint.py:237
  5714. msgid "Selection:"
  5715. msgstr "Selection:"
  5716. #: flatcamGUI/FlatCAMGUI.py:5101
  5717. msgid "How to select the polygons to paint."
  5718. msgstr "How to select the polygons to paint."
  5719. #: flatcamGUI/FlatCAMGUI.py:5105
  5720. msgid "Single"
  5721. msgstr "Single"
  5722. #: flatcamGUI/FlatCAMGUI.py:5119
  5723. msgid "Film Tool Options"
  5724. msgstr "Film Tool Options"
  5725. #: flatcamGUI/FlatCAMGUI.py:5124
  5726. msgid ""
  5727. "Create a PCB film from a Gerber or Geometry\n"
  5728. "FlatCAM object.\n"
  5729. "The file is saved in SVG format."
  5730. msgstr ""
  5731. "Create a PCB film from a Gerber or Geometry\n"
  5732. "FlatCAM object.\n"
  5733. "The file is saved in SVG format."
  5734. #: flatcamGUI/FlatCAMGUI.py:5133
  5735. msgid "Pos"
  5736. msgstr "Pos"
  5737. #: flatcamGUI/FlatCAMGUI.py:5134
  5738. msgid "Neg"
  5739. msgstr "Neg"
  5740. #: flatcamGUI/FlatCAMGUI.py:5135 flatcamTools/ToolFilm.py:116
  5741. msgid "Film Type:"
  5742. msgstr "Film Type:"
  5743. #: flatcamGUI/FlatCAMGUI.py:5137 flatcamTools/ToolFilm.py:118
  5744. msgid ""
  5745. "Generate a Positive black film or a Negative film.\n"
  5746. "Positive means that it will print the features\n"
  5747. "with black on a white canvas.\n"
  5748. "Negative means that it will print the features\n"
  5749. "with white on a black canvas.\n"
  5750. "The Film format is SVG."
  5751. msgstr ""
  5752. "Generate a Positive black film or a Negative film.\n"
  5753. "Positive means that it will print the features\n"
  5754. "with black on a white canvas.\n"
  5755. "Negative means that it will print the features\n"
  5756. "with white on a black canvas.\n"
  5757. "The Film format is SVG."
  5758. #: flatcamGUI/FlatCAMGUI.py:5148 flatcamTools/ToolFilm.py:130
  5759. msgid "Border:"
  5760. msgstr "Border:"
  5761. #: flatcamGUI/FlatCAMGUI.py:5150 flatcamTools/ToolFilm.py:132
  5762. msgid ""
  5763. "Specify a border around the object.\n"
  5764. "Only for negative film.\n"
  5765. "It helps if we use as a Box Object the same \n"
  5766. "object as in Film Object. It will create a thick\n"
  5767. "black bar around the actual print allowing for a\n"
  5768. "better delimitation of the outline features which are of\n"
  5769. "white color like the rest and which may confound with the\n"
  5770. "surroundings if not for this border."
  5771. msgstr ""
  5772. "Specify a border around the object.\n"
  5773. "Only for negative film.\n"
  5774. "It helps if we use as a Box Object the same \n"
  5775. "object as in Film Object. It will create a thick\n"
  5776. "black bar around the actual print allowing for a\n"
  5777. "better delimitation of the outline features which are of\n"
  5778. "white color like the rest and which may confound with the\n"
  5779. "surroundings if not for this border."
  5780. #: flatcamGUI/FlatCAMGUI.py:5163 flatcamTools/ToolFilm.py:144
  5781. msgid "Scale Stroke:"
  5782. msgstr "Scale Stroke:"
  5783. #: flatcamGUI/FlatCAMGUI.py:5165 flatcamTools/ToolFilm.py:146
  5784. msgid ""
  5785. "Scale the line stroke thickness of each feature in the SVG file.\n"
  5786. "It means that the line that envelope each SVG feature will be thicker or "
  5787. "thinner,\n"
  5788. "therefore the fine features may be more affected by this parameter."
  5789. msgstr ""
  5790. "Scale the line stroke thickness of each feature in the SVG file.\n"
  5791. "It means that the line that envelope each SVG feature will be thicker or "
  5792. "thinner,\n"
  5793. "therefore the fine features may be more affected by this parameter."
  5794. #: flatcamGUI/FlatCAMGUI.py:5180
  5795. msgid "Panelize Tool Options"
  5796. msgstr "Panelize Tool Options"
  5797. #: flatcamGUI/FlatCAMGUI.py:5185
  5798. msgid ""
  5799. "Create an object that contains an array of (x, y) elements,\n"
  5800. "each element is a copy of the source object spaced\n"
  5801. "at a X distance, Y distance of each other."
  5802. msgstr ""
  5803. "Create an object that contains an array of (x, y) elements,\n"
  5804. "each element is a copy of the source object spaced\n"
  5805. "at a X distance, Y distance of each other."
  5806. #: flatcamGUI/FlatCAMGUI.py:5196 flatcamTools/ToolPanelize.py:113
  5807. msgid "Spacing cols:"
  5808. msgstr "Spacing cols:"
  5809. #: flatcamGUI/FlatCAMGUI.py:5198 flatcamTools/ToolPanelize.py:115
  5810. msgid ""
  5811. "Spacing between columns of the desired panel.\n"
  5812. "In current units."
  5813. msgstr ""
  5814. "Spacing between columns of the desired panel.\n"
  5815. "In current units."
  5816. #: flatcamGUI/FlatCAMGUI.py:5206 flatcamTools/ToolPanelize.py:122
  5817. msgid "Spacing rows:"
  5818. msgstr "Spacing rows:"
  5819. #: flatcamGUI/FlatCAMGUI.py:5208 flatcamTools/ToolPanelize.py:124
  5820. msgid ""
  5821. "Spacing between rows of the desired panel.\n"
  5822. "In current units."
  5823. msgstr ""
  5824. "Spacing between rows of the desired panel.\n"
  5825. "In current units."
  5826. #: flatcamGUI/FlatCAMGUI.py:5216 flatcamTools/ToolPanelize.py:131
  5827. msgid "Columns:"
  5828. msgstr "Columns:"
  5829. #: flatcamGUI/FlatCAMGUI.py:5218 flatcamTools/ToolPanelize.py:133
  5830. msgid "Number of columns of the desired panel"
  5831. msgstr "Number of columns of the desired panel"
  5832. #: flatcamGUI/FlatCAMGUI.py:5225 flatcamTools/ToolPanelize.py:139
  5833. msgid "Rows:"
  5834. msgstr "Rows:"
  5835. #: flatcamGUI/FlatCAMGUI.py:5227 flatcamTools/ToolPanelize.py:141
  5836. msgid "Number of rows of the desired panel"
  5837. msgstr "Number of rows of the desired panel"
  5838. #: flatcamGUI/FlatCAMGUI.py:5233
  5839. msgid "Gerber"
  5840. msgstr "Gerber"
  5841. #: flatcamGUI/FlatCAMGUI.py:5234
  5842. msgid "Geo"
  5843. msgstr "Geo"
  5844. #: flatcamGUI/FlatCAMGUI.py:5235 flatcamTools/ToolPanelize.py:148
  5845. msgid "Panel Type:"
  5846. msgstr "Panel Type:"
  5847. #: flatcamGUI/FlatCAMGUI.py:5237
  5848. msgid ""
  5849. "Choose the type of object for the panel object:\n"
  5850. "- Gerber\n"
  5851. "- Geometry"
  5852. msgstr ""
  5853. "Choose the type of object for the panel object:\n"
  5854. "- Gerber\n"
  5855. "- Geometry"
  5856. #: flatcamGUI/FlatCAMGUI.py:5246
  5857. msgid "Constrain within:"
  5858. msgstr "Constrain within:"
  5859. #: flatcamGUI/FlatCAMGUI.py:5248 flatcamTools/ToolPanelize.py:160
  5860. msgid ""
  5861. "Area define by DX and DY within to constrain the panel.\n"
  5862. "DX and DY values are in current units.\n"
  5863. "Regardless of how many columns and rows are desired,\n"
  5864. "the final panel will have as many columns and rows as\n"
  5865. "they fit completely within selected area."
  5866. msgstr ""
  5867. "Area define by DX and DY within to constrain the panel.\n"
  5868. "DX and DY values are in current units.\n"
  5869. "Regardless of how many columns and rows are desired,\n"
  5870. "the final panel will have as many columns and rows as\n"
  5871. "they fit completely within selected area."
  5872. #: flatcamGUI/FlatCAMGUI.py:5257 flatcamTools/ToolPanelize.py:169
  5873. msgid "Width (DX):"
  5874. msgstr "Width (DX):"
  5875. #: flatcamGUI/FlatCAMGUI.py:5259 flatcamTools/ToolPanelize.py:171
  5876. msgid ""
  5877. "The width (DX) within which the panel must fit.\n"
  5878. "In current units."
  5879. msgstr ""
  5880. "The width (DX) within which the panel must fit.\n"
  5881. "In current units."
  5882. #: flatcamGUI/FlatCAMGUI.py:5266 flatcamTools/ToolPanelize.py:177
  5883. msgid "Height (DY):"
  5884. msgstr "Height (DY):"
  5885. #: flatcamGUI/FlatCAMGUI.py:5268 flatcamTools/ToolPanelize.py:179
  5886. msgid ""
  5887. "The height (DY)within which the panel must fit.\n"
  5888. "In current units."
  5889. msgstr ""
  5890. "The height (DY)within which the panel must fit.\n"
  5891. "In current units."
  5892. #: flatcamGUI/FlatCAMGUI.py:5282
  5893. msgid "Calculators Tool Options"
  5894. msgstr "Calculators Tool Options"
  5895. #: flatcamGUI/FlatCAMGUI.py:5285
  5896. msgid "<b>V-Shape Tool Calculator:</b>"
  5897. msgstr "<b>V-Shape Tool Calculator:</b>"
  5898. #: flatcamGUI/FlatCAMGUI.py:5287
  5899. msgid ""
  5900. "Calculate the tool diameter for a given V-shape tool,\n"
  5901. "having the tip diameter, tip angle and\n"
  5902. "depth-of-cut as parameters."
  5903. msgstr ""
  5904. "Calculate the tool diameter for a given V-shape tool,\n"
  5905. "having the tip diameter, tip angle and\n"
  5906. "depth-of-cut as parameters."
  5907. #: flatcamGUI/FlatCAMGUI.py:5298 flatcamTools/ToolCalculators.py:94
  5908. msgid "Tip Diameter:"
  5909. msgstr "Tip Diameter:"
  5910. #: flatcamGUI/FlatCAMGUI.py:5300
  5911. msgid ""
  5912. "This is the tool tip diameter.\n"
  5913. "It is specified by manufacturer."
  5914. msgstr ""
  5915. "This is the tool tip diameter.\n"
  5916. "It is specified by manufacturer."
  5917. #: flatcamGUI/FlatCAMGUI.py:5308
  5918. msgid "Tip angle:"
  5919. msgstr "Tip angle:"
  5920. #: flatcamGUI/FlatCAMGUI.py:5310
  5921. msgid ""
  5922. "This is the angle on the tip of the tool.\n"
  5923. "It is specified by manufacturer."
  5924. msgstr ""
  5925. "This is the angle on the tip of the tool.\n"
  5926. "It is specified by manufacturer."
  5927. #: flatcamGUI/FlatCAMGUI.py:5320
  5928. msgid ""
  5929. "This is depth to cut into material.\n"
  5930. "In the CNCJob object it is the CutZ parameter."
  5931. msgstr ""
  5932. "This is depth to cut into material.\n"
  5933. "In the CNCJob object it is the CutZ parameter."
  5934. #: flatcamGUI/FlatCAMGUI.py:5327
  5935. msgid "<b>ElectroPlating Calculator:</b>"
  5936. msgstr "<b>ElectroPlating Calculator:</b>"
  5937. #: flatcamGUI/FlatCAMGUI.py:5329 flatcamTools/ToolCalculators.py:152
  5938. msgid ""
  5939. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  5940. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  5941. "chloride."
  5942. msgstr ""
  5943. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  5944. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  5945. "chloride."
  5946. #: flatcamGUI/FlatCAMGUI.py:5339 flatcamTools/ToolCalculators.py:161
  5947. msgid "Board Length:"
  5948. msgstr "Board Length:"
  5949. #: flatcamGUI/FlatCAMGUI.py:5341 flatcamTools/ToolCalculators.py:165
  5950. msgid "This is the board length. In centimeters."
  5951. msgstr "This is the board length. In centimeters."
  5952. #: flatcamGUI/FlatCAMGUI.py:5347 flatcamTools/ToolCalculators.py:167
  5953. msgid "Board Width:"
  5954. msgstr "Board Width:"
  5955. #: flatcamGUI/FlatCAMGUI.py:5349 flatcamTools/ToolCalculators.py:171
  5956. msgid "This is the board width.In centimeters."
  5957. msgstr "This is the board width.In centimeters."
  5958. #: flatcamGUI/FlatCAMGUI.py:5354 flatcamTools/ToolCalculators.py:173
  5959. msgid "Current Density:"
  5960. msgstr "Current Density:"
  5961. #: flatcamGUI/FlatCAMGUI.py:5357 flatcamTools/ToolCalculators.py:177
  5962. msgid ""
  5963. "Current density to pass through the board. \n"
  5964. "In Amps per Square Feet ASF."
  5965. msgstr ""
  5966. "Current density to pass through the board. \n"
  5967. "In Amps per Square Feet ASF."
  5968. #: flatcamGUI/FlatCAMGUI.py:5363 flatcamTools/ToolCalculators.py:181
  5969. msgid "Copper Growth:"
  5970. msgstr "Copper Growth:"
  5971. #: flatcamGUI/FlatCAMGUI.py:5366 flatcamTools/ToolCalculators.py:185
  5972. msgid ""
  5973. "How thick the copper growth is intended to be.\n"
  5974. "In microns."
  5975. msgstr ""
  5976. "How thick the copper growth is intended to be.\n"
  5977. "In microns."
  5978. #: flatcamGUI/FlatCAMGUI.py:5379
  5979. msgid "Transform Tool Options"
  5980. msgstr "Transform Tool Options"
  5981. #: flatcamGUI/FlatCAMGUI.py:5384
  5982. msgid ""
  5983. "Various transformations that can be applied\n"
  5984. "on a FlatCAM object."
  5985. msgstr ""
  5986. "Various transformations that can be applied\n"
  5987. "on a FlatCAM object."
  5988. #: flatcamGUI/FlatCAMGUI.py:5394
  5989. msgid "Rotate Angle:"
  5990. msgstr "Rotate Angle:"
  5991. #: flatcamGUI/FlatCAMGUI.py:5396
  5992. msgid "Angle for rotation. In degrees."
  5993. msgstr "Angle for rotation. In degrees."
  5994. #: flatcamGUI/FlatCAMGUI.py:5403
  5995. msgid "Skew_X angle:"
  5996. msgstr "Skew_X angle:"
  5997. #: flatcamGUI/FlatCAMGUI.py:5405
  5998. msgid "Angle for Skew/Shear on X axis. In degrees."
  5999. msgstr "Angle for Skew/Shear on X axis. In degrees."
  6000. #: flatcamGUI/FlatCAMGUI.py:5412
  6001. msgid "Skew_Y angle:"
  6002. msgstr "Skew_Y angle:"
  6003. #: flatcamGUI/FlatCAMGUI.py:5414
  6004. msgid "Angle for Skew/Shear on Y axis. In degrees."
  6005. msgstr "Angle for Skew/Shear on Y axis. In degrees."
  6006. #: flatcamGUI/FlatCAMGUI.py:5421
  6007. msgid "Scale_X factor:"
  6008. msgstr "Scale_X factor:"
  6009. #: flatcamGUI/FlatCAMGUI.py:5423
  6010. msgid "Factor for scaling on X axis."
  6011. msgstr "Factor for scaling on X axis."
  6012. #: flatcamGUI/FlatCAMGUI.py:5430
  6013. msgid "Scale_Y factor:"
  6014. msgstr "Scale_Y factor:"
  6015. #: flatcamGUI/FlatCAMGUI.py:5432
  6016. msgid "Factor for scaling on Y axis."
  6017. msgstr "Factor for scaling on Y axis."
  6018. #: flatcamGUI/FlatCAMGUI.py:5440
  6019. msgid ""
  6020. "Scale the selected object(s)\n"
  6021. "using the Scale_X factor for both axis."
  6022. msgstr ""
  6023. "Scale the selected object(s)\n"
  6024. "using the Scale_X factor for both axis."
  6025. #: flatcamGUI/FlatCAMGUI.py:5448 flatcamTools/ToolTransform.py:210
  6026. msgid ""
  6027. "Scale the selected object(s)\n"
  6028. "using the origin reference when checked,\n"
  6029. "and the center of the biggest bounding box\n"
  6030. "of the selected objects when unchecked."
  6031. msgstr ""
  6032. "Scale the selected object(s)\n"
  6033. "using the origin reference when checked,\n"
  6034. "and the center of the biggest bounding box\n"
  6035. "of the selected objects when unchecked."
  6036. #: flatcamGUI/FlatCAMGUI.py:5457
  6037. msgid "Offset_X val:"
  6038. msgstr "Offset_X val:"
  6039. #: flatcamGUI/FlatCAMGUI.py:5459
  6040. msgid "Distance to offset on X axis. In current units."
  6041. msgstr "Distance to offset on X axis. In current units."
  6042. #: flatcamGUI/FlatCAMGUI.py:5466
  6043. msgid "Offset_Y val:"
  6044. msgstr "Offset_Y val:"
  6045. #: flatcamGUI/FlatCAMGUI.py:5468
  6046. msgid "Distance to offset on Y axis. In current units."
  6047. msgstr "Distance to offset on Y axis. In current units."
  6048. #: flatcamGUI/FlatCAMGUI.py:5474
  6049. msgid "Mirror Reference"
  6050. msgstr "Mirror Reference"
  6051. #: flatcamGUI/FlatCAMGUI.py:5476 flatcamTools/ToolTransform.py:314
  6052. msgid ""
  6053. "Flip the selected object(s)\n"
  6054. "around the point in Point Entry Field.\n"
  6055. "\n"
  6056. "The point coordinates can be captured by\n"
  6057. "left click on canvas together with pressing\n"
  6058. "SHIFT key. \n"
  6059. "Then click Add button to insert coordinates.\n"
  6060. "Or enter the coords in format (x, y) in the\n"
  6061. "Point Entry field and click Flip on X(Y)"
  6062. msgstr ""
  6063. "Flip the selected object(s)\n"
  6064. "around the point in Point Entry Field.\n"
  6065. "\n"
  6066. "The point coordinates can be captured by\n"
  6067. "left click on canvas together with pressing\n"
  6068. "SHIFT key. \n"
  6069. "Then click Add button to insert coordinates.\n"
  6070. "Or enter the coords in format (x, y) in the\n"
  6071. "Point Entry field and click Flip on X(Y)"
  6072. #: flatcamGUI/FlatCAMGUI.py:5487
  6073. msgid " Mirror Ref. Point:"
  6074. msgstr " Mirror Ref. Point:"
  6075. #: flatcamGUI/FlatCAMGUI.py:5489 flatcamTools/ToolTransform.py:327
  6076. msgid ""
  6077. "Coordinates in format (x, y) used as reference for mirroring.\n"
  6078. "The 'x' in (x, y) will be used when using Flip on X and\n"
  6079. "the 'y' in (x, y) will be used when using Flip on Y and"
  6080. msgstr ""
  6081. "Coordinates in format (x, y) used as reference for mirroring.\n"
  6082. "The 'x' in (x, y) will be used when using Flip on X and\n"
  6083. "the 'y' in (x, y) will be used when using Flip on Y and"
  6084. #: flatcamGUI/FlatCAMGUI.py:5506
  6085. msgid "SolderPaste Tool Options"
  6086. msgstr "SolderPaste Tool Options"
  6087. #: flatcamGUI/FlatCAMGUI.py:5511
  6088. msgid ""
  6089. "A tool to create GCode for dispensing\n"
  6090. "solder paste onto a PCB."
  6091. msgstr ""
  6092. "A tool to create GCode for dispensing\n"
  6093. "solder paste onto a PCB."
  6094. #: flatcamGUI/FlatCAMGUI.py:5522
  6095. msgid "Diameters of nozzle tools, separated by ','"
  6096. msgstr "Diameters of nozzle tools, separated by ','"
  6097. #: flatcamGUI/FlatCAMGUI.py:5529
  6098. msgid "<b>New Nozzle Dia:</b>"
  6099. msgstr "<b>New Nozzle Dia:</b>"
  6100. #: flatcamGUI/FlatCAMGUI.py:5531 flatcamTools/ToolSolderPaste.py:103
  6101. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  6102. msgstr "Diameter for the new Nozzle tool to add in the Tool Table"
  6103. #: flatcamGUI/FlatCAMGUI.py:5539 flatcamTools/ToolSolderPaste.py:166
  6104. msgid "Z Dispense Start:"
  6105. msgstr "Z Dispense Start:"
  6106. #: flatcamGUI/FlatCAMGUI.py:5541 flatcamTools/ToolSolderPaste.py:168
  6107. msgid "The height (Z) when solder paste dispensing starts."
  6108. msgstr "The height (Z) when solder paste dispensing starts."
  6109. #: flatcamGUI/FlatCAMGUI.py:5548 flatcamTools/ToolSolderPaste.py:174
  6110. msgid "Z Dispense:"
  6111. msgstr "Z Dispense:"
  6112. #: flatcamGUI/FlatCAMGUI.py:5550 flatcamTools/ToolSolderPaste.py:176
  6113. msgid "The height (Z) when doing solder paste dispensing."
  6114. msgstr "The height (Z) when doing solder paste dispensing."
  6115. #: flatcamGUI/FlatCAMGUI.py:5557 flatcamTools/ToolSolderPaste.py:183
  6116. msgid "Z Dispense Stop:"
  6117. msgstr "Z Dispense Stop:"
  6118. #: flatcamGUI/FlatCAMGUI.py:5559 flatcamTools/ToolSolderPaste.py:185
  6119. msgid "The height (Z) when solder paste dispensing stops."
  6120. msgstr "The height (Z) when solder paste dispensing stops."
  6121. #: flatcamGUI/FlatCAMGUI.py:5566 flatcamTools/ToolSolderPaste.py:191
  6122. msgid "Z Travel:"
  6123. msgstr "Z Travel:"
  6124. #: flatcamGUI/FlatCAMGUI.py:5568 flatcamTools/ToolSolderPaste.py:193
  6125. msgid ""
  6126. "The height (Z) for travel between pads\n"
  6127. "(without dispensing solder paste)."
  6128. msgstr ""
  6129. "The height (Z) for travel between pads\n"
  6130. "(without dispensing solder paste)."
  6131. #: flatcamGUI/FlatCAMGUI.py:5576 flatcamTools/ToolSolderPaste.py:200
  6132. msgid "Z Toolchange:"
  6133. msgstr "Z Toolchange:"
  6134. #: flatcamGUI/FlatCAMGUI.py:5578 flatcamTools/ToolSolderPaste.py:202
  6135. msgid "The height (Z) for tool (nozzle) change."
  6136. msgstr "The height (Z) for tool (nozzle) change."
  6137. #: flatcamGUI/FlatCAMGUI.py:5585 flatcamTools/ToolSolderPaste.py:208
  6138. msgid "XY Toolchange:"
  6139. msgstr "XY Toolchange:"
  6140. #: flatcamGUI/FlatCAMGUI.py:5587 flatcamTools/ToolSolderPaste.py:210
  6141. msgid ""
  6142. "The X,Y location for tool (nozzle) change.\n"
  6143. "The format is (x, y) where x and y are real numbers."
  6144. msgstr ""
  6145. "The X,Y location for tool (nozzle) change.\n"
  6146. "The format is (x, y) where x and y are real numbers."
  6147. #: flatcamGUI/FlatCAMGUI.py:5595 flatcamTools/ToolSolderPaste.py:217
  6148. msgid "Feedrate X-Y:"
  6149. msgstr "Feedrate X-Y:"
  6150. #: flatcamGUI/FlatCAMGUI.py:5597 flatcamTools/ToolSolderPaste.py:219
  6151. msgid "Feedrate (speed) while moving on the X-Y plane."
  6152. msgstr "Feedrate (speed) while moving on the X-Y plane."
  6153. #: flatcamGUI/FlatCAMGUI.py:5604 flatcamTools/ToolSolderPaste.py:225
  6154. msgid "Feedrate Z:"
  6155. msgstr "Feedrate Z:"
  6156. #: flatcamGUI/FlatCAMGUI.py:5606 flatcamTools/ToolSolderPaste.py:227
  6157. msgid ""
  6158. "Feedrate (speed) while moving vertically\n"
  6159. "(on Z plane)."
  6160. msgstr ""
  6161. "Feedrate (speed) while moving vertically\n"
  6162. "(on Z plane)."
  6163. #: flatcamGUI/FlatCAMGUI.py:5614 flatcamTools/ToolSolderPaste.py:234
  6164. msgid "Feedrate Z Dispense:"
  6165. msgstr "Feedrate Z Dispense:"
  6166. #: flatcamGUI/FlatCAMGUI.py:5616 flatcamTools/ToolSolderPaste.py:236
  6167. msgid ""
  6168. "Feedrate (speed) while moving up vertically\n"
  6169. " to Dispense position (on Z plane)."
  6170. msgstr ""
  6171. "Feedrate (speed) while moving up vertically\n"
  6172. " to Dispense position (on Z plane)."
  6173. #: flatcamGUI/FlatCAMGUI.py:5624 flatcamTools/ToolSolderPaste.py:243
  6174. msgid "Spindle Speed FWD:"
  6175. msgstr "Spindle Speed FWD:"
  6176. #: flatcamGUI/FlatCAMGUI.py:5626 flatcamTools/ToolSolderPaste.py:245
  6177. msgid ""
  6178. "The dispenser speed while pushing solder paste\n"
  6179. "through the dispenser nozzle."
  6180. msgstr ""
  6181. "The dispenser speed while pushing solder paste\n"
  6182. "through the dispenser nozzle."
  6183. #: flatcamGUI/FlatCAMGUI.py:5634 flatcamTools/ToolSolderPaste.py:252
  6184. msgid "Dwell FWD:"
  6185. msgstr "Dwell FWD:"
  6186. #: flatcamGUI/FlatCAMGUI.py:5636 flatcamTools/ToolSolderPaste.py:254
  6187. msgid "Pause after solder dispensing."
  6188. msgstr "Pause after solder dispensing."
  6189. #: flatcamGUI/FlatCAMGUI.py:5643 flatcamTools/ToolSolderPaste.py:260
  6190. msgid "Spindle Speed REV:"
  6191. msgstr "Spindle Speed REV:"
  6192. #: flatcamGUI/FlatCAMGUI.py:5645 flatcamTools/ToolSolderPaste.py:262
  6193. msgid ""
  6194. "The dispenser speed while retracting solder paste\n"
  6195. "through the dispenser nozzle."
  6196. msgstr ""
  6197. "The dispenser speed while retracting solder paste\n"
  6198. "through the dispenser nozzle."
  6199. #: flatcamGUI/FlatCAMGUI.py:5653 flatcamTools/ToolSolderPaste.py:269
  6200. msgid "Dwell REV:"
  6201. msgstr "Dwell REV:"
  6202. #: flatcamGUI/FlatCAMGUI.py:5655 flatcamTools/ToolSolderPaste.py:271
  6203. msgid ""
  6204. "Pause after solder paste dispenser retracted,\n"
  6205. "to allow pressure equilibrium."
  6206. msgstr ""
  6207. "Pause after solder paste dispenser retracted,\n"
  6208. "to allow pressure equilibrium."
  6209. #: flatcamGUI/FlatCAMGUI.py:5662 flatcamTools/ToolSolderPaste.py:277
  6210. msgid "PostProcessors:"
  6211. msgstr "PostProcessors:"
  6212. #: flatcamGUI/FlatCAMGUI.py:5664 flatcamTools/ToolSolderPaste.py:279
  6213. msgid "Files that control the GCode generation."
  6214. msgstr "Files that control the GCode generation."
  6215. #: flatcamGUI/FlatCAMGUI.py:5694 flatcamGUI/FlatCAMGUI.py:5700
  6216. msgid "Idle."
  6217. msgstr "Idle."
  6218. #: flatcamGUI/FlatCAMGUI.py:5724
  6219. msgid "Application started ..."
  6220. msgstr "Bewerbung gestartet ..."
  6221. #: flatcamGUI/FlatCAMGUI.py:5725
  6222. msgid "Hello!"
  6223. msgstr "Hello!"
  6224. #: flatcamGUI/ObjectUI.py:33
  6225. msgid "FlatCAM Object"
  6226. msgstr "FlatCAM Object"
  6227. #: flatcamGUI/ObjectUI.py:58
  6228. msgid ""
  6229. "BASIC is suitable for a beginner. Many parameters\n"
  6230. "are hidden from the user in this mode.\n"
  6231. "ADVANCED mode will make available all parameters.\n"
  6232. "\n"
  6233. "To change the application LEVEL, go to:\n"
  6234. "Edit -> Preferences -> General and check:\n"
  6235. "'APP. LEVEL' radio button."
  6236. msgstr ""
  6237. "BASIC is suitable for a beginner. Many parameters\n"
  6238. "are hidden from the user in this mode.\n"
  6239. "ADVANCED mode will make available all parameters.\n"
  6240. "\n"
  6241. "To change the application LEVEL, go to:\n"
  6242. "Edit -> Preferences -> General and check:\n"
  6243. "'APP. LEVEL' radio button."
  6244. #: flatcamGUI/ObjectUI.py:79
  6245. msgid "<b>Scale:</b>"
  6246. msgstr "<b>Scale:</b>"
  6247. #: flatcamGUI/ObjectUI.py:81
  6248. msgid "Change the size of the object."
  6249. msgstr "Change the size of the object."
  6250. #: flatcamGUI/ObjectUI.py:89
  6251. msgid "Factor:"
  6252. msgstr "Factor:"
  6253. #: flatcamGUI/ObjectUI.py:91
  6254. msgid ""
  6255. "Factor by which to multiply\n"
  6256. "geometric features of this object."
  6257. msgstr ""
  6258. "Factor by which to multiply\n"
  6259. "geometric features of this object."
  6260. #: flatcamGUI/ObjectUI.py:102
  6261. msgid "Perform scaling operation."
  6262. msgstr "Perform scaling operation."
  6263. #: flatcamGUI/ObjectUI.py:108
  6264. msgid "<b>Offset:</b>"
  6265. msgstr "<b>Offset:</b>"
  6266. #: flatcamGUI/ObjectUI.py:110
  6267. msgid "Change the position of this object."
  6268. msgstr "Change the position of this object."
  6269. #: flatcamGUI/ObjectUI.py:117
  6270. msgid "Vector:"
  6271. msgstr "Vector:"
  6272. #: flatcamGUI/ObjectUI.py:119
  6273. msgid ""
  6274. "Amount by which to move the object\n"
  6275. "in the x and y axes in (x, y) format."
  6276. msgstr ""
  6277. "Amount by which to move the object\n"
  6278. "in the x and y axes in (x, y) format."
  6279. #: flatcamGUI/ObjectUI.py:129
  6280. msgid "Perform the offset operation."
  6281. msgstr "Perform the offset operation."
  6282. #: flatcamGUI/ObjectUI.py:143
  6283. msgid "Gerber Object"
  6284. msgstr "Gerber Object"
  6285. #: flatcamGUI/ObjectUI.py:156
  6286. msgid "Solid "
  6287. msgstr "Solid "
  6288. #: flatcamGUI/ObjectUI.py:164
  6289. msgid "M-Color "
  6290. msgstr "M-Color "
  6291. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:588
  6292. #: flatcamGUI/ObjectUI.py:907 flatcamGUI/ObjectUI.py:1437
  6293. msgid "<b>Name:</b>"
  6294. msgstr "<b>Name:</b>"
  6295. #: flatcamGUI/ObjectUI.py:192
  6296. msgid "<b>Apertures:</b>"
  6297. msgstr "<b>Apertures:</b>"
  6298. #: flatcamGUI/ObjectUI.py:194
  6299. msgid "Apertures Table for the Gerber Object."
  6300. msgstr "Apertures Table for the Gerber Object."
  6301. #: flatcamGUI/ObjectUI.py:203
  6302. msgid ""
  6303. "Toggle the display of the Gerber Apertures Table.\n"
  6304. "When unchecked, it will delete all mark shapes\n"
  6305. "that are drawn on canvas."
  6306. msgstr ""
  6307. "Toggle the display of the Gerber Apertures Table.\n"
  6308. "When unchecked, it will delete all mark shapes\n"
  6309. "that are drawn on canvas."
  6310. #: flatcamGUI/ObjectUI.py:214
  6311. msgid "Mark All"
  6312. msgstr "Mark All"
  6313. #: flatcamGUI/ObjectUI.py:216
  6314. msgid ""
  6315. "When checked it will display all the apertures.\n"
  6316. "When unchecked, it will delete all mark shapes\n"
  6317. "that are drawn on canvas."
  6318. msgstr ""
  6319. "When checked it will display all the apertures.\n"
  6320. "When unchecked, it will delete all mark shapes\n"
  6321. "that are drawn on canvas."
  6322. #: flatcamGUI/ObjectUI.py:228
  6323. msgid "Code"
  6324. msgstr "Code"
  6325. #: flatcamGUI/ObjectUI.py:228 flatcamGUI/ObjectUI.py:959
  6326. #: flatcamGUI/ObjectUI.py:1517
  6327. msgid "Type"
  6328. msgstr "Type"
  6329. #: flatcamGUI/ObjectUI.py:228
  6330. msgid "Size"
  6331. msgstr "Size"
  6332. #: flatcamGUI/ObjectUI.py:228
  6333. msgid "Dim"
  6334. msgstr "Dim"
  6335. #: flatcamGUI/ObjectUI.py:232
  6336. msgid "Index"
  6337. msgstr "Index"
  6338. #: flatcamGUI/ObjectUI.py:234
  6339. msgid "Aperture Code"
  6340. msgstr "Aperture Code"
  6341. #: flatcamGUI/ObjectUI.py:236
  6342. msgid "Type of aperture: circular, rectangle, macros etc"
  6343. msgstr "Type of aperture: circular, rectangle, macros etc"
  6344. #: flatcamGUI/ObjectUI.py:238
  6345. msgid "Aperture Size:"
  6346. msgstr "Aperture Size:"
  6347. #: flatcamGUI/ObjectUI.py:240
  6348. msgid ""
  6349. "Aperture Dimensions:\n"
  6350. " - (width, height) for R, O type.\n"
  6351. " - (dia, nVertices) for P type"
  6352. msgstr ""
  6353. "Aperture Dimensions:\n"
  6354. " - (width, height) for R, O type.\n"
  6355. " - (dia, nVertices) for P type"
  6356. #: flatcamGUI/ObjectUI.py:244
  6357. msgid "Mark the aperture instances on canvas."
  6358. msgstr "Mark the aperture instances on canvas."
  6359. #: flatcamGUI/ObjectUI.py:252
  6360. msgid "Scale Factor:"
  6361. msgstr "Scale Factor:"
  6362. #: flatcamGUI/ObjectUI.py:267
  6363. msgid "Perform scaling operation on the selected apertures."
  6364. msgstr "Perform scaling operation on the selected apertures."
  6365. #: flatcamGUI/ObjectUI.py:273
  6366. msgid "Buffer Factor:"
  6367. msgstr "Buffer Factor:"
  6368. #: flatcamGUI/ObjectUI.py:286
  6369. msgid "Buffer"
  6370. msgstr "Buffer"
  6371. #: flatcamGUI/ObjectUI.py:288
  6372. msgid "Perform buffer operation on the selected apertures."
  6373. msgstr "Perform buffer operation on the selected apertures."
  6374. #: flatcamGUI/ObjectUI.py:296
  6375. msgid "<b>Generate new Gerber Object:</b>"
  6376. msgstr "<b>Generate new Gerber Object:</b>"
  6377. #: flatcamGUI/ObjectUI.py:298
  6378. msgid "Will generate a new Gerber object from the changed apertures."
  6379. msgstr "Will generate a new Gerber object from the changed apertures."
  6380. #: flatcamGUI/ObjectUI.py:304
  6381. msgid "Go"
  6382. msgstr "Go"
  6383. #: flatcamGUI/ObjectUI.py:306
  6384. msgid ""
  6385. "Will generate a new Gerber object from the changed apertures.\n"
  6386. "This new object can then be isolated etc."
  6387. msgstr ""
  6388. "Will generate a new Gerber object from the changed apertures.\n"
  6389. "This new object can then be isolated etc."
  6390. #: flatcamGUI/ObjectUI.py:333
  6391. msgid ""
  6392. "Diameter of the cutting tool.\n"
  6393. "If you want to have an isolation path\n"
  6394. "inside the actual shape of the Gerber\n"
  6395. "feature, use a negative value for\n"
  6396. "this parameter."
  6397. msgstr ""
  6398. "Diameter of the cutting tool.\n"
  6399. "If you want to have an isolation path\n"
  6400. "inside the actual shape of the Gerber\n"
  6401. "feature, use a negative value for\n"
  6402. "this parameter."
  6403. #: flatcamGUI/ObjectUI.py:344
  6404. msgid "Passes:"
  6405. msgstr "Passes:"
  6406. #: flatcamGUI/ObjectUI.py:378
  6407. msgid "Combine"
  6408. msgstr "Combine"
  6409. #: flatcamGUI/ObjectUI.py:394
  6410. msgid "<b>Generate Isolation Geometry:</b>"
  6411. msgstr "<b>Generate Isolation Geometry:</b>"
  6412. #: flatcamGUI/ObjectUI.py:396
  6413. msgid ""
  6414. "Create a Geometry object with toolpaths to cut \n"
  6415. "isolation outside, inside or on both sides of the\n"
  6416. "object. For a Gerber object outside means outside\n"
  6417. "of the Gerber feature and inside means inside of\n"
  6418. "the Gerber feature, if possible at all. This means\n"
  6419. "that only if the Gerber feature has openings inside, they\n"
  6420. "will be isolated. If what is wanted is to cut isolation\n"
  6421. "inside the actual Gerber feature, use a negative tool\n"
  6422. "diameter above."
  6423. msgstr ""
  6424. "Create a Geometry object with toolpaths to cut \n"
  6425. "isolation outside, inside or on both sides of the\n"
  6426. "object. For a Gerber object outside means outside\n"
  6427. "of the Gerber feature and inside means inside of\n"
  6428. "the Gerber feature, if possible at all. This means\n"
  6429. "that only if the Gerber feature has openings inside, they\n"
  6430. "will be isolated. If what is wanted is to cut isolation\n"
  6431. "inside the actual Gerber feature, use a negative tool\n"
  6432. "diameter above."
  6433. #: flatcamGUI/ObjectUI.py:415
  6434. msgid "FULL Geo"
  6435. msgstr "FULL Geo"
  6436. #: flatcamGUI/ObjectUI.py:417
  6437. msgid ""
  6438. "Create the Geometry Object\n"
  6439. "for isolation routing. It contains both\n"
  6440. "the interiors and exteriors geometry."
  6441. msgstr ""
  6442. "Create the Geometry Object\n"
  6443. "for isolation routing. It contains both\n"
  6444. "the interiors and exteriors geometry."
  6445. #: flatcamGUI/ObjectUI.py:426
  6446. msgid "Ext Geo"
  6447. msgstr "Ext Geo"
  6448. #: flatcamGUI/ObjectUI.py:428
  6449. msgid ""
  6450. "Create the Geometry Object\n"
  6451. "for isolation routing containing\n"
  6452. "only the exteriors geometry."
  6453. msgstr ""
  6454. "Create the Geometry Object\n"
  6455. "for isolation routing containing\n"
  6456. "only the exteriors geometry."
  6457. #: flatcamGUI/ObjectUI.py:435
  6458. msgid "Int Geo"
  6459. msgstr "Int Geo"
  6460. #: flatcamGUI/ObjectUI.py:437
  6461. msgid ""
  6462. "Create the Geometry Object\n"
  6463. "for isolation routing containing\n"
  6464. "only the interiors geometry."
  6465. msgstr ""
  6466. "Create the Geometry Object\n"
  6467. "for isolation routing containing\n"
  6468. "only the interiors geometry."
  6469. #: flatcamGUI/ObjectUI.py:455
  6470. msgid "<b>Clear N-copper:</b>"
  6471. msgstr "<b>Clear N-copper:</b>"
  6472. #: flatcamGUI/ObjectUI.py:465 flatcamTools/ToolNonCopperClear.py:239
  6473. msgid ""
  6474. "Create the Geometry Object\n"
  6475. "for non-copper routing."
  6476. msgstr ""
  6477. "Create the Geometry Object\n"
  6478. "for non-copper routing."
  6479. #: flatcamGUI/ObjectUI.py:471
  6480. msgid "<b>Board cutout:</b>"
  6481. msgstr "<b>Board cutout:</b>"
  6482. #: flatcamGUI/ObjectUI.py:479
  6483. msgid "Cutout Tool"
  6484. msgstr "Cutout Tool"
  6485. #: flatcamGUI/ObjectUI.py:481
  6486. msgid ""
  6487. "Generate the geometry for\n"
  6488. "the board cutout."
  6489. msgstr ""
  6490. "Generate the geometry for\n"
  6491. "the board cutout."
  6492. #: flatcamGUI/ObjectUI.py:487
  6493. msgid "<b>Non-copper regions:</b>"
  6494. msgstr "<b>Non-copper regions:</b>"
  6495. #: flatcamGUI/ObjectUI.py:489
  6496. msgid ""
  6497. "Create polygons covering the\n"
  6498. "areas without copper on the PCB.\n"
  6499. "Equivalent to the inverse of this\n"
  6500. "object. Can be used to remove all\n"
  6501. "copper from a specified region."
  6502. msgstr ""
  6503. "Create polygons covering the\n"
  6504. "areas without copper on the PCB.\n"
  6505. "Equivalent to the inverse of this\n"
  6506. "object. Can be used to remove all\n"
  6507. "copper from a specified region."
  6508. #: flatcamGUI/ObjectUI.py:514 flatcamGUI/ObjectUI.py:545
  6509. msgid "Rounded Geo"
  6510. msgstr "Rounded Geo"
  6511. #: flatcamGUI/ObjectUI.py:516
  6512. msgid "Resulting geometry will have rounded corners."
  6513. msgstr "Resulting geometry will have rounded corners."
  6514. #: flatcamGUI/ObjectUI.py:521 flatcamGUI/ObjectUI.py:555
  6515. #: flatcamTools/ToolCutOut.py:159 flatcamTools/ToolCutOut.py:179
  6516. #: flatcamTools/ToolCutOut.py:230 flatcamTools/ToolSolderPaste.py:127
  6517. msgid "Generate Geo"
  6518. msgstr "Generate Geo"
  6519. #: flatcamGUI/ObjectUI.py:527
  6520. msgid ""
  6521. "Create a geometry surrounding the Gerber object.\n"
  6522. "Square shape."
  6523. msgstr ""
  6524. "Create a geometry surrounding the Gerber object.\n"
  6525. "Square shape."
  6526. #: flatcamGUI/ObjectUI.py:557
  6527. msgid "Generate the Geometry object."
  6528. msgstr "Generate the Geometry object."
  6529. #: flatcamGUI/ObjectUI.py:568
  6530. msgid "Excellon Object"
  6531. msgstr "Excellon Object"
  6532. #: flatcamGUI/ObjectUI.py:579
  6533. msgid "Solid circles."
  6534. msgstr "Solid circles."
  6535. #: flatcamGUI/ObjectUI.py:607 flatcamGUI/ObjectUI.py:926
  6536. msgid "<b>Tools Table</b>"
  6537. msgstr "<b>Tools Table</b>"
  6538. #: flatcamGUI/ObjectUI.py:628
  6539. msgid "Offset Z"
  6540. msgstr "Offset Z"
  6541. #: flatcamGUI/ObjectUI.py:632
  6542. msgid ""
  6543. "This is the Tool Number.\n"
  6544. "When ToolChange is checked, on toolchange event this value\n"
  6545. "will be showed as a T1, T2 ... Tn in the Machine Code."
  6546. msgstr ""
  6547. "This is the Tool Number.\n"
  6548. "When ToolChange is checked, on toolchange event this value\n"
  6549. "will be showed as a T1, T2 ... Tn in the Machine Code."
  6550. #: flatcamGUI/ObjectUI.py:636 flatcamGUI/ObjectUI.py:972
  6551. #: flatcamTools/ToolNonCopperClear.py:96 flatcamTools/ToolPaint.py:94
  6552. msgid ""
  6553. "Tool Diameter. It's value (in current FlatCAM units) \n"
  6554. "is the cut width into the material."
  6555. msgstr ""
  6556. "Tool Diameter. It's value (in current FlatCAM units) \n"
  6557. "is the cut width into the material."
  6558. #: flatcamGUI/ObjectUI.py:639
  6559. msgid ""
  6560. "The number of Drill holes. Holes that are drilled with\n"
  6561. "a drill bit."
  6562. msgstr ""
  6563. "The number of Drill holes. Holes that are drilled with\n"
  6564. "a drill bit."
  6565. #: flatcamGUI/ObjectUI.py:642
  6566. msgid ""
  6567. "The number of Slot holes. Holes that are created by\n"
  6568. "milling them with an endmill bit."
  6569. msgstr ""
  6570. "The number of Slot holes. Holes that are created by\n"
  6571. "milling them with an endmill bit."
  6572. #: flatcamGUI/ObjectUI.py:649
  6573. msgid "Toggle display of the drills for the current tool."
  6574. msgstr "Toggle display of the drills for the current tool."
  6575. #: flatcamGUI/ObjectUI.py:657
  6576. msgid ""
  6577. "Create a CNC Job object\n"
  6578. "for this drill object."
  6579. msgstr ""
  6580. "Create a CNC Job object\n"
  6581. "for this drill object."
  6582. #: flatcamGUI/ObjectUI.py:686 flatcamGUI/ObjectUI.py:1186
  6583. msgid "Tool change"
  6584. msgstr "Tool change"
  6585. #: flatcamGUI/ObjectUI.py:694 flatcamGUI/ObjectUI.py:1179
  6586. msgid "Tool change Z:"
  6587. msgstr "Tool change Z:"
  6588. #: flatcamGUI/ObjectUI.py:696 flatcamGUI/ObjectUI.py:1182
  6589. msgid ""
  6590. "Z-axis position (height) for\n"
  6591. "tool change."
  6592. msgstr ""
  6593. "Z-axis position (height) for\n"
  6594. "tool change."
  6595. #: flatcamGUI/ObjectUI.py:707
  6596. msgid ""
  6597. "Tool height just before starting the work.\n"
  6598. "Delete the value if you don't need this feature."
  6599. msgstr ""
  6600. "Tool height just before starting the work.\n"
  6601. "Delete the value if you don't need this feature."
  6602. #: flatcamGUI/ObjectUI.py:717
  6603. msgid ""
  6604. "Z-axis position (height) for\n"
  6605. "the last move."
  6606. msgstr ""
  6607. "Z-axis position (height) for\n"
  6608. "the last move."
  6609. #: flatcamGUI/ObjectUI.py:725
  6610. msgid "Feedrate (Plunge):"
  6611. msgstr "Feedrate (Plunge):"
  6612. #: flatcamGUI/ObjectUI.py:727
  6613. msgid ""
  6614. "Tool speed while drilling\n"
  6615. "(in units per minute).\n"
  6616. "This is for linear move G01."
  6617. msgstr ""
  6618. "Tool speed while drilling\n"
  6619. "(in units per minute).\n"
  6620. "This is for linear move G01."
  6621. #: flatcamGUI/ObjectUI.py:777
  6622. msgid ""
  6623. "The json file that dictates\n"
  6624. "gcode output."
  6625. msgstr ""
  6626. "The json file that dictates\n"
  6627. "gcode output."
  6628. #: flatcamGUI/ObjectUI.py:809
  6629. msgid ""
  6630. "Select from the Tools Table above\n"
  6631. "the tools you want to include."
  6632. msgstr ""
  6633. "Select from the Tools Table above\n"
  6634. "the tools you want to include."
  6635. #: flatcamGUI/ObjectUI.py:816
  6636. msgid "<b>Type: </b>"
  6637. msgstr "<b>Type: </b>"
  6638. #: flatcamGUI/ObjectUI.py:818
  6639. msgid ""
  6640. "Choose what to use for GCode generation:\n"
  6641. "'Drills', 'Slots' or 'Both'.\n"
  6642. "When choosing 'Slots' or 'Both', slots will be\n"
  6643. "converted to a series of drills."
  6644. msgstr ""
  6645. "Choose what to use for GCode generation:\n"
  6646. "'Drills', 'Slots' or 'Both'.\n"
  6647. "When choosing 'Slots' or 'Both', slots will be\n"
  6648. "converted to a series of drills."
  6649. #: flatcamGUI/ObjectUI.py:833
  6650. msgid "Create GCode"
  6651. msgstr "Create GCode"
  6652. #: flatcamGUI/ObjectUI.py:835
  6653. msgid "Generate the CNC Job."
  6654. msgstr "Generate the CNC Job."
  6655. #: flatcamGUI/ObjectUI.py:847
  6656. msgid ""
  6657. "Select from the Tools Table above\n"
  6658. " the hole dias that are to be milled."
  6659. msgstr ""
  6660. "Select from the Tools Table above\n"
  6661. " the hole dias that are to be milled."
  6662. #: flatcamGUI/ObjectUI.py:854
  6663. msgid "Drills Tool dia:"
  6664. msgstr "Drills Tool dia:"
  6665. #: flatcamGUI/ObjectUI.py:861
  6666. msgid "Mill Drills Geo"
  6667. msgstr "Mill Drills Geo"
  6668. #: flatcamGUI/ObjectUI.py:863
  6669. msgid ""
  6670. "Create the Geometry Object\n"
  6671. "for milling DRILLS toolpaths."
  6672. msgstr ""
  6673. "Create the Geometry Object\n"
  6674. "for milling DRILLS toolpaths."
  6675. #: flatcamGUI/ObjectUI.py:870
  6676. msgid "Slots Tool dia:"
  6677. msgstr "Slots Tool dia:"
  6678. #: flatcamGUI/ObjectUI.py:877
  6679. msgid "Mill Slots Geo"
  6680. msgstr "Mill Slots Geo"
  6681. #: flatcamGUI/ObjectUI.py:879
  6682. msgid ""
  6683. "Create the Geometry Object\n"
  6684. "for milling SLOTS toolpaths."
  6685. msgstr ""
  6686. "Create the Geometry Object\n"
  6687. "for milling SLOTS toolpaths."
  6688. #: flatcamGUI/ObjectUI.py:897
  6689. msgid "Geometry Object"
  6690. msgstr "Geometry Object"
  6691. #: flatcamGUI/ObjectUI.py:928
  6692. msgid ""
  6693. "Tools in this Geometry object used for cutting.\n"
  6694. "The 'Offset' entry will set an offset for the cut.\n"
  6695. "'Offset' can be inside, outside, on path (none) and custom.\n"
  6696. "'Type' entry is only informative and it allow to know the \n"
  6697. "intent of using the current tool. \n"
  6698. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  6699. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  6700. "ball(B), or V-Shaped(V). \n"
  6701. "When V-shaped is selected the 'Type' entry is automatically \n"
  6702. "set to Isolation, the CutZ parameter in the UI form is\n"
  6703. "grayed out and Cut Z is automatically calculated from the newly \n"
  6704. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  6705. msgstr ""
  6706. "Tools in this Geometry object used for cutting.\n"
  6707. "The 'Offset' entry will set an offset for the cut.\n"
  6708. "'Offset' can be inside, outside, on path (none) and custom.\n"
  6709. "'Type' entry is only informative and it allow to know the \n"
  6710. "intent of using the current tool. \n"
  6711. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  6712. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  6713. "ball(B), or V-Shaped(V). \n"
  6714. "When V-shaped is selected the 'Type' entry is automatically \n"
  6715. "set to Isolation, the CutZ parameter in the UI form is\n"
  6716. "grayed out and Cut Z is automatically calculated from the newly \n"
  6717. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  6718. #: flatcamGUI/ObjectUI.py:959 flatcamGUI/ObjectUI.py:1517
  6719. msgid "Dia"
  6720. msgstr "Dia"
  6721. #: flatcamGUI/ObjectUI.py:959 flatcamGUI/ObjectUI.py:1517
  6722. msgid "TT"
  6723. msgstr "TT"
  6724. #: flatcamGUI/ObjectUI.py:966
  6725. msgid ""
  6726. "This is the Tool Number.\n"
  6727. "When ToolChange is checked, on toolchange event this value\n"
  6728. "will be showed as a T1, T2 ... Tn"
  6729. msgstr ""
  6730. "This is the Tool Number.\n"
  6731. "When ToolChange is checked, on toolchange event this value\n"
  6732. "will be showed as a T1, T2 ... Tn"
  6733. #: flatcamGUI/ObjectUI.py:977
  6734. msgid ""
  6735. "The value for the Offset can be:\n"
  6736. "- Path -> There is no offset, the tool cut will be done through the geometry "
  6737. "line.\n"
  6738. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  6739. "'pocket'.\n"
  6740. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  6741. msgstr ""
  6742. "The value for the Offset can be:\n"
  6743. "- Path -> There is no offset, the tool cut will be done through the geometry "
  6744. "line.\n"
  6745. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  6746. "'pocket'.\n"
  6747. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  6748. #: flatcamGUI/ObjectUI.py:984
  6749. msgid ""
  6750. "The (Operation) Type has only informative value. Usually the UI form "
  6751. "values \n"
  6752. "are choosed based on the operation type and this will serve as a reminder.\n"
  6753. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  6754. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  6755. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  6756. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  6757. "tip."
  6758. msgstr ""
  6759. "The (Operation) Type has only informative value. Usually the UI form "
  6760. "values \n"
  6761. "are choosed based on the operation type and this will serve as a reminder.\n"
  6762. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  6763. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  6764. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  6765. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  6766. "tip."
  6767. #: flatcamGUI/ObjectUI.py:993
  6768. msgid ""
  6769. "The Tool Type (TT) can be:\n"
  6770. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  6771. "cut width in material\n"
  6772. "is exactly the tool diameter.\n"
  6773. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  6774. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  6775. "two additional UI form\n"
  6776. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  6777. "the Z-Cut parameter such\n"
  6778. "as the cut width into material will be equal with the value in the Tool "
  6779. "Diameter column of this table.\n"
  6780. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  6781. "as Isolation."
  6782. msgstr ""
  6783. "The Tool Type (TT) can be:\n"
  6784. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  6785. "cut width in material\n"
  6786. "is exactly the tool diameter.\n"
  6787. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  6788. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  6789. "two additional UI form\n"
  6790. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  6791. "the Z-Cut parameter such\n"
  6792. "as the cut width into material will be equal with the value in the Tool "
  6793. "Diameter column of this table.\n"
  6794. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  6795. "as Isolation."
  6796. #: flatcamGUI/ObjectUI.py:1004
  6797. msgid ""
  6798. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  6799. "that holds the geometry\n"
  6800. "data into the tools. For those geometries, deleting the tool will delete the "
  6801. "geometry data also,\n"
  6802. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  6803. "plot on canvas\n"
  6804. "for the corresponding tool."
  6805. msgstr ""
  6806. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  6807. "that holds the geometry\n"
  6808. "data into the tools. For those geometries, deleting the tool will delete the "
  6809. "geometry data also,\n"
  6810. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  6811. "plot on canvas\n"
  6812. "for the corresponding tool."
  6813. #: flatcamGUI/ObjectUI.py:1017
  6814. msgid "Tool Offset:"
  6815. msgstr "Tool Offset:"
  6816. #: flatcamGUI/ObjectUI.py:1020
  6817. msgid ""
  6818. "The value to offset the cut when \n"
  6819. "the Offset type selected is 'Offset'.\n"
  6820. "The value can be positive for 'outside'\n"
  6821. "cut and negative for 'inside' cut."
  6822. msgstr ""
  6823. "The value to offset the cut when \n"
  6824. "the Offset type selected is 'Offset'.\n"
  6825. "The value can be positive for 'outside'\n"
  6826. "cut and negative for 'inside' cut."
  6827. #: flatcamGUI/ObjectUI.py:1043
  6828. msgid "<b>Tool Dia:</b>"
  6829. msgstr "<b>Tool Dia:</b>"
  6830. #: flatcamGUI/ObjectUI.py:1062 flatcamTools/ToolNonCopperClear.py:135
  6831. #: flatcamTools/ToolPaint.py:133
  6832. msgid ""
  6833. "Add a new tool to the Tool Table\n"
  6834. "with the diameter specified above."
  6835. msgstr ""
  6836. "Add a new tool to the Tool Table\n"
  6837. "with the diameter specified above."
  6838. #: flatcamGUI/ObjectUI.py:1070
  6839. msgid ""
  6840. "Copy a selection of tools in the Tool Table\n"
  6841. "by first selecting a row in the Tool Table."
  6842. msgstr ""
  6843. "Copy a selection of tools in the Tool Table\n"
  6844. "by first selecting a row in the Tool Table."
  6845. #: flatcamGUI/ObjectUI.py:1078
  6846. msgid ""
  6847. "Delete a selection of tools in the Tool Table\n"
  6848. "by first selecting a row in the Tool Table."
  6849. msgstr ""
  6850. "Delete a selection of tools in the Tool Table\n"
  6851. "by first selecting a row in the Tool Table."
  6852. #: flatcamGUI/ObjectUI.py:1094
  6853. msgid "<b>Tool Data</b>"
  6854. msgstr "<b>Tool Data</b>"
  6855. #: flatcamGUI/ObjectUI.py:1097
  6856. msgid ""
  6857. "The data used for creating GCode.\n"
  6858. "Each tool store it's own set of such data."
  6859. msgstr ""
  6860. "The data used for creating GCode.\n"
  6861. "Each tool store it's own set of such data."
  6862. #: flatcamGUI/ObjectUI.py:1107
  6863. msgid "V-Tip Dia:"
  6864. msgstr "V-Tip Dia:"
  6865. #: flatcamGUI/ObjectUI.py:1110
  6866. msgid "The tip diameter for V-Shape Tool"
  6867. msgstr "The tip diameter for V-Shape Tool"
  6868. #: flatcamGUI/ObjectUI.py:1118
  6869. msgid "V-Tip Angle:"
  6870. msgstr "V-Tip Angle:"
  6871. #: flatcamGUI/ObjectUI.py:1121
  6872. msgid ""
  6873. "The tip angle for V-Shape Tool.\n"
  6874. "In degree."
  6875. msgstr ""
  6876. "The tip angle for V-Shape Tool.\n"
  6877. "In degree."
  6878. #: flatcamGUI/ObjectUI.py:1142
  6879. msgid "Multi-Depth:"
  6880. msgstr "Multi-Depth:"
  6881. #: flatcamGUI/ObjectUI.py:1145
  6882. msgid ""
  6883. "Use multiple passes to limit\n"
  6884. "the cut depth in each pass. Will\n"
  6885. "cut multiple times until Cut Z is\n"
  6886. "reached.\n"
  6887. "To the right, input the depth of \n"
  6888. "each pass (positive value)."
  6889. msgstr ""
  6890. "Use multiple passes to limit\n"
  6891. "the cut depth in each pass. Will\n"
  6892. "cut multiple times until Cut Z is\n"
  6893. "reached.\n"
  6894. "To the right, input the depth of \n"
  6895. "each pass (positive value)."
  6896. #: flatcamGUI/ObjectUI.py:1158
  6897. msgid "Depth of each pass (positive)."
  6898. msgstr "Depth of each pass (positive)."
  6899. #: flatcamGUI/ObjectUI.py:1189
  6900. msgid ""
  6901. "Include tool-change sequence\n"
  6902. "in the Machine Code (Pause for tool change)."
  6903. msgstr ""
  6904. "Include tool-change sequence\n"
  6905. "in the Machine Code (Pause for tool change)."
  6906. #: flatcamGUI/ObjectUI.py:1215
  6907. msgid ""
  6908. "This is the height (Z) at which the CNC\n"
  6909. "will go as the last move."
  6910. msgstr ""
  6911. "This is the height (Z) at which the CNC\n"
  6912. "will go as the last move."
  6913. #: flatcamGUI/ObjectUI.py:1236
  6914. msgid "Feed Rate Z (Plunge):"
  6915. msgstr "Feed Rate Z (Plunge):"
  6916. #: flatcamGUI/ObjectUI.py:1239
  6917. msgid ""
  6918. "Cutting speed in the Z\n"
  6919. "plane in units per minute"
  6920. msgstr ""
  6921. "Cutting speed in the Z\n"
  6922. "plane in units per minute"
  6923. #: flatcamGUI/ObjectUI.py:1248
  6924. msgid "Feed Rate Rapids:"
  6925. msgstr "Feed Rate Rapids:"
  6926. #: flatcamGUI/ObjectUI.py:1251
  6927. msgid ""
  6928. "Cutting speed in the XY\n"
  6929. "plane in units per minute\n"
  6930. "(in units per minute).\n"
  6931. "This is for the rapid move G00.\n"
  6932. "It is useful only for Marlin,\n"
  6933. "ignore for any other cases."
  6934. msgstr ""
  6935. "Cutting speed in the XY\n"
  6936. "plane in units per minute\n"
  6937. "(in units per minute).\n"
  6938. "This is for the rapid move G00.\n"
  6939. "It is useful only for Marlin,\n"
  6940. "ignore for any other cases."
  6941. #: flatcamGUI/ObjectUI.py:1264
  6942. msgid "Cut over 1st pt"
  6943. msgstr "Cut over 1st pt"
  6944. #: flatcamGUI/ObjectUI.py:1279
  6945. msgid ""
  6946. "Speed of the spindle in RPM (optional).\n"
  6947. "If LASER postprocessor is used,\n"
  6948. "this value is the power of laser."
  6949. msgstr ""
  6950. "Speed of the spindle in RPM (optional).\n"
  6951. "If LASER postprocessor is used,\n"
  6952. "this value is the power of laser."
  6953. #: flatcamGUI/ObjectUI.py:1308
  6954. msgid "PostProcessor:"
  6955. msgstr "PostProcessor:"
  6956. #: flatcamGUI/ObjectUI.py:1311
  6957. msgid ""
  6958. "The Postprocessor file that dictates\n"
  6959. "the Machine Code (like GCode, RML, HPGL) output."
  6960. msgstr ""
  6961. "The Postprocessor file that dictates\n"
  6962. "the Machine Code (like GCode, RML, HPGL) output."
  6963. #: flatcamGUI/ObjectUI.py:1349
  6964. msgid ""
  6965. "Add at least one tool in the tool-table.\n"
  6966. "Click the header to select all, or Ctrl + LMB\n"
  6967. "for custom selection of tools."
  6968. msgstr ""
  6969. "Add at least one tool in the tool-table.\n"
  6970. "Click the header to select all, or Ctrl + LMB\n"
  6971. "for custom selection of tools."
  6972. #: flatcamGUI/ObjectUI.py:1356
  6973. msgid "Generate"
  6974. msgstr "Generate"
  6975. #: flatcamGUI/ObjectUI.py:1359
  6976. msgid "Generate the CNC Job object."
  6977. msgstr "Generate the CNC Job object."
  6978. #: flatcamGUI/ObjectUI.py:1367
  6979. msgid "<b>Paint Area:</b>"
  6980. msgstr "<b>Paint Area:</b>"
  6981. #: flatcamGUI/ObjectUI.py:1382
  6982. msgid "Launch Paint Tool in Tools Tab."
  6983. msgstr "Launch Paint Tool in Tools Tab."
  6984. #: flatcamGUI/ObjectUI.py:1399
  6985. msgid "CNC Job Object"
  6986. msgstr "CNC Job Object"
  6987. #: flatcamGUI/ObjectUI.py:1418
  6988. msgid "<b>Plot kind:</b>"
  6989. msgstr "<b>Plot kind:</b>"
  6990. #: flatcamGUI/ObjectUI.py:1443
  6991. msgid "<b>Travelled dist.:</b>"
  6992. msgstr "<b>Travelled dist.:</b>"
  6993. #: flatcamGUI/ObjectUI.py:1446 flatcamGUI/ObjectUI.py:1453
  6994. msgid ""
  6995. "This is the total travelled distance on X-Y plane.\n"
  6996. "In current units."
  6997. msgstr ""
  6998. "This is the total travelled distance on X-Y plane.\n"
  6999. "In current units."
  7000. #: flatcamGUI/ObjectUI.py:1481
  7001. msgid "<b>CNC Tools Table</b>"
  7002. msgstr "<b>CNC Tools Table</b>"
  7003. #: flatcamGUI/ObjectUI.py:1484
  7004. msgid ""
  7005. "Tools in this CNCJob object used for cutting.\n"
  7006. "The tool diameter is used for plotting on canvas.\n"
  7007. "The 'Offset' entry will set an offset for the cut.\n"
  7008. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7009. "'Type' entry is only informative and it allow to know the \n"
  7010. "intent of using the current tool. \n"
  7011. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7012. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7013. "ball(B), or V-Shaped(V)."
  7014. msgstr ""
  7015. "Tools in this CNCJob object used for cutting.\n"
  7016. "The tool diameter is used for plotting on canvas.\n"
  7017. "The 'Offset' entry will set an offset for the cut.\n"
  7018. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7019. "'Type' entry is only informative and it allow to know the \n"
  7020. "intent of using the current tool. \n"
  7021. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7022. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7023. "ball(B), or V-Shaped(V)."
  7024. #: flatcamGUI/ObjectUI.py:1518
  7025. msgid "P"
  7026. msgstr "P"
  7027. #: flatcamGUI/ObjectUI.py:1524
  7028. msgid "Update Plot"
  7029. msgstr "Update Plot"
  7030. #: flatcamGUI/ObjectUI.py:1526
  7031. msgid "Update the plot."
  7032. msgstr "Update the plot."
  7033. #: flatcamGUI/ObjectUI.py:1533
  7034. msgid "<b>Export CNC Code:</b>"
  7035. msgstr "<b>Export CNC Code:</b>"
  7036. #: flatcamGUI/ObjectUI.py:1541
  7037. msgid "Prepend to CNC Code:"
  7038. msgstr "Prepend to CNC Code:"
  7039. #: flatcamGUI/ObjectUI.py:1544
  7040. msgid ""
  7041. "Type here any G-Code commands you would\n"
  7042. "like to add to the beginning of the generated file."
  7043. msgstr ""
  7044. "Type here any G-Code commands you would\n"
  7045. "like to add to the beginning of the generated file."
  7046. #: flatcamGUI/ObjectUI.py:1554
  7047. msgid "Append to CNC Code"
  7048. msgstr "Append to CNC Code"
  7049. #: flatcamGUI/ObjectUI.py:1578
  7050. msgid ""
  7051. "Type here any G-Code commands you would\n"
  7052. "like to be executed when Toolchange event is encountered.\n"
  7053. "This will constitute a Custom Toolchange GCode,\n"
  7054. "or a Toolchange Macro.\n"
  7055. "The FlatCAM variables are surrounded by '%' symbol.\n"
  7056. "\n"
  7057. "WARNING: it can be used only with a postprocessor file\n"
  7058. "that has 'toolchange_custom' in it's name and this is built\n"
  7059. "having as template the 'Toolchange Custom' posprocessor file."
  7060. msgstr ""
  7061. "Type here any G-Code commands you would\n"
  7062. "like to be executed when Toolchange event is encountered.\n"
  7063. "This will constitute a Custom Toolchange GCode,\n"
  7064. "or a Toolchange Macro.\n"
  7065. "The FlatCAM variables are surrounded by '%' symbol.\n"
  7066. "\n"
  7067. "WARNING: it can be used only with a postprocessor file\n"
  7068. "that has 'toolchange_custom' in it's name and this is built\n"
  7069. "having as template the 'Toolchange Custom' posprocessor file."
  7070. #: flatcamGUI/ObjectUI.py:1634
  7071. msgid "z_cut = depth where to cut"
  7072. msgstr "z_cut = depth where to cut"
  7073. #: flatcamGUI/ObjectUI.py:1635
  7074. msgid "z_move = height where to travel"
  7075. msgstr "z_move = height where to travel"
  7076. #: flatcamGUI/ObjectUI.py:1656
  7077. msgid "View CNC Code"
  7078. msgstr "View CNC Code"
  7079. #: flatcamGUI/ObjectUI.py:1659
  7080. msgid ""
  7081. "Opens TAB to view/modify/print G-Code\n"
  7082. "file."
  7083. msgstr ""
  7084. "Opens TAB to view/modify/print G-Code\n"
  7085. "file."
  7086. #: flatcamGUI/ObjectUI.py:1665
  7087. msgid "Save CNC Code"
  7088. msgstr "Save CNC Code"
  7089. #: flatcamGUI/ObjectUI.py:1668
  7090. msgid ""
  7091. "Opens dialog to save G-Code\n"
  7092. "file."
  7093. msgstr ""
  7094. "Opens dialog to save G-Code\n"
  7095. "file."
  7096. #: flatcamTools/ToolCalculators.py:24
  7097. msgid "Calculators"
  7098. msgstr "Calculators"
  7099. #: flatcamTools/ToolCalculators.py:25
  7100. msgid "V-Shape Tool Calculator"
  7101. msgstr "V-Shape Tool Calculator"
  7102. #: flatcamTools/ToolCalculators.py:26
  7103. msgid "Units Calculator"
  7104. msgstr "Units Calculator"
  7105. #: flatcamTools/ToolCalculators.py:27
  7106. msgid "ElectroPlating Calculator"
  7107. msgstr "ElectroPlating Calculator"
  7108. #: flatcamTools/ToolCalculators.py:68
  7109. msgid "Here you enter the value to be converted from INCH to MM"
  7110. msgstr "Here you enter the value to be converted from INCH to MM"
  7111. #: flatcamTools/ToolCalculators.py:73
  7112. msgid "Here you enter the value to be converted from MM to INCH"
  7113. msgstr "Here you enter the value to be converted from MM to INCH"
  7114. #: flatcamTools/ToolCalculators.py:98
  7115. msgid ""
  7116. "This is the diameter of the tool tip.\n"
  7117. "The manufacturer specifies it."
  7118. msgstr ""
  7119. "This is the diameter of the tool tip.\n"
  7120. "The manufacturer specifies it."
  7121. #: flatcamTools/ToolCalculators.py:101
  7122. msgid "Tip Angle:"
  7123. msgstr "Tip Angle:"
  7124. #: flatcamTools/ToolCalculators.py:105
  7125. msgid ""
  7126. "This is the angle of the tip of the tool.\n"
  7127. "It is specified by manufacturer."
  7128. msgstr ""
  7129. "This is the angle of the tip of the tool.\n"
  7130. "It is specified by manufacturer."
  7131. #: flatcamTools/ToolCalculators.py:112
  7132. msgid ""
  7133. "This is the depth to cut into the material.\n"
  7134. "In the CNCJob is the CutZ parameter."
  7135. msgstr ""
  7136. "This is the depth to cut into the material.\n"
  7137. "In the CNCJob is the CutZ parameter."
  7138. #: flatcamTools/ToolCalculators.py:115
  7139. msgid "Tool Diameter:"
  7140. msgstr "Tool Diameter:"
  7141. #: flatcamTools/ToolCalculators.py:119
  7142. msgid ""
  7143. "This is the tool diameter to be entered into\n"
  7144. "FlatCAM Gerber section.\n"
  7145. "In the CNCJob section it is called >Tool dia<."
  7146. msgstr ""
  7147. "This is the tool diameter to be entered into\n"
  7148. "FlatCAM Gerber section.\n"
  7149. "In the CNCJob section it is called >Tool dia<."
  7150. #: flatcamTools/ToolCalculators.py:131 flatcamTools/ToolCalculators.py:214
  7151. msgid "Calculate"
  7152. msgstr "Calculate"
  7153. #: flatcamTools/ToolCalculators.py:134
  7154. msgid ""
  7155. "Calculate either the Cut Z or the effective tool diameter,\n"
  7156. " depending on which is desired and which is known. "
  7157. msgstr ""
  7158. "Calculate either the Cut Z or the effective tool diameter,\n"
  7159. " depending on which is desired and which is known. "
  7160. #: flatcamTools/ToolCalculators.py:190
  7161. msgid "Current Value:"
  7162. msgstr "Current Value:"
  7163. #: flatcamTools/ToolCalculators.py:194
  7164. msgid ""
  7165. "This is the current intensity value\n"
  7166. "to be set on the Power Supply. In Amps."
  7167. msgstr ""
  7168. "This is the current intensity value\n"
  7169. "to be set on the Power Supply. In Amps."
  7170. #: flatcamTools/ToolCalculators.py:198
  7171. msgid "Time:"
  7172. msgstr "Time:"
  7173. #: flatcamTools/ToolCalculators.py:202
  7174. msgid ""
  7175. "This is the calculated time required for the procedure.\n"
  7176. "In minutes."
  7177. msgstr ""
  7178. "This is the calculated time required for the procedure.\n"
  7179. "In minutes."
  7180. #: flatcamTools/ToolCalculators.py:217
  7181. msgid ""
  7182. "Calculate the current intensity value and the procedure time,\n"
  7183. " depending on the parameters above"
  7184. msgstr ""
  7185. "Calculate the current intensity value and the procedure time,\n"
  7186. " depending on the parameters above"
  7187. #: flatcamTools/ToolCutOut.py:17
  7188. msgid "Cutout PCB"
  7189. msgstr "Cutout PCB"
  7190. #: flatcamTools/ToolCutOut.py:53
  7191. msgid "Obj Type:"
  7192. msgstr "Obj Type:"
  7193. #: flatcamTools/ToolCutOut.py:55
  7194. msgid ""
  7195. "Specify the type of object to be cutout.\n"
  7196. "It can be of type: Gerber or Geometry.\n"
  7197. "What is selected here will dictate the kind\n"
  7198. "of objects that will populate the 'Object' combobox."
  7199. msgstr ""
  7200. "Specify the type of object to be cutout.\n"
  7201. "It can be of type: Gerber or Geometry.\n"
  7202. "What is selected here will dictate the kind\n"
  7203. "of objects that will populate the 'Object' combobox."
  7204. #: flatcamTools/ToolCutOut.py:69 flatcamTools/ToolPanelize.py:71
  7205. msgid "Object:"
  7206. msgstr "Object:"
  7207. #: flatcamTools/ToolCutOut.py:71
  7208. msgid "Object to be cutout. "
  7209. msgstr "Object to be cutout. "
  7210. #: flatcamTools/ToolCutOut.py:79
  7211. msgid ""
  7212. "Diameter of the tool used to cutout\n"
  7213. "the PCB shape out of the surrounding material."
  7214. msgstr ""
  7215. "Diameter of the tool used to cutout\n"
  7216. "the PCB shape out of the surrounding material."
  7217. #: flatcamTools/ToolCutOut.py:88
  7218. msgid ""
  7219. "Margin over bounds. A positive value here\n"
  7220. "will make the cutout of the PCB further from\n"
  7221. "the actual PCB border"
  7222. msgstr ""
  7223. "Margin over bounds. A positive value here\n"
  7224. "will make the cutout of the PCB further from\n"
  7225. "the actual PCB border"
  7226. #: flatcamTools/ToolCutOut.py:98
  7227. msgid ""
  7228. "The size of the bridge gaps in the cutout\n"
  7229. "used to keep the board connected to\n"
  7230. "the surrounding material (the one \n"
  7231. "from which the PCB is cutout)."
  7232. msgstr ""
  7233. "The size of the bridge gaps in the cutout\n"
  7234. "used to keep the board connected to\n"
  7235. "the surrounding material (the one \n"
  7236. "from which the PCB is cutout)."
  7237. #: flatcamTools/ToolCutOut.py:114
  7238. msgid "A. Automatic Bridge Gaps"
  7239. msgstr "A. Automatic Bridge Gaps"
  7240. #: flatcamTools/ToolCutOut.py:116
  7241. msgid "This section handle creation of automatic bridge gaps."
  7242. msgstr "This section handle creation of automatic bridge gaps."
  7243. #: flatcamTools/ToolCutOut.py:127
  7244. msgid ""
  7245. "Number of gaps used for the Automatic cutout.\n"
  7246. "There can be maximum 8 bridges/gaps.\n"
  7247. "The choices are:\n"
  7248. "- lr - left + right\n"
  7249. "- tb - top + bottom\n"
  7250. "- 4 - left + right +top + bottom\n"
  7251. "- 2lr - 2*left + 2*right\n"
  7252. "- 2tb - 2*top + 2*bottom\n"
  7253. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7254. msgstr ""
  7255. "Number of gaps used for the Automatic cutout.\n"
  7256. "There can be maximum 8 bridges/gaps.\n"
  7257. "The choices are:\n"
  7258. "- lr - left + right\n"
  7259. "- tb - top + bottom\n"
  7260. "- 4 - left + right +top + bottom\n"
  7261. "- 2lr - 2*left + 2*right\n"
  7262. "- 2tb - 2*top + 2*bottom\n"
  7263. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7264. #: flatcamTools/ToolCutOut.py:150
  7265. msgid "FreeForm:"
  7266. msgstr "FreeForm:"
  7267. #: flatcamTools/ToolCutOut.py:152
  7268. msgid ""
  7269. "The cutout shape can be of ny shape.\n"
  7270. "Useful when the PCB has a non-rectangular shape."
  7271. msgstr ""
  7272. "The cutout shape can be of ny shape.\n"
  7273. "Useful when the PCB has a non-rectangular shape."
  7274. #: flatcamTools/ToolCutOut.py:161
  7275. msgid ""
  7276. "Cutout the selected object.\n"
  7277. "The cutout shape can be of any shape.\n"
  7278. "Useful when the PCB has a non-rectangular shape."
  7279. msgstr ""
  7280. "Cutout the selected object.\n"
  7281. "The cutout shape can be of any shape.\n"
  7282. "Useful when the PCB has a non-rectangular shape."
  7283. #: flatcamTools/ToolCutOut.py:170
  7284. msgid "Rectangular:"
  7285. msgstr "Rectangular:"
  7286. #: flatcamTools/ToolCutOut.py:172
  7287. msgid ""
  7288. "The resulting cutout shape is\n"
  7289. "always a rectangle shape and it will be\n"
  7290. "the bounding box of the Object."
  7291. msgstr ""
  7292. "The resulting cutout shape is\n"
  7293. "always a rectangle shape and it will be\n"
  7294. "the bounding box of the Object."
  7295. #: flatcamTools/ToolCutOut.py:181
  7296. msgid ""
  7297. "Cutout the selected object.\n"
  7298. "The resulting cutout shape is\n"
  7299. "always a rectangle shape and it will be\n"
  7300. "the bounding box of the Object."
  7301. msgstr ""
  7302. "Cutout the selected object.\n"
  7303. "The resulting cutout shape is\n"
  7304. "always a rectangle shape and it will be\n"
  7305. "the bounding box of the Object."
  7306. #: flatcamTools/ToolCutOut.py:189
  7307. msgid "B. Manual Bridge Gaps"
  7308. msgstr "B. Manual Bridge Gaps"
  7309. #: flatcamTools/ToolCutOut.py:191
  7310. msgid ""
  7311. "This section handle creation of manual bridge gaps.\n"
  7312. "This is done by mouse clicking on the perimeter of the\n"
  7313. "Geometry object that is used as a cutout object. "
  7314. msgstr ""
  7315. "This section handle creation of manual bridge gaps.\n"
  7316. "This is done by mouse clicking on the perimeter of the\n"
  7317. "Geometry object that is used as a cutout object. "
  7318. #: flatcamTools/ToolCutOut.py:207
  7319. msgid "Geo Obj:"
  7320. msgstr "Geo Obj:"
  7321. #: flatcamTools/ToolCutOut.py:209
  7322. msgid "Geometry object used to create the manual cutout."
  7323. msgstr "Geometry object used to create the manual cutout."
  7324. #: flatcamTools/ToolCutOut.py:220
  7325. msgid "Manual Geo:"
  7326. msgstr "Manual Geo:"
  7327. #: flatcamTools/ToolCutOut.py:222 flatcamTools/ToolCutOut.py:232
  7328. msgid ""
  7329. "If the object to be cutout is a Gerber\n"
  7330. "first create a Geometry that surrounds it,\n"
  7331. "to be used as the cutout, if one doesn't exist yet.\n"
  7332. "Select the source Gerber file in the top object combobox."
  7333. msgstr ""
  7334. "If the object to be cutout is a Gerber\n"
  7335. "first create a Geometry that surrounds it,\n"
  7336. "to be used as the cutout, if one doesn't exist yet.\n"
  7337. "Select the source Gerber file in the top object combobox."
  7338. #: flatcamTools/ToolCutOut.py:242
  7339. msgid "Manual Add Bridge Gaps:"
  7340. msgstr "Manual Add Bridge Gaps:"
  7341. #: flatcamTools/ToolCutOut.py:244
  7342. msgid ""
  7343. "Use the left mouse button (LMB) click\n"
  7344. "to create a bridge gap to separate the PCB from\n"
  7345. "the surrounding material."
  7346. msgstr ""
  7347. "Use the left mouse button (LMB) click\n"
  7348. "to create a bridge gap to separate the PCB from\n"
  7349. "the surrounding material."
  7350. #: flatcamTools/ToolCutOut.py:251
  7351. msgid "Generate Gap"
  7352. msgstr "Generate Gap"
  7353. #: flatcamTools/ToolCutOut.py:253
  7354. msgid ""
  7355. "Use the left mouse button (LMB) click\n"
  7356. "to create a bridge gap to separate the PCB from\n"
  7357. "the surrounding material.\n"
  7358. "The LMB click has to be done on the perimeter of\n"
  7359. "the Geometry object used as a cutout geometry."
  7360. msgstr ""
  7361. "Use the left mouse button (LMB) click\n"
  7362. "to create a bridge gap to separate the PCB from\n"
  7363. "the surrounding material.\n"
  7364. "The LMB click has to be done on the perimeter of\n"
  7365. "the Geometry object used as a cutout geometry."
  7366. #: flatcamTools/ToolCutOut.py:329 flatcamTools/ToolCutOut.py:468
  7367. #: flatcamTools/ToolNonCopperClear.py:659 flatcamTools/ToolPaint.py:757
  7368. #: flatcamTools/ToolPanelize.py:293 flatcamTools/ToolPanelize.py:307
  7369. #, python-format
  7370. msgid "[ERROR_NOTCL]Could not retrieve object: %s"
  7371. msgstr "[ERROR_NOTCL]Could not retrieve object: %s"
  7372. #: flatcamTools/ToolCutOut.py:333
  7373. msgid ""
  7374. "[ERROR_NOTCL]There is no object selected for Cutout.\n"
  7375. "Select one and try again."
  7376. msgstr ""
  7377. "[ERROR_NOTCL]There is no object selected for Cutout.\n"
  7378. "Select one and try again."
  7379. #: flatcamTools/ToolCutOut.py:349
  7380. msgid ""
  7381. "[WARNING_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
  7382. msgstr ""
  7383. "[WARNING_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
  7384. #: flatcamTools/ToolCutOut.py:359 flatcamTools/ToolCutOut.py:496
  7385. #: flatcamTools/ToolCutOut.py:721
  7386. msgid ""
  7387. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  7388. msgstr ""
  7389. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  7390. #: flatcamTools/ToolCutOut.py:370 flatcamTools/ToolCutOut.py:507
  7391. #: flatcamTools/ToolCutOut.py:616
  7392. msgid ""
  7393. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  7394. msgstr ""
  7395. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  7396. #: flatcamTools/ToolCutOut.py:377 flatcamTools/ToolCutOut.py:514
  7397. msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  7398. msgstr "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  7399. #: flatcamTools/ToolCutOut.py:381 flatcamTools/ToolCutOut.py:518
  7400. msgid ""
  7401. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  7402. "or 8. Fill in a correct value and retry. "
  7403. msgstr ""
  7404. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  7405. "or 8. Fill in a correct value and retry. "
  7406. #: flatcamTools/ToolCutOut.py:386 flatcamTools/ToolCutOut.py:523
  7407. msgid ""
  7408. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  7409. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  7410. "Geometry,\n"
  7411. "and after that perform Cutout."
  7412. msgstr ""
  7413. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  7414. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  7415. "Geometry,\n"
  7416. "and after that perform Cutout."
  7417. #: flatcamTools/ToolCutOut.py:452 flatcamTools/ToolCutOut.py:586
  7418. msgid "[success] Any form CutOut operation finished."
  7419. msgstr "[success] Any form CutOut operation finished."
  7420. #: flatcamTools/ToolCutOut.py:472 flatcamTools/ToolPaint.py:761
  7421. #: flatcamTools/ToolPanelize.py:299
  7422. #, python-format
  7423. msgid "[ERROR_NOTCL]Object not found: %s"
  7424. msgstr "[ERROR_NOTCL]Object not found: %s"
  7425. #: flatcamTools/ToolCutOut.py:486 flatcamTools/ToolCutOut.py:606
  7426. #: flatcamTools/ToolCutOut.py:711
  7427. msgid ""
  7428. "[ERROR_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
  7429. msgstr ""
  7430. "[ERROR_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
  7431. #: flatcamTools/ToolCutOut.py:591
  7432. msgid ""
  7433. "Click on the selected geometry object perimeter to create a bridge gap ..."
  7434. msgstr ""
  7435. "Click on the selected geometry object perimeter to create a bridge gap ..."
  7436. #: flatcamTools/ToolCutOut.py:632
  7437. msgid "Making manual bridge gap..."
  7438. msgstr "Making manual bridge gap..."
  7439. #: flatcamTools/ToolCutOut.py:655
  7440. #, python-format
  7441. msgid "[ERROR_NOTCL]Could not retrieve Geoemtry object: %s"
  7442. msgstr "[ERROR_NOTCL]Could not retrieve Geoemtry object: %s"
  7443. #: flatcamTools/ToolCutOut.py:659
  7444. #, python-format
  7445. msgid "[ERROR_NOTCL]Geometry object for manual cutout not found: %s"
  7446. msgstr "[ERROR_NOTCL]Geometry object for manual cutout not found: %s"
  7447. #: flatcamTools/ToolCutOut.py:669
  7448. msgid "[success] Added manual Bridge Gap."
  7449. msgstr "[success] Added manual Bridge Gap."
  7450. #: flatcamTools/ToolCutOut.py:686
  7451. #, python-format
  7452. msgid "[ERROR_NOTCL]Could not retrieve Gerber object: %s"
  7453. msgstr "[ERROR_NOTCL]Could not retrieve Gerber object: %s"
  7454. #: flatcamTools/ToolCutOut.py:690
  7455. msgid ""
  7456. "[ERROR_NOTCL]There is no Gerber object selected for Cutout.\n"
  7457. "Select one and try again."
  7458. msgstr ""
  7459. "[ERROR_NOTCL]There is no Gerber object selected for Cutout.\n"
  7460. "Select one and try again."
  7461. #: flatcamTools/ToolCutOut.py:695
  7462. msgid ""
  7463. "[ERROR_NOTCL]The selected object has to be of Gerber type.\n"
  7464. "Select a Gerber file and try again."
  7465. msgstr ""
  7466. "[ERROR_NOTCL]The selected object has to be of Gerber type.\n"
  7467. "Select a Gerber file and try again."
  7468. #: flatcamTools/ToolDblSided.py:18
  7469. msgid "2-Sided PCB"
  7470. msgstr "2-Sided PCB"
  7471. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  7472. #: flatcamTools/ToolDblSided.py:100
  7473. msgid "Mirror"
  7474. msgstr "Mirror"
  7475. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  7476. #: flatcamTools/ToolDblSided.py:102
  7477. msgid ""
  7478. "Mirrors (flips) the specified object around \n"
  7479. "the specified axis. Does not create a new \n"
  7480. "object, but modifies it."
  7481. msgstr ""
  7482. "Mirrors (flips) the specified object around \n"
  7483. "the specified axis. Does not create a new \n"
  7484. "object, but modifies it."
  7485. #: flatcamTools/ToolDblSided.py:73
  7486. msgid "Excellon Object to be mirrored."
  7487. msgstr "Excellon Object to be mirrored."
  7488. #: flatcamTools/ToolDblSided.py:97
  7489. msgid "Geometry Obj to be mirrored."
  7490. msgstr "Geometry Obj to be mirrored."
  7491. #: flatcamTools/ToolDblSided.py:135
  7492. msgid ""
  7493. "The axis should pass through a <b>point</b> or cut\n"
  7494. " a specified <b>box</b> (in a FlatCAM object) through \n"
  7495. "the center."
  7496. msgstr ""
  7497. "The axis should pass through a <b>point</b> or cut\n"
  7498. " a specified <b>box</b> (in a FlatCAM object) through \n"
  7499. "the center."
  7500. #: flatcamTools/ToolDblSided.py:152
  7501. msgid "Point/Box Reference:"
  7502. msgstr "Point/Box Reference:"
  7503. #: flatcamTools/ToolDblSided.py:154
  7504. msgid ""
  7505. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  7506. "the mirroring axis passes.\n"
  7507. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  7508. "Geo).\n"
  7509. "Through the center of this object pass the mirroring axis selected above."
  7510. msgstr ""
  7511. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  7512. "the mirroring axis passes.\n"
  7513. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  7514. "Geo).\n"
  7515. "Through the center of this object pass the mirroring axis selected above."
  7516. #: flatcamTools/ToolDblSided.py:162
  7517. msgid ""
  7518. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  7519. "axis \n"
  7520. " selected in 'MIRROR AXIS' pass.\n"
  7521. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  7522. "and left mouse button click on canvas or you can enter the coords manually."
  7523. msgstr ""
  7524. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  7525. "axis \n"
  7526. " selected in 'MIRROR AXIS' pass.\n"
  7527. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  7528. "and left mouse button click on canvas or you can enter the coords manually."
  7529. #: flatcamTools/ToolDblSided.py:182
  7530. msgid "Gerber Reference Box Object"
  7531. msgstr "Gerber Reference Box Object"
  7532. #: flatcamTools/ToolDblSided.py:183
  7533. msgid "Excellon Reference Box Object"
  7534. msgstr "Excellon Reference Box Object"
  7535. #: flatcamTools/ToolDblSided.py:184
  7536. msgid "Geometry Reference Box Object"
  7537. msgstr "Geometry Reference Box Object"
  7538. #: flatcamTools/ToolDblSided.py:193
  7539. msgid "Alignment Drill Coordinates:"
  7540. msgstr "Alignment Drill Coordinates:"
  7541. #: flatcamTools/ToolDblSided.py:195
  7542. msgid ""
  7543. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  7544. "each set of (x, y) coordinates\n"
  7545. "entered here, a pair of drills will be created:\n"
  7546. "\n"
  7547. "- one drill at the coordinates from the field\n"
  7548. "- one drill in mirror position over the axis selected above in the 'Mirror "
  7549. "Axis'."
  7550. msgstr ""
  7551. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  7552. "each set of (x, y) coordinates\n"
  7553. "entered here, a pair of drills will be created:\n"
  7554. "\n"
  7555. "- one drill at the coordinates from the field\n"
  7556. "- one drill in mirror position over the axis selected above in the 'Mirror "
  7557. "Axis'."
  7558. #: flatcamTools/ToolDblSided.py:210
  7559. msgid ""
  7560. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  7561. "on one side of the mirror axis.\n"
  7562. "\n"
  7563. "The coordinates set can be obtained:\n"
  7564. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  7565. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  7566. "field.\n"
  7567. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  7568. "field and click Paste.\n"
  7569. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  7570. msgstr ""
  7571. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  7572. "on one side of the mirror axis.\n"
  7573. "\n"
  7574. "The coordinates set can be obtained:\n"
  7575. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  7576. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  7577. "field.\n"
  7578. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  7579. "field and click Paste.\n"
  7580. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  7581. #: flatcamTools/ToolDblSided.py:224
  7582. msgid "Alignment Drill Diameter"
  7583. msgstr "Alignment Drill Diameter"
  7584. #: flatcamTools/ToolDblSided.py:247
  7585. msgid "Create Excellon Object"
  7586. msgstr "Create Excellon Object"
  7587. #: flatcamTools/ToolDblSided.py:249
  7588. msgid ""
  7589. "Creates an Excellon Object containing the\n"
  7590. "specified alignment holes and their mirror\n"
  7591. "images."
  7592. msgstr ""
  7593. "Creates an Excellon Object containing the\n"
  7594. "specified alignment holes and their mirror\n"
  7595. "images."
  7596. #: flatcamTools/ToolDblSided.py:255
  7597. msgid "Reset"
  7598. msgstr "Reset"
  7599. #: flatcamTools/ToolDblSided.py:257
  7600. msgid "Resets all the fields."
  7601. msgstr "Resets all the fields."
  7602. #: flatcamTools/ToolDblSided.py:302
  7603. msgid "2-Sided Tool"
  7604. msgstr "2-Sided Tool"
  7605. #: flatcamTools/ToolDblSided.py:327
  7606. msgid ""
  7607. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  7608. "missing. Add them and retry."
  7609. msgstr ""
  7610. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  7611. "missing. Add them and retry."
  7612. #: flatcamTools/ToolDblSided.py:346
  7613. msgid ""
  7614. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  7615. msgstr ""
  7616. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  7617. #: flatcamTools/ToolDblSided.py:368
  7618. msgid ""
  7619. "[WARNING_NOTCL]No value or wrong format in Drill Dia entry. Add it and retry."
  7620. msgstr ""
  7621. "[WARNING_NOTCL]No value or wrong format in Drill Dia entry. Add it and retry."
  7622. #: flatcamTools/ToolDblSided.py:375
  7623. msgid ""
  7624. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  7625. "and retry."
  7626. msgstr ""
  7627. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  7628. "and retry."
  7629. #: flatcamTools/ToolDblSided.py:397
  7630. msgid "[success] Excellon object with alignment drills created..."
  7631. msgstr "[success] Excellon object with alignment drills created..."
  7632. #: flatcamTools/ToolDblSided.py:406
  7633. msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
  7634. msgstr "[WARNING_NOTCL] There is no Gerber object loaded ..."
  7635. #: flatcamTools/ToolDblSided.py:410 flatcamTools/ToolDblSided.py:453
  7636. #: flatcamTools/ToolDblSided.py:497
  7637. msgid ""
  7638. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  7639. msgstr ""
  7640. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  7641. #: flatcamTools/ToolDblSided.py:420
  7642. msgid ""
  7643. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  7644. "mirroring reference."
  7645. msgstr ""
  7646. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  7647. "mirroring reference."
  7648. #: flatcamTools/ToolDblSided.py:430 flatcamTools/ToolDblSided.py:474
  7649. #: flatcamTools/ToolDblSided.py:511
  7650. msgid "[WARNING_NOTCL] There is no Box object loaded ..."
  7651. msgstr "[WARNING_NOTCL] There is no Box object loaded ..."
  7652. #: flatcamTools/ToolDblSided.py:440
  7653. #, python-format
  7654. msgid "[success] Gerber %s was mirrored..."
  7655. msgstr "[success] Gerber %s was mirrored..."
  7656. #: flatcamTools/ToolDblSided.py:449
  7657. msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
  7658. msgstr "[WARNING_NOTCL] There is no Excellon object loaded ..."
  7659. #: flatcamTools/ToolDblSided.py:464
  7660. msgid ""
  7661. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  7662. "coords and try again ..."
  7663. msgstr ""
  7664. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  7665. "coords and try again ..."
  7666. #: flatcamTools/ToolDblSided.py:484
  7667. #, python-format
  7668. msgid "[success] Excellon %s was mirrored..."
  7669. msgstr "[success] Excellon %s was mirrored..."
  7670. #: flatcamTools/ToolDblSided.py:493
  7671. msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
  7672. msgstr "[WARNING_NOTCL] There is no Geometry object loaded ..."
  7673. #: flatcamTools/ToolDblSided.py:521
  7674. #, python-format
  7675. msgid "[success] Geometry %s was mirrored..."
  7676. msgstr "[success] Geometry %s was mirrored..."
  7677. #: flatcamTools/ToolFilm.py:25
  7678. msgid "Film PCB"
  7679. msgstr "Film PCB"
  7680. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  7681. #: flatcamTools/ToolPanelize.py:56
  7682. msgid "Object Type:"
  7683. msgstr "Object Type:"
  7684. #: flatcamTools/ToolFilm.py:58
  7685. msgid ""
  7686. "Specify the type of object for which to create the film.\n"
  7687. "The object can be of type: Gerber or Geometry.\n"
  7688. "The selection here decide the type of objects that will be\n"
  7689. "in the Film Object combobox."
  7690. msgstr ""
  7691. "Specify the type of object for which to create the film.\n"
  7692. "The object can be of type: Gerber or Geometry.\n"
  7693. "The selection here decide the type of objects that will be\n"
  7694. "in the Film Object combobox."
  7695. #: flatcamTools/ToolFilm.py:71
  7696. msgid "Film Object:"
  7697. msgstr "Film Object:"
  7698. #: flatcamTools/ToolFilm.py:73
  7699. msgid "Object for which to create the film."
  7700. msgstr "Object for which to create the film."
  7701. #: flatcamTools/ToolFilm.py:89 flatcamTools/ToolPanelize.py:89
  7702. msgid "Box Type:"
  7703. msgstr "Box Type:"
  7704. #: flatcamTools/ToolFilm.py:91
  7705. msgid ""
  7706. "Specify the type of object to be used as an container for\n"
  7707. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  7708. "the type of objects that will be\n"
  7709. "in the Box Object combobox."
  7710. msgstr ""
  7711. "Specify the type of object to be used as an container for\n"
  7712. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  7713. "the type of objects that will be\n"
  7714. "in the Box Object combobox."
  7715. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:104
  7716. msgid "Box Object:"
  7717. msgstr "Box Object:"
  7718. #: flatcamTools/ToolFilm.py:106
  7719. msgid ""
  7720. "The actual object that is used a container for the\n"
  7721. " selected object for which we create the film.\n"
  7722. "Usually it is the PCB outline but it can be also the\n"
  7723. "same object for which the film is created."
  7724. msgstr ""
  7725. "The actual object that is used a container for the\n"
  7726. " selected object for which we create the film.\n"
  7727. "Usually it is the PCB outline but it can be also the\n"
  7728. "same object for which the film is created."
  7729. #: flatcamTools/ToolFilm.py:157
  7730. msgid "Save Film"
  7731. msgstr "Save Film"
  7732. #: flatcamTools/ToolFilm.py:159
  7733. msgid ""
  7734. "Create a Film for the selected object, within\n"
  7735. "the specified box. Does not create a new \n"
  7736. " FlatCAM object, but directly save it in SVG format\n"
  7737. "which can be opened with Inkscape."
  7738. msgstr ""
  7739. "Create a Film for the selected object, within\n"
  7740. "the specified box. Does not create a new \n"
  7741. " FlatCAM object, but directly save it in SVG format\n"
  7742. "which can be opened with Inkscape."
  7743. #: flatcamTools/ToolFilm.py:225
  7744. msgid ""
  7745. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  7746. msgstr ""
  7747. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  7748. #: flatcamTools/ToolFilm.py:231
  7749. msgid ""
  7750. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  7751. msgstr ""
  7752. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  7753. #: flatcamTools/ToolFilm.py:255
  7754. msgid "Generating Film ..."
  7755. msgstr "Generating Film ..."
  7756. #: flatcamTools/ToolFilm.py:260 flatcamTools/ToolFilm.py:264
  7757. msgid "Export SVG positive"
  7758. msgstr "Export SVG positive"
  7759. #: flatcamTools/ToolFilm.py:269
  7760. msgid "[WARNING_NOTCL]Export SVG positive cancelled."
  7761. msgstr "[WARNING_NOTCL]Export SVG positive cancelled."
  7762. #: flatcamTools/ToolFilm.py:276 flatcamTools/ToolFilm.py:280
  7763. msgid "Export SVG negative"
  7764. msgstr "Export SVG negative"
  7765. #: flatcamTools/ToolFilm.py:285
  7766. msgid "[WARNING_NOTCL]Export SVG negative cancelled."
  7767. msgstr "[WARNING_NOTCL]Export SVG negative cancelled."
  7768. #: flatcamTools/ToolImage.py:25
  7769. msgid "Image as Object"
  7770. msgstr "Image as Object"
  7771. #: flatcamTools/ToolImage.py:31
  7772. msgid "Image to PCB"
  7773. msgstr "Image to PCB"
  7774. #: flatcamTools/ToolImage.py:55
  7775. msgid ""
  7776. "Specify the type of object to create from the image.\n"
  7777. "It can be of type: Gerber or Geometry."
  7778. msgstr ""
  7779. "Specify the type of object to create from the image.\n"
  7780. "It can be of type: Gerber or Geometry."
  7781. #: flatcamTools/ToolImage.py:63
  7782. msgid "DPI value:"
  7783. msgstr "DPI value:"
  7784. #: flatcamTools/ToolImage.py:65
  7785. msgid "Specify a DPI value for the image."
  7786. msgstr "Specify a DPI value for the image."
  7787. #: flatcamTools/ToolImage.py:72
  7788. msgid "Level of detail"
  7789. msgstr "Level of detail"
  7790. #: flatcamTools/ToolImage.py:81
  7791. msgid "Image type"
  7792. msgstr "Image type"
  7793. #: flatcamTools/ToolImage.py:83
  7794. msgid ""
  7795. "Choose a method for the image interpretation.\n"
  7796. "B/W means a black & white image. Color means a colored image."
  7797. msgstr ""
  7798. "Choose a method for the image interpretation.\n"
  7799. "B/W means a black & white image. Color means a colored image."
  7800. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  7801. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  7802. msgid "Mask value"
  7803. msgstr "Mask value"
  7804. #: flatcamTools/ToolImage.py:92
  7805. msgid ""
  7806. "Mask for monochrome image.\n"
  7807. "Takes values between [0 ... 255].\n"
  7808. "Decides the level of details to include\n"
  7809. "in the resulting geometry.\n"
  7810. "0 means no detail and 255 means everything \n"
  7811. "(which is totally black)."
  7812. msgstr ""
  7813. "Mask for monochrome image.\n"
  7814. "Takes values between [0 ... 255].\n"
  7815. "Decides the level of details to include\n"
  7816. "in the resulting geometry.\n"
  7817. "0 means no detail and 255 means everything \n"
  7818. "(which is totally black)."
  7819. #: flatcamTools/ToolImage.py:105
  7820. msgid ""
  7821. "Mask for RED color.\n"
  7822. "Takes values between [0 ... 255].\n"
  7823. "Decides the level of details to include\n"
  7824. "in the resulting geometry."
  7825. msgstr ""
  7826. "Mask for RED color.\n"
  7827. "Takes values between [0 ... 255].\n"
  7828. "Decides the level of details to include\n"
  7829. "in the resulting geometry."
  7830. #: flatcamTools/ToolImage.py:116
  7831. msgid ""
  7832. "Mask for GREEN color.\n"
  7833. "Takes values between [0 ... 255].\n"
  7834. "Decides the level of details to include\n"
  7835. "in the resulting geometry."
  7836. msgstr ""
  7837. "Mask for GREEN color.\n"
  7838. "Takes values between [0 ... 255].\n"
  7839. "Decides the level of details to include\n"
  7840. "in the resulting geometry."
  7841. #: flatcamTools/ToolImage.py:127
  7842. msgid ""
  7843. "Mask for BLUE color.\n"
  7844. "Takes values between [0 ... 255].\n"
  7845. "Decides the level of details to include\n"
  7846. "in the resulting geometry."
  7847. msgstr ""
  7848. "Mask for BLUE color.\n"
  7849. "Takes values between [0 ... 255].\n"
  7850. "Decides the level of details to include\n"
  7851. "in the resulting geometry."
  7852. #: flatcamTools/ToolImage.py:139
  7853. msgid "Import image"
  7854. msgstr "Import image"
  7855. #: flatcamTools/ToolImage.py:141
  7856. msgid "Open a image of raster type and then import it in FlatCAM."
  7857. msgstr "Open a image of raster type and then import it in FlatCAM."
  7858. #: flatcamTools/ToolImage.py:170
  7859. msgid "Image Tool"
  7860. msgstr "Image Tool"
  7861. #: flatcamTools/ToolImage.py:200 flatcamTools/ToolImage.py:203
  7862. msgid "Import IMAGE"
  7863. msgstr "Import IMAGE"
  7864. #: flatcamTools/ToolMeasurement.py:26
  7865. msgid "Measurement"
  7866. msgstr "Measurement"
  7867. #: flatcamTools/ToolMeasurement.py:47
  7868. msgid "Start"
  7869. msgstr "Start"
  7870. #: flatcamTools/ToolMeasurement.py:47 flatcamTools/ToolMeasurement.py:50
  7871. msgid "Coords"
  7872. msgstr "Coords"
  7873. #: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:99
  7874. msgid "This is measuring Start point coordinates."
  7875. msgstr "This is measuring Start point coordinates."
  7876. #: flatcamTools/ToolMeasurement.py:50
  7877. msgid "Stop"
  7878. msgstr "Stop"
  7879. #: flatcamTools/ToolMeasurement.py:51 flatcamTools/ToolMeasurement.py:104
  7880. msgid "This is the measuring Stop point coordinates."
  7881. msgstr "This is the measuring Stop point coordinates."
  7882. #: flatcamTools/ToolMeasurement.py:54 flatcamTools/ToolMeasurement.py:109
  7883. msgid "This is the distance measured over the X axis."
  7884. msgstr "This is the distance measured over the X axis."
  7885. #: flatcamTools/ToolMeasurement.py:57 flatcamTools/ToolMeasurement.py:115
  7886. msgid "This is the distance measured over the Y axis."
  7887. msgstr "This is the distance measured over the Y axis."
  7888. #: flatcamTools/ToolMeasurement.py:59
  7889. msgid "DISTANCE"
  7890. msgstr "DISTANCE"
  7891. #: flatcamTools/ToolMeasurement.py:60 flatcamTools/ToolMeasurement.py:121
  7892. msgid "This is the point to point Euclidian distance."
  7893. msgstr "This is the point to point Euclidian distance."
  7894. #: flatcamTools/ToolMeasurement.py:63 flatcamTools/ToolMeasurement.py:70
  7895. #: flatcamTools/ToolMeasurement.py:77 flatcamTools/ToolMeasurement.py:84
  7896. #: flatcamTools/ToolMeasurement.py:91
  7897. msgid "Those are the units in which the distance is measured."
  7898. msgstr "Those are the units in which the distance is measured."
  7899. #: flatcamTools/ToolMeasurement.py:124
  7900. msgid "Measure"
  7901. msgstr "Measure"
  7902. #: flatcamTools/ToolMeasurement.py:183
  7903. msgid "Meas. Tool"
  7904. msgstr "Meas. Tool"
  7905. #: flatcamTools/ToolMeasurement.py:276
  7906. msgid "MEASURING: Click on the Start point ..."
  7907. msgstr "MEASURING: Click on the Start point ..."
  7908. #: flatcamTools/ToolMeasurement.py:305
  7909. msgid "MEASURING: Click on the Destination point ..."
  7910. msgstr "MEASURING: Click on the Destination point ..."
  7911. #: flatcamTools/ToolMeasurement.py:326
  7912. #, python-brace-format
  7913. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  7914. msgstr "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  7915. #: flatcamTools/ToolMove.py:81
  7916. msgid "MOVE: Click on the Start point ..."
  7917. msgstr "MOVE: Click on the Start point ..."
  7918. #: flatcamTools/ToolMove.py:88
  7919. msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  7920. msgstr "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  7921. #: flatcamTools/ToolMove.py:110
  7922. msgid "MOVE: Click on the Destination point ..."
  7923. msgstr "MOVE: Click on the Destination point ..."
  7924. #: flatcamTools/ToolMove.py:128
  7925. msgid "Moving ..."
  7926. msgstr "Moving ..."
  7927. #: flatcamTools/ToolMove.py:135
  7928. msgid "[WARNING_NOTCL] No object(s) selected."
  7929. msgstr "[WARNING_NOTCL] No object(s) selected."
  7930. #: flatcamTools/ToolMove.py:158
  7931. #, python-format
  7932. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  7933. msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  7934. #: flatcamTools/ToolMove.py:164
  7935. #, python-format
  7936. msgid "[success]%s object was moved ..."
  7937. msgstr "[success]%s object was moved ..."
  7938. #: flatcamTools/ToolMove.py:174
  7939. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  7940. msgstr ""
  7941. "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  7942. #: flatcamTools/ToolMove.py:202
  7943. msgid "[WARNING_NOTCL]Move action cancelled."
  7944. msgstr "[WARNING_NOTCL]Move action cancelled."
  7945. #: flatcamTools/ToolMove.py:214
  7946. msgid "[WARNING_NOTCL]Object(s) not selected"
  7947. msgstr "[WARNING_NOTCL]Object(s) not selected"
  7948. #: flatcamTools/ToolNonCopperClear.py:25
  7949. msgid "Non-Copper Clearing"
  7950. msgstr "Non-Copper Clearing"
  7951. #: flatcamTools/ToolNonCopperClear.py:63
  7952. msgid "Gerber object to be cleared of excess copper. "
  7953. msgstr "Gerber object to be cleared of excess copper. "
  7954. #: flatcamTools/ToolNonCopperClear.py:73
  7955. msgid ""
  7956. "Tools pool from which the algorithm\n"
  7957. "will pick the ones used for copper clearing."
  7958. msgstr ""
  7959. "Tools pool from which the algorithm\n"
  7960. "will pick the ones used for copper clearing."
  7961. #: flatcamTools/ToolNonCopperClear.py:88
  7962. msgid ""
  7963. "This is the Tool Number.\n"
  7964. "Non copper clearing will start with the tool with the biggest \n"
  7965. "diameter, continuing until there are no more tools.\n"
  7966. "Only tools that create NCC clearing geometry will still be present\n"
  7967. "in the resulting geometry. This is because with some tools\n"
  7968. "this function will not be able to create painting geometry."
  7969. msgstr ""
  7970. "This is the Tool Number.\n"
  7971. "Non copper clearing will start with the tool with the biggest \n"
  7972. "diameter, continuing until there are no more tools.\n"
  7973. "Only tools that create NCC clearing geometry will still be present\n"
  7974. "in the resulting geometry. This is because with some tools\n"
  7975. "this function will not be able to create painting geometry."
  7976. #: flatcamTools/ToolNonCopperClear.py:100 flatcamTools/ToolPaint.py:98
  7977. msgid ""
  7978. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  7979. "informative only. Being circular, <BR>the cut width in material is exactly "
  7980. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  7981. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  7982. "parameter in the resulting geometry UI form and enable two additional UI "
  7983. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  7984. "those two values will adjust the Z-Cut parameter such as the cut width into "
  7985. "material will be equal with the value in the Tool Diameter column of this "
  7986. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  7987. "the Operation Type in the resulting geometry as Isolation."
  7988. msgstr ""
  7989. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  7990. "informative only. Being circular, <BR>the cut width in material is exactly "
  7991. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  7992. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  7993. "parameter in the resulting geometry UI form and enable two additional UI "
  7994. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  7995. "those two values will adjust the Z-Cut parameter such as the cut width into "
  7996. "material will be equal with the value in the Tool Diameter column of this "
  7997. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  7998. "the Operation Type in the resulting geometry as Isolation."
  7999. #: flatcamTools/ToolNonCopperClear.py:119 flatcamTools/ToolPaint.py:117
  8000. msgid "Tool Dia"
  8001. msgstr "Tool Dia"
  8002. #: flatcamTools/ToolNonCopperClear.py:121
  8003. msgid "Diameter for the new tool to add in the Tool Table"
  8004. msgstr "Diameter for the new tool to add in the Tool Table"
  8005. #: flatcamTools/ToolNonCopperClear.py:147 flatcamTools/ToolPaint.py:145
  8006. #: flatcamTools/ToolSolderPaste.py:123
  8007. msgid ""
  8008. "Delete a selection of tools in the Tool Table\n"
  8009. "by first selecting a row(s) in the Tool Table."
  8010. msgstr ""
  8011. "Delete a selection of tools in the Tool Table\n"
  8012. "by first selecting a row(s) in the Tool Table."
  8013. #: flatcamTools/ToolNonCopperClear.py:225
  8014. msgid ""
  8015. "If checked, use 'rest machining'.\n"
  8016. "Basically it will clear copper outside PCB features,\n"
  8017. "using the biggest tool and continue with the next tools,\n"
  8018. "from bigger to smaller, to clear areas of copper that\n"
  8019. "could not be cleared by previous tool, until there is\n"
  8020. "no more copper to clear or there are no more tools.\n"
  8021. "If not checked, use the standard algorithm."
  8022. msgstr ""
  8023. "If checked, use 'rest machining'.\n"
  8024. "Basically it will clear copper outside PCB features,\n"
  8025. "using the biggest tool and continue with the next tools,\n"
  8026. "from bigger to smaller, to clear areas of copper that\n"
  8027. "could not be cleared by previous tool, until there is\n"
  8028. "no more copper to clear or there are no more tools.\n"
  8029. "If not checked, use the standard algorithm."
  8030. #: flatcamTools/ToolNonCopperClear.py:237
  8031. msgid "Generate Geometry"
  8032. msgstr "Generate Geometry"
  8033. #: flatcamTools/ToolNonCopperClear.py:483 flatcamTools/ToolPaint.py:543
  8034. #: flatcamTools/ToolSolderPaste.py:760
  8035. msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  8036. msgstr "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  8037. #: flatcamTools/ToolNonCopperClear.py:511 flatcamTools/ToolPaint.py:567
  8038. msgid "[WARNING_NOTCL]Adding tool cancelled. Tool already in Tool Table."
  8039. msgstr "[WARNING_NOTCL]Adding tool cancelled. Tool already in Tool Table."
  8040. #: flatcamTools/ToolNonCopperClear.py:516 flatcamTools/ToolPaint.py:572
  8041. msgid "[success] New tool added to Tool Table."
  8042. msgstr "[success] New tool added to Tool Table."
  8043. #: flatcamTools/ToolNonCopperClear.py:549
  8044. msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
  8045. msgstr "[ERROR_NOTCL] Wrong value format entered, use a number."
  8046. #: flatcamTools/ToolNonCopperClear.py:558 flatcamTools/ToolPaint.py:615
  8047. msgid "[success] Tool from Tool Table was edited."
  8048. msgstr "[success] Tool from Tool Table was edited."
  8049. #: flatcamTools/ToolNonCopperClear.py:569 flatcamTools/ToolPaint.py:626
  8050. #: flatcamTools/ToolSolderPaste.py:846
  8051. msgid ""
  8052. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  8053. "Table."
  8054. msgstr ""
  8055. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  8056. "Table."
  8057. #: flatcamTools/ToolNonCopperClear.py:608 flatcamTools/ToolPaint.py:723
  8058. msgid "[WARNING_NOTCL]Delete failed. Select a tool to delete."
  8059. msgstr "[WARNING_NOTCL]Delete failed. Select a tool to delete."
  8060. #: flatcamTools/ToolNonCopperClear.py:613 flatcamTools/ToolPaint.py:728
  8061. msgid "[success] Tool(s) deleted from Tool Table."
  8062. msgstr "[success] Tool(s) deleted from Tool Table."
  8063. #: flatcamTools/ToolNonCopperClear.py:666
  8064. msgid "[ERROR_NOTCL]No Gerber file available."
  8065. msgstr "[ERROR_NOTCL]No Gerber file available."
  8066. #: flatcamTools/ToolNonCopperClear.py:704
  8067. #: flatcamTools/ToolNonCopperClear.py:826
  8068. msgid "Clearing Non-Copper areas."
  8069. msgstr "Clearing Non-Copper areas."
  8070. #: flatcamTools/ToolNonCopperClear.py:722
  8071. #, python-format
  8072. msgid "[success] Non-Copper Clearing with ToolDia = %s started."
  8073. msgstr "[success] Non-Copper Clearing with ToolDia = %s started."
  8074. #: flatcamTools/ToolNonCopperClear.py:791
  8075. #, python-format
  8076. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  8077. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  8078. #: flatcamTools/ToolNonCopperClear.py:796
  8079. msgid "[success] NCC Tool finished."
  8080. msgstr "[success] NCC Tool finished."
  8081. #: flatcamTools/ToolNonCopperClear.py:798
  8082. msgid ""
  8083. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  8084. "cleared. Check the result."
  8085. msgstr ""
  8086. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  8087. "cleared. Check the result."
  8088. #: flatcamTools/ToolNonCopperClear.py:844
  8089. #, python-format
  8090. msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  8091. msgstr "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  8092. #: flatcamTools/ToolNonCopperClear.py:942
  8093. #, python-format
  8094. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  8095. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  8096. #: flatcamTools/ToolNonCopperClear.py:950
  8097. msgid ""
  8098. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  8099. "settings."
  8100. msgstr ""
  8101. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  8102. "settings."
  8103. #: flatcamTools/ToolPaint.py:24
  8104. msgid "Paint Area"
  8105. msgstr "Paint Area"
  8106. #: flatcamTools/ToolPaint.py:60
  8107. msgid "Geometry:"
  8108. msgstr "Geometry:"
  8109. #: flatcamTools/ToolPaint.py:62
  8110. msgid "Geometry object to be painted. "
  8111. msgstr "Geometry object to be painted. "
  8112. #: flatcamTools/ToolPaint.py:71
  8113. msgid ""
  8114. "Tools pool from which the algorithm\n"
  8115. "will pick the ones used for painting."
  8116. msgstr ""
  8117. "Tools pool from which the algorithm\n"
  8118. "will pick the ones used for painting."
  8119. #: flatcamTools/ToolPaint.py:86
  8120. msgid ""
  8121. "This is the Tool Number.\n"
  8122. "Painting will start with the tool with the biggest diameter,\n"
  8123. "continuing until there are no more tools.\n"
  8124. "Only tools that create painting geometry will still be present\n"
  8125. "in the resulting geometry. This is because with some tools\n"
  8126. "this function will not be able to create painting geometry."
  8127. msgstr ""
  8128. "This is the Tool Number.\n"
  8129. "Painting will start with the tool with the biggest diameter,\n"
  8130. "continuing until there are no more tools.\n"
  8131. "Only tools that create painting geometry will still be present\n"
  8132. "in the resulting geometry. This is because with some tools\n"
  8133. "this function will not be able to create painting geometry."
  8134. #: flatcamTools/ToolPaint.py:119
  8135. msgid "Diameter for the new tool."
  8136. msgstr "Diameter for the new tool."
  8137. #: flatcamTools/ToolPaint.py:224
  8138. msgid ""
  8139. "If checked, use 'rest machining'.\n"
  8140. "Basically it will clear copper outside PCB features,\n"
  8141. "using the biggest tool and continue with the next tools,\n"
  8142. "from bigger to smaller, to clear areas of copper that\n"
  8143. "could not be cleared by previous tool, until there is\n"
  8144. "no more copper to clear or there are no more tools.\n"
  8145. "\n"
  8146. "If not checked, use the standard algorithm."
  8147. msgstr ""
  8148. "If checked, use 'rest machining'.\n"
  8149. "Basically it will clear copper outside PCB features,\n"
  8150. "using the biggest tool and continue with the next tools,\n"
  8151. "from bigger to smaller, to clear areas of copper that\n"
  8152. "could not be cleared by previous tool, until there is\n"
  8153. "no more copper to clear or there are no more tools.\n"
  8154. "\n"
  8155. "If not checked, use the standard algorithm."
  8156. #: flatcamTools/ToolPaint.py:239
  8157. msgid ""
  8158. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  8159. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  8160. "polygons."
  8161. msgstr ""
  8162. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  8163. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  8164. "polygons."
  8165. #: flatcamTools/ToolPaint.py:254
  8166. msgid "Create Paint Geometry"
  8167. msgstr "Create Paint Geometry"
  8168. #: flatcamTools/ToolPaint.py:256
  8169. msgid ""
  8170. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  8171. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  8172. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  8173. "created."
  8174. msgstr ""
  8175. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  8176. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  8177. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  8178. "created."
  8179. #: flatcamTools/ToolPaint.py:732
  8180. msgid "geometry_on_paint_button"
  8181. msgstr "geometry_on_paint_button"
  8182. #: flatcamTools/ToolPaint.py:735 flatcamTools/ToolPaint.py:780
  8183. msgid "[WARNING_NOTCL]Click inside the desired polygon."
  8184. msgstr "[WARNING_NOTCL]Click inside the desired polygon."
  8185. #: flatcamTools/ToolPaint.py:767
  8186. msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  8187. msgstr "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  8188. #: flatcamTools/ToolPaint.py:789 flatcamTools/ToolPaint.py:992
  8189. msgid "Painting polygon..."
  8190. msgstr "Painting polygon..."
  8191. #: flatcamTools/ToolPaint.py:840
  8192. msgid "[WARNING] No polygon found."
  8193. msgstr "[WARNING] No polygon found."
  8194. #: flatcamTools/ToolPaint.py:843
  8195. msgid "Painting polygon."
  8196. msgstr "Painting polygon."
  8197. #: flatcamTools/ToolPaint.py:885
  8198. msgid "[ERROR_NOTCL] Geometry could not be painted completely"
  8199. msgstr "[ERROR_NOTCL] Geometry could not be painted completely"
  8200. #: flatcamTools/ToolPaint.py:911
  8201. #, python-format
  8202. msgid ""
  8203. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  8204. "different strategy of paint\n"
  8205. "%s"
  8206. msgstr ""
  8207. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  8208. "different strategy of paint\n"
  8209. "%s"
  8210. #: flatcamTools/ToolPaint.py:953
  8211. #, python-format
  8212. msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  8213. msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  8214. #: flatcamTools/ToolPaint.py:959 flatcamTools/ToolPaint.py:1251
  8215. msgid "Polygon Paint started ..."
  8216. msgstr "Polygon Paint started ..."
  8217. #: flatcamTools/ToolPaint.py:1107 flatcamTools/ToolPaint.py:1196
  8218. #, python-format
  8219. msgid ""
  8220. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  8221. "Or a different Method of paint\n"
  8222. "%s"
  8223. msgstr ""
  8224. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  8225. "Or a different Method of paint\n"
  8226. "%s"
  8227. #: flatcamTools/ToolPaint.py:1131
  8228. msgid ""
  8229. "[ERROR] There is no Painting Geometry in the file.\n"
  8230. "Usually it means that the tool diameter is too big for the painted "
  8231. "geometry.\n"
  8232. "Change the painting parameters and try again."
  8233. msgstr ""
  8234. "[ERROR] There is no Painting Geometry in the file.\n"
  8235. "Usually it means that the tool diameter is too big for the painted "
  8236. "geometry.\n"
  8237. "Change the painting parameters and try again."
  8238. #: flatcamTools/ToolPaint.py:1140
  8239. msgid "[success] Paint All Done."
  8240. msgstr "[success] Paint All Done."
  8241. #: flatcamTools/ToolPaint.py:1226
  8242. msgid ""
  8243. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  8244. "Usually it means that the tool diameter is too big for the painted "
  8245. "geometry.\n"
  8246. "Change the painting parameters and try again."
  8247. msgstr ""
  8248. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  8249. "Usually it means that the tool diameter is too big for the painted "
  8250. "geometry.\n"
  8251. "Change the painting parameters and try again."
  8252. #: flatcamTools/ToolPaint.py:1235
  8253. msgid "[success] Paint All with Rest-Machining done."
  8254. msgstr "[success] Paint All with Rest-Machining done."
  8255. #: flatcamTools/ToolPanelize.py:25
  8256. msgid "Panelize PCB"
  8257. msgstr "Panelize PCB"
  8258. #: flatcamTools/ToolPanelize.py:58
  8259. msgid ""
  8260. "Specify the type of object to be panelized\n"
  8261. "It can be of type: Gerber, Excellon or Geometry.\n"
  8262. "The selection here decide the type of objects that will be\n"
  8263. "in the Object combobox."
  8264. msgstr ""
  8265. "Specify the type of object to be panelized\n"
  8266. "It can be of type: Gerber, Excellon or Geometry.\n"
  8267. "The selection here decide the type of objects that will be\n"
  8268. "in the Object combobox."
  8269. #: flatcamTools/ToolPanelize.py:73
  8270. msgid ""
  8271. "Object to be panelized. This means that it will\n"
  8272. "be duplicated in an array of rows and columns."
  8273. msgstr ""
  8274. "Object to be panelized. This means that it will\n"
  8275. "be duplicated in an array of rows and columns."
  8276. #: flatcamTools/ToolPanelize.py:91
  8277. msgid ""
  8278. "Specify the type of object to be used as an container for\n"
  8279. "panelization. It can be: Gerber or Geometry type.\n"
  8280. "The selection here decide the type of objects that will be\n"
  8281. "in the Box Object combobox."
  8282. msgstr ""
  8283. "Specify the type of object to be used as an container for\n"
  8284. "panelization. It can be: Gerber or Geometry type.\n"
  8285. "The selection here decide the type of objects that will be\n"
  8286. "in the Box Object combobox."
  8287. #: flatcamTools/ToolPanelize.py:106
  8288. msgid ""
  8289. "The actual object that is used a container for the\n"
  8290. " selected object that is to be panelized."
  8291. msgstr ""
  8292. "The actual object that is used a container for the\n"
  8293. " selected object that is to be panelized."
  8294. #: flatcamTools/ToolPanelize.py:150
  8295. msgid ""
  8296. "Choose the type of object for the panel object:\n"
  8297. "- Geometry\n"
  8298. "- Gerber"
  8299. msgstr ""
  8300. "Choose the type of object for the panel object:\n"
  8301. "- Geometry\n"
  8302. "- Gerber"
  8303. #: flatcamTools/ToolPanelize.py:158
  8304. msgid "Constrain panel within:"
  8305. msgstr "Constrain panel within:"
  8306. #: flatcamTools/ToolPanelize.py:192
  8307. msgid "Panelize Object"
  8308. msgstr "Panelize Object"
  8309. #: flatcamTools/ToolPanelize.py:194
  8310. msgid ""
  8311. "Panelize the specified object around the specified box.\n"
  8312. "In other words it creates multiple copies of the source object,\n"
  8313. "arranged in a 2D array of rows and columns."
  8314. msgstr ""
  8315. "Panelize the specified object around the specified box.\n"
  8316. "In other words it creates multiple copies of the source object,\n"
  8317. "arranged in a 2D array of rows and columns."
  8318. #: flatcamTools/ToolPanelize.py:311
  8319. #, python-format
  8320. msgid "[WARNING]No object Box. Using instead %s"
  8321. msgstr "[WARNING]No object Box. Using instead %s"
  8322. #: flatcamTools/ToolPanelize.py:392
  8323. msgid ""
  8324. "[ERROR_NOTCL]Columns or Rows are zero value. Change them to a positive "
  8325. "integer."
  8326. msgstr ""
  8327. "[ERROR_NOTCL]Columns or Rows are zero value. Change them to a positive "
  8328. "integer."
  8329. #: flatcamTools/ToolPanelize.py:417 flatcamTools/ToolPanelize.py:526
  8330. msgid "Generating panel ... Please wait."
  8331. msgstr "Generating panel ... Please wait."
  8332. #: flatcamTools/ToolPanelize.py:520
  8333. msgid "[success]Panel done..."
  8334. msgstr "[success]Panel done..."
  8335. #: flatcamTools/ToolPanelize.py:523
  8336. #, python-brace-format
  8337. msgid ""
  8338. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  8339. "{row} rows"
  8340. msgstr ""
  8341. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  8342. "{row} rows"
  8343. #: flatcamTools/ToolPanelize.py:531
  8344. msgid "[success]Panel created successfully."
  8345. msgstr "[success]Panel created successfully."
  8346. #: flatcamTools/ToolProperties.py:103
  8347. msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  8348. msgstr "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  8349. #: flatcamTools/ToolProperties.py:110
  8350. msgid "[success] Object Properties are displayed."
  8351. msgstr "[success] Object Properties are displayed."
  8352. #: flatcamTools/ToolProperties.py:111
  8353. msgid "Properties Tool"
  8354. msgstr "Properties Tool"
  8355. #: flatcamTools/ToolShell.py:69
  8356. msgid "...proccessing..."
  8357. msgstr "...proccessing..."
  8358. #: flatcamTools/ToolShell.py:71
  8359. #, python-format
  8360. msgid "...proccessing... [%s]"
  8361. msgstr "...proccessing... [%s]"
  8362. #: flatcamTools/ToolSolderPaste.py:37
  8363. msgid "Solder Paste Tool"
  8364. msgstr "Solder Paste Tool"
  8365. #: flatcamTools/ToolSolderPaste.py:65
  8366. msgid "Gerber Solder paste object. "
  8367. msgstr "Gerber Solder paste object. "
  8368. #: flatcamTools/ToolSolderPaste.py:72
  8369. msgid ""
  8370. "Tools pool from which the algorithm\n"
  8371. "will pick the ones used for dispensing solder paste."
  8372. msgstr ""
  8373. "Tools pool from which the algorithm\n"
  8374. "will pick the ones used for dispensing solder paste."
  8375. #: flatcamTools/ToolSolderPaste.py:87
  8376. msgid ""
  8377. "This is the Tool Number.\n"
  8378. "The solder dispensing will start with the tool with the biggest \n"
  8379. "diameter, continuing until there are no more Nozzle tools.\n"
  8380. "If there are no longer tools but there are still pads not covered\n"
  8381. " with solder paste, the app will issue a warning message box."
  8382. msgstr ""
  8383. "This is the Tool Number.\n"
  8384. "The solder dispensing will start with the tool with the biggest \n"
  8385. "diameter, continuing until there are no more Nozzle tools.\n"
  8386. "If there are no longer tools but there are still pads not covered\n"
  8387. " with solder paste, the app will issue a warning message box."
  8388. #: flatcamTools/ToolSolderPaste.py:94
  8389. msgid ""
  8390. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  8391. "is the width of the solder paste dispensed."
  8392. msgstr ""
  8393. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  8394. "is the width of the solder paste dispensed."
  8395. #: flatcamTools/ToolSolderPaste.py:101
  8396. msgid "New Nozzle Tool"
  8397. msgstr "New Nozzle Tool"
  8398. #: flatcamTools/ToolSolderPaste.py:117
  8399. msgid ""
  8400. "Add a new nozzle tool to the Tool Table\n"
  8401. "with the diameter specified above."
  8402. msgstr ""
  8403. "Add a new nozzle tool to the Tool Table\n"
  8404. "with the diameter specified above."
  8405. #: flatcamTools/ToolSolderPaste.py:129
  8406. msgid "Generate solder paste dispensing geometry."
  8407. msgstr "Generate solder paste dispensing geometry."
  8408. #: flatcamTools/ToolSolderPaste.py:142
  8409. msgid "STEP 1"
  8410. msgstr "STEP 1"
  8411. #: flatcamTools/ToolSolderPaste.py:144
  8412. msgid ""
  8413. "First step is to select a number of nozzle tools for usage\n"
  8414. "and then optionally modify the GCode parameters bellow."
  8415. msgstr ""
  8416. "First step is to select a number of nozzle tools for usage\n"
  8417. "and then optionally modify the GCode parameters bellow."
  8418. #: flatcamTools/ToolSolderPaste.py:147
  8419. msgid ""
  8420. "Select tools.\n"
  8421. "Modify parameters."
  8422. msgstr ""
  8423. "Select tools.\n"
  8424. "Modify parameters."
  8425. #: flatcamTools/ToolSolderPaste.py:290
  8426. msgid "Generate GCode"
  8427. msgstr "Generate GCode"
  8428. #: flatcamTools/ToolSolderPaste.py:292
  8429. msgid ""
  8430. "Generate GCode for Solder Paste dispensing\n"
  8431. "on PCB pads."
  8432. msgstr ""
  8433. "Generate GCode for Solder Paste dispensing\n"
  8434. "on PCB pads."
  8435. #: flatcamTools/ToolSolderPaste.py:308
  8436. msgid "STEP 2:"
  8437. msgstr "STEP 2:"
  8438. #: flatcamTools/ToolSolderPaste.py:310
  8439. msgid ""
  8440. "Second step is to create a solder paste dispensing\n"
  8441. "geometry out of an Solder Paste Mask Gerber file."
  8442. msgstr ""
  8443. "Second step is to create a solder paste dispensing\n"
  8444. "geometry out of an Solder Paste Mask Gerber file."
  8445. #: flatcamTools/ToolSolderPaste.py:326
  8446. msgid "Geo Result:"
  8447. msgstr "Geo Result:"
  8448. #: flatcamTools/ToolSolderPaste.py:328
  8449. msgid ""
  8450. "Geometry Solder Paste object.\n"
  8451. "The name of the object has to end in:\n"
  8452. "'_solderpaste' as a protection."
  8453. msgstr ""
  8454. "Geometry Solder Paste object.\n"
  8455. "The name of the object has to end in:\n"
  8456. "'_solderpaste' as a protection."
  8457. #: flatcamTools/ToolSolderPaste.py:337
  8458. msgid "STEP 3:"
  8459. msgstr "STEP 3:"
  8460. #: flatcamTools/ToolSolderPaste.py:339
  8461. msgid ""
  8462. "Third step is to select a solder paste dispensing geometry,\n"
  8463. "and then generate a CNCJob object.\n"
  8464. "\n"
  8465. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  8466. "first you need to generate a geometry with those new params,\n"
  8467. "and only after that you can generate an updated CNCJob."
  8468. msgstr ""
  8469. "Third step is to select a solder paste dispensing geometry,\n"
  8470. "and then generate a CNCJob object.\n"
  8471. "\n"
  8472. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  8473. "first you need to generate a geometry with those new params,\n"
  8474. "and only after that you can generate an updated CNCJob."
  8475. #: flatcamTools/ToolSolderPaste.py:359
  8476. msgid "CNC Result:"
  8477. msgstr "CNC Result:"
  8478. #: flatcamTools/ToolSolderPaste.py:361
  8479. msgid ""
  8480. "CNCJob Solder paste object.\n"
  8481. "In order to enable the GCode save section,\n"
  8482. "the name of the object has to end in:\n"
  8483. "'_solderpaste' as a protection."
  8484. msgstr ""
  8485. "CNCJob Solder paste object.\n"
  8486. "In order to enable the GCode save section,\n"
  8487. "the name of the object has to end in:\n"
  8488. "'_solderpaste' as a protection."
  8489. #: flatcamTools/ToolSolderPaste.py:371
  8490. msgid "View GCode"
  8491. msgstr "View GCode"
  8492. #: flatcamTools/ToolSolderPaste.py:373
  8493. msgid ""
  8494. "View the generated GCode for Solder Paste dispensing\n"
  8495. "on PCB pads."
  8496. msgstr ""
  8497. "View the generated GCode for Solder Paste dispensing\n"
  8498. "on PCB pads."
  8499. #: flatcamTools/ToolSolderPaste.py:377
  8500. msgid "Save GCode"
  8501. msgstr "Save GCode"
  8502. #: flatcamTools/ToolSolderPaste.py:379
  8503. msgid ""
  8504. "Save the generated GCode for Solder Paste dispensing\n"
  8505. "on PCB pads, to a file."
  8506. msgstr ""
  8507. "Save the generated GCode for Solder Paste dispensing\n"
  8508. "on PCB pads, to a file."
  8509. #: flatcamTools/ToolSolderPaste.py:383
  8510. msgid "STEP 4:"
  8511. msgstr "STEP 4:"
  8512. #: flatcamTools/ToolSolderPaste.py:385
  8513. msgid ""
  8514. "Fourth step (and last) is to select a CNCJob made from \n"
  8515. "a solder paste dispensing geometry, and then view/save it's GCode."
  8516. msgstr ""
  8517. "Fourth step (and last) is to select a CNCJob made from \n"
  8518. "a solder paste dispensing geometry, and then view/save it's GCode."
  8519. #: flatcamTools/ToolSolderPaste.py:413
  8520. msgid "Delete Object"
  8521. msgstr "Delete Object"
  8522. #: flatcamTools/ToolSolderPaste.py:788
  8523. msgid ""
  8524. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  8525. msgstr ""
  8526. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  8527. #: flatcamTools/ToolSolderPaste.py:793
  8528. msgid "[success] New Nozzle tool added to Tool Table."
  8529. msgstr "[success] New Nozzle tool added to Tool Table."
  8530. #: flatcamTools/ToolSolderPaste.py:835
  8531. msgid "[success] Nozzle tool from Tool Table was edited."
  8532. msgstr "[success] Nozzle tool from Tool Table was edited."
  8533. #: flatcamTools/ToolSolderPaste.py:891
  8534. msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  8535. msgstr "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  8536. #: flatcamTools/ToolSolderPaste.py:896
  8537. msgid "[success] Nozzle tool(s) deleted from Tool Table."
  8538. msgstr "[success] Nozzle tool(s) deleted from Tool Table."
  8539. #: flatcamTools/ToolSolderPaste.py:951
  8540. msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  8541. msgstr "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  8542. #: flatcamTools/ToolSolderPaste.py:968
  8543. msgid "Creating Solder Paste dispensing geometry."
  8544. msgstr "Creating Solder Paste dispensing geometry."
  8545. #: flatcamTools/ToolSolderPaste.py:980
  8546. msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
  8547. msgstr "[WARNING_NOTCL] No Nozzle tools in the tool table."
  8548. #: flatcamTools/ToolSolderPaste.py:1106 flatcamTools/ToolSolderPaste.py:1161
  8549. msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  8550. msgstr "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  8551. #: flatcamTools/ToolSolderPaste.py:1109
  8552. msgid "[success] Solder Paste geometry generated successfully..."
  8553. msgstr "[success] Solder Paste geometry generated successfully..."
  8554. #: flatcamTools/ToolSolderPaste.py:1115
  8555. msgid ""
  8556. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  8557. "diameters..."
  8558. msgstr ""
  8559. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  8560. "diameters..."
  8561. #: flatcamTools/ToolSolderPaste.py:1129
  8562. msgid "Generating Solder Paste dispensing geometry..."
  8563. msgstr "Generating Solder Paste dispensing geometry..."
  8564. #: flatcamTools/ToolSolderPaste.py:1149
  8565. msgid "[WARNING_NOTCL] There is no Geometry object available."
  8566. msgstr "[WARNING_NOTCL] There is no Geometry object available."
  8567. #: flatcamTools/ToolSolderPaste.py:1153
  8568. msgid ""
  8569. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  8570. "geometry."
  8571. msgstr ""
  8572. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  8573. "geometry."
  8574. #: flatcamTools/ToolSolderPaste.py:1258
  8575. #, python-format
  8576. msgid "[success] ToolSolderPaste CNCjob created: %s"
  8577. msgstr "[success] ToolSolderPaste CNCjob created: %s"
  8578. #: flatcamTools/ToolSolderPaste.py:1290 flatcamTools/ToolSolderPaste.py:1294
  8579. #: flatcamTools/ToolSolderPaste.py:1345
  8580. msgid ""
  8581. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  8582. "solder_paste_tool CNCJob object."
  8583. msgstr ""
  8584. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  8585. "solder_paste_tool CNCJob object."
  8586. #: flatcamTools/ToolSolderPaste.py:1317
  8587. msgid "[ERROR_NOTCL] No Gcode in the object..."
  8588. msgstr "[ERROR_NOTCL] No Gcode in the object..."
  8589. #: flatcamTools/ToolSolderPaste.py:1326
  8590. #, python-format
  8591. msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  8592. msgstr "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  8593. #: flatcamTools/ToolSolderPaste.py:1355
  8594. msgid "Export GCode ..."
  8595. msgstr "Export GCode ..."
  8596. #: flatcamTools/ToolSolderPaste.py:1363
  8597. msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
  8598. msgstr "[WARNING_NOTCL] Export Machine Code cancelled ..."
  8599. #: flatcamTools/ToolSolderPaste.py:1393
  8600. #, python-format
  8601. msgid "[success] Solder paste dispenser GCode file saved to: %s"
  8602. msgstr "[success] Solder paste dispenser GCode file saved to: %s"
  8603. #: flatcamTools/ToolTransform.py:23
  8604. msgid "Object Transform"
  8605. msgstr "Object Transform"
  8606. #: flatcamTools/ToolTransform.py:84
  8607. msgid ""
  8608. "Rotate the selected object(s).\n"
  8609. "The point of reference is the middle of\n"
  8610. "the bounding box for all selected objects."
  8611. msgstr ""
  8612. "Rotate the selected object(s).\n"
  8613. "The point of reference is the middle of\n"
  8614. "the bounding box for all selected objects."
  8615. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  8616. msgid ""
  8617. "Skew/shear the selected object(s).\n"
  8618. "The point of reference is the middle of\n"
  8619. "the bounding box for all selected objects."
  8620. msgstr ""
  8621. "Skew/shear the selected object(s).\n"
  8622. "The point of reference is the middle of\n"
  8623. "the bounding box for all selected objects."
  8624. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  8625. msgid ""
  8626. "Scale the selected object(s).\n"
  8627. "The point of reference depends on \n"
  8628. "the Scale reference checkbox state."
  8629. msgstr ""
  8630. "Scale the selected object(s).\n"
  8631. "The point of reference depends on \n"
  8632. "the Scale reference checkbox state."
  8633. #: flatcamTools/ToolTransform.py:202
  8634. msgid ""
  8635. "Scale the selected object(s)\n"
  8636. "using the Scale Factor X for both axis."
  8637. msgstr ""
  8638. "Scale the selected object(s)\n"
  8639. "using the Scale Factor X for both axis."
  8640. #: flatcamTools/ToolTransform.py:250 flatcamTools/ToolTransform.py:267
  8641. msgid ""
  8642. "Offset the selected object(s).\n"
  8643. "The point of reference is the middle of\n"
  8644. "the bounding box for all selected objects.\n"
  8645. msgstr ""
  8646. "Offset the selected object(s).\n"
  8647. "The point of reference is the middle of\n"
  8648. "the bounding box for all selected objects.\n"
  8649. #: flatcamTools/ToolTransform.py:297 flatcamTools/ToolTransform.py:305
  8650. msgid ""
  8651. "Flip the selected object(s) over the X axis.\n"
  8652. "Does not create a new object.\n"
  8653. " "
  8654. msgstr ""
  8655. "Flip the selected object(s) over the X axis.\n"
  8656. "Does not create a new object.\n"
  8657. " "
  8658. #: flatcamTools/ToolTransform.py:637
  8659. msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  8660. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  8661. #: flatcamTools/ToolTransform.py:665
  8662. msgid "CNCJob objects can't be rotated."
  8663. msgstr "CNCJob objects can't be rotated."
  8664. #: flatcamTools/ToolTransform.py:674
  8665. msgid "[success]Rotate done ..."
  8666. msgstr "[success]Rotate done ..."
  8667. #: flatcamTools/ToolTransform.py:689
  8668. msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  8669. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  8670. #: flatcamTools/ToolTransform.py:724
  8671. msgid "CNCJob objects can't be mirrored/flipped."
  8672. msgstr "CNCJob objects can't be mirrored/flipped."
  8673. #: flatcamTools/ToolTransform.py:735
  8674. msgid "[success]Flip on the Y axis done ..."
  8675. msgstr "[success]Flip on the Y axis done ..."
  8676. #: flatcamTools/ToolTransform.py:745
  8677. msgid "[success]Flip on the X axis done ..."
  8678. msgstr "[success]Flip on the X axis done ..."
  8679. #: flatcamTools/ToolTransform.py:759
  8680. msgid ""
  8681. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  8682. msgstr ""
  8683. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  8684. #: flatcamTools/ToolTransform.py:781
  8685. msgid "CNCJob objects can't be skewed."
  8686. msgstr "CNCJob objects can't be skewed."
  8687. #: flatcamTools/ToolTransform.py:793
  8688. #, python-format
  8689. msgid "[success]Skew on the %s axis done ..."
  8690. msgstr "[success]Skew on the %s axis done ..."
  8691. #: flatcamTools/ToolTransform.py:808
  8692. msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  8693. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  8694. #: flatcamTools/ToolTransform.py:841
  8695. msgid "CNCJob objects can't be scaled."
  8696. msgstr "CNCJob objects can't be scaled."
  8697. #: flatcamTools/ToolTransform.py:861
  8698. msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  8699. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  8700. #: flatcamTools/ToolTransform.py:882
  8701. msgid "CNCJob objects can't be offseted."
  8702. msgstr "CNCJob objects can't be offseted."
  8703. #: flatcamTools/ToolTransform.py:894
  8704. #, python-format
  8705. msgid "[success]Offset on the %s axis done ..."
  8706. msgstr "[success]Offset on the %s axis done ..."
  8707. msgid ""
  8708. "How much (fraction) of the tool width to overlap each tool pass.\n"
  8709. "Example:\n"
  8710. "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  8711. "\n"
  8712. "Adjust the value starting with lower values\n"
  8713. "and increasing it if areas that should be painted are still \n"
  8714. "not painted.\n"
  8715. "Lower values = faster processing, faster execution on PCB.\n"
  8716. "Higher values = slow processing and slow execution on CNC\n"
  8717. "due of too many paths."
  8718. msgstr ""
  8719. "How much (fraction) of the tool width to overlap each tool pass.\n"
  8720. "Example:\n"
  8721. "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  8722. "\n"
  8723. "Adjust the value starting with lower values\n"
  8724. "and increasing it if areas that should be painted are still \n"
  8725. "not painted.\n"
  8726. "Lower values = faster processing, faster execution on PCB.\n"
  8727. "Higher values = slow processing and slow execution on CNC\n"
  8728. "due of too many paths."
  8729. msgid "z_cut = Z coord for Toolchange"
  8730. msgstr "z_cut = Z coord for Toolchange"
  8731. msgid "z_move = Z coord for Toolchange"
  8732. msgstr "z_move = Z coord for Toolchange"
  8733. msgid "%s/Project_%s"
  8734. msgstr "%s/Project_%s"
  8735. msgid "tool_tab"
  8736. msgstr "tool_tab"