strings.po 329 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458
  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-27 22:59+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 "Offene Einstellungsdatei"
  408. #: FlatCAMApp.py:5751
  409. msgid "[WARNING_NOTCL]Open Config cancelled."
  410. msgstr "[WARNING_NOTCL] Open Config abgesagt."
  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] Kein Objekt ausgewählt"
  415. #: FlatCAMApp.py:5767 FlatCAMApp.py:5964
  416. msgid "Please Select a Geometry object to export"
  417. msgstr "Bitte wählen Sie ein Geometrieobjekt zum Exportieren aus"
  418. #: FlatCAMApp.py:5778
  419. msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  420. msgstr ""
  421. "[ERROR_NOTCL] Es können nur Geometrie-, Gerber- und CNCJob-Objekte verwendet "
  422. "werden."
  423. #: FlatCAMApp.py:5791 FlatCAMApp.py:5795
  424. msgid "Export SVG"
  425. msgstr "SVG exportieren"
  426. #: FlatCAMApp.py:5800
  427. msgid "[WARNING_NOTCL]Export SVG cancelled."
  428. msgstr "[WARNING_NOTCL] Export SVG abgebrochen."
  429. #: FlatCAMApp.py:5814
  430. msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  431. msgstr ""
  432. "[WARNING_NOTCL] Daten müssen ein 3D-Array mit der letzten Dimension 3 oder 4 "
  433. "sein"
  434. #: FlatCAMApp.py:5820 FlatCAMApp.py:5824
  435. msgid "Export PNG Image"
  436. msgstr "PNG-Bild exportieren"
  437. #: FlatCAMApp.py:5829
  438. msgid "Export PNG cancelled."
  439. msgstr "Export PNG abgebrochen."
  440. #: FlatCAMApp.py:5846
  441. msgid ""
  442. "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  443. msgstr ""
  444. "[WARNING_NOTCL] Kein Objekt ausgewählt. Bitte wählen Sie ein Gerber-Objekt "
  445. "aus, das Sie exportieren möchten."
  446. #: FlatCAMApp.py:5851
  447. msgid ""
  448. "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  449. msgstr ""
  450. "[ERROR_NOTCL] Fehlgeschlagen. Nur Gerber-Objekte können als Gerber-Dateien "
  451. "gespeichert werden ..."
  452. #: FlatCAMApp.py:5863
  453. msgid "Save Gerber source file"
  454. msgstr "Gerber-Quelldatei speichern"
  455. #: FlatCAMApp.py:5868
  456. msgid "[WARNING_NOTCL] Save Gerber source file cancelled."
  457. msgstr "[WARNING_NOTCL] Gerber Quelldatei speichern abgebrochen."
  458. #: FlatCAMApp.py:5885
  459. msgid ""
  460. "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
  461. "export."
  462. msgstr ""
  463. "[WARNING_NOTCL] Kein Objekt ausgewählt Bitte wählen Sie ein Excellon-Objekt "
  464. "zum Exportieren aus."
  465. #: FlatCAMApp.py:5890 FlatCAMApp.py:5929
  466. msgid ""
  467. "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  468. msgstr ""
  469. "[ERROR_NOTCL] Fehlgeschlagen. Nur Excellon-Objekte können als Excellon-"
  470. "Dateien gespeichert werden ..."
  471. #: FlatCAMApp.py:5898 FlatCAMApp.py:5902
  472. msgid "Save Excellon source file"
  473. msgstr "Speichern Sie die Excellon-Quelldatei"
  474. #: FlatCAMApp.py:5907
  475. msgid "[WARNING_NOTCL] Saving Excellon source file cancelled."
  476. msgstr "[WARNING_NOTCL] Speichern der Excellon-Quelldatei abgebrochen."
  477. #: FlatCAMApp.py:5924
  478. msgid ""
  479. "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
  480. "export."
  481. msgstr ""
  482. "[WARNING_NOTCL] Kein Objekt ausgewählt. Bitte wählen Sie ein Excellon-Objekt "
  483. "aus, das Sie exportieren möchten."
  484. #: FlatCAMApp.py:5937 FlatCAMApp.py:5941
  485. msgid "Export Excellon"
  486. msgstr "Excellon exportieren"
  487. #: FlatCAMApp.py:5946
  488. msgid "[WARNING_NOTCL]Export Excellon cancelled."
  489. msgstr "[WARNING_NOTCL] Export Excellon wurde abgebrochen."
  490. #: FlatCAMApp.py:5974
  491. msgid "[ERROR_NOTCL] Only Geometry objects can be used."
  492. msgstr "[ERROR_NOTCL] Es können nur Geometrieobjekte verwendet werden."
  493. #: FlatCAMApp.py:5987 FlatCAMApp.py:5991
  494. msgid "Export DXF"
  495. msgstr "DXF exportieren"
  496. #: FlatCAMApp.py:5996
  497. msgid "[WARNING_NOTCL] Export DXF cancelled."
  498. msgstr "[WARNING_NOTCL] Export DXF wurde abgebrochen."
  499. #: FlatCAMApp.py:6014 FlatCAMApp.py:6017
  500. msgid "Import SVG"
  501. msgstr "SVG importieren"
  502. #: FlatCAMApp.py:6025
  503. msgid "[WARNING_NOTCL] Open SVG cancelled."
  504. msgstr "[WARNING_NOTCL] Open SVG abgebrochen."
  505. #: FlatCAMApp.py:6044 FlatCAMApp.py:6047
  506. msgid "Import DXF"
  507. msgstr "Importieren Sie DXF"
  508. #: FlatCAMApp.py:6055
  509. msgid "[WARNING_NOTCL]Open DXF cancelled."
  510. msgstr "[WARNING_NOTCL] Open DXF cancelled."
  511. #: FlatCAMApp.py:6073
  512. #, python-format
  513. msgid "%s"
  514. msgstr "%s"
  515. #: FlatCAMApp.py:6093
  516. msgid ""
  517. "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  518. msgstr ""
  519. "[WARNING_NOTCL] Wählen Sie eine Gerber- oder Excellon-Datei aus, um die "
  520. "Quelldatei anzuzeigen."
  521. #: FlatCAMApp.py:6100
  522. msgid ""
  523. "[WARNING_NOTCL] There is no selected object for which to see it's source "
  524. "file code."
  525. msgstr ""
  526. "[WARNING_NOTCL] Es gibt kein ausgewähltes Objekt, für das man seinen "
  527. "Quelldateien sehen kann."
  528. #: FlatCAMApp.py:6108
  529. msgid "Source Editor"
  530. msgstr "Quelleditor"
  531. #: FlatCAMApp.py:6118
  532. #, python-format
  533. msgid "[ERROR]App.on_view_source() -->%s"
  534. msgstr "[ERROR]App.on_view_source() -->%s"
  535. #: FlatCAMApp.py:6130 FlatCAMApp.py:7151 FlatCAMObj.py:5407
  536. msgid "Code Editor"
  537. msgstr "Code-Editor"
  538. #: FlatCAMApp.py:6142
  539. msgid "Script Editor"
  540. msgstr "Script Editor"
  541. #: FlatCAMApp.py:6145
  542. msgid ""
  543. "#\n"
  544. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  545. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  546. "html\n"
  547. "#\n"
  548. "\n"
  549. "# FlatCAM commands list:\n"
  550. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  551. "AlignDrillGrid, ClearShell, Cncjob,\n"
  552. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  553. "GeoUnion, GetNames, GetSys,\n"
  554. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  555. "ListSys, MillHoles, Mirror, New,\n"
  556. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  557. "Options, Paint, Panelize,\n"
  558. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  559. "SubtractRectangle, Version,\n"
  560. "# WriteGCode\n"
  561. "#\n"
  562. "\n"
  563. msgstr ""
  564. "#\n"
  565. "# ERSTELLE EINEN NEUEN FLATCAM-TCL-SCRIPT\n"
  566. "# TCL Tutorial hier: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  567. "html\n"
  568. "#\n"
  569. "\n"
  570. "# Liste der FlatCAM-Befehle:\n"
  571. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  572. "AlignDrillGrid, ClearShell, Cncjob,\n"
  573. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  574. "GeoUnion, GetNames, GetSys,\n"
  575. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  576. "ListSys, MillHoles, Mirror, New,\n"
  577. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  578. "Options, Paint, Panelize,\n"
  579. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  580. "SubtractRectangle, Version,\n"
  581. "# WriteGCode\n"
  582. "#\n"
  583. "\n"
  584. #: FlatCAMApp.py:6168 FlatCAMApp.py:6171
  585. msgid "Open TCL script"
  586. msgstr "Öffnen Sie das TCL-Skript"
  587. #: FlatCAMApp.py:6179
  588. msgid "[WARNING_NOTCL]Open TCL script cancelled."
  589. msgstr "[WARNING_NOTCL] Open TCL-Skript wurde abgebrochen."
  590. #: FlatCAMApp.py:6191
  591. #, python-format
  592. msgid "[ERROR]App.on_fileopenscript() -->%s"
  593. msgstr "[ERROR]App.on_fileopenscript() -->%s"
  594. #: FlatCAMApp.py:6217 FlatCAMApp.py:6220
  595. msgid "Run TCL script"
  596. msgstr "Führen Sie das TCL-Skript aus"
  597. #: FlatCAMApp.py:6228
  598. msgid "[WARNING_NOTCL]Run TCL script cancelled."
  599. msgstr "[WARNING_NOTCL] Das TCL-Skript wird abgebrochen."
  600. #: FlatCAMApp.py:6274 FlatCAMApp.py:6278
  601. msgid "Save Project As ..."
  602. msgstr "Projekt speichern als ..."
  603. #: FlatCAMApp.py:6275
  604. #, python-brace-format
  605. msgid "{l_save}/Project_{date}"
  606. msgstr "{l_save}/Projekt_{date}"
  607. #: FlatCAMApp.py:6283
  608. msgid "[WARNING_NOTCL] Save Project cancelled."
  609. msgstr "[WARNING_NOTCL] Projekt speichern abgebrochen"
  610. #: FlatCAMApp.py:6328
  611. msgid "Exporting SVG"
  612. msgstr "SVG exportieren"
  613. #: FlatCAMApp.py:6361 FlatCAMApp.py:6466 FlatCAMApp.py:6580
  614. #, python-format
  615. msgid "[success] SVG file exported to %s"
  616. msgstr "[success] SVG-Datei in exportiert %s"
  617. #: FlatCAMApp.py:6392 FlatCAMApp.py:6512
  618. #, python-format
  619. msgid "[WARNING_NOTCL]No object Box. Using instead %s"
  620. msgstr "[WARNING_NOTCL] Kein Objektfeld. Stattdessen verwenden %s"
  621. #: FlatCAMApp.py:6469 FlatCAMApp.py:6583
  622. msgid "Generating Film ... Please wait."
  623. msgstr "Film wird erstellt ... Bitte warten Sie."
  624. #: FlatCAMApp.py:6730
  625. #, python-format
  626. msgid "[success] Excellon file exported to %s"
  627. msgstr "[success] Excellon-Datei nach exportiert %s"
  628. #: FlatCAMApp.py:6737
  629. msgid "Exporting Excellon"
  630. msgstr "Excellon exportieren"
  631. #: FlatCAMApp.py:6742 FlatCAMApp.py:6749
  632. msgid "[ERROR_NOTCL] Could not export Excellon file."
  633. msgstr "[ERROR_NOTCL] Excellon-Datei konnte nicht exportiert werden."
  634. #: FlatCAMApp.py:6788
  635. #, python-format
  636. msgid "[success] DXF file exported to %s"
  637. msgstr "[success] DXF-Datei in exportiert %s"
  638. #: FlatCAMApp.py:6794
  639. msgid "Exporting DXF"
  640. msgstr "DXF exportieren"
  641. #: FlatCAMApp.py:6799 FlatCAMApp.py:6806
  642. msgid "[[WARNING_NOTCL]] Could not export DXF file."
  643. msgstr "[WARNING_NOTCL] DXF-Datei konnte nicht exportiert werden."
  644. #: FlatCAMApp.py:6826 FlatCAMApp.py:6868 FlatCAMApp.py:6909
  645. msgid ""
  646. "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
  647. "Gerber are supported"
  648. msgstr ""
  649. "[ERROR_NOTCL] Nicht unterstützte Art wird als Parameter ausgewählt. Nur "
  650. "Geometrie und Gerber werden unterstützt"
  651. #: FlatCAMApp.py:6836
  652. msgid "Importing SVG"
  653. msgstr "SVG importieren"
  654. #: FlatCAMApp.py:6847 FlatCAMApp.py:6889 FlatCAMApp.py:6929 FlatCAMApp.py:7005
  655. #: FlatCAMApp.py:7072 FlatCAMApp.py:7137
  656. #, python-format
  657. msgid "[success] Opened: %s"
  658. msgstr "[success] Geöffnet: %s"
  659. #: FlatCAMApp.py:6878
  660. msgid "Importing DXF"
  661. msgstr "DXF importieren"
  662. #: FlatCAMApp.py:6917
  663. msgid "Importing Image"
  664. msgstr "Bild importieren"
  665. #: FlatCAMApp.py:6958 FlatCAMApp.py:6960
  666. #, python-format
  667. msgid "[ERROR_NOTCL] Failed to open file: %s"
  668. msgstr "[ERROR_NOTCL] Datei konnte nicht geöffnet werden: %s"
  669. #: FlatCAMApp.py:6963
  670. #, python-brace-format
  671. msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  672. msgstr "[ERROR_NOTCL] Fehler beim Parsen der Datei: {name}. {error}"
  673. #: FlatCAMApp.py:6969 FlatCAMEditor.py:5802 FlatCAMObj.py:4114
  674. msgid "[ERROR] An internal error has ocurred. See shell.\n"
  675. msgstr "[ERROR] Ein interner Fehler ist aufgetreten. Siehe Shell.\n"
  676. #: FlatCAMApp.py:6978
  677. msgid ""
  678. "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  679. msgstr ""
  680. "[ERROR_NOTCL] Objekt ist keine Gerber-Datei oder leer. Abbruch der "
  681. "Objekterstellung"
  682. #: FlatCAMApp.py:6986
  683. msgid "Opening Gerber"
  684. msgstr "Gerber öffnen"
  685. #: FlatCAMApp.py:6996
  686. msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  687. msgstr ""
  688. "[ERROR_NOTCL] Gerber öffnen ist fehlgeschlagen. Wahrscheinlich keine Gerber-"
  689. "Datei."
  690. #: FlatCAMApp.py:7031
  691. msgid "[ERROR_NOTCL] This is not Excellon file."
  692. msgstr "[ERROR_NOTCL] Dies ist keine Excellon-Datei."
  693. #: FlatCAMApp.py:7034
  694. #, python-format
  695. msgid "[ERROR_NOTCL] Cannot open file: %s"
  696. msgstr "[ERROR_NOTCL] Kann Datei nicht öffnen: %s"
  697. #: FlatCAMApp.py:7039
  698. msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  699. msgstr "[ERROR_NOTCL] Ein interner Fehler ist aufgetreten. Siehe Shell.\n"
  700. #: FlatCAMApp.py:7055
  701. #, python-format
  702. msgid "[ERROR_NOTCL] No geometry found in file: %s"
  703. msgstr "[ERROR_NOTCL] Keine Geometrie in der Datei gefunden: %s"
  704. #: FlatCAMApp.py:7058
  705. msgid "Opening Excellon."
  706. msgstr "Eröffnung Excellon."
  707. #: FlatCAMApp.py:7065
  708. msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  709. msgstr ""
  710. "[ERROR_NOTCL] Die Excellon-Datei konnte nicht geöffnet werden. "
  711. "Wahrscheinlich keine Excellon-Datei."
  712. #: FlatCAMApp.py:7104
  713. #, python-format
  714. msgid "[ERROR_NOTCL] Failed to open %s"
  715. msgstr "[ERROR_NOTCL] Gescheitert zu öffnen %s"
  716. #: FlatCAMApp.py:7114
  717. msgid "[ERROR_NOTCL] This is not GCODE"
  718. msgstr "[ERROR_NOTCL] Dies ist kein GCODE"
  719. #: FlatCAMApp.py:7120
  720. msgid "Opening G-Code."
  721. msgstr "G-Code öffnen."
  722. #: FlatCAMApp.py:7128
  723. msgid ""
  724. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  725. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  726. "processing"
  727. msgstr ""
  728. "[ERROR_NOTCL] CNCJob-Objekt konnte nicht erstellt werden. Wahrscheinlich "
  729. "keine GCode-Datei.\n"
  730. "Der Versuch, ein FlatCAM-CNCJob-Objekt aus einer G-Code-Datei zu erstellen, "
  731. "ist während der Verarbeitung fehlgeschlagen"
  732. #: FlatCAMApp.py:7168
  733. #, python-format
  734. msgid "[ERROR_NOTCL] Failed to open config file: %s"
  735. msgstr "[ERROR_NOTCL] Fehler beim Öffnen der Konfigurationsdatei: %s"
  736. #: FlatCAMApp.py:7193 FlatCAMApp.py:7210
  737. #, python-format
  738. msgid "[ERROR_NOTCL] Failed to open project file: %s"
  739. msgstr "[ERROR_NOTCL] Projektdatei konnte nicht geöffnet werden: %s"
  740. #: FlatCAMApp.py:7200
  741. #, python-format
  742. msgid "[ERROR_NOTCL] Failed to parse project file: %s"
  743. msgstr "[ERROR_NOTCL] Fehler beim Parsen der Projektdatei: %s"
  744. #: FlatCAMApp.py:7236
  745. #, python-format
  746. msgid "[success] Project loaded from: %s"
  747. msgstr "[success] Projekt geladen von: %s"
  748. #: FlatCAMApp.py:7366
  749. msgid "Available commands:\n"
  750. msgstr "Verfügbare Befehle:\n"
  751. #: FlatCAMApp.py:7368
  752. msgid ""
  753. "\n"
  754. "\n"
  755. "Type help <command_name> for usage.\n"
  756. " Example: help open_gerber"
  757. msgstr ""
  758. "\n"
  759. "\n"
  760. "Geben Sie help <Befehlsname> für die Verwendung ein.\n"
  761. "Beispiel: help open_gerber"
  762. #: FlatCAMApp.py:7516
  763. msgid "Shows list of commands."
  764. msgstr "Zeigt eine Liste von Befehlen an."
  765. #: FlatCAMApp.py:7569
  766. msgid "[ERROR_NOTCL] Failed to load recent item list."
  767. msgstr "[ERROR_NOTCL] Fehler beim Laden der letzten Elementliste."
  768. #: FlatCAMApp.py:7576
  769. msgid "[ERROR_NOTCL] Failed to parse recent item list."
  770. msgstr ""
  771. "[ERROR_NOTCL] Liste der letzten Artikel konnte nicht analysiert werden."
  772. #: FlatCAMApp.py:7637 flatcamGUI/FlatCAMGUI.py:866
  773. msgid "<b>Shortcut Key List</b>"
  774. msgstr "<b> Liste der Tastenkombinationen </b>"
  775. #: FlatCAMApp.py:7644
  776. msgid ""
  777. "\n"
  778. "<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from "
  779. "Project Tab</strong></span></p>\n"
  780. "\n"
  781. "<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
  782. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  783. "\n"
  784. "<ol>\n"
  785. "\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, "
  786. "DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, "
  787. "toolbars, key shortcuts or even dragging and dropping the files on the GUI."
  788. "<br />\n"
  789. "\t<br />\n"
  790. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  791. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  792. "through the menu/toolbar links offered within the app.</span><br />\n"
  793. "\t&nbsp;</li>\n"
  794. "\t<li><span style=\"font-size:10px\">Once an object is available in the "
  795. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  796. "strong>(more simpler is to double click the object name in the Project Tab), "
  797. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  798. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  799. ">\n"
  800. "\t<br />\n"
  801. "\tIf the selection of the object is done on the canvas by single click "
  802. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  803. "properties will be displayed into the Selected Tab. Alternatively, double "
  804. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  805. "strong> and populate it even if it was out of focus.<br />\n"
  806. "\t<br />\n"
  807. "\tYou can change the parameters in this screen and the flow direction is "
  808. "like this:<br />\n"
  809. "\t<br />\n"
  810. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  811. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  812. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  813. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  814. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  815. "span></li>\n"
  816. "</ol>\n"
  817. "\n"
  818. "<p><span style=\"font-size:10px\">A list of key shortcuts is available "
  819. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  820. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  821. "\n"
  822. " "
  823. msgstr ""
  824. "\n"
  825. "<p><span style=\"font-size:14px\"><strong> Ausgewählte Registerkarte - "
  826. "Wählen Sie ein Element aus der Registerkarte \"Projekt\" aus </strong></"
  827. "span></p>\n"
  828. "\n"
  829. "<p><span style=\"font-size: 10px\"> <strong> Details </strong>: <br />\n"
  830. "Der normale Fluss beim Arbeiten in FlatCAM ist folgender: </span> </p>\n"
  831. "\n"
  832. "<ol>\n"
  833. "<li><span style=\"font-size: 10px\"> Laden Sie eine Gerber, Excellon, Gcode, "
  834. "DXF, Rasterbild oder SVG-Datei in FlatCAM, indem Sie entweder die Menü, "
  835. "Symbolleisten, Tastenkombinationen oder sogar die Dateien ziehen und ablegen "
  836. "auf der GUI. <br />\n"
  837. "<br />\n"
  838. "Sie können ein <strong> FlatCAM-Projekt </strong> auch laden, indem Sie auf "
  839. "die Projektdatei doppelklicken und &amp; ziehen. Legen Sie die Datei in die "
  840. "FLATCAM-GUI oder über die in der App angebotenen Menü- / Symbolleisten-Links "
  841. "ab. </span><br />\n"
  842. "&nbsp; </ li>\n"
  843. "<li><span style=\"font-size: 10px\"> Sobald ein Objekt auf der Registerkarte "
  844. "\"Projekt\" verfügbar ist, wählen Sie es aus und fokussieren Sie dann auf "
  845. "<strong> Ausgewählte Registerkarte </strong> (einfacher ist das "
  846. "Doppelklicken auf das Objekt) Name in der Registerkarte \"Projekt\"), "
  847. "<strong>Ausgewählte Registerkarte </strong> wird mit den Objekteigenschaften "
  848. "entsprechend seiner Art aktualisiert: Gerber, Excellon, Geometry oder CNCJob-"
  849. "Objekt. <br />\n"
  850. "<br />\n"
  851. "Wenn die Auswahl des Objekts stattdessen mit einem einzigen Klick auf der "
  852. "Leinwand erfolgt und die <strong> Ausgewählte Registerkarte </strong> im "
  853. "Fokus ist, werden die Objekteigenschaften wieder auf der Registerkarte "
  854. "\"Ausgewählt\" angezeigt. Alternativ können Sie durch Doppelklicken auf das "
  855. "Objekt auf der Leinwand das <strong> Ausgewählte Registerkarte</strong> "
  856. "aufrufen und es auch dann ausfüllen, wenn es unscharf ist. <br />\n"
  857. "<br />\n"
  858. "Sie können die Parameter in diesem Bildschirm ändern und die Flussrichtung "
  859. "ist wie folgt: <br />\n"
  860. "<br />\n"
  861. "<strong> Gerber/Excellon Objekt </strong> - &gt; Parameter ändern -&gt; "
  862. "Geometrie generieren -&gt; <strong> Geometrie Objekt </strong> -&gt; "
  863. "Werkzeuge hinzufügen (Parameter in der ausgewählten Registerkarte ändern) -"
  864. "&gt; CNCJob generieren -&gt; <strong> CNCJob Objekt </strong> -&gt; "
  865. "Überprüfen Sie GCode (durch Bearbeiten von CNC-Code) und/oder hängen Sie ihn "
  866. "an GCode an (nochmal in <strong> Ausgewählte Registerkarte)&nbsp; </strong> -"
  867. "&gt; Speichern Sie GCode </span> </li>\n"
  868. "</ol>\n"
  869. "\n"
  870. "<p><span style = \"font-size: 10px\"> Eine Liste der Tastenkombinationen ist "
  871. "über einen Menüeintrag in der <strong> Hilfe -&gt; Verknüpfungsliste </"
  872. "strong> oder über eine eigene Tastenkombination: <strng>F3</strong>. </Span> "
  873. "</p>"
  874. #: FlatCAMApp.py:7748
  875. msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  876. msgstr ""
  877. "[WARNING_NOTCL] Fehler bei der Suche nach der neuesten Version. Konnte keine "
  878. "Verbindung herstellen."
  879. #: FlatCAMApp.py:7755
  880. msgid "[ERROR_NOTCL] Could not parse information about latest version."
  881. msgstr ""
  882. "[ERROR_NOTCL] Informationen zur neuesten Version konnten nicht analysiert "
  883. "werden."
  884. #: FlatCAMApp.py:7765
  885. msgid "[success] FlatCAM is up to date!"
  886. msgstr "[success] FlatCAM ist auf dem neuesten Version!"
  887. #: FlatCAMApp.py:7770
  888. msgid "Newer Version Available"
  889. msgstr "Neuere Version verfügbar"
  890. #: FlatCAMApp.py:7771
  891. msgid ""
  892. "There is a newer version of FlatCAM available for download:\n"
  893. "\n"
  894. msgstr ""
  895. "Es gibt eine neuere Version von FlatCAM zum Download:\n"
  896. "\n"
  897. #: FlatCAMApp.py:7773
  898. msgid "info"
  899. msgstr "Info"
  900. #: FlatCAMApp.py:7792
  901. msgid "[success]All plots disabled."
  902. msgstr "[success] Alle Diagramme sind deaktiviert."
  903. #: FlatCAMApp.py:7798
  904. msgid "[success]All non selected plots disabled."
  905. msgstr "[success] Alle nicht ausgewählten Diagramme sind deaktiviert."
  906. #: FlatCAMApp.py:7804
  907. msgid "[success]All plots enabled."
  908. msgstr "[success] Alle Diagramme aktiviert."
  909. #: FlatCAMApp.py:7914
  910. msgid "Saving FlatCAM Project"
  911. msgstr "FlatCAM-Projekt speichern"
  912. #: FlatCAMApp.py:7935 FlatCAMApp.py:7966
  913. #, python-format
  914. msgid "[success] Project saved to: %s"
  915. msgstr "[success] Projekt gespeichert in: %s"
  916. #: FlatCAMApp.py:7953
  917. #, python-format
  918. msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  919. msgstr ""
  920. "[ERROR_NOTCL] Fehler beim Überprüfen der Projektdatei:%s. Versuchen Sie es "
  921. "erneut zu speichern."
  922. #: FlatCAMApp.py:7960
  923. #, python-format
  924. msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  925. msgstr ""
  926. "[ERROR_NOTCL] Die gespeicherte Projektdatei konnte nicht analysiert werden:"
  927. "%s. Versuchen Sie es erneut zu speichern."
  928. #: FlatCAMApp.py:7968
  929. #, python-format
  930. msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  931. msgstr ""
  932. "[ERROR_NOTCL] Projektdatei konnte nicht gespeichert werden:%s. Versuchen Sie "
  933. "es erneut zu speichern."
  934. #: FlatCAMEditor.py:76
  935. msgid "Buffer distance:"
  936. msgstr "Pufferabstand:"
  937. #: FlatCAMEditor.py:77
  938. msgid "Buffer corner:"
  939. msgstr "Pufferecke:"
  940. #: FlatCAMEditor.py:79
  941. msgid ""
  942. "There are 3 types of corners:\n"
  943. " - 'Round': the corner is rounded for exterior buffer.\n"
  944. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  945. " - 'Beveled:' the corner is a line that directly connects the features "
  946. "meeting in the corner"
  947. msgstr ""
  948. "Es gibt 3 Arten von Ecken:\n"
  949. "  - 'Rund': Die Ecke wird für den Außenpuffer abgerundet.\n"
  950. "  - 'Quadrat:' Die Ecke wird für den äußeren Puffer in einem spitzen Winkel "
  951. "getroffen.\n"
  952. "  - 'Abgeschrägt:' Die Ecke ist eine Linie, die die Features, die sich in "
  953. "der Ecke treffen, direkt verbindet"
  954. #: FlatCAMEditor.py:85
  955. msgid "Round"
  956. msgstr "Runden"
  957. #: FlatCAMEditor.py:86
  958. msgid "Square"
  959. msgstr "Quadrat"
  960. #: FlatCAMEditor.py:87
  961. msgid "Beveled"
  962. msgstr "Abgeschrägt"
  963. #: FlatCAMEditor.py:94
  964. msgid "Buffer Interior"
  965. msgstr "Pufferinnenraum"
  966. #: FlatCAMEditor.py:96
  967. msgid "Buffer Exterior"
  968. msgstr "Puffer außen"
  969. #: FlatCAMEditor.py:102
  970. msgid "Full Buffer"
  971. msgstr "Voller Puffer"
  972. #: FlatCAMEditor.py:123 FlatCAMEditor.py:2623
  973. msgid "Buffer Tool"
  974. msgstr "Pufferwerkzeug"
  975. #: FlatCAMEditor.py:134 FlatCAMEditor.py:151 FlatCAMEditor.py:168
  976. #: FlatCAMEditor.py:2641 FlatCAMEditor.py:2667 FlatCAMEditor.py:2693
  977. msgid ""
  978. "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
  979. "retry."
  980. msgstr ""
  981. "[WARNING_NOTCL] Pufferabstandswert fehlt oder falsches Format. Fügen Sie es "
  982. "hinzu und versuchen Sie es erneut."
  983. #: FlatCAMEditor.py:416 flatcamGUI/FlatCAMGUI.py:3419
  984. #: flatcamGUI/FlatCAMGUI.py:4625 flatcamGUI/FlatCAMGUI.py:4901
  985. #: flatcamGUI/FlatCAMGUI.py:5032 flatcamGUI/ObjectUI.py:331
  986. msgid "Tool dia:"
  987. msgstr "Werkzeugdurchmesser:"
  988. #: FlatCAMEditor.py:418 flatcamGUI/FlatCAMGUI.py:5034
  989. msgid ""
  990. "Diameter of the tool to\n"
  991. "be used in the operation."
  992. msgstr ""
  993. "Durchmesser des Werkzeugs bis\n"
  994. "in der Operation verwendet werden."
  995. #: FlatCAMEditor.py:427 flatcamGUI/FlatCAMGUI.py:4807
  996. #: flatcamGUI/FlatCAMGUI.py:5043 flatcamTools/ToolNonCopperClear.py:164
  997. #: flatcamTools/ToolPaint.py:160
  998. msgid "Overlap:"
  999. msgstr "Überlappung:"
  1000. #: FlatCAMEditor.py:429 flatcamTools/ToolPaint.py:162
  1001. #, fuzzy, python-format
  1002. msgid ""
  1003. "How much (fraction) of the tool width to overlap each tool pass.\n"
  1004. "Example:\n"
  1005. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  1006. "\n"
  1007. "Adjust the value starting with lower values\n"
  1008. "and increasing it if areas that should be painted are still \n"
  1009. "not painted.\n"
  1010. "Lower values = faster processing, faster execution on PCB.\n"
  1011. "Higher values = slow processing and slow execution on CNC\n"
  1012. "due of too many paths."
  1013. msgstr ""
  1014. "Wie viel (Bruchteil) der Werkzeugbreite, um jeden Werkzeugdurchgang zu "
  1015. "überlappen.\n"
  1016. "Beispiel:\n"
  1017. "Ein Wert von 0,25 bedeutet hier 25% des oben angegebenen "
  1018. "Werkzeugdurchmessers.\n"
  1019. "\n"
  1020. "Passen Sie den Wert an, indem Sie mit niedrigeren Werten beginnen\n"
  1021. "und erhöhen Sie es, wenn Bereiche, die gemalt werden sollen, noch vorhanden "
  1022. "sind\n"
  1023. "nicht gemalt\n"
  1024. "Niedrigere Werte = schnellere Verarbeitung, schnellere Ausführung auf "
  1025. "Leiterplatten.\n"
  1026. "Höhere Werte = langsame Bearbeitung und langsame Ausführung auf CNC\n"
  1027. "wegen zu vieler Wege."
  1028. #: FlatCAMEditor.py:445 flatcamGUI/FlatCAMGUI.py:4823
  1029. #: flatcamGUI/FlatCAMGUI.py:4909 flatcamGUI/FlatCAMGUI.py:5053
  1030. #: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:180
  1031. #: flatcamTools/ToolPaint.py:177
  1032. msgid "Margin:"
  1033. msgstr "Marge:"
  1034. #: FlatCAMEditor.py:447 flatcamGUI/FlatCAMGUI.py:5055
  1035. #: flatcamTools/ToolPaint.py:179
  1036. msgid ""
  1037. "Distance by which to avoid\n"
  1038. "the edges of the polygon to\n"
  1039. "be painted."
  1040. msgstr ""
  1041. "Entfernung, um die es zu vermeiden ist\n"
  1042. "die Kanten des Polygons bis\n"
  1043. "gemalt werden."
  1044. #: FlatCAMEditor.py:456 flatcamGUI/FlatCAMGUI.py:4832
  1045. #: flatcamGUI/FlatCAMGUI.py:5064 flatcamTools/ToolNonCopperClear.py:189
  1046. #: flatcamTools/ToolPaint.py:188
  1047. msgid "Method:"
  1048. msgstr "Methode:"
  1049. #: FlatCAMEditor.py:458 flatcamGUI/FlatCAMGUI.py:5066
  1050. msgid ""
  1051. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  1052. "<BR><B>Seed-based</B>: Outwards from seed."
  1053. msgstr ""
  1054. "Algorithmus zum Malen des Polygons:<BR><B>Standard</B>: Feststehender "
  1055. "Schritt nach innen. <BR><B> Samenbasiert</B>: Aus dem Samen heraus."
  1056. #: FlatCAMEditor.py:464 flatcamGUI/FlatCAMGUI.py:4841
  1057. #: flatcamGUI/FlatCAMGUI.py:5072
  1058. msgid "Standard"
  1059. msgstr "Standard"
  1060. #: FlatCAMEditor.py:465 flatcamGUI/FlatCAMGUI.py:4842
  1061. #: flatcamGUI/FlatCAMGUI.py:5073
  1062. msgid "Seed-based"
  1063. msgstr "Samenbasiert"
  1064. #: FlatCAMEditor.py:466 flatcamGUI/FlatCAMGUI.py:4843
  1065. #: flatcamGUI/FlatCAMGUI.py:5074
  1066. msgid "Straight lines"
  1067. msgstr "Gerade Linien"
  1068. #: FlatCAMEditor.py:471 flatcamGUI/FlatCAMGUI.py:4848
  1069. #: flatcamGUI/FlatCAMGUI.py:5079 flatcamTools/ToolNonCopperClear.py:205
  1070. #: flatcamTools/ToolPaint.py:204
  1071. msgid "Connect:"
  1072. msgstr "Verbinden:"
  1073. #: FlatCAMEditor.py:473 flatcamGUI/FlatCAMGUI.py:4850
  1074. #: flatcamGUI/FlatCAMGUI.py:5081 flatcamTools/ToolNonCopperClear.py:207
  1075. #: flatcamTools/ToolPaint.py:206
  1076. msgid ""
  1077. "Draw lines between resulting\n"
  1078. "segments to minimize tool lifts."
  1079. msgstr ""
  1080. "Zeichnen Sie Linien zwischen den Ergebnissen\n"
  1081. "Segmente, um Werkzeuglifte zu minimieren."
  1082. #: FlatCAMEditor.py:480 flatcamGUI/FlatCAMGUI.py:4857
  1083. #: flatcamGUI/FlatCAMGUI.py:5089 flatcamTools/ToolNonCopperClear.py:214
  1084. #: flatcamTools/ToolPaint.py:213
  1085. msgid "Contour:"
  1086. msgstr "Kontur:"
  1087. #: FlatCAMEditor.py:482 flatcamGUI/FlatCAMGUI.py:4859
  1088. #: flatcamGUI/FlatCAMGUI.py:5091 flatcamTools/ToolNonCopperClear.py:216
  1089. #: flatcamTools/ToolPaint.py:215
  1090. msgid ""
  1091. "Cut around the perimeter of the polygon\n"
  1092. "to trim rough edges."
  1093. msgstr ""
  1094. "Schneiden Sie um den Umfang des Polygons herum\n"
  1095. "Ecken und Kanten schneiden."
  1096. #: FlatCAMEditor.py:494
  1097. msgid "Paint"
  1098. msgstr "Malen"
  1099. #: FlatCAMEditor.py:512 flatcamGUI/FlatCAMGUI.py:585
  1100. #: flatcamGUI/FlatCAMGUI.py:1634 flatcamGUI/ObjectUI.py:1379
  1101. #: flatcamTools/ToolPaint.py:340
  1102. msgid "Paint Tool"
  1103. msgstr "Werkzeug Malen"
  1104. #: FlatCAMEditor.py:548
  1105. msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
  1106. msgstr "[WARNING_NOTCL] Farbe abgebrochen. Keine Form ausgewählt"
  1107. #: FlatCAMEditor.py:559 flatcamTools/ToolCutOut.py:343
  1108. #: flatcamTools/ToolCutOut.py:481 flatcamTools/ToolCutOut.py:601
  1109. #: flatcamTools/ToolCutOut.py:706 flatcamTools/ToolDblSided.py:363
  1110. msgid ""
  1111. "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
  1112. "retry."
  1113. msgstr ""
  1114. "[WARNING_NOTCL] Werkzeugdurchmesserwert fehlt oder falsches Format. Fügen "
  1115. "Sie es hinzu und versuchen Sie es erneut."
  1116. #: FlatCAMEditor.py:570
  1117. msgid ""
  1118. "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  1119. msgstr ""
  1120. "[WARNING_NOTCL] Überlappungswert fehlt oder falsches Format. Fügen Sie es "
  1121. "hinzu und versuchen Sie es erneut."
  1122. #: FlatCAMEditor.py:582
  1123. msgid ""
  1124. "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
  1125. "retry."
  1126. msgstr ""
  1127. "[WARNING_NOTCL] Randabstandswert fehlt oder falsches Format. Fügen Sie es "
  1128. "hinzu und versuchen Sie es erneut."
  1129. #: FlatCAMEditor.py:591 FlatCAMEditor.py:2648 FlatCAMEditor.py:2674
  1130. #: FlatCAMEditor.py:2700 flatcamTools/ToolNonCopperClear.py:806
  1131. #: flatcamTools/ToolProperties.py:104
  1132. msgid "Tools"
  1133. msgstr "Werkzeuge"
  1134. #: FlatCAMEditor.py:602 FlatCAMEditor.py:975 flatcamGUI/FlatCAMGUI.py:594
  1135. #: flatcamGUI/FlatCAMGUI.py:1645 flatcamTools/ToolTransform.py:398
  1136. msgid "Transform Tool"
  1137. msgstr "Werkzeug Umwandeln"
  1138. #: FlatCAMEditor.py:603 FlatCAMEditor.py:664 flatcamTools/ToolTransform.py:24
  1139. #: flatcamTools/ToolTransform.py:82
  1140. msgid "Rotate"
  1141. msgstr "Drehen"
  1142. #: FlatCAMEditor.py:604 flatcamTools/ToolTransform.py:25
  1143. msgid "Skew/Shear"
  1144. msgstr "Neigung/Schere"
  1145. #: FlatCAMEditor.py:605 flatcamGUI/ObjectUI.py:100 flatcamGUI/ObjectUI.py:265
  1146. #: flatcamTools/ToolTransform.py:26
  1147. msgid "Scale"
  1148. msgstr "Skalieren"
  1149. #: FlatCAMEditor.py:606 flatcamTools/ToolTransform.py:27
  1150. msgid "Mirror (Flip)"
  1151. msgstr "Spiegeln (Flip)"
  1152. #: FlatCAMEditor.py:607 flatcamGUI/ObjectUI.py:127 flatcamGUI/ObjectUI.py:959
  1153. #: flatcamGUI/ObjectUI.py:1517 flatcamTools/ToolTransform.py:28
  1154. msgid "Offset"
  1155. msgstr "Versatz"
  1156. #: FlatCAMEditor.py:618
  1157. #, python-format
  1158. msgid "Editor %s"
  1159. msgstr "Editor %s"
  1160. #: FlatCAMEditor.py:650 FlatCAMEditor.py:4851 FlatCAMEditor.py:4887
  1161. #: flatcamTools/ToolTransform.py:68
  1162. msgid "Angle:"
  1163. msgstr "Winkel:"
  1164. #: FlatCAMEditor.py:652 flatcamTools/ToolTransform.py:70
  1165. msgid ""
  1166. "Angle for Rotation action, in degrees.\n"
  1167. "Float number between -360 and 359.\n"
  1168. "Positive numbers for CW motion.\n"
  1169. "Negative numbers for CCW motion."
  1170. msgstr ""
  1171. "Drehwinkel in Grad.\n"
  1172. "Float-Nummer zwischen -360 und 359.\n"
  1173. "Positive Zahlen für CW-Bewegung.\n"
  1174. "Negative Zahlen für CCW-Bewegung."
  1175. #: FlatCAMEditor.py:666
  1176. msgid ""
  1177. "Rotate the selected shape(s).\n"
  1178. "The point of reference is the middle of\n"
  1179. "the bounding box for all selected shapes."
  1180. msgstr ""
  1181. "Die ausgewählten Formen drehen.\n"
  1182. "Der Bezugspunkt ist die Mitte von\n"
  1183. "der Begrenzungsrahmen für alle ausgewählten Formen."
  1184. #: FlatCAMEditor.py:689 flatcamTools/ToolTransform.py:107
  1185. msgid "Angle X:"
  1186. msgstr "Winkel X:"
  1187. #: FlatCAMEditor.py:691 FlatCAMEditor.py:709 flatcamTools/ToolTransform.py:109
  1188. #: flatcamTools/ToolTransform.py:127
  1189. msgid ""
  1190. "Angle for Skew action, in degrees.\n"
  1191. "Float number between -360 and 359."
  1192. msgstr ""
  1193. "Winkel für die Schräglage in Grad.\n"
  1194. "Float-Nummer zwischen -360 und 359."
  1195. #: FlatCAMEditor.py:700 flatcamTools/ToolTransform.py:118
  1196. msgid "Skew X"
  1197. msgstr "Neigung X"
  1198. #: FlatCAMEditor.py:702 FlatCAMEditor.py:720
  1199. msgid ""
  1200. "Skew/shear the selected shape(s).\n"
  1201. "The point of reference is the middle of\n"
  1202. "the bounding box for all selected shapes."
  1203. msgstr ""
  1204. "Schrägstellung/Scherung der ausgewählten Form(en).\n"
  1205. "Der Bezugspunkt ist die Mitte von\n"
  1206. "der Begrenzungsrahmen für alle ausgewählten Formen."
  1207. #: FlatCAMEditor.py:707 flatcamTools/ToolTransform.py:125
  1208. msgid "Angle Y:"
  1209. msgstr "Winkel Y:"
  1210. #: FlatCAMEditor.py:718 flatcamTools/ToolTransform.py:136
  1211. msgid "Skew Y"
  1212. msgstr "Neigung Y"
  1213. #: FlatCAMEditor.py:746 flatcamTools/ToolTransform.py:164
  1214. msgid "Factor X:"
  1215. msgstr "Faktor X:"
  1216. #: FlatCAMEditor.py:748 flatcamTools/ToolTransform.py:166
  1217. msgid "Factor for Scale action over X axis."
  1218. msgstr "Faktor für die Skalierungsaktion über der X-Achse."
  1219. #: FlatCAMEditor.py:756 flatcamTools/ToolTransform.py:174
  1220. msgid "Scale X"
  1221. msgstr "Maßstab X"
  1222. #: FlatCAMEditor.py:758 FlatCAMEditor.py:775
  1223. msgid ""
  1224. "Scale the selected shape(s).\n"
  1225. "The point of reference depends on \n"
  1226. "the Scale reference checkbox state."
  1227. msgstr ""
  1228. "Skalieren Sie die ausgewählten Formen.\n"
  1229. "Der Bezugspunkt hängt von ab\n"
  1230. "das Kontrollkästchen Skalenreferenz."
  1231. #: FlatCAMEditor.py:763 flatcamTools/ToolTransform.py:181
  1232. msgid "Factor Y:"
  1233. msgstr "Faktor Y:"
  1234. #: FlatCAMEditor.py:765 flatcamTools/ToolTransform.py:183
  1235. msgid "Factor for Scale action over Y axis."
  1236. msgstr "Faktor für die Skalierungsaktion über der Y-Achse."
  1237. #: FlatCAMEditor.py:773 flatcamTools/ToolTransform.py:191
  1238. msgid "Scale Y"
  1239. msgstr "Maßstab Y"
  1240. #: FlatCAMEditor.py:782 flatcamGUI/FlatCAMGUI.py:5438
  1241. #: flatcamTools/ToolTransform.py:200
  1242. msgid "Link"
  1243. msgstr "Verknüpfung"
  1244. #: FlatCAMEditor.py:784
  1245. msgid ""
  1246. "Scale the selected shape(s)\n"
  1247. "using the Scale Factor X for both axis."
  1248. msgstr ""
  1249. "Skalieren der ausgewählten Form (en)\n"
  1250. "Verwenden des Skalierungsfaktors X für beide Achsen."
  1251. #: FlatCAMEditor.py:790 flatcamGUI/FlatCAMGUI.py:5446
  1252. #: flatcamTools/ToolTransform.py:208
  1253. msgid "Scale Reference"
  1254. msgstr "Skalenreferenz"
  1255. #: FlatCAMEditor.py:792
  1256. msgid ""
  1257. "Scale the selected shape(s)\n"
  1258. "using the origin reference when checked,\n"
  1259. "and the center of the biggest bounding box\n"
  1260. "of the selected shapes when unchecked."
  1261. msgstr ""
  1262. "Skalieren der ausgewählten Form (en)\n"
  1263. "unter Verwendung der Ursprungsreferenz, wenn geprüft\n"
  1264. "und die Mitte der größten Begrenzungsbox\n"
  1265. "der ausgewählten Formen, wenn nicht markiert."
  1266. #: FlatCAMEditor.py:820 flatcamTools/ToolTransform.py:238
  1267. msgid "Value X:"
  1268. msgstr "Wert X:"
  1269. #: FlatCAMEditor.py:822 flatcamTools/ToolTransform.py:240
  1270. msgid "Value for Offset action on X axis."
  1271. msgstr "Wert für die Offset-Aktion auf der X-Achse."
  1272. #: FlatCAMEditor.py:830 flatcamTools/ToolTransform.py:248
  1273. msgid "Offset X"
  1274. msgstr "Versatz X"
  1275. #: FlatCAMEditor.py:832 FlatCAMEditor.py:850
  1276. msgid ""
  1277. "Offset the selected shape(s).\n"
  1278. "The point of reference is the middle of\n"
  1279. "the bounding box for all selected shapes.\n"
  1280. msgstr ""
  1281. "Versetzt die ausgewählten Formen.\n"
  1282. "Der Bezugspunkt ist die Mitte von\n"
  1283. "der Begrenzungsrahmen für alle ausgewählten Formen.\n"
  1284. #: FlatCAMEditor.py:838 flatcamTools/ToolTransform.py:255
  1285. msgid "Value Y:"
  1286. msgstr "Wert Y:"
  1287. #: FlatCAMEditor.py:840 flatcamTools/ToolTransform.py:257
  1288. msgid "Value for Offset action on Y axis."
  1289. msgstr "Wert für die Offset-Aktion auf der Y-Achse."
  1290. #: FlatCAMEditor.py:848 flatcamTools/ToolTransform.py:265
  1291. msgid "Offset Y"
  1292. msgstr "Versatz Y"
  1293. #: FlatCAMEditor.py:879 flatcamTools/ToolTransform.py:295
  1294. msgid "Flip on X"
  1295. msgstr "Flip auf X"
  1296. #: FlatCAMEditor.py:881 FlatCAMEditor.py:889
  1297. msgid ""
  1298. "Flip the selected shape(s) over the X axis.\n"
  1299. "Does not create a new shape."
  1300. msgstr ""
  1301. "Kippen Sie die ausgewählte Form (en) über die X-Achse.\n"
  1302. "Erzeugt keine neue Form."
  1303. #: FlatCAMEditor.py:887 flatcamTools/ToolTransform.py:303
  1304. msgid "Flip on Y"
  1305. msgstr "Flip auf Y"
  1306. #: FlatCAMEditor.py:896 flatcamTools/ToolTransform.py:312
  1307. msgid "Ref Pt"
  1308. msgstr "Ref. Pt"
  1309. #: FlatCAMEditor.py:898
  1310. msgid ""
  1311. "Flip the selected shape(s)\n"
  1312. "around the point in Point Entry Field.\n"
  1313. "\n"
  1314. "The point coordinates can be captured by\n"
  1315. "left click on canvas together with pressing\n"
  1316. "SHIFT key. \n"
  1317. "Then click Add button to insert coordinates.\n"
  1318. "Or enter the coords in format (x, y) in the\n"
  1319. "Point Entry field and click Flip on X(Y)"
  1320. msgstr ""
  1321. "Die ausgewählten Formen umdrehen\n"
  1322. "um den Punkt im Eingabefeld.\n"
  1323. "\n"
  1324. "Die Punktkoordinaten können mit erfasst werden\n"
  1325. "Klicken Sie mit der linken Maustaste auf die Leinwand\n"
  1326. "Shift Taste.\n"
  1327. "Klicken Sie dann auf die Schaltfläche Hinzufügen, um die Koordinaten "
  1328. "einzufügen.\n"
  1329. "Oder geben Sie die Koordinaten im Format (x, y) in ein\n"
  1330. "Punkt-Eingabefeld und klicken Sie auf X (Y) drehen"
  1331. #: FlatCAMEditor.py:910 flatcamTools/ToolTransform.py:325
  1332. msgid "Point:"
  1333. msgstr "Punkt:"
  1334. #: FlatCAMEditor.py:912
  1335. msgid ""
  1336. "Coordinates in format (x, y) used as reference for mirroring.\n"
  1337. "The 'x' in (x, y) will be used when using Flip on X and\n"
  1338. "the 'y' in (x, y) will be used when using Flip on Y."
  1339. msgstr ""
  1340. "Koordinaten im Format (x, y), die als Referenz für die Spiegelung verwendet "
  1341. "werden.\n"
  1342. "Das 'x' in (x, y) wird verwendet, wenn Sie bei X und\n"
  1343. "Das 'y' in (x, y) wird verwendet, wenn Flip auf Y verwendet wird."
  1344. #: FlatCAMEditor.py:922 flatcamGUI/ObjectUI.py:1059
  1345. #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208
  1346. #: flatcamTools/ToolNonCopperClear.py:133 flatcamTools/ToolPaint.py:131
  1347. #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:478
  1348. #: flatcamTools/ToolTransform.py:337
  1349. msgid "Add"
  1350. msgstr "Hinzufügen"
  1351. #: FlatCAMEditor.py:924 flatcamTools/ToolTransform.py:339
  1352. msgid ""
  1353. "The point coordinates can be captured by\n"
  1354. "left click on canvas together with pressing\n"
  1355. "SHIFT key. Then click Add button to insert."
  1356. msgstr ""
  1357. "Die Punktkoordinaten können mit erfasst werden\n"
  1358. "Klicken Sie mit der linken Maustaste auf die Leinwand\n"
  1359. "Shift Taste. Klicken Sie dann auf die Schaltfläche Hinzufügen, um sie "
  1360. "einzufügen."
  1361. #: FlatCAMEditor.py:1039
  1362. msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  1363. msgstr "[WARNING_NOTCL] Transformation abgebrochen Keine Form ausgewählt"
  1364. #: FlatCAMEditor.py:1060 flatcamTools/ToolTransform.py:468
  1365. msgid "[ERROR_NOTCL]Wrong value format entered for Rotate, use a number."
  1366. msgstr ""
  1367. "[ERROR_NOTCL] Falsches Werteformat für Drehen eingegeben, verwenden Sie eine "
  1368. "Zahl."
  1369. #: FlatCAMEditor.py:1097 flatcamTools/ToolTransform.py:502
  1370. msgid "[ERROR_NOTCL]Wrong value format entered for Skew X, use a number."
  1371. msgstr ""
  1372. "[ERROR_NOTCL] Falsches Werteformat für Skew X eingegeben, verwenden Sie eine "
  1373. "Zahl."
  1374. #: FlatCAMEditor.py:1118 flatcamTools/ToolTransform.py:520
  1375. msgid "[ERROR_NOTCL]Wrong value format entered for Skew Y, use a number."
  1376. msgstr ""
  1377. "[ERROR_NOTCL] Falsches Werteformat für Skew Y eingegeben, verwenden Sie eine "
  1378. "Zahl."
  1379. #: FlatCAMEditor.py:1139 flatcamTools/ToolTransform.py:538
  1380. msgid "[ERROR_NOTCL]Wrong value format entered for Scale X, use a number."
  1381. msgstr ""
  1382. "[ERROR_NOTCL] Falsches Wertformat für Waage X eingegeben, verwenden Sie eine "
  1383. "Zahl."
  1384. #: FlatCAMEditor.py:1176 flatcamTools/ToolTransform.py:572
  1385. msgid "[ERROR_NOTCL]Wrong value format entered for Scale Y, use a number."
  1386. msgstr ""
  1387. "[ERROR_NOTCL] Falsches Werteformat für Skala Y eingegeben, verwenden Sie "
  1388. "eine Zahl."
  1389. #: FlatCAMEditor.py:1208 flatcamTools/ToolTransform.py:601
  1390. msgid "[ERROR_NOTCL]Wrong value format entered for Offset X, use a number."
  1391. msgstr ""
  1392. "[ERROR_NOTCL] Falsches Wertformat für Offset X eingegeben, verwenden Sie "
  1393. "eine Zahl."
  1394. #: FlatCAMEditor.py:1229 flatcamTools/ToolTransform.py:619
  1395. msgid "[ERROR_NOTCL]Wrong value format entered for Offset Y, use a number."
  1396. msgstr ""
  1397. "[ERROR_NOTCL] Falsches Wertformat für Offset Y eingegeben, verwenden Sie "
  1398. "eine Zahl."
  1399. #: FlatCAMEditor.py:1247
  1400. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  1401. msgstr ""
  1402. "[WARNING_NOTCL] Keine Form ausgewählt Bitte wählen Sie eine Form zum Drehen "
  1403. "aus!"
  1404. #: FlatCAMEditor.py:1250 flatcamTools/ToolTransform.py:640
  1405. msgid "Appying Rotate"
  1406. msgstr "Anwenden Drehen"
  1407. #: FlatCAMEditor.py:1278
  1408. msgid "[success] Done. Rotate completed."
  1409. msgstr "[success] Erledigt. Drehen abgeschlossen."
  1410. #: FlatCAMEditor.py:1294
  1411. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  1412. msgstr ""
  1413. "[WARNING_NOTCL] Keine Form ausgewählt Bitte wähle eine Form zum Umdrehen!"
  1414. #: FlatCAMEditor.py:1297 flatcamTools/ToolTransform.py:692
  1415. msgid "Applying Flip"
  1416. msgstr "Flip anwenden"
  1417. #: FlatCAMEditor.py:1327
  1418. msgid "[success] Flip on the Y axis done ..."
  1419. msgstr "[success] Flip auf der Y-Achse erledigt ..."
  1420. #: FlatCAMEditor.py:1330
  1421. msgid "[success] Flip on the X axis done ..."
  1422. msgstr "[success] Flip auf der X-Achse erledigt ..."
  1423. #: FlatCAMEditor.py:1349
  1424. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  1425. msgstr ""
  1426. "[WARNING_NOTCL] Keine Form ausgewählt. Bitte wählen Sie eine Form zum "
  1427. "Scheren / Schrägstellen!"
  1428. #: FlatCAMEditor.py:1352 flatcamTools/ToolTransform.py:762
  1429. msgid "Applying Skew"
  1430. msgstr "Anwenden von Skew"
  1431. #: FlatCAMEditor.py:1377
  1432. #, python-format
  1433. msgid "[success] Skew on the %s axis done ..."
  1434. msgstr "[success] Neigung auf der %s Achse abgeschlossen ..."
  1435. #: FlatCAMEditor.py:1381 flatcamTools/ToolTransform.py:797
  1436. #, python-format
  1437. msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  1438. msgstr ""
  1439. "[ERROR_NOTCL] Aufgrund von %s wurde die Neigung-Aktion nicht ausgeführt."
  1440. #: FlatCAMEditor.py:1392
  1441. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  1442. msgstr ""
  1443. "[WARNING_NOTCL] Keine Form ausgewählt. Bitte wählen Sie eine zu skalierende "
  1444. "Form!"
  1445. #: FlatCAMEditor.py:1395 flatcamTools/ToolTransform.py:811
  1446. msgid "Applying Scale"
  1447. msgstr "Maßstab anwenden"
  1448. #: FlatCAMEditor.py:1428 flatcamTools/ToolTransform.py:849
  1449. #, python-format
  1450. msgid "[success] Scale on the %s axis done ..."
  1451. msgstr "[success] Skalieren auf der %s Achse fertig ..."
  1452. #: FlatCAMEditor.py:1431 flatcamTools/ToolTransform.py:852
  1453. #, python-format
  1454. msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  1455. msgstr ""
  1456. "[ERROR_NOTCL] Aufgrund von %s wurde die Skalieren Aktion nicht ausgeführt."
  1457. #: FlatCAMEditor.py:1440
  1458. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  1459. msgstr ""
  1460. "[WARNING_NOTCL] Keine Form ausgewählt. Bitte wählen Sie eine Form zum "
  1461. "Versetzen!"
  1462. #: FlatCAMEditor.py:1443 flatcamTools/ToolTransform.py:864
  1463. msgid "Applying Offset"
  1464. msgstr "Offsetdruck anwenden"
  1465. #: FlatCAMEditor.py:1467
  1466. #, python-format
  1467. msgid "[success] Offset on the %s axis done ..."
  1468. msgstr "[success] Offsetdruck auf der %s Achse fertiggestellt ..."
  1469. #: FlatCAMEditor.py:1471 flatcamTools/ToolTransform.py:898
  1470. #, python-format
  1471. msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  1472. msgstr ""
  1473. "[ERROR_NOTCL] Aufgrund von %s wurde die Offsetdruck Aktion nicht ausgeführt."
  1474. #: FlatCAMEditor.py:1475
  1475. msgid "Rotate ..."
  1476. msgstr "Drehen ..."
  1477. #: FlatCAMEditor.py:1476 FlatCAMEditor.py:1533 FlatCAMEditor.py:1550
  1478. msgid "Enter an Angle Value (degrees):"
  1479. msgstr "Geben Sie einen Winkelwert (Grad) ein:"
  1480. #: FlatCAMEditor.py:1485
  1481. msgid "[success] Geometry shape rotate done..."
  1482. msgstr "[success] Geometrieform drehen fertig ..."
  1483. #: FlatCAMEditor.py:1490
  1484. msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  1485. msgstr "[WARNING_NOTCL] Geometrieform drehen abgebrochen ..."
  1486. #: FlatCAMEditor.py:1496
  1487. msgid "Offset on X axis ..."
  1488. msgstr "Versatz auf der X-Achse ..."
  1489. #: FlatCAMEditor.py:1497 FlatCAMEditor.py:1516
  1490. #, python-format
  1491. msgid "Enter a distance Value (%s):"
  1492. msgstr "Geben Sie einen Abstand ein (%s):"
  1493. #: FlatCAMEditor.py:1506
  1494. msgid "[success] Geometry shape offset on X axis done..."
  1495. msgstr "[success] Geometrieformversatz auf der X-Achse erfolgt ..."
  1496. #: FlatCAMEditor.py:1510
  1497. msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  1498. msgstr "[WARNING_NOTCL] Geometrieformversatz X abgebrochen ..."
  1499. #: FlatCAMEditor.py:1515
  1500. msgid "Offset on Y axis ..."
  1501. msgstr "Versatz auf der Y-Achse ..."
  1502. #: FlatCAMEditor.py:1525
  1503. msgid "[success] Geometry shape offset on Y axis done..."
  1504. msgstr "[success] Geometrieformversatz auf Y-Achse erfolgt ..."
  1505. #: FlatCAMEditor.py:1529
  1506. msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  1507. msgstr "[WARNING_NOTCL] Geometrieformversatz Y abgebrochen ..."
  1508. #: FlatCAMEditor.py:1532
  1509. msgid "Skew on X axis ..."
  1510. msgstr "Neigung auf der X-Achse ..."
  1511. #: FlatCAMEditor.py:1542
  1512. msgid "[success] Geometry shape skew on X axis done..."
  1513. msgstr "[success] Geometrieformversatz auf X-Achse ..."
  1514. #: FlatCAMEditor.py:1546
  1515. msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  1516. msgstr "[WARNING_NOTCL] Geometrieformversatz X abgebrochen ..."
  1517. #: FlatCAMEditor.py:1549
  1518. msgid "Skew on Y axis ..."
  1519. msgstr "Neigung auf der Y-Achse ..."
  1520. #: FlatCAMEditor.py:1559
  1521. msgid "[success] Geometry shape skew on Y axis done..."
  1522. msgstr "[success] Geometrieformversatz auf Y-Achse erfolgt ..."
  1523. #: FlatCAMEditor.py:1563
  1524. msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  1525. msgstr "[WARNING_NOTCL] Geometrieformversatz Y abgebrochen ..."
  1526. #: FlatCAMEditor.py:1894 FlatCAMEditor.py:1933
  1527. msgid "Click on CENTER ..."
  1528. msgstr "Klicken Sie auf MITTE ..."
  1529. #: FlatCAMEditor.py:1901
  1530. msgid "Click on Circle perimeter point to complete ..."
  1531. msgstr "Klicken Sie auf Kreisumfangspunkt, um den Vorgang abzuschließen."
  1532. #: FlatCAMEditor.py:1925
  1533. msgid "[success]Done. Adding Circle completed."
  1534. msgstr "[success] Erledigt. Hinzufügen des Kreises abgeschlossen."
  1535. #: FlatCAMEditor.py:1952
  1536. msgid "Click on Start arc point ..."
  1537. msgstr "Klicken Sie auf Bogenstartpunkt ..."
  1538. #: FlatCAMEditor.py:1956
  1539. msgid "Click on End arc point to complete ..."
  1540. msgstr "Klicken Sie auf Bogenende beenden, um den Vorgang abzuschließen..."
  1541. #: FlatCAMEditor.py:2111
  1542. msgid "[success]Done. Arc completed."
  1543. msgstr "[success] Erledigt. Bogen abgeschlossen"
  1544. #: FlatCAMEditor.py:2123
  1545. msgid "Click on 1st corner ..."
  1546. msgstr "Klicken Sie auf die 1. Ecke ..."
  1547. #: FlatCAMEditor.py:2163
  1548. msgid "Click on 1st point ..."
  1549. msgstr "Klicken Sie auf den 1. Punkt ..."
  1550. #: FlatCAMEditor.py:2170
  1551. msgid "Click on next Point or click Right mouse button to complete ..."
  1552. msgstr ""
  1553. "Klicken Sie auf den nächsten Punkt oder klicken Sie mit der rechten "
  1554. "Maustaste, um den Vorgang abzuschließen."
  1555. #: FlatCAMEditor.py:2193
  1556. msgid "[success]Done. Polygon completed."
  1557. msgstr "[success] Erledigt. Polygon abgeschlossen"
  1558. #: FlatCAMEditor.py:2212
  1559. msgid "[success]Done. Path completed."
  1560. msgstr "[success] Erledigt. Pfad abgeschlossen"
  1561. #: FlatCAMEditor.py:2472 FlatCAMEditor.py:4034
  1562. msgid "[WARNING_NOTCL] Move cancelled. No shape selected."
  1563. msgstr "[WARNING_NOTCL] Umzug abgebrochen. Keine Form ausgewählt."
  1564. #: FlatCAMEditor.py:2476
  1565. msgid "Click on reference point."
  1566. msgstr "Klicken Sie auf den Referenzpunkt."
  1567. #: FlatCAMEditor.py:2479
  1568. msgid "Click on destination point."
  1569. msgstr "Klicken Sie auf den Zielpunkt."
  1570. #: FlatCAMEditor.py:2510
  1571. msgid "[success]Done. Geometry(s) Move completed."
  1572. msgstr "[success] Erledigt. Geometrie(n) Bewegung abgeschlossen."
  1573. #: FlatCAMEditor.py:2555
  1574. msgid "[success]Done. Geometry(s) Copy completed."
  1575. msgstr "[success] Erledigt. Geometrie(n) Kopieren abgeschlossen."
  1576. #: FlatCAMEditor.py:2567
  1577. msgid "Click on the Destination point..."
  1578. msgstr "Klicken Sie auf den Zielpunkt ..."
  1579. #: FlatCAMEditor.py:2581
  1580. #, python-format
  1581. msgid ""
  1582. "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
  1583. "supported. Error: %s"
  1584. msgstr ""
  1585. "[ERROR] Schrift wird nicht unterstützt. Es werden nur Regular, Bold, Italic "
  1586. "und BoldItalic unterstützt. Error: %s"
  1587. #: FlatCAMEditor.py:2591
  1588. msgid "[success]Done. Adding Text completed."
  1589. msgstr "[success] Erledigt. Hinzufügen von Text abgeschlossen"
  1590. #: FlatCAMEditor.py:2619
  1591. msgid "Create buffer geometry ..."
  1592. msgstr "Puffergeometrie erstellen ..."
  1593. #: FlatCAMEditor.py:2630 FlatCAMEditor.py:2656 FlatCAMEditor.py:2682
  1594. msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  1595. msgstr "[WARNING_NOTCL] Puffer abgebrochen. Keine Form ausgewählt."
  1596. #: FlatCAMEditor.py:2652
  1597. msgid "[success]Done. Buffer Tool completed."
  1598. msgstr "[success] Erledigt. Pufferwerkzeug abgeschlossen."
  1599. #: FlatCAMEditor.py:2678
  1600. msgid "[success]Done. Buffer Int Tool completed."
  1601. msgstr "[success] Erledigt. Innenpufferwerkzeug abgeschlossen."
  1602. #: FlatCAMEditor.py:2704
  1603. msgid "[success]Done. Buffer Ext Tool completed."
  1604. msgstr "[success] Erledigt. Außenpufferwerkzeug abgeschlossen."
  1605. #: FlatCAMEditor.py:2737
  1606. msgid "Create Paint geometry ..."
  1607. msgstr "Malen geometrie erstellen ..."
  1608. #: FlatCAMEditor.py:2751
  1609. msgid "Shape transformations ..."
  1610. msgstr "Formtransformationen ..."
  1611. #: FlatCAMEditor.py:2776
  1612. msgid "[WARNING_NOTCL] To add a drill first select a tool"
  1613. msgstr ""
  1614. "[WARNING_NOTCL] Um einen Bohrer hinzuzufügen, wählen Sie zuerst ein Werkzeug "
  1615. "aus"
  1616. #: FlatCAMEditor.py:2785 FlatCAMEditor.py:2875 FlatCAMEditor.py:3148
  1617. #: FlatCAMEditor.py:3173
  1618. msgid "Click on target location ..."
  1619. msgstr "Klicken Sie auf den Zielort ..."
  1620. #: FlatCAMEditor.py:2825
  1621. msgid "[success]Done. Drill added."
  1622. msgstr "[success] Erledigt. Bohrer hinzugefügt."
  1623. #: FlatCAMEditor.py:2867
  1624. msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1625. msgstr ""
  1626. "[WARNING_NOTCL] Um ein Bohr-Array hinzuzufügen, wählen Sie zunächst ein "
  1627. "Werkzeug in der Werkzeugtabelle aus"
  1628. #: FlatCAMEditor.py:2892
  1629. msgid "Click on the Drill Circular Array Start position"
  1630. msgstr "Klicken Sie auf die Startposition des Bohrkreis-Arrays"
  1631. #: FlatCAMEditor.py:2914
  1632. msgid ""
  1633. "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
  1634. "separator."
  1635. msgstr ""
  1636. "[ERROR_NOTCL] Der Wert ist nicht Real. Überprüfen Sie das Komma anstelle des "
  1637. "Trennzeichens."
  1638. #: FlatCAMEditor.py:2917
  1639. msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
  1640. msgstr ""
  1641. "[ERROR_NOTCL] Der Wert ist falsch geschrieben. Überprüfen Sie den Wert."
  1642. #: FlatCAMEditor.py:3010
  1643. msgid "[WARNING_NOTCL]Too many drills for the selected spacing angle."
  1644. msgstr "[WARNING_NOTCL] Zu viele Bohrer für den ausgewählten Abstandswinkel."
  1645. #: FlatCAMEditor.py:3027
  1646. msgid "[success]Done. Drill Array added."
  1647. msgstr "[success] Erledigt. Bohrfeld hinzugefügt."
  1648. #: FlatCAMEditor.py:3038
  1649. msgid "Click on the Drill(s) to resize ..."
  1650. msgstr "Klicken Sie auf die Bohrer, um die Größe zu ändern ..."
  1651. #: FlatCAMEditor.py:3058
  1652. msgid ""
  1653. "[ERROR_NOTCL]Resize drill(s) failed. Please enter a diameter for resize."
  1654. msgstr ""
  1655. "[ERROR_NOTCL] Die Größe der Bohrer ist fehlgeschlagen. Bitte geben Sie einen "
  1656. "Durchmesser für die Größenänderung ein."
  1657. #: FlatCAMEditor.py:3130
  1658. msgid "[success]Done. Drill Resize completed."
  1659. msgstr "[success] Erledigt. Bohren Sie die Größe neu."
  1660. #: FlatCAMEditor.py:3150
  1661. msgid "Click on reference location ..."
  1662. msgstr "Klicken Sie auf die Referenzposition ..."
  1663. #: FlatCAMEditor.py:3205
  1664. msgid "[success]Done. Drill(s) Move completed."
  1665. msgstr "[success] Erledigt. Bohrer Bewegen abgeschlossen."
  1666. #: FlatCAMEditor.py:3258
  1667. msgid "[success]Done. Drill(s) copied."
  1668. msgstr "[success] Erledigt. Bohrer kopiert."
  1669. #: FlatCAMEditor.py:3908 flatcamGUI/FlatCAMGUI.py:2131
  1670. #: flatcamGUI/FlatCAMGUI.py:2143
  1671. msgid "[success]Done."
  1672. msgstr "[success] Erledigt."
  1673. #: FlatCAMEditor.py:4041
  1674. msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
  1675. msgstr "[WARNING_NOTCL] Kopieren abgebrochen Keine Form ausgewählt"
  1676. #: FlatCAMEditor.py:4048 flatcamGUI/FlatCAMGUI.py:2423
  1677. #: flatcamGUI/FlatCAMGUI.py:2435 flatcamGUI/FlatCAMGUI.py:2469
  1678. msgid "Click on target point."
  1679. msgstr "Klicken Sie auf den Zielpunkt."
  1680. #: FlatCAMEditor.py:4289
  1681. msgid ""
  1682. "[WARNING_NOTCL]A selection of at least 2 geo items is required to do "
  1683. "Intersection."
  1684. msgstr ""
  1685. "[WARNING_NOTCL] Eine Auswahl von mindestens 2 Geo-Elementen ist "
  1686. "erforderlich, um die Kreuzung durchzuführen."
  1687. #: FlatCAMEditor.py:4327 FlatCAMEditor.py:4364 FlatCAMEditor.py:4436
  1688. msgid ""
  1689. "[ERROR_NOTCL]Negative buffer value is not accepted. Use Buffer interior to "
  1690. "generate an 'inside' shape"
  1691. msgstr ""
  1692. "[ERROR_NOTCL] Negativer Pufferwert wird nicht akzeptiert. Verwenden Sie den "
  1693. "Pufferinnenraum, um eine Innenform zu erzeugen"
  1694. #: FlatCAMEditor.py:4335 FlatCAMEditor.py:4373 FlatCAMEditor.py:4444
  1695. msgid "[WARNING_NOTCL] Nothing selected for buffering."
  1696. msgstr "[WARNING_NOTCL] Nichts ist für die Pufferung ausgewählt."
  1697. #: FlatCAMEditor.py:4339 FlatCAMEditor.py:4377 FlatCAMEditor.py:4448
  1698. msgid "[WARNING_NOTCL] Invalid distance for buffering."
  1699. msgstr "[WARNING_NOTCL] Ungültige Entfernung für die Pufferung"
  1700. #: FlatCAMEditor.py:4349 FlatCAMEditor.py:4457
  1701. msgid ""
  1702. "[ERROR_NOTCL]Failed, the result is empty. Choose a different buffer value."
  1703. msgstr ""
  1704. "[ERROR_NOTCL] Fehlgeschlagen, das Ergebnis ist leer. Wählen Sie einen "
  1705. "anderen Pufferwert."
  1706. #: FlatCAMEditor.py:4357
  1707. msgid "[success]Full buffer geometry created."
  1708. msgstr "[success] Volle Puffergeometrie erstellt."
  1709. #: FlatCAMEditor.py:4386
  1710. msgid ""
  1711. "[ERROR_NOTCL]Failed, the result is empty. Choose a smaller buffer value."
  1712. msgstr ""
  1713. "[ERROR_NOTCL] Fehlgeschlagen, das Ergebnis ist leer. Wählen Sie einen "
  1714. "kleineren Pufferwert."
  1715. #: FlatCAMEditor.py:4398 FlatCAMEditor.py:4469
  1716. msgid "[success]Exterior buffer geometry created."
  1717. msgstr "[success] Außenpuffergeometrie erstellt."
  1718. #: FlatCAMEditor.py:4533
  1719. msgid "[WARNING_NOTCL]Nothing selected for painting."
  1720. msgstr "[WARNING_NOTCL] Nichts zum Malen ausgewählt."
  1721. #: FlatCAMEditor.py:4539
  1722. msgid "[WARNING] Invalid value for {}"
  1723. msgstr "[WARNING] Ungültiger Wert für {}"
  1724. #: FlatCAMEditor.py:4545
  1725. msgid ""
  1726. "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
  1727. "(100%)."
  1728. msgstr ""
  1729. "[ERROR_NOTCL] Kann nicht Malen machen. Der Überlappungswert muss unter 1,00 "
  1730. "(100%) liegen."
  1731. #: FlatCAMEditor.py:4604
  1732. #, python-format
  1733. msgid ""
  1734. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  1735. "different method of Paint\n"
  1736. "%s"
  1737. msgstr ""
  1738. "[ERROR] Kann nicht Malen machen. Versuchen Sie es mit einer anderen "
  1739. "Kombination von Parametern. Oder eine andere Methode von Malen\n"
  1740. "%s"
  1741. #: FlatCAMEditor.py:4615
  1742. msgid "[success] Paint done."
  1743. msgstr "[success] Malen Sie fertig."
  1744. #: FlatCAMEditor.py:4647
  1745. msgid "Excellon Editor"
  1746. msgstr "Excellon Editor"
  1747. #: FlatCAMEditor.py:4654
  1748. msgid "Name:"
  1749. msgstr ""
  1750. #: FlatCAMEditor.py:4674 flatcamTools/ToolNonCopperClear.py:71
  1751. #: flatcamTools/ToolPaint.py:69 flatcamTools/ToolSolderPaste.py:70
  1752. msgid "Tools Table"
  1753. msgstr "Werkzeugtabelle"
  1754. #: FlatCAMEditor.py:4676 flatcamGUI/ObjectUI.py:609
  1755. msgid ""
  1756. "Tools in this Excellon object\n"
  1757. "when are used for drilling."
  1758. msgstr ""
  1759. "Werkzeuge in diesem Excellon-Objekt\n"
  1760. "Wann werden zum Bohren verwendet."
  1761. #: FlatCAMEditor.py:4685 FlatCAMEditor.py:5745 FlatCAMObj.py:2213
  1762. #: FlatCAMObj.py:2307 FlatCAMObj.py:2418 flatcamGUI/ObjectUI.py:627
  1763. #: flatcamTools/ToolNonCopperClear.py:82 flatcamTools/ToolPaint.py:80
  1764. #: flatcamTools/ToolSolderPaste.py:81
  1765. msgid "Diameter"
  1766. msgstr "Durchmesser"
  1767. #: FlatCAMEditor.py:4693
  1768. msgid "Add/Delete Tool"
  1769. msgstr "Werkzeug hinzufügen / löschen"
  1770. #: FlatCAMEditor.py:4695
  1771. msgid ""
  1772. "Add/Delete a tool to the tool list\n"
  1773. "for this Excellon object."
  1774. msgstr ""
  1775. "Werkzeug zur Werkzeugliste hinzufügen / löschen\n"
  1776. "für dieses Excellon-Objekt."
  1777. #: FlatCAMEditor.py:4703 flatcamTools/ToolCutOut.py:77
  1778. msgid "Tool Dia:"
  1779. msgstr "Werkzeugdurchmesser:"
  1780. #: FlatCAMEditor.py:4705 flatcamGUI/ObjectUI.py:1046
  1781. msgid "Diameter for the new tool"
  1782. msgstr "Durchmesser für das neue Werkzeug"
  1783. #: FlatCAMEditor.py:4714
  1784. msgid "Add Tool"
  1785. msgstr "Werkzeug hinzufügen"
  1786. #: FlatCAMEditor.py:4716
  1787. msgid ""
  1788. "Add a new tool to the tool list\n"
  1789. "with the diameter specified above."
  1790. msgstr ""
  1791. "Fügen Sie der Werkzeugliste ein neues Werkzeug hinzu\n"
  1792. "mit dem oben angegebenen Durchmesser."
  1793. #: FlatCAMEditor.py:4726
  1794. msgid "Delete Tool"
  1795. msgstr "Werkzeug löschen"
  1796. #: FlatCAMEditor.py:4728
  1797. msgid ""
  1798. "Delete a tool in the tool list\n"
  1799. "by selecting a row in the tool table."
  1800. msgstr ""
  1801. "Löschen Sie ein Werkzeug in der Werkzeugliste\n"
  1802. "indem Sie eine Zeile in der Werkzeugtabelle auswählen."
  1803. #: FlatCAMEditor.py:4746
  1804. msgid "Resize Drill(s)"
  1805. msgstr "Größe der Bohrer ändern"
  1806. #: FlatCAMEditor.py:4748
  1807. msgid "Resize a drill or a selection of drills."
  1808. msgstr "Ändern Sie die Größe eines Bohrers oder einer Auswahl von Bohrern."
  1809. #: FlatCAMEditor.py:4755
  1810. msgid "Resize Dia:"
  1811. msgstr "Durchmesser ändern:"
  1812. #: FlatCAMEditor.py:4757
  1813. msgid "Diameter to resize to."
  1814. msgstr "Durchmesser zur Größenänderung."
  1815. #: FlatCAMEditor.py:4765
  1816. msgid "Resize"
  1817. msgstr "Größe ändern"
  1818. #: FlatCAMEditor.py:4767
  1819. msgid "Resize drill(s)"
  1820. msgstr "Bohrer verkleinern"
  1821. #: FlatCAMEditor.py:4789 flatcamGUI/FlatCAMGUI.py:1394
  1822. msgid "Add Drill Array"
  1823. msgstr "Bohrer-Array hinzufügen"
  1824. #: FlatCAMEditor.py:4791
  1825. msgid "Add an array of drills (linear or circular array)"
  1826. msgstr ""
  1827. "Hinzufügen eines Arrays von Bohrern (lineares oder kreisförmiges Array)"
  1828. #: FlatCAMEditor.py:4797
  1829. msgid ""
  1830. "Select the type of drills array to create.\n"
  1831. "It can be Linear X(Y) or Circular"
  1832. msgstr ""
  1833. "Wählen Sie den Typ des zu erstellenden Bohrfelds aus.\n"
  1834. "Es kann lineares X (Y) oder rund sein"
  1835. #: FlatCAMEditor.py:4800
  1836. msgid "Linear"
  1837. msgstr "Linear"
  1838. #: FlatCAMEditor.py:4801
  1839. msgid "Circular"
  1840. msgstr "Kreisförmig"
  1841. #: FlatCAMEditor.py:4808
  1842. msgid "Nr of drills:"
  1843. msgstr "Anzahl der Bohrer:"
  1844. #: FlatCAMEditor.py:4810
  1845. msgid "Specify how many drills to be in the array."
  1846. msgstr "Geben Sie an, wie viele Drills im Array enthalten sein sollen."
  1847. #: FlatCAMEditor.py:4827 FlatCAMEditor.py:4872
  1848. msgid "Direction:"
  1849. msgstr "Richtung:"
  1850. #: FlatCAMEditor.py:4829
  1851. msgid ""
  1852. "Direction on which the linear array is oriented:\n"
  1853. "- 'X' - horizontal axis \n"
  1854. "- 'Y' - vertical axis or \n"
  1855. "- 'Angle' - a custom angle for the array inclination"
  1856. msgstr ""
  1857. "Richtung, auf die das lineare Array ausgerichtet ist:\n"
  1858. "- 'X' - horizontale Achse\n"
  1859. "- 'Y' - vertikale Achse oder\n"
  1860. "- 'Winkel' - ein benutzerdefinierter Winkel für die Neigung des Arrays"
  1861. #: FlatCAMEditor.py:4838
  1862. msgid "Angle"
  1863. msgstr "Winkel"
  1864. #: FlatCAMEditor.py:4842
  1865. msgid "Pitch:"
  1866. msgstr "Abstand:"
  1867. #: FlatCAMEditor.py:4844
  1868. msgid "Pitch = Distance between elements of the array."
  1869. msgstr "Abstand = Abstand zwischen Elementen des Arrays."
  1870. #: FlatCAMEditor.py:4853
  1871. msgid ""
  1872. "Angle at which the linear array is placed.\n"
  1873. "The precision is of max 2 decimals.\n"
  1874. "Min value is: -359.99 degrees.\n"
  1875. "Max value is: 360.00 degrees."
  1876. msgstr ""
  1877. "Winkel, bei dem das lineare Array platziert wird.\n"
  1878. "Die Genauigkeit beträgt maximal 2 Dezimalstellen.\n"
  1879. "Der Mindestwert beträgt -359,99 Grad.\n"
  1880. "Maximalwert ist: 360.00 Grad."
  1881. #: FlatCAMEditor.py:4874
  1882. msgid ""
  1883. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1884. "clockwise."
  1885. msgstr ""
  1886. "Richtung für kreisförmige Anordnung. Kann CW = Uhrzeigersinn oder CCW = "
  1887. "Gegenuhrzeigersinn sein."
  1888. #: FlatCAMEditor.py:4889
  1889. msgid "Angle at which each element in circular array is placed."
  1890. msgstr ""
  1891. "Winkel, um den jedes Element in einer kreisförmigen Anordnung platziert wird."
  1892. #: FlatCAMEditor.py:5210 FlatCAMObj.py:1735
  1893. msgid "Total Drills"
  1894. msgstr "Bohrungen insgesamt"
  1895. #: FlatCAMEditor.py:5242 FlatCAMObj.py:1761
  1896. msgid "Total Slots"
  1897. msgstr "Schlitz insgesamt"
  1898. #: FlatCAMEditor.py:5316 FlatCAMObj.py:1968 FlatCAMObj.py:3231
  1899. #: FlatCAMObj.py:3537 FlatCAMObj.py:3724 FlatCAMObj.py:3737 FlatCAMObj.py:3854
  1900. #: FlatCAMObj.py:4262 FlatCAMObj.py:4495 FlatCAMObj.py:4901
  1901. #: flatcamTools/ToolCalculators.py:307 flatcamTools/ToolCalculators.py:318
  1902. #: flatcamTools/ToolCalculators.py:330 flatcamTools/ToolCalculators.py:345
  1903. #: flatcamTools/ToolCalculators.py:358 flatcamTools/ToolCalculators.py:372
  1904. #: flatcamTools/ToolCalculators.py:383 flatcamTools/ToolCalculators.py:394
  1905. #: flatcamTools/ToolCalculators.py:405 flatcamTools/ToolFilm.py:241
  1906. #: flatcamTools/ToolFilm.py:248 flatcamTools/ToolNonCopperClear.py:478
  1907. #: flatcamTools/ToolNonCopperClear.py:625
  1908. #: flatcamTools/ToolNonCopperClear.py:637 flatcamTools/ToolPaint.py:537
  1909. #: flatcamTools/ToolPaint.py:607 flatcamTools/ToolPaint.py:743
  1910. #: flatcamTools/ToolPaint.py:833 flatcamTools/ToolPaint.py:988
  1911. #: flatcamTools/ToolPanelize.py:323 flatcamTools/ToolPanelize.py:335
  1912. #: flatcamTools/ToolPanelize.py:348 flatcamTools/ToolPanelize.py:361
  1913. #: flatcamTools/ToolPanelize.py:373 flatcamTools/ToolPanelize.py:384
  1914. #: flatcamTools/ToolSolderPaste.py:755 flatcamTools/ToolSolderPaste.py:826
  1915. msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
  1916. msgstr "[ERROR_NOTCL] Falsches Wertformat eingegeben, verwenden Sie eine Zahl."
  1917. #: FlatCAMEditor.py:5329
  1918. msgid ""
  1919. "[WARNING_NOTCL]Tool already in the original or actual tool list.\n"
  1920. "Save and reedit Excellon if you need to add this tool. "
  1921. msgstr ""
  1922. "[WARNING_NOTCL] Werkzeug bereits in der ursprünglichen oder tatsächlichen "
  1923. "Werkzeugliste.\n"
  1924. "Speichern und korrigieren Sie Excellon, wenn Sie dieses Tool hinzufügen "
  1925. "möchten."
  1926. #: FlatCAMEditor.py:5338 flatcamGUI/FlatCAMGUI.py:2498
  1927. #, python-brace-format
  1928. msgid "[success]Added new tool with dia: {dia} {units}"
  1929. msgstr "[success] Neues Werkzeug mit Durchmesser hinzugefügt: {dia} {units}"
  1930. #: FlatCAMEditor.py:5369
  1931. msgid "[WARNING_NOTCL]Select a tool in Tool Table"
  1932. msgstr "[WARNING_NOTCL] Wählen Sie ein Werkzeug in der Werkzeugtabelle aus"
  1933. #: FlatCAMEditor.py:5402
  1934. #, python-brace-format
  1935. msgid "[success]Deleted tool with dia: {del_dia} {units}"
  1936. msgstr "[success] Gelöschtes Werkzeug mit Durchmesser: {del_dia} {units}"
  1937. #: FlatCAMEditor.py:5799
  1938. msgid ""
  1939. "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
  1940. "creation."
  1941. msgstr ""
  1942. "[ERROR_NOTCL] Die Datei enthält keine Werkzeugdefinitionen. Abbruch der "
  1943. "Excellon-Erstellung."
  1944. #: FlatCAMEditor.py:5808
  1945. msgid "Creating Excellon."
  1946. msgstr "Excellon erstellen."
  1947. #: FlatCAMEditor.py:5817
  1948. msgid "[success]Excellon editing finished."
  1949. msgstr "[success] Excellon-Bearbeitung abgeschlossen."
  1950. #: FlatCAMEditor.py:5834
  1951. msgid "[WARNING_NOTCL]Cancelled. There is no Tool/Drill selected"
  1952. msgstr "[WARNING_NOTCL] Abgebrochen. Es ist kein Werkzeug / Bohrer ausgewählt"
  1953. #: FlatCAMEditor.py:6316
  1954. msgid "[success]Done. Drill(s) deleted."
  1955. msgstr "[success] Erledigt. Bohrer gelöscht."
  1956. #: FlatCAMEditor.py:6386
  1957. msgid "Click on the circular array Center position"
  1958. msgstr "Klicken Sie auf die kreisförmige Anordnung in der Mitte"
  1959. #: FlatCAMObj.py:194
  1960. #, python-brace-format
  1961. msgid "[success]Name changed from {old} to {new}"
  1962. msgstr "[success] Name geändert von {old} zu {new}"
  1963. #: FlatCAMObj.py:542 FlatCAMObj.py:1896 FlatCAMObj.py:3159 FlatCAMObj.py:5306
  1964. msgid "<span style=\"color:green;\"><b>Basic</b></span>"
  1965. msgstr "<span style=\"color:green;\"><b>Basic</b></span>"
  1966. #: FlatCAMObj.py:554 FlatCAMObj.py:1912 FlatCAMObj.py:3181 FlatCAMObj.py:5312
  1967. msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
  1968. msgstr "<span style=\"color:red;\"><b>Erweitert</b></span>"
  1969. #: FlatCAMObj.py:909 FlatCAMObj.py:964
  1970. #, python-format
  1971. msgid "[success]Isolation geometry created: %s"
  1972. msgstr "[success] Isolationsgeometrie erstellt: %s"
  1973. #: FlatCAMObj.py:1039
  1974. msgid ""
  1975. "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  1976. msgstr ""
  1977. "[ERROR_NOTCL] Skalierungsfaktorwert für Öffnung fehlt oder falsches Format."
  1978. #: FlatCAMObj.py:1054 FlatCAMObj.py:1089
  1979. msgid ""
  1980. "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
  1981. "again."
  1982. msgstr ""
  1983. "[WARNING_NOTCL] Keine Aperture zu skalieren. Wählen Sie mindestens eine "
  1984. "Öffnung und versuchen Sie es erneut."
  1985. #: FlatCAMObj.py:1074
  1986. msgid "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  1987. msgstr ""
  1988. "[ERROR_NOTCL] Der Aperturepufferwert fehlt oder hat ein falsches Format."
  1989. #: FlatCAMObj.py:1146
  1990. msgid "Generating Gerber"
  1991. msgstr "Gerber generieren"
  1992. #: FlatCAMObj.py:1154
  1993. msgid "[ERROR_NOTCL] Cretion of Gerber failed."
  1994. msgstr "[ERROR_NOTCL] Erstellung von Gerber ist fehlgeschlagen."
  1995. #: FlatCAMObj.py:1161
  1996. #, python-format
  1997. msgid "[success] Created: %s"
  1998. msgstr "[success] Erstellt: %s"
  1999. #: FlatCAMObj.py:1281
  2000. msgid "Plotting Apertures"
  2001. msgstr "Plotten Apertures"
  2002. #: FlatCAMObj.py:2192 FlatCAMObj.py:2283 FlatCAMObj.py:2398
  2003. msgid ""
  2004. "[ERROR_NOTCL]Please select one or more tools from the list and try again."
  2005. msgstr ""
  2006. "[ERROR_NOTCL] Bitte wählen Sie ein oder mehrere Werkzeuge aus der Liste aus "
  2007. "und versuchen Sie es erneut."
  2008. #: FlatCAMObj.py:2199
  2009. msgid ""
  2010. "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  2011. msgstr ""
  2012. "[ERROR_NOTCL] Das Fräswerkzeug für BOHRER ist größer als die Lochgröße. "
  2013. "Abgebrochen."
  2014. #: FlatCAMObj.py:2213 FlatCAMObj.py:2307 FlatCAMObj.py:2418
  2015. msgid "Tool_nr"
  2016. msgstr "Werkzeugnummer"
  2017. #: FlatCAMObj.py:2213 FlatCAMObj.py:2307 FlatCAMObj.py:2418
  2018. msgid "Drills_Nr"
  2019. msgstr "Bohrnummer"
  2020. #: FlatCAMObj.py:2213 FlatCAMObj.py:2307 FlatCAMObj.py:2418
  2021. msgid "Slots_Nr"
  2022. msgstr "Schlitznummer"
  2023. #: FlatCAMObj.py:2293
  2024. msgid ""
  2025. "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  2026. msgstr ""
  2027. "[ERROR_NOTCL] Das Fräswerkzeug für SCHLITZ ist größer als die Lochgröße. "
  2028. "Abgebrochen."
  2029. #: FlatCAMObj.py:2456 FlatCAMObj.py:4150 FlatCAMObj.py:4361 FlatCAMObj.py:4676
  2030. msgid ""
  2031. "[ERROR_NOTCL]Wrong value format for self.defaults[\"z_pdepth\"] or self."
  2032. "options[\"z_pdepth\"]"
  2033. msgstr ""
  2034. "[ERROR_NOTCL] Falsches Wertformat für self.defaults [\"z_pdepth\"] oder self."
  2035. "options [\"z_pdepth\"]"
  2036. #: FlatCAMObj.py:2468 FlatCAMObj.py:4162 FlatCAMObj.py:4373 FlatCAMObj.py:4688
  2037. msgid ""
  2038. "[ERROR_NOTCL]Wrong value format for self.defaults[\"feedrate_probe\"] or "
  2039. "self.options[\"feedrate_probe\"]"
  2040. msgstr ""
  2041. "[ERROR_NOTCL] Falsches Wertformat für self.defaults [\"feedrate_probe\"] "
  2042. "oder self.options [\"feedrate_probe\"]"
  2043. #: FlatCAMObj.py:2500 FlatCAMObj.py:4563 FlatCAMObj.py:4568 FlatCAMObj.py:4714
  2044. msgid "Generating CNC Code"
  2045. msgstr "CNC-Code generieren"
  2046. #: FlatCAMObj.py:2526 FlatCAMObj.py:4860 camlib.py:4929 camlib.py:5365
  2047. #: camlib.py:5636
  2048. msgid ""
  2049. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
  2050. "format (x, y) \n"
  2051. "but now there is only one value, not two. "
  2052. msgstr ""
  2053. "[ERROR] Das Feld X, Y des Werkzeugwechsels in Bearbeiten -> Voreinstellungen "
  2054. "muss das Format (x, y) haben.\n"
  2055. "Aber jetzt gibt es nur einen Wert, nicht zwei."
  2056. #: FlatCAMObj.py:2873 FlatCAMObj.py:3115 FlatCAMObj.py:3400
  2057. msgid "Path"
  2058. msgstr "Pfad"
  2059. #: FlatCAMObj.py:2873
  2060. msgid "In"
  2061. msgstr "Im"
  2062. #: FlatCAMObj.py:2873
  2063. msgid "Out"
  2064. msgstr "Aus"
  2065. #: FlatCAMObj.py:2873 FlatCAMObj.py:3196 FlatCAMObj.py:3769
  2066. msgid "Custom"
  2067. msgstr "Maßgeschneidert"
  2068. #: FlatCAMObj.py:2874 FlatCAMObj.py:3780 FlatCAMObj.py:3781 FlatCAMObj.py:3790
  2069. msgid "Iso"
  2070. msgstr "Iso"
  2071. #: FlatCAMObj.py:2874 FlatCAMObj.py:3117 FlatCAMObj.py:3402
  2072. msgid "Rough"
  2073. msgstr "Rau"
  2074. #: FlatCAMObj.py:2874
  2075. msgid "Finish"
  2076. msgstr "Oberfläche"
  2077. #: FlatCAMObj.py:3152 flatcamGUI/FlatCAMGUI.py:473
  2078. #: flatcamGUI/FlatCAMGUI.py:1398 flatcamGUI/ObjectUI.py:1067
  2079. msgid "Copy"
  2080. msgstr "Kopieren"
  2081. #: FlatCAMObj.py:3154 flatcamGUI/FlatCAMGUI.py:474
  2082. #: flatcamGUI/FlatCAMGUI.py:1399 flatcamGUI/ObjectUI.py:1075
  2083. #: flatcamTools/ToolNonCopperClear.py:145 flatcamTools/ToolPaint.py:143
  2084. #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:480
  2085. msgid "Delete"
  2086. msgstr "Löschen"
  2087. #: FlatCAMObj.py:3372
  2088. msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  2089. msgstr ""
  2090. "[ERROR_NOTCL] Bitte geben Sie den gewünschten Werkzeugdurchmesser im Real-"
  2091. "Format ein."
  2092. #: FlatCAMObj.py:3447
  2093. msgid "[success] Tool added in Tool Table."
  2094. msgstr "[success] Werkzeug in der Werkzeugtabelle hinzugefügt."
  2095. #: FlatCAMObj.py:3452
  2096. msgid "[ERROR_NOTCL]Default Tool added. Wrong value format entered."
  2097. msgstr ""
  2098. "[ERROR_NOTCL] Standardwerkzeug hinzugefügt Falsches Wertformat eingegeben."
  2099. #: FlatCAMObj.py:3482 FlatCAMObj.py:3492
  2100. msgid "[WARNING_NOTCL]Failed. Select a tool to copy."
  2101. msgstr ""
  2102. "[WARNING_NOTCL] Fehlgeschlagen. Wählen Sie ein Werkzeug zum Kopieren aus."
  2103. #: FlatCAMObj.py:3521
  2104. msgid "[success] Tool was copied in Tool Table."
  2105. msgstr "[success] Das Werkzeug wurde in die Werkzeugtabelle kopiert."
  2106. #: FlatCAMObj.py:3554
  2107. msgid "[success] Tool was edited in Tool Table."
  2108. msgstr "[success] Das Werkzeug wurde in der Werkzeugtabelle bearbeitet."
  2109. #: FlatCAMObj.py:3585 FlatCAMObj.py:3595
  2110. msgid "[WARNING_NOTCL]Failed. Select a tool to delete."
  2111. msgstr ""
  2112. "[WARNING_NOTCL] Fehlgeschlagen. Wählen Sie ein Werkzeug zum Löschen aus."
  2113. #: FlatCAMObj.py:3619
  2114. msgid "[success] Tool was deleted in Tool Table."
  2115. msgstr "[success] Werkzeug wurde in der Werkzeugtabelle gelöscht."
  2116. #: FlatCAMObj.py:4033
  2117. #, python-format
  2118. msgid ""
  2119. "[WARNING_NOTCL]This Geometry can't be processed because it is %s geometry."
  2120. msgstr ""
  2121. "[WARNING_NOTCL] Diese Geometrie kann nicht verarbeitet werden, da es sich um "
  2122. "%s Geometrie handelt."
  2123. #: FlatCAMObj.py:4050
  2124. msgid "[ERROR_NOTCL]Wrong Tool Dia value format entered, use a number."
  2125. msgstr ""
  2126. "[ERROR_NOTCL] Falsches Werkzeug Dia-Wertformat eingegeben, verwenden Sie "
  2127. "eine Zahl."
  2128. #: FlatCAMObj.py:4077
  2129. msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  2130. msgstr ""
  2131. "[ERROR_NOTCL] Gescheitert. Kein Werkzeug in der Werkzeugtabelle "
  2132. "ausgewählt ..."
  2133. #: FlatCAMObj.py:4115
  2134. #, python-format
  2135. msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  2136. msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  2137. #: FlatCAMObj.py:4271 FlatCAMObj.py:4504
  2138. msgid ""
  2139. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  2140. "Add a Tool Offset or change the Offset Type."
  2141. msgstr ""
  2142. "[WARNING] Werkzeugversatz ist in der Werkzeugtabelle ausgewählt, es wird "
  2143. "jedoch kein Wert angegeben.\n"
  2144. "Fügen Sie einen Werkzeugversatz hinzu oder ändern Sie den Versatztyp."
  2145. #: FlatCAMObj.py:4385
  2146. msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  2147. msgstr "[ERROR_NOTCL] Abgebrochen. Leere Datei hat keine Geometrie ..."
  2148. #: FlatCAMObj.py:4747 FlatCAMObj.py:4757 camlib.py:3229 camlib.py:3238
  2149. msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  2150. msgstr ""
  2151. "[ERROR_NOTCL] Der Skalierungsfaktor muss eine Zahl sein: Ganzzahl oder "
  2152. "Fließkommazahl."
  2153. #: FlatCAMObj.py:4795
  2154. msgid "[success]Geometry Scale done."
  2155. msgstr "[success] Geometrie Skalierung fertig."
  2156. #: FlatCAMObj.py:4812 camlib.py:3300
  2157. msgid ""
  2158. "[ERROR_NOTCL]An (x,y) pair of values are needed. Probable you entered only "
  2159. "one value in the Offset field."
  2160. msgstr ""
  2161. "[ERROR_NOTCL] Ein (x, y) Wertepaar wird benötigt. Wahrscheinlich haben Sie "
  2162. "im Feld Offset nur einen Wert eingegeben."
  2163. #: FlatCAMObj.py:4832
  2164. msgid "[success]Geometry Offset done."
  2165. msgstr "[success] Geometrie Offset fertig."
  2166. #: FlatCAMObj.py:5374 FlatCAMObj.py:5379 flatcamTools/ToolSolderPaste.py:1360
  2167. msgid "Export Machine Code ..."
  2168. msgstr "Maschinencode exportieren ..."
  2169. #: FlatCAMObj.py:5385
  2170. msgid "[WARNING_NOTCL]Export Machine Code cancelled ..."
  2171. msgstr "[WARNING_NOTCL] Maschinencode wurde abgebrochen ..."
  2172. #: FlatCAMObj.py:5396
  2173. #, python-format
  2174. msgid "[success] Machine Code file saved to: %s"
  2175. msgstr "[success] Machine Code file saved to: %s"
  2176. #: FlatCAMObj.py:5418
  2177. #, python-format
  2178. msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  2179. msgstr "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  2180. #: FlatCAMObj.py:5524
  2181. #, python-format
  2182. msgid ""
  2183. "[WARNING_NOTCL]This CNCJob object can't be processed because it is a %s "
  2184. "CNCJob object."
  2185. msgstr ""
  2186. "[WARNING_NOTCL]This CNCJob object can't be processed because it is a %s "
  2187. "CNCJob object."
  2188. #: FlatCAMObj.py:5577
  2189. msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  2190. msgstr "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  2191. #: FlatCAMObj.py:5590
  2192. msgid ""
  2193. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  2194. "empty."
  2195. msgstr ""
  2196. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  2197. "empty."
  2198. #: FlatCAMObj.py:5597
  2199. msgid "[success] Toolchange G-code was replaced by a custom code."
  2200. msgstr "[success] Toolchange G-code was replaced by a custom code."
  2201. #: FlatCAMObj.py:5612 flatcamTools/ToolSolderPaste.py:1389
  2202. msgid "[WARNING_NOTCL] No such file or directory"
  2203. msgstr "[WARNING_NOTCL] No such file or directory"
  2204. #: FlatCAMObj.py:5631 FlatCAMObj.py:5643
  2205. msgid ""
  2206. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  2207. "'toolchange_custom'"
  2208. msgstr ""
  2209. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  2210. "'toolchange_custom'"
  2211. #: FlatCAMObj.py:5649
  2212. msgid "[ERROR] There is no postprocessor file."
  2213. msgstr "[ERROR] There is no postprocessor file."
  2214. #: ObjectCollection.py:403
  2215. #, python-brace-format
  2216. msgid "Object renamed from {old} to {new}"
  2217. msgstr "Object renamed from {old} to {new}"
  2218. #: ObjectCollection.py:738
  2219. #, python-format
  2220. msgid "[ERROR] Cause of error: %s"
  2221. msgstr "[ERROR] Cause of error: %s"
  2222. #: camlib.py:200
  2223. msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  2224. msgstr "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  2225. #: camlib.py:1387
  2226. msgid "[success]Object was mirrored ..."
  2227. msgstr "[success]Object was mirrored ..."
  2228. #: camlib.py:1389
  2229. msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
  2230. msgstr "[ERROR_NOTCL] Failed to mirror. No object selected"
  2231. #: camlib.py:1425
  2232. msgid "[success]Object was rotated ..."
  2233. msgstr "[success]Object was rotated ..."
  2234. #: camlib.py:1427
  2235. msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
  2236. msgstr "[ERROR_NOTCL] Failed to rotate. No object selected"
  2237. #: camlib.py:1461
  2238. msgid "[success]Object was skewed ..."
  2239. msgstr "[success]Object was skewed ..."
  2240. #: camlib.py:1463
  2241. msgid "[ERROR_NOTCL] Failed to skew. No object selected"
  2242. msgstr "[ERROR_NOTCL] Failed to skew. No object selected"
  2243. #: camlib.py:2647 camlib.py:2727
  2244. #, python-format
  2245. msgid "[WARNING] Coordinates missing, line ignored: %s"
  2246. msgstr "[WARNING] Coordinates missing, line ignored: %s"
  2247. #: camlib.py:2648 camlib.py:2728
  2248. msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  2249. msgstr "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  2250. #: camlib.py:2696
  2251. #, python-format
  2252. msgid ""
  2253. "[ERROR] Region does not have enough points. File will be processed but there "
  2254. "are parser errors. Line number: %s"
  2255. msgstr ""
  2256. "[ERROR] Region does not have enough points. File will be processed but there "
  2257. "are parser errors. Line number: %s"
  2258. #: camlib.py:3051
  2259. #, python-format
  2260. msgid ""
  2261. "[ERROR]Gerber Parser ERROR.\n"
  2262. "%s:"
  2263. msgstr ""
  2264. "[ERROR]Gerber Parser ERROR.\n"
  2265. "%s:"
  2266. #: camlib.py:3267
  2267. msgid "[success]Gerber Scale done."
  2268. msgstr "[success]Gerber Scale done."
  2269. #: camlib.py:3324
  2270. msgid "[success]Gerber Offset done."
  2271. msgstr "[success]Gerber Offset done."
  2272. #: camlib.py:3700
  2273. #, python-format
  2274. msgid "[ERROR_NOTCL] This is GCODE mark: %s"
  2275. msgstr "[ERROR_NOTCL] This is GCODE mark: %s"
  2276. #: camlib.py:4230
  2277. #, python-brace-format
  2278. msgid ""
  2279. "[ERROR] Excellon Parser error.\n"
  2280. "Parsing Failed. Line {l_nr}: {line}\n"
  2281. msgstr ""
  2282. "[ERROR] Excellon Parser error.\n"
  2283. "Parsing Failed. Line {l_nr}: {line}\n"
  2284. #: camlib.py:4307
  2285. msgid ""
  2286. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  2287. "not having a tool associated.\n"
  2288. "Check the resulting GCode."
  2289. msgstr ""
  2290. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  2291. "not having a tool associated.\n"
  2292. "Check the resulting GCode."
  2293. #: camlib.py:4843
  2294. #, python-format
  2295. msgid "[ERROR] There is no such parameter: %s"
  2296. msgstr "[ERROR] There is no such parameter: %s"
  2297. #: camlib.py:4908
  2298. msgid ""
  2299. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  2300. "drill into material.\n"
  2301. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  2302. "therefore the app will convert the value to negative. Check the resulting "
  2303. "CNC code (Gcode etc)."
  2304. msgstr ""
  2305. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  2306. "drill into material.\n"
  2307. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  2308. "therefore the app will convert the value to negative. Check the resulting "
  2309. "CNC code (Gcode etc)."
  2310. #: camlib.py:4915 camlib.py:5388 camlib.py:5659
  2311. #, python-format
  2312. msgid ""
  2313. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  2314. msgstr ""
  2315. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  2316. #: camlib.py:5131 camlib.py:5226 camlib.py:5277
  2317. msgid "[ERROR_NOTCL]The loaded Excellon file has no drills ..."
  2318. msgstr "[ERROR_NOTCL]The loaded Excellon file has no drills ..."
  2319. #: camlib.py:5231
  2320. msgid "[ERROR_NOTCL] Wrong optimization type selected."
  2321. msgstr "[ERROR_NOTCL] Wrong optimization type selected."
  2322. #: camlib.py:5376 camlib.py:5647
  2323. msgid ""
  2324. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  2325. "combinations of other parameters."
  2326. msgstr ""
  2327. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  2328. "combinations of other parameters."
  2329. #: camlib.py:5381 camlib.py:5652
  2330. msgid ""
  2331. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  2332. "cut into material.\n"
  2333. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  2334. "therefore the app will convert the value to negative.Check the resulting CNC "
  2335. "code (Gcode etc)."
  2336. msgstr ""
  2337. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  2338. "cut into material.\n"
  2339. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  2340. "therefore the app will convert the value to negative.Check the resulting CNC "
  2341. "code (Gcode etc)."
  2342. #: camlib.py:5393 camlib.py:5664
  2343. msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
  2344. msgstr "[ERROR_NOTCL] Travel Z parameter is None or zero."
  2345. #: camlib.py:5397 camlib.py:5668
  2346. msgid ""
  2347. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  2348. "to travel between cuts.\n"
  2349. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  2350. "therefore the app will convert the value to positive.Check the resulting CNC "
  2351. "code (Gcode etc)."
  2352. msgstr ""
  2353. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  2354. "to travel between cuts.\n"
  2355. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  2356. "therefore the app will convert the value to positive.Check the resulting CNC "
  2357. "code (Gcode etc)."
  2358. #: camlib.py:5404 camlib.py:5675
  2359. #, python-format
  2360. msgid ""
  2361. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  2362. msgstr ""
  2363. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  2364. #: camlib.py:5534
  2365. #, python-format
  2366. msgid "[ERROR]Expected a Geometry, got %s"
  2367. msgstr "[ERROR]Expected a Geometry, got %s"
  2368. #: camlib.py:5540
  2369. msgid ""
  2370. "[ERROR_NOTCL]Trying to generate a CNC Job from a Geometry object without "
  2371. "solid_geometry."
  2372. msgstr ""
  2373. "[ERROR_NOTCL]Trying to generate a CNC Job from a Geometry object without "
  2374. "solid_geometry."
  2375. #: camlib.py:5579
  2376. msgid ""
  2377. "[ERROR_NOTCL]The Tool Offset value is too negative to use for the "
  2378. "current_geometry.\n"
  2379. "Raise the value (in module) and try again."
  2380. msgstr ""
  2381. "[ERROR_NOTCL]The Tool Offset value is too negative to use for the "
  2382. "current_geometry.\n"
  2383. "Raise the value (in module) and try again."
  2384. #: camlib.py:5801
  2385. msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  2386. msgstr "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  2387. #: flatcamGUI/FlatCAMGUI.py:50
  2388. msgid "&File"
  2389. msgstr "&Datei"
  2390. #: flatcamGUI/FlatCAMGUI.py:55
  2391. msgid "&New Project ...\tCTRL+N"
  2392. msgstr "&New Project ...\tCTRL+N"
  2393. #: flatcamGUI/FlatCAMGUI.py:57
  2394. msgid "Will create a new, blank project"
  2395. msgstr "Will create a new, blank project"
  2396. #: flatcamGUI/FlatCAMGUI.py:62
  2397. msgid "&New"
  2398. msgstr "&New"
  2399. #: flatcamGUI/FlatCAMGUI.py:65
  2400. msgid "Geometry\tN"
  2401. msgstr "Geometry\tN"
  2402. #: flatcamGUI/FlatCAMGUI.py:67
  2403. msgid "Will create a new, empty Geometry Object."
  2404. msgstr "Will create a new, empty Geometry Object."
  2405. #: flatcamGUI/FlatCAMGUI.py:69
  2406. msgid "Excellon\tL"
  2407. msgstr "Excellon\tL"
  2408. #: flatcamGUI/FlatCAMGUI.py:71
  2409. msgid "Will create a new, empty Excellon Object."
  2410. msgstr "Will create a new, empty Excellon Object."
  2411. #: flatcamGUI/FlatCAMGUI.py:74
  2412. msgid "Open"
  2413. msgstr "Open"
  2414. #: flatcamGUI/FlatCAMGUI.py:79
  2415. msgid "Open &Gerber ...\tCTRL+G"
  2416. msgstr "Open &Gerber ...\tCTRL+G"
  2417. #: flatcamGUI/FlatCAMGUI.py:86
  2418. msgid "Open &Excellon ...\tCTRL+E"
  2419. msgstr "Open &Excellon ...\tCTRL+E"
  2420. #: flatcamGUI/FlatCAMGUI.py:91
  2421. msgid "Open G-&Code ..."
  2422. msgstr "Open G-&Code ..."
  2423. #: flatcamGUI/FlatCAMGUI.py:95
  2424. msgid "Open &Project ..."
  2425. msgstr "Open &Project ..."
  2426. #: flatcamGUI/FlatCAMGUI.py:101
  2427. msgid "Open Config ..."
  2428. msgstr "Open Config ..."
  2429. #: flatcamGUI/FlatCAMGUI.py:105
  2430. msgid "Recent files"
  2431. msgstr "Recent files"
  2432. #: flatcamGUI/FlatCAMGUI.py:111
  2433. msgid "Scripting"
  2434. msgstr "Scripting"
  2435. #: flatcamGUI/FlatCAMGUI.py:114
  2436. msgid "New Script ..."
  2437. msgstr "New Script ..."
  2438. #: flatcamGUI/FlatCAMGUI.py:116
  2439. msgid "Open Script ..."
  2440. msgstr "Open Script ..."
  2441. #: flatcamGUI/FlatCAMGUI.py:118
  2442. msgid "Run Script ...\tSHIFT+S"
  2443. msgstr "Run Script ...\tSHIFT+S"
  2444. #: flatcamGUI/FlatCAMGUI.py:121
  2445. msgid ""
  2446. "Will run the opened Tcl Script thus\n"
  2447. "enabling the automation of certain\n"
  2448. "functions of FlatCAM."
  2449. msgstr ""
  2450. "Will run the opened Tcl Script thus\n"
  2451. "enabling the automation of certain\n"
  2452. "functions of FlatCAM."
  2453. #: flatcamGUI/FlatCAMGUI.py:134
  2454. msgid "Import"
  2455. msgstr "Import"
  2456. #: flatcamGUI/FlatCAMGUI.py:136
  2457. msgid "&SVG as Geometry Object ..."
  2458. msgstr "&SVG as Geometry Object ..."
  2459. #: flatcamGUI/FlatCAMGUI.py:139
  2460. msgid "&SVG as Gerber Object ..."
  2461. msgstr "&SVG as Gerber Object ..."
  2462. #: flatcamGUI/FlatCAMGUI.py:144
  2463. msgid "&DXF as Geometry Object ..."
  2464. msgstr "&DXF as Geometry Object ..."
  2465. #: flatcamGUI/FlatCAMGUI.py:147
  2466. msgid "&DXF as Gerber Object ..."
  2467. msgstr "&DXF as Gerber Object ..."
  2468. #: flatcamGUI/FlatCAMGUI.py:152
  2469. msgid "Export"
  2470. msgstr "Export"
  2471. #: flatcamGUI/FlatCAMGUI.py:155
  2472. msgid "Export &SVG ..."
  2473. msgstr "Export &SVG ..."
  2474. #: flatcamGUI/FlatCAMGUI.py:158
  2475. msgid "Export DXF ..."
  2476. msgstr "Export DXF ..."
  2477. #: flatcamGUI/FlatCAMGUI.py:163
  2478. msgid "Export &PNG ..."
  2479. msgstr "Export &PNG ..."
  2480. #: flatcamGUI/FlatCAMGUI.py:165
  2481. msgid ""
  2482. "Will export an image in PNG format,\n"
  2483. "the saved image will contain the visual \n"
  2484. "information currently in FlatCAM Plot Area."
  2485. msgstr ""
  2486. "Will export an image in PNG format,\n"
  2487. "the saved image will contain the visual \n"
  2488. "information currently in FlatCAM Plot Area."
  2489. #: flatcamGUI/FlatCAMGUI.py:173
  2490. msgid "Export &Excellon ..."
  2491. msgstr "Export &Excellon ..."
  2492. #: flatcamGUI/FlatCAMGUI.py:176
  2493. msgid ""
  2494. "Will export an Excellon Object as Excellon file,\n"
  2495. "the coordinates format, the file units and zeros\n"
  2496. "are set in Preferences -> Excellon Export."
  2497. msgstr ""
  2498. "Will export an Excellon Object as Excellon file,\n"
  2499. "the coordinates format, the file units and zeros\n"
  2500. "are set in Preferences -> Excellon Export."
  2501. #: flatcamGUI/FlatCAMGUI.py:187
  2502. msgid "Save &Defaults"
  2503. msgstr "Save &Defaults"
  2504. #: flatcamGUI/FlatCAMGUI.py:193 flatcamGUI/FlatCAMGUI.py:475
  2505. msgid "Save"
  2506. msgstr "Save"
  2507. #: flatcamGUI/FlatCAMGUI.py:195
  2508. msgid "&Save Project ..."
  2509. msgstr "&Save Project ..."
  2510. #: flatcamGUI/FlatCAMGUI.py:200
  2511. msgid "Save Project &As ...\tCTRL+S"
  2512. msgstr "Save Project &As ...\tCTRL+S"
  2513. #: flatcamGUI/FlatCAMGUI.py:204
  2514. msgid "Save Project C&opy ..."
  2515. msgstr "Save Project C&opy ..."
  2516. #: flatcamGUI/FlatCAMGUI.py:212
  2517. msgid "E&xit"
  2518. msgstr "E&xit"
  2519. #: flatcamGUI/FlatCAMGUI.py:218
  2520. msgid "&Edit"
  2521. msgstr "&Edit"
  2522. #: flatcamGUI/FlatCAMGUI.py:221
  2523. msgid "Edit Object\tE"
  2524. msgstr "Edit Object\tE"
  2525. #: flatcamGUI/FlatCAMGUI.py:222
  2526. msgid "Save && Close Editor\tCTRL+S"
  2527. msgstr "Save && Close Editor\tCTRL+S"
  2528. #: flatcamGUI/FlatCAMGUI.py:230
  2529. msgid "Conversion"
  2530. msgstr "Conversion"
  2531. #: flatcamGUI/FlatCAMGUI.py:232
  2532. msgid "&Join Geo/Gerber/Exc -> Geo"
  2533. msgstr "&Join Geo/Gerber/Exc -> Geo"
  2534. #: flatcamGUI/FlatCAMGUI.py:234
  2535. msgid ""
  2536. "Merge a selection of objects, which can be of type:\n"
  2537. "- Gerber\n"
  2538. "- Excellon\n"
  2539. "- Geometry\n"
  2540. "into a new combo Geometry object."
  2541. msgstr ""
  2542. "Merge a selection of objects, which can be of type:\n"
  2543. "- Gerber\n"
  2544. "- Excellon\n"
  2545. "- Geometry\n"
  2546. "into a new combo Geometry object."
  2547. #: flatcamGUI/FlatCAMGUI.py:241
  2548. msgid "Join Excellon(s) -> Excellon"
  2549. msgstr "Join Excellon(s) -> Excellon"
  2550. #: flatcamGUI/FlatCAMGUI.py:243
  2551. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  2552. msgstr ""
  2553. "Merge a selection of Excellon objects into a new combo Excellon object."
  2554. #: flatcamGUI/FlatCAMGUI.py:246
  2555. msgid "Join Gerber(s) -> Gerber"
  2556. msgstr "Join Gerber(s) -> Gerber"
  2557. #: flatcamGUI/FlatCAMGUI.py:248
  2558. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  2559. msgstr "Merge a selection of Gerber objects into a new combo Gerber object."
  2560. #: flatcamGUI/FlatCAMGUI.py:253
  2561. msgid "Convert Single to MultiGeo"
  2562. msgstr "Convert Single to MultiGeo"
  2563. #: flatcamGUI/FlatCAMGUI.py:255
  2564. msgid ""
  2565. "Will convert a Geometry object from single_geometry type\n"
  2566. "to a multi_geometry type."
  2567. msgstr ""
  2568. "Will convert a Geometry object from single_geometry type\n"
  2569. "to a multi_geometry type."
  2570. #: flatcamGUI/FlatCAMGUI.py:259
  2571. msgid "Convert Multi to SingleGeo"
  2572. msgstr "Convert Multi to SingleGeo"
  2573. #: flatcamGUI/FlatCAMGUI.py:261
  2574. msgid ""
  2575. "Will convert a Geometry object from multi_geometry type\n"
  2576. "to a single_geometry type."
  2577. msgstr ""
  2578. "Will convert a Geometry object from multi_geometry type\n"
  2579. "to a single_geometry type."
  2580. #: flatcamGUI/FlatCAMGUI.py:268
  2581. msgid "&Copy Object\tCTRL+C"
  2582. msgstr "&Copy Object\tCTRL+C"
  2583. #: flatcamGUI/FlatCAMGUI.py:270
  2584. msgid "Copy as &Geom"
  2585. msgstr "Copy as &Geom"
  2586. #: flatcamGUI/FlatCAMGUI.py:273
  2587. msgid "&Delete\tDEL"
  2588. msgstr "&Delete\tDEL"
  2589. #: flatcamGUI/FlatCAMGUI.py:277
  2590. msgid "Se&t Origin\tO"
  2591. msgstr "Se&t Origin\tO"
  2592. #: flatcamGUI/FlatCAMGUI.py:278
  2593. msgid "Jump to Location\tJ"
  2594. msgstr "Jump to Location\tJ"
  2595. #: flatcamGUI/FlatCAMGUI.py:283
  2596. msgid "Toggle Units\tQ"
  2597. msgstr "Toggle Units\tQ"
  2598. #: flatcamGUI/FlatCAMGUI.py:285
  2599. msgid "&Select All\tCTRL+A"
  2600. msgstr "&Select All\tCTRL+A"
  2601. #: flatcamGUI/FlatCAMGUI.py:289
  2602. msgid "&Preferences\tSHIFT+P"
  2603. msgstr "&Preferences\tSHIFT+P"
  2604. #: flatcamGUI/FlatCAMGUI.py:292
  2605. msgid "&Options"
  2606. msgstr "&Optionen"
  2607. #: flatcamGUI/FlatCAMGUI.py:307
  2608. msgid "&Rotate Selection\tSHIFT+(R)"
  2609. msgstr "&Rotate Selection\tSHIFT+(R)"
  2610. #: flatcamGUI/FlatCAMGUI.py:312
  2611. msgid "&Skew on X axis\tSHIFT+X"
  2612. msgstr "&Skew on X axis\tSHIFT+X"
  2613. #: flatcamGUI/FlatCAMGUI.py:314
  2614. msgid "S&kew on Y axis\tSHIFT+Y"
  2615. msgstr "S&kew on Y axis\tSHIFT+Y"
  2616. #: flatcamGUI/FlatCAMGUI.py:319
  2617. msgid "Flip on &X axis\tX"
  2618. msgstr "Flip on &X axis\tX"
  2619. #: flatcamGUI/FlatCAMGUI.py:321
  2620. msgid "Flip on &Y axis\tY"
  2621. msgstr "Flip on &Y axis\tY"
  2622. #: flatcamGUI/FlatCAMGUI.py:326
  2623. msgid "View source\tALT+S"
  2624. msgstr "View source\tALT+S"
  2625. #: flatcamGUI/FlatCAMGUI.py:331
  2626. msgid "&View"
  2627. msgstr "&Blick"
  2628. #: flatcamGUI/FlatCAMGUI.py:332
  2629. msgid "Enable all plots\tALT+1"
  2630. msgstr "Enable all plots\tALT+1"
  2631. #: flatcamGUI/FlatCAMGUI.py:334
  2632. msgid "Disable all plots\tALT+2"
  2633. msgstr "Disable all plots\tALT+2"
  2634. #: flatcamGUI/FlatCAMGUI.py:336
  2635. msgid "Disable non-selected\tALT+3"
  2636. msgstr "Disable non-selected\tALT+3"
  2637. #: flatcamGUI/FlatCAMGUI.py:339
  2638. msgid "&Zoom Fit\tV"
  2639. msgstr "&Zoom Fit\tV"
  2640. #: flatcamGUI/FlatCAMGUI.py:340
  2641. msgid "&Zoom In\t-"
  2642. msgstr "&Zoom In\t-"
  2643. #: flatcamGUI/FlatCAMGUI.py:341
  2644. msgid "&Zoom Out\t="
  2645. msgstr "&Zoom Out\t="
  2646. #: flatcamGUI/FlatCAMGUI.py:345
  2647. msgid "Toggle Code Editor\tCTRL+E"
  2648. msgstr "Toggle Code Editor\tCTRL+E"
  2649. #: flatcamGUI/FlatCAMGUI.py:348
  2650. msgid "&Toggle FullScreen\tALT+F10"
  2651. msgstr "&Toggle FullScreen\tALT+F10"
  2652. #: flatcamGUI/FlatCAMGUI.py:350
  2653. msgid "&Toggle Plot Area\tCTRL+F10"
  2654. msgstr "&Toggle Plot Area\tCTRL+F10"
  2655. #: flatcamGUI/FlatCAMGUI.py:352
  2656. msgid "&Toggle Project/Sel/Tool\t`"
  2657. msgstr "&Toggle Project/Sel/Tool\t`"
  2658. #: flatcamGUI/FlatCAMGUI.py:355
  2659. msgid "&Toggle Grid Snap\tG"
  2660. msgstr "&Toggle Grid Snap\tG"
  2661. #: flatcamGUI/FlatCAMGUI.py:357
  2662. msgid "&Toggle Axis\tSHIFT+G"
  2663. msgstr "&Toggle Axis\tSHIFT+G"
  2664. #: flatcamGUI/FlatCAMGUI.py:360
  2665. msgid "Toggle Workspace\tSHIFT+W"
  2666. msgstr "Toggle Workspace\tSHIFT+W"
  2667. #: flatcamGUI/FlatCAMGUI.py:364
  2668. msgid "&Tool"
  2669. msgstr "Werkzeug"
  2670. #: flatcamGUI/FlatCAMGUI.py:366
  2671. msgid "&Command Line\tS"
  2672. msgstr "Befehlszeile\tS"
  2673. #: flatcamGUI/FlatCAMGUI.py:369
  2674. msgid "&Help"
  2675. msgstr "&Hilfe"
  2676. #: flatcamGUI/FlatCAMGUI.py:370
  2677. msgid "Help\tF1"
  2678. msgstr "Help\tF1"
  2679. #: flatcamGUI/FlatCAMGUI.py:371
  2680. msgid "FlatCAM.org"
  2681. msgstr "FlatCAM.org"
  2682. #: flatcamGUI/FlatCAMGUI.py:374
  2683. msgid "Shortcuts List\tF3"
  2684. msgstr "Shortcuts List\tF3"
  2685. #: flatcamGUI/FlatCAMGUI.py:375
  2686. msgid "YouTube Channel\tF4"
  2687. msgstr "YouTube Channel\tF4"
  2688. #: flatcamGUI/FlatCAMGUI.py:377
  2689. msgid "About"
  2690. msgstr "About"
  2691. #: flatcamGUI/FlatCAMGUI.py:388
  2692. msgid "Add Circle\tO"
  2693. msgstr "Add Circle\tO"
  2694. #: flatcamGUI/FlatCAMGUI.py:390
  2695. msgid "Add Arc\tA"
  2696. msgstr "Add Arc\tA"
  2697. #: flatcamGUI/FlatCAMGUI.py:393
  2698. msgid "Add Rectangle\tR"
  2699. msgstr "Add Rectangle\tR"
  2700. #: flatcamGUI/FlatCAMGUI.py:396
  2701. msgid "Add Polygon\tN"
  2702. msgstr "Add Polygon\tN"
  2703. #: flatcamGUI/FlatCAMGUI.py:398
  2704. msgid "Add Path\tP"
  2705. msgstr "Add Path\tP"
  2706. #: flatcamGUI/FlatCAMGUI.py:400
  2707. msgid "Add Text\tT"
  2708. msgstr "Add Text\tT"
  2709. #: flatcamGUI/FlatCAMGUI.py:403
  2710. msgid "Polygon Union\tU"
  2711. msgstr "Polygon Union\tU"
  2712. #: flatcamGUI/FlatCAMGUI.py:405
  2713. msgid "Polygon Intersection\tE"
  2714. msgstr "Polygon Intersection\tE"
  2715. #: flatcamGUI/FlatCAMGUI.py:407
  2716. msgid "Polygon Subtraction\tS"
  2717. msgstr "Polygon Subtraction\tS"
  2718. #: flatcamGUI/FlatCAMGUI.py:411
  2719. msgid "Cut Path\tX"
  2720. msgstr "Cut Path\tX"
  2721. #: flatcamGUI/FlatCAMGUI.py:413
  2722. msgid "Copy Geom\tC"
  2723. msgstr "Copy Geom\tC"
  2724. #: flatcamGUI/FlatCAMGUI.py:415
  2725. msgid "Delete Shape\tDEL"
  2726. msgstr "Delete Shape\tDEL"
  2727. #: flatcamGUI/FlatCAMGUI.py:418
  2728. msgid "Move\tM"
  2729. msgstr "Move\tM"
  2730. #: flatcamGUI/FlatCAMGUI.py:420
  2731. msgid "Buffer Tool\tB"
  2732. msgstr "Buffer Tool\tB"
  2733. #: flatcamGUI/FlatCAMGUI.py:423
  2734. msgid "Paint Tool\tI"
  2735. msgstr "Paint Tool\tI"
  2736. #: flatcamGUI/FlatCAMGUI.py:426
  2737. msgid "Transform Tool\tALT+R"
  2738. msgstr "Transform Tool\tALT+R"
  2739. #: flatcamGUI/FlatCAMGUI.py:430
  2740. msgid "Toggle Corner Snap\tK"
  2741. msgstr "Toggle Corner Snap\tK"
  2742. #: flatcamGUI/FlatCAMGUI.py:433
  2743. msgid ">Excellon Editor<"
  2744. msgstr ">Excellon Editor<"
  2745. #: flatcamGUI/FlatCAMGUI.py:437
  2746. msgid "Add Drill Array\tA"
  2747. msgstr "Add Drill Array\tA"
  2748. #: flatcamGUI/FlatCAMGUI.py:439
  2749. msgid "Add Drill\tD"
  2750. msgstr "Add Drill\tD"
  2751. #: flatcamGUI/FlatCAMGUI.py:443
  2752. msgid "Resize Drill(S)\tR"
  2753. msgstr "Resize Drill(S)\tR"
  2754. #: flatcamGUI/FlatCAMGUI.py:445
  2755. msgid "Copy\tC"
  2756. msgstr "Copy\tC"
  2757. #: flatcamGUI/FlatCAMGUI.py:447
  2758. msgid "Delete\tDEL"
  2759. msgstr "Delete\tDEL"
  2760. #: flatcamGUI/FlatCAMGUI.py:452
  2761. msgid "Move Drill(s)\tM"
  2762. msgstr "Move Drill(s)\tM"
  2763. #: flatcamGUI/FlatCAMGUI.py:466
  2764. msgid "Enable Plot"
  2765. msgstr "Enable Plot"
  2766. #: flatcamGUI/FlatCAMGUI.py:467
  2767. msgid "Disable Plot"
  2768. msgstr "Disable Plot"
  2769. #: flatcamGUI/FlatCAMGUI.py:469
  2770. msgid "Generate CNC"
  2771. msgstr "Generate CNC"
  2772. #: flatcamGUI/FlatCAMGUI.py:470
  2773. msgid "View Source"
  2774. msgstr "View Source"
  2775. #: flatcamGUI/FlatCAMGUI.py:472 flatcamGUI/FlatCAMGUI.py:1400
  2776. msgid "Edit"
  2777. msgstr "Bearbeiten"
  2778. #: flatcamGUI/FlatCAMGUI.py:478 flatcamGUI/FlatCAMGUI.py:1406
  2779. #: flatcamTools/ToolProperties.py:25
  2780. msgid "Properties"
  2781. msgstr "Eigenschaften"
  2782. #: flatcamGUI/FlatCAMGUI.py:507
  2783. msgid "File Toolbar"
  2784. msgstr "Dateisymbolleiste"
  2785. #: flatcamGUI/FlatCAMGUI.py:511
  2786. msgid "Edit Toolbar"
  2787. msgstr "Edit Toolbar"
  2788. #: flatcamGUI/FlatCAMGUI.py:515
  2789. msgid "View Toolbar"
  2790. msgstr "View Toolbar"
  2791. #: flatcamGUI/FlatCAMGUI.py:519
  2792. msgid "Shell Toolbar"
  2793. msgstr "Shell Toolbar"
  2794. #: flatcamGUI/FlatCAMGUI.py:523
  2795. msgid "Tools Toolbar"
  2796. msgstr "Tools Toolbar"
  2797. #: flatcamGUI/FlatCAMGUI.py:527
  2798. msgid "Excellon Editor Toolbar"
  2799. msgstr "Excellon Editor Toolbar"
  2800. #: flatcamGUI/FlatCAMGUI.py:531
  2801. msgid "Geometry Editor Toolbar"
  2802. msgstr "Geometry Editor Toolbar"
  2803. #: flatcamGUI/FlatCAMGUI.py:535
  2804. msgid "Grid Toolbar"
  2805. msgstr "Grid Toolbar"
  2806. #: flatcamGUI/FlatCAMGUI.py:554 flatcamGUI/FlatCAMGUI.py:1603
  2807. msgid "Open project"
  2808. msgstr "Offenes Projekt"
  2809. #: flatcamGUI/FlatCAMGUI.py:555 flatcamGUI/FlatCAMGUI.py:1604
  2810. msgid "Save project"
  2811. msgstr "Projekt speichern"
  2812. #: flatcamGUI/FlatCAMGUI.py:558 flatcamGUI/FlatCAMGUI.py:1607
  2813. msgid "New Blank Geometry"
  2814. msgstr "New Blank Geometry"
  2815. #: flatcamGUI/FlatCAMGUI.py:559 flatcamGUI/FlatCAMGUI.py:1608
  2816. msgid "New Blank Excellon"
  2817. msgstr "New Blank Excellon"
  2818. #: flatcamGUI/FlatCAMGUI.py:561 flatcamGUI/FlatCAMGUI.py:1610
  2819. msgid "Editor"
  2820. msgstr "Editor"
  2821. #: flatcamGUI/FlatCAMGUI.py:563 flatcamGUI/FlatCAMGUI.py:1612
  2822. msgid "Save Object and close the Editor"
  2823. msgstr "Save Object and close the Editor"
  2824. #: flatcamGUI/FlatCAMGUI.py:567 flatcamGUI/FlatCAMGUI.py:1616
  2825. msgid "&Delete"
  2826. msgstr "&Löschen"
  2827. #: flatcamGUI/FlatCAMGUI.py:570 flatcamGUI/FlatCAMGUI.py:1619
  2828. msgid "&Replot"
  2829. msgstr "&Replotieren"
  2830. #: flatcamGUI/FlatCAMGUI.py:571 flatcamGUI/FlatCAMGUI.py:1620
  2831. msgid "&Clear plot"
  2832. msgstr "&Plot klar löschen"
  2833. #: flatcamGUI/FlatCAMGUI.py:572 flatcamGUI/FlatCAMGUI.py:1621
  2834. msgid "Zoom In"
  2835. msgstr "Zoom In"
  2836. #: flatcamGUI/FlatCAMGUI.py:573 flatcamGUI/FlatCAMGUI.py:1622
  2837. msgid "Zoom Out"
  2838. msgstr "Zoom Out"
  2839. #: flatcamGUI/FlatCAMGUI.py:574 flatcamGUI/FlatCAMGUI.py:1380
  2840. #: flatcamGUI/FlatCAMGUI.py:1623
  2841. msgid "Zoom Fit"
  2842. msgstr "Zoom Fit"
  2843. #: flatcamGUI/FlatCAMGUI.py:579 flatcamGUI/FlatCAMGUI.py:1628
  2844. msgid "&Command Line"
  2845. msgstr "&Command Line"
  2846. #: flatcamGUI/FlatCAMGUI.py:582 flatcamGUI/FlatCAMGUI.py:1631
  2847. msgid "2Sided Tool"
  2848. msgstr "2Sided Tool"
  2849. #: flatcamGUI/FlatCAMGUI.py:583 flatcamGUI/FlatCAMGUI.py:1632
  2850. msgid "&Cutout Tool"
  2851. msgstr "&Cutout Tool"
  2852. #: flatcamGUI/FlatCAMGUI.py:584 flatcamGUI/FlatCAMGUI.py:1633
  2853. #: flatcamGUI/ObjectUI.py:463 flatcamTools/ToolNonCopperClear.py:283
  2854. msgid "NCC Tool"
  2855. msgstr "NCC Tool"
  2856. #: flatcamGUI/FlatCAMGUI.py:588 flatcamGUI/FlatCAMGUI.py:1637
  2857. msgid "Panel Tool"
  2858. msgstr "Panel Tool"
  2859. #: flatcamGUI/FlatCAMGUI.py:589 flatcamGUI/FlatCAMGUI.py:1638
  2860. #: flatcamTools/ToolFilm.py:204
  2861. msgid "Film Tool"
  2862. msgstr "Film Tool"
  2863. #: flatcamGUI/FlatCAMGUI.py:590 flatcamGUI/FlatCAMGUI.py:1640
  2864. msgid "SolderPaste Tool"
  2865. msgstr "SolderPaste Tool"
  2866. #: flatcamGUI/FlatCAMGUI.py:593 flatcamGUI/FlatCAMGUI.py:1644
  2867. msgid "Calculators Tool"
  2868. msgstr "Calculators Tool"
  2869. #: flatcamGUI/FlatCAMGUI.py:597 flatcamGUI/FlatCAMGUI.py:611
  2870. #: flatcamGUI/FlatCAMGUI.py:1648
  2871. msgid "Select"
  2872. msgstr "Select"
  2873. #: flatcamGUI/FlatCAMGUI.py:598 flatcamGUI/FlatCAMGUI.py:1649
  2874. msgid "Add Drill Hole"
  2875. msgstr "Add Drill Hole"
  2876. #: flatcamGUI/FlatCAMGUI.py:601 flatcamGUI/FlatCAMGUI.py:1652
  2877. msgid "Resize Drill"
  2878. msgstr "Resize Drill"
  2879. #: flatcamGUI/FlatCAMGUI.py:604 flatcamGUI/FlatCAMGUI.py:1655
  2880. msgid "Copy Drill"
  2881. msgstr "Copy Drill"
  2882. #: flatcamGUI/FlatCAMGUI.py:605 flatcamGUI/FlatCAMGUI.py:1657
  2883. msgid "Delete Drill"
  2884. msgstr "Delete Drill"
  2885. #: flatcamGUI/FlatCAMGUI.py:608 flatcamGUI/FlatCAMGUI.py:1660
  2886. msgid "Move Drill"
  2887. msgstr "Move Drill"
  2888. #: flatcamGUI/FlatCAMGUI.py:612 flatcamGUI/FlatCAMGUI.py:1664
  2889. msgid "Add Circle"
  2890. msgstr "Add Circle"
  2891. #: flatcamGUI/FlatCAMGUI.py:613 flatcamGUI/FlatCAMGUI.py:1665
  2892. msgid "Add Arc"
  2893. msgstr "Add Arc"
  2894. #: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1667
  2895. msgid "Add Rectangle"
  2896. msgstr "Add Rectangle"
  2897. #: flatcamGUI/FlatCAMGUI.py:618 flatcamGUI/FlatCAMGUI.py:1670
  2898. msgid "Add Path"
  2899. msgstr "Add Path"
  2900. #: flatcamGUI/FlatCAMGUI.py:619 flatcamGUI/FlatCAMGUI.py:1672
  2901. msgid "Add Polygon"
  2902. msgstr "Add Polygon"
  2903. #: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1674
  2904. msgid "Add Text"
  2905. msgstr "Add Text"
  2906. #: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1676
  2907. msgid "Add Buffer"
  2908. msgstr "Add Buffer"
  2909. #: flatcamGUI/FlatCAMGUI.py:623 flatcamGUI/FlatCAMGUI.py:1677
  2910. msgid "Paint Shape"
  2911. msgstr "Paint Shape"
  2912. #: flatcamGUI/FlatCAMGUI.py:626 flatcamGUI/FlatCAMGUI.py:1680
  2913. msgid "Polygon Union"
  2914. msgstr "Polygon Union"
  2915. #: flatcamGUI/FlatCAMGUI.py:628 flatcamGUI/FlatCAMGUI.py:1682
  2916. msgid "Polygon Intersection"
  2917. msgstr "Polygon Intersection"
  2918. #: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1684
  2919. msgid "Polygon Subtraction"
  2920. msgstr "Polygon Subtraction"
  2921. #: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1687
  2922. msgid "Cut Path"
  2923. msgstr "Cut Path"
  2924. #: flatcamGUI/FlatCAMGUI.py:634
  2925. msgid "Copy Shape(s)"
  2926. msgstr "Copy Shape(s)"
  2927. #: flatcamGUI/FlatCAMGUI.py:637
  2928. msgid "Delete Shape '-'"
  2929. msgstr "Delete Shape '-'"
  2930. #: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1692
  2931. msgid "Transformations"
  2932. msgstr "Transformations"
  2933. #: flatcamGUI/FlatCAMGUI.py:641
  2934. msgid "Move Objects "
  2935. msgstr "Move Objects "
  2936. #: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1701
  2937. msgid "Snap to grid"
  2938. msgstr "Snap to grid"
  2939. #: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1704
  2940. msgid "Grid X snapping distance"
  2941. msgstr "Grid X snapping distance"
  2942. #: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1709
  2943. msgid "Grid Y snapping distance"
  2944. msgstr "Grid Y snapping distance"
  2945. #: flatcamGUI/FlatCAMGUI.py:661 flatcamGUI/FlatCAMGUI.py:1715
  2946. msgid ""
  2947. "When active, value on Grid_X\n"
  2948. "is copied to the Grid_Y value."
  2949. msgstr ""
  2950. "When active, value on Grid_X\n"
  2951. "is copied to the Grid_Y value."
  2952. #: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:1721
  2953. msgid "Snap to corner"
  2954. msgstr "Snap to corner"
  2955. #: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1725
  2956. #: flatcamGUI/FlatCAMGUI.py:2804
  2957. msgid "Max. magnet distance"
  2958. msgstr "Max. magnet distance"
  2959. #: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:1374
  2960. msgid "Project"
  2961. msgstr "Project"
  2962. #: flatcamGUI/FlatCAMGUI.py:694
  2963. msgid "Selected"
  2964. msgstr "Selected"
  2965. #: flatcamGUI/FlatCAMGUI.py:701
  2966. msgid "Tool"
  2967. msgstr "Tool"
  2968. #: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:721
  2969. msgid "Plot Area"
  2970. msgstr "Grundstücksfläche"
  2971. #: flatcamGUI/FlatCAMGUI.py:745
  2972. msgid "General"
  2973. msgstr "General"
  2974. #: flatcamGUI/FlatCAMGUI.py:754
  2975. msgid "APP. DEFAULTS"
  2976. msgstr "APP. DEFAULTS"
  2977. #: flatcamGUI/FlatCAMGUI.py:755
  2978. msgid "PROJ. OPTIONS "
  2979. msgstr "PROJ. OPTIONS "
  2980. #: flatcamGUI/FlatCAMGUI.py:766
  2981. msgid "GERBER"
  2982. msgstr "GERBER"
  2983. #: flatcamGUI/FlatCAMGUI.py:775
  2984. msgid "EXCELLON"
  2985. msgstr "EXCELLON"
  2986. #: flatcamGUI/FlatCAMGUI.py:784
  2987. msgid "GEOMETRY"
  2988. msgstr "GEOMETRY"
  2989. #: flatcamGUI/FlatCAMGUI.py:794
  2990. msgid "CNC-JOB"
  2991. msgstr "CNC-JOB"
  2992. #: flatcamGUI/FlatCAMGUI.py:803
  2993. msgid "TOOLS"
  2994. msgstr "TOOLS"
  2995. #: flatcamGUI/FlatCAMGUI.py:820
  2996. msgid "Import Preferences"
  2997. msgstr "Import Preferences"
  2998. #: flatcamGUI/FlatCAMGUI.py:823
  2999. msgid ""
  3000. "Import a full set of FlatCAM settings from a file\n"
  3001. "previously saved on HDD.\n"
  3002. "\n"
  3003. "FlatCAM automatically save a 'factory_defaults' file\n"
  3004. "on the first start. Do not delete that file."
  3005. msgstr ""
  3006. "Import a full set of FlatCAM settings from a file\n"
  3007. "previously saved on HDD.\n"
  3008. "\n"
  3009. "FlatCAM automatically save a 'factory_defaults' file\n"
  3010. "on the first start. Do not delete that file."
  3011. #: flatcamGUI/FlatCAMGUI.py:830
  3012. msgid "Export Preferences"
  3013. msgstr "Export Preferences"
  3014. #: flatcamGUI/FlatCAMGUI.py:833
  3015. msgid ""
  3016. "Export a full set of FlatCAM settings in a file\n"
  3017. "that is saved on HDD."
  3018. msgstr ""
  3019. "Export a full set of FlatCAM settings in a file\n"
  3020. "that is saved on HDD."
  3021. #: flatcamGUI/FlatCAMGUI.py:838
  3022. msgid "Open Pref Folder"
  3023. msgstr "Open Pref Folder"
  3024. #: flatcamGUI/FlatCAMGUI.py:841
  3025. msgid "Open the folder where FlatCAM save the preferences files."
  3026. msgstr "Open the folder where FlatCAM save the preferences files."
  3027. #: flatcamGUI/FlatCAMGUI.py:849
  3028. msgid "Save Preferences"
  3029. msgstr "Save Preferences"
  3030. #: flatcamGUI/FlatCAMGUI.py:852
  3031. msgid ""
  3032. "Save the current settings in the 'current_defaults' file\n"
  3033. "which is the file storing the working default preferences."
  3034. msgstr ""
  3035. "Save the current settings in the 'current_defaults' file\n"
  3036. "which is the file storing the working default preferences."
  3037. #: flatcamGUI/FlatCAMGUI.py:878
  3038. msgid ""
  3039. "<b>General Shortcut list</b><br>\n"
  3040. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3041. "\"width:283px\">\n"
  3042. " <tbody>\n"
  3043. " <tr height=\"20\">\n"
  3044. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  3045. "td>\n"
  3046. " <td width=\"194\"><span style=\"color:"
  3047. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  3048. " </tr>\n"
  3049. " <tr height=\"20\">\n"
  3050. " <td height=\"20\">&nbsp;</td>\n"
  3051. " <td>&nbsp;</td>\n"
  3052. " </tr>\n"
  3053. " <tr height=\"20\">\n"
  3054. " <td height=\"20\"><strong>1</strong></td>\n"
  3055. " <td>&nbsp;Switch to Project Tab</td>\n"
  3056. " </tr>\n"
  3057. " <tr height=\"20\">\n"
  3058. " <td height=\"20\"><strong>2</strong></td>\n"
  3059. " <td>&nbsp;Switch to Selected Tab</td>\n"
  3060. " </tr>\n"
  3061. " <tr height=\"20\">\n"
  3062. " <td height=\"20\"><strong>3</strong></td>\n"
  3063. " <td>&nbsp;Switch to Tool Tab</td>\n"
  3064. " </tr>\n"
  3065. " <tr height=\"20\">\n"
  3066. " <td height=\"20\">&nbsp;</td>\n"
  3067. " <td>&nbsp;</td>\n"
  3068. " </tr>\n"
  3069. " <tr height=\"20\">\n"
  3070. " <td height=\"20\"><strong>E</strong></td>\n"
  3071. " <td>&nbsp;Edit Object (if selected)</td>\n"
  3072. " </tr>\n"
  3073. " <tr height=\"20\">\n"
  3074. " <td height=\"20\"><strong>G</strong></td>\n"
  3075. " <td>&nbsp;Grid On/Off</td>\n"
  3076. " </tr>\n"
  3077. " <tr height=\"20\">\n"
  3078. " <td height=\"20\"><strong>J</strong></td>\n"
  3079. " <td>&nbsp;Jump to Coordinates</td>\n"
  3080. " </tr>\n"
  3081. " <tr height=\"20\">\n"
  3082. " <td height=\"20\"><strong>L</strong></td>\n"
  3083. " <td>&nbsp;New Excellon</td>\n"
  3084. " </tr>\n"
  3085. " <tr height=\"20\">\n"
  3086. " <td height=\"20\"><strong>M</strong></td>\n"
  3087. " <td>&nbsp;Move Obj</td>\n"
  3088. " </tr>\n"
  3089. " <tr height=\"20\">\n"
  3090. " <td height=\"20\"><strong>N</strong></td>\n"
  3091. " <td>&nbsp;New Geometry</td>\n"
  3092. " </tr>\n"
  3093. " <tr height=\"20\">\n"
  3094. " <td height=\"20\"><strong>O</strong></td>\n"
  3095. " <td>&nbsp;Set Origin</td>\n"
  3096. " </tr>\n"
  3097. " <tr height=\"20\">\n"
  3098. " <td height=\"20\"><strong>Q</strong></td>\n"
  3099. " <td>&nbsp;Change Units</td>\n"
  3100. " </tr>\n"
  3101. " <tr height=\"20\">\n"
  3102. " <td height=\"20\"><strong>P</strong></td>\n"
  3103. " <td>&nbsp;Open Properties Tool</td>\n"
  3104. " </tr>\n"
  3105. " <tr height=\"20\">\n"
  3106. " <td height=\"20\"><strong>R</strong></td>\n"
  3107. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  3108. " </tr>\n"
  3109. " <tr height=\"20\">\n"
  3110. " <td height=\"20\"><strong>S</strong></td>\n"
  3111. " <td>&nbsp;Shell Toggle</td>\n"
  3112. " </tr>\n"
  3113. " <tr height=\"20\">\n"
  3114. " <td height=\"20\"><strong>T</strong></td>\n"
  3115. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  3116. "or in Tools NCC or Tools Paint)</td>\n"
  3117. " </tr>\n"
  3118. " <tr height=\"20\">\n"
  3119. " <td height=\"20\"><strong>V</strong></td>\n"
  3120. " <td>&nbsp;Zoom Fit</td>\n"
  3121. " </tr>\n"
  3122. " <tr height=\"20\">\n"
  3123. " <td height=\"20\"><strong>X</strong></td>\n"
  3124. " <td>&nbsp;Flip on X_axis</td>\n"
  3125. " </tr>\n"
  3126. " <tr height=\"20\">\n"
  3127. " <td height=\"20\"><strong>Y</strong></td>\n"
  3128. " <td>&nbsp;Flip on Y_axis</td>\n"
  3129. " </tr>\n"
  3130. " <tr height=\"20\">\n"
  3131. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  3132. " <td>&nbsp;Zoom Out</td>\n"
  3133. " </tr>\n"
  3134. " <tr height=\"20\">\n"
  3135. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  3136. " <td>&nbsp;Zoom In</td>\n"
  3137. " </tr>\n"
  3138. " <tr height=\"20\">\n"
  3139. " <td height=\"20\">&nbsp;</td>\n"
  3140. " <td>&nbsp;</td>\n"
  3141. " </tr>\n"
  3142. " <tr height=\"20\">\n"
  3143. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  3144. " <td>&nbsp;Select All</td>\n"
  3145. " </tr>\n"
  3146. " <tr height=\"20\">\n"
  3147. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  3148. " <td>&nbsp;Copy Obj</td>\n"
  3149. " </tr>\n"
  3150. " <tr height=\"20\">\n"
  3151. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  3152. " <td>&nbsp;Open Excellon File</td>\n"
  3153. " </tr>\n"
  3154. " <tr height=\"20\">\n"
  3155. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  3156. " <td>&nbsp;Open Gerber File</td>\n"
  3157. " </tr>\n"
  3158. " <tr height=\"20\">\n"
  3159. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  3160. " <td>&nbsp;New Project</td>\n"
  3161. " </tr>\n"
  3162. " <tr height=\"20\">\n"
  3163. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3164. " <td>&nbsp;Measurement Tool</td>\n"
  3165. " </tr>\n"
  3166. " <tr height=\"20\">\n"
  3167. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  3168. " <td>&nbsp;Open Project</td>\n"
  3169. " </tr>\n"
  3170. " <tr height=\"20\">\n"
  3171. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3172. " <td>&nbsp;Save Project As</td>\n"
  3173. " </tr>\n"
  3174. " <tr height=\"20\">\n"
  3175. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  3176. " <td>&nbsp;Toggle Plot Area</td>\n"
  3177. " </tr>\n"
  3178. " <tr height=\"20\">\n"
  3179. " <td height=\"20\">&nbsp;</td>\n"
  3180. " <td>&nbsp;</td>\n"
  3181. " </tr>\n"
  3182. " <tr height=\"20\">\n"
  3183. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  3184. " <td>&nbsp;Copy Obj_Name</td>\n"
  3185. " </tr>\n"
  3186. " <tr height=\"20\">\n"
  3187. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  3188. " <td>&nbsp;Toggle Code Editor</td>\n"
  3189. " </tr>\n"
  3190. " <tr height=\"20\">\n"
  3191. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  3192. " <td>&nbsp;Toggle the axis</td>\n"
  3193. " </tr>\n"
  3194. " <tr height=\"20\">\n"
  3195. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  3196. " <td>&nbsp;Open Preferences Window</td>\n"
  3197. " </tr>\n"
  3198. " <tr height=\"20\">\n"
  3199. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  3200. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  3201. " </tr>\n"
  3202. " <tr height=\"20\">\n"
  3203. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  3204. " <td>&nbsp;Run a Script</td>\n"
  3205. " </tr>\n"
  3206. " <tr height=\"20\">\n"
  3207. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  3208. " <td>&nbsp;Toggle the workspace</td>\n"
  3209. " </tr>\n"
  3210. " <tr height=\"20\">\n"
  3211. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3212. " <td>&nbsp;Skew on X axis</td>\n"
  3213. " </tr>\n"
  3214. " <tr height=\"20\">\n"
  3215. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3216. " <td>&nbsp;Skew on Y axis</td>\n"
  3217. " </tr>\n"
  3218. " <tr height=\"20\">\n"
  3219. " <td height=\"20\">&nbsp;</td>\n"
  3220. " <td>&nbsp;</td>\n"
  3221. " </tr>\n"
  3222. " <tr height=\"20\">\n"
  3223. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  3224. " <td>&nbsp;Calculators Tool</td>\n"
  3225. " </tr>\n"
  3226. " <tr height=\"20\">\n"
  3227. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  3228. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  3229. " </tr>\n"
  3230. " <tr height=\"20\">\n"
  3231. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  3232. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  3233. " </tr>\n"
  3234. " <tr height=\"20\">\n"
  3235. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  3236. " <td>&nbsp;Film PCB Tool</td>\n"
  3237. " </tr>\n"
  3238. " <tr height=\"20\">\n"
  3239. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  3240. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  3241. " </tr>\n"
  3242. " <tr height=\"20\">\n"
  3243. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  3244. " <td>&nbsp;Paint Area Tool</td>\n"
  3245. " </tr>\n"
  3246. " <tr height=\"20\">\n"
  3247. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3248. " <td>&nbsp;Transformations Tool</td>\n"
  3249. " </tr>\n"
  3250. " <tr height=\"20\">\n"
  3251. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  3252. " <td>&nbsp;View File Source</td>\n"
  3253. " </tr>\n"
  3254. " <tr height=\"20\">\n"
  3255. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  3256. " <td>&nbsp;Cutout PCB Tool</td>\n"
  3257. " </tr>\n"
  3258. " <tr height=\"20\">\n"
  3259. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  3260. " <td>&nbsp;Enable all Plots</td>\n"
  3261. " </tr>\n"
  3262. " <tr height=\"20\">\n"
  3263. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  3264. " <td>&nbsp;Disable all Plots</td>\n"
  3265. " </tr>\n"
  3266. " <tr height=\"20\">\n"
  3267. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  3268. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  3269. " </tr>\n"
  3270. " <tr height=\"20\">\n"
  3271. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  3272. " <td>&nbsp;Toggle Full Screen</td>\n"
  3273. " </tr>\n"
  3274. " <tr height=\"20\">\n"
  3275. " <td height=\"20\">&nbsp;</td>\n"
  3276. " <td>&nbsp;</td>\n"
  3277. " </tr>\n"
  3278. " <tr height=\"20\">\n"
  3279. " <td height=\"20\"><strong>F1</strong></td>\n"
  3280. " <td>&nbsp;Open Online Manual</td>\n"
  3281. " </tr>\n"
  3282. " <tr height=\"20\">\n"
  3283. " <td height=\"20\"><strong>F4</strong></td>\n"
  3284. " <td>&nbsp;Open Online Tutorials</td>\n"
  3285. " </tr>\n"
  3286. " <tr height=\"20\">\n"
  3287. " <td height=\"20\"><strong>Del</strong></td>\n"
  3288. " <td>&nbsp;Delete Object</td>\n"
  3289. " </tr>\n"
  3290. " <tr height=\"20\">\n"
  3291. " <td height=\"20\"><strong>Del</strong></td>\n"
  3292. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  3293. " </tr>\n"
  3294. " <tr height=\"20\">\n"
  3295. " <td height=\"20\"><strong>'`'</strong></td>\n"
  3296. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  3297. "Side)</td>\n"
  3298. " </tr>\n"
  3299. " <tr height=\"20\">\n"
  3300. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  3301. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  3302. " </tr>\n"
  3303. " <tr height=\"20\">\n"
  3304. " <td height=\"20\"><strong>Escape</strong></td>\n"
  3305. " <td>&nbsp;Deselects all objects</td>\n"
  3306. " </tr>\n"
  3307. " </tbody>\n"
  3308. " </table>\n"
  3309. " \n"
  3310. " "
  3311. msgstr ""
  3312. "<b>General Shortcut list</b><br>\n"
  3313. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3314. "\"width:283px\">\n"
  3315. " <tbody>\n"
  3316. " <tr height=\"20\">\n"
  3317. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  3318. "td>\n"
  3319. " <td width=\"194\"><span style=\"color:"
  3320. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  3321. " </tr>\n"
  3322. " <tr height=\"20\">\n"
  3323. " <td height=\"20\">&nbsp;</td>\n"
  3324. " <td>&nbsp;</td>\n"
  3325. " </tr>\n"
  3326. " <tr height=\"20\">\n"
  3327. " <td height=\"20\"><strong>1</strong></td>\n"
  3328. " <td>&nbsp;Switch to Project Tab</td>\n"
  3329. " </tr>\n"
  3330. " <tr height=\"20\">\n"
  3331. " <td height=\"20\"><strong>2</strong></td>\n"
  3332. " <td>&nbsp;Switch to Selected Tab</td>\n"
  3333. " </tr>\n"
  3334. " <tr height=\"20\">\n"
  3335. " <td height=\"20\"><strong>3</strong></td>\n"
  3336. " <td>&nbsp;Switch to Tool Tab</td>\n"
  3337. " </tr>\n"
  3338. " <tr height=\"20\">\n"
  3339. " <td height=\"20\">&nbsp;</td>\n"
  3340. " <td>&nbsp;</td>\n"
  3341. " </tr>\n"
  3342. " <tr height=\"20\">\n"
  3343. " <td height=\"20\"><strong>E</strong></td>\n"
  3344. " <td>&nbsp;Edit Object (if selected)</td>\n"
  3345. " </tr>\n"
  3346. " <tr height=\"20\">\n"
  3347. " <td height=\"20\"><strong>G</strong></td>\n"
  3348. " <td>&nbsp;Grid On/Off</td>\n"
  3349. " </tr>\n"
  3350. " <tr height=\"20\">\n"
  3351. " <td height=\"20\"><strong>J</strong></td>\n"
  3352. " <td>&nbsp;Jump to Coordinates</td>\n"
  3353. " </tr>\n"
  3354. " <tr height=\"20\">\n"
  3355. " <td height=\"20\"><strong>L</strong></td>\n"
  3356. " <td>&nbsp;New Excellon</td>\n"
  3357. " </tr>\n"
  3358. " <tr height=\"20\">\n"
  3359. " <td height=\"20\"><strong>M</strong></td>\n"
  3360. " <td>&nbsp;Move Obj</td>\n"
  3361. " </tr>\n"
  3362. " <tr height=\"20\">\n"
  3363. " <td height=\"20\"><strong>N</strong></td>\n"
  3364. " <td>&nbsp;New Geometry</td>\n"
  3365. " </tr>\n"
  3366. " <tr height=\"20\">\n"
  3367. " <td height=\"20\"><strong>O</strong></td>\n"
  3368. " <td>&nbsp;Set Origin</td>\n"
  3369. " </tr>\n"
  3370. " <tr height=\"20\">\n"
  3371. " <td height=\"20\"><strong>Q</strong></td>\n"
  3372. " <td>&nbsp;Change Units</td>\n"
  3373. " </tr>\n"
  3374. " <tr height=\"20\">\n"
  3375. " <td height=\"20\"><strong>P</strong></td>\n"
  3376. " <td>&nbsp;Open Properties Tool</td>\n"
  3377. " </tr>\n"
  3378. " <tr height=\"20\">\n"
  3379. " <td height=\"20\"><strong>R</strong></td>\n"
  3380. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  3381. " </tr>\n"
  3382. " <tr height=\"20\">\n"
  3383. " <td height=\"20\"><strong>S</strong></td>\n"
  3384. " <td>&nbsp;Shell Toggle</td>\n"
  3385. " </tr>\n"
  3386. " <tr height=\"20\">\n"
  3387. " <td height=\"20\"><strong>T</strong></td>\n"
  3388. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  3389. "or in Tools NCC or Tools Paint)</td>\n"
  3390. " </tr>\n"
  3391. " <tr height=\"20\">\n"
  3392. " <td height=\"20\"><strong>V</strong></td>\n"
  3393. " <td>&nbsp;Zoom Fit</td>\n"
  3394. " </tr>\n"
  3395. " <tr height=\"20\">\n"
  3396. " <td height=\"20\"><strong>X</strong></td>\n"
  3397. " <td>&nbsp;Flip on X_axis</td>\n"
  3398. " </tr>\n"
  3399. " <tr height=\"20\">\n"
  3400. " <td height=\"20\"><strong>Y</strong></td>\n"
  3401. " <td>&nbsp;Flip on Y_axis</td>\n"
  3402. " </tr>\n"
  3403. " <tr height=\"20\">\n"
  3404. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  3405. " <td>&nbsp;Zoom Out</td>\n"
  3406. " </tr>\n"
  3407. " <tr height=\"20\">\n"
  3408. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  3409. " <td>&nbsp;Zoom In</td>\n"
  3410. " </tr>\n"
  3411. " <tr height=\"20\">\n"
  3412. " <td height=\"20\">&nbsp;</td>\n"
  3413. " <td>&nbsp;</td>\n"
  3414. " </tr>\n"
  3415. " <tr height=\"20\">\n"
  3416. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  3417. " <td>&nbsp;Select All</td>\n"
  3418. " </tr>\n"
  3419. " <tr height=\"20\">\n"
  3420. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  3421. " <td>&nbsp;Copy Obj</td>\n"
  3422. " </tr>\n"
  3423. " <tr height=\"20\">\n"
  3424. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  3425. " <td>&nbsp;Open Excellon File</td>\n"
  3426. " </tr>\n"
  3427. " <tr height=\"20\">\n"
  3428. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  3429. " <td>&nbsp;Open Gerber File</td>\n"
  3430. " </tr>\n"
  3431. " <tr height=\"20\">\n"
  3432. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  3433. " <td>&nbsp;New Project</td>\n"
  3434. " </tr>\n"
  3435. " <tr height=\"20\">\n"
  3436. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3437. " <td>&nbsp;Measurement Tool</td>\n"
  3438. " </tr>\n"
  3439. " <tr height=\"20\">\n"
  3440. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  3441. " <td>&nbsp;Open Project</td>\n"
  3442. " </tr>\n"
  3443. " <tr height=\"20\">\n"
  3444. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3445. " <td>&nbsp;Save Project As</td>\n"
  3446. " </tr>\n"
  3447. " <tr height=\"20\">\n"
  3448. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  3449. " <td>&nbsp;Toggle Plot Area</td>\n"
  3450. " </tr>\n"
  3451. " <tr height=\"20\">\n"
  3452. " <td height=\"20\">&nbsp;</td>\n"
  3453. " <td>&nbsp;</td>\n"
  3454. " </tr>\n"
  3455. " <tr height=\"20\">\n"
  3456. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  3457. " <td>&nbsp;Copy Obj_Name</td>\n"
  3458. " </tr>\n"
  3459. " <tr height=\"20\">\n"
  3460. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  3461. " <td>&nbsp;Toggle Code Editor</td>\n"
  3462. " </tr>\n"
  3463. " <tr height=\"20\">\n"
  3464. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  3465. " <td>&nbsp;Toggle the axis</td>\n"
  3466. " </tr>\n"
  3467. " <tr height=\"20\">\n"
  3468. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  3469. " <td>&nbsp;Open Preferences Window</td>\n"
  3470. " </tr>\n"
  3471. " <tr height=\"20\">\n"
  3472. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  3473. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  3474. " </tr>\n"
  3475. " <tr height=\"20\">\n"
  3476. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  3477. " <td>&nbsp;Run a Script</td>\n"
  3478. " </tr>\n"
  3479. " <tr height=\"20\">\n"
  3480. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  3481. " <td>&nbsp;Toggle the workspace</td>\n"
  3482. " </tr>\n"
  3483. " <tr height=\"20\">\n"
  3484. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3485. " <td>&nbsp;Skew on X axis</td>\n"
  3486. " </tr>\n"
  3487. " <tr height=\"20\">\n"
  3488. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3489. " <td>&nbsp;Skew on Y axis</td>\n"
  3490. " </tr>\n"
  3491. " <tr height=\"20\">\n"
  3492. " <td height=\"20\">&nbsp;</td>\n"
  3493. " <td>&nbsp;</td>\n"
  3494. " </tr>\n"
  3495. " <tr height=\"20\">\n"
  3496. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  3497. " <td>&nbsp;Calculators Tool</td>\n"
  3498. " </tr>\n"
  3499. " <tr height=\"20\">\n"
  3500. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  3501. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  3502. " </tr>\n"
  3503. " <tr height=\"20\">\n"
  3504. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  3505. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  3506. " </tr>\n"
  3507. " <tr height=\"20\">\n"
  3508. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  3509. " <td>&nbsp;Film PCB Tool</td>\n"
  3510. " </tr>\n"
  3511. " <tr height=\"20\">\n"
  3512. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  3513. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  3514. " </tr>\n"
  3515. " <tr height=\"20\">\n"
  3516. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  3517. " <td>&nbsp;Paint Area Tool</td>\n"
  3518. " </tr>\n"
  3519. " <tr height=\"20\">\n"
  3520. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3521. " <td>&nbsp;Transformations Tool</td>\n"
  3522. " </tr>\n"
  3523. " <tr height=\"20\">\n"
  3524. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  3525. " <td>&nbsp;View File Source</td>\n"
  3526. " </tr>\n"
  3527. " <tr height=\"20\">\n"
  3528. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  3529. " <td>&nbsp;Cutout PCB Tool</td>\n"
  3530. " </tr>\n"
  3531. " <tr height=\"20\">\n"
  3532. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  3533. " <td>&nbsp;Enable all Plots</td>\n"
  3534. " </tr>\n"
  3535. " <tr height=\"20\">\n"
  3536. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  3537. " <td>&nbsp;Disable all Plots</td>\n"
  3538. " </tr>\n"
  3539. " <tr height=\"20\">\n"
  3540. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  3541. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  3542. " </tr>\n"
  3543. " <tr height=\"20\">\n"
  3544. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  3545. " <td>&nbsp;Toggle Full Screen</td>\n"
  3546. " </tr>\n"
  3547. " <tr height=\"20\">\n"
  3548. " <td height=\"20\">&nbsp;</td>\n"
  3549. " <td>&nbsp;</td>\n"
  3550. " </tr>\n"
  3551. " <tr height=\"20\">\n"
  3552. " <td height=\"20\"><strong>F1</strong></td>\n"
  3553. " <td>&nbsp;Open Online Manual</td>\n"
  3554. " </tr>\n"
  3555. " <tr height=\"20\">\n"
  3556. " <td height=\"20\"><strong>F4</strong></td>\n"
  3557. " <td>&nbsp;Open Online Tutorials</td>\n"
  3558. " </tr>\n"
  3559. " <tr height=\"20\">\n"
  3560. " <td height=\"20\"><strong>Del</strong></td>\n"
  3561. " <td>&nbsp;Delete Object</td>\n"
  3562. " </tr>\n"
  3563. " <tr height=\"20\">\n"
  3564. " <td height=\"20\"><strong>Del</strong></td>\n"
  3565. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  3566. " </tr>\n"
  3567. " <tr height=\"20\">\n"
  3568. " <td height=\"20\"><strong>'`'</strong></td>\n"
  3569. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  3570. "Side)</td>\n"
  3571. " </tr>\n"
  3572. " <tr height=\"20\">\n"
  3573. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  3574. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  3575. " </tr>\n"
  3576. " <tr height=\"20\">\n"
  3577. " <td height=\"20\"><strong>Escape</strong></td>\n"
  3578. " <td>&nbsp;Deselects all objects</td>\n"
  3579. " </tr>\n"
  3580. " </tbody>\n"
  3581. " </table>\n"
  3582. " \n"
  3583. " "
  3584. #: flatcamGUI/FlatCAMGUI.py:1155
  3585. msgid ""
  3586. "<b>Editor Shortcut list</b><br>\n"
  3587. " <br>\n"
  3588. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  3589. "strong><br>\n"
  3590. " \n"
  3591. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3592. "\"width:283px\">\n"
  3593. " <tbody>\n"
  3594. " <tr height=\"20\">\n"
  3595. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3596. "td>\n"
  3597. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  3598. " </tr>\n"
  3599. " <tr height=\"20\">\n"
  3600. " <td height=\"20\"><strong>B</strong></td>\n"
  3601. " <td>&nbsp;Buffer Tool</td>\n"
  3602. " </tr>\n"
  3603. " <tr height=\"20\">\n"
  3604. " <td height=\"20\"><strong>C</strong></td>\n"
  3605. " <td>&nbsp;Copy Geo Item</td>\n"
  3606. " </tr>\n"
  3607. " <tr height=\"20\">\n"
  3608. " <td height=\"20\"><strong>E</strong></td>\n"
  3609. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  3610. " </tr>\n"
  3611. " <tr height=\"20\">\n"
  3612. " <td height=\"20\"><strong>I</strong></td>\n"
  3613. " <td>&nbsp;Paint Tool</td>\n"
  3614. " </tr>\n"
  3615. " <tr height=\"20\">\n"
  3616. " <td height=\"20\"><strong>J</strong></td>\n"
  3617. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3618. " </tr>\n"
  3619. " <tr height=\"20\">\n"
  3620. " <td height=\"20\"><strong>K</strong></td>\n"
  3621. " <td>&nbsp;Toggle Corner Snap</td>\n"
  3622. " </tr>\n"
  3623. " <tr height=\"20\">\n"
  3624. " <td height=\"20\"><strong>M</strong></td>\n"
  3625. " <td>&nbsp;Move Geo Item</td>\n"
  3626. " </tr>\n"
  3627. " <tr height=\"20\">\n"
  3628. " <td height=\"20\"><strong>N</strong></td>\n"
  3629. " <td>&nbsp;Draw a Polygon</td>\n"
  3630. " </tr>\n"
  3631. " <tr height=\"20\">\n"
  3632. " <td height=\"20\"><strong>O</strong></td>\n"
  3633. " <td>&nbsp;Draw a Circle</td>\n"
  3634. " </tr>\n"
  3635. " <tr height=\"20\">\n"
  3636. " <td height=\"20\"><strong>P</strong></td>\n"
  3637. " <td>&nbsp;Draw a Path</td>\n"
  3638. " </tr>\n"
  3639. " <tr height=\"20\">\n"
  3640. " <td height=\"20\"><strong>R</strong></td>\n"
  3641. " <td>&nbsp;Draw Rectangle</td>\n"
  3642. " </tr>\n"
  3643. " <tr height=\"20\">\n"
  3644. " <td height=\"20\"><strong>S</strong></td>\n"
  3645. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  3646. " </tr>\n"
  3647. " <tr height=\"20\">\n"
  3648. " <td height=\"20\"><strong>T</strong></td>\n"
  3649. " <td>&nbsp;Add Text Tool</td>\n"
  3650. " </tr>\n"
  3651. " <tr height=\"20\">\n"
  3652. " <td height=\"20\"><strong>U</strong></td>\n"
  3653. " <td>&nbsp;Polygon Union Tool</td>\n"
  3654. " </tr>\n"
  3655. " <tr height=\"20\">\n"
  3656. " <td height=\"20\"><strong>X</strong></td>\n"
  3657. " <td>&nbsp;Flip shape on X axis</td>\n"
  3658. " </tr>\n"
  3659. " <tr height=\"20\">\n"
  3660. " <td height=\"20\"><strong>Y</strong></td>\n"
  3661. " <td>&nbsp;Flip shape on Y axis</td>\n"
  3662. " </tr>\n"
  3663. " <tr height=\"20\">\n"
  3664. " <td height=\"20\">&nbsp;</td>\n"
  3665. " <td>&nbsp;</td>\n"
  3666. " </tr>\n"
  3667. " <tr height=\"20\">\n"
  3668. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3669. " <td>&nbsp;Skew shape on X axis</td>\n"
  3670. " </tr>\n"
  3671. " <tr height=\"20\">\n"
  3672. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3673. " <td>&nbsp;Skew shape on Y axis</td>\n"
  3674. " </tr>\n"
  3675. " <tr height=\"20\">\n"
  3676. " <td height=\"20\">&nbsp;</td>\n"
  3677. " <td>&nbsp;</td>\n"
  3678. " </tr>\n"
  3679. " <tr height=\"20\">\n"
  3680. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3681. " <td>&nbsp;Editor Transformation Tool</td>\n"
  3682. " </tr>\n"
  3683. " <tr height=\"20\">\n"
  3684. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  3685. " <td>&nbsp;Offset shape on X axis</td>\n"
  3686. " </tr>\n"
  3687. " <tr height=\"20\">\n"
  3688. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  3689. " <td>&nbsp;Offset shape on Y axis</td>\n"
  3690. " </tr>\n"
  3691. " <tr height=\"20\">\n"
  3692. " <td height=\"20\">&nbsp;</td>\n"
  3693. " <td>&nbsp;</td>\n"
  3694. " </tr>\n"
  3695. " <tr height=\"20\">\n"
  3696. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3697. " <td>&nbsp;Measurement Tool</td>\n"
  3698. " </tr>\n"
  3699. " <tr height=\"20\">\n"
  3700. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3701. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3702. " </tr>\n"
  3703. " <tr height=\"20\">\n"
  3704. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  3705. " <td>&nbsp;Polygon Cut Tool</td>\n"
  3706. " </tr>\n"
  3707. " <tr height=\"20\">\n"
  3708. " <td height=\"20\">&nbsp;</td>\n"
  3709. " <td>&nbsp;</td>\n"
  3710. " </tr>\n"
  3711. " <tr height=\"20\">\n"
  3712. " <td height=\"20\"><strong>Space</strong></td>\n"
  3713. " <td>&nbsp;Rotate Geometry</td>\n"
  3714. " </tr>\n"
  3715. " <tr height=\"20\">\n"
  3716. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  3717. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  3718. " </tr>\n"
  3719. " <tr height=\"20\">\n"
  3720. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3721. " <td>&nbsp;Abort and return to Select</td>\n"
  3722. " </tr>\n"
  3723. " <tr height=\"20\">\n"
  3724. " <td height=\"20\"><strong>Del</strong></td>\n"
  3725. " <td>&nbsp;Delete Shape</td>\n"
  3726. " </tr>\n"
  3727. " </tbody>\n"
  3728. " </table>\n"
  3729. " <br>\n"
  3730. " <br>\n"
  3731. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  3732. "strong><br>\n"
  3733. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3734. "\"width:283px\">\n"
  3735. " <tbody>\n"
  3736. " <tr height=\"20\">\n"
  3737. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3738. "td>\n"
  3739. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  3740. " </tr>\n"
  3741. " <tr height=\"20\">\n"
  3742. " <td height=\"20\"><strong>C</strong></td>\n"
  3743. " <td>&nbsp;Copy Drill(s)</td>\n"
  3744. " </tr>\n"
  3745. " <tr height=\"20\">\n"
  3746. " <td height=\"20\"><strong>D</strong></td>\n"
  3747. " <td>&nbsp;Add Drill</td>\n"
  3748. " </tr>\n"
  3749. " <tr height=\"20\">\n"
  3750. " <td height=\"20\"><strong>J</strong></td>\n"
  3751. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3752. " </tr>\n"
  3753. " <tr height=\"20\">\n"
  3754. " <td height=\"20\"><strong>M</strong></td>\n"
  3755. " <td>&nbsp;Move Drill(s)</td>\n"
  3756. " </tr>\n"
  3757. " <tr height=\"20\">\n"
  3758. " <td height=\"20\"><strong>R</strong></td>\n"
  3759. " <td>&nbsp;Resize Drill(s)</td>\n"
  3760. " </tr>\n"
  3761. " <tr height=\"20\">\n"
  3762. " <td height=\"20\"><strong>T</strong></td>\n"
  3763. " <td>&nbsp;Add a new Tool</td>\n"
  3764. " </tr>\n"
  3765. " <tr height=\"20\">\n"
  3766. " <td height=\"20\">&nbsp;</td>\n"
  3767. " <td>&nbsp;</td>\n"
  3768. " </tr>\n"
  3769. " <tr height=\"20\">\n"
  3770. " <td height=\"20\"><strong>Del</strong></td>\n"
  3771. " <td>&nbsp;Delete Drill(s)</td>\n"
  3772. " </tr>\n"
  3773. " <tr height=\"20\">\n"
  3774. " <td height=\"20\"><strong>Del</strong></td>\n"
  3775. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  3776. " </tr>\n"
  3777. " <tr height=\"20\">\n"
  3778. " <td height=\"20\">&nbsp;</td>\n"
  3779. " <td>&nbsp;</td>\n"
  3780. " </tr>\n"
  3781. " <tr height=\"20\">\n"
  3782. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3783. " <td>&nbsp;Abort and return to Select</td>\n"
  3784. " </tr>\n"
  3785. " <tr height=\"20\">\n"
  3786. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3787. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3788. " </tr>\n"
  3789. " </tbody>\n"
  3790. " </table>\n"
  3791. " "
  3792. msgstr ""
  3793. "<b>Editor Shortcut list</b><br>\n"
  3794. " <br>\n"
  3795. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  3796. "strong><br>\n"
  3797. " \n"
  3798. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3799. "\"width:283px\">\n"
  3800. " <tbody>\n"
  3801. " <tr height=\"20\">\n"
  3802. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3803. "td>\n"
  3804. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  3805. " </tr>\n"
  3806. " <tr height=\"20\">\n"
  3807. " <td height=\"20\"><strong>B</strong></td>\n"
  3808. " <td>&nbsp;Buffer Tool</td>\n"
  3809. " </tr>\n"
  3810. " <tr height=\"20\">\n"
  3811. " <td height=\"20\"><strong>C</strong></td>\n"
  3812. " <td>&nbsp;Copy Geo Item</td>\n"
  3813. " </tr>\n"
  3814. " <tr height=\"20\">\n"
  3815. " <td height=\"20\"><strong>E</strong></td>\n"
  3816. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  3817. " </tr>\n"
  3818. " <tr height=\"20\">\n"
  3819. " <td height=\"20\"><strong>I</strong></td>\n"
  3820. " <td>&nbsp;Paint Tool</td>\n"
  3821. " </tr>\n"
  3822. " <tr height=\"20\">\n"
  3823. " <td height=\"20\"><strong>J</strong></td>\n"
  3824. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3825. " </tr>\n"
  3826. " <tr height=\"20\">\n"
  3827. " <td height=\"20\"><strong>K</strong></td>\n"
  3828. " <td>&nbsp;Toggle Corner Snap</td>\n"
  3829. " </tr>\n"
  3830. " <tr height=\"20\">\n"
  3831. " <td height=\"20\"><strong>M</strong></td>\n"
  3832. " <td>&nbsp;Move Geo Item</td>\n"
  3833. " </tr>\n"
  3834. " <tr height=\"20\">\n"
  3835. " <td height=\"20\"><strong>N</strong></td>\n"
  3836. " <td>&nbsp;Draw a Polygon</td>\n"
  3837. " </tr>\n"
  3838. " <tr height=\"20\">\n"
  3839. " <td height=\"20\"><strong>O</strong></td>\n"
  3840. " <td>&nbsp;Draw a Circle</td>\n"
  3841. " </tr>\n"
  3842. " <tr height=\"20\">\n"
  3843. " <td height=\"20\"><strong>P</strong></td>\n"
  3844. " <td>&nbsp;Draw a Path</td>\n"
  3845. " </tr>\n"
  3846. " <tr height=\"20\">\n"
  3847. " <td height=\"20\"><strong>R</strong></td>\n"
  3848. " <td>&nbsp;Draw Rectangle</td>\n"
  3849. " </tr>\n"
  3850. " <tr height=\"20\">\n"
  3851. " <td height=\"20\"><strong>S</strong></td>\n"
  3852. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  3853. " </tr>\n"
  3854. " <tr height=\"20\">\n"
  3855. " <td height=\"20\"><strong>T</strong></td>\n"
  3856. " <td>&nbsp;Add Text Tool</td>\n"
  3857. " </tr>\n"
  3858. " <tr height=\"20\">\n"
  3859. " <td height=\"20\"><strong>U</strong></td>\n"
  3860. " <td>&nbsp;Polygon Union Tool</td>\n"
  3861. " </tr>\n"
  3862. " <tr height=\"20\">\n"
  3863. " <td height=\"20\"><strong>X</strong></td>\n"
  3864. " <td>&nbsp;Flip shape on X axis</td>\n"
  3865. " </tr>\n"
  3866. " <tr height=\"20\">\n"
  3867. " <td height=\"20\"><strong>Y</strong></td>\n"
  3868. " <td>&nbsp;Flip shape on Y axis</td>\n"
  3869. " </tr>\n"
  3870. " <tr height=\"20\">\n"
  3871. " <td height=\"20\">&nbsp;</td>\n"
  3872. " <td>&nbsp;</td>\n"
  3873. " </tr>\n"
  3874. " <tr height=\"20\">\n"
  3875. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3876. " <td>&nbsp;Skew shape on X axis</td>\n"
  3877. " </tr>\n"
  3878. " <tr height=\"20\">\n"
  3879. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3880. " <td>&nbsp;Skew shape on Y axis</td>\n"
  3881. " </tr>\n"
  3882. " <tr height=\"20\">\n"
  3883. " <td height=\"20\">&nbsp;</td>\n"
  3884. " <td>&nbsp;</td>\n"
  3885. " </tr>\n"
  3886. " <tr height=\"20\">\n"
  3887. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3888. " <td>&nbsp;Editor Transformation Tool</td>\n"
  3889. " </tr>\n"
  3890. " <tr height=\"20\">\n"
  3891. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  3892. " <td>&nbsp;Offset shape on X axis</td>\n"
  3893. " </tr>\n"
  3894. " <tr height=\"20\">\n"
  3895. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  3896. " <td>&nbsp;Offset shape on Y axis</td>\n"
  3897. " </tr>\n"
  3898. " <tr height=\"20\">\n"
  3899. " <td height=\"20\">&nbsp;</td>\n"
  3900. " <td>&nbsp;</td>\n"
  3901. " </tr>\n"
  3902. " <tr height=\"20\">\n"
  3903. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3904. " <td>&nbsp;Measurement Tool</td>\n"
  3905. " </tr>\n"
  3906. " <tr height=\"20\">\n"
  3907. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3908. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3909. " </tr>\n"
  3910. " <tr height=\"20\">\n"
  3911. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  3912. " <td>&nbsp;Polygon Cut Tool</td>\n"
  3913. " </tr>\n"
  3914. " <tr height=\"20\">\n"
  3915. " <td height=\"20\">&nbsp;</td>\n"
  3916. " <td>&nbsp;</td>\n"
  3917. " </tr>\n"
  3918. " <tr height=\"20\">\n"
  3919. " <td height=\"20\"><strong>Space</strong></td>\n"
  3920. " <td>&nbsp;Rotate Geometry</td>\n"
  3921. " </tr>\n"
  3922. " <tr height=\"20\">\n"
  3923. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  3924. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  3925. " </tr>\n"
  3926. " <tr height=\"20\">\n"
  3927. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3928. " <td>&nbsp;Abort and return to Select</td>\n"
  3929. " </tr>\n"
  3930. " <tr height=\"20\">\n"
  3931. " <td height=\"20\"><strong>Del</strong></td>\n"
  3932. " <td>&nbsp;Delete Shape</td>\n"
  3933. " </tr>\n"
  3934. " </tbody>\n"
  3935. " </table>\n"
  3936. " <br>\n"
  3937. " <br>\n"
  3938. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  3939. "strong><br>\n"
  3940. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3941. "\"width:283px\">\n"
  3942. " <tbody>\n"
  3943. " <tr height=\"20\">\n"
  3944. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3945. "td>\n"
  3946. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  3947. " </tr>\n"
  3948. " <tr height=\"20\">\n"
  3949. " <td height=\"20\"><strong>C</strong></td>\n"
  3950. " <td>&nbsp;Copy Drill(s)</td>\n"
  3951. " </tr>\n"
  3952. " <tr height=\"20\">\n"
  3953. " <td height=\"20\"><strong>D</strong></td>\n"
  3954. " <td>&nbsp;Add Drill</td>\n"
  3955. " </tr>\n"
  3956. " <tr height=\"20\">\n"
  3957. " <td height=\"20\"><strong>J</strong></td>\n"
  3958. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3959. " </tr>\n"
  3960. " <tr height=\"20\">\n"
  3961. " <td height=\"20\"><strong>M</strong></td>\n"
  3962. " <td>&nbsp;Move Drill(s)</td>\n"
  3963. " </tr>\n"
  3964. " <tr height=\"20\">\n"
  3965. " <td height=\"20\"><strong>R</strong></td>\n"
  3966. " <td>&nbsp;Resize Drill(s)</td>\n"
  3967. " </tr>\n"
  3968. " <tr height=\"20\">\n"
  3969. " <td height=\"20\"><strong>T</strong></td>\n"
  3970. " <td>&nbsp;Add a new Tool</td>\n"
  3971. " </tr>\n"
  3972. " <tr height=\"20\">\n"
  3973. " <td height=\"20\">&nbsp;</td>\n"
  3974. " <td>&nbsp;</td>\n"
  3975. " </tr>\n"
  3976. " <tr height=\"20\">\n"
  3977. " <td height=\"20\"><strong>Del</strong></td>\n"
  3978. " <td>&nbsp;Delete Drill(s)</td>\n"
  3979. " </tr>\n"
  3980. " <tr height=\"20\">\n"
  3981. " <td height=\"20\"><strong>Del</strong></td>\n"
  3982. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  3983. " </tr>\n"
  3984. " <tr height=\"20\">\n"
  3985. " <td height=\"20\">&nbsp;</td>\n"
  3986. " <td>&nbsp;</td>\n"
  3987. " </tr>\n"
  3988. " <tr height=\"20\">\n"
  3989. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3990. " <td>&nbsp;Abort and return to Select</td>\n"
  3991. " </tr>\n"
  3992. " <tr height=\"20\">\n"
  3993. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3994. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3995. " </tr>\n"
  3996. " </tbody>\n"
  3997. " </table>\n"
  3998. " "
  3999. #: flatcamGUI/FlatCAMGUI.py:1368
  4000. msgid "Disable"
  4001. msgstr "Disable"
  4002. #: flatcamGUI/FlatCAMGUI.py:1370
  4003. msgid "New"
  4004. msgstr "New"
  4005. #: flatcamGUI/FlatCAMGUI.py:1371
  4006. msgid "Geometry"
  4007. msgstr "Geometry"
  4008. #: flatcamGUI/FlatCAMGUI.py:1372
  4009. msgid "Excellon"
  4010. msgstr "Excellon"
  4011. #: flatcamGUI/FlatCAMGUI.py:1377
  4012. msgid "Grids"
  4013. msgstr "Grids"
  4014. #: flatcamGUI/FlatCAMGUI.py:1379
  4015. msgid "View"
  4016. msgstr "View"
  4017. #: flatcamGUI/FlatCAMGUI.py:1381
  4018. msgid "Clear Plot"
  4019. msgstr "Clear Plot"
  4020. #: flatcamGUI/FlatCAMGUI.py:1382
  4021. msgid "Replot"
  4022. msgstr "Replot"
  4023. #: flatcamGUI/FlatCAMGUI.py:1385
  4024. msgid "Geo Editor"
  4025. msgstr "Geo Editor"
  4026. #: flatcamGUI/FlatCAMGUI.py:1386
  4027. msgid "Line"
  4028. msgstr "Line"
  4029. #: flatcamGUI/FlatCAMGUI.py:1387
  4030. msgid "Rectangle"
  4031. msgstr "Rectangle"
  4032. #: flatcamGUI/FlatCAMGUI.py:1388 flatcamGUI/FlatCAMGUI.py:4607
  4033. #: flatcamGUI/ObjectUI.py:1431
  4034. msgid "Cut"
  4035. msgstr "Cut"
  4036. #: flatcamGUI/FlatCAMGUI.py:1390 flatcamGUI/FlatCAMGUI.py:1405
  4037. #: flatcamTools/ToolMove.py:26
  4038. msgid "Move"
  4039. msgstr "Move"
  4040. #: flatcamGUI/FlatCAMGUI.py:1392
  4041. msgid "Exc Editor"
  4042. msgstr "Exc Editor"
  4043. #: flatcamGUI/FlatCAMGUI.py:1393
  4044. msgid "Add Drill"
  4045. msgstr "Add Drill"
  4046. #: flatcamGUI/FlatCAMGUI.py:1395
  4047. msgid "Copy Drill(s)"
  4048. msgstr "Copy Drill(s)"
  4049. #: flatcamGUI/FlatCAMGUI.py:1401
  4050. msgid "Save && Close Edit"
  4051. msgstr "Save && Close Edit"
  4052. #: flatcamGUI/FlatCAMGUI.py:1426
  4053. msgid "Print Preview"
  4054. msgstr "Print Preview"
  4055. #: flatcamGUI/FlatCAMGUI.py:1427
  4056. msgid "Print Code"
  4057. msgstr "Print Code"
  4058. #: flatcamGUI/FlatCAMGUI.py:1428
  4059. msgid "Find in Code"
  4060. msgstr "Find in Code"
  4061. #: flatcamGUI/FlatCAMGUI.py:1433
  4062. msgid "Replace With"
  4063. msgstr "Replace With"
  4064. #: flatcamGUI/FlatCAMGUI.py:1437 flatcamGUI/FlatCAMGUI.py:4605
  4065. #: flatcamGUI/FlatCAMGUI.py:5106 flatcamGUI/ObjectUI.py:1429
  4066. msgid "All"
  4067. msgstr "All"
  4068. #: flatcamGUI/FlatCAMGUI.py:1439
  4069. msgid ""
  4070. "When checked it will replace all instances in the 'Find' box\n"
  4071. "with the text in the 'Replace' box.."
  4072. msgstr ""
  4073. "When checked it will replace all instances in the 'Find' box\n"
  4074. "with the text in the 'Replace' box.."
  4075. #: flatcamGUI/FlatCAMGUI.py:1442
  4076. msgid "Open Code"
  4077. msgstr "Open Code"
  4078. #: flatcamGUI/FlatCAMGUI.py:1443
  4079. msgid "Save Code"
  4080. msgstr "Save Code"
  4081. #: flatcamGUI/FlatCAMGUI.py:1478
  4082. msgid ""
  4083. "Relative neasurement.\n"
  4084. "Reference is last click position"
  4085. msgstr ""
  4086. "Relative neasurement.\n"
  4087. "Reference is last click position"
  4088. #: flatcamGUI/FlatCAMGUI.py:1484
  4089. msgid ""
  4090. "Absolute neasurement.\n"
  4091. "Reference is (X=0, Y= 0) position"
  4092. msgstr ""
  4093. "Absolute neasurement.\n"
  4094. "Reference is (X=0, Y= 0) position"
  4095. #: flatcamGUI/FlatCAMGUI.py:1651
  4096. msgid "Add Drill Hole Array"
  4097. msgstr "Add Drill Hole Array"
  4098. #: flatcamGUI/FlatCAMGUI.py:1663
  4099. msgid "Select 'Esc'"
  4100. msgstr "Select 'Esc'"
  4101. #: flatcamGUI/FlatCAMGUI.py:1688
  4102. msgid "Copy Objects"
  4103. msgstr "Copy Objects"
  4104. #: flatcamGUI/FlatCAMGUI.py:1690
  4105. msgid "Delete Shape"
  4106. msgstr "Delete Shape"
  4107. #: flatcamGUI/FlatCAMGUI.py:1695
  4108. msgid "Move Objects"
  4109. msgstr "Move Objects"
  4110. #: flatcamGUI/FlatCAMGUI.py:2077
  4111. msgid ""
  4112. "Please first select a geometry item to be cutted\n"
  4113. "then select the geometry item that will be cutted\n"
  4114. "out of the first item. In the end press ~X~ key or\n"
  4115. "the toolbar button."
  4116. msgstr ""
  4117. "Please first select a geometry item to be cutted\n"
  4118. "then select the geometry item that will be cutted\n"
  4119. "out of the first item. In the end press ~X~ key or\n"
  4120. "the toolbar button."
  4121. #: flatcamGUI/FlatCAMGUI.py:2084 flatcamGUI/FlatCAMGUI.py:2216
  4122. #: flatcamGUI/FlatCAMGUI.py:2275 flatcamGUI/FlatCAMGUI.py:2295
  4123. msgid "Warning"
  4124. msgstr "Warning"
  4125. #: flatcamGUI/FlatCAMGUI.py:2151 flatcamGUI/FlatCAMGUI.py:2345
  4126. msgid "[WARNING_NOTCL]Cancelled."
  4127. msgstr "[WARNING_NOTCL]Cancelled."
  4128. #: flatcamGUI/FlatCAMGUI.py:2211
  4129. msgid ""
  4130. "Please select geometry items \n"
  4131. "on which to perform Intersection Tool."
  4132. msgstr ""
  4133. "Please select geometry items \n"
  4134. "on which to perform Intersection Tool."
  4135. #: flatcamGUI/FlatCAMGUI.py:2270
  4136. msgid ""
  4137. "Please select geometry items \n"
  4138. "on which to perform Substraction Tool."
  4139. msgstr ""
  4140. "Please select geometry items \n"
  4141. "on which to perform Substraction Tool."
  4142. #: flatcamGUI/FlatCAMGUI.py:2290
  4143. msgid ""
  4144. "Please select geometry items \n"
  4145. "on which to perform union."
  4146. msgstr ""
  4147. "Please select geometry items \n"
  4148. "on which to perform union."
  4149. #: flatcamGUI/FlatCAMGUI.py:2362
  4150. msgid "[WARNING_NOTCL]Cancelled. Nothing selected to delete."
  4151. msgstr "[WARNING_NOTCL]Cancelled. Nothing selected to delete."
  4152. #: flatcamGUI/FlatCAMGUI.py:2429
  4153. msgid "[WARNING_NOTCL]Cancelled. Nothing selected to copy."
  4154. msgstr "[WARNING_NOTCL]Cancelled. Nothing selected to copy."
  4155. #: flatcamGUI/FlatCAMGUI.py:2475
  4156. msgid "[WARNING_NOTCL]Cancelled. Nothing selected to move."
  4157. msgstr "[WARNING_NOTCL]Cancelled. Nothing selected to move."
  4158. #: flatcamGUI/FlatCAMGUI.py:2489
  4159. msgid "New Tool ..."
  4160. msgstr "New Tool ..."
  4161. #: flatcamGUI/FlatCAMGUI.py:2490
  4162. msgid "Enter a Tool Diameter:"
  4163. msgstr "Enter a Tool Diameter:"
  4164. #: flatcamGUI/FlatCAMGUI.py:2789
  4165. msgid "Grid X value:"
  4166. msgstr "Grid X value:"
  4167. #: flatcamGUI/FlatCAMGUI.py:2791
  4168. msgid "This is the Grid snap value on X axis."
  4169. msgstr "This is the Grid snap value on X axis."
  4170. #: flatcamGUI/FlatCAMGUI.py:2796
  4171. msgid "Grid Y value:"
  4172. msgstr "Grid Y value:"
  4173. #: flatcamGUI/FlatCAMGUI.py:2798
  4174. msgid "This is the Grid snap value on Y axis."
  4175. msgstr "This is the Grid snap value on Y axis."
  4176. #: flatcamGUI/FlatCAMGUI.py:2803
  4177. msgid "Snap Max:"
  4178. msgstr "Snap Max:"
  4179. #: flatcamGUI/FlatCAMGUI.py:2808
  4180. msgid "Workspace:"
  4181. msgstr "Workspace:"
  4182. #: flatcamGUI/FlatCAMGUI.py:2810
  4183. msgid ""
  4184. "Draw a delimiting rectangle on canvas.\n"
  4185. "The purpose is to illustrate the limits for our work."
  4186. msgstr ""
  4187. "Draw a delimiting rectangle on canvas.\n"
  4188. "The purpose is to illustrate the limits for our work."
  4189. #: flatcamGUI/FlatCAMGUI.py:2813
  4190. msgid "Wk. format:"
  4191. msgstr "Wk. format:"
  4192. #: flatcamGUI/FlatCAMGUI.py:2815
  4193. msgid ""
  4194. "Select the type of rectangle to be used on canvas,\n"
  4195. "as valid workspace."
  4196. msgstr ""
  4197. "Select the type of rectangle to be used on canvas,\n"
  4198. "as valid workspace."
  4199. #: flatcamGUI/FlatCAMGUI.py:2828
  4200. msgid "Plot Fill:"
  4201. msgstr "Plot Fill:"
  4202. #: flatcamGUI/FlatCAMGUI.py:2830
  4203. msgid ""
  4204. "Set the fill color for plotted objects.\n"
  4205. "First 6 digits are the color and the last 2\n"
  4206. "digits are for alpha (transparency) level."
  4207. msgstr ""
  4208. "Set the fill color for plotted objects.\n"
  4209. "First 6 digits are the color and the last 2\n"
  4210. "digits are for alpha (transparency) level."
  4211. #: flatcamGUI/FlatCAMGUI.py:2844 flatcamGUI/FlatCAMGUI.py:2894
  4212. #: flatcamGUI/FlatCAMGUI.py:2944
  4213. msgid "Alpha Level:"
  4214. msgstr "Alpha Level:"
  4215. #: flatcamGUI/FlatCAMGUI.py:2846
  4216. msgid "Set the fill transparency for plotted objects."
  4217. msgstr "Set the fill transparency for plotted objects."
  4218. #: flatcamGUI/FlatCAMGUI.py:2863
  4219. msgid "Plot Line:"
  4220. msgstr "Plot Line:"
  4221. #: flatcamGUI/FlatCAMGUI.py:2865
  4222. msgid "Set the line color for plotted objects."
  4223. msgstr "Set the line color for plotted objects."
  4224. #: flatcamGUI/FlatCAMGUI.py:2877
  4225. msgid "Sel. Fill:"
  4226. msgstr "Sel. Fill:"
  4227. #: flatcamGUI/FlatCAMGUI.py:2879
  4228. msgid ""
  4229. "Set the fill color for the selection box\n"
  4230. "in case that the selection is done from left to right.\n"
  4231. "First 6 digits are the color and the last 2\n"
  4232. "digits are for alpha (transparency) level."
  4233. msgstr ""
  4234. "Set the fill color for the selection box\n"
  4235. "in case that the selection is done from left to right.\n"
  4236. "First 6 digits are the color and the last 2\n"
  4237. "digits are for alpha (transparency) level."
  4238. #: flatcamGUI/FlatCAMGUI.py:2896
  4239. msgid "Set the fill transparency for the 'left to right' selection box."
  4240. msgstr "Set the fill transparency for the 'left to right' selection box."
  4241. #: flatcamGUI/FlatCAMGUI.py:2913
  4242. msgid "Sel. Line:"
  4243. msgstr "Sel. Line:"
  4244. #: flatcamGUI/FlatCAMGUI.py:2915
  4245. msgid "Set the line color for the 'left to right' selection box."
  4246. msgstr "Set the line color for the 'left to right' selection box."
  4247. #: flatcamGUI/FlatCAMGUI.py:2927
  4248. msgid "Sel2. Fill:"
  4249. msgstr "Sel2. Fill:"
  4250. #: flatcamGUI/FlatCAMGUI.py:2929
  4251. msgid ""
  4252. "Set the fill color for the selection box\n"
  4253. "in case that the selection is done from right to left.\n"
  4254. "First 6 digits are the color and the last 2\n"
  4255. "digits are for alpha (transparency) level."
  4256. msgstr ""
  4257. "Set the fill color for the selection box\n"
  4258. "in case that the selection is done from right to left.\n"
  4259. "First 6 digits are the color and the last 2\n"
  4260. "digits are for alpha (transparency) level."
  4261. #: flatcamGUI/FlatCAMGUI.py:2946
  4262. msgid "Set the fill transparency for selection 'right to left' box."
  4263. msgstr "Set the fill transparency for selection 'right to left' box."
  4264. #: flatcamGUI/FlatCAMGUI.py:2963
  4265. msgid "Sel2. Line:"
  4266. msgstr "Sel2. Line:"
  4267. #: flatcamGUI/FlatCAMGUI.py:2965
  4268. msgid "Set the line color for the 'right to left' selection box."
  4269. msgstr "Set the line color for the 'right to left' selection box."
  4270. #: flatcamGUI/FlatCAMGUI.py:2977
  4271. msgid "Editor Draw:"
  4272. msgstr "Editor Draw:"
  4273. #: flatcamGUI/FlatCAMGUI.py:2979
  4274. msgid "Set the color for the shape."
  4275. msgstr "Set the color for the shape."
  4276. #: flatcamGUI/FlatCAMGUI.py:2991
  4277. msgid "Editor Draw Sel.:"
  4278. msgstr "Editor Draw Sel.:"
  4279. #: flatcamGUI/FlatCAMGUI.py:2993
  4280. msgid "Set the color of the shape when selected."
  4281. msgstr "Set the color of the shape when selected."
  4282. #: flatcamGUI/FlatCAMGUI.py:3040
  4283. msgid "GUI Settings"
  4284. msgstr "GUI Settings"
  4285. #: flatcamGUI/FlatCAMGUI.py:3047
  4286. msgid "Layout:"
  4287. msgstr "Layout:"
  4288. #: flatcamGUI/FlatCAMGUI.py:3049
  4289. msgid ""
  4290. "Select an layout for FlatCAM.\n"
  4291. "It is applied immediately."
  4292. msgstr ""
  4293. "Select an layout for FlatCAM.\n"
  4294. "It is applied immediately."
  4295. #: flatcamGUI/FlatCAMGUI.py:3065
  4296. msgid "Style:"
  4297. msgstr "Style:"
  4298. #: flatcamGUI/FlatCAMGUI.py:3067
  4299. msgid ""
  4300. "Select an style for FlatCAM.\n"
  4301. "It will be applied at the next app start."
  4302. msgstr ""
  4303. "Select an style for FlatCAM.\n"
  4304. "It will be applied at the next app start."
  4305. #: flatcamGUI/FlatCAMGUI.py:3078
  4306. msgid "HDPI Support:"
  4307. msgstr "HDPI Support:"
  4308. #: flatcamGUI/FlatCAMGUI.py:3080
  4309. msgid ""
  4310. "Enable High DPI support for FlatCAM.\n"
  4311. "It will be applied at the next app start."
  4312. msgstr ""
  4313. "Enable High DPI support for FlatCAM.\n"
  4314. "It will be applied at the next app start."
  4315. #: flatcamGUI/FlatCAMGUI.py:3093
  4316. msgid "Clear GUI Settings:"
  4317. msgstr "Clear GUI Settings:"
  4318. #: flatcamGUI/FlatCAMGUI.py:3095
  4319. msgid ""
  4320. "Clear the GUI settings for FlatCAM,\n"
  4321. "such as: layout, gui state, style, hdpi support etc."
  4322. msgstr ""
  4323. "Clear the GUI settings for FlatCAM,\n"
  4324. "such as: layout, gui state, style, hdpi support etc."
  4325. #: flatcamGUI/FlatCAMGUI.py:3098
  4326. msgid "Clear"
  4327. msgstr "Clear"
  4328. #: flatcamGUI/FlatCAMGUI.py:3102
  4329. msgid "Hover Shape:"
  4330. msgstr "Hover Shape:"
  4331. #: flatcamGUI/FlatCAMGUI.py:3104
  4332. msgid ""
  4333. "Enable display of a hover shape for FlatCAM objects.\n"
  4334. "It is displayed whenever the mouse cursor is hovering\n"
  4335. "over any kind of not-selected object."
  4336. msgstr ""
  4337. "Enable display of a hover shape for FlatCAM objects.\n"
  4338. "It is displayed whenever the mouse cursor is hovering\n"
  4339. "over any kind of not-selected object."
  4340. #: flatcamGUI/FlatCAMGUI.py:3145
  4341. msgid "Are you sure you want to delete the GUI Settings? \n"
  4342. msgstr "Are you sure you want to delete the GUI Settings? \n"
  4343. #: flatcamGUI/FlatCAMGUI.py:3148
  4344. msgid "Clear GUI Settings"
  4345. msgstr "Clear GUI Settings"
  4346. #: flatcamGUI/FlatCAMGUI.py:3161
  4347. msgid "[success] GUI settings deleted ..."
  4348. msgstr "[success] GUI settings deleted ..."
  4349. #: flatcamGUI/FlatCAMGUI.py:3168
  4350. msgid "App Preferences"
  4351. msgstr "App Preferences"
  4352. #: flatcamGUI/FlatCAMGUI.py:3174
  4353. msgid "<b>Units:</b>"
  4354. msgstr "<b>Units:</b>"
  4355. #: flatcamGUI/FlatCAMGUI.py:3175
  4356. msgid ""
  4357. "The default value for FlatCAM units.\n"
  4358. "Whatever is selected here is set every time\n"
  4359. "FLatCAM is started."
  4360. msgstr ""
  4361. "The default value for FlatCAM units.\n"
  4362. "Whatever is selected here is set every time\n"
  4363. "FLatCAM is started."
  4364. #: flatcamGUI/FlatCAMGUI.py:3182
  4365. msgid "<b>APP. LEVEL:</b>"
  4366. msgstr "<b>APP. LEVEL:</b>"
  4367. #: flatcamGUI/FlatCAMGUI.py:3183
  4368. msgid ""
  4369. "Choose the default level of usage for FlatCAM.\n"
  4370. "BASIC level -> reduced functionality, best for beginner's.\n"
  4371. "ADVANCED level -> full functionality.\n"
  4372. "\n"
  4373. "The choice here will influence the parameters in\n"
  4374. "the Selected Tab for all kinds of FlatCAM objects."
  4375. msgstr ""
  4376. "Choose the default level of usage for FlatCAM.\n"
  4377. "BASIC level -> reduced functionality, best for beginner's.\n"
  4378. "ADVANCED level -> full functionality.\n"
  4379. "\n"
  4380. "The choice here will influence the parameters in\n"
  4381. "the Selected Tab for all kinds of FlatCAM objects."
  4382. #: flatcamGUI/FlatCAMGUI.py:3188 flatcamGUI/FlatCAMGUI.py:3792
  4383. msgid "Basic"
  4384. msgstr "Basic"
  4385. #: flatcamGUI/FlatCAMGUI.py:3189
  4386. msgid "Advanced"
  4387. msgstr "Advanced"
  4388. #: flatcamGUI/FlatCAMGUI.py:3192
  4389. msgid "<b>Languages:</b>"
  4390. msgstr "<b>Languages:</b>"
  4391. #: flatcamGUI/FlatCAMGUI.py:3193
  4392. msgid "Set the language used throughout FlatCAM."
  4393. msgstr "Set the language used throughout FlatCAM."
  4394. #: flatcamGUI/FlatCAMGUI.py:3196
  4395. msgid "Apply Language"
  4396. msgstr "Apply Language"
  4397. #: flatcamGUI/FlatCAMGUI.py:3199
  4398. msgid "Shell at StartUp:"
  4399. msgstr "Shell at StartUp:"
  4400. #: flatcamGUI/FlatCAMGUI.py:3201 flatcamGUI/FlatCAMGUI.py:3206
  4401. msgid ""
  4402. "Check this box if you want the shell to\n"
  4403. "start automatically at startup."
  4404. msgstr ""
  4405. "Check this box if you want the shell to\n"
  4406. "start automatically at startup."
  4407. #: flatcamGUI/FlatCAMGUI.py:3211
  4408. msgid "Version Check:"
  4409. msgstr "Version Check:"
  4410. #: flatcamGUI/FlatCAMGUI.py:3213 flatcamGUI/FlatCAMGUI.py:3218
  4411. msgid ""
  4412. "Check this box if you want to check\n"
  4413. "for a new version automatically at startup."
  4414. msgstr ""
  4415. "Check this box if you want to check\n"
  4416. "for a new version automatically at startup."
  4417. #: flatcamGUI/FlatCAMGUI.py:3223
  4418. msgid "Send Stats:"
  4419. msgstr "Send Stats:"
  4420. #: flatcamGUI/FlatCAMGUI.py:3225 flatcamGUI/FlatCAMGUI.py:3230
  4421. msgid ""
  4422. "Check this box if you agree to send anonymous\n"
  4423. "stats automatically at startup, to help improve FlatCAM."
  4424. msgstr ""
  4425. "Check this box if you agree to send anonymous\n"
  4426. "stats automatically at startup, to help improve FlatCAM."
  4427. #: flatcamGUI/FlatCAMGUI.py:3237
  4428. msgid "<b>Pan Button:</b>"
  4429. msgstr "<b>Pan Button:</b>"
  4430. #: flatcamGUI/FlatCAMGUI.py:3238
  4431. msgid ""
  4432. "Select the mouse button to use for panning:\n"
  4433. "- MMB --> Middle Mouse Button\n"
  4434. "- RMB --> Right Mouse Button"
  4435. msgstr ""
  4436. "Select the mouse button to use for panning:\n"
  4437. "- MMB --> Middle Mouse Button\n"
  4438. "- RMB --> Right Mouse Button"
  4439. #: flatcamGUI/FlatCAMGUI.py:3241
  4440. msgid "MMB"
  4441. msgstr "MMB"
  4442. #: flatcamGUI/FlatCAMGUI.py:3242
  4443. msgid "RMB"
  4444. msgstr "RMB"
  4445. #: flatcamGUI/FlatCAMGUI.py:3245
  4446. msgid "<b>Multiple Sel:</b>"
  4447. msgstr "<b>Multiple Sel:</b>"
  4448. #: flatcamGUI/FlatCAMGUI.py:3246
  4449. msgid "Select the key used for multiple selection."
  4450. msgstr "Select the key used for multiple selection."
  4451. #: flatcamGUI/FlatCAMGUI.py:3247
  4452. msgid "CTRL"
  4453. msgstr "CTRL"
  4454. #: flatcamGUI/FlatCAMGUI.py:3248
  4455. msgid "SHIFT"
  4456. msgstr "SHIFT"
  4457. #: flatcamGUI/FlatCAMGUI.py:3251
  4458. msgid "Project at StartUp:"
  4459. msgstr "Project at StartUp:"
  4460. #: flatcamGUI/FlatCAMGUI.py:3253 flatcamGUI/FlatCAMGUI.py:3258
  4461. msgid ""
  4462. "Check this box if you want the project/selected/tool tab area to\n"
  4463. "to be shown automatically at startup."
  4464. msgstr ""
  4465. "Check this box if you want the project/selected/tool tab area to\n"
  4466. "to be shown automatically at startup."
  4467. #: flatcamGUI/FlatCAMGUI.py:3263
  4468. msgid "Project AutoHide:"
  4469. msgstr "Project AutoHide:"
  4470. #: flatcamGUI/FlatCAMGUI.py:3265 flatcamGUI/FlatCAMGUI.py:3271
  4471. msgid ""
  4472. "Check this box if you want the project/selected/tool tab area to\n"
  4473. "hide automatically when there are no objects loaded and\n"
  4474. "to show whenever a new object is created."
  4475. msgstr ""
  4476. "Check this box if you want the project/selected/tool tab area to\n"
  4477. "hide automatically when there are no objects loaded and\n"
  4478. "to show whenever a new object is created."
  4479. #: flatcamGUI/FlatCAMGUI.py:3277
  4480. msgid "<b>Enable ToolTips:</b>"
  4481. msgstr "<b>Enable ToolTips:</b>"
  4482. #: flatcamGUI/FlatCAMGUI.py:3279 flatcamGUI/FlatCAMGUI.py:3284
  4483. msgid ""
  4484. "Check this box if you want to have toolTips displayed\n"
  4485. "when hovering with mouse over items throughout the App."
  4486. msgstr ""
  4487. "Check this box if you want to have toolTips displayed\n"
  4488. "when hovering with mouse over items throughout the App."
  4489. #: flatcamGUI/FlatCAMGUI.py:3318
  4490. msgid "Save Compressed Project"
  4491. msgstr "Save Compressed Project"
  4492. #: flatcamGUI/FlatCAMGUI.py:3320
  4493. msgid ""
  4494. "Whether to save a compressed or uncompressed project.\n"
  4495. "When checked it will save a compressed FlatCAM project."
  4496. msgstr ""
  4497. "Whether to save a compressed or uncompressed project.\n"
  4498. "When checked it will save a compressed FlatCAM project."
  4499. #: flatcamGUI/FlatCAMGUI.py:3331
  4500. msgid "Compression Level:"
  4501. msgstr "Compression Level:"
  4502. #: flatcamGUI/FlatCAMGUI.py:3333
  4503. msgid ""
  4504. "The level of compression used when saving\n"
  4505. "a FlatCAM project. Higher value means better compression\n"
  4506. "but require more RAM usage and more processing time."
  4507. msgstr ""
  4508. "The level of compression used when saving\n"
  4509. "a FlatCAM project. Higher value means better compression\n"
  4510. "but require more RAM usage and more processing time."
  4511. #: flatcamGUI/FlatCAMGUI.py:3359 flatcamGUI/FlatCAMGUI.py:3600
  4512. #: flatcamGUI/FlatCAMGUI.py:4255 flatcamGUI/FlatCAMGUI.py:4579
  4513. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:576
  4514. #: flatcamGUI/ObjectUI.py:901 flatcamGUI/ObjectUI.py:1415
  4515. msgid "<b>Plot Options:</b>"
  4516. msgstr "<b>Plot Options:</b>"
  4517. #: flatcamGUI/FlatCAMGUI.py:3366 flatcamGUI/FlatCAMGUI.py:3612
  4518. #: flatcamGUI/ObjectUI.py:577
  4519. msgid "Solid"
  4520. msgstr "Solid"
  4521. #: flatcamGUI/FlatCAMGUI.py:3368 flatcamGUI/ObjectUI.py:158
  4522. msgid "Solid color polygons."
  4523. msgstr "Solid color polygons."
  4524. #: flatcamGUI/FlatCAMGUI.py:3373
  4525. msgid "M-Color"
  4526. msgstr "M-Color"
  4527. #: flatcamGUI/FlatCAMGUI.py:3375 flatcamGUI/ObjectUI.py:166
  4528. msgid "Draw polygons in different colors."
  4529. msgstr "Draw polygons in different colors."
  4530. #: flatcamGUI/FlatCAMGUI.py:3380 flatcamGUI/FlatCAMGUI.py:3606
  4531. #: flatcamGUI/FlatCAMGUI.py:4259 flatcamGUI/ObjectUI.py:172
  4532. msgid "Plot"
  4533. msgstr "Plot"
  4534. #: flatcamGUI/FlatCAMGUI.py:3382 flatcamGUI/FlatCAMGUI.py:4261
  4535. #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:617
  4536. #: flatcamGUI/ObjectUI.py:947 flatcamGUI/ObjectUI.py:1502
  4537. msgid "Plot (show) this object."
  4538. msgstr "Plot (show) this object."
  4539. #: flatcamGUI/FlatCAMGUI.py:3387 flatcamGUI/FlatCAMGUI.py:4268
  4540. #: flatcamGUI/FlatCAMGUI.py:4615
  4541. msgid "Circle Steps:"
  4542. msgstr "Circle Steps:"
  4543. #: flatcamGUI/FlatCAMGUI.py:3389
  4544. msgid ""
  4545. "The number of circle steps for Gerber \n"
  4546. "circular aperture linear approximation."
  4547. msgstr ""
  4548. "The number of circle steps for Gerber \n"
  4549. "circular aperture linear approximation."
  4550. #: flatcamGUI/FlatCAMGUI.py:3404
  4551. msgid "Gerber Options"
  4552. msgstr "Gerber Options"
  4553. #: flatcamGUI/FlatCAMGUI.py:3408 flatcamGUI/ObjectUI.py:322
  4554. msgid "<b>Isolation Routing:</b>"
  4555. msgstr "<b>Isolation Routing:</b>"
  4556. #: flatcamGUI/FlatCAMGUI.py:3410 flatcamGUI/ObjectUI.py:324
  4557. msgid ""
  4558. "Create a Geometry object with\n"
  4559. "toolpaths to cut outside polygons."
  4560. msgstr ""
  4561. "Create a Geometry object with\n"
  4562. "toolpaths to cut outside polygons."
  4563. #: flatcamGUI/FlatCAMGUI.py:3421 flatcamGUI/FlatCAMGUI.py:3978
  4564. #: flatcamGUI/FlatCAMGUI.py:4903 flatcamGUI/ObjectUI.py:856
  4565. #: flatcamGUI/ObjectUI.py:872
  4566. msgid "Diameter of the cutting tool."
  4567. msgstr "Diameter of the cutting tool."
  4568. #: flatcamGUI/FlatCAMGUI.py:3428
  4569. msgid "Width (# passes):"
  4570. msgstr "Width (# passes):"
  4571. #: flatcamGUI/FlatCAMGUI.py:3430 flatcamGUI/ObjectUI.py:346
  4572. msgid ""
  4573. "Width of the isolation gap in\n"
  4574. "number (integer) of tool widths."
  4575. msgstr ""
  4576. "Width of the isolation gap in\n"
  4577. "number (integer) of tool widths."
  4578. #: flatcamGUI/FlatCAMGUI.py:3438 flatcamGUI/ObjectUI.py:354
  4579. msgid "Pass overlap:"
  4580. msgstr "Pass overlap:"
  4581. #: flatcamGUI/FlatCAMGUI.py:3440 flatcamGUI/ObjectUI.py:356
  4582. #, python-format
  4583. msgid ""
  4584. "How much (fraction) of the tool width to overlap each tool pass.\n"
  4585. "Example:\n"
  4586. "A value here of 0.25 means an overlap of 25%% from the tool diameter found "
  4587. "above."
  4588. msgstr ""
  4589. "How much (fraction) of the tool width to overlap each tool pass.\n"
  4590. "Example:\n"
  4591. "A value here of 0.25 means an overlap of 25%% from the tool diameter found "
  4592. "above."
  4593. #: flatcamGUI/FlatCAMGUI.py:3448 flatcamGUI/ObjectUI.py:366
  4594. msgid "Milling Type:"
  4595. msgstr "Milling Type:"
  4596. #: flatcamGUI/FlatCAMGUI.py:3450 flatcamGUI/ObjectUI.py:368
  4597. msgid ""
  4598. "Milling type:\n"
  4599. "- climb / best for precision milling and to reduce tool usage\n"
  4600. "- conventional / useful when there is no backlash compensation"
  4601. msgstr ""
  4602. "Milling type:\n"
  4603. "- climb / best for precision milling and to reduce tool usage\n"
  4604. "- conventional / useful when there is no backlash compensation"
  4605. #: flatcamGUI/FlatCAMGUI.py:3455 flatcamGUI/ObjectUI.py:373
  4606. msgid "Climb"
  4607. msgstr "Climb"
  4608. #: flatcamGUI/FlatCAMGUI.py:3456 flatcamGUI/ObjectUI.py:374
  4609. msgid "Conv."
  4610. msgstr "Conv."
  4611. #: flatcamGUI/FlatCAMGUI.py:3460
  4612. msgid "Combine Passes"
  4613. msgstr "Combine Passes"
  4614. #: flatcamGUI/FlatCAMGUI.py:3462 flatcamGUI/ObjectUI.py:380
  4615. msgid "Combine all passes into one object"
  4616. msgstr "Combine all passes into one object"
  4617. #: flatcamGUI/FlatCAMGUI.py:3467
  4618. msgid "<b>Clear non-copper:</b>"
  4619. msgstr "<b>Clear non-copper:</b>"
  4620. #: flatcamGUI/FlatCAMGUI.py:3469 flatcamGUI/FlatCAMGUI.py:4791
  4621. #: flatcamGUI/ObjectUI.py:457
  4622. msgid ""
  4623. "Create a Geometry object with\n"
  4624. "toolpaths to cut all non-copper regions."
  4625. msgstr ""
  4626. "Create a Geometry object with\n"
  4627. "toolpaths to cut all non-copper regions."
  4628. #: flatcamGUI/FlatCAMGUI.py:3478 flatcamGUI/FlatCAMGUI.py:3504
  4629. #: flatcamGUI/ObjectUI.py:501 flatcamGUI/ObjectUI.py:535
  4630. msgid "Boundary Margin:"
  4631. msgstr "Boundary Margin:"
  4632. #: flatcamGUI/FlatCAMGUI.py:3480 flatcamGUI/ObjectUI.py:503
  4633. msgid ""
  4634. "Specify the edge of the PCB\n"
  4635. "by drawing a box around all\n"
  4636. "objects with this minimum\n"
  4637. "distance."
  4638. msgstr ""
  4639. "Specify the edge of the PCB\n"
  4640. "by drawing a box around all\n"
  4641. "objects with this minimum\n"
  4642. "distance."
  4643. #: flatcamGUI/FlatCAMGUI.py:3490 flatcamGUI/FlatCAMGUI.py:3513
  4644. msgid "Rounded corners"
  4645. msgstr "Rounded corners"
  4646. #: flatcamGUI/FlatCAMGUI.py:3492
  4647. msgid ""
  4648. "Creates a Geometry objects with polygons\n"
  4649. "covering the copper-free areas of the PCB."
  4650. msgstr ""
  4651. "Creates a Geometry objects with polygons\n"
  4652. "covering the copper-free areas of the PCB."
  4653. #: flatcamGUI/FlatCAMGUI.py:3498 flatcamGUI/ObjectUI.py:525
  4654. msgid "<b>Bounding Box:</b>"
  4655. msgstr "<b>Bounding Box:</b>"
  4656. #: flatcamGUI/FlatCAMGUI.py:3506 flatcamGUI/ObjectUI.py:537
  4657. msgid ""
  4658. "Distance of the edges of the box\n"
  4659. "to the nearest polygon."
  4660. msgstr ""
  4661. "Distance of the edges of the box\n"
  4662. "to the nearest polygon."
  4663. #: flatcamGUI/FlatCAMGUI.py:3515 flatcamGUI/ObjectUI.py:547
  4664. msgid ""
  4665. "If the bounding box is \n"
  4666. "to have rounded corners\n"
  4667. "their radius is equal to\n"
  4668. "the margin."
  4669. msgstr ""
  4670. "If the bounding box is \n"
  4671. "to have rounded corners\n"
  4672. "their radius is equal to\n"
  4673. "the margin."
  4674. #: flatcamGUI/FlatCAMGUI.py:3529
  4675. msgid "Gerber Adv. Options"
  4676. msgstr "Gerber Adv. Options"
  4677. #: flatcamGUI/FlatCAMGUI.py:3533
  4678. msgid "<b>Advanced Param.:</b>"
  4679. msgstr "<b>Advanced Param.:</b>"
  4680. #: flatcamGUI/FlatCAMGUI.py:3535
  4681. msgid ""
  4682. "A list of Gerber advanced parameters.\n"
  4683. "Those parameters are available only for\n"
  4684. "Advanced App. Level."
  4685. msgstr ""
  4686. "A list of Gerber advanced parameters.\n"
  4687. "Those parameters are available only for\n"
  4688. "Advanced App. Level."
  4689. #: flatcamGUI/FlatCAMGUI.py:3545 flatcamGUI/ObjectUI.py:385
  4690. msgid "\"Follow\""
  4691. msgstr "\"Follow\""
  4692. #: flatcamGUI/FlatCAMGUI.py:3547 flatcamGUI/ObjectUI.py:387
  4693. msgid ""
  4694. "Generate a 'Follow' geometry.\n"
  4695. "This means that it will cut through\n"
  4696. "the middle of the trace."
  4697. msgstr ""
  4698. "Generate a 'Follow' geometry.\n"
  4699. "This means that it will cut through\n"
  4700. "the middle of the trace."
  4701. #: flatcamGUI/FlatCAMGUI.py:3555
  4702. msgid "Table Show/Hide"
  4703. msgstr "Table Show/Hide"
  4704. #: flatcamGUI/FlatCAMGUI.py:3557
  4705. msgid ""
  4706. "Toggle the display of the Gerber Apertures Table.\n"
  4707. "Also, on hide, it will delete all mark shapes\n"
  4708. "that are drawn on canvas."
  4709. msgstr ""
  4710. "Toggle the display of the Gerber Apertures Table.\n"
  4711. "Also, on hide, it will delete all mark shapes\n"
  4712. "that are drawn on canvas."
  4713. #: flatcamGUI/FlatCAMGUI.py:3565
  4714. msgid "Ap. Scale Factor:"
  4715. msgstr "Ap. Scale Factor:"
  4716. #: flatcamGUI/FlatCAMGUI.py:3567 flatcamGUI/ObjectUI.py:254
  4717. msgid ""
  4718. "Change the size of the selected apertures.\n"
  4719. "Factor by which to multiply\n"
  4720. "geometric features of this object."
  4721. msgstr ""
  4722. "Change the size of the selected apertures.\n"
  4723. "Factor by which to multiply\n"
  4724. "geometric features of this object."
  4725. #: flatcamGUI/FlatCAMGUI.py:3577
  4726. msgid "Ap. Buffer Factor:"
  4727. msgstr "Ap. Buffer Factor:"
  4728. #: flatcamGUI/FlatCAMGUI.py:3579 flatcamGUI/ObjectUI.py:275
  4729. msgid ""
  4730. "Change the size of the selected apertures.\n"
  4731. "Factor by which to expand/shrink\n"
  4732. "geometric features of this object."
  4733. msgstr ""
  4734. "Change the size of the selected apertures.\n"
  4735. "Factor by which to expand/shrink\n"
  4736. "geometric features of this object."
  4737. #: flatcamGUI/FlatCAMGUI.py:3597
  4738. msgid "Excellon General"
  4739. msgstr "Excellon General"
  4740. #: flatcamGUI/FlatCAMGUI.py:3619
  4741. msgid "<b>Excellon Format:</b>"
  4742. msgstr "<b>Excellon Format:</b>"
  4743. #: flatcamGUI/FlatCAMGUI.py:3621
  4744. msgid ""
  4745. "The NC drill files, usually named Excellon files\n"
  4746. "are files that can be found in different formats.\n"
  4747. "Here we set the format used when the provided\n"
  4748. "coordinates are not using period.\n"
  4749. "\n"
  4750. "Possible presets:\n"
  4751. "\n"
  4752. "PROTEUS 3:3 MM LZ\n"
  4753. "DipTrace 5:2 MM TZ\n"
  4754. "DipTrace 4:3 MM LZ\n"
  4755. "\n"
  4756. "EAGLE 3:3 MM TZ\n"
  4757. "EAGLE 4:3 MM TZ\n"
  4758. "EAGLE 2:5 INCH TZ\n"
  4759. "EAGLE 3:5 INCH TZ\n"
  4760. "\n"
  4761. "ALTIUM 2:4 INCH LZ\n"
  4762. "Sprint Layout 2:4 INCH LZ\n"
  4763. "KiCAD 3:5 INCH TZ"
  4764. msgstr ""
  4765. "The NC drill files, usually named Excellon files\n"
  4766. "are files that can be found in different formats.\n"
  4767. "Here we set the format used when the provided\n"
  4768. "coordinates are not using period.\n"
  4769. "\n"
  4770. "Possible presets:\n"
  4771. "\n"
  4772. "PROTEUS 3:3 MM LZ\n"
  4773. "DipTrace 5:2 MM TZ\n"
  4774. "DipTrace 4:3 MM LZ\n"
  4775. "\n"
  4776. "EAGLE 3:3 MM TZ\n"
  4777. "EAGLE 4:3 MM TZ\n"
  4778. "EAGLE 2:5 INCH TZ\n"
  4779. "EAGLE 3:5 INCH TZ\n"
  4780. "\n"
  4781. "ALTIUM 2:4 INCH LZ\n"
  4782. "Sprint Layout 2:4 INCH LZ\n"
  4783. "KiCAD 3:5 INCH TZ"
  4784. #: flatcamGUI/FlatCAMGUI.py:3646
  4785. msgid "INCH:"
  4786. msgstr "INCH:"
  4787. #: flatcamGUI/FlatCAMGUI.py:3649
  4788. msgid "Default values for INCH are 2:4"
  4789. msgstr "Default values for INCH are 2:4"
  4790. #: flatcamGUI/FlatCAMGUI.py:3657 flatcamGUI/FlatCAMGUI.py:3690
  4791. #: flatcamGUI/FlatCAMGUI.py:4167
  4792. msgid ""
  4793. "This numbers signify the number of digits in\n"
  4794. "the whole part of Excellon coordinates."
  4795. msgstr ""
  4796. "This numbers signify the number of digits in\n"
  4797. "the whole part of Excellon coordinates."
  4798. #: flatcamGUI/FlatCAMGUI.py:3671 flatcamGUI/FlatCAMGUI.py:3704
  4799. #: flatcamGUI/FlatCAMGUI.py:4181
  4800. msgid ""
  4801. "This numbers signify the number of digits in\n"
  4802. "the decimal part of Excellon coordinates."
  4803. msgstr ""
  4804. "This numbers signify the number of digits in\n"
  4805. "the decimal part of Excellon coordinates."
  4806. #: flatcamGUI/FlatCAMGUI.py:3679
  4807. msgid "METRIC:"
  4808. msgstr "METRIC:"
  4809. #: flatcamGUI/FlatCAMGUI.py:3682
  4810. msgid "Default values for METRIC are 3:3"
  4811. msgstr "Default values for METRIC are 3:3"
  4812. #: flatcamGUI/FlatCAMGUI.py:3713
  4813. msgid "Default <b>Zeros</b>:"
  4814. msgstr "Default <b>Zeros</b>:"
  4815. #: flatcamGUI/FlatCAMGUI.py:3716 flatcamGUI/FlatCAMGUI.py:4216
  4816. msgid ""
  4817. "This sets the type of Excellon zeros.\n"
  4818. "If LZ then Leading Zeros are kept and\n"
  4819. "Trailing Zeros are removed.\n"
  4820. "If TZ is checked then Trailing Zeros are kept\n"
  4821. "and Leading Zeros are removed."
  4822. msgstr ""
  4823. "This sets the type of Excellon zeros.\n"
  4824. "If LZ then Leading Zeros are kept and\n"
  4825. "Trailing Zeros are removed.\n"
  4826. "If TZ is checked then Trailing Zeros are kept\n"
  4827. "and Leading Zeros are removed."
  4828. #: flatcamGUI/FlatCAMGUI.py:3724 flatcamGUI/FlatCAMGUI.py:4223
  4829. msgid "LZ"
  4830. msgstr "LZ"
  4831. #: flatcamGUI/FlatCAMGUI.py:3725 flatcamGUI/FlatCAMGUI.py:4224
  4832. msgid "TZ"
  4833. msgstr "TZ"
  4834. #: flatcamGUI/FlatCAMGUI.py:3727
  4835. msgid ""
  4836. "This sets the default type of Excellon zeros.\n"
  4837. "If it is not detected in the parsed file the value here\n"
  4838. "will be used.If LZ then Leading Zeros are kept and\n"
  4839. "Trailing Zeros are removed.\n"
  4840. "If TZ is checked then Trailing Zeros are kept\n"
  4841. "and Leading Zeros are removed."
  4842. msgstr ""
  4843. "This sets the default type of Excellon zeros.\n"
  4844. "If it is not detected in the parsed file the value here\n"
  4845. "will be used.If LZ then Leading Zeros are kept and\n"
  4846. "Trailing Zeros are removed.\n"
  4847. "If TZ is checked then Trailing Zeros are kept\n"
  4848. "and Leading Zeros are removed."
  4849. #: flatcamGUI/FlatCAMGUI.py:3741
  4850. msgid "Default <b>Units</b>:"
  4851. msgstr "Default <b>Units</b>:"
  4852. #: flatcamGUI/FlatCAMGUI.py:3744
  4853. msgid ""
  4854. "This sets the default units of Excellon files.\n"
  4855. "If it is not detected in the parsed file the value here\n"
  4856. "will be used.Some Excellon files don't have an header\n"
  4857. "therefore this parameter will be used."
  4858. msgstr ""
  4859. "This sets the default units of Excellon files.\n"
  4860. "If it is not detected in the parsed file the value here\n"
  4861. "will be used.Some Excellon files don't have an header\n"
  4862. "therefore this parameter will be used."
  4863. #: flatcamGUI/FlatCAMGUI.py:3752 flatcamGUI/FlatCAMGUI.py:4143
  4864. msgid "INCH"
  4865. msgstr "INCH"
  4866. #: flatcamGUI/FlatCAMGUI.py:3753 flatcamGUI/FlatCAMGUI.py:4144
  4867. msgid "MM"
  4868. msgstr "MM"
  4869. #: flatcamGUI/FlatCAMGUI.py:3755
  4870. msgid ""
  4871. "This sets the units of Excellon files.\n"
  4872. "Some Excellon files don't have an header\n"
  4873. "therefore this parameter will be used."
  4874. msgstr ""
  4875. "This sets the units of Excellon files.\n"
  4876. "Some Excellon files don't have an header\n"
  4877. "therefore this parameter will be used."
  4878. #: flatcamGUI/FlatCAMGUI.py:3771
  4879. msgid "<b>Excellon Optimization:</b>"
  4880. msgstr "<b>Excellon Optimization:</b>"
  4881. #: flatcamGUI/FlatCAMGUI.py:3778
  4882. msgid "Algorithm: "
  4883. msgstr "Algorithm: "
  4884. #: flatcamGUI/FlatCAMGUI.py:3781 flatcamGUI/FlatCAMGUI.py:3794
  4885. msgid ""
  4886. "This sets the optimization type for the Excellon drill path.\n"
  4887. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  4888. "Guided Local Path is used. Default search time is 3sec.\n"
  4889. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  4890. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  4891. "\n"
  4892. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  4893. "Travelling Salesman algorithm for path optimization."
  4894. msgstr ""
  4895. "This sets the optimization type for the Excellon drill path.\n"
  4896. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  4897. "Guided Local Path is used. Default search time is 3sec.\n"
  4898. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  4899. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  4900. "\n"
  4901. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  4902. "Travelling Salesman algorithm for path optimization."
  4903. #: flatcamGUI/FlatCAMGUI.py:3791
  4904. msgid "MH"
  4905. msgstr "MH"
  4906. #: flatcamGUI/FlatCAMGUI.py:3806
  4907. msgid "Optimization Time: "
  4908. msgstr "Optimization Time: "
  4909. #: flatcamGUI/FlatCAMGUI.py:3809
  4910. msgid ""
  4911. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  4912. "maximum threshold for how much time is spent doing the\n"
  4913. "path optimization. This max duration is set here.\n"
  4914. "In seconds."
  4915. msgstr ""
  4916. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  4917. "maximum threshold for how much time is spent doing the\n"
  4918. "path optimization. This max duration is set here.\n"
  4919. "In seconds."
  4920. #: flatcamGUI/FlatCAMGUI.py:3850
  4921. msgid "Excellon Options"
  4922. msgstr "Excellon Options"
  4923. #: flatcamGUI/FlatCAMGUI.py:3853 flatcamGUI/ObjectUI.py:655
  4924. msgid "<b>Create CNC Job</b>"
  4925. msgstr "<b>Create CNC Job</b>"
  4926. #: flatcamGUI/FlatCAMGUI.py:3855
  4927. msgid ""
  4928. "Parameters used to create a CNC Job object\n"
  4929. "for this drill object."
  4930. msgstr ""
  4931. "Parameters used to create a CNC Job object\n"
  4932. "for this drill object."
  4933. #: flatcamGUI/FlatCAMGUI.py:3863 flatcamGUI/FlatCAMGUI.py:4319
  4934. #: flatcamGUI/FlatCAMGUI.py:5318 flatcamGUI/ObjectUI.py:666
  4935. #: flatcamGUI/ObjectUI.py:1130 flatcamTools/ToolCalculators.py:108
  4936. msgid "Cut Z:"
  4937. msgstr "Cut Z:"
  4938. #: flatcamGUI/FlatCAMGUI.py:3865 flatcamGUI/ObjectUI.py:668
  4939. msgid ""
  4940. "Drill depth (negative)\n"
  4941. "below the copper surface."
  4942. msgstr ""
  4943. "Drill depth (negative)\n"
  4944. "below the copper surface."
  4945. #: flatcamGUI/FlatCAMGUI.py:3872 flatcamGUI/FlatCAMGUI.py:4352
  4946. #: flatcamGUI/ObjectUI.py:676 flatcamGUI/ObjectUI.py:1166
  4947. msgid "Travel Z:"
  4948. msgstr "Travel Z:"
  4949. #: flatcamGUI/FlatCAMGUI.py:3874 flatcamGUI/ObjectUI.py:678
  4950. msgid ""
  4951. "Tool height when travelling\n"
  4952. "across the XY plane."
  4953. msgstr ""
  4954. "Tool height when travelling\n"
  4955. "across the XY plane."
  4956. #: flatcamGUI/FlatCAMGUI.py:3882 flatcamGUI/FlatCAMGUI.py:4362
  4957. msgid "Tool change:"
  4958. msgstr "Tool change:"
  4959. #: flatcamGUI/FlatCAMGUI.py:3884 flatcamGUI/FlatCAMGUI.py:4364
  4960. #: flatcamGUI/ObjectUI.py:688
  4961. msgid ""
  4962. "Include tool-change sequence\n"
  4963. "in G-Code (Pause for tool change)."
  4964. msgstr ""
  4965. "Include tool-change sequence\n"
  4966. "in G-Code (Pause for tool change)."
  4967. #: flatcamGUI/FlatCAMGUI.py:3891 flatcamGUI/FlatCAMGUI.py:4372
  4968. msgid "Toolchange Z:"
  4969. msgstr "Toolchange Z:"
  4970. #: flatcamGUI/FlatCAMGUI.py:3893 flatcamGUI/FlatCAMGUI.py:4374
  4971. msgid "Toolchange Z position."
  4972. msgstr "Toolchange Z position."
  4973. #: flatcamGUI/FlatCAMGUI.py:3899
  4974. msgid "Feedrate:"
  4975. msgstr "Feedrate:"
  4976. #: flatcamGUI/FlatCAMGUI.py:3901
  4977. msgid ""
  4978. "Tool speed while drilling\n"
  4979. "(in units per minute)."
  4980. msgstr ""
  4981. "Tool speed while drilling\n"
  4982. "(in units per minute)."
  4983. #: flatcamGUI/FlatCAMGUI.py:3909
  4984. msgid "Spindle Speed:"
  4985. msgstr "Spindle Speed:"
  4986. #: flatcamGUI/FlatCAMGUI.py:3911 flatcamGUI/FlatCAMGUI.py:4404
  4987. #: flatcamGUI/ObjectUI.py:752
  4988. msgid ""
  4989. "Speed of the spindle\n"
  4990. "in RPM (optional)"
  4991. msgstr ""
  4992. "Speed of the spindle\n"
  4993. "in RPM (optional)"
  4994. #: flatcamGUI/FlatCAMGUI.py:3919 flatcamGUI/FlatCAMGUI.py:4412
  4995. #: flatcamGUI/ObjectUI.py:760 flatcamGUI/ObjectUI.py:1289
  4996. msgid "Dwell:"
  4997. msgstr "Dwell:"
  4998. #: flatcamGUI/FlatCAMGUI.py:3921 flatcamGUI/FlatCAMGUI.py:4414
  4999. #: flatcamGUI/ObjectUI.py:762 flatcamGUI/ObjectUI.py:1292
  5000. msgid ""
  5001. "Pause to allow the spindle to reach its\n"
  5002. "speed before cutting."
  5003. msgstr ""
  5004. "Pause to allow the spindle to reach its\n"
  5005. "speed before cutting."
  5006. #: flatcamGUI/FlatCAMGUI.py:3924 flatcamGUI/FlatCAMGUI.py:4417
  5007. msgid "Duration:"
  5008. msgstr "Duration:"
  5009. #: flatcamGUI/FlatCAMGUI.py:3926 flatcamGUI/FlatCAMGUI.py:4419
  5010. #: flatcamGUI/ObjectUI.py:767 flatcamGUI/ObjectUI.py:1299
  5011. msgid "Number of milliseconds for spindle to dwell."
  5012. msgstr "Number of milliseconds for spindle to dwell."
  5013. #: flatcamGUI/FlatCAMGUI.py:3938 flatcamGUI/FlatCAMGUI.py:4429
  5014. #: flatcamGUI/ObjectUI.py:775
  5015. msgid "Postprocessor:"
  5016. msgstr "Postprocessor:"
  5017. #: flatcamGUI/FlatCAMGUI.py:3940
  5018. msgid ""
  5019. "The postprocessor file that dictates\n"
  5020. "gcode output."
  5021. msgstr ""
  5022. "The postprocessor file that dictates\n"
  5023. "gcode output."
  5024. #: flatcamGUI/FlatCAMGUI.py:3950
  5025. msgid "<b>Gcode: </b>"
  5026. msgstr "<b>Gcode: </b>"
  5027. #: flatcamGUI/FlatCAMGUI.py:3952
  5028. msgid ""
  5029. "Choose what to use for GCode generation:\n"
  5030. "'Drills', 'Slots' or 'Both'.\n"
  5031. "When choosing 'Slots' or 'Both', slots will be\n"
  5032. "converted to drills."
  5033. msgstr ""
  5034. "Choose what to use for GCode generation:\n"
  5035. "'Drills', 'Slots' or 'Both'.\n"
  5036. "When choosing 'Slots' or 'Both', slots will be\n"
  5037. "converted to drills."
  5038. #: flatcamGUI/FlatCAMGUI.py:3957 flatcamGUI/ObjectUI.py:627
  5039. #: flatcamGUI/ObjectUI.py:823
  5040. msgid "Drills"
  5041. msgstr "Drills"
  5042. #: flatcamGUI/FlatCAMGUI.py:3958 flatcamGUI/ObjectUI.py:627
  5043. #: flatcamGUI/ObjectUI.py:824
  5044. msgid "Slots"
  5045. msgstr "Slots"
  5046. #: flatcamGUI/FlatCAMGUI.py:3959 flatcamGUI/ObjectUI.py:825
  5047. msgid "Both"
  5048. msgstr "Both"
  5049. #: flatcamGUI/FlatCAMGUI.py:3968 flatcamGUI/ObjectUI.py:840
  5050. msgid "<b>Mill Holes</b>"
  5051. msgstr "<b>Mill Holes</b>"
  5052. #: flatcamGUI/FlatCAMGUI.py:3970 flatcamGUI/ObjectUI.py:842
  5053. msgid "Create Geometry for milling holes."
  5054. msgstr "Create Geometry for milling holes."
  5055. #: flatcamGUI/FlatCAMGUI.py:3976
  5056. msgid "Drill Tool dia:"
  5057. msgstr "Drill Tool dia:"
  5058. #: flatcamGUI/FlatCAMGUI.py:3983
  5059. msgid "Slot Tool dia:"
  5060. msgstr "Slot Tool dia:"
  5061. #: flatcamGUI/FlatCAMGUI.py:3985
  5062. msgid ""
  5063. "Diameter of the cutting tool\n"
  5064. "when milling slots."
  5065. msgstr ""
  5066. "Diameter of the cutting tool\n"
  5067. "when milling slots."
  5068. #: flatcamGUI/FlatCAMGUI.py:3997
  5069. msgid "Defaults"
  5070. msgstr "Defaults"
  5071. #: flatcamGUI/FlatCAMGUI.py:4010
  5072. msgid "Excellon Adv. Options"
  5073. msgstr "Excellon Adv. Options"
  5074. #: flatcamGUI/FlatCAMGUI.py:4016 flatcamGUI/FlatCAMGUI.py:4452
  5075. msgid "<b>Advanced Options:</b>"
  5076. msgstr "<b>Advanced Options:</b>"
  5077. #: flatcamGUI/FlatCAMGUI.py:4018
  5078. msgid ""
  5079. "Parameters used to create a CNC Job object\n"
  5080. "for this drill object that are shown when App Level is Advanced."
  5081. msgstr ""
  5082. "Parameters used to create a CNC Job object\n"
  5083. "for this drill object that are shown when App Level is Advanced."
  5084. #: flatcamGUI/FlatCAMGUI.py:4026
  5085. msgid "Offset Z:"
  5086. msgstr "Offset Z:"
  5087. #: flatcamGUI/FlatCAMGUI.py:4028 flatcamGUI/ObjectUI.py:645
  5088. msgid ""
  5089. "Some drill bits (the larger ones) need to drill deeper\n"
  5090. "to create the desired exit hole diameter due of the tip shape.\n"
  5091. "The value here can compensate the Cut Z parameter."
  5092. msgstr ""
  5093. "Some drill bits (the larger ones) need to drill deeper\n"
  5094. "to create the desired exit hole diameter due of the tip shape.\n"
  5095. "The value here can compensate the Cut Z parameter."
  5096. #: flatcamGUI/FlatCAMGUI.py:4035 flatcamGUI/FlatCAMGUI.py:4463
  5097. msgid "Toolchange X,Y:"
  5098. msgstr "Toolchange X,Y:"
  5099. #: flatcamGUI/FlatCAMGUI.py:4037 flatcamGUI/FlatCAMGUI.py:4465
  5100. msgid "Toolchange X,Y position."
  5101. msgstr "Toolchange X,Y position."
  5102. #: flatcamGUI/FlatCAMGUI.py:4043 flatcamGUI/FlatCAMGUI.py:4472
  5103. #: flatcamGUI/ObjectUI.py:705
  5104. msgid "Start move Z:"
  5105. msgstr "Start move Z:"
  5106. #: flatcamGUI/FlatCAMGUI.py:4045
  5107. msgid ""
  5108. "Height of the tool just after start.\n"
  5109. "Delete the value if you don't need this feature."
  5110. msgstr ""
  5111. "Height of the tool just after start.\n"
  5112. "Delete the value if you don't need this feature."
  5113. #: flatcamGUI/FlatCAMGUI.py:4052 flatcamGUI/FlatCAMGUI.py:4482
  5114. #: flatcamGUI/ObjectUI.py:715 flatcamGUI/ObjectUI.py:1212
  5115. msgid "End move Z:"
  5116. msgstr "End move Z:"
  5117. #: flatcamGUI/FlatCAMGUI.py:4054 flatcamGUI/FlatCAMGUI.py:4484
  5118. msgid ""
  5119. "Height of the tool after\n"
  5120. "the last move at the end of the job."
  5121. msgstr ""
  5122. "Height of the tool after\n"
  5123. "the last move at the end of the job."
  5124. #: flatcamGUI/FlatCAMGUI.py:4061 flatcamGUI/FlatCAMGUI.py:4492
  5125. #: flatcamGUI/ObjectUI.py:736
  5126. msgid "Feedrate Rapids:"
  5127. msgstr "Feedrate Rapids:"
  5128. #: flatcamGUI/FlatCAMGUI.py:4063 flatcamGUI/ObjectUI.py:738
  5129. msgid ""
  5130. "Tool speed while drilling\n"
  5131. "(in units per minute).\n"
  5132. "This is for the rapid move G00.\n"
  5133. "It is useful only for Marlin,\n"
  5134. "ignore for any other cases."
  5135. msgstr ""
  5136. "Tool speed while drilling\n"
  5137. "(in units per minute).\n"
  5138. "This is for the rapid move G00.\n"
  5139. "It is useful only for Marlin,\n"
  5140. "ignore for any other cases."
  5141. #: flatcamGUI/FlatCAMGUI.py:4074 flatcamGUI/FlatCAMGUI.py:4516
  5142. #: flatcamGUI/ObjectUI.py:786 flatcamGUI/ObjectUI.py:1321
  5143. msgid "Probe Z depth:"
  5144. msgstr "Probe Z depth:"
  5145. #: flatcamGUI/FlatCAMGUI.py:4076 flatcamGUI/FlatCAMGUI.py:4518
  5146. #: flatcamGUI/ObjectUI.py:788 flatcamGUI/ObjectUI.py:1324
  5147. msgid ""
  5148. "The maximum depth that the probe is allowed\n"
  5149. "to probe. Negative value, in current units."
  5150. msgstr ""
  5151. "The maximum depth that the probe is allowed\n"
  5152. "to probe. Negative value, in current units."
  5153. #: flatcamGUI/FlatCAMGUI.py:4084 flatcamGUI/FlatCAMGUI.py:4526
  5154. #: flatcamGUI/ObjectUI.py:798 flatcamGUI/ObjectUI.py:1335
  5155. msgid "Feedrate Probe:"
  5156. msgstr "Feedrate Probe:"
  5157. #: flatcamGUI/FlatCAMGUI.py:4086 flatcamGUI/FlatCAMGUI.py:4528
  5158. #: flatcamGUI/ObjectUI.py:800 flatcamGUI/ObjectUI.py:1338
  5159. msgid "The feedrate used while the probe is probing."
  5160. msgstr "The feedrate used while the probe is probing."
  5161. #: flatcamGUI/FlatCAMGUI.py:4092 flatcamGUI/FlatCAMGUI.py:4535
  5162. msgid "Fast Plunge:"
  5163. msgstr "Fast Plunge:"
  5164. #: flatcamGUI/FlatCAMGUI.py:4094 flatcamGUI/FlatCAMGUI.py:4537
  5165. msgid ""
  5166. "By checking this, the vertical move from\n"
  5167. "Z_Toolchange to Z_move is done with G0,\n"
  5168. "meaning the fastest speed available.\n"
  5169. "WARNING: the move is done at Toolchange X,Y coords."
  5170. msgstr ""
  5171. "By checking this, the vertical move from\n"
  5172. "Z_Toolchange to Z_move is done with G0,\n"
  5173. "meaning the fastest speed available.\n"
  5174. "WARNING: the move is done at Toolchange X,Y coords."
  5175. #: flatcamGUI/FlatCAMGUI.py:4103
  5176. msgid "Fast Retract:"
  5177. msgstr "Fast Retract:"
  5178. #: flatcamGUI/FlatCAMGUI.py:4105
  5179. msgid ""
  5180. "Exit hole strategy.\n"
  5181. " - When uncheked, while exiting the drilled hole the drill bit\n"
  5182. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  5183. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  5184. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  5185. "(travel height) is done as fast as possible (G0) in one move."
  5186. msgstr ""
  5187. "Exit hole strategy.\n"
  5188. " - When uncheked, while exiting the drilled hole the drill bit\n"
  5189. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  5190. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  5191. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  5192. "(travel height) is done as fast as possible (G0) in one move."
  5193. #: flatcamGUI/FlatCAMGUI.py:4124
  5194. msgid "Excellon Export"
  5195. msgstr "Excellon Export"
  5196. #: flatcamGUI/FlatCAMGUI.py:4127
  5197. msgid "<b>Export Options:</b>"
  5198. msgstr "<b>Export Options:</b>"
  5199. #: flatcamGUI/FlatCAMGUI.py:4129
  5200. msgid ""
  5201. "The parameters set here are used in the file exported\n"
  5202. "when using the File -> Export -> Export Excellon menu entry."
  5203. msgstr ""
  5204. "The parameters set here are used in the file exported\n"
  5205. "when using the File -> Export -> Export Excellon menu entry."
  5206. #: flatcamGUI/FlatCAMGUI.py:4138
  5207. msgid "<b>Units</b>:"
  5208. msgstr "<b>Units</b>:"
  5209. #: flatcamGUI/FlatCAMGUI.py:4140 flatcamGUI/FlatCAMGUI.py:4146
  5210. msgid "The units used in the Excellon file."
  5211. msgstr "The units used in the Excellon file."
  5212. #: flatcamGUI/FlatCAMGUI.py:4152
  5213. msgid "<b>Int/Decimals:</b>"
  5214. msgstr "<b>Int/Decimals:</b>"
  5215. #: flatcamGUI/FlatCAMGUI.py:4154
  5216. msgid ""
  5217. "The NC drill files, usually named Excellon files\n"
  5218. "are files that can be found in different formats.\n"
  5219. "Here we set the format used when the provided\n"
  5220. "coordinates are not using period."
  5221. msgstr ""
  5222. "The NC drill files, usually named Excellon files\n"
  5223. "are files that can be found in different formats.\n"
  5224. "Here we set the format used when the provided\n"
  5225. "coordinates are not using period."
  5226. #: flatcamGUI/FlatCAMGUI.py:4190
  5227. msgid "<b>Format:</b>"
  5228. msgstr "<b>Format:</b>"
  5229. #: flatcamGUI/FlatCAMGUI.py:4192 flatcamGUI/FlatCAMGUI.py:4202
  5230. msgid ""
  5231. "Select the kind of coordinates format used.\n"
  5232. "Coordinates can be saved with decimal point or without.\n"
  5233. "When there is no decimal point, it is required to specify\n"
  5234. "the number of digits for integer part and the number of decimals.\n"
  5235. "Also it will have to be specified if LZ = leading zeros are kept\n"
  5236. "or TZ = trailing zeros are kept."
  5237. msgstr ""
  5238. "Select the kind of coordinates format used.\n"
  5239. "Coordinates can be saved with decimal point or without.\n"
  5240. "When there is no decimal point, it is required to specify\n"
  5241. "the number of digits for integer part and the number of decimals.\n"
  5242. "Also it will have to be specified if LZ = leading zeros are kept\n"
  5243. "or TZ = trailing zeros are kept."
  5244. #: flatcamGUI/FlatCAMGUI.py:4199
  5245. msgid "Decimal"
  5246. msgstr "Decimal"
  5247. #: flatcamGUI/FlatCAMGUI.py:4200
  5248. msgid "No-Decimal"
  5249. msgstr "No-Decimal"
  5250. #: flatcamGUI/FlatCAMGUI.py:4213
  5251. msgid "<b>Zeros</b>:"
  5252. msgstr "<b>Zeros</b>:"
  5253. #: flatcamGUI/FlatCAMGUI.py:4226
  5254. msgid ""
  5255. "This sets the default type of Excellon zeros.\n"
  5256. "If LZ then Leading Zeros are kept and\n"
  5257. "Trailing Zeros are removed.\n"
  5258. "If TZ is checked then Trailing Zeros are kept\n"
  5259. "and Leading Zeros are removed."
  5260. msgstr ""
  5261. "This sets the default type of Excellon zeros.\n"
  5262. "If LZ then Leading Zeros are kept and\n"
  5263. "Trailing Zeros are removed.\n"
  5264. "If TZ is checked then Trailing Zeros are kept\n"
  5265. "and Leading Zeros are removed."
  5266. #: flatcamGUI/FlatCAMGUI.py:4252
  5267. msgid "Geometry General"
  5268. msgstr "Geometry General"
  5269. #: flatcamGUI/FlatCAMGUI.py:4270
  5270. msgid ""
  5271. "The number of circle steps for <b>Geometry</b> \n"
  5272. "circle and arc shapes linear approximation."
  5273. msgstr ""
  5274. "The number of circle steps for <b>Geometry</b> \n"
  5275. "circle and arc shapes linear approximation."
  5276. #: flatcamGUI/FlatCAMGUI.py:4278
  5277. msgid "<b>Tools</b>"
  5278. msgstr "<b>Tools</b>"
  5279. #: flatcamGUI/FlatCAMGUI.py:4285
  5280. msgid "Tool dia: "
  5281. msgstr "Tool dia: "
  5282. #: flatcamGUI/FlatCAMGUI.py:4287
  5283. msgid ""
  5284. "The diameter of the cutting\n"
  5285. "tool.."
  5286. msgstr ""
  5287. "The diameter of the cutting\n"
  5288. "tool.."
  5289. #: flatcamGUI/FlatCAMGUI.py:4302
  5290. msgid "Geometry Options"
  5291. msgstr "Geometry Options"
  5292. #: flatcamGUI/FlatCAMGUI.py:4307
  5293. msgid "<b>Create CNC Job:</b>"
  5294. msgstr "<b>Create CNC Job:</b>"
  5295. #: flatcamGUI/FlatCAMGUI.py:4309
  5296. msgid ""
  5297. "Create a CNC Job object\n"
  5298. "tracing the contours of this\n"
  5299. "Geometry object."
  5300. msgstr ""
  5301. "Create a CNC Job object\n"
  5302. "tracing the contours of this\n"
  5303. "Geometry object."
  5304. #: flatcamGUI/FlatCAMGUI.py:4321 flatcamGUI/ObjectUI.py:1133
  5305. msgid ""
  5306. "Cutting depth (negative)\n"
  5307. "below the copper surface."
  5308. msgstr ""
  5309. "Cutting depth (negative)\n"
  5310. "below the copper surface."
  5311. #: flatcamGUI/FlatCAMGUI.py:4329
  5312. msgid "Multidepth"
  5313. msgstr "Multidepth"
  5314. #: flatcamGUI/FlatCAMGUI.py:4331
  5315. msgid "Multidepth usage: True or False."
  5316. msgstr "Multidepth usage: True or False."
  5317. #: flatcamGUI/FlatCAMGUI.py:4336
  5318. msgid "Depth/Pass:"
  5319. msgstr "Depth/Pass:"
  5320. #: flatcamGUI/FlatCAMGUI.py:4338
  5321. msgid ""
  5322. "The depth to cut on each pass,\n"
  5323. "when multidepth is enabled.\n"
  5324. "It has positive value although\n"
  5325. "it is a fraction from the depth\n"
  5326. "which has negative value."
  5327. msgstr ""
  5328. "The depth to cut on each pass,\n"
  5329. "when multidepth is enabled.\n"
  5330. "It has positive value although\n"
  5331. "it is a fraction from the depth\n"
  5332. "which has negative value."
  5333. #: flatcamGUI/FlatCAMGUI.py:4354 flatcamGUI/ObjectUI.py:1169
  5334. msgid ""
  5335. "Height of the tool when\n"
  5336. "moving without cutting."
  5337. msgstr ""
  5338. "Height of the tool when\n"
  5339. "moving without cutting."
  5340. #: flatcamGUI/FlatCAMGUI.py:4381 flatcamGUI/ObjectUI.py:1224
  5341. msgid "Feed Rate X-Y:"
  5342. msgstr "Feed Rate X-Y:"
  5343. #: flatcamGUI/FlatCAMGUI.py:4383 flatcamGUI/ObjectUI.py:1227
  5344. msgid ""
  5345. "Cutting speed in the XY\n"
  5346. "plane in units per minute"
  5347. msgstr ""
  5348. "Cutting speed in the XY\n"
  5349. "plane in units per minute"
  5350. #: flatcamGUI/FlatCAMGUI.py:4391
  5351. msgid "Feed Rate Z:"
  5352. msgstr "Feed Rate Z:"
  5353. #: flatcamGUI/FlatCAMGUI.py:4393
  5354. msgid ""
  5355. "Cutting speed in the XY\n"
  5356. "plane in units per minute.\n"
  5357. "It is called also Plunge."
  5358. msgstr ""
  5359. "Cutting speed in the XY\n"
  5360. "plane in units per minute.\n"
  5361. "It is called also Plunge."
  5362. #: flatcamGUI/FlatCAMGUI.py:4402 flatcamGUI/ObjectUI.py:750
  5363. #: flatcamGUI/ObjectUI.py:1276
  5364. msgid "Spindle speed:"
  5365. msgstr "Spindle speed:"
  5366. #: flatcamGUI/FlatCAMGUI.py:4431
  5367. msgid ""
  5368. "The postprocessor file that dictates\n"
  5369. "Machine Code output."
  5370. msgstr ""
  5371. "The postprocessor file that dictates\n"
  5372. "Machine Code output."
  5373. #: flatcamGUI/FlatCAMGUI.py:4447
  5374. msgid "Geometry Adv. Options"
  5375. msgstr "Geometry Adv. Options"
  5376. #: flatcamGUI/FlatCAMGUI.py:4454
  5377. msgid ""
  5378. "Parameters to create a CNC Job object\n"
  5379. "tracing the contours of a Geometry object."
  5380. msgstr ""
  5381. "Parameters to create a CNC Job object\n"
  5382. "tracing the contours of a Geometry object."
  5383. #: flatcamGUI/FlatCAMGUI.py:4474
  5384. msgid ""
  5385. "Height of the tool just after starting the work.\n"
  5386. "Delete the value if you don't need this feature."
  5387. msgstr ""
  5388. "Height of the tool just after starting the work.\n"
  5389. "Delete the value if you don't need this feature."
  5390. #: flatcamGUI/FlatCAMGUI.py:4494
  5391. msgid ""
  5392. "Cutting speed in the XY plane\n"
  5393. "(in units per minute).\n"
  5394. "This is for the rapid move G00.\n"
  5395. "It is useful only for Marlin,\n"
  5396. "ignore for any other cases."
  5397. msgstr ""
  5398. "Cutting speed in the XY plane\n"
  5399. "(in units per minute).\n"
  5400. "This is for the rapid move G00.\n"
  5401. "It is useful only for Marlin,\n"
  5402. "ignore for any other cases."
  5403. #: flatcamGUI/FlatCAMGUI.py:4506
  5404. msgid "Re-cut 1st pt."
  5405. msgstr "Re-cut 1st pt."
  5406. #: flatcamGUI/FlatCAMGUI.py:4508 flatcamGUI/ObjectUI.py:1267
  5407. msgid ""
  5408. "In order to remove possible\n"
  5409. "copper leftovers where first cut\n"
  5410. "meet with last cut, we generate an\n"
  5411. "extended cut over the first cut section."
  5412. msgstr ""
  5413. "In order to remove possible\n"
  5414. "copper leftovers where first cut\n"
  5415. "meet with last cut, we generate an\n"
  5416. "extended cut over the first cut section."
  5417. #: flatcamGUI/FlatCAMGUI.py:4547
  5418. msgid "Seg. X size:"
  5419. msgstr "Seg. X size:"
  5420. #: flatcamGUI/FlatCAMGUI.py:4549
  5421. msgid ""
  5422. "The size of the trace segment on the X axis.\n"
  5423. "Useful for auto-leveling.\n"
  5424. "A value of 0 means no segmentation on the X axis."
  5425. msgstr ""
  5426. "The size of the trace segment on the X axis.\n"
  5427. "Useful for auto-leveling.\n"
  5428. "A value of 0 means no segmentation on the X axis."
  5429. #: flatcamGUI/FlatCAMGUI.py:4558
  5430. msgid "Seg. Y size:"
  5431. msgstr "Seg. Y size:"
  5432. #: flatcamGUI/FlatCAMGUI.py:4560
  5433. msgid ""
  5434. "The size of the trace segment on the Y axis.\n"
  5435. "Useful for auto-leveling.\n"
  5436. "A value of 0 means no segmentation on the Y axis."
  5437. msgstr ""
  5438. "The size of the trace segment on the Y axis.\n"
  5439. "Useful for auto-leveling.\n"
  5440. "A value of 0 means no segmentation on the Y axis."
  5441. #: flatcamGUI/FlatCAMGUI.py:4576
  5442. msgid "CNC Job General"
  5443. msgstr "CNC Job General"
  5444. #: flatcamGUI/FlatCAMGUI.py:4589 flatcamGUI/ObjectUI.py:615
  5445. #: flatcamGUI/ObjectUI.py:945 flatcamGUI/ObjectUI.py:1499
  5446. msgid "Plot Object"
  5447. msgstr "Plot Object"
  5448. #: flatcamGUI/FlatCAMGUI.py:4596
  5449. msgid "Plot kind:"
  5450. msgstr "Plot kind:"
  5451. #: flatcamGUI/FlatCAMGUI.py:4598 flatcamGUI/ObjectUI.py:1421
  5452. msgid ""
  5453. "This selects the kind of geometries on the canvas to plot.\n"
  5454. "Those can be either of type 'Travel' which means the moves\n"
  5455. "above the work piece or it can be of type 'Cut',\n"
  5456. "which means the moves that cut into the material."
  5457. msgstr ""
  5458. "This selects the kind of geometries on the canvas to plot.\n"
  5459. "Those can be either of type 'Travel' which means the moves\n"
  5460. "above the work piece or it can be of type 'Cut',\n"
  5461. "which means the moves that cut into the material."
  5462. #: flatcamGUI/FlatCAMGUI.py:4606 flatcamGUI/ObjectUI.py:1430
  5463. msgid "Travel"
  5464. msgstr "Travel"
  5465. #: flatcamGUI/FlatCAMGUI.py:4617
  5466. msgid ""
  5467. "The number of circle steps for <b>GCode</b> \n"
  5468. "circle and arc shapes linear approximation."
  5469. msgstr ""
  5470. "The number of circle steps for <b>GCode</b> \n"
  5471. "circle and arc shapes linear approximation."
  5472. #: flatcamGUI/FlatCAMGUI.py:4627
  5473. msgid ""
  5474. "Diameter of the tool to be\n"
  5475. "rendered in the plot."
  5476. msgstr ""
  5477. "Diameter of the tool to be\n"
  5478. "rendered in the plot."
  5479. #: flatcamGUI/FlatCAMGUI.py:4635
  5480. msgid "Coords dec.:"
  5481. msgstr "Coords dec.:"
  5482. #: flatcamGUI/FlatCAMGUI.py:4637
  5483. msgid ""
  5484. "The number of decimals to be used for \n"
  5485. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  5486. msgstr ""
  5487. "The number of decimals to be used for \n"
  5488. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  5489. #: flatcamGUI/FlatCAMGUI.py:4645
  5490. msgid "Feedrate dec.:"
  5491. msgstr "Feedrate dec.:"
  5492. #: flatcamGUI/FlatCAMGUI.py:4647
  5493. msgid ""
  5494. "The number of decimals to be used for \n"
  5495. "the Feedrate parameter in CNC code (GCODE, etc.)"
  5496. msgstr ""
  5497. "The number of decimals to be used for \n"
  5498. "the Feedrate parameter in CNC code (GCODE, etc.)"
  5499. #: flatcamGUI/FlatCAMGUI.py:4662
  5500. msgid "CNC Job Options"
  5501. msgstr "CNC Job Options"
  5502. #: flatcamGUI/FlatCAMGUI.py:4665 flatcamGUI/FlatCAMGUI.py:4706
  5503. msgid "<b>Export G-Code:</b>"
  5504. msgstr "<b>Export G-Code:</b>"
  5505. #: flatcamGUI/FlatCAMGUI.py:4667 flatcamGUI/FlatCAMGUI.py:4708
  5506. #: flatcamGUI/ObjectUI.py:1535
  5507. msgid ""
  5508. "Export and save G-Code to\n"
  5509. "make this object to a file."
  5510. msgstr ""
  5511. "Export and save G-Code to\n"
  5512. "make this object to a file."
  5513. #: flatcamGUI/FlatCAMGUI.py:4673
  5514. msgid "Prepend to G-Code:"
  5515. msgstr "Prepend to G-Code:"
  5516. #: flatcamGUI/FlatCAMGUI.py:4675
  5517. msgid ""
  5518. "Type here any G-Code commands you would\n"
  5519. "like to add at the beginning of the G-Code file."
  5520. msgstr ""
  5521. "Type here any G-Code commands you would\n"
  5522. "like to add at the beginning of the G-Code file."
  5523. #: flatcamGUI/FlatCAMGUI.py:4684
  5524. msgid "Append to G-Code:"
  5525. msgstr "Append to G-Code:"
  5526. #: flatcamGUI/FlatCAMGUI.py:4686 flatcamGUI/ObjectUI.py:1557
  5527. msgid ""
  5528. "Type here any G-Code commands you would\n"
  5529. "like to append to the generated file.\n"
  5530. "I.e.: M2 (End of program)"
  5531. msgstr ""
  5532. "Type here any G-Code commands you would\n"
  5533. "like to append to the generated file.\n"
  5534. "I.e.: M2 (End of program)"
  5535. #: flatcamGUI/FlatCAMGUI.py:4703
  5536. msgid "CNC Job Adv. Options"
  5537. msgstr "CNC Job Adv. Options"
  5538. #: flatcamGUI/FlatCAMGUI.py:4714 flatcamGUI/ObjectUI.py:1575
  5539. msgid "Toolchange G-Code:"
  5540. msgstr "Toolchange G-Code:"
  5541. #: flatcamGUI/FlatCAMGUI.py:4716
  5542. msgid ""
  5543. "Type here any G-Code commands you would\n"
  5544. "like to be executed when Toolchange event is encountered.\n"
  5545. "This will constitute a Custom Toolchange GCode,\n"
  5546. "or a Toolchange Macro."
  5547. msgstr ""
  5548. "Type here any G-Code commands you would\n"
  5549. "like to be executed when Toolchange event is encountered.\n"
  5550. "This will constitute a Custom Toolchange GCode,\n"
  5551. "or a Toolchange Macro."
  5552. #: flatcamGUI/FlatCAMGUI.py:4730 flatcamGUI/ObjectUI.py:1597
  5553. msgid "Use Toolchange Macro"
  5554. msgstr "Use Toolchange Macro"
  5555. #: flatcamGUI/FlatCAMGUI.py:4732 flatcamGUI/ObjectUI.py:1600
  5556. msgid ""
  5557. "Check this box if you want to use\n"
  5558. "a Custom Toolchange GCode (macro)."
  5559. msgstr ""
  5560. "Check this box if you want to use\n"
  5561. "a Custom Toolchange GCode (macro)."
  5562. #: flatcamGUI/FlatCAMGUI.py:4744 flatcamGUI/ObjectUI.py:1616
  5563. msgid ""
  5564. "A list of the FlatCAM variables that can be used\n"
  5565. "in the Toolchange event.\n"
  5566. "They have to be surrounded by the '%' symbol"
  5567. msgstr ""
  5568. "A list of the FlatCAM variables that can be used\n"
  5569. "in the Toolchange event.\n"
  5570. "They have to be surrounded by the '%' symbol"
  5571. #: flatcamGUI/FlatCAMGUI.py:4751 flatcamGUI/ObjectUI.py:1624
  5572. msgid "Parameters"
  5573. msgstr "Parameters"
  5574. #: flatcamGUI/FlatCAMGUI.py:4754 flatcamGUI/ObjectUI.py:1627
  5575. msgid "FlatCAM CNC parameters"
  5576. msgstr "FlatCAM CNC parameters"
  5577. #: flatcamGUI/FlatCAMGUI.py:4755 flatcamGUI/ObjectUI.py:1628
  5578. msgid "tool = tool number"
  5579. msgstr "tool = tool number"
  5580. #: flatcamGUI/FlatCAMGUI.py:4756 flatcamGUI/ObjectUI.py:1629
  5581. msgid "tooldia = tool diameter"
  5582. msgstr "tooldia = tool diameter"
  5583. #: flatcamGUI/FlatCAMGUI.py:4757 flatcamGUI/ObjectUI.py:1630
  5584. msgid "t_drills = for Excellon, total number of drills"
  5585. msgstr "t_drills = for Excellon, total number of drills"
  5586. #: flatcamGUI/FlatCAMGUI.py:4758 flatcamGUI/ObjectUI.py:1631
  5587. msgid "x_toolchange = X coord for Toolchange"
  5588. msgstr "x_toolchange = X coord for Toolchange"
  5589. #: flatcamGUI/FlatCAMGUI.py:4759 flatcamGUI/ObjectUI.py:1632
  5590. msgid "y_toolchange = Y coord for Toolchange"
  5591. msgstr "y_toolchange = Y coord for Toolchange"
  5592. #: flatcamGUI/FlatCAMGUI.py:4760 flatcamGUI/ObjectUI.py:1633
  5593. msgid "z_toolchange = Z coord for Toolchange"
  5594. msgstr "z_toolchange = Z coord for Toolchange"
  5595. #: flatcamGUI/FlatCAMGUI.py:4761
  5596. msgid "z_cut = Z depth for the cut"
  5597. msgstr "z_cut = Z depth for the cut"
  5598. #: flatcamGUI/FlatCAMGUI.py:4762
  5599. msgid "z_move = Z height for travel"
  5600. msgstr "z_move = Z height for travel"
  5601. #: flatcamGUI/FlatCAMGUI.py:4763 flatcamGUI/ObjectUI.py:1636
  5602. msgid "z_depthpercut = the step value for multidepth cut"
  5603. msgstr "z_depthpercut = the step value for multidepth cut"
  5604. #: flatcamGUI/FlatCAMGUI.py:4764 flatcamGUI/ObjectUI.py:1637
  5605. msgid "spindlesspeed = the value for the spindle speed"
  5606. msgstr "spindlesspeed = the value for the spindle speed"
  5607. #: flatcamGUI/FlatCAMGUI.py:4765 flatcamGUI/ObjectUI.py:1638
  5608. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  5609. msgstr "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  5610. #: flatcamGUI/FlatCAMGUI.py:4786
  5611. msgid "NCC Tool Options"
  5612. msgstr "NCC Tool Options"
  5613. #: flatcamGUI/FlatCAMGUI.py:4789 flatcamGUI/FlatCAMGUI.py:4890
  5614. #: flatcamGUI/FlatCAMGUI.py:4960 flatcamGUI/FlatCAMGUI.py:5019
  5615. #: flatcamGUI/FlatCAMGUI.py:5122 flatcamGUI/FlatCAMGUI.py:5183
  5616. #: flatcamGUI/FlatCAMGUI.py:5382 flatcamGUI/FlatCAMGUI.py:5509
  5617. msgid "<b>Parameters:</b>"
  5618. msgstr "<b>Parameters:</b>"
  5619. #: flatcamGUI/FlatCAMGUI.py:4799 flatcamGUI/FlatCAMGUI.py:5520
  5620. msgid "Tools dia:"
  5621. msgstr "Tools dia:"
  5622. #: flatcamGUI/FlatCAMGUI.py:4801
  5623. msgid "Diameters of the cutting tools, separated by ','"
  5624. msgstr "Diameters of the cutting tools, separated by ','"
  5625. #: flatcamGUI/FlatCAMGUI.py:4809 flatcamTools/ToolNonCopperClear.py:166
  5626. #, python-format
  5627. msgid ""
  5628. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5629. "Example:\n"
  5630. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  5631. "\n"
  5632. "Adjust the value starting with lower values\n"
  5633. "and increasing it if areas that should be cleared are still \n"
  5634. "not cleared.\n"
  5635. "Lower values = faster processing, faster execution on PCB.\n"
  5636. "Higher values = slow processing and slow execution on CNC\n"
  5637. "due of too many paths."
  5638. msgstr ""
  5639. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5640. "Example:\n"
  5641. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  5642. "\n"
  5643. "Adjust the value starting with lower values\n"
  5644. "and increasing it if areas that should be cleared are still \n"
  5645. "not cleared.\n"
  5646. "Lower values = faster processing, faster execution on PCB.\n"
  5647. "Higher values = slow processing and slow execution on CNC\n"
  5648. "due of too many paths."
  5649. #: flatcamGUI/FlatCAMGUI.py:4825 flatcamTools/ToolNonCopperClear.py:182
  5650. msgid "Bounding box margin."
  5651. msgstr "Bounding box margin."
  5652. #: flatcamGUI/FlatCAMGUI.py:4834 flatcamTools/ToolNonCopperClear.py:191
  5653. #: flatcamTools/ToolPaint.py:190
  5654. msgid ""
  5655. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  5656. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  5657. "lines."
  5658. msgstr ""
  5659. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  5660. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  5661. "lines."
  5662. #: flatcamGUI/FlatCAMGUI.py:4866 flatcamTools/ToolNonCopperClear.py:223
  5663. #: flatcamTools/ToolPaint.py:222
  5664. msgid "Rest M.:"
  5665. msgstr "Rest M.:"
  5666. #: flatcamGUI/FlatCAMGUI.py:4868
  5667. msgid ""
  5668. "If checked, use 'rest machining'.\n"
  5669. "Basically it will clear copper outside PCB features,\n"
  5670. "using the biggest tool and continue with the next tools,\n"
  5671. "from bigger to smaller, to clear areas of copper that\n"
  5672. "could not be cleared by previous tool.\n"
  5673. "If not checked, use the standard algorithm."
  5674. msgstr ""
  5675. "If checked, use 'rest machining'.\n"
  5676. "Basically it will clear copper outside PCB features,\n"
  5677. "using the biggest tool and continue with the next tools,\n"
  5678. "from bigger to smaller, to clear areas of copper that\n"
  5679. "could not be cleared by previous tool.\n"
  5680. "If not checked, use the standard algorithm."
  5681. #: flatcamGUI/FlatCAMGUI.py:4887
  5682. msgid "Cutout Tool Options"
  5683. msgstr "Cutout Tool Options"
  5684. #: flatcamGUI/FlatCAMGUI.py:4892 flatcamGUI/ObjectUI.py:473
  5685. msgid ""
  5686. "Create toolpaths to cut around\n"
  5687. "the PCB and separate it from\n"
  5688. "the original board."
  5689. msgstr ""
  5690. "Create toolpaths to cut around\n"
  5691. "the PCB and separate it from\n"
  5692. "the original board."
  5693. #: flatcamGUI/FlatCAMGUI.py:4911
  5694. msgid ""
  5695. "Distance from objects at which\n"
  5696. "to draw the cutout."
  5697. msgstr ""
  5698. "Distance from objects at which\n"
  5699. "to draw the cutout."
  5700. #: flatcamGUI/FlatCAMGUI.py:4918 flatcamTools/ToolCutOut.py:96
  5701. msgid "Gap size:"
  5702. msgstr "Gap size:"
  5703. #: flatcamGUI/FlatCAMGUI.py:4920
  5704. msgid ""
  5705. "Size of the gaps in the toolpath\n"
  5706. "that will remain to hold the\n"
  5707. "board in place."
  5708. msgstr ""
  5709. "Size of the gaps in the toolpath\n"
  5710. "that will remain to hold the\n"
  5711. "board in place."
  5712. #: flatcamGUI/FlatCAMGUI.py:4928 flatcamTools/ToolCutOut.py:125
  5713. msgid "Gaps:"
  5714. msgstr "Gaps:"
  5715. #: flatcamGUI/FlatCAMGUI.py:4930
  5716. msgid ""
  5717. "Number of bridge gaps used for the cutout.\n"
  5718. "There can be maximum 8 bridges/gaps.\n"
  5719. "The choices are:\n"
  5720. "- lr - left + right\n"
  5721. "- tb - top + bottom\n"
  5722. "- 4 - left + right +top + bottom\n"
  5723. "- 2lr - 2*left + 2*right\n"
  5724. "- 2tb - 2*top + 2*bottom\n"
  5725. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  5726. msgstr ""
  5727. "Number of bridge gaps used for the cutout.\n"
  5728. "There can be maximum 8 bridges/gaps.\n"
  5729. "The choices are:\n"
  5730. "- lr - left + right\n"
  5731. "- tb - top + bottom\n"
  5732. "- 4 - left + right +top + bottom\n"
  5733. "- 2lr - 2*left + 2*right\n"
  5734. "- 2tb - 2*top + 2*bottom\n"
  5735. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  5736. #: flatcamGUI/FlatCAMGUI.py:4957
  5737. msgid "2Sided Tool Options"
  5738. msgstr "2Sided Tool Options"
  5739. #: flatcamGUI/FlatCAMGUI.py:4962
  5740. msgid ""
  5741. "A tool to help in creating a double sided\n"
  5742. "PCB using alignment holes."
  5743. msgstr ""
  5744. "A tool to help in creating a double sided\n"
  5745. "PCB using alignment holes."
  5746. #: flatcamGUI/FlatCAMGUI.py:4972 flatcamTools/ToolDblSided.py:235
  5747. msgid "Drill diam.:"
  5748. msgstr "Drill diam.:"
  5749. #: flatcamGUI/FlatCAMGUI.py:4974 flatcamTools/ToolDblSided.py:226
  5750. #: flatcamTools/ToolDblSided.py:237
  5751. msgid "Diameter of the drill for the alignment holes."
  5752. msgstr "Diameter of the drill for the alignment holes."
  5753. #: flatcamGUI/FlatCAMGUI.py:4981
  5754. msgid "X"
  5755. msgstr "X"
  5756. #: flatcamGUI/FlatCAMGUI.py:4982
  5757. msgid "Y"
  5758. msgstr "Y"
  5759. #: flatcamGUI/FlatCAMGUI.py:4983 flatcamTools/ToolDblSided.py:120
  5760. msgid "Mirror Axis:"
  5761. msgstr "Mirror Axis:"
  5762. #: flatcamGUI/FlatCAMGUI.py:4985 flatcamTools/ToolDblSided.py:122
  5763. msgid "Mirror vertically (X) or horizontally (Y)."
  5764. msgstr "Mirror vertically (X) or horizontally (Y)."
  5765. #: flatcamGUI/FlatCAMGUI.py:4994
  5766. msgid "Point"
  5767. msgstr "Point"
  5768. #: flatcamGUI/FlatCAMGUI.py:4995
  5769. msgid "Box"
  5770. msgstr "Box"
  5771. #: flatcamGUI/FlatCAMGUI.py:4996 flatcamTools/ToolDblSided.py:133
  5772. msgid "Axis Ref:"
  5773. msgstr "Axis Ref:"
  5774. #: flatcamGUI/FlatCAMGUI.py:4998
  5775. msgid ""
  5776. "The axis should pass through a <b>point</b> or cut\n"
  5777. " a specified <b>box</b> (in a Geometry object) in \n"
  5778. "the middle."
  5779. msgstr ""
  5780. "The axis should pass through a <b>point</b> or cut\n"
  5781. " a specified <b>box</b> (in a Geometry object) in \n"
  5782. "the middle."
  5783. #: flatcamGUI/FlatCAMGUI.py:5014
  5784. msgid "Paint Tool Options"
  5785. msgstr "Paint Tool Options"
  5786. #: flatcamGUI/FlatCAMGUI.py:5021 flatcamGUI/ObjectUI.py:1370
  5787. msgid ""
  5788. "Creates tool paths to cover the\n"
  5789. "whole area of a polygon (remove\n"
  5790. "all copper). You will be asked\n"
  5791. "to click on the desired polygon."
  5792. msgstr ""
  5793. "Creates tool paths to cover the\n"
  5794. "whole area of a polygon (remove\n"
  5795. "all copper). You will be asked\n"
  5796. "to click on the desired polygon."
  5797. #: flatcamGUI/FlatCAMGUI.py:5045
  5798. msgid ""
  5799. "How much (fraction) of the tool\n"
  5800. "width to overlap each tool pass."
  5801. msgstr ""
  5802. "How much (fraction) of the tool\n"
  5803. "width to overlap each tool pass."
  5804. #: flatcamGUI/FlatCAMGUI.py:5099 flatcamTools/ToolPaint.py:237
  5805. msgid "Selection:"
  5806. msgstr "Selection:"
  5807. #: flatcamGUI/FlatCAMGUI.py:5101
  5808. msgid "How to select the polygons to paint."
  5809. msgstr "How to select the polygons to paint."
  5810. #: flatcamGUI/FlatCAMGUI.py:5105
  5811. msgid "Single"
  5812. msgstr "Single"
  5813. #: flatcamGUI/FlatCAMGUI.py:5119
  5814. msgid "Film Tool Options"
  5815. msgstr "Film Tool Options"
  5816. #: flatcamGUI/FlatCAMGUI.py:5124
  5817. msgid ""
  5818. "Create a PCB film from a Gerber or Geometry\n"
  5819. "FlatCAM object.\n"
  5820. "The file is saved in SVG format."
  5821. msgstr ""
  5822. "Create a PCB film from a Gerber or Geometry\n"
  5823. "FlatCAM object.\n"
  5824. "The file is saved in SVG format."
  5825. #: flatcamGUI/FlatCAMGUI.py:5133
  5826. msgid "Pos"
  5827. msgstr "Pos"
  5828. #: flatcamGUI/FlatCAMGUI.py:5134
  5829. msgid "Neg"
  5830. msgstr "Neg"
  5831. #: flatcamGUI/FlatCAMGUI.py:5135 flatcamTools/ToolFilm.py:116
  5832. msgid "Film Type:"
  5833. msgstr "Film Type:"
  5834. #: flatcamGUI/FlatCAMGUI.py:5137 flatcamTools/ToolFilm.py:118
  5835. msgid ""
  5836. "Generate a Positive black film or a Negative film.\n"
  5837. "Positive means that it will print the features\n"
  5838. "with black on a white canvas.\n"
  5839. "Negative means that it will print the features\n"
  5840. "with white on a black canvas.\n"
  5841. "The Film format is SVG."
  5842. msgstr ""
  5843. "Generate a Positive black film or a Negative film.\n"
  5844. "Positive means that it will print the features\n"
  5845. "with black on a white canvas.\n"
  5846. "Negative means that it will print the features\n"
  5847. "with white on a black canvas.\n"
  5848. "The Film format is SVG."
  5849. #: flatcamGUI/FlatCAMGUI.py:5148 flatcamTools/ToolFilm.py:130
  5850. msgid "Border:"
  5851. msgstr "Border:"
  5852. #: flatcamGUI/FlatCAMGUI.py:5150 flatcamTools/ToolFilm.py:132
  5853. msgid ""
  5854. "Specify a border around the object.\n"
  5855. "Only for negative film.\n"
  5856. "It helps if we use as a Box Object the same \n"
  5857. "object as in Film Object. It will create a thick\n"
  5858. "black bar around the actual print allowing for a\n"
  5859. "better delimitation of the outline features which are of\n"
  5860. "white color like the rest and which may confound with the\n"
  5861. "surroundings if not for this border."
  5862. msgstr ""
  5863. "Specify a border around the object.\n"
  5864. "Only for negative film.\n"
  5865. "It helps if we use as a Box Object the same \n"
  5866. "object as in Film Object. It will create a thick\n"
  5867. "black bar around the actual print allowing for a\n"
  5868. "better delimitation of the outline features which are of\n"
  5869. "white color like the rest and which may confound with the\n"
  5870. "surroundings if not for this border."
  5871. #: flatcamGUI/FlatCAMGUI.py:5163 flatcamTools/ToolFilm.py:144
  5872. msgid "Scale Stroke:"
  5873. msgstr "Scale Stroke:"
  5874. #: flatcamGUI/FlatCAMGUI.py:5165 flatcamTools/ToolFilm.py:146
  5875. msgid ""
  5876. "Scale the line stroke thickness of each feature in the SVG file.\n"
  5877. "It means that the line that envelope each SVG feature will be thicker or "
  5878. "thinner,\n"
  5879. "therefore the fine features may be more affected by this parameter."
  5880. msgstr ""
  5881. "Scale the line stroke thickness of each feature in the SVG file.\n"
  5882. "It means that the line that envelope each SVG feature will be thicker or "
  5883. "thinner,\n"
  5884. "therefore the fine features may be more affected by this parameter."
  5885. #: flatcamGUI/FlatCAMGUI.py:5180
  5886. msgid "Panelize Tool Options"
  5887. msgstr "Panelize Tool Options"
  5888. #: flatcamGUI/FlatCAMGUI.py:5185
  5889. msgid ""
  5890. "Create an object that contains an array of (x, y) elements,\n"
  5891. "each element is a copy of the source object spaced\n"
  5892. "at a X distance, Y distance of each other."
  5893. msgstr ""
  5894. "Create an object that contains an array of (x, y) elements,\n"
  5895. "each element is a copy of the source object spaced\n"
  5896. "at a X distance, Y distance of each other."
  5897. #: flatcamGUI/FlatCAMGUI.py:5196 flatcamTools/ToolPanelize.py:113
  5898. msgid "Spacing cols:"
  5899. msgstr "Spacing cols:"
  5900. #: flatcamGUI/FlatCAMGUI.py:5198 flatcamTools/ToolPanelize.py:115
  5901. msgid ""
  5902. "Spacing between columns of the desired panel.\n"
  5903. "In current units."
  5904. msgstr ""
  5905. "Spacing between columns of the desired panel.\n"
  5906. "In current units."
  5907. #: flatcamGUI/FlatCAMGUI.py:5206 flatcamTools/ToolPanelize.py:122
  5908. msgid "Spacing rows:"
  5909. msgstr "Spacing rows:"
  5910. #: flatcamGUI/FlatCAMGUI.py:5208 flatcamTools/ToolPanelize.py:124
  5911. msgid ""
  5912. "Spacing between rows of the desired panel.\n"
  5913. "In current units."
  5914. msgstr ""
  5915. "Spacing between rows of the desired panel.\n"
  5916. "In current units."
  5917. #: flatcamGUI/FlatCAMGUI.py:5216 flatcamTools/ToolPanelize.py:131
  5918. msgid "Columns:"
  5919. msgstr "Columns:"
  5920. #: flatcamGUI/FlatCAMGUI.py:5218 flatcamTools/ToolPanelize.py:133
  5921. msgid "Number of columns of the desired panel"
  5922. msgstr "Number of columns of the desired panel"
  5923. #: flatcamGUI/FlatCAMGUI.py:5225 flatcamTools/ToolPanelize.py:139
  5924. msgid "Rows:"
  5925. msgstr "Rows:"
  5926. #: flatcamGUI/FlatCAMGUI.py:5227 flatcamTools/ToolPanelize.py:141
  5927. msgid "Number of rows of the desired panel"
  5928. msgstr "Number of rows of the desired panel"
  5929. #: flatcamGUI/FlatCAMGUI.py:5233
  5930. msgid "Gerber"
  5931. msgstr "Gerber"
  5932. #: flatcamGUI/FlatCAMGUI.py:5234
  5933. msgid "Geo"
  5934. msgstr "Geo"
  5935. #: flatcamGUI/FlatCAMGUI.py:5235 flatcamTools/ToolPanelize.py:148
  5936. msgid "Panel Type:"
  5937. msgstr "Panel Type:"
  5938. #: flatcamGUI/FlatCAMGUI.py:5237
  5939. msgid ""
  5940. "Choose the type of object for the panel object:\n"
  5941. "- Gerber\n"
  5942. "- Geometry"
  5943. msgstr ""
  5944. "Choose the type of object for the panel object:\n"
  5945. "- Gerber\n"
  5946. "- Geometry"
  5947. #: flatcamGUI/FlatCAMGUI.py:5246
  5948. msgid "Constrain within:"
  5949. msgstr "Constrain within:"
  5950. #: flatcamGUI/FlatCAMGUI.py:5248 flatcamTools/ToolPanelize.py:160
  5951. msgid ""
  5952. "Area define by DX and DY within to constrain the panel.\n"
  5953. "DX and DY values are in current units.\n"
  5954. "Regardless of how many columns and rows are desired,\n"
  5955. "the final panel will have as many columns and rows as\n"
  5956. "they fit completely within selected area."
  5957. msgstr ""
  5958. "Area define by DX and DY within to constrain the panel.\n"
  5959. "DX and DY values are in current units.\n"
  5960. "Regardless of how many columns and rows are desired,\n"
  5961. "the final panel will have as many columns and rows as\n"
  5962. "they fit completely within selected area."
  5963. #: flatcamGUI/FlatCAMGUI.py:5257 flatcamTools/ToolPanelize.py:169
  5964. msgid "Width (DX):"
  5965. msgstr "Width (DX):"
  5966. #: flatcamGUI/FlatCAMGUI.py:5259 flatcamTools/ToolPanelize.py:171
  5967. msgid ""
  5968. "The width (DX) within which the panel must fit.\n"
  5969. "In current units."
  5970. msgstr ""
  5971. "The width (DX) within which the panel must fit.\n"
  5972. "In current units."
  5973. #: flatcamGUI/FlatCAMGUI.py:5266 flatcamTools/ToolPanelize.py:177
  5974. msgid "Height (DY):"
  5975. msgstr "Height (DY):"
  5976. #: flatcamGUI/FlatCAMGUI.py:5268 flatcamTools/ToolPanelize.py:179
  5977. msgid ""
  5978. "The height (DY)within which the panel must fit.\n"
  5979. "In current units."
  5980. msgstr ""
  5981. "The height (DY)within which the panel must fit.\n"
  5982. "In current units."
  5983. #: flatcamGUI/FlatCAMGUI.py:5282
  5984. msgid "Calculators Tool Options"
  5985. msgstr "Calculators Tool Options"
  5986. #: flatcamGUI/FlatCAMGUI.py:5285
  5987. msgid "<b>V-Shape Tool Calculator:</b>"
  5988. msgstr "<b>V-Shape Tool Calculator:</b>"
  5989. #: flatcamGUI/FlatCAMGUI.py:5287
  5990. msgid ""
  5991. "Calculate the tool diameter for a given V-shape tool,\n"
  5992. "having the tip diameter, tip angle and\n"
  5993. "depth-of-cut as parameters."
  5994. msgstr ""
  5995. "Calculate the tool diameter for a given V-shape tool,\n"
  5996. "having the tip diameter, tip angle and\n"
  5997. "depth-of-cut as parameters."
  5998. #: flatcamGUI/FlatCAMGUI.py:5298 flatcamTools/ToolCalculators.py:94
  5999. msgid "Tip Diameter:"
  6000. msgstr "Tip Diameter:"
  6001. #: flatcamGUI/FlatCAMGUI.py:5300
  6002. msgid ""
  6003. "This is the tool tip diameter.\n"
  6004. "It is specified by manufacturer."
  6005. msgstr ""
  6006. "This is the tool tip diameter.\n"
  6007. "It is specified by manufacturer."
  6008. #: flatcamGUI/FlatCAMGUI.py:5308
  6009. msgid "Tip angle:"
  6010. msgstr "Tip angle:"
  6011. #: flatcamGUI/FlatCAMGUI.py:5310
  6012. msgid ""
  6013. "This is the angle on the tip of the tool.\n"
  6014. "It is specified by manufacturer."
  6015. msgstr ""
  6016. "This is the angle on the tip of the tool.\n"
  6017. "It is specified by manufacturer."
  6018. #: flatcamGUI/FlatCAMGUI.py:5320
  6019. msgid ""
  6020. "This is depth to cut into material.\n"
  6021. "In the CNCJob object it is the CutZ parameter."
  6022. msgstr ""
  6023. "This is depth to cut into material.\n"
  6024. "In the CNCJob object it is the CutZ parameter."
  6025. #: flatcamGUI/FlatCAMGUI.py:5327
  6026. msgid "<b>ElectroPlating Calculator:</b>"
  6027. msgstr "<b>ElectroPlating Calculator:</b>"
  6028. #: flatcamGUI/FlatCAMGUI.py:5329 flatcamTools/ToolCalculators.py:152
  6029. msgid ""
  6030. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  6031. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  6032. "chloride."
  6033. msgstr ""
  6034. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  6035. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  6036. "chloride."
  6037. #: flatcamGUI/FlatCAMGUI.py:5339 flatcamTools/ToolCalculators.py:161
  6038. msgid "Board Length:"
  6039. msgstr "Board Length:"
  6040. #: flatcamGUI/FlatCAMGUI.py:5341 flatcamTools/ToolCalculators.py:165
  6041. msgid "This is the board length. In centimeters."
  6042. msgstr "This is the board length. In centimeters."
  6043. #: flatcamGUI/FlatCAMGUI.py:5347 flatcamTools/ToolCalculators.py:167
  6044. msgid "Board Width:"
  6045. msgstr "Board Width:"
  6046. #: flatcamGUI/FlatCAMGUI.py:5349 flatcamTools/ToolCalculators.py:171
  6047. msgid "This is the board width.In centimeters."
  6048. msgstr "This is the board width.In centimeters."
  6049. #: flatcamGUI/FlatCAMGUI.py:5354 flatcamTools/ToolCalculators.py:173
  6050. msgid "Current Density:"
  6051. msgstr "Current Density:"
  6052. #: flatcamGUI/FlatCAMGUI.py:5357 flatcamTools/ToolCalculators.py:177
  6053. msgid ""
  6054. "Current density to pass through the board. \n"
  6055. "In Amps per Square Feet ASF."
  6056. msgstr ""
  6057. "Current density to pass through the board. \n"
  6058. "In Amps per Square Feet ASF."
  6059. #: flatcamGUI/FlatCAMGUI.py:5363 flatcamTools/ToolCalculators.py:181
  6060. msgid "Copper Growth:"
  6061. msgstr "Copper Growth:"
  6062. #: flatcamGUI/FlatCAMGUI.py:5366 flatcamTools/ToolCalculators.py:185
  6063. msgid ""
  6064. "How thick the copper growth is intended to be.\n"
  6065. "In microns."
  6066. msgstr ""
  6067. "How thick the copper growth is intended to be.\n"
  6068. "In microns."
  6069. #: flatcamGUI/FlatCAMGUI.py:5379
  6070. msgid "Transform Tool Options"
  6071. msgstr "Transform Tool Options"
  6072. #: flatcamGUI/FlatCAMGUI.py:5384
  6073. msgid ""
  6074. "Various transformations that can be applied\n"
  6075. "on a FlatCAM object."
  6076. msgstr ""
  6077. "Various transformations that can be applied\n"
  6078. "on a FlatCAM object."
  6079. #: flatcamGUI/FlatCAMGUI.py:5394
  6080. msgid "Rotate Angle:"
  6081. msgstr "Rotate Angle:"
  6082. #: flatcamGUI/FlatCAMGUI.py:5396
  6083. msgid "Angle for rotation. In degrees."
  6084. msgstr "Angle for rotation. In degrees."
  6085. #: flatcamGUI/FlatCAMGUI.py:5403
  6086. msgid "Skew_X angle:"
  6087. msgstr "Skew_X angle:"
  6088. #: flatcamGUI/FlatCAMGUI.py:5405
  6089. msgid "Angle for Skew/Shear on X axis. In degrees."
  6090. msgstr "Angle for Skew/Shear on X axis. In degrees."
  6091. #: flatcamGUI/FlatCAMGUI.py:5412
  6092. msgid "Skew_Y angle:"
  6093. msgstr "Skew_Y angle:"
  6094. #: flatcamGUI/FlatCAMGUI.py:5414
  6095. msgid "Angle for Skew/Shear on Y axis. In degrees."
  6096. msgstr "Angle for Skew/Shear on Y axis. In degrees."
  6097. #: flatcamGUI/FlatCAMGUI.py:5421
  6098. msgid "Scale_X factor:"
  6099. msgstr "Scale_X factor:"
  6100. #: flatcamGUI/FlatCAMGUI.py:5423
  6101. msgid "Factor for scaling on X axis."
  6102. msgstr "Factor for scaling on X axis."
  6103. #: flatcamGUI/FlatCAMGUI.py:5430
  6104. msgid "Scale_Y factor:"
  6105. msgstr "Scale_Y factor:"
  6106. #: flatcamGUI/FlatCAMGUI.py:5432
  6107. msgid "Factor for scaling on Y axis."
  6108. msgstr "Factor for scaling on Y axis."
  6109. #: flatcamGUI/FlatCAMGUI.py:5440
  6110. msgid ""
  6111. "Scale the selected object(s)\n"
  6112. "using the Scale_X factor for both axis."
  6113. msgstr ""
  6114. "Scale the selected object(s)\n"
  6115. "using the Scale_X factor for both axis."
  6116. #: flatcamGUI/FlatCAMGUI.py:5448 flatcamTools/ToolTransform.py:210
  6117. msgid ""
  6118. "Scale the selected object(s)\n"
  6119. "using the origin reference when checked,\n"
  6120. "and the center of the biggest bounding box\n"
  6121. "of the selected objects when unchecked."
  6122. msgstr ""
  6123. "Scale the selected object(s)\n"
  6124. "using the origin reference when checked,\n"
  6125. "and the center of the biggest bounding box\n"
  6126. "of the selected objects when unchecked."
  6127. #: flatcamGUI/FlatCAMGUI.py:5457
  6128. msgid "Offset_X val:"
  6129. msgstr "Offset_X val:"
  6130. #: flatcamGUI/FlatCAMGUI.py:5459
  6131. msgid "Distance to offset on X axis. In current units."
  6132. msgstr "Distance to offset on X axis. In current units."
  6133. #: flatcamGUI/FlatCAMGUI.py:5466
  6134. msgid "Offset_Y val:"
  6135. msgstr "Offset_Y val:"
  6136. #: flatcamGUI/FlatCAMGUI.py:5468
  6137. msgid "Distance to offset on Y axis. In current units."
  6138. msgstr "Distance to offset on Y axis. In current units."
  6139. #: flatcamGUI/FlatCAMGUI.py:5474
  6140. msgid "Mirror Reference"
  6141. msgstr "Mirror Reference"
  6142. #: flatcamGUI/FlatCAMGUI.py:5476 flatcamTools/ToolTransform.py:314
  6143. msgid ""
  6144. "Flip the selected object(s)\n"
  6145. "around the point in Point Entry Field.\n"
  6146. "\n"
  6147. "The point coordinates can be captured by\n"
  6148. "left click on canvas together with pressing\n"
  6149. "SHIFT key. \n"
  6150. "Then click Add button to insert coordinates.\n"
  6151. "Or enter the coords in format (x, y) in the\n"
  6152. "Point Entry field and click Flip on X(Y)"
  6153. msgstr ""
  6154. "Flip the selected object(s)\n"
  6155. "around the point in Point Entry Field.\n"
  6156. "\n"
  6157. "The point coordinates can be captured by\n"
  6158. "left click on canvas together with pressing\n"
  6159. "SHIFT key. \n"
  6160. "Then click Add button to insert coordinates.\n"
  6161. "Or enter the coords in format (x, y) in the\n"
  6162. "Point Entry field and click Flip on X(Y)"
  6163. #: flatcamGUI/FlatCAMGUI.py:5487
  6164. msgid " Mirror Ref. Point:"
  6165. msgstr " Mirror Ref. Point:"
  6166. #: flatcamGUI/FlatCAMGUI.py:5489 flatcamTools/ToolTransform.py:327
  6167. msgid ""
  6168. "Coordinates in format (x, y) used as reference for mirroring.\n"
  6169. "The 'x' in (x, y) will be used when using Flip on X and\n"
  6170. "the 'y' in (x, y) will be used when using Flip on Y and"
  6171. msgstr ""
  6172. "Coordinates in format (x, y) used as reference for mirroring.\n"
  6173. "The 'x' in (x, y) will be used when using Flip on X and\n"
  6174. "the 'y' in (x, y) will be used when using Flip on Y and"
  6175. #: flatcamGUI/FlatCAMGUI.py:5506
  6176. msgid "SolderPaste Tool Options"
  6177. msgstr "SolderPaste Tool Options"
  6178. #: flatcamGUI/FlatCAMGUI.py:5511
  6179. msgid ""
  6180. "A tool to create GCode for dispensing\n"
  6181. "solder paste onto a PCB."
  6182. msgstr ""
  6183. "A tool to create GCode for dispensing\n"
  6184. "solder paste onto a PCB."
  6185. #: flatcamGUI/FlatCAMGUI.py:5522
  6186. msgid "Diameters of nozzle tools, separated by ','"
  6187. msgstr "Diameters of nozzle tools, separated by ','"
  6188. #: flatcamGUI/FlatCAMGUI.py:5529
  6189. msgid "<b>New Nozzle Dia:</b>"
  6190. msgstr "<b>New Nozzle Dia:</b>"
  6191. #: flatcamGUI/FlatCAMGUI.py:5531 flatcamTools/ToolSolderPaste.py:103
  6192. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  6193. msgstr "Diameter for the new Nozzle tool to add in the Tool Table"
  6194. #: flatcamGUI/FlatCAMGUI.py:5539 flatcamTools/ToolSolderPaste.py:166
  6195. msgid "Z Dispense Start:"
  6196. msgstr "Z Dispense Start:"
  6197. #: flatcamGUI/FlatCAMGUI.py:5541 flatcamTools/ToolSolderPaste.py:168
  6198. msgid "The height (Z) when solder paste dispensing starts."
  6199. msgstr "The height (Z) when solder paste dispensing starts."
  6200. #: flatcamGUI/FlatCAMGUI.py:5548 flatcamTools/ToolSolderPaste.py:174
  6201. msgid "Z Dispense:"
  6202. msgstr "Z Dispense:"
  6203. #: flatcamGUI/FlatCAMGUI.py:5550 flatcamTools/ToolSolderPaste.py:176
  6204. msgid "The height (Z) when doing solder paste dispensing."
  6205. msgstr "The height (Z) when doing solder paste dispensing."
  6206. #: flatcamGUI/FlatCAMGUI.py:5557 flatcamTools/ToolSolderPaste.py:183
  6207. msgid "Z Dispense Stop:"
  6208. msgstr "Z Dispense Stop:"
  6209. #: flatcamGUI/FlatCAMGUI.py:5559 flatcamTools/ToolSolderPaste.py:185
  6210. msgid "The height (Z) when solder paste dispensing stops."
  6211. msgstr "The height (Z) when solder paste dispensing stops."
  6212. #: flatcamGUI/FlatCAMGUI.py:5566 flatcamTools/ToolSolderPaste.py:191
  6213. msgid "Z Travel:"
  6214. msgstr "Z Travel:"
  6215. #: flatcamGUI/FlatCAMGUI.py:5568 flatcamTools/ToolSolderPaste.py:193
  6216. msgid ""
  6217. "The height (Z) for travel between pads\n"
  6218. "(without dispensing solder paste)."
  6219. msgstr ""
  6220. "The height (Z) for travel between pads\n"
  6221. "(without dispensing solder paste)."
  6222. #: flatcamGUI/FlatCAMGUI.py:5576 flatcamTools/ToolSolderPaste.py:200
  6223. msgid "Z Toolchange:"
  6224. msgstr "Z Toolchange:"
  6225. #: flatcamGUI/FlatCAMGUI.py:5578 flatcamTools/ToolSolderPaste.py:202
  6226. msgid "The height (Z) for tool (nozzle) change."
  6227. msgstr "The height (Z) for tool (nozzle) change."
  6228. #: flatcamGUI/FlatCAMGUI.py:5585 flatcamTools/ToolSolderPaste.py:208
  6229. msgid "XY Toolchange:"
  6230. msgstr "XY Toolchange:"
  6231. #: flatcamGUI/FlatCAMGUI.py:5587 flatcamTools/ToolSolderPaste.py:210
  6232. msgid ""
  6233. "The X,Y location for tool (nozzle) change.\n"
  6234. "The format is (x, y) where x and y are real numbers."
  6235. msgstr ""
  6236. "The X,Y location for tool (nozzle) change.\n"
  6237. "The format is (x, y) where x and y are real numbers."
  6238. #: flatcamGUI/FlatCAMGUI.py:5595 flatcamTools/ToolSolderPaste.py:217
  6239. msgid "Feedrate X-Y:"
  6240. msgstr "Feedrate X-Y:"
  6241. #: flatcamGUI/FlatCAMGUI.py:5597 flatcamTools/ToolSolderPaste.py:219
  6242. msgid "Feedrate (speed) while moving on the X-Y plane."
  6243. msgstr "Feedrate (speed) while moving on the X-Y plane."
  6244. #: flatcamGUI/FlatCAMGUI.py:5604 flatcamTools/ToolSolderPaste.py:225
  6245. msgid "Feedrate Z:"
  6246. msgstr "Feedrate Z:"
  6247. #: flatcamGUI/FlatCAMGUI.py:5606 flatcamTools/ToolSolderPaste.py:227
  6248. msgid ""
  6249. "Feedrate (speed) while moving vertically\n"
  6250. "(on Z plane)."
  6251. msgstr ""
  6252. "Feedrate (speed) while moving vertically\n"
  6253. "(on Z plane)."
  6254. #: flatcamGUI/FlatCAMGUI.py:5614 flatcamTools/ToolSolderPaste.py:234
  6255. msgid "Feedrate Z Dispense:"
  6256. msgstr "Feedrate Z Dispense:"
  6257. #: flatcamGUI/FlatCAMGUI.py:5616 flatcamTools/ToolSolderPaste.py:236
  6258. msgid ""
  6259. "Feedrate (speed) while moving up vertically\n"
  6260. " to Dispense position (on Z plane)."
  6261. msgstr ""
  6262. "Feedrate (speed) while moving up vertically\n"
  6263. " to Dispense position (on Z plane)."
  6264. #: flatcamGUI/FlatCAMGUI.py:5624 flatcamTools/ToolSolderPaste.py:243
  6265. msgid "Spindle Speed FWD:"
  6266. msgstr "Spindle Speed FWD:"
  6267. #: flatcamGUI/FlatCAMGUI.py:5626 flatcamTools/ToolSolderPaste.py:245
  6268. msgid ""
  6269. "The dispenser speed while pushing solder paste\n"
  6270. "through the dispenser nozzle."
  6271. msgstr ""
  6272. "The dispenser speed while pushing solder paste\n"
  6273. "through the dispenser nozzle."
  6274. #: flatcamGUI/FlatCAMGUI.py:5634 flatcamTools/ToolSolderPaste.py:252
  6275. msgid "Dwell FWD:"
  6276. msgstr "Dwell FWD:"
  6277. #: flatcamGUI/FlatCAMGUI.py:5636 flatcamTools/ToolSolderPaste.py:254
  6278. msgid "Pause after solder dispensing."
  6279. msgstr "Pause after solder dispensing."
  6280. #: flatcamGUI/FlatCAMGUI.py:5643 flatcamTools/ToolSolderPaste.py:260
  6281. msgid "Spindle Speed REV:"
  6282. msgstr "Spindle Speed REV:"
  6283. #: flatcamGUI/FlatCAMGUI.py:5645 flatcamTools/ToolSolderPaste.py:262
  6284. msgid ""
  6285. "The dispenser speed while retracting solder paste\n"
  6286. "through the dispenser nozzle."
  6287. msgstr ""
  6288. "The dispenser speed while retracting solder paste\n"
  6289. "through the dispenser nozzle."
  6290. #: flatcamGUI/FlatCAMGUI.py:5653 flatcamTools/ToolSolderPaste.py:269
  6291. msgid "Dwell REV:"
  6292. msgstr "Dwell REV:"
  6293. #: flatcamGUI/FlatCAMGUI.py:5655 flatcamTools/ToolSolderPaste.py:271
  6294. msgid ""
  6295. "Pause after solder paste dispenser retracted,\n"
  6296. "to allow pressure equilibrium."
  6297. msgstr ""
  6298. "Pause after solder paste dispenser retracted,\n"
  6299. "to allow pressure equilibrium."
  6300. #: flatcamGUI/FlatCAMGUI.py:5662 flatcamTools/ToolSolderPaste.py:277
  6301. msgid "PostProcessors:"
  6302. msgstr "PostProcessors:"
  6303. #: flatcamGUI/FlatCAMGUI.py:5664 flatcamTools/ToolSolderPaste.py:279
  6304. msgid "Files that control the GCode generation."
  6305. msgstr "Files that control the GCode generation."
  6306. #: flatcamGUI/FlatCAMGUI.py:5694 flatcamGUI/FlatCAMGUI.py:5700
  6307. msgid "Idle."
  6308. msgstr "Idle."
  6309. #: flatcamGUI/FlatCAMGUI.py:5724
  6310. msgid "Application started ..."
  6311. msgstr "Bewerbung gestartet ..."
  6312. #: flatcamGUI/FlatCAMGUI.py:5725
  6313. msgid "Hello!"
  6314. msgstr "Hello!"
  6315. #: flatcamGUI/ObjectUI.py:33
  6316. msgid "FlatCAM Object"
  6317. msgstr "FlatCAM Object"
  6318. #: flatcamGUI/ObjectUI.py:58
  6319. msgid ""
  6320. "BASIC is suitable for a beginner. Many parameters\n"
  6321. "are hidden from the user in this mode.\n"
  6322. "ADVANCED mode will make available all parameters.\n"
  6323. "\n"
  6324. "To change the application LEVEL, go to:\n"
  6325. "Edit -> Preferences -> General and check:\n"
  6326. "'APP. LEVEL' radio button."
  6327. msgstr ""
  6328. "BASIC is suitable for a beginner. Many parameters\n"
  6329. "are hidden from the user in this mode.\n"
  6330. "ADVANCED mode will make available all parameters.\n"
  6331. "\n"
  6332. "To change the application LEVEL, go to:\n"
  6333. "Edit -> Preferences -> General and check:\n"
  6334. "'APP. LEVEL' radio button."
  6335. #: flatcamGUI/ObjectUI.py:79
  6336. msgid "<b>Scale:</b>"
  6337. msgstr "<b>Scale:</b>"
  6338. #: flatcamGUI/ObjectUI.py:81
  6339. msgid "Change the size of the object."
  6340. msgstr "Change the size of the object."
  6341. #: flatcamGUI/ObjectUI.py:89
  6342. msgid "Factor:"
  6343. msgstr "Factor:"
  6344. #: flatcamGUI/ObjectUI.py:91
  6345. msgid ""
  6346. "Factor by which to multiply\n"
  6347. "geometric features of this object."
  6348. msgstr ""
  6349. "Factor by which to multiply\n"
  6350. "geometric features of this object."
  6351. #: flatcamGUI/ObjectUI.py:102
  6352. msgid "Perform scaling operation."
  6353. msgstr "Perform scaling operation."
  6354. #: flatcamGUI/ObjectUI.py:108
  6355. msgid "<b>Offset:</b>"
  6356. msgstr "<b>Offset:</b>"
  6357. #: flatcamGUI/ObjectUI.py:110
  6358. msgid "Change the position of this object."
  6359. msgstr "Change the position of this object."
  6360. #: flatcamGUI/ObjectUI.py:117
  6361. msgid "Vector:"
  6362. msgstr "Vector:"
  6363. #: flatcamGUI/ObjectUI.py:119
  6364. msgid ""
  6365. "Amount by which to move the object\n"
  6366. "in the x and y axes in (x, y) format."
  6367. msgstr ""
  6368. "Amount by which to move the object\n"
  6369. "in the x and y axes in (x, y) format."
  6370. #: flatcamGUI/ObjectUI.py:129
  6371. msgid "Perform the offset operation."
  6372. msgstr "Perform the offset operation."
  6373. #: flatcamGUI/ObjectUI.py:143
  6374. msgid "Gerber Object"
  6375. msgstr "Gerber Object"
  6376. #: flatcamGUI/ObjectUI.py:156
  6377. msgid "Solid "
  6378. msgstr "Solid "
  6379. #: flatcamGUI/ObjectUI.py:164
  6380. msgid "M-Color "
  6381. msgstr "M-Color "
  6382. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:588
  6383. #: flatcamGUI/ObjectUI.py:907 flatcamGUI/ObjectUI.py:1437
  6384. msgid "<b>Name:</b>"
  6385. msgstr "<b>Name:</b>"
  6386. #: flatcamGUI/ObjectUI.py:192
  6387. msgid "<b>Apertures:</b>"
  6388. msgstr "<b>Apertures:</b>"
  6389. #: flatcamGUI/ObjectUI.py:194
  6390. msgid "Apertures Table for the Gerber Object."
  6391. msgstr "Apertures Table for the Gerber Object."
  6392. #: flatcamGUI/ObjectUI.py:203
  6393. msgid ""
  6394. "Toggle the display of the Gerber Apertures Table.\n"
  6395. "When unchecked, it will delete all mark shapes\n"
  6396. "that are drawn on canvas."
  6397. msgstr ""
  6398. "Toggle the display of the Gerber Apertures Table.\n"
  6399. "When unchecked, it will delete all mark shapes\n"
  6400. "that are drawn on canvas."
  6401. #: flatcamGUI/ObjectUI.py:214
  6402. msgid "Mark All"
  6403. msgstr "Mark All"
  6404. #: flatcamGUI/ObjectUI.py:216
  6405. msgid ""
  6406. "When checked it will display all the apertures.\n"
  6407. "When unchecked, it will delete all mark shapes\n"
  6408. "that are drawn on canvas."
  6409. msgstr ""
  6410. "When checked it will display all the apertures.\n"
  6411. "When unchecked, it will delete all mark shapes\n"
  6412. "that are drawn on canvas."
  6413. #: flatcamGUI/ObjectUI.py:228
  6414. msgid "Code"
  6415. msgstr "Code"
  6416. #: flatcamGUI/ObjectUI.py:228 flatcamGUI/ObjectUI.py:959
  6417. #: flatcamGUI/ObjectUI.py:1517
  6418. msgid "Type"
  6419. msgstr "Type"
  6420. #: flatcamGUI/ObjectUI.py:228
  6421. msgid "Size"
  6422. msgstr "Size"
  6423. #: flatcamGUI/ObjectUI.py:228
  6424. msgid "Dim"
  6425. msgstr "Dim"
  6426. #: flatcamGUI/ObjectUI.py:232
  6427. msgid "Index"
  6428. msgstr "Index"
  6429. #: flatcamGUI/ObjectUI.py:234
  6430. msgid "Aperture Code"
  6431. msgstr "Aperture Code"
  6432. #: flatcamGUI/ObjectUI.py:236
  6433. msgid "Type of aperture: circular, rectangle, macros etc"
  6434. msgstr "Type of aperture: circular, rectangle, macros etc"
  6435. #: flatcamGUI/ObjectUI.py:238
  6436. msgid "Aperture Size:"
  6437. msgstr "Aperture Size:"
  6438. #: flatcamGUI/ObjectUI.py:240
  6439. msgid ""
  6440. "Aperture Dimensions:\n"
  6441. " - (width, height) for R, O type.\n"
  6442. " - (dia, nVertices) for P type"
  6443. msgstr ""
  6444. "Aperture Dimensions:\n"
  6445. " - (width, height) for R, O type.\n"
  6446. " - (dia, nVertices) for P type"
  6447. #: flatcamGUI/ObjectUI.py:244
  6448. msgid "Mark the aperture instances on canvas."
  6449. msgstr "Mark the aperture instances on canvas."
  6450. #: flatcamGUI/ObjectUI.py:252
  6451. msgid "Scale Factor:"
  6452. msgstr "Scale Factor:"
  6453. #: flatcamGUI/ObjectUI.py:267
  6454. msgid "Perform scaling operation on the selected apertures."
  6455. msgstr "Perform scaling operation on the selected apertures."
  6456. #: flatcamGUI/ObjectUI.py:273
  6457. msgid "Buffer Factor:"
  6458. msgstr "Buffer Factor:"
  6459. #: flatcamGUI/ObjectUI.py:286
  6460. msgid "Buffer"
  6461. msgstr "Buffer"
  6462. #: flatcamGUI/ObjectUI.py:288
  6463. msgid "Perform buffer operation on the selected apertures."
  6464. msgstr "Perform buffer operation on the selected apertures."
  6465. #: flatcamGUI/ObjectUI.py:296
  6466. msgid "<b>Generate new Gerber Object:</b>"
  6467. msgstr "<b>Generate new Gerber Object:</b>"
  6468. #: flatcamGUI/ObjectUI.py:298
  6469. msgid "Will generate a new Gerber object from the changed apertures."
  6470. msgstr "Will generate a new Gerber object from the changed apertures."
  6471. #: flatcamGUI/ObjectUI.py:304
  6472. msgid "Go"
  6473. msgstr "Go"
  6474. #: flatcamGUI/ObjectUI.py:306
  6475. msgid ""
  6476. "Will generate a new Gerber object from the changed apertures.\n"
  6477. "This new object can then be isolated etc."
  6478. msgstr ""
  6479. "Will generate a new Gerber object from the changed apertures.\n"
  6480. "This new object can then be isolated etc."
  6481. #: flatcamGUI/ObjectUI.py:333
  6482. msgid ""
  6483. "Diameter of the cutting tool.\n"
  6484. "If you want to have an isolation path\n"
  6485. "inside the actual shape of the Gerber\n"
  6486. "feature, use a negative value for\n"
  6487. "this parameter."
  6488. msgstr ""
  6489. "Diameter of the cutting tool.\n"
  6490. "If you want to have an isolation path\n"
  6491. "inside the actual shape of the Gerber\n"
  6492. "feature, use a negative value for\n"
  6493. "this parameter."
  6494. #: flatcamGUI/ObjectUI.py:344
  6495. msgid "Passes:"
  6496. msgstr "Passes:"
  6497. #: flatcamGUI/ObjectUI.py:378
  6498. msgid "Combine"
  6499. msgstr "Combine"
  6500. #: flatcamGUI/ObjectUI.py:394
  6501. msgid "<b>Generate Isolation Geometry:</b>"
  6502. msgstr "<b>Generate Isolation Geometry:</b>"
  6503. #: flatcamGUI/ObjectUI.py:396
  6504. msgid ""
  6505. "Create a Geometry object with toolpaths to cut \n"
  6506. "isolation outside, inside or on both sides of the\n"
  6507. "object. For a Gerber object outside means outside\n"
  6508. "of the Gerber feature and inside means inside of\n"
  6509. "the Gerber feature, if possible at all. This means\n"
  6510. "that only if the Gerber feature has openings inside, they\n"
  6511. "will be isolated. If what is wanted is to cut isolation\n"
  6512. "inside the actual Gerber feature, use a negative tool\n"
  6513. "diameter above."
  6514. msgstr ""
  6515. "Create a Geometry object with toolpaths to cut \n"
  6516. "isolation outside, inside or on both sides of the\n"
  6517. "object. For a Gerber object outside means outside\n"
  6518. "of the Gerber feature and inside means inside of\n"
  6519. "the Gerber feature, if possible at all. This means\n"
  6520. "that only if the Gerber feature has openings inside, they\n"
  6521. "will be isolated. If what is wanted is to cut isolation\n"
  6522. "inside the actual Gerber feature, use a negative tool\n"
  6523. "diameter above."
  6524. #: flatcamGUI/ObjectUI.py:415
  6525. msgid "FULL Geo"
  6526. msgstr "FULL Geo"
  6527. #: flatcamGUI/ObjectUI.py:417
  6528. msgid ""
  6529. "Create the Geometry Object\n"
  6530. "for isolation routing. It contains both\n"
  6531. "the interiors and exteriors geometry."
  6532. msgstr ""
  6533. "Create the Geometry Object\n"
  6534. "for isolation routing. It contains both\n"
  6535. "the interiors and exteriors geometry."
  6536. #: flatcamGUI/ObjectUI.py:426
  6537. msgid "Ext Geo"
  6538. msgstr "Ext Geo"
  6539. #: flatcamGUI/ObjectUI.py:428
  6540. msgid ""
  6541. "Create the Geometry Object\n"
  6542. "for isolation routing containing\n"
  6543. "only the exteriors geometry."
  6544. msgstr ""
  6545. "Create the Geometry Object\n"
  6546. "for isolation routing containing\n"
  6547. "only the exteriors geometry."
  6548. #: flatcamGUI/ObjectUI.py:435
  6549. msgid "Int Geo"
  6550. msgstr "Int Geo"
  6551. #: flatcamGUI/ObjectUI.py:437
  6552. msgid ""
  6553. "Create the Geometry Object\n"
  6554. "for isolation routing containing\n"
  6555. "only the interiors geometry."
  6556. msgstr ""
  6557. "Create the Geometry Object\n"
  6558. "for isolation routing containing\n"
  6559. "only the interiors geometry."
  6560. #: flatcamGUI/ObjectUI.py:455
  6561. msgid "<b>Clear N-copper:</b>"
  6562. msgstr "<b>Clear N-copper:</b>"
  6563. #: flatcamGUI/ObjectUI.py:465 flatcamTools/ToolNonCopperClear.py:239
  6564. msgid ""
  6565. "Create the Geometry Object\n"
  6566. "for non-copper routing."
  6567. msgstr ""
  6568. "Create the Geometry Object\n"
  6569. "for non-copper routing."
  6570. #: flatcamGUI/ObjectUI.py:471
  6571. msgid "<b>Board cutout:</b>"
  6572. msgstr "<b>Board cutout:</b>"
  6573. #: flatcamGUI/ObjectUI.py:479
  6574. msgid "Cutout Tool"
  6575. msgstr "Cutout Tool"
  6576. #: flatcamGUI/ObjectUI.py:481
  6577. msgid ""
  6578. "Generate the geometry for\n"
  6579. "the board cutout."
  6580. msgstr ""
  6581. "Generate the geometry for\n"
  6582. "the board cutout."
  6583. #: flatcamGUI/ObjectUI.py:487
  6584. msgid "<b>Non-copper regions:</b>"
  6585. msgstr "<b>Non-copper regions:</b>"
  6586. #: flatcamGUI/ObjectUI.py:489
  6587. msgid ""
  6588. "Create polygons covering the\n"
  6589. "areas without copper on the PCB.\n"
  6590. "Equivalent to the inverse of this\n"
  6591. "object. Can be used to remove all\n"
  6592. "copper from a specified region."
  6593. msgstr ""
  6594. "Create polygons covering the\n"
  6595. "areas without copper on the PCB.\n"
  6596. "Equivalent to the inverse of this\n"
  6597. "object. Can be used to remove all\n"
  6598. "copper from a specified region."
  6599. #: flatcamGUI/ObjectUI.py:514 flatcamGUI/ObjectUI.py:545
  6600. msgid "Rounded Geo"
  6601. msgstr "Rounded Geo"
  6602. #: flatcamGUI/ObjectUI.py:516
  6603. msgid "Resulting geometry will have rounded corners."
  6604. msgstr "Resulting geometry will have rounded corners."
  6605. #: flatcamGUI/ObjectUI.py:521 flatcamGUI/ObjectUI.py:555
  6606. #: flatcamTools/ToolCutOut.py:159 flatcamTools/ToolCutOut.py:179
  6607. #: flatcamTools/ToolCutOut.py:230 flatcamTools/ToolSolderPaste.py:127
  6608. msgid "Generate Geo"
  6609. msgstr "Generate Geo"
  6610. #: flatcamGUI/ObjectUI.py:527
  6611. msgid ""
  6612. "Create a geometry surrounding the Gerber object.\n"
  6613. "Square shape."
  6614. msgstr ""
  6615. "Create a geometry surrounding the Gerber object.\n"
  6616. "Square shape."
  6617. #: flatcamGUI/ObjectUI.py:557
  6618. msgid "Generate the Geometry object."
  6619. msgstr "Generate the Geometry object."
  6620. #: flatcamGUI/ObjectUI.py:568
  6621. msgid "Excellon Object"
  6622. msgstr "Excellon Object"
  6623. #: flatcamGUI/ObjectUI.py:579
  6624. msgid "Solid circles."
  6625. msgstr "Solid circles."
  6626. #: flatcamGUI/ObjectUI.py:607 flatcamGUI/ObjectUI.py:926
  6627. msgid "<b>Tools Table</b>"
  6628. msgstr "<b>Tools Table</b>"
  6629. #: flatcamGUI/ObjectUI.py:628
  6630. msgid "Offset Z"
  6631. msgstr "Offset Z"
  6632. #: flatcamGUI/ObjectUI.py:632
  6633. msgid ""
  6634. "This is the Tool Number.\n"
  6635. "When ToolChange is checked, on toolchange event this value\n"
  6636. "will be showed as a T1, T2 ... Tn in the Machine Code."
  6637. msgstr ""
  6638. "This is the Tool Number.\n"
  6639. "When ToolChange is checked, on toolchange event this value\n"
  6640. "will be showed as a T1, T2 ... Tn in the Machine Code."
  6641. #: flatcamGUI/ObjectUI.py:636 flatcamGUI/ObjectUI.py:972
  6642. #: flatcamTools/ToolNonCopperClear.py:96 flatcamTools/ToolPaint.py:94
  6643. msgid ""
  6644. "Tool Diameter. It's value (in current FlatCAM units) \n"
  6645. "is the cut width into the material."
  6646. msgstr ""
  6647. "Tool Diameter. It's value (in current FlatCAM units) \n"
  6648. "is the cut width into the material."
  6649. #: flatcamGUI/ObjectUI.py:639
  6650. msgid ""
  6651. "The number of Drill holes. Holes that are drilled with\n"
  6652. "a drill bit."
  6653. msgstr ""
  6654. "The number of Drill holes. Holes that are drilled with\n"
  6655. "a drill bit."
  6656. #: flatcamGUI/ObjectUI.py:642
  6657. msgid ""
  6658. "The number of Slot holes. Holes that are created by\n"
  6659. "milling them with an endmill bit."
  6660. msgstr ""
  6661. "The number of Slot holes. Holes that are created by\n"
  6662. "milling them with an endmill bit."
  6663. #: flatcamGUI/ObjectUI.py:649
  6664. msgid "Toggle display of the drills for the current tool."
  6665. msgstr "Toggle display of the drills for the current tool."
  6666. #: flatcamGUI/ObjectUI.py:657
  6667. msgid ""
  6668. "Create a CNC Job object\n"
  6669. "for this drill object."
  6670. msgstr ""
  6671. "Create a CNC Job object\n"
  6672. "for this drill object."
  6673. #: flatcamGUI/ObjectUI.py:686 flatcamGUI/ObjectUI.py:1186
  6674. msgid "Tool change"
  6675. msgstr "Tool change"
  6676. #: flatcamGUI/ObjectUI.py:694 flatcamGUI/ObjectUI.py:1179
  6677. msgid "Tool change Z:"
  6678. msgstr "Tool change Z:"
  6679. #: flatcamGUI/ObjectUI.py:696 flatcamGUI/ObjectUI.py:1182
  6680. msgid ""
  6681. "Z-axis position (height) for\n"
  6682. "tool change."
  6683. msgstr ""
  6684. "Z-axis position (height) for\n"
  6685. "tool change."
  6686. #: flatcamGUI/ObjectUI.py:707
  6687. msgid ""
  6688. "Tool height just before starting the work.\n"
  6689. "Delete the value if you don't need this feature."
  6690. msgstr ""
  6691. "Tool height just before starting the work.\n"
  6692. "Delete the value if you don't need this feature."
  6693. #: flatcamGUI/ObjectUI.py:717
  6694. msgid ""
  6695. "Z-axis position (height) for\n"
  6696. "the last move."
  6697. msgstr ""
  6698. "Z-axis position (height) for\n"
  6699. "the last move."
  6700. #: flatcamGUI/ObjectUI.py:725
  6701. msgid "Feedrate (Plunge):"
  6702. msgstr "Feedrate (Plunge):"
  6703. #: flatcamGUI/ObjectUI.py:727
  6704. msgid ""
  6705. "Tool speed while drilling\n"
  6706. "(in units per minute).\n"
  6707. "This is for linear move G01."
  6708. msgstr ""
  6709. "Tool speed while drilling\n"
  6710. "(in units per minute).\n"
  6711. "This is for linear move G01."
  6712. #: flatcamGUI/ObjectUI.py:777
  6713. msgid ""
  6714. "The json file that dictates\n"
  6715. "gcode output."
  6716. msgstr ""
  6717. "The json file that dictates\n"
  6718. "gcode output."
  6719. #: flatcamGUI/ObjectUI.py:809
  6720. msgid ""
  6721. "Select from the Tools Table above\n"
  6722. "the tools you want to include."
  6723. msgstr ""
  6724. "Select from the Tools Table above\n"
  6725. "the tools you want to include."
  6726. #: flatcamGUI/ObjectUI.py:816
  6727. msgid "<b>Type: </b>"
  6728. msgstr "<b>Type: </b>"
  6729. #: flatcamGUI/ObjectUI.py:818
  6730. msgid ""
  6731. "Choose what to use for GCode generation:\n"
  6732. "'Drills', 'Slots' or 'Both'.\n"
  6733. "When choosing 'Slots' or 'Both', slots will be\n"
  6734. "converted to a series of drills."
  6735. msgstr ""
  6736. "Choose what to use for GCode generation:\n"
  6737. "'Drills', 'Slots' or 'Both'.\n"
  6738. "When choosing 'Slots' or 'Both', slots will be\n"
  6739. "converted to a series of drills."
  6740. #: flatcamGUI/ObjectUI.py:833
  6741. msgid "Create GCode"
  6742. msgstr "Create GCode"
  6743. #: flatcamGUI/ObjectUI.py:835
  6744. msgid "Generate the CNC Job."
  6745. msgstr "Generate the CNC Job."
  6746. #: flatcamGUI/ObjectUI.py:847
  6747. msgid ""
  6748. "Select from the Tools Table above\n"
  6749. " the hole dias that are to be milled."
  6750. msgstr ""
  6751. "Select from the Tools Table above\n"
  6752. " the hole dias that are to be milled."
  6753. #: flatcamGUI/ObjectUI.py:854
  6754. msgid "Drills Tool dia:"
  6755. msgstr "Drills Tool dia:"
  6756. #: flatcamGUI/ObjectUI.py:861
  6757. msgid "Mill Drills Geo"
  6758. msgstr "Mill Drills Geo"
  6759. #: flatcamGUI/ObjectUI.py:863
  6760. msgid ""
  6761. "Create the Geometry Object\n"
  6762. "for milling DRILLS toolpaths."
  6763. msgstr ""
  6764. "Create the Geometry Object\n"
  6765. "for milling DRILLS toolpaths."
  6766. #: flatcamGUI/ObjectUI.py:870
  6767. msgid "Slots Tool dia:"
  6768. msgstr "Slots Tool dia:"
  6769. #: flatcamGUI/ObjectUI.py:877
  6770. msgid "Mill Slots Geo"
  6771. msgstr "Mill Slots Geo"
  6772. #: flatcamGUI/ObjectUI.py:879
  6773. msgid ""
  6774. "Create the Geometry Object\n"
  6775. "for milling SLOTS toolpaths."
  6776. msgstr ""
  6777. "Create the Geometry Object\n"
  6778. "for milling SLOTS toolpaths."
  6779. #: flatcamGUI/ObjectUI.py:897
  6780. msgid "Geometry Object"
  6781. msgstr "Geometry Object"
  6782. #: flatcamGUI/ObjectUI.py:928
  6783. msgid ""
  6784. "Tools in this Geometry object used for cutting.\n"
  6785. "The 'Offset' entry will set an offset for the cut.\n"
  6786. "'Offset' can be inside, outside, on path (none) and custom.\n"
  6787. "'Type' entry is only informative and it allow to know the \n"
  6788. "intent of using the current tool. \n"
  6789. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  6790. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  6791. "ball(B), or V-Shaped(V). \n"
  6792. "When V-shaped is selected the 'Type' entry is automatically \n"
  6793. "set to Isolation, the CutZ parameter in the UI form is\n"
  6794. "grayed out and Cut Z is automatically calculated from the newly \n"
  6795. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  6796. msgstr ""
  6797. "Tools in this Geometry object used for cutting.\n"
  6798. "The 'Offset' entry will set an offset for the cut.\n"
  6799. "'Offset' can be inside, outside, on path (none) and custom.\n"
  6800. "'Type' entry is only informative and it allow to know the \n"
  6801. "intent of using the current tool. \n"
  6802. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  6803. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  6804. "ball(B), or V-Shaped(V). \n"
  6805. "When V-shaped is selected the 'Type' entry is automatically \n"
  6806. "set to Isolation, the CutZ parameter in the UI form is\n"
  6807. "grayed out and Cut Z is automatically calculated from the newly \n"
  6808. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  6809. #: flatcamGUI/ObjectUI.py:959 flatcamGUI/ObjectUI.py:1517
  6810. msgid "Dia"
  6811. msgstr "Dia"
  6812. #: flatcamGUI/ObjectUI.py:959 flatcamGUI/ObjectUI.py:1517
  6813. msgid "TT"
  6814. msgstr "TT"
  6815. #: flatcamGUI/ObjectUI.py:966
  6816. msgid ""
  6817. "This is the Tool Number.\n"
  6818. "When ToolChange is checked, on toolchange event this value\n"
  6819. "will be showed as a T1, T2 ... Tn"
  6820. msgstr ""
  6821. "This is the Tool Number.\n"
  6822. "When ToolChange is checked, on toolchange event this value\n"
  6823. "will be showed as a T1, T2 ... Tn"
  6824. #: flatcamGUI/ObjectUI.py:977
  6825. msgid ""
  6826. "The value for the Offset can be:\n"
  6827. "- Path -> There is no offset, the tool cut will be done through the geometry "
  6828. "line.\n"
  6829. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  6830. "'pocket'.\n"
  6831. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  6832. msgstr ""
  6833. "The value for the Offset can be:\n"
  6834. "- Path -> There is no offset, the tool cut will be done through the geometry "
  6835. "line.\n"
  6836. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  6837. "'pocket'.\n"
  6838. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  6839. #: flatcamGUI/ObjectUI.py:984
  6840. msgid ""
  6841. "The (Operation) Type has only informative value. Usually the UI form "
  6842. "values \n"
  6843. "are choosed based on the operation type and this will serve as a reminder.\n"
  6844. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  6845. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  6846. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  6847. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  6848. "tip."
  6849. msgstr ""
  6850. "The (Operation) Type has only informative value. Usually the UI form "
  6851. "values \n"
  6852. "are choosed based on the operation type and this will serve as a reminder.\n"
  6853. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  6854. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  6855. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  6856. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  6857. "tip."
  6858. #: flatcamGUI/ObjectUI.py:993
  6859. msgid ""
  6860. "The Tool Type (TT) can be:\n"
  6861. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  6862. "cut width in material\n"
  6863. "is exactly the tool diameter.\n"
  6864. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  6865. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  6866. "two additional UI form\n"
  6867. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  6868. "the Z-Cut parameter such\n"
  6869. "as the cut width into material will be equal with the value in the Tool "
  6870. "Diameter column of this table.\n"
  6871. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  6872. "as Isolation."
  6873. msgstr ""
  6874. "The Tool Type (TT) can be:\n"
  6875. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  6876. "cut width in material\n"
  6877. "is exactly the tool diameter.\n"
  6878. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  6879. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  6880. "two additional UI form\n"
  6881. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  6882. "the Z-Cut parameter such\n"
  6883. "as the cut width into material will be equal with the value in the Tool "
  6884. "Diameter column of this table.\n"
  6885. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  6886. "as Isolation."
  6887. #: flatcamGUI/ObjectUI.py:1004
  6888. msgid ""
  6889. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  6890. "that holds the geometry\n"
  6891. "data into the tools. For those geometries, deleting the tool will delete the "
  6892. "geometry data also,\n"
  6893. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  6894. "plot on canvas\n"
  6895. "for the corresponding tool."
  6896. msgstr ""
  6897. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  6898. "that holds the geometry\n"
  6899. "data into the tools. For those geometries, deleting the tool will delete the "
  6900. "geometry data also,\n"
  6901. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  6902. "plot on canvas\n"
  6903. "for the corresponding tool."
  6904. #: flatcamGUI/ObjectUI.py:1017
  6905. msgid "Tool Offset:"
  6906. msgstr "Tool Offset:"
  6907. #: flatcamGUI/ObjectUI.py:1020
  6908. msgid ""
  6909. "The value to offset the cut when \n"
  6910. "the Offset type selected is 'Offset'.\n"
  6911. "The value can be positive for 'outside'\n"
  6912. "cut and negative for 'inside' cut."
  6913. msgstr ""
  6914. "The value to offset the cut when \n"
  6915. "the Offset type selected is 'Offset'.\n"
  6916. "The value can be positive for 'outside'\n"
  6917. "cut and negative for 'inside' cut."
  6918. #: flatcamGUI/ObjectUI.py:1043
  6919. msgid "<b>Tool Dia:</b>"
  6920. msgstr "<b>Tool Dia:</b>"
  6921. #: flatcamGUI/ObjectUI.py:1062 flatcamTools/ToolNonCopperClear.py:135
  6922. #: flatcamTools/ToolPaint.py:133
  6923. msgid ""
  6924. "Add a new tool to the Tool Table\n"
  6925. "with the diameter specified above."
  6926. msgstr ""
  6927. "Add a new tool to the Tool Table\n"
  6928. "with the diameter specified above."
  6929. #: flatcamGUI/ObjectUI.py:1070
  6930. msgid ""
  6931. "Copy a selection of tools in the Tool Table\n"
  6932. "by first selecting a row in the Tool Table."
  6933. msgstr ""
  6934. "Copy a selection of tools in the Tool Table\n"
  6935. "by first selecting a row in the Tool Table."
  6936. #: flatcamGUI/ObjectUI.py:1078
  6937. msgid ""
  6938. "Delete a selection of tools in the Tool Table\n"
  6939. "by first selecting a row in the Tool Table."
  6940. msgstr ""
  6941. "Delete a selection of tools in the Tool Table\n"
  6942. "by first selecting a row in the Tool Table."
  6943. #: flatcamGUI/ObjectUI.py:1094
  6944. msgid "<b>Tool Data</b>"
  6945. msgstr "<b>Tool Data</b>"
  6946. #: flatcamGUI/ObjectUI.py:1097
  6947. msgid ""
  6948. "The data used for creating GCode.\n"
  6949. "Each tool store it's own set of such data."
  6950. msgstr ""
  6951. "The data used for creating GCode.\n"
  6952. "Each tool store it's own set of such data."
  6953. #: flatcamGUI/ObjectUI.py:1107
  6954. msgid "V-Tip Dia:"
  6955. msgstr "V-Tip Dia:"
  6956. #: flatcamGUI/ObjectUI.py:1110
  6957. msgid "The tip diameter for V-Shape Tool"
  6958. msgstr "The tip diameter for V-Shape Tool"
  6959. #: flatcamGUI/ObjectUI.py:1118
  6960. msgid "V-Tip Angle:"
  6961. msgstr "V-Tip Angle:"
  6962. #: flatcamGUI/ObjectUI.py:1121
  6963. msgid ""
  6964. "The tip angle for V-Shape Tool.\n"
  6965. "In degree."
  6966. msgstr ""
  6967. "The tip angle for V-Shape Tool.\n"
  6968. "In degree."
  6969. #: flatcamGUI/ObjectUI.py:1142
  6970. msgid "Multi-Depth:"
  6971. msgstr "Multi-Depth:"
  6972. #: flatcamGUI/ObjectUI.py:1145
  6973. msgid ""
  6974. "Use multiple passes to limit\n"
  6975. "the cut depth in each pass. Will\n"
  6976. "cut multiple times until Cut Z is\n"
  6977. "reached.\n"
  6978. "To the right, input the depth of \n"
  6979. "each pass (positive value)."
  6980. msgstr ""
  6981. "Use multiple passes to limit\n"
  6982. "the cut depth in each pass. Will\n"
  6983. "cut multiple times until Cut Z is\n"
  6984. "reached.\n"
  6985. "To the right, input the depth of \n"
  6986. "each pass (positive value)."
  6987. #: flatcamGUI/ObjectUI.py:1158
  6988. msgid "Depth of each pass (positive)."
  6989. msgstr "Depth of each pass (positive)."
  6990. #: flatcamGUI/ObjectUI.py:1189
  6991. msgid ""
  6992. "Include tool-change sequence\n"
  6993. "in the Machine Code (Pause for tool change)."
  6994. msgstr ""
  6995. "Include tool-change sequence\n"
  6996. "in the Machine Code (Pause for tool change)."
  6997. #: flatcamGUI/ObjectUI.py:1215
  6998. msgid ""
  6999. "This is the height (Z) at which the CNC\n"
  7000. "will go as the last move."
  7001. msgstr ""
  7002. "This is the height (Z) at which the CNC\n"
  7003. "will go as the last move."
  7004. #: flatcamGUI/ObjectUI.py:1236
  7005. msgid "Feed Rate Z (Plunge):"
  7006. msgstr "Feed Rate Z (Plunge):"
  7007. #: flatcamGUI/ObjectUI.py:1239
  7008. msgid ""
  7009. "Cutting speed in the Z\n"
  7010. "plane in units per minute"
  7011. msgstr ""
  7012. "Cutting speed in the Z\n"
  7013. "plane in units per minute"
  7014. #: flatcamGUI/ObjectUI.py:1248
  7015. msgid "Feed Rate Rapids:"
  7016. msgstr "Feed Rate Rapids:"
  7017. #: flatcamGUI/ObjectUI.py:1251
  7018. msgid ""
  7019. "Cutting speed in the XY\n"
  7020. "plane in units per minute\n"
  7021. "(in units per minute).\n"
  7022. "This is for the rapid move G00.\n"
  7023. "It is useful only for Marlin,\n"
  7024. "ignore for any other cases."
  7025. msgstr ""
  7026. "Cutting speed in the XY\n"
  7027. "plane in units per minute\n"
  7028. "(in units per minute).\n"
  7029. "This is for the rapid move G00.\n"
  7030. "It is useful only for Marlin,\n"
  7031. "ignore for any other cases."
  7032. #: flatcamGUI/ObjectUI.py:1264
  7033. msgid "Cut over 1st pt"
  7034. msgstr "Cut over 1st pt"
  7035. #: flatcamGUI/ObjectUI.py:1279
  7036. msgid ""
  7037. "Speed of the spindle in RPM (optional).\n"
  7038. "If LASER postprocessor is used,\n"
  7039. "this value is the power of laser."
  7040. msgstr ""
  7041. "Speed of the spindle in RPM (optional).\n"
  7042. "If LASER postprocessor is used,\n"
  7043. "this value is the power of laser."
  7044. #: flatcamGUI/ObjectUI.py:1308
  7045. msgid "PostProcessor:"
  7046. msgstr "PostProcessor:"
  7047. #: flatcamGUI/ObjectUI.py:1311
  7048. msgid ""
  7049. "The Postprocessor file that dictates\n"
  7050. "the Machine Code (like GCode, RML, HPGL) output."
  7051. msgstr ""
  7052. "The Postprocessor file that dictates\n"
  7053. "the Machine Code (like GCode, RML, HPGL) output."
  7054. #: flatcamGUI/ObjectUI.py:1349
  7055. msgid ""
  7056. "Add at least one tool in the tool-table.\n"
  7057. "Click the header to select all, or Ctrl + LMB\n"
  7058. "for custom selection of tools."
  7059. msgstr ""
  7060. "Add at least one tool in the tool-table.\n"
  7061. "Click the header to select all, or Ctrl + LMB\n"
  7062. "for custom selection of tools."
  7063. #: flatcamGUI/ObjectUI.py:1356
  7064. msgid "Generate"
  7065. msgstr "Generate"
  7066. #: flatcamGUI/ObjectUI.py:1359
  7067. msgid "Generate the CNC Job object."
  7068. msgstr "Generate the CNC Job object."
  7069. #: flatcamGUI/ObjectUI.py:1367
  7070. msgid "<b>Paint Area:</b>"
  7071. msgstr "<b>Paint Area:</b>"
  7072. #: flatcamGUI/ObjectUI.py:1382
  7073. msgid "Launch Paint Tool in Tools Tab."
  7074. msgstr "Launch Paint Tool in Tools Tab."
  7075. #: flatcamGUI/ObjectUI.py:1399
  7076. msgid "CNC Job Object"
  7077. msgstr "CNC Job Object"
  7078. #: flatcamGUI/ObjectUI.py:1418
  7079. msgid "<b>Plot kind:</b>"
  7080. msgstr "<b>Plot kind:</b>"
  7081. #: flatcamGUI/ObjectUI.py:1443
  7082. msgid "<b>Travelled dist.:</b>"
  7083. msgstr "<b>Travelled dist.:</b>"
  7084. #: flatcamGUI/ObjectUI.py:1446 flatcamGUI/ObjectUI.py:1453
  7085. msgid ""
  7086. "This is the total travelled distance on X-Y plane.\n"
  7087. "In current units."
  7088. msgstr ""
  7089. "This is the total travelled distance on X-Y plane.\n"
  7090. "In current units."
  7091. #: flatcamGUI/ObjectUI.py:1481
  7092. msgid "<b>CNC Tools Table</b>"
  7093. msgstr "<b>CNC Tools Table</b>"
  7094. #: flatcamGUI/ObjectUI.py:1484
  7095. msgid ""
  7096. "Tools in this CNCJob object used for cutting.\n"
  7097. "The tool diameter is used for plotting on canvas.\n"
  7098. "The 'Offset' entry will set an offset for the cut.\n"
  7099. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7100. "'Type' entry is only informative and it allow to know the \n"
  7101. "intent of using the current tool. \n"
  7102. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7103. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7104. "ball(B), or V-Shaped(V)."
  7105. msgstr ""
  7106. "Tools in this CNCJob object used for cutting.\n"
  7107. "The tool diameter is used for plotting on canvas.\n"
  7108. "The 'Offset' entry will set an offset for the cut.\n"
  7109. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7110. "'Type' entry is only informative and it allow to know the \n"
  7111. "intent of using the current tool. \n"
  7112. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7113. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7114. "ball(B), or V-Shaped(V)."
  7115. #: flatcamGUI/ObjectUI.py:1518
  7116. msgid "P"
  7117. msgstr "P"
  7118. #: flatcamGUI/ObjectUI.py:1524
  7119. msgid "Update Plot"
  7120. msgstr "Update Plot"
  7121. #: flatcamGUI/ObjectUI.py:1526
  7122. msgid "Update the plot."
  7123. msgstr "Update the plot."
  7124. #: flatcamGUI/ObjectUI.py:1533
  7125. msgid "<b>Export CNC Code:</b>"
  7126. msgstr "<b>Export CNC Code:</b>"
  7127. #: flatcamGUI/ObjectUI.py:1541
  7128. msgid "Prepend to CNC Code:"
  7129. msgstr "Prepend to CNC Code:"
  7130. #: flatcamGUI/ObjectUI.py:1544
  7131. msgid ""
  7132. "Type here any G-Code commands you would\n"
  7133. "like to add to the beginning of the generated file."
  7134. msgstr ""
  7135. "Type here any G-Code commands you would\n"
  7136. "like to add to the beginning of the generated file."
  7137. #: flatcamGUI/ObjectUI.py:1554
  7138. msgid "Append to CNC Code"
  7139. msgstr "Append to CNC Code"
  7140. #: flatcamGUI/ObjectUI.py:1578
  7141. msgid ""
  7142. "Type here any G-Code commands you would\n"
  7143. "like to be executed when Toolchange event is encountered.\n"
  7144. "This will constitute a Custom Toolchange GCode,\n"
  7145. "or a Toolchange Macro.\n"
  7146. "The FlatCAM variables are surrounded by '%' symbol.\n"
  7147. "\n"
  7148. "WARNING: it can be used only with a postprocessor file\n"
  7149. "that has 'toolchange_custom' in it's name and this is built\n"
  7150. "having as template the 'Toolchange Custom' posprocessor file."
  7151. msgstr ""
  7152. "Type here any G-Code commands you would\n"
  7153. "like to be executed when Toolchange event is encountered.\n"
  7154. "This will constitute a Custom Toolchange GCode,\n"
  7155. "or a Toolchange Macro.\n"
  7156. "The FlatCAM variables are surrounded by '%' symbol.\n"
  7157. "\n"
  7158. "WARNING: it can be used only with a postprocessor file\n"
  7159. "that has 'toolchange_custom' in it's name and this is built\n"
  7160. "having as template the 'Toolchange Custom' posprocessor file."
  7161. #: flatcamGUI/ObjectUI.py:1634
  7162. msgid "z_cut = depth where to cut"
  7163. msgstr "z_cut = depth where to cut"
  7164. #: flatcamGUI/ObjectUI.py:1635
  7165. msgid "z_move = height where to travel"
  7166. msgstr "z_move = height where to travel"
  7167. #: flatcamGUI/ObjectUI.py:1656
  7168. msgid "View CNC Code"
  7169. msgstr "View CNC Code"
  7170. #: flatcamGUI/ObjectUI.py:1659
  7171. msgid ""
  7172. "Opens TAB to view/modify/print G-Code\n"
  7173. "file."
  7174. msgstr ""
  7175. "Opens TAB to view/modify/print G-Code\n"
  7176. "file."
  7177. #: flatcamGUI/ObjectUI.py:1665
  7178. msgid "Save CNC Code"
  7179. msgstr "Save CNC Code"
  7180. #: flatcamGUI/ObjectUI.py:1668
  7181. msgid ""
  7182. "Opens dialog to save G-Code\n"
  7183. "file."
  7184. msgstr ""
  7185. "Opens dialog to save G-Code\n"
  7186. "file."
  7187. #: flatcamTools/ToolCalculators.py:24
  7188. msgid "Calculators"
  7189. msgstr "Calculators"
  7190. #: flatcamTools/ToolCalculators.py:25
  7191. msgid "V-Shape Tool Calculator"
  7192. msgstr "V-Shape Tool Calculator"
  7193. #: flatcamTools/ToolCalculators.py:26
  7194. msgid "Units Calculator"
  7195. msgstr "Units Calculator"
  7196. #: flatcamTools/ToolCalculators.py:27
  7197. msgid "ElectroPlating Calculator"
  7198. msgstr "ElectroPlating Calculator"
  7199. #: flatcamTools/ToolCalculators.py:68
  7200. msgid "Here you enter the value to be converted from INCH to MM"
  7201. msgstr "Here you enter the value to be converted from INCH to MM"
  7202. #: flatcamTools/ToolCalculators.py:73
  7203. msgid "Here you enter the value to be converted from MM to INCH"
  7204. msgstr "Here you enter the value to be converted from MM to INCH"
  7205. #: flatcamTools/ToolCalculators.py:98
  7206. msgid ""
  7207. "This is the diameter of the tool tip.\n"
  7208. "The manufacturer specifies it."
  7209. msgstr ""
  7210. "This is the diameter of the tool tip.\n"
  7211. "The manufacturer specifies it."
  7212. #: flatcamTools/ToolCalculators.py:101
  7213. msgid "Tip Angle:"
  7214. msgstr "Tip Angle:"
  7215. #: flatcamTools/ToolCalculators.py:105
  7216. msgid ""
  7217. "This is the angle of the tip of the tool.\n"
  7218. "It is specified by manufacturer."
  7219. msgstr ""
  7220. "This is the angle of the tip of the tool.\n"
  7221. "It is specified by manufacturer."
  7222. #: flatcamTools/ToolCalculators.py:112
  7223. msgid ""
  7224. "This is the depth to cut into the material.\n"
  7225. "In the CNCJob is the CutZ parameter."
  7226. msgstr ""
  7227. "This is the depth to cut into the material.\n"
  7228. "In the CNCJob is the CutZ parameter."
  7229. #: flatcamTools/ToolCalculators.py:115
  7230. msgid "Tool Diameter:"
  7231. msgstr "Tool Diameter:"
  7232. #: flatcamTools/ToolCalculators.py:119
  7233. msgid ""
  7234. "This is the tool diameter to be entered into\n"
  7235. "FlatCAM Gerber section.\n"
  7236. "In the CNCJob section it is called >Tool dia<."
  7237. msgstr ""
  7238. "This is the tool diameter to be entered into\n"
  7239. "FlatCAM Gerber section.\n"
  7240. "In the CNCJob section it is called >Tool dia<."
  7241. #: flatcamTools/ToolCalculators.py:131 flatcamTools/ToolCalculators.py:214
  7242. msgid "Calculate"
  7243. msgstr "Calculate"
  7244. #: flatcamTools/ToolCalculators.py:134
  7245. msgid ""
  7246. "Calculate either the Cut Z or the effective tool diameter,\n"
  7247. " depending on which is desired and which is known. "
  7248. msgstr ""
  7249. "Calculate either the Cut Z or the effective tool diameter,\n"
  7250. " depending on which is desired and which is known. "
  7251. #: flatcamTools/ToolCalculators.py:190
  7252. msgid "Current Value:"
  7253. msgstr "Current Value:"
  7254. #: flatcamTools/ToolCalculators.py:194
  7255. msgid ""
  7256. "This is the current intensity value\n"
  7257. "to be set on the Power Supply. In Amps."
  7258. msgstr ""
  7259. "This is the current intensity value\n"
  7260. "to be set on the Power Supply. In Amps."
  7261. #: flatcamTools/ToolCalculators.py:198
  7262. msgid "Time:"
  7263. msgstr "Time:"
  7264. #: flatcamTools/ToolCalculators.py:202
  7265. msgid ""
  7266. "This is the calculated time required for the procedure.\n"
  7267. "In minutes."
  7268. msgstr ""
  7269. "This is the calculated time required for the procedure.\n"
  7270. "In minutes."
  7271. #: flatcamTools/ToolCalculators.py:217
  7272. msgid ""
  7273. "Calculate the current intensity value and the procedure time,\n"
  7274. " depending on the parameters above"
  7275. msgstr ""
  7276. "Calculate the current intensity value and the procedure time,\n"
  7277. " depending on the parameters above"
  7278. #: flatcamTools/ToolCutOut.py:17
  7279. msgid "Cutout PCB"
  7280. msgstr "Cutout PCB"
  7281. #: flatcamTools/ToolCutOut.py:53
  7282. msgid "Obj Type:"
  7283. msgstr "Obj Type:"
  7284. #: flatcamTools/ToolCutOut.py:55
  7285. msgid ""
  7286. "Specify the type of object to be cutout.\n"
  7287. "It can be of type: Gerber or Geometry.\n"
  7288. "What is selected here will dictate the kind\n"
  7289. "of objects that will populate the 'Object' combobox."
  7290. msgstr ""
  7291. "Specify the type of object to be cutout.\n"
  7292. "It can be of type: Gerber or Geometry.\n"
  7293. "What is selected here will dictate the kind\n"
  7294. "of objects that will populate the 'Object' combobox."
  7295. #: flatcamTools/ToolCutOut.py:69 flatcamTools/ToolPanelize.py:71
  7296. msgid "Object:"
  7297. msgstr "Object:"
  7298. #: flatcamTools/ToolCutOut.py:71
  7299. msgid "Object to be cutout. "
  7300. msgstr "Object to be cutout. "
  7301. #: flatcamTools/ToolCutOut.py:79
  7302. msgid ""
  7303. "Diameter of the tool used to cutout\n"
  7304. "the PCB shape out of the surrounding material."
  7305. msgstr ""
  7306. "Diameter of the tool used to cutout\n"
  7307. "the PCB shape out of the surrounding material."
  7308. #: flatcamTools/ToolCutOut.py:88
  7309. msgid ""
  7310. "Margin over bounds. A positive value here\n"
  7311. "will make the cutout of the PCB further from\n"
  7312. "the actual PCB border"
  7313. msgstr ""
  7314. "Margin over bounds. A positive value here\n"
  7315. "will make the cutout of the PCB further from\n"
  7316. "the actual PCB border"
  7317. #: flatcamTools/ToolCutOut.py:98
  7318. msgid ""
  7319. "The size of the bridge gaps in the cutout\n"
  7320. "used to keep the board connected to\n"
  7321. "the surrounding material (the one \n"
  7322. "from which the PCB is cutout)."
  7323. msgstr ""
  7324. "The size of the bridge gaps in the cutout\n"
  7325. "used to keep the board connected to\n"
  7326. "the surrounding material (the one \n"
  7327. "from which the PCB is cutout)."
  7328. #: flatcamTools/ToolCutOut.py:114
  7329. msgid "A. Automatic Bridge Gaps"
  7330. msgstr "A. Automatic Bridge Gaps"
  7331. #: flatcamTools/ToolCutOut.py:116
  7332. msgid "This section handle creation of automatic bridge gaps."
  7333. msgstr "This section handle creation of automatic bridge gaps."
  7334. #: flatcamTools/ToolCutOut.py:127
  7335. msgid ""
  7336. "Number of gaps used for the Automatic cutout.\n"
  7337. "There can be maximum 8 bridges/gaps.\n"
  7338. "The choices are:\n"
  7339. "- lr - left + right\n"
  7340. "- tb - top + bottom\n"
  7341. "- 4 - left + right +top + bottom\n"
  7342. "- 2lr - 2*left + 2*right\n"
  7343. "- 2tb - 2*top + 2*bottom\n"
  7344. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7345. msgstr ""
  7346. "Number of gaps used for the Automatic cutout.\n"
  7347. "There can be maximum 8 bridges/gaps.\n"
  7348. "The choices are:\n"
  7349. "- lr - left + right\n"
  7350. "- tb - top + bottom\n"
  7351. "- 4 - left + right +top + bottom\n"
  7352. "- 2lr - 2*left + 2*right\n"
  7353. "- 2tb - 2*top + 2*bottom\n"
  7354. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7355. #: flatcamTools/ToolCutOut.py:150
  7356. msgid "FreeForm:"
  7357. msgstr "FreeForm:"
  7358. #: flatcamTools/ToolCutOut.py:152
  7359. msgid ""
  7360. "The cutout shape can be of ny shape.\n"
  7361. "Useful when the PCB has a non-rectangular shape."
  7362. msgstr ""
  7363. "The cutout shape can be of ny shape.\n"
  7364. "Useful when the PCB has a non-rectangular shape."
  7365. #: flatcamTools/ToolCutOut.py:161
  7366. msgid ""
  7367. "Cutout the selected object.\n"
  7368. "The cutout shape can be of any shape.\n"
  7369. "Useful when the PCB has a non-rectangular shape."
  7370. msgstr ""
  7371. "Cutout the selected object.\n"
  7372. "The cutout shape can be of any shape.\n"
  7373. "Useful when the PCB has a non-rectangular shape."
  7374. #: flatcamTools/ToolCutOut.py:170
  7375. msgid "Rectangular:"
  7376. msgstr "Rectangular:"
  7377. #: flatcamTools/ToolCutOut.py:172
  7378. msgid ""
  7379. "The resulting cutout shape is\n"
  7380. "always a rectangle shape and it will be\n"
  7381. "the bounding box of the Object."
  7382. msgstr ""
  7383. "The resulting cutout shape is\n"
  7384. "always a rectangle shape and it will be\n"
  7385. "the bounding box of the Object."
  7386. #: flatcamTools/ToolCutOut.py:181
  7387. msgid ""
  7388. "Cutout the selected object.\n"
  7389. "The resulting cutout shape is\n"
  7390. "always a rectangle shape and it will be\n"
  7391. "the bounding box of the Object."
  7392. msgstr ""
  7393. "Cutout the selected object.\n"
  7394. "The resulting cutout shape is\n"
  7395. "always a rectangle shape and it will be\n"
  7396. "the bounding box of the Object."
  7397. #: flatcamTools/ToolCutOut.py:189
  7398. msgid "B. Manual Bridge Gaps"
  7399. msgstr "B. Manual Bridge Gaps"
  7400. #: flatcamTools/ToolCutOut.py:191
  7401. msgid ""
  7402. "This section handle creation of manual bridge gaps.\n"
  7403. "This is done by mouse clicking on the perimeter of the\n"
  7404. "Geometry object that is used as a cutout object. "
  7405. msgstr ""
  7406. "This section handle creation of manual bridge gaps.\n"
  7407. "This is done by mouse clicking on the perimeter of the\n"
  7408. "Geometry object that is used as a cutout object. "
  7409. #: flatcamTools/ToolCutOut.py:207
  7410. msgid "Geo Obj:"
  7411. msgstr "Geo Obj:"
  7412. #: flatcamTools/ToolCutOut.py:209
  7413. msgid "Geometry object used to create the manual cutout."
  7414. msgstr "Geometry object used to create the manual cutout."
  7415. #: flatcamTools/ToolCutOut.py:220
  7416. msgid "Manual Geo:"
  7417. msgstr "Manual Geo:"
  7418. #: flatcamTools/ToolCutOut.py:222 flatcamTools/ToolCutOut.py:232
  7419. msgid ""
  7420. "If the object to be cutout is a Gerber\n"
  7421. "first create a Geometry that surrounds it,\n"
  7422. "to be used as the cutout, if one doesn't exist yet.\n"
  7423. "Select the source Gerber file in the top object combobox."
  7424. msgstr ""
  7425. "If the object to be cutout is a Gerber\n"
  7426. "first create a Geometry that surrounds it,\n"
  7427. "to be used as the cutout, if one doesn't exist yet.\n"
  7428. "Select the source Gerber file in the top object combobox."
  7429. #: flatcamTools/ToolCutOut.py:242
  7430. msgid "Manual Add Bridge Gaps:"
  7431. msgstr "Manual Add Bridge Gaps:"
  7432. #: flatcamTools/ToolCutOut.py:244
  7433. msgid ""
  7434. "Use the left mouse button (LMB) click\n"
  7435. "to create a bridge gap to separate the PCB from\n"
  7436. "the surrounding material."
  7437. msgstr ""
  7438. "Use the left mouse button (LMB) click\n"
  7439. "to create a bridge gap to separate the PCB from\n"
  7440. "the surrounding material."
  7441. #: flatcamTools/ToolCutOut.py:251
  7442. msgid "Generate Gap"
  7443. msgstr "Generate Gap"
  7444. #: flatcamTools/ToolCutOut.py:253
  7445. msgid ""
  7446. "Use the left mouse button (LMB) click\n"
  7447. "to create a bridge gap to separate the PCB from\n"
  7448. "the surrounding material.\n"
  7449. "The LMB click has to be done on the perimeter of\n"
  7450. "the Geometry object used as a cutout geometry."
  7451. msgstr ""
  7452. "Use the left mouse button (LMB) click\n"
  7453. "to create a bridge gap to separate the PCB from\n"
  7454. "the surrounding material.\n"
  7455. "The LMB click has to be done on the perimeter of\n"
  7456. "the Geometry object used as a cutout geometry."
  7457. #: flatcamTools/ToolCutOut.py:329 flatcamTools/ToolCutOut.py:468
  7458. #: flatcamTools/ToolNonCopperClear.py:659 flatcamTools/ToolPaint.py:757
  7459. #: flatcamTools/ToolPanelize.py:293 flatcamTools/ToolPanelize.py:307
  7460. #, python-format
  7461. msgid "[ERROR_NOTCL]Could not retrieve object: %s"
  7462. msgstr "[ERROR_NOTCL]Could not retrieve object: %s"
  7463. #: flatcamTools/ToolCutOut.py:333
  7464. msgid ""
  7465. "[ERROR_NOTCL]There is no object selected for Cutout.\n"
  7466. "Select one and try again."
  7467. msgstr ""
  7468. "[ERROR_NOTCL]There is no object selected for Cutout.\n"
  7469. "Select one and try again."
  7470. #: flatcamTools/ToolCutOut.py:349
  7471. msgid ""
  7472. "[WARNING_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
  7473. msgstr ""
  7474. "[WARNING_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
  7475. #: flatcamTools/ToolCutOut.py:359 flatcamTools/ToolCutOut.py:496
  7476. #: flatcamTools/ToolCutOut.py:721
  7477. msgid ""
  7478. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  7479. msgstr ""
  7480. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  7481. #: flatcamTools/ToolCutOut.py:370 flatcamTools/ToolCutOut.py:507
  7482. #: flatcamTools/ToolCutOut.py:616
  7483. msgid ""
  7484. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  7485. msgstr ""
  7486. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  7487. #: flatcamTools/ToolCutOut.py:377 flatcamTools/ToolCutOut.py:514
  7488. msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  7489. msgstr "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  7490. #: flatcamTools/ToolCutOut.py:381 flatcamTools/ToolCutOut.py:518
  7491. msgid ""
  7492. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  7493. "or 8. Fill in a correct value and retry. "
  7494. msgstr ""
  7495. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  7496. "or 8. Fill in a correct value and retry. "
  7497. #: flatcamTools/ToolCutOut.py:386 flatcamTools/ToolCutOut.py:523
  7498. msgid ""
  7499. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  7500. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  7501. "Geometry,\n"
  7502. "and after that perform Cutout."
  7503. msgstr ""
  7504. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  7505. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  7506. "Geometry,\n"
  7507. "and after that perform Cutout."
  7508. #: flatcamTools/ToolCutOut.py:452 flatcamTools/ToolCutOut.py:586
  7509. msgid "[success] Any form CutOut operation finished."
  7510. msgstr "[success] Any form CutOut operation finished."
  7511. #: flatcamTools/ToolCutOut.py:472 flatcamTools/ToolPaint.py:761
  7512. #: flatcamTools/ToolPanelize.py:299
  7513. #, python-format
  7514. msgid "[ERROR_NOTCL]Object not found: %s"
  7515. msgstr "[ERROR_NOTCL]Object not found: %s"
  7516. #: flatcamTools/ToolCutOut.py:486 flatcamTools/ToolCutOut.py:606
  7517. #: flatcamTools/ToolCutOut.py:711
  7518. msgid ""
  7519. "[ERROR_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
  7520. msgstr ""
  7521. "[ERROR_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
  7522. #: flatcamTools/ToolCutOut.py:591
  7523. msgid ""
  7524. "Click on the selected geometry object perimeter to create a bridge gap ..."
  7525. msgstr ""
  7526. "Click on the selected geometry object perimeter to create a bridge gap ..."
  7527. #: flatcamTools/ToolCutOut.py:632
  7528. msgid "Making manual bridge gap..."
  7529. msgstr "Making manual bridge gap..."
  7530. #: flatcamTools/ToolCutOut.py:655
  7531. #, python-format
  7532. msgid "[ERROR_NOTCL]Could not retrieve Geoemtry object: %s"
  7533. msgstr "[ERROR_NOTCL]Could not retrieve Geoemtry object: %s"
  7534. #: flatcamTools/ToolCutOut.py:659
  7535. #, python-format
  7536. msgid "[ERROR_NOTCL]Geometry object for manual cutout not found: %s"
  7537. msgstr "[ERROR_NOTCL]Geometry object for manual cutout not found: %s"
  7538. #: flatcamTools/ToolCutOut.py:669
  7539. msgid "[success] Added manual Bridge Gap."
  7540. msgstr "[success] Added manual Bridge Gap."
  7541. #: flatcamTools/ToolCutOut.py:686
  7542. #, python-format
  7543. msgid "[ERROR_NOTCL]Could not retrieve Gerber object: %s"
  7544. msgstr "[ERROR_NOTCL]Could not retrieve Gerber object: %s"
  7545. #: flatcamTools/ToolCutOut.py:690
  7546. msgid ""
  7547. "[ERROR_NOTCL]There is no Gerber object selected for Cutout.\n"
  7548. "Select one and try again."
  7549. msgstr ""
  7550. "[ERROR_NOTCL]There is no Gerber object selected for Cutout.\n"
  7551. "Select one and try again."
  7552. #: flatcamTools/ToolCutOut.py:695
  7553. msgid ""
  7554. "[ERROR_NOTCL]The selected object has to be of Gerber type.\n"
  7555. "Select a Gerber file and try again."
  7556. msgstr ""
  7557. "[ERROR_NOTCL]The selected object has to be of Gerber type.\n"
  7558. "Select a Gerber file and try again."
  7559. #: flatcamTools/ToolDblSided.py:18
  7560. msgid "2-Sided PCB"
  7561. msgstr "2-Sided PCB"
  7562. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  7563. #: flatcamTools/ToolDblSided.py:100
  7564. msgid "Mirror"
  7565. msgstr "Mirror"
  7566. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  7567. #: flatcamTools/ToolDblSided.py:102
  7568. msgid ""
  7569. "Mirrors (flips) the specified object around \n"
  7570. "the specified axis. Does not create a new \n"
  7571. "object, but modifies it."
  7572. msgstr ""
  7573. "Mirrors (flips) the specified object around \n"
  7574. "the specified axis. Does not create a new \n"
  7575. "object, but modifies it."
  7576. #: flatcamTools/ToolDblSided.py:73
  7577. msgid "Excellon Object to be mirrored."
  7578. msgstr "Excellon Object to be mirrored."
  7579. #: flatcamTools/ToolDblSided.py:97
  7580. msgid "Geometry Obj to be mirrored."
  7581. msgstr "Geometry Obj to be mirrored."
  7582. #: flatcamTools/ToolDblSided.py:135
  7583. msgid ""
  7584. "The axis should pass through a <b>point</b> or cut\n"
  7585. " a specified <b>box</b> (in a FlatCAM object) through \n"
  7586. "the center."
  7587. msgstr ""
  7588. "The axis should pass through a <b>point</b> or cut\n"
  7589. " a specified <b>box</b> (in a FlatCAM object) through \n"
  7590. "the center."
  7591. #: flatcamTools/ToolDblSided.py:152
  7592. msgid "Point/Box Reference:"
  7593. msgstr "Point/Box Reference:"
  7594. #: flatcamTools/ToolDblSided.py:154
  7595. msgid ""
  7596. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  7597. "the mirroring axis passes.\n"
  7598. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  7599. "Geo).\n"
  7600. "Through the center of this object pass the mirroring axis selected above."
  7601. msgstr ""
  7602. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  7603. "the mirroring axis passes.\n"
  7604. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  7605. "Geo).\n"
  7606. "Through the center of this object pass the mirroring axis selected above."
  7607. #: flatcamTools/ToolDblSided.py:162
  7608. msgid ""
  7609. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  7610. "axis \n"
  7611. " selected in 'MIRROR AXIS' pass.\n"
  7612. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  7613. "and left mouse button click on canvas or you can enter the coords manually."
  7614. msgstr ""
  7615. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  7616. "axis \n"
  7617. " selected in 'MIRROR AXIS' pass.\n"
  7618. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  7619. "and left mouse button click on canvas or you can enter the coords manually."
  7620. #: flatcamTools/ToolDblSided.py:182
  7621. msgid "Gerber Reference Box Object"
  7622. msgstr "Gerber Reference Box Object"
  7623. #: flatcamTools/ToolDblSided.py:183
  7624. msgid "Excellon Reference Box Object"
  7625. msgstr "Excellon Reference Box Object"
  7626. #: flatcamTools/ToolDblSided.py:184
  7627. msgid "Geometry Reference Box Object"
  7628. msgstr "Geometry Reference Box Object"
  7629. #: flatcamTools/ToolDblSided.py:193
  7630. msgid "Alignment Drill Coordinates:"
  7631. msgstr "Alignment Drill Coordinates:"
  7632. #: flatcamTools/ToolDblSided.py:195
  7633. msgid ""
  7634. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  7635. "each set of (x, y) coordinates\n"
  7636. "entered here, a pair of drills will be created:\n"
  7637. "\n"
  7638. "- one drill at the coordinates from the field\n"
  7639. "- one drill in mirror position over the axis selected above in the 'Mirror "
  7640. "Axis'."
  7641. msgstr ""
  7642. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  7643. "each set of (x, y) coordinates\n"
  7644. "entered here, a pair of drills will be created:\n"
  7645. "\n"
  7646. "- one drill at the coordinates from the field\n"
  7647. "- one drill in mirror position over the axis selected above in the 'Mirror "
  7648. "Axis'."
  7649. #: flatcamTools/ToolDblSided.py:210
  7650. msgid ""
  7651. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  7652. "on one side of the mirror axis.\n"
  7653. "\n"
  7654. "The coordinates set can be obtained:\n"
  7655. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  7656. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  7657. "field.\n"
  7658. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  7659. "field and click Paste.\n"
  7660. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  7661. msgstr ""
  7662. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  7663. "on one side of the mirror axis.\n"
  7664. "\n"
  7665. "The coordinates set can be obtained:\n"
  7666. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  7667. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  7668. "field.\n"
  7669. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  7670. "field and click Paste.\n"
  7671. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  7672. #: flatcamTools/ToolDblSided.py:224
  7673. msgid "Alignment Drill Diameter"
  7674. msgstr "Alignment Drill Diameter"
  7675. #: flatcamTools/ToolDblSided.py:247
  7676. msgid "Create Excellon Object"
  7677. msgstr "Create Excellon Object"
  7678. #: flatcamTools/ToolDblSided.py:249
  7679. msgid ""
  7680. "Creates an Excellon Object containing the\n"
  7681. "specified alignment holes and their mirror\n"
  7682. "images."
  7683. msgstr ""
  7684. "Creates an Excellon Object containing the\n"
  7685. "specified alignment holes and their mirror\n"
  7686. "images."
  7687. #: flatcamTools/ToolDblSided.py:255
  7688. msgid "Reset"
  7689. msgstr "Reset"
  7690. #: flatcamTools/ToolDblSided.py:257
  7691. msgid "Resets all the fields."
  7692. msgstr "Resets all the fields."
  7693. #: flatcamTools/ToolDblSided.py:302
  7694. msgid "2-Sided Tool"
  7695. msgstr "2-Sided Tool"
  7696. #: flatcamTools/ToolDblSided.py:327
  7697. msgid ""
  7698. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  7699. "missing. Add them and retry."
  7700. msgstr ""
  7701. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  7702. "missing. Add them and retry."
  7703. #: flatcamTools/ToolDblSided.py:346
  7704. msgid ""
  7705. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  7706. msgstr ""
  7707. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  7708. #: flatcamTools/ToolDblSided.py:368
  7709. msgid ""
  7710. "[WARNING_NOTCL]No value or wrong format in Drill Dia entry. Add it and retry."
  7711. msgstr ""
  7712. "[WARNING_NOTCL]No value or wrong format in Drill Dia entry. Add it and retry."
  7713. #: flatcamTools/ToolDblSided.py:375
  7714. msgid ""
  7715. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  7716. "and retry."
  7717. msgstr ""
  7718. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  7719. "and retry."
  7720. #: flatcamTools/ToolDblSided.py:397
  7721. msgid "[success] Excellon object with alignment drills created..."
  7722. msgstr "[success] Excellon object with alignment drills created..."
  7723. #: flatcamTools/ToolDblSided.py:406
  7724. msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
  7725. msgstr "[WARNING_NOTCL] There is no Gerber object loaded ..."
  7726. #: flatcamTools/ToolDblSided.py:410 flatcamTools/ToolDblSided.py:453
  7727. #: flatcamTools/ToolDblSided.py:497
  7728. msgid ""
  7729. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  7730. msgstr ""
  7731. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  7732. #: flatcamTools/ToolDblSided.py:420
  7733. msgid ""
  7734. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  7735. "mirroring reference."
  7736. msgstr ""
  7737. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  7738. "mirroring reference."
  7739. #: flatcamTools/ToolDblSided.py:430 flatcamTools/ToolDblSided.py:474
  7740. #: flatcamTools/ToolDblSided.py:511
  7741. msgid "[WARNING_NOTCL] There is no Box object loaded ..."
  7742. msgstr "[WARNING_NOTCL] There is no Box object loaded ..."
  7743. #: flatcamTools/ToolDblSided.py:440
  7744. #, python-format
  7745. msgid "[success] Gerber %s was mirrored..."
  7746. msgstr "[success] Gerber %s was mirrored..."
  7747. #: flatcamTools/ToolDblSided.py:449
  7748. msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
  7749. msgstr "[WARNING_NOTCL] There is no Excellon object loaded ..."
  7750. #: flatcamTools/ToolDblSided.py:464
  7751. msgid ""
  7752. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  7753. "coords and try again ..."
  7754. msgstr ""
  7755. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  7756. "coords and try again ..."
  7757. #: flatcamTools/ToolDblSided.py:484
  7758. #, python-format
  7759. msgid "[success] Excellon %s was mirrored..."
  7760. msgstr "[success] Excellon %s was mirrored..."
  7761. #: flatcamTools/ToolDblSided.py:493
  7762. msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
  7763. msgstr "[WARNING_NOTCL] There is no Geometry object loaded ..."
  7764. #: flatcamTools/ToolDblSided.py:521
  7765. #, python-format
  7766. msgid "[success] Geometry %s was mirrored..."
  7767. msgstr "[success] Geometry %s was mirrored..."
  7768. #: flatcamTools/ToolFilm.py:25
  7769. msgid "Film PCB"
  7770. msgstr "Film PCB"
  7771. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  7772. #: flatcamTools/ToolPanelize.py:56
  7773. msgid "Object Type:"
  7774. msgstr "Object Type:"
  7775. #: flatcamTools/ToolFilm.py:58
  7776. msgid ""
  7777. "Specify the type of object for which to create the film.\n"
  7778. "The object can be of type: Gerber or Geometry.\n"
  7779. "The selection here decide the type of objects that will be\n"
  7780. "in the Film Object combobox."
  7781. msgstr ""
  7782. "Specify the type of object for which to create the film.\n"
  7783. "The object can be of type: Gerber or Geometry.\n"
  7784. "The selection here decide the type of objects that will be\n"
  7785. "in the Film Object combobox."
  7786. #: flatcamTools/ToolFilm.py:71
  7787. msgid "Film Object:"
  7788. msgstr "Film Object:"
  7789. #: flatcamTools/ToolFilm.py:73
  7790. msgid "Object for which to create the film."
  7791. msgstr "Object for which to create the film."
  7792. #: flatcamTools/ToolFilm.py:89 flatcamTools/ToolPanelize.py:89
  7793. msgid "Box Type:"
  7794. msgstr "Box Type:"
  7795. #: flatcamTools/ToolFilm.py:91
  7796. msgid ""
  7797. "Specify the type of object to be used as an container for\n"
  7798. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  7799. "the type of objects that will be\n"
  7800. "in the Box Object combobox."
  7801. msgstr ""
  7802. "Specify the type of object to be used as an container for\n"
  7803. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  7804. "the type of objects that will be\n"
  7805. "in the Box Object combobox."
  7806. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:104
  7807. msgid "Box Object:"
  7808. msgstr "Box Object:"
  7809. #: flatcamTools/ToolFilm.py:106
  7810. msgid ""
  7811. "The actual object that is used a container for the\n"
  7812. " selected object for which we create the film.\n"
  7813. "Usually it is the PCB outline but it can be also the\n"
  7814. "same object for which the film is created."
  7815. msgstr ""
  7816. "The actual object that is used a container for the\n"
  7817. " selected object for which we create the film.\n"
  7818. "Usually it is the PCB outline but it can be also the\n"
  7819. "same object for which the film is created."
  7820. #: flatcamTools/ToolFilm.py:157
  7821. msgid "Save Film"
  7822. msgstr "Save Film"
  7823. #: flatcamTools/ToolFilm.py:159
  7824. msgid ""
  7825. "Create a Film for the selected object, within\n"
  7826. "the specified box. Does not create a new \n"
  7827. " FlatCAM object, but directly save it in SVG format\n"
  7828. "which can be opened with Inkscape."
  7829. msgstr ""
  7830. "Create a Film for the selected object, within\n"
  7831. "the specified box. Does not create a new \n"
  7832. " FlatCAM object, but directly save it in SVG format\n"
  7833. "which can be opened with Inkscape."
  7834. #: flatcamTools/ToolFilm.py:225
  7835. msgid ""
  7836. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  7837. msgstr ""
  7838. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  7839. #: flatcamTools/ToolFilm.py:231
  7840. msgid ""
  7841. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  7842. msgstr ""
  7843. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  7844. #: flatcamTools/ToolFilm.py:255
  7845. msgid "Generating Film ..."
  7846. msgstr "Generating Film ..."
  7847. #: flatcamTools/ToolFilm.py:260 flatcamTools/ToolFilm.py:264
  7848. msgid "Export SVG positive"
  7849. msgstr "Export SVG positive"
  7850. #: flatcamTools/ToolFilm.py:269
  7851. msgid "[WARNING_NOTCL]Export SVG positive cancelled."
  7852. msgstr "[WARNING_NOTCL]Export SVG positive cancelled."
  7853. #: flatcamTools/ToolFilm.py:276 flatcamTools/ToolFilm.py:280
  7854. msgid "Export SVG negative"
  7855. msgstr "Export SVG negative"
  7856. #: flatcamTools/ToolFilm.py:285
  7857. msgid "[WARNING_NOTCL]Export SVG negative cancelled."
  7858. msgstr "[WARNING_NOTCL]Export SVG negative cancelled."
  7859. #: flatcamTools/ToolImage.py:25
  7860. msgid "Image as Object"
  7861. msgstr "Image as Object"
  7862. #: flatcamTools/ToolImage.py:31
  7863. msgid "Image to PCB"
  7864. msgstr "Image to PCB"
  7865. #: flatcamTools/ToolImage.py:55
  7866. msgid ""
  7867. "Specify the type of object to create from the image.\n"
  7868. "It can be of type: Gerber or Geometry."
  7869. msgstr ""
  7870. "Specify the type of object to create from the image.\n"
  7871. "It can be of type: Gerber or Geometry."
  7872. #: flatcamTools/ToolImage.py:63
  7873. msgid "DPI value:"
  7874. msgstr "DPI value:"
  7875. #: flatcamTools/ToolImage.py:65
  7876. msgid "Specify a DPI value for the image."
  7877. msgstr "Specify a DPI value for the image."
  7878. #: flatcamTools/ToolImage.py:72
  7879. msgid "Level of detail"
  7880. msgstr "Level of detail"
  7881. #: flatcamTools/ToolImage.py:81
  7882. msgid "Image type"
  7883. msgstr "Image type"
  7884. #: flatcamTools/ToolImage.py:83
  7885. msgid ""
  7886. "Choose a method for the image interpretation.\n"
  7887. "B/W means a black & white image. Color means a colored image."
  7888. msgstr ""
  7889. "Choose a method for the image interpretation.\n"
  7890. "B/W means a black & white image. Color means a colored image."
  7891. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  7892. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  7893. msgid "Mask value"
  7894. msgstr "Mask value"
  7895. #: flatcamTools/ToolImage.py:92
  7896. msgid ""
  7897. "Mask for monochrome image.\n"
  7898. "Takes values between [0 ... 255].\n"
  7899. "Decides the level of details to include\n"
  7900. "in the resulting geometry.\n"
  7901. "0 means no detail and 255 means everything \n"
  7902. "(which is totally black)."
  7903. msgstr ""
  7904. "Mask for monochrome image.\n"
  7905. "Takes values between [0 ... 255].\n"
  7906. "Decides the level of details to include\n"
  7907. "in the resulting geometry.\n"
  7908. "0 means no detail and 255 means everything \n"
  7909. "(which is totally black)."
  7910. #: flatcamTools/ToolImage.py:105
  7911. msgid ""
  7912. "Mask for RED color.\n"
  7913. "Takes values between [0 ... 255].\n"
  7914. "Decides the level of details to include\n"
  7915. "in the resulting geometry."
  7916. msgstr ""
  7917. "Mask for RED color.\n"
  7918. "Takes values between [0 ... 255].\n"
  7919. "Decides the level of details to include\n"
  7920. "in the resulting geometry."
  7921. #: flatcamTools/ToolImage.py:116
  7922. msgid ""
  7923. "Mask for GREEN color.\n"
  7924. "Takes values between [0 ... 255].\n"
  7925. "Decides the level of details to include\n"
  7926. "in the resulting geometry."
  7927. msgstr ""
  7928. "Mask for GREEN color.\n"
  7929. "Takes values between [0 ... 255].\n"
  7930. "Decides the level of details to include\n"
  7931. "in the resulting geometry."
  7932. #: flatcamTools/ToolImage.py:127
  7933. msgid ""
  7934. "Mask for BLUE color.\n"
  7935. "Takes values between [0 ... 255].\n"
  7936. "Decides the level of details to include\n"
  7937. "in the resulting geometry."
  7938. msgstr ""
  7939. "Mask for BLUE color.\n"
  7940. "Takes values between [0 ... 255].\n"
  7941. "Decides the level of details to include\n"
  7942. "in the resulting geometry."
  7943. #: flatcamTools/ToolImage.py:139
  7944. msgid "Import image"
  7945. msgstr "Import image"
  7946. #: flatcamTools/ToolImage.py:141
  7947. msgid "Open a image of raster type and then import it in FlatCAM."
  7948. msgstr "Open a image of raster type and then import it in FlatCAM."
  7949. #: flatcamTools/ToolImage.py:170
  7950. msgid "Image Tool"
  7951. msgstr "Image Tool"
  7952. #: flatcamTools/ToolImage.py:200 flatcamTools/ToolImage.py:203
  7953. msgid "Import IMAGE"
  7954. msgstr "Import IMAGE"
  7955. #: flatcamTools/ToolMeasurement.py:26
  7956. msgid "Measurement"
  7957. msgstr "Measurement"
  7958. #: flatcamTools/ToolMeasurement.py:47
  7959. msgid "Start"
  7960. msgstr "Start"
  7961. #: flatcamTools/ToolMeasurement.py:47 flatcamTools/ToolMeasurement.py:50
  7962. msgid "Coords"
  7963. msgstr "Coords"
  7964. #: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:99
  7965. msgid "This is measuring Start point coordinates."
  7966. msgstr "This is measuring Start point coordinates."
  7967. #: flatcamTools/ToolMeasurement.py:50
  7968. msgid "Stop"
  7969. msgstr "Stop"
  7970. #: flatcamTools/ToolMeasurement.py:51 flatcamTools/ToolMeasurement.py:104
  7971. msgid "This is the measuring Stop point coordinates."
  7972. msgstr "This is the measuring Stop point coordinates."
  7973. #: flatcamTools/ToolMeasurement.py:54 flatcamTools/ToolMeasurement.py:109
  7974. msgid "This is the distance measured over the X axis."
  7975. msgstr "This is the distance measured over the X axis."
  7976. #: flatcamTools/ToolMeasurement.py:57 flatcamTools/ToolMeasurement.py:115
  7977. msgid "This is the distance measured over the Y axis."
  7978. msgstr "This is the distance measured over the Y axis."
  7979. #: flatcamTools/ToolMeasurement.py:59
  7980. msgid "DISTANCE"
  7981. msgstr "DISTANCE"
  7982. #: flatcamTools/ToolMeasurement.py:60 flatcamTools/ToolMeasurement.py:121
  7983. msgid "This is the point to point Euclidian distance."
  7984. msgstr "This is the point to point Euclidian distance."
  7985. #: flatcamTools/ToolMeasurement.py:63 flatcamTools/ToolMeasurement.py:70
  7986. #: flatcamTools/ToolMeasurement.py:77 flatcamTools/ToolMeasurement.py:84
  7987. #: flatcamTools/ToolMeasurement.py:91
  7988. msgid "Those are the units in which the distance is measured."
  7989. msgstr "Those are the units in which the distance is measured."
  7990. #: flatcamTools/ToolMeasurement.py:124
  7991. msgid "Measure"
  7992. msgstr "Measure"
  7993. #: flatcamTools/ToolMeasurement.py:183
  7994. msgid "Meas. Tool"
  7995. msgstr "Meas. Tool"
  7996. #: flatcamTools/ToolMeasurement.py:276
  7997. msgid "MEASURING: Click on the Start point ..."
  7998. msgstr "MEASURING: Click on the Start point ..."
  7999. #: flatcamTools/ToolMeasurement.py:305
  8000. msgid "MEASURING: Click on the Destination point ..."
  8001. msgstr "MEASURING: Click on the Destination point ..."
  8002. #: flatcamTools/ToolMeasurement.py:326
  8003. #, python-brace-format
  8004. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  8005. msgstr "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  8006. #: flatcamTools/ToolMove.py:81
  8007. msgid "MOVE: Click on the Start point ..."
  8008. msgstr "MOVE: Click on the Start point ..."
  8009. #: flatcamTools/ToolMove.py:88
  8010. msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  8011. msgstr "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  8012. #: flatcamTools/ToolMove.py:110
  8013. msgid "MOVE: Click on the Destination point ..."
  8014. msgstr "MOVE: Click on the Destination point ..."
  8015. #: flatcamTools/ToolMove.py:128
  8016. msgid "Moving ..."
  8017. msgstr "Moving ..."
  8018. #: flatcamTools/ToolMove.py:135
  8019. msgid "[WARNING_NOTCL] No object(s) selected."
  8020. msgstr "[WARNING_NOTCL] No object(s) selected."
  8021. #: flatcamTools/ToolMove.py:158
  8022. #, python-format
  8023. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  8024. msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  8025. #: flatcamTools/ToolMove.py:164
  8026. #, python-format
  8027. msgid "[success]%s object was moved ..."
  8028. msgstr "[success]%s object was moved ..."
  8029. #: flatcamTools/ToolMove.py:174
  8030. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  8031. msgstr ""
  8032. "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  8033. #: flatcamTools/ToolMove.py:202
  8034. msgid "[WARNING_NOTCL]Move action cancelled."
  8035. msgstr "[WARNING_NOTCL]Move action cancelled."
  8036. #: flatcamTools/ToolMove.py:214
  8037. msgid "[WARNING_NOTCL]Object(s) not selected"
  8038. msgstr "[WARNING_NOTCL]Object(s) not selected"
  8039. #: flatcamTools/ToolNonCopperClear.py:25
  8040. msgid "Non-Copper Clearing"
  8041. msgstr "Non-Copper Clearing"
  8042. #: flatcamTools/ToolNonCopperClear.py:63
  8043. msgid "Gerber object to be cleared of excess copper. "
  8044. msgstr "Gerber object to be cleared of excess copper. "
  8045. #: flatcamTools/ToolNonCopperClear.py:73
  8046. msgid ""
  8047. "Tools pool from which the algorithm\n"
  8048. "will pick the ones used for copper clearing."
  8049. msgstr ""
  8050. "Tools pool from which the algorithm\n"
  8051. "will pick the ones used for copper clearing."
  8052. #: flatcamTools/ToolNonCopperClear.py:88
  8053. msgid ""
  8054. "This is the Tool Number.\n"
  8055. "Non copper clearing will start with the tool with the biggest \n"
  8056. "diameter, continuing until there are no more tools.\n"
  8057. "Only tools that create NCC clearing geometry will still be present\n"
  8058. "in the resulting geometry. This is because with some tools\n"
  8059. "this function will not be able to create painting geometry."
  8060. msgstr ""
  8061. "This is the Tool Number.\n"
  8062. "Non copper clearing will start with the tool with the biggest \n"
  8063. "diameter, continuing until there are no more tools.\n"
  8064. "Only tools that create NCC clearing geometry will still be present\n"
  8065. "in the resulting geometry. This is because with some tools\n"
  8066. "this function will not be able to create painting geometry."
  8067. #: flatcamTools/ToolNonCopperClear.py:100 flatcamTools/ToolPaint.py:98
  8068. msgid ""
  8069. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  8070. "informative only. Being circular, <BR>the cut width in material is exactly "
  8071. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  8072. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  8073. "parameter in the resulting geometry UI form and enable two additional UI "
  8074. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  8075. "those two values will adjust the Z-Cut parameter such as the cut width into "
  8076. "material will be equal with the value in the Tool Diameter column of this "
  8077. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  8078. "the Operation Type in the resulting geometry as Isolation."
  8079. msgstr ""
  8080. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  8081. "informative only. Being circular, <BR>the cut width in material is exactly "
  8082. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  8083. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  8084. "parameter in the resulting geometry UI form and enable two additional UI "
  8085. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  8086. "those two values will adjust the Z-Cut parameter such as the cut width into "
  8087. "material will be equal with the value in the Tool Diameter column of this "
  8088. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  8089. "the Operation Type in the resulting geometry as Isolation."
  8090. #: flatcamTools/ToolNonCopperClear.py:119 flatcamTools/ToolPaint.py:117
  8091. msgid "Tool Dia"
  8092. msgstr "Tool Dia"
  8093. #: flatcamTools/ToolNonCopperClear.py:121
  8094. msgid "Diameter for the new tool to add in the Tool Table"
  8095. msgstr "Diameter for the new tool to add in the Tool Table"
  8096. #: flatcamTools/ToolNonCopperClear.py:147 flatcamTools/ToolPaint.py:145
  8097. #: flatcamTools/ToolSolderPaste.py:123
  8098. msgid ""
  8099. "Delete a selection of tools in the Tool Table\n"
  8100. "by first selecting a row(s) in the Tool Table."
  8101. msgstr ""
  8102. "Delete a selection of tools in the Tool Table\n"
  8103. "by first selecting a row(s) in the Tool Table."
  8104. #: flatcamTools/ToolNonCopperClear.py:225
  8105. msgid ""
  8106. "If checked, use 'rest machining'.\n"
  8107. "Basically it will clear copper outside PCB features,\n"
  8108. "using the biggest tool and continue with the next tools,\n"
  8109. "from bigger to smaller, to clear areas of copper that\n"
  8110. "could not be cleared by previous tool, until there is\n"
  8111. "no more copper to clear or there are no more tools.\n"
  8112. "If not checked, use the standard algorithm."
  8113. msgstr ""
  8114. "If checked, use 'rest machining'.\n"
  8115. "Basically it will clear copper outside PCB features,\n"
  8116. "using the biggest tool and continue with the next tools,\n"
  8117. "from bigger to smaller, to clear areas of copper that\n"
  8118. "could not be cleared by previous tool, until there is\n"
  8119. "no more copper to clear or there are no more tools.\n"
  8120. "If not checked, use the standard algorithm."
  8121. #: flatcamTools/ToolNonCopperClear.py:237
  8122. msgid "Generate Geometry"
  8123. msgstr "Generate Geometry"
  8124. #: flatcamTools/ToolNonCopperClear.py:483 flatcamTools/ToolPaint.py:543
  8125. #: flatcamTools/ToolSolderPaste.py:760
  8126. msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  8127. msgstr "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  8128. #: flatcamTools/ToolNonCopperClear.py:511 flatcamTools/ToolPaint.py:567
  8129. msgid "[WARNING_NOTCL]Adding tool cancelled. Tool already in Tool Table."
  8130. msgstr "[WARNING_NOTCL]Adding tool cancelled. Tool already in Tool Table."
  8131. #: flatcamTools/ToolNonCopperClear.py:516 flatcamTools/ToolPaint.py:572
  8132. msgid "[success] New tool added to Tool Table."
  8133. msgstr "[success] New tool added to Tool Table."
  8134. #: flatcamTools/ToolNonCopperClear.py:549
  8135. msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
  8136. msgstr "[ERROR_NOTCL] Wrong value format entered, use a number."
  8137. #: flatcamTools/ToolNonCopperClear.py:558 flatcamTools/ToolPaint.py:615
  8138. msgid "[success] Tool from Tool Table was edited."
  8139. msgstr "[success] Tool from Tool Table was edited."
  8140. #: flatcamTools/ToolNonCopperClear.py:569 flatcamTools/ToolPaint.py:626
  8141. #: flatcamTools/ToolSolderPaste.py:846
  8142. msgid ""
  8143. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  8144. "Table."
  8145. msgstr ""
  8146. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  8147. "Table."
  8148. #: flatcamTools/ToolNonCopperClear.py:608 flatcamTools/ToolPaint.py:723
  8149. msgid "[WARNING_NOTCL]Delete failed. Select a tool to delete."
  8150. msgstr "[WARNING_NOTCL]Delete failed. Select a tool to delete."
  8151. #: flatcamTools/ToolNonCopperClear.py:613 flatcamTools/ToolPaint.py:728
  8152. msgid "[success] Tool(s) deleted from Tool Table."
  8153. msgstr "[success] Tool(s) deleted from Tool Table."
  8154. #: flatcamTools/ToolNonCopperClear.py:666
  8155. msgid "[ERROR_NOTCL]No Gerber file available."
  8156. msgstr "[ERROR_NOTCL]No Gerber file available."
  8157. #: flatcamTools/ToolNonCopperClear.py:704
  8158. #: flatcamTools/ToolNonCopperClear.py:826
  8159. msgid "Clearing Non-Copper areas."
  8160. msgstr "Clearing Non-Copper areas."
  8161. #: flatcamTools/ToolNonCopperClear.py:722
  8162. #, python-format
  8163. msgid "[success] Non-Copper Clearing with ToolDia = %s started."
  8164. msgstr "[success] Non-Copper Clearing with ToolDia = %s started."
  8165. #: flatcamTools/ToolNonCopperClear.py:791
  8166. #, python-format
  8167. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  8168. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  8169. #: flatcamTools/ToolNonCopperClear.py:796
  8170. msgid "[success] NCC Tool finished."
  8171. msgstr "[success] NCC Tool finished."
  8172. #: flatcamTools/ToolNonCopperClear.py:798
  8173. msgid ""
  8174. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  8175. "cleared. Check the result."
  8176. msgstr ""
  8177. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  8178. "cleared. Check the result."
  8179. #: flatcamTools/ToolNonCopperClear.py:844
  8180. #, python-format
  8181. msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  8182. msgstr "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  8183. #: flatcamTools/ToolNonCopperClear.py:942
  8184. #, python-format
  8185. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  8186. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  8187. #: flatcamTools/ToolNonCopperClear.py:950
  8188. msgid ""
  8189. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  8190. "settings."
  8191. msgstr ""
  8192. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  8193. "settings."
  8194. #: flatcamTools/ToolPaint.py:24
  8195. msgid "Paint Area"
  8196. msgstr "Paint Area"
  8197. #: flatcamTools/ToolPaint.py:60
  8198. msgid "Geometry:"
  8199. msgstr "Geometry:"
  8200. #: flatcamTools/ToolPaint.py:62
  8201. msgid "Geometry object to be painted. "
  8202. msgstr "Geometry object to be painted. "
  8203. #: flatcamTools/ToolPaint.py:71
  8204. msgid ""
  8205. "Tools pool from which the algorithm\n"
  8206. "will pick the ones used for painting."
  8207. msgstr ""
  8208. "Tools pool from which the algorithm\n"
  8209. "will pick the ones used for painting."
  8210. #: flatcamTools/ToolPaint.py:86
  8211. msgid ""
  8212. "This is the Tool Number.\n"
  8213. "Painting will start with the tool with the biggest diameter,\n"
  8214. "continuing until there are no more tools.\n"
  8215. "Only tools that create painting geometry will still be present\n"
  8216. "in the resulting geometry. This is because with some tools\n"
  8217. "this function will not be able to create painting geometry."
  8218. msgstr ""
  8219. "This is the Tool Number.\n"
  8220. "Painting will start with the tool with the biggest diameter,\n"
  8221. "continuing until there are no more tools.\n"
  8222. "Only tools that create painting geometry will still be present\n"
  8223. "in the resulting geometry. This is because with some tools\n"
  8224. "this function will not be able to create painting geometry."
  8225. #: flatcamTools/ToolPaint.py:119
  8226. msgid "Diameter for the new tool."
  8227. msgstr "Diameter for the new tool."
  8228. #: flatcamTools/ToolPaint.py:224
  8229. msgid ""
  8230. "If checked, use 'rest machining'.\n"
  8231. "Basically it will clear copper outside PCB features,\n"
  8232. "using the biggest tool and continue with the next tools,\n"
  8233. "from bigger to smaller, to clear areas of copper that\n"
  8234. "could not be cleared by previous tool, until there is\n"
  8235. "no more copper to clear or there are no more tools.\n"
  8236. "\n"
  8237. "If not checked, use the standard algorithm."
  8238. msgstr ""
  8239. "If checked, use 'rest machining'.\n"
  8240. "Basically it will clear copper outside PCB features,\n"
  8241. "using the biggest tool and continue with the next tools,\n"
  8242. "from bigger to smaller, to clear areas of copper that\n"
  8243. "could not be cleared by previous tool, until there is\n"
  8244. "no more copper to clear or there are no more tools.\n"
  8245. "\n"
  8246. "If not checked, use the standard algorithm."
  8247. #: flatcamTools/ToolPaint.py:239
  8248. msgid ""
  8249. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  8250. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  8251. "polygons."
  8252. msgstr ""
  8253. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  8254. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  8255. "polygons."
  8256. #: flatcamTools/ToolPaint.py:254
  8257. msgid "Create Paint Geometry"
  8258. msgstr "Create Paint Geometry"
  8259. #: flatcamTools/ToolPaint.py:256
  8260. msgid ""
  8261. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  8262. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  8263. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  8264. "created."
  8265. msgstr ""
  8266. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  8267. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  8268. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  8269. "created."
  8270. #: flatcamTools/ToolPaint.py:732
  8271. msgid "geometry_on_paint_button"
  8272. msgstr "geometry_on_paint_button"
  8273. #: flatcamTools/ToolPaint.py:735 flatcamTools/ToolPaint.py:780
  8274. msgid "[WARNING_NOTCL]Click inside the desired polygon."
  8275. msgstr "[WARNING_NOTCL]Click inside the desired polygon."
  8276. #: flatcamTools/ToolPaint.py:767
  8277. msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  8278. msgstr "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  8279. #: flatcamTools/ToolPaint.py:789 flatcamTools/ToolPaint.py:992
  8280. msgid "Painting polygon..."
  8281. msgstr "Painting polygon..."
  8282. #: flatcamTools/ToolPaint.py:840
  8283. msgid "[WARNING] No polygon found."
  8284. msgstr "[WARNING] No polygon found."
  8285. #: flatcamTools/ToolPaint.py:843
  8286. msgid "Painting polygon."
  8287. msgstr "Painting polygon."
  8288. #: flatcamTools/ToolPaint.py:885
  8289. msgid "[ERROR_NOTCL] Geometry could not be painted completely"
  8290. msgstr "[ERROR_NOTCL] Geometry could not be painted completely"
  8291. #: flatcamTools/ToolPaint.py:911
  8292. #, python-format
  8293. msgid ""
  8294. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  8295. "different strategy of paint\n"
  8296. "%s"
  8297. msgstr ""
  8298. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  8299. "different strategy of paint\n"
  8300. "%s"
  8301. #: flatcamTools/ToolPaint.py:953
  8302. #, python-format
  8303. msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  8304. msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  8305. #: flatcamTools/ToolPaint.py:959 flatcamTools/ToolPaint.py:1251
  8306. msgid "Polygon Paint started ..."
  8307. msgstr "Polygon Paint started ..."
  8308. #: flatcamTools/ToolPaint.py:1107 flatcamTools/ToolPaint.py:1196
  8309. #, python-format
  8310. msgid ""
  8311. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  8312. "Or a different Method of paint\n"
  8313. "%s"
  8314. msgstr ""
  8315. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  8316. "Or a different Method of paint\n"
  8317. "%s"
  8318. #: flatcamTools/ToolPaint.py:1131
  8319. msgid ""
  8320. "[ERROR] There is no Painting Geometry in the file.\n"
  8321. "Usually it means that the tool diameter is too big for the painted "
  8322. "geometry.\n"
  8323. "Change the painting parameters and try again."
  8324. msgstr ""
  8325. "[ERROR] There is no Painting Geometry in the file.\n"
  8326. "Usually it means that the tool diameter is too big for the painted "
  8327. "geometry.\n"
  8328. "Change the painting parameters and try again."
  8329. #: flatcamTools/ToolPaint.py:1140
  8330. msgid "[success] Paint All Done."
  8331. msgstr "[success] Paint All Done."
  8332. #: flatcamTools/ToolPaint.py:1226
  8333. msgid ""
  8334. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  8335. "Usually it means that the tool diameter is too big for the painted "
  8336. "geometry.\n"
  8337. "Change the painting parameters and try again."
  8338. msgstr ""
  8339. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  8340. "Usually it means that the tool diameter is too big for the painted "
  8341. "geometry.\n"
  8342. "Change the painting parameters and try again."
  8343. #: flatcamTools/ToolPaint.py:1235
  8344. msgid "[success] Paint All with Rest-Machining done."
  8345. msgstr "[success] Paint All with Rest-Machining done."
  8346. #: flatcamTools/ToolPanelize.py:25
  8347. msgid "Panelize PCB"
  8348. msgstr "Panelize PCB"
  8349. #: flatcamTools/ToolPanelize.py:58
  8350. msgid ""
  8351. "Specify the type of object to be panelized\n"
  8352. "It can be of type: Gerber, Excellon or Geometry.\n"
  8353. "The selection here decide the type of objects that will be\n"
  8354. "in the Object combobox."
  8355. msgstr ""
  8356. "Specify the type of object to be panelized\n"
  8357. "It can be of type: Gerber, Excellon or Geometry.\n"
  8358. "The selection here decide the type of objects that will be\n"
  8359. "in the Object combobox."
  8360. #: flatcamTools/ToolPanelize.py:73
  8361. msgid ""
  8362. "Object to be panelized. This means that it will\n"
  8363. "be duplicated in an array of rows and columns."
  8364. msgstr ""
  8365. "Object to be panelized. This means that it will\n"
  8366. "be duplicated in an array of rows and columns."
  8367. #: flatcamTools/ToolPanelize.py:91
  8368. msgid ""
  8369. "Specify the type of object to be used as an container for\n"
  8370. "panelization. It can be: Gerber or Geometry type.\n"
  8371. "The selection here decide the type of objects that will be\n"
  8372. "in the Box Object combobox."
  8373. msgstr ""
  8374. "Specify the type of object to be used as an container for\n"
  8375. "panelization. It can be: Gerber or Geometry type.\n"
  8376. "The selection here decide the type of objects that will be\n"
  8377. "in the Box Object combobox."
  8378. #: flatcamTools/ToolPanelize.py:106
  8379. msgid ""
  8380. "The actual object that is used a container for the\n"
  8381. " selected object that is to be panelized."
  8382. msgstr ""
  8383. "The actual object that is used a container for the\n"
  8384. " selected object that is to be panelized."
  8385. #: flatcamTools/ToolPanelize.py:150
  8386. msgid ""
  8387. "Choose the type of object for the panel object:\n"
  8388. "- Geometry\n"
  8389. "- Gerber"
  8390. msgstr ""
  8391. "Choose the type of object for the panel object:\n"
  8392. "- Geometry\n"
  8393. "- Gerber"
  8394. #: flatcamTools/ToolPanelize.py:158
  8395. msgid "Constrain panel within:"
  8396. msgstr "Constrain panel within:"
  8397. #: flatcamTools/ToolPanelize.py:192
  8398. msgid "Panelize Object"
  8399. msgstr "Panelize Object"
  8400. #: flatcamTools/ToolPanelize.py:194
  8401. msgid ""
  8402. "Panelize the specified object around the specified box.\n"
  8403. "In other words it creates multiple copies of the source object,\n"
  8404. "arranged in a 2D array of rows and columns."
  8405. msgstr ""
  8406. "Panelize the specified object around the specified box.\n"
  8407. "In other words it creates multiple copies of the source object,\n"
  8408. "arranged in a 2D array of rows and columns."
  8409. #: flatcamTools/ToolPanelize.py:311
  8410. #, python-format
  8411. msgid "[WARNING]No object Box. Using instead %s"
  8412. msgstr "[WARNING]No object Box. Using instead %s"
  8413. #: flatcamTools/ToolPanelize.py:392
  8414. msgid ""
  8415. "[ERROR_NOTCL]Columns or Rows are zero value. Change them to a positive "
  8416. "integer."
  8417. msgstr ""
  8418. "[ERROR_NOTCL]Columns or Rows are zero value. Change them to a positive "
  8419. "integer."
  8420. #: flatcamTools/ToolPanelize.py:417 flatcamTools/ToolPanelize.py:526
  8421. msgid "Generating panel ... Please wait."
  8422. msgstr "Generating panel ... Please wait."
  8423. #: flatcamTools/ToolPanelize.py:520
  8424. msgid "[success]Panel done..."
  8425. msgstr "[success]Panel done..."
  8426. #: flatcamTools/ToolPanelize.py:523
  8427. #, python-brace-format
  8428. msgid ""
  8429. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  8430. "{row} rows"
  8431. msgstr ""
  8432. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  8433. "{row} rows"
  8434. #: flatcamTools/ToolPanelize.py:531
  8435. msgid "[success]Panel created successfully."
  8436. msgstr "[success]Panel created successfully."
  8437. #: flatcamTools/ToolProperties.py:103
  8438. msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  8439. msgstr "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  8440. #: flatcamTools/ToolProperties.py:110
  8441. msgid "[success] Object Properties are displayed."
  8442. msgstr "[success] Object Properties are displayed."
  8443. #: flatcamTools/ToolProperties.py:111
  8444. msgid "Properties Tool"
  8445. msgstr "Properties Tool"
  8446. #: flatcamTools/ToolShell.py:69
  8447. msgid "...proccessing..."
  8448. msgstr "...proccessing..."
  8449. #: flatcamTools/ToolShell.py:71
  8450. #, python-format
  8451. msgid "...proccessing... [%s]"
  8452. msgstr "...proccessing... [%s]"
  8453. #: flatcamTools/ToolSolderPaste.py:37
  8454. msgid "Solder Paste Tool"
  8455. msgstr "Solder Paste Tool"
  8456. #: flatcamTools/ToolSolderPaste.py:65
  8457. msgid "Gerber Solder paste object. "
  8458. msgstr "Gerber Solder paste object. "
  8459. #: flatcamTools/ToolSolderPaste.py:72
  8460. msgid ""
  8461. "Tools pool from which the algorithm\n"
  8462. "will pick the ones used for dispensing solder paste."
  8463. msgstr ""
  8464. "Tools pool from which the algorithm\n"
  8465. "will pick the ones used for dispensing solder paste."
  8466. #: flatcamTools/ToolSolderPaste.py:87
  8467. msgid ""
  8468. "This is the Tool Number.\n"
  8469. "The solder dispensing will start with the tool with the biggest \n"
  8470. "diameter, continuing until there are no more Nozzle tools.\n"
  8471. "If there are no longer tools but there are still pads not covered\n"
  8472. " with solder paste, the app will issue a warning message box."
  8473. msgstr ""
  8474. "This is the Tool Number.\n"
  8475. "The solder dispensing will start with the tool with the biggest \n"
  8476. "diameter, continuing until there are no more Nozzle tools.\n"
  8477. "If there are no longer tools but there are still pads not covered\n"
  8478. " with solder paste, the app will issue a warning message box."
  8479. #: flatcamTools/ToolSolderPaste.py:94
  8480. msgid ""
  8481. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  8482. "is the width of the solder paste dispensed."
  8483. msgstr ""
  8484. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  8485. "is the width of the solder paste dispensed."
  8486. #: flatcamTools/ToolSolderPaste.py:101
  8487. msgid "New Nozzle Tool"
  8488. msgstr "New Nozzle Tool"
  8489. #: flatcamTools/ToolSolderPaste.py:117
  8490. msgid ""
  8491. "Add a new nozzle tool to the Tool Table\n"
  8492. "with the diameter specified above."
  8493. msgstr ""
  8494. "Add a new nozzle tool to the Tool Table\n"
  8495. "with the diameter specified above."
  8496. #: flatcamTools/ToolSolderPaste.py:129
  8497. msgid "Generate solder paste dispensing geometry."
  8498. msgstr "Generate solder paste dispensing geometry."
  8499. #: flatcamTools/ToolSolderPaste.py:142
  8500. msgid "STEP 1"
  8501. msgstr "STEP 1"
  8502. #: flatcamTools/ToolSolderPaste.py:144
  8503. msgid ""
  8504. "First step is to select a number of nozzle tools for usage\n"
  8505. "and then optionally modify the GCode parameters bellow."
  8506. msgstr ""
  8507. "First step is to select a number of nozzle tools for usage\n"
  8508. "and then optionally modify the GCode parameters bellow."
  8509. #: flatcamTools/ToolSolderPaste.py:147
  8510. msgid ""
  8511. "Select tools.\n"
  8512. "Modify parameters."
  8513. msgstr ""
  8514. "Select tools.\n"
  8515. "Modify parameters."
  8516. #: flatcamTools/ToolSolderPaste.py:290
  8517. msgid "Generate GCode"
  8518. msgstr "Generate GCode"
  8519. #: flatcamTools/ToolSolderPaste.py:292
  8520. msgid ""
  8521. "Generate GCode for Solder Paste dispensing\n"
  8522. "on PCB pads."
  8523. msgstr ""
  8524. "Generate GCode for Solder Paste dispensing\n"
  8525. "on PCB pads."
  8526. #: flatcamTools/ToolSolderPaste.py:308
  8527. msgid "STEP 2:"
  8528. msgstr "STEP 2:"
  8529. #: flatcamTools/ToolSolderPaste.py:310
  8530. msgid ""
  8531. "Second step is to create a solder paste dispensing\n"
  8532. "geometry out of an Solder Paste Mask Gerber file."
  8533. msgstr ""
  8534. "Second step is to create a solder paste dispensing\n"
  8535. "geometry out of an Solder Paste Mask Gerber file."
  8536. #: flatcamTools/ToolSolderPaste.py:326
  8537. msgid "Geo Result:"
  8538. msgstr "Geo Result:"
  8539. #: flatcamTools/ToolSolderPaste.py:328
  8540. msgid ""
  8541. "Geometry Solder Paste object.\n"
  8542. "The name of the object has to end in:\n"
  8543. "'_solderpaste' as a protection."
  8544. msgstr ""
  8545. "Geometry Solder Paste object.\n"
  8546. "The name of the object has to end in:\n"
  8547. "'_solderpaste' as a protection."
  8548. #: flatcamTools/ToolSolderPaste.py:337
  8549. msgid "STEP 3:"
  8550. msgstr "STEP 3:"
  8551. #: flatcamTools/ToolSolderPaste.py:339
  8552. msgid ""
  8553. "Third step is to select a solder paste dispensing geometry,\n"
  8554. "and then generate a CNCJob object.\n"
  8555. "\n"
  8556. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  8557. "first you need to generate a geometry with those new params,\n"
  8558. "and only after that you can generate an updated CNCJob."
  8559. msgstr ""
  8560. "Third step is to select a solder paste dispensing geometry,\n"
  8561. "and then generate a CNCJob object.\n"
  8562. "\n"
  8563. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  8564. "first you need to generate a geometry with those new params,\n"
  8565. "and only after that you can generate an updated CNCJob."
  8566. #: flatcamTools/ToolSolderPaste.py:359
  8567. msgid "CNC Result:"
  8568. msgstr "CNC Result:"
  8569. #: flatcamTools/ToolSolderPaste.py:361
  8570. msgid ""
  8571. "CNCJob Solder paste object.\n"
  8572. "In order to enable the GCode save section,\n"
  8573. "the name of the object has to end in:\n"
  8574. "'_solderpaste' as a protection."
  8575. msgstr ""
  8576. "CNCJob Solder paste object.\n"
  8577. "In order to enable the GCode save section,\n"
  8578. "the name of the object has to end in:\n"
  8579. "'_solderpaste' as a protection."
  8580. #: flatcamTools/ToolSolderPaste.py:371
  8581. msgid "View GCode"
  8582. msgstr "View GCode"
  8583. #: flatcamTools/ToolSolderPaste.py:373
  8584. msgid ""
  8585. "View the generated GCode for Solder Paste dispensing\n"
  8586. "on PCB pads."
  8587. msgstr ""
  8588. "View the generated GCode for Solder Paste dispensing\n"
  8589. "on PCB pads."
  8590. #: flatcamTools/ToolSolderPaste.py:377
  8591. msgid "Save GCode"
  8592. msgstr "Save GCode"
  8593. #: flatcamTools/ToolSolderPaste.py:379
  8594. msgid ""
  8595. "Save the generated GCode for Solder Paste dispensing\n"
  8596. "on PCB pads, to a file."
  8597. msgstr ""
  8598. "Save the generated GCode for Solder Paste dispensing\n"
  8599. "on PCB pads, to a file."
  8600. #: flatcamTools/ToolSolderPaste.py:383
  8601. msgid "STEP 4:"
  8602. msgstr "STEP 4:"
  8603. #: flatcamTools/ToolSolderPaste.py:385
  8604. msgid ""
  8605. "Fourth step (and last) is to select a CNCJob made from \n"
  8606. "a solder paste dispensing geometry, and then view/save it's GCode."
  8607. msgstr ""
  8608. "Fourth step (and last) is to select a CNCJob made from \n"
  8609. "a solder paste dispensing geometry, and then view/save it's GCode."
  8610. #: flatcamTools/ToolSolderPaste.py:413
  8611. msgid "Delete Object"
  8612. msgstr "Delete Object"
  8613. #: flatcamTools/ToolSolderPaste.py:788
  8614. msgid ""
  8615. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  8616. msgstr ""
  8617. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  8618. #: flatcamTools/ToolSolderPaste.py:793
  8619. msgid "[success] New Nozzle tool added to Tool Table."
  8620. msgstr "[success] New Nozzle tool added to Tool Table."
  8621. #: flatcamTools/ToolSolderPaste.py:835
  8622. msgid "[success] Nozzle tool from Tool Table was edited."
  8623. msgstr "[success] Nozzle tool from Tool Table was edited."
  8624. #: flatcamTools/ToolSolderPaste.py:891
  8625. msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  8626. msgstr "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  8627. #: flatcamTools/ToolSolderPaste.py:896
  8628. msgid "[success] Nozzle tool(s) deleted from Tool Table."
  8629. msgstr "[success] Nozzle tool(s) deleted from Tool Table."
  8630. #: flatcamTools/ToolSolderPaste.py:951
  8631. msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  8632. msgstr "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  8633. #: flatcamTools/ToolSolderPaste.py:968
  8634. msgid "Creating Solder Paste dispensing geometry."
  8635. msgstr "Creating Solder Paste dispensing geometry."
  8636. #: flatcamTools/ToolSolderPaste.py:980
  8637. msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
  8638. msgstr "[WARNING_NOTCL] No Nozzle tools in the tool table."
  8639. #: flatcamTools/ToolSolderPaste.py:1106 flatcamTools/ToolSolderPaste.py:1161
  8640. msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  8641. msgstr "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  8642. #: flatcamTools/ToolSolderPaste.py:1109
  8643. msgid "[success] Solder Paste geometry generated successfully..."
  8644. msgstr "[success] Solder Paste geometry generated successfully..."
  8645. #: flatcamTools/ToolSolderPaste.py:1115
  8646. msgid ""
  8647. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  8648. "diameters..."
  8649. msgstr ""
  8650. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  8651. "diameters..."
  8652. #: flatcamTools/ToolSolderPaste.py:1129
  8653. msgid "Generating Solder Paste dispensing geometry..."
  8654. msgstr "Generating Solder Paste dispensing geometry..."
  8655. #: flatcamTools/ToolSolderPaste.py:1149
  8656. msgid "[WARNING_NOTCL] There is no Geometry object available."
  8657. msgstr "[WARNING_NOTCL] There is no Geometry object available."
  8658. #: flatcamTools/ToolSolderPaste.py:1153
  8659. msgid ""
  8660. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  8661. "geometry."
  8662. msgstr ""
  8663. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  8664. "geometry."
  8665. #: flatcamTools/ToolSolderPaste.py:1258
  8666. #, python-format
  8667. msgid "[success] ToolSolderPaste CNCjob created: %s"
  8668. msgstr "[success] ToolSolderPaste CNCjob created: %s"
  8669. #: flatcamTools/ToolSolderPaste.py:1290 flatcamTools/ToolSolderPaste.py:1294
  8670. #: flatcamTools/ToolSolderPaste.py:1345
  8671. msgid ""
  8672. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  8673. "solder_paste_tool CNCJob object."
  8674. msgstr ""
  8675. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  8676. "solder_paste_tool CNCJob object."
  8677. #: flatcamTools/ToolSolderPaste.py:1317
  8678. msgid "[ERROR_NOTCL] No Gcode in the object..."
  8679. msgstr "[ERROR_NOTCL] No Gcode in the object..."
  8680. #: flatcamTools/ToolSolderPaste.py:1326
  8681. #, python-format
  8682. msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  8683. msgstr "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  8684. #: flatcamTools/ToolSolderPaste.py:1355
  8685. msgid "Export GCode ..."
  8686. msgstr "Export GCode ..."
  8687. #: flatcamTools/ToolSolderPaste.py:1363
  8688. msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
  8689. msgstr "[WARNING_NOTCL] Export Machine Code cancelled ..."
  8690. #: flatcamTools/ToolSolderPaste.py:1393
  8691. #, python-format
  8692. msgid "[success] Solder paste dispenser GCode file saved to: %s"
  8693. msgstr "[success] Solder paste dispenser GCode file saved to: %s"
  8694. #: flatcamTools/ToolTransform.py:23
  8695. msgid "Object Transform"
  8696. msgstr "Object Transform"
  8697. #: flatcamTools/ToolTransform.py:84
  8698. msgid ""
  8699. "Rotate the selected object(s).\n"
  8700. "The point of reference is the middle of\n"
  8701. "the bounding box for all selected objects."
  8702. msgstr ""
  8703. "Rotate the selected object(s).\n"
  8704. "The point of reference is the middle of\n"
  8705. "the bounding box for all selected objects."
  8706. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  8707. msgid ""
  8708. "Skew/shear the selected object(s).\n"
  8709. "The point of reference is the middle of\n"
  8710. "the bounding box for all selected objects."
  8711. msgstr ""
  8712. "Skew/shear the selected object(s).\n"
  8713. "The point of reference is the middle of\n"
  8714. "the bounding box for all selected objects."
  8715. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  8716. msgid ""
  8717. "Scale the selected object(s).\n"
  8718. "The point of reference depends on \n"
  8719. "the Scale reference checkbox state."
  8720. msgstr ""
  8721. "Scale the selected object(s).\n"
  8722. "The point of reference depends on \n"
  8723. "the Scale reference checkbox state."
  8724. #: flatcamTools/ToolTransform.py:202
  8725. msgid ""
  8726. "Scale the selected object(s)\n"
  8727. "using the Scale Factor X for both axis."
  8728. msgstr ""
  8729. "Scale the selected object(s)\n"
  8730. "using the Scale Factor X for both axis."
  8731. #: flatcamTools/ToolTransform.py:250 flatcamTools/ToolTransform.py:267
  8732. msgid ""
  8733. "Offset the selected object(s).\n"
  8734. "The point of reference is the middle of\n"
  8735. "the bounding box for all selected objects.\n"
  8736. msgstr ""
  8737. "Offset the selected object(s).\n"
  8738. "The point of reference is the middle of\n"
  8739. "the bounding box for all selected objects.\n"
  8740. #: flatcamTools/ToolTransform.py:297 flatcamTools/ToolTransform.py:305
  8741. msgid ""
  8742. "Flip the selected object(s) over the X axis.\n"
  8743. "Does not create a new object.\n"
  8744. " "
  8745. msgstr ""
  8746. "Flip the selected object(s) over the X axis.\n"
  8747. "Does not create a new object.\n"
  8748. " "
  8749. #: flatcamTools/ToolTransform.py:637
  8750. msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  8751. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  8752. #: flatcamTools/ToolTransform.py:665
  8753. msgid "CNCJob objects can't be rotated."
  8754. msgstr "CNCJob objects can't be rotated."
  8755. #: flatcamTools/ToolTransform.py:674
  8756. msgid "[success]Rotate done ..."
  8757. msgstr "[success]Rotate done ..."
  8758. #: flatcamTools/ToolTransform.py:689
  8759. msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  8760. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  8761. #: flatcamTools/ToolTransform.py:724
  8762. msgid "CNCJob objects can't be mirrored/flipped."
  8763. msgstr "CNCJob objects can't be mirrored/flipped."
  8764. #: flatcamTools/ToolTransform.py:735
  8765. msgid "[success]Flip on the Y axis done ..."
  8766. msgstr "[success]Flip on the Y axis done ..."
  8767. #: flatcamTools/ToolTransform.py:745
  8768. msgid "[success]Flip on the X axis done ..."
  8769. msgstr "[success]Flip on the X axis done ..."
  8770. #: flatcamTools/ToolTransform.py:759
  8771. msgid ""
  8772. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  8773. msgstr ""
  8774. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  8775. #: flatcamTools/ToolTransform.py:781
  8776. msgid "CNCJob objects can't be skewed."
  8777. msgstr "CNCJob objects can't be skewed."
  8778. #: flatcamTools/ToolTransform.py:793
  8779. #, python-format
  8780. msgid "[success]Skew on the %s axis done ..."
  8781. msgstr "[success]Skew on the %s axis done ..."
  8782. #: flatcamTools/ToolTransform.py:808
  8783. msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  8784. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  8785. #: flatcamTools/ToolTransform.py:841
  8786. msgid "CNCJob objects can't be scaled."
  8787. msgstr "CNCJob objects can't be scaled."
  8788. #: flatcamTools/ToolTransform.py:861
  8789. msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  8790. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  8791. #: flatcamTools/ToolTransform.py:882
  8792. msgid "CNCJob objects can't be offseted."
  8793. msgstr "CNCJob objects can't be offseted."
  8794. #: flatcamTools/ToolTransform.py:894
  8795. #, python-format
  8796. msgid "[success]Offset on the %s axis done ..."
  8797. msgstr "[success]Offset on the %s axis done ..."
  8798. msgid ""
  8799. "How much (fraction) of the tool width to overlap each tool pass.\n"
  8800. "Example:\n"
  8801. "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  8802. "\n"
  8803. "Adjust the value starting with lower values\n"
  8804. "and increasing it if areas that should be painted are still \n"
  8805. "not painted.\n"
  8806. "Lower values = faster processing, faster execution on PCB.\n"
  8807. "Higher values = slow processing and slow execution on CNC\n"
  8808. "due of too many paths."
  8809. msgstr ""
  8810. "How much (fraction) of the tool width to overlap each tool pass.\n"
  8811. "Example:\n"
  8812. "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  8813. "\n"
  8814. "Adjust the value starting with lower values\n"
  8815. "and increasing it if areas that should be painted are still \n"
  8816. "not painted.\n"
  8817. "Lower values = faster processing, faster execution on PCB.\n"
  8818. "Higher values = slow processing and slow execution on CNC\n"
  8819. "due of too many paths."
  8820. msgid "z_cut = Z coord for Toolchange"
  8821. msgstr "z_cut = Z coord for Toolchange"
  8822. msgid "z_move = Z coord for Toolchange"
  8823. msgstr "z_move = Z coord for Toolchange"
  8824. msgid "%s/Project_%s"
  8825. msgstr "%s/Project_%s"
  8826. msgid "tool_tab"
  8827. msgstr "tool_tab"