strings.po 331 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483
  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-28 16:18+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] Maschinencode-Datei gespeichert in: %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] Dieses CNCJob-Objekt kann nicht verarbeitet werden, da es "
  2187. "sich um ein %s CNCJob-Objekt handelt."
  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 hat keinen Einheitencode: entweder G20 oder 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] Abgebrochen. Der benutzerdefinierte Code zum Ändern des "
  2197. "Werkzeugs ist aktiviert, aber er ist leer."
  2198. #: FlatCAMObj.py:5597
  2199. msgid "[success] Toolchange G-code was replaced by a custom code."
  2200. msgstr ""
  2201. "[success] Der Werkzeugwechsel-G-Code wurde durch einen benutzerdefinierten "
  2202. "Code ersetzt."
  2203. #: FlatCAMObj.py:5612 flatcamTools/ToolSolderPaste.py:1389
  2204. msgid "[WARNING_NOTCL] No such file or directory"
  2205. msgstr "[WARNING_NOTCL] Keine solche Datei oder Ordner"
  2206. #: FlatCAMObj.py:5631 FlatCAMObj.py:5643
  2207. msgid ""
  2208. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  2209. "'toolchange_custom'"
  2210. msgstr ""
  2211. "[WARNING_NOTCL] Die verwendete Postprozessor-Datei muss im Namen enthalten "
  2212. "sein: 'toolchange_custom'"
  2213. #: FlatCAMObj.py:5649
  2214. msgid "[ERROR] There is no postprocessor file."
  2215. msgstr "[ERROR] Es gibt keine Postprozessor-Datei."
  2216. #: ObjectCollection.py:403
  2217. #, python-brace-format
  2218. msgid "Object renamed from {old} to {new}"
  2219. msgstr "Objekt umbenannt von {old} zu {new}"
  2220. #: ObjectCollection.py:738
  2221. #, python-format
  2222. msgid "[ERROR] Cause of error: %s"
  2223. msgstr "[ERROR] Fehlerursache: %s"
  2224. #: camlib.py:200
  2225. msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  2226. msgstr ""
  2227. "[ERROR_NOTCL] self.solid_geometry ist weder BaseGeometry noch eine Liste."
  2228. #: camlib.py:1387
  2229. msgid "[success]Object was mirrored ..."
  2230. msgstr "[success] Objekt wurde gespiegelt ..."
  2231. #: camlib.py:1389
  2232. msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
  2233. msgstr "[ERROR_NOTCL] Spiegelung fehlgeschlagen Kein Objekt ausgewählt"
  2234. #: camlib.py:1425
  2235. msgid "[success]Object was rotated ..."
  2236. msgstr "[success] Objekt wurde gedreht ..."
  2237. #: camlib.py:1427
  2238. msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
  2239. msgstr "[ERROR_NOTCL] Fehler beim Drehen. Kein Objekt ausgewählt"
  2240. #: camlib.py:1461
  2241. msgid "[success]Object was skewed ..."
  2242. msgstr "[success] Objekt war schief ..."
  2243. #: camlib.py:1463
  2244. msgid "[ERROR_NOTCL] Failed to skew. No object selected"
  2245. msgstr "[ERROR_NOTCL] Fehler beim Neigen Kein Objekt ausgewählt"
  2246. #: camlib.py:2647 camlib.py:2727
  2247. #, python-format
  2248. msgid "[WARNING] Coordinates missing, line ignored: %s"
  2249. msgstr "[WARNING] Koordinaten fehlen, Zeile wird ignoriert: %s"
  2250. #: camlib.py:2648 camlib.py:2728
  2251. msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  2252. msgstr ""
  2253. "[WARNING_NOTCL] Die GERBER-Datei könnte CORRUPT sein. Überprüfen Sie die "
  2254. "Datei !!!"
  2255. #: camlib.py:2696
  2256. #, python-format
  2257. msgid ""
  2258. "[ERROR] Region does not have enough points. File will be processed but there "
  2259. "are parser errors. Line number: %s"
  2260. msgstr ""
  2261. "[ERROR] Region hat nicht genug Punkte. Die Datei wird verarbeitet, es treten "
  2262. "jedoch Parserfehler auf. Linien Nummer: %s"
  2263. #: camlib.py:3051
  2264. #, python-format
  2265. msgid ""
  2266. "[ERROR]Gerber Parser ERROR.\n"
  2267. "%s:"
  2268. msgstr ""
  2269. "[ERROR] Gerber Parser ERROR.\n"
  2270. "%s:"
  2271. #: camlib.py:3267
  2272. msgid "[success]Gerber Scale done."
  2273. msgstr "[success] Gerber-Skalierung abgeschlossen."
  2274. #: camlib.py:3324
  2275. msgid "[success]Gerber Offset done."
  2276. msgstr "[success] Gerber Offset fertig."
  2277. #: camlib.py:3700
  2278. #, python-format
  2279. msgid "[ERROR_NOTCL] This is GCODE mark: %s"
  2280. msgstr "[ERROR_NOTCL] Dies ist die GCODE-Marke: %s"
  2281. #: camlib.py:4230
  2282. #, python-brace-format
  2283. msgid ""
  2284. "[ERROR] Excellon Parser error.\n"
  2285. "Parsing Failed. Line {l_nr}: {line}\n"
  2286. msgstr ""
  2287. "[ERROR] Fehler beim Excellon-Parser.\n"
  2288. "Parsing fehlgeschlagen. Zeile {l_nr}: {line}\n"
  2289. #: camlib.py:4307
  2290. msgid ""
  2291. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  2292. "not having a tool associated.\n"
  2293. "Check the resulting GCode."
  2294. msgstr ""
  2295. "[WARNING] Excellon.create_geometry () -> Eine Bohrstelle wurde übersprungen, "
  2296. "da kein Werkzeug zugeordnet wurde.\n"
  2297. "Überprüfen Sie den resultierenden GCode."
  2298. #: camlib.py:4843
  2299. #, python-format
  2300. msgid "[ERROR] There is no such parameter: %s"
  2301. msgstr "[ERROR] Es gibt keinen solchen Parameter: %s"
  2302. #: camlib.py:4908
  2303. msgid ""
  2304. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  2305. "drill into material.\n"
  2306. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  2307. "therefore the app will convert the value to negative. Check the resulting "
  2308. "CNC code (Gcode etc)."
  2309. msgstr ""
  2310. "[WARNING] Der Parameter Cut Z hat einen positiven Wert. Dies ist der "
  2311. "Tiefenwert zum Bohren in Material.\n"
  2312. "Der Parameter Cut Z muss einen negativen Wert haben, vorausgesetzt, es "
  2313. "handelt sich um einen Tippfehler, daher konvertiert die App den Wert in "
  2314. "einen negativen Wert. \n"
  2315. "Überprüfen Sie den resultierenden CNC-Code (Gcode usw.)."
  2316. #: camlib.py:4915 camlib.py:5388 camlib.py:5659
  2317. #, python-format
  2318. msgid ""
  2319. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  2320. msgstr ""
  2321. "[WARNING] Der Parameter Cut Z ist Null. Es wird kein Schnitt ausgeführt, da "
  2322. "die %s Datei übersprungen wird"
  2323. #: camlib.py:5131 camlib.py:5226 camlib.py:5277
  2324. msgid "[ERROR_NOTCL]The loaded Excellon file has no drills ..."
  2325. msgstr "[ERROR_NOTCL] Die geladene Excellon-Datei hat keine Bohrer ..."
  2326. #: camlib.py:5231
  2327. msgid "[ERROR_NOTCL] Wrong optimization type selected."
  2328. msgstr "[ERROR_NOTCL] Falscher Optimierungstyp ausgewählt."
  2329. #: camlib.py:5376 camlib.py:5647
  2330. msgid ""
  2331. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  2332. "combinations of other parameters."
  2333. msgstr ""
  2334. "[ERROR_NOTCL] Der Parameter Cut_Z ist None oder Null. Höchstwahrscheinlich "
  2335. "eine schlechte Kombination anderer Parameter."
  2336. #: camlib.py:5381 camlib.py:5652
  2337. msgid ""
  2338. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  2339. "cut into material.\n"
  2340. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  2341. "therefore the app will convert the value to negative.Check the resulting CNC "
  2342. "code (Gcode etc)."
  2343. msgstr ""
  2344. "[WARNING] Der Parameter Cut Z hat einen positiven Wert. Es ist der "
  2345. "Tiefenwert zum Schneiden in Material.\n"
  2346. "Der Parameter Cut Z muss einen negativen Wert haben, vorausgesetzt es "
  2347. "handelt sich um einen Tippfehler, daher konvertiert die App den Wert in "
  2348. "einen negativen Wert. \n"
  2349. "Überprüfen Sie den resultierenden CNC-Code (Gcode usw.)."
  2350. #: camlib.py:5393 camlib.py:5664
  2351. msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
  2352. msgstr "[ERROR_NOTCL] Der Parameter für den Travel Z ist Kein oder Null."
  2353. #: camlib.py:5397 camlib.py:5668
  2354. msgid ""
  2355. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  2356. "to travel between cuts.\n"
  2357. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  2358. "therefore the app will convert the value to positive.Check the resulting CNC "
  2359. "code (Gcode etc)."
  2360. msgstr ""
  2361. "[WARNING] Der Parameter Travel Z hat einen negativen Wert. Dies ist der "
  2362. "Höhenwert zwischen den Schnitten.\n"
  2363. "Der Parameter Z Travel muss einen positiven Wert haben. Wenn es sich um "
  2364. "einen Tippfehler handelt, konvertiert die App den Wert in einen positiven "
  2365. "Wert. Überprüfen Sie den resultierenden CNC-Code (Gcode usw.)."
  2366. #: camlib.py:5404 camlib.py:5675
  2367. #, python-format
  2368. msgid ""
  2369. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  2370. msgstr ""
  2371. "[WARNING] Der Parameter Z-Weg ist Null. Dies ist gefährlich, da die %s Datei "
  2372. "übersprungen wird"
  2373. #: camlib.py:5534
  2374. #, python-format
  2375. msgid "[ERROR]Expected a Geometry, got %s"
  2376. msgstr "[ERROR] Eine Geometrie erwartet,%s erhalten"
  2377. #: camlib.py:5540
  2378. msgid ""
  2379. "[ERROR_NOTCL]Trying to generate a CNC Job from a Geometry object without "
  2380. "solid_geometry."
  2381. msgstr ""
  2382. "[ERROR_NOTCL] Der Versuch, einen CNC-Auftrag aus einem Geometrieobjekt ohne "
  2383. "solid_geometry zu generieren."
  2384. #: camlib.py:5579
  2385. msgid ""
  2386. "[ERROR_NOTCL]The Tool Offset value is too negative to use for the "
  2387. "current_geometry.\n"
  2388. "Raise the value (in module) and try again."
  2389. msgstr ""
  2390. "[ERROR_NOTCL] Der Werkzeugkorrekturwert ist zu negativ, um ihn für "
  2391. "current_geometry zu verwenden.\n"
  2392. "Erhöhen Sie den Wert (im Modul) und versuchen Sie es erneut."
  2393. #: camlib.py:5801
  2394. msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  2395. msgstr ""
  2396. "[ERROR_NOTCL] In der SolderPaste-Geometrie sind keine Werkzeugdaten "
  2397. "vorhanden."
  2398. #: flatcamGUI/FlatCAMGUI.py:50
  2399. msgid "&File"
  2400. msgstr "&Datei"
  2401. #: flatcamGUI/FlatCAMGUI.py:55
  2402. msgid "&New Project ...\tCTRL+N"
  2403. msgstr "&Neues Projekt ...\tCTRL+N"
  2404. #: flatcamGUI/FlatCAMGUI.py:57
  2405. msgid "Will create a new, blank project"
  2406. msgstr "Erzeugt ein neues leeres Projekt"
  2407. #: flatcamGUI/FlatCAMGUI.py:62
  2408. msgid "&New"
  2409. msgstr "&Neu"
  2410. #: flatcamGUI/FlatCAMGUI.py:65
  2411. msgid "Geometry\tN"
  2412. msgstr "Geometrie\tN"
  2413. #: flatcamGUI/FlatCAMGUI.py:67
  2414. msgid "Will create a new, empty Geometry Object."
  2415. msgstr "Erzeugt ein neues, leeres Geometrieobjekt."
  2416. #: flatcamGUI/FlatCAMGUI.py:69
  2417. msgid "Excellon\tL"
  2418. msgstr "Excellon\tL"
  2419. #: flatcamGUI/FlatCAMGUI.py:71
  2420. msgid "Will create a new, empty Excellon Object."
  2421. msgstr "Erzeugt ein neues, leeres Excellon-Objekt."
  2422. #: flatcamGUI/FlatCAMGUI.py:74
  2423. msgid "Open"
  2424. msgstr "Öffnen"
  2425. #: flatcamGUI/FlatCAMGUI.py:79
  2426. msgid "Open &Gerber ...\tCTRL+G"
  2427. msgstr "Offen &Gerber ...\tCTRL+G"
  2428. #: flatcamGUI/FlatCAMGUI.py:86
  2429. msgid "Open &Excellon ...\tCTRL+E"
  2430. msgstr "Offen &Excellon ...\tCTRL+E"
  2431. #: flatcamGUI/FlatCAMGUI.py:91
  2432. msgid "Open G-&Code ..."
  2433. msgstr "Offen G-&Code ..."
  2434. #: flatcamGUI/FlatCAMGUI.py:95
  2435. msgid "Open &Project ..."
  2436. msgstr "Offen &Projekt..."
  2437. #: flatcamGUI/FlatCAMGUI.py:101
  2438. msgid "Open Config ..."
  2439. msgstr "Öffne Config ..."
  2440. #: flatcamGUI/FlatCAMGUI.py:105
  2441. msgid "Recent files"
  2442. msgstr "Neueste Dateien"
  2443. #: flatcamGUI/FlatCAMGUI.py:111
  2444. msgid "Scripting"
  2445. msgstr "Scripting"
  2446. #: flatcamGUI/FlatCAMGUI.py:114
  2447. msgid "New Script ..."
  2448. msgstr "Neues Skript ..."
  2449. #: flatcamGUI/FlatCAMGUI.py:116
  2450. msgid "Open Script ..."
  2451. msgstr "Skript öffnen ..."
  2452. #: flatcamGUI/FlatCAMGUI.py:118
  2453. msgid "Run Script ...\tSHIFT+S"
  2454. msgstr "Skript ausführen ...\tSHIFT+S"
  2455. #: flatcamGUI/FlatCAMGUI.py:121
  2456. msgid ""
  2457. "Will run the opened Tcl Script thus\n"
  2458. "enabling the automation of certain\n"
  2459. "functions of FlatCAM."
  2460. msgstr ""
  2461. "Läuft also das geöffnete Tcl-Skript\n"
  2462. "Ermöglichung der Automatisierung bestimmter\n"
  2463. "Funktionen von FlatCAM."
  2464. #: flatcamGUI/FlatCAMGUI.py:134
  2465. msgid "Import"
  2466. msgstr "Importieren"
  2467. #: flatcamGUI/FlatCAMGUI.py:136
  2468. msgid "&SVG as Geometry Object ..."
  2469. msgstr "&SVG als Geometrieobjekt ..."
  2470. #: flatcamGUI/FlatCAMGUI.py:139
  2471. msgid "&SVG as Gerber Object ..."
  2472. msgstr "&SVG als Gerberobjekt ..."
  2473. #: flatcamGUI/FlatCAMGUI.py:144
  2474. msgid "&DXF as Geometry Object ..."
  2475. msgstr "&DXF als Geometrieobjekt ..."
  2476. #: flatcamGUI/FlatCAMGUI.py:147
  2477. msgid "&DXF as Gerber Object ..."
  2478. msgstr "&DXF als Gerberobjekt ..."
  2479. #: flatcamGUI/FlatCAMGUI.py:152
  2480. msgid "Export"
  2481. msgstr "Ausführen"
  2482. #: flatcamGUI/FlatCAMGUI.py:155
  2483. msgid "Export &SVG ..."
  2484. msgstr "SVG exportieren ..."
  2485. #: flatcamGUI/FlatCAMGUI.py:158
  2486. msgid "Export DXF ..."
  2487. msgstr "DXF exportieren ..."
  2488. #: flatcamGUI/FlatCAMGUI.py:163
  2489. msgid "Export &PNG ..."
  2490. msgstr "PNG exportieren ..."
  2491. #: flatcamGUI/FlatCAMGUI.py:165
  2492. msgid ""
  2493. "Will export an image in PNG format,\n"
  2494. "the saved image will contain the visual \n"
  2495. "information currently in FlatCAM Plot Area."
  2496. msgstr ""
  2497. "Exportiert ein Bild im PNG-Format,\n"
  2498. "Das gespeicherte Bild enthält das Bild\n"
  2499. "Informationen derzeit im FlatCAM-Plotbereich."
  2500. #: flatcamGUI/FlatCAMGUI.py:173
  2501. msgid "Export &Excellon ..."
  2502. msgstr "Excellon exportieren ..."
  2503. #: flatcamGUI/FlatCAMGUI.py:176
  2504. msgid ""
  2505. "Will export an Excellon Object as Excellon file,\n"
  2506. "the coordinates format, the file units and zeros\n"
  2507. "are set in Preferences -> Excellon Export."
  2508. msgstr ""
  2509. "Exportieren Exportiert ein Excellon-Objekt als Excellon-Datei.\n"
  2510. "Das Koordinatenformat, die Dateieinheiten und Nullen\n"
  2511. "werden in den Einstellungen -> Excellon Export.Excellon eingestellt ..."
  2512. #: flatcamGUI/FlatCAMGUI.py:187
  2513. msgid "Save &Defaults"
  2514. msgstr "Standardeinstellungen speichern"
  2515. #: flatcamGUI/FlatCAMGUI.py:193 flatcamGUI/FlatCAMGUI.py:475
  2516. msgid "Save"
  2517. msgstr "Speichern"
  2518. #: flatcamGUI/FlatCAMGUI.py:195
  2519. msgid "&Save Project ..."
  2520. msgstr "Projekt speichern ..."
  2521. #: flatcamGUI/FlatCAMGUI.py:200
  2522. msgid "Save Project &As ...\tCTRL+S"
  2523. msgstr "Projekt speichern als ...\tCTRL+S"
  2524. #: flatcamGUI/FlatCAMGUI.py:204
  2525. msgid "Save Project C&opy ..."
  2526. msgstr "Projektkopie speichern ..."
  2527. #: flatcamGUI/FlatCAMGUI.py:212
  2528. msgid "E&xit"
  2529. msgstr "Ausgang"
  2530. #: flatcamGUI/FlatCAMGUI.py:218
  2531. msgid "&Edit"
  2532. msgstr "Bearbeiten"
  2533. #: flatcamGUI/FlatCAMGUI.py:221
  2534. msgid "Edit Object\tE"
  2535. msgstr "Objekt bearbeiten\tE"
  2536. #: flatcamGUI/FlatCAMGUI.py:222
  2537. msgid "Save && Close Editor\tCTRL+S"
  2538. msgstr "Speichern Sie && Schließen Sie den Editor\tCTRL+S"
  2539. #: flatcamGUI/FlatCAMGUI.py:230
  2540. msgid "Conversion"
  2541. msgstr "Umwandlung"
  2542. #: flatcamGUI/FlatCAMGUI.py:232
  2543. msgid "&Join Geo/Gerber/Exc -> Geo"
  2544. msgstr "Beitreten Geo/Gerber/Exc -> Geo"
  2545. #: flatcamGUI/FlatCAMGUI.py:234
  2546. msgid ""
  2547. "Merge a selection of objects, which can be of type:\n"
  2548. "- Gerber\n"
  2549. "- Excellon\n"
  2550. "- Geometry\n"
  2551. "into a new combo Geometry object."
  2552. msgstr ""
  2553. "Zusammenführen einer Auswahl von Objekten, die vom Typ sein können:\n"
  2554. "- Gerber\n"
  2555. "- Excellon\n"
  2556. "- Geometrie\n"
  2557. "in ein neues Geometrieobjekt kombinieren."
  2558. #: flatcamGUI/FlatCAMGUI.py:241
  2559. msgid "Join Excellon(s) -> Excellon"
  2560. msgstr "Beitreten Excellon(s) -> Excellon"
  2561. #: flatcamGUI/FlatCAMGUI.py:243
  2562. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  2563. msgstr ""
  2564. "Fassen Sie eine Auswahl von Excellon-Objekten in einem neuen Excellon-Objekt "
  2565. "zusammen."
  2566. #: flatcamGUI/FlatCAMGUI.py:246
  2567. msgid "Join Gerber(s) -> Gerber"
  2568. msgstr "Beitreten Gerber(s) -> Gerber"
  2569. #: flatcamGUI/FlatCAMGUI.py:248
  2570. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  2571. msgstr ""
  2572. "Mischen Sie eine Auswahl von Gerber-Objekten in ein neues Gerber-"
  2573. "Kombinationsobjekt."
  2574. #: flatcamGUI/FlatCAMGUI.py:253
  2575. msgid "Convert Single to MultiGeo"
  2576. msgstr "Konvertieren Sie Single in MultiGeo"
  2577. #: flatcamGUI/FlatCAMGUI.py:255
  2578. msgid ""
  2579. "Will convert a Geometry object from single_geometry type\n"
  2580. "to a multi_geometry type."
  2581. msgstr ""
  2582. "Konvertiert ein Geometrieobjekt vom Typ single_geometry\n"
  2583. "zu einem multi_geometry-Typ."
  2584. #: flatcamGUI/FlatCAMGUI.py:259
  2585. msgid "Convert Multi to SingleGeo"
  2586. msgstr "Konvertieren Sie Multi in SingleGeo"
  2587. #: flatcamGUI/FlatCAMGUI.py:261
  2588. msgid ""
  2589. "Will convert a Geometry object from multi_geometry type\n"
  2590. "to a single_geometry type."
  2591. msgstr ""
  2592. "Konvertiert ein Geometrieobjekt vom Typ multi_geometry\n"
  2593. "zu einem single_geometry-Typ."
  2594. #: flatcamGUI/FlatCAMGUI.py:268
  2595. msgid "&Copy Object\tCTRL+C"
  2596. msgstr "Objekt kopieren\tCTRL+C"
  2597. #: flatcamGUI/FlatCAMGUI.py:270
  2598. msgid "Copy as &Geom"
  2599. msgstr "Als Geom kopieren"
  2600. #: flatcamGUI/FlatCAMGUI.py:273
  2601. msgid "&Delete\tDEL"
  2602. msgstr "Löschen\tDEL"
  2603. #: flatcamGUI/FlatCAMGUI.py:277
  2604. msgid "Se&t Origin\tO"
  2605. msgstr "Ursprung festlegen\tO"
  2606. #: flatcamGUI/FlatCAMGUI.py:278
  2607. msgid "Jump to Location\tJ"
  2608. msgstr "Zum Ort springen\tJ"
  2609. #: flatcamGUI/FlatCAMGUI.py:283
  2610. msgid "Toggle Units\tQ"
  2611. msgstr "Einheiten umschalten\tQ"
  2612. #: flatcamGUI/FlatCAMGUI.py:285
  2613. msgid "&Select All\tCTRL+A"
  2614. msgstr "Wählen Sie Alle\tCTRL+A"
  2615. #: flatcamGUI/FlatCAMGUI.py:289
  2616. msgid "&Preferences\tSHIFT+P"
  2617. msgstr "Einstellungen\tSHIFT+P"
  2618. #: flatcamGUI/FlatCAMGUI.py:292
  2619. msgid "&Options"
  2620. msgstr "&Optionen"
  2621. #: flatcamGUI/FlatCAMGUI.py:307
  2622. msgid "&Rotate Selection\tSHIFT+(R)"
  2623. msgstr "Auswahl drehen\tSHIFT+(R)"
  2624. #: flatcamGUI/FlatCAMGUI.py:312
  2625. msgid "&Skew on X axis\tSHIFT+X"
  2626. msgstr "Neigung auf der X-Achse\tSHIFT+X"
  2627. #: flatcamGUI/FlatCAMGUI.py:314
  2628. msgid "S&kew on Y axis\tSHIFT+Y"
  2629. msgstr "Neigung auf der Y-Achse\tSHIFT+Y"
  2630. #: flatcamGUI/FlatCAMGUI.py:319
  2631. msgid "Flip on &X axis\tX"
  2632. msgstr "X-Achse kippen\tX"
  2633. #: flatcamGUI/FlatCAMGUI.py:321
  2634. msgid "Flip on &Y axis\tY"
  2635. msgstr "Y-Achse kippen\tY"
  2636. #: flatcamGUI/FlatCAMGUI.py:326
  2637. msgid "View source\tALT+S"
  2638. msgstr "Quelltext anzeigen\tALT+S"
  2639. #: flatcamGUI/FlatCAMGUI.py:331
  2640. msgid "&View"
  2641. msgstr "&Blick"
  2642. #: flatcamGUI/FlatCAMGUI.py:332
  2643. msgid "Enable all plots\tALT+1"
  2644. msgstr "Aktivieren Sie alle Diagramme\tALT+1"
  2645. #: flatcamGUI/FlatCAMGUI.py:334
  2646. msgid "Disable all plots\tALT+2"
  2647. msgstr "Deaktivieren Sie alle Diagramme\tALT+2"
  2648. #: flatcamGUI/FlatCAMGUI.py:336
  2649. msgid "Disable non-selected\tALT+3"
  2650. msgstr "Deaktivieren Sie nicht ausgewählt\tALT+3"
  2651. #: flatcamGUI/FlatCAMGUI.py:339
  2652. msgid "&Zoom Fit\tV"
  2653. msgstr "Zoomen passen\tV"
  2654. #: flatcamGUI/FlatCAMGUI.py:340
  2655. msgid "&Zoom In\t-"
  2656. msgstr "Hineinzoomen\t-"
  2657. #: flatcamGUI/FlatCAMGUI.py:341
  2658. msgid "&Zoom Out\t="
  2659. msgstr "Rauszoomen\t="
  2660. #: flatcamGUI/FlatCAMGUI.py:345
  2661. msgid "Toggle Code Editor\tCTRL+E"
  2662. msgstr "Code-Editor umschalten\tCTRL+E"
  2663. #: flatcamGUI/FlatCAMGUI.py:348
  2664. msgid "&Toggle FullScreen\tALT+F10"
  2665. msgstr "FullScreen umschalten\tALT+F10"
  2666. #: flatcamGUI/FlatCAMGUI.py:350
  2667. msgid "&Toggle Plot Area\tCTRL+F10"
  2668. msgstr "Plotbereich umschalten\tCTRL+F10"
  2669. #: flatcamGUI/FlatCAMGUI.py:352
  2670. msgid "&Toggle Project/Sel/Tool\t`"
  2671. msgstr "Projekt/Auswahl/Werkzeug umschalten\t`"
  2672. #: flatcamGUI/FlatCAMGUI.py:355
  2673. msgid "&Toggle Grid Snap\tG"
  2674. msgstr "Schaltet den Rasterfang ein\tG"
  2675. #: flatcamGUI/FlatCAMGUI.py:357
  2676. msgid "&Toggle Axis\tSHIFT+G"
  2677. msgstr "Achse umschalten\tSHIFT+G"
  2678. #: flatcamGUI/FlatCAMGUI.py:360
  2679. msgid "Toggle Workspace\tSHIFT+W"
  2680. msgstr "Arbeitsbereich umschalten\tSHIFT+W"
  2681. #: flatcamGUI/FlatCAMGUI.py:364
  2682. msgid "&Tool"
  2683. msgstr "Werkzeug"
  2684. #: flatcamGUI/FlatCAMGUI.py:366
  2685. msgid "&Command Line\tS"
  2686. msgstr "Befehlszeile\tS"
  2687. #: flatcamGUI/FlatCAMGUI.py:369
  2688. msgid "&Help"
  2689. msgstr "&Hilfe"
  2690. #: flatcamGUI/FlatCAMGUI.py:370
  2691. msgid "Help\tF1"
  2692. msgstr "Hilfe\tF1"
  2693. #: flatcamGUI/FlatCAMGUI.py:371
  2694. msgid "FlatCAM.org"
  2695. msgstr "FlatCAM.org"
  2696. #: flatcamGUI/FlatCAMGUI.py:374
  2697. msgid "Shortcuts List\tF3"
  2698. msgstr "Tastenkürzel Liste\tF3"
  2699. #: flatcamGUI/FlatCAMGUI.py:375
  2700. msgid "YouTube Channel\tF4"
  2701. msgstr "Youtube Kanal\tF4"
  2702. #: flatcamGUI/FlatCAMGUI.py:377
  2703. msgid "About"
  2704. msgstr "Über"
  2705. #: flatcamGUI/FlatCAMGUI.py:388
  2706. msgid "Add Circle\tO"
  2707. msgstr "Kreis hinzufügen\tO"
  2708. #: flatcamGUI/FlatCAMGUI.py:390
  2709. msgid "Add Arc\tA"
  2710. msgstr "Bogen hinzufügen\tA"
  2711. #: flatcamGUI/FlatCAMGUI.py:393
  2712. msgid "Add Rectangle\tR"
  2713. msgstr "Rechteck hinzufügen\tR"
  2714. #: flatcamGUI/FlatCAMGUI.py:396
  2715. msgid "Add Polygon\tN"
  2716. msgstr "Polygon hinzufügen\tN"
  2717. #: flatcamGUI/FlatCAMGUI.py:398
  2718. msgid "Add Path\tP"
  2719. msgstr "Pfad hinzufügen\tP"
  2720. #: flatcamGUI/FlatCAMGUI.py:400
  2721. msgid "Add Text\tT"
  2722. msgstr "Text hinzufügen\tT"
  2723. #: flatcamGUI/FlatCAMGUI.py:403
  2724. msgid "Polygon Union\tU"
  2725. msgstr "Polygon-Vereinigung\tU"
  2726. #: flatcamGUI/FlatCAMGUI.py:405
  2727. msgid "Polygon Intersection\tE"
  2728. msgstr "Polygonschnitt\tE"
  2729. #: flatcamGUI/FlatCAMGUI.py:407
  2730. msgid "Polygon Subtraction\tS"
  2731. msgstr "Polygon-Subtraktion\tS"
  2732. #: flatcamGUI/FlatCAMGUI.py:411
  2733. msgid "Cut Path\tX"
  2734. msgstr "Pfad ausschneiden\tX"
  2735. #: flatcamGUI/FlatCAMGUI.py:413
  2736. msgid "Copy Geom\tC"
  2737. msgstr "Geometrie kopieren\tC"
  2738. #: flatcamGUI/FlatCAMGUI.py:415
  2739. msgid "Delete Shape\tDEL"
  2740. msgstr "Form löschen\tDEL"
  2741. #: flatcamGUI/FlatCAMGUI.py:418
  2742. msgid "Move\tM"
  2743. msgstr "Bewegung\tM"
  2744. #: flatcamGUI/FlatCAMGUI.py:420
  2745. msgid "Buffer Tool\tB"
  2746. msgstr "Pufferwerkzeug\tB"
  2747. #: flatcamGUI/FlatCAMGUI.py:423
  2748. msgid "Paint Tool\tI"
  2749. msgstr "Malenwerkzeug\tI"
  2750. #: flatcamGUI/FlatCAMGUI.py:426
  2751. msgid "Transform Tool\tALT+R"
  2752. msgstr "Transformationswerkzeug\tALT+R"
  2753. #: flatcamGUI/FlatCAMGUI.py:430
  2754. msgid "Toggle Corner Snap\tK"
  2755. msgstr "Eckfang umschalten\tK"
  2756. #: flatcamGUI/FlatCAMGUI.py:433
  2757. msgid ">Excellon Editor<"
  2758. msgstr ">Excellon Editor<"
  2759. #: flatcamGUI/FlatCAMGUI.py:437
  2760. msgid "Add Drill Array\tA"
  2761. msgstr "Bohrfeld hinzufügen\tA"
  2762. #: flatcamGUI/FlatCAMGUI.py:439
  2763. msgid "Add Drill\tD"
  2764. msgstr "Bohrer hinzufügen\tD"
  2765. #: flatcamGUI/FlatCAMGUI.py:443
  2766. msgid "Resize Drill(S)\tR"
  2767. msgstr "Bohrer verkleinern\tR"
  2768. #: flatcamGUI/FlatCAMGUI.py:445
  2769. msgid "Copy\tC"
  2770. msgstr "Kopieren\tC"
  2771. #: flatcamGUI/FlatCAMGUI.py:447
  2772. msgid "Delete\tDEL"
  2773. msgstr "Löschen\tDEL"
  2774. #: flatcamGUI/FlatCAMGUI.py:452
  2775. msgid "Move Drill(s)\tM"
  2776. msgstr "Bohrer verschieben\tM"
  2777. #: flatcamGUI/FlatCAMGUI.py:466
  2778. msgid "Enable Plot"
  2779. msgstr "Diagramm aktivieren"
  2780. #: flatcamGUI/FlatCAMGUI.py:467
  2781. msgid "Disable Plot"
  2782. msgstr "Diagramm deaktivieren"
  2783. #: flatcamGUI/FlatCAMGUI.py:469
  2784. msgid "Generate CNC"
  2785. msgstr "CNC generieren"
  2786. #: flatcamGUI/FlatCAMGUI.py:470
  2787. msgid "View Source"
  2788. msgstr "Quelltext anzeigen"
  2789. #: flatcamGUI/FlatCAMGUI.py:472 flatcamGUI/FlatCAMGUI.py:1400
  2790. msgid "Edit"
  2791. msgstr "Bearbeiten"
  2792. #: flatcamGUI/FlatCAMGUI.py:478 flatcamGUI/FlatCAMGUI.py:1406
  2793. #: flatcamTools/ToolProperties.py:25
  2794. msgid "Properties"
  2795. msgstr "Eigenschaften"
  2796. #: flatcamGUI/FlatCAMGUI.py:507
  2797. msgid "File Toolbar"
  2798. msgstr "Dateisymbolleiste"
  2799. #: flatcamGUI/FlatCAMGUI.py:511
  2800. msgid "Edit Toolbar"
  2801. msgstr "Symbolleiste bearbeiten"
  2802. #: flatcamGUI/FlatCAMGUI.py:515
  2803. msgid "View Toolbar"
  2804. msgstr "Symbolleiste anzeigen"
  2805. #: flatcamGUI/FlatCAMGUI.py:519
  2806. msgid "Shell Toolbar"
  2807. msgstr "Shell-Symbolleiste"
  2808. #: flatcamGUI/FlatCAMGUI.py:523
  2809. msgid "Tools Toolbar"
  2810. msgstr "Werkzeugleiste"
  2811. #: flatcamGUI/FlatCAMGUI.py:527
  2812. msgid "Excellon Editor Toolbar"
  2813. msgstr "Excellon Editor-Symbolleiste"
  2814. #: flatcamGUI/FlatCAMGUI.py:531
  2815. msgid "Geometry Editor Toolbar"
  2816. msgstr "Geometrie Editor-Symbolleiste"
  2817. #: flatcamGUI/FlatCAMGUI.py:535
  2818. msgid "Grid Toolbar"
  2819. msgstr "Raster-Symbolleiste"
  2820. #: flatcamGUI/FlatCAMGUI.py:554 flatcamGUI/FlatCAMGUI.py:1603
  2821. msgid "Open project"
  2822. msgstr "Offenes Projekt"
  2823. #: flatcamGUI/FlatCAMGUI.py:555 flatcamGUI/FlatCAMGUI.py:1604
  2824. msgid "Save project"
  2825. msgstr "Projekt speichern"
  2826. #: flatcamGUI/FlatCAMGUI.py:558 flatcamGUI/FlatCAMGUI.py:1607
  2827. msgid "New Blank Geometry"
  2828. msgstr "Neue leere Geometrie"
  2829. #: flatcamGUI/FlatCAMGUI.py:559 flatcamGUI/FlatCAMGUI.py:1608
  2830. msgid "New Blank Excellon"
  2831. msgstr "Neuer unbelegter Excellon"
  2832. #: flatcamGUI/FlatCAMGUI.py:561 flatcamGUI/FlatCAMGUI.py:1610
  2833. msgid "Editor"
  2834. msgstr "Editor"
  2835. #: flatcamGUI/FlatCAMGUI.py:563 flatcamGUI/FlatCAMGUI.py:1612
  2836. msgid "Save Object and close the Editor"
  2837. msgstr "Speichern Sie das Objekt und schließen Sie den Editor"
  2838. #: flatcamGUI/FlatCAMGUI.py:567 flatcamGUI/FlatCAMGUI.py:1616
  2839. msgid "&Delete"
  2840. msgstr "&Löschen"
  2841. #: flatcamGUI/FlatCAMGUI.py:570 flatcamGUI/FlatCAMGUI.py:1619
  2842. msgid "&Replot"
  2843. msgstr "&Replotieren"
  2844. #: flatcamGUI/FlatCAMGUI.py:571 flatcamGUI/FlatCAMGUI.py:1620
  2845. msgid "&Clear plot"
  2846. msgstr "&Plot klar löschen"
  2847. #: flatcamGUI/FlatCAMGUI.py:572 flatcamGUI/FlatCAMGUI.py:1621
  2848. msgid "Zoom In"
  2849. msgstr "Hineinzoomen"
  2850. #: flatcamGUI/FlatCAMGUI.py:573 flatcamGUI/FlatCAMGUI.py:1622
  2851. msgid "Zoom Out"
  2852. msgstr "Rauszoomen"
  2853. #: flatcamGUI/FlatCAMGUI.py:574 flatcamGUI/FlatCAMGUI.py:1380
  2854. #: flatcamGUI/FlatCAMGUI.py:1623
  2855. msgid "Zoom Fit"
  2856. msgstr "Passenzoomen"
  2857. #: flatcamGUI/FlatCAMGUI.py:579 flatcamGUI/FlatCAMGUI.py:1628
  2858. msgid "&Command Line"
  2859. msgstr "Befehlszeile"
  2860. #: flatcamGUI/FlatCAMGUI.py:582 flatcamGUI/FlatCAMGUI.py:1631
  2861. msgid "2Sided Tool"
  2862. msgstr "2Seitiges Werkzeug"
  2863. #: flatcamGUI/FlatCAMGUI.py:583 flatcamGUI/FlatCAMGUI.py:1632
  2864. msgid "&Cutout Tool"
  2865. msgstr "Ausschnittwerkzeug"
  2866. #: flatcamGUI/FlatCAMGUI.py:584 flatcamGUI/FlatCAMGUI.py:1633
  2867. #: flatcamGUI/ObjectUI.py:463 flatcamTools/ToolNonCopperClear.py:283
  2868. msgid "NCC Tool"
  2869. msgstr "NCC Werkzeug"
  2870. #: flatcamGUI/FlatCAMGUI.py:588 flatcamGUI/FlatCAMGUI.py:1637
  2871. msgid "Panel Tool"
  2872. msgstr "Platte Werkzeug"
  2873. #: flatcamGUI/FlatCAMGUI.py:589 flatcamGUI/FlatCAMGUI.py:1638
  2874. #: flatcamTools/ToolFilm.py:204
  2875. msgid "Film Tool"
  2876. msgstr "Filmwerkzeug"
  2877. #: flatcamGUI/FlatCAMGUI.py:590 flatcamGUI/FlatCAMGUI.py:1640
  2878. msgid "SolderPaste Tool"
  2879. msgstr "Lötpaste-Werkzeug"
  2880. #: flatcamGUI/FlatCAMGUI.py:593 flatcamGUI/FlatCAMGUI.py:1644
  2881. msgid "Calculators Tool"
  2882. msgstr "Rechnerwerkzeug"
  2883. #: flatcamGUI/FlatCAMGUI.py:597 flatcamGUI/FlatCAMGUI.py:611
  2884. #: flatcamGUI/FlatCAMGUI.py:1648
  2885. msgid "Select"
  2886. msgstr "Wählen"
  2887. #: flatcamGUI/FlatCAMGUI.py:598 flatcamGUI/FlatCAMGUI.py:1649
  2888. msgid "Add Drill Hole"
  2889. msgstr "Bohrloch hinzufügen"
  2890. #: flatcamGUI/FlatCAMGUI.py:601 flatcamGUI/FlatCAMGUI.py:1652
  2891. msgid "Resize Drill"
  2892. msgstr "Bohrergröße ändern"
  2893. #: flatcamGUI/FlatCAMGUI.py:604 flatcamGUI/FlatCAMGUI.py:1655
  2894. msgid "Copy Drill"
  2895. msgstr "Bohrer kopieren"
  2896. #: flatcamGUI/FlatCAMGUI.py:605 flatcamGUI/FlatCAMGUI.py:1657
  2897. msgid "Delete Drill"
  2898. msgstr "Bohrer löschen"
  2899. #: flatcamGUI/FlatCAMGUI.py:608 flatcamGUI/FlatCAMGUI.py:1660
  2900. msgid "Move Drill"
  2901. msgstr "Bohrer bewegen"
  2902. #: flatcamGUI/FlatCAMGUI.py:612 flatcamGUI/FlatCAMGUI.py:1664
  2903. msgid "Add Circle"
  2904. msgstr "Kreis hinzufügen"
  2905. #: flatcamGUI/FlatCAMGUI.py:613 flatcamGUI/FlatCAMGUI.py:1665
  2906. msgid "Add Arc"
  2907. msgstr "Bogen hinzufügen"
  2908. #: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1667
  2909. msgid "Add Rectangle"
  2910. msgstr "Rechteck hinzufügen"
  2911. #: flatcamGUI/FlatCAMGUI.py:618 flatcamGUI/FlatCAMGUI.py:1670
  2912. msgid "Add Path"
  2913. msgstr "Pfad hinzufügen"
  2914. #: flatcamGUI/FlatCAMGUI.py:619 flatcamGUI/FlatCAMGUI.py:1672
  2915. msgid "Add Polygon"
  2916. msgstr "Polygon hinzufügen"
  2917. #: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1674
  2918. msgid "Add Text"
  2919. msgstr "Text hinzufügen"
  2920. #: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1676
  2921. msgid "Add Buffer"
  2922. msgstr "Puffer hinzufügen"
  2923. #: flatcamGUI/FlatCAMGUI.py:623 flatcamGUI/FlatCAMGUI.py:1677
  2924. msgid "Paint Shape"
  2925. msgstr "Malen Form"
  2926. #: flatcamGUI/FlatCAMGUI.py:626 flatcamGUI/FlatCAMGUI.py:1680
  2927. msgid "Polygon Union"
  2928. msgstr "Polygon-Vereinigung"
  2929. #: flatcamGUI/FlatCAMGUI.py:628 flatcamGUI/FlatCAMGUI.py:1682
  2930. msgid "Polygon Intersection"
  2931. msgstr "Polygonschnitt"
  2932. #: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1684
  2933. msgid "Polygon Subtraction"
  2934. msgstr "Polygon-Subtraktion"
  2935. #: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1687
  2936. msgid "Cut Path"
  2937. msgstr "Pfad ausschneiden"
  2938. #: flatcamGUI/FlatCAMGUI.py:634
  2939. msgid "Copy Shape(s)"
  2940. msgstr "Form kopieren"
  2941. #: flatcamGUI/FlatCAMGUI.py:637
  2942. msgid "Delete Shape '-'"
  2943. msgstr "Form löschen"
  2944. #: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1692
  2945. msgid "Transformations"
  2946. msgstr "Transformationen"
  2947. #: flatcamGUI/FlatCAMGUI.py:641
  2948. msgid "Move Objects "
  2949. msgstr "Objekte verschieben "
  2950. #: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1701
  2951. msgid "Snap to grid"
  2952. msgstr "Am Raster ausrichten"
  2953. #: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1704
  2954. msgid "Grid X snapping distance"
  2955. msgstr "Raster X Fangdistanz"
  2956. #: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1709
  2957. msgid "Grid Y snapping distance"
  2958. msgstr "Raster Y Fangdistanz"
  2959. #: flatcamGUI/FlatCAMGUI.py:661 flatcamGUI/FlatCAMGUI.py:1715
  2960. msgid ""
  2961. "When active, value on Grid_X\n"
  2962. "is copied to the Grid_Y value."
  2963. msgstr ""
  2964. "Wenn aktiv, Wert auf Grid_X\n"
  2965. "wird in den Wert von Grid_Y kopiert."
  2966. #: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:1721
  2967. msgid "Snap to corner"
  2968. msgstr "In der Ecke ausrichten"
  2969. #: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1725
  2970. #: flatcamGUI/FlatCAMGUI.py:2804
  2971. msgid "Max. magnet distance"
  2972. msgstr "Max. Magnetabstand"
  2973. #: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:1374
  2974. msgid "Project"
  2975. msgstr "Projekt"
  2976. #: flatcamGUI/FlatCAMGUI.py:694
  2977. msgid "Selected"
  2978. msgstr "Ausgewählt"
  2979. #: flatcamGUI/FlatCAMGUI.py:701
  2980. msgid "Tool"
  2981. msgstr "Werkzeug"
  2982. #: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:721
  2983. msgid "Plot Area"
  2984. msgstr "Grundstücksfläche"
  2985. #: flatcamGUI/FlatCAMGUI.py:745
  2986. msgid "General"
  2987. msgstr "Allgemeines"
  2988. #: flatcamGUI/FlatCAMGUI.py:754
  2989. msgid "APP. DEFAULTS"
  2990. msgstr "Anwendungsvorgaben"
  2991. #: flatcamGUI/FlatCAMGUI.py:755
  2992. msgid "PROJ. OPTIONS "
  2993. msgstr "Projektoptionen"
  2994. #: flatcamGUI/FlatCAMGUI.py:766
  2995. msgid "GERBER"
  2996. msgstr "GERBER"
  2997. #: flatcamGUI/FlatCAMGUI.py:775
  2998. msgid "EXCELLON"
  2999. msgstr "EXCELLON"
  3000. #: flatcamGUI/FlatCAMGUI.py:784
  3001. msgid "GEOMETRY"
  3002. msgstr "GEOMETRY"
  3003. #: flatcamGUI/FlatCAMGUI.py:794
  3004. msgid "CNC-JOB"
  3005. msgstr "CNC-Auftrag"
  3006. #: flatcamGUI/FlatCAMGUI.py:803
  3007. msgid "TOOLS"
  3008. msgstr "WERKZEUGE"
  3009. #: flatcamGUI/FlatCAMGUI.py:820
  3010. msgid "Import Preferences"
  3011. msgstr "Importeinstellungen"
  3012. #: flatcamGUI/FlatCAMGUI.py:823
  3013. msgid ""
  3014. "Import a full set of FlatCAM settings from a file\n"
  3015. "previously saved on HDD.\n"
  3016. "\n"
  3017. "FlatCAM automatically save a 'factory_defaults' file\n"
  3018. "on the first start. Do not delete that file."
  3019. msgstr ""
  3020. "Importieren Sie einen vollständigen Satz von FlatCAM-Einstellungen aus einer "
  3021. "Datei\n"
  3022. "zuvor auf der Festplatte gespeichert.\n"
  3023. "\n"
  3024. "FlatCAM speichert automatisch eine 'factory_defaults'-Datei\n"
  3025. "beim ersten Start. Löschen Sie diese Datei nicht."
  3026. #: flatcamGUI/FlatCAMGUI.py:830
  3027. msgid "Export Preferences"
  3028. msgstr "Voreinstellungen exportieren"
  3029. #: flatcamGUI/FlatCAMGUI.py:833
  3030. msgid ""
  3031. "Export a full set of FlatCAM settings in a file\n"
  3032. "that is saved on HDD."
  3033. msgstr ""
  3034. "Exportieren Sie einen vollständigen Satz von FlatCAM-Einstellungen in eine "
  3035. "Datei\n"
  3036. "das ist auf der Festplatte gespeichert."
  3037. #: flatcamGUI/FlatCAMGUI.py:838
  3038. msgid "Open Pref Folder"
  3039. msgstr "Öffnen Sie den Ordner \"Einstellungen\""
  3040. #: flatcamGUI/FlatCAMGUI.py:841
  3041. msgid "Open the folder where FlatCAM save the preferences files."
  3042. msgstr ""
  3043. "Öffnen Sie den Ordner, in dem FlatCAM die Voreinstellungsdateien speichert."
  3044. #: flatcamGUI/FlatCAMGUI.py:849
  3045. msgid "Save Preferences"
  3046. msgstr "Voreinstellungen speichern"
  3047. #: flatcamGUI/FlatCAMGUI.py:852
  3048. msgid ""
  3049. "Save the current settings in the 'current_defaults' file\n"
  3050. "which is the file storing the working default preferences."
  3051. msgstr ""
  3052. "Speichern Sie die aktuellen Einstellungen in der Datei 'current_defaults'\n"
  3053. "Dies ist die Datei, in der die Arbeitseinstellungen gespeichert sind."
  3054. #: flatcamGUI/FlatCAMGUI.py:878
  3055. #, fuzzy
  3056. msgid ""
  3057. "<b>General Shortcut list</b><br>\n"
  3058. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3059. "\"width:283px\">\n"
  3060. " <tbody>\n"
  3061. " <tr height=\"20\">\n"
  3062. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  3063. "td>\n"
  3064. " <td width=\"194\"><span style=\"color:"
  3065. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  3066. " </tr>\n"
  3067. " <tr height=\"20\">\n"
  3068. " <td height=\"20\">&nbsp;</td>\n"
  3069. " <td>&nbsp;</td>\n"
  3070. " </tr>\n"
  3071. " <tr height=\"20\">\n"
  3072. " <td height=\"20\"><strong>1</strong></td>\n"
  3073. " <td>&nbsp;Switch to Project Tab</td>\n"
  3074. " </tr>\n"
  3075. " <tr height=\"20\">\n"
  3076. " <td height=\"20\"><strong>2</strong></td>\n"
  3077. " <td>&nbsp;Switch to Selected Tab</td>\n"
  3078. " </tr>\n"
  3079. " <tr height=\"20\">\n"
  3080. " <td height=\"20\"><strong>3</strong></td>\n"
  3081. " <td>&nbsp;Switch to Tool Tab</td>\n"
  3082. " </tr>\n"
  3083. " <tr height=\"20\">\n"
  3084. " <td height=\"20\">&nbsp;</td>\n"
  3085. " <td>&nbsp;</td>\n"
  3086. " </tr>\n"
  3087. " <tr height=\"20\">\n"
  3088. " <td height=\"20\"><strong>E</strong></td>\n"
  3089. " <td>&nbsp;Edit Object (if selected)</td>\n"
  3090. " </tr>\n"
  3091. " <tr height=\"20\">\n"
  3092. " <td height=\"20\"><strong>G</strong></td>\n"
  3093. " <td>&nbsp;Grid On/Off</td>\n"
  3094. " </tr>\n"
  3095. " <tr height=\"20\">\n"
  3096. " <td height=\"20\"><strong>J</strong></td>\n"
  3097. " <td>&nbsp;Jump to Coordinates</td>\n"
  3098. " </tr>\n"
  3099. " <tr height=\"20\">\n"
  3100. " <td height=\"20\"><strong>L</strong></td>\n"
  3101. " <td>&nbsp;New Excellon</td>\n"
  3102. " </tr>\n"
  3103. " <tr height=\"20\">\n"
  3104. " <td height=\"20\"><strong>M</strong></td>\n"
  3105. " <td>&nbsp;Move Obj</td>\n"
  3106. " </tr>\n"
  3107. " <tr height=\"20\">\n"
  3108. " <td height=\"20\"><strong>N</strong></td>\n"
  3109. " <td>&nbsp;New Geometry</td>\n"
  3110. " </tr>\n"
  3111. " <tr height=\"20\">\n"
  3112. " <td height=\"20\"><strong>O</strong></td>\n"
  3113. " <td>&nbsp;Set Origin</td>\n"
  3114. " </tr>\n"
  3115. " <tr height=\"20\">\n"
  3116. " <td height=\"20\"><strong>Q</strong></td>\n"
  3117. " <td>&nbsp;Change Units</td>\n"
  3118. " </tr>\n"
  3119. " <tr height=\"20\">\n"
  3120. " <td height=\"20\"><strong>P</strong></td>\n"
  3121. " <td>&nbsp;Open Properties Tool</td>\n"
  3122. " </tr>\n"
  3123. " <tr height=\"20\">\n"
  3124. " <td height=\"20\"><strong>R</strong></td>\n"
  3125. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  3126. " </tr>\n"
  3127. " <tr height=\"20\">\n"
  3128. " <td height=\"20\"><strong>S</strong></td>\n"
  3129. " <td>&nbsp;Shell Toggle</td>\n"
  3130. " </tr>\n"
  3131. " <tr height=\"20\">\n"
  3132. " <td height=\"20\"><strong>T</strong></td>\n"
  3133. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  3134. "or in Tools NCC or Tools Paint)</td>\n"
  3135. " </tr>\n"
  3136. " <tr height=\"20\">\n"
  3137. " <td height=\"20\"><strong>V</strong></td>\n"
  3138. " <td>&nbsp;Zoom Fit</td>\n"
  3139. " </tr>\n"
  3140. " <tr height=\"20\">\n"
  3141. " <td height=\"20\"><strong>X</strong></td>\n"
  3142. " <td>&nbsp;Flip on X_axis</td>\n"
  3143. " </tr>\n"
  3144. " <tr height=\"20\">\n"
  3145. " <td height=\"20\"><strong>Y</strong></td>\n"
  3146. " <td>&nbsp;Flip on Y_axis</td>\n"
  3147. " </tr>\n"
  3148. " <tr height=\"20\">\n"
  3149. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  3150. " <td>&nbsp;Zoom Out</td>\n"
  3151. " </tr>\n"
  3152. " <tr height=\"20\">\n"
  3153. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  3154. " <td>&nbsp;Zoom In</td>\n"
  3155. " </tr>\n"
  3156. " <tr height=\"20\">\n"
  3157. " <td height=\"20\">&nbsp;</td>\n"
  3158. " <td>&nbsp;</td>\n"
  3159. " </tr>\n"
  3160. " <tr height=\"20\">\n"
  3161. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  3162. " <td>&nbsp;Select All</td>\n"
  3163. " </tr>\n"
  3164. " <tr height=\"20\">\n"
  3165. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  3166. " <td>&nbsp;Copy Obj</td>\n"
  3167. " </tr>\n"
  3168. " <tr height=\"20\">\n"
  3169. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  3170. " <td>&nbsp;Open Excellon File</td>\n"
  3171. " </tr>\n"
  3172. " <tr height=\"20\">\n"
  3173. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  3174. " <td>&nbsp;Open Gerber File</td>\n"
  3175. " </tr>\n"
  3176. " <tr height=\"20\">\n"
  3177. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  3178. " <td>&nbsp;New Project</td>\n"
  3179. " </tr>\n"
  3180. " <tr height=\"20\">\n"
  3181. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3182. " <td>&nbsp;Measurement Tool</td>\n"
  3183. " </tr>\n"
  3184. " <tr height=\"20\">\n"
  3185. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  3186. " <td>&nbsp;Open Project</td>\n"
  3187. " </tr>\n"
  3188. " <tr height=\"20\">\n"
  3189. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3190. " <td>&nbsp;Save Project As</td>\n"
  3191. " </tr>\n"
  3192. " <tr height=\"20\">\n"
  3193. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  3194. " <td>&nbsp;Toggle Plot Area</td>\n"
  3195. " </tr>\n"
  3196. " <tr height=\"20\">\n"
  3197. " <td height=\"20\">&nbsp;</td>\n"
  3198. " <td>&nbsp;</td>\n"
  3199. " </tr>\n"
  3200. " <tr height=\"20\">\n"
  3201. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  3202. " <td>&nbsp;Copy Obj_Name</td>\n"
  3203. " </tr>\n"
  3204. " <tr height=\"20\">\n"
  3205. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  3206. " <td>&nbsp;Toggle Code Editor</td>\n"
  3207. " </tr>\n"
  3208. " <tr height=\"20\">\n"
  3209. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  3210. " <td>&nbsp;Toggle the axis</td>\n"
  3211. " </tr>\n"
  3212. " <tr height=\"20\">\n"
  3213. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  3214. " <td>&nbsp;Open Preferences Window</td>\n"
  3215. " </tr>\n"
  3216. " <tr height=\"20\">\n"
  3217. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  3218. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  3219. " </tr>\n"
  3220. " <tr height=\"20\">\n"
  3221. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  3222. " <td>&nbsp;Run a Script</td>\n"
  3223. " </tr>\n"
  3224. " <tr height=\"20\">\n"
  3225. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  3226. " <td>&nbsp;Toggle the workspace</td>\n"
  3227. " </tr>\n"
  3228. " <tr height=\"20\">\n"
  3229. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3230. " <td>&nbsp;Skew on X axis</td>\n"
  3231. " </tr>\n"
  3232. " <tr height=\"20\">\n"
  3233. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3234. " <td>&nbsp;Skew on Y axis</td>\n"
  3235. " </tr>\n"
  3236. " <tr height=\"20\">\n"
  3237. " <td height=\"20\">&nbsp;</td>\n"
  3238. " <td>&nbsp;</td>\n"
  3239. " </tr>\n"
  3240. " <tr height=\"20\">\n"
  3241. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  3242. " <td>&nbsp;Calculators Tool</td>\n"
  3243. " </tr>\n"
  3244. " <tr height=\"20\">\n"
  3245. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  3246. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  3247. " </tr>\n"
  3248. " <tr height=\"20\">\n"
  3249. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  3250. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  3251. " </tr>\n"
  3252. " <tr height=\"20\">\n"
  3253. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  3254. " <td>&nbsp;Film PCB Tool</td>\n"
  3255. " </tr>\n"
  3256. " <tr height=\"20\">\n"
  3257. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  3258. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  3259. " </tr>\n"
  3260. " <tr height=\"20\">\n"
  3261. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  3262. " <td>&nbsp;Paint Area Tool</td>\n"
  3263. " </tr>\n"
  3264. " <tr height=\"20\">\n"
  3265. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3266. " <td>&nbsp;Transformations Tool</td>\n"
  3267. " </tr>\n"
  3268. " <tr height=\"20\">\n"
  3269. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  3270. " <td>&nbsp;View File Source</td>\n"
  3271. " </tr>\n"
  3272. " <tr height=\"20\">\n"
  3273. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  3274. " <td>&nbsp;Cutout PCB Tool</td>\n"
  3275. " </tr>\n"
  3276. " <tr height=\"20\">\n"
  3277. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  3278. " <td>&nbsp;Enable all Plots</td>\n"
  3279. " </tr>\n"
  3280. " <tr height=\"20\">\n"
  3281. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  3282. " <td>&nbsp;Disable all Plots</td>\n"
  3283. " </tr>\n"
  3284. " <tr height=\"20\">\n"
  3285. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  3286. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  3287. " </tr>\n"
  3288. " <tr height=\"20\">\n"
  3289. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  3290. " <td>&nbsp;Toggle Full Screen</td>\n"
  3291. " </tr>\n"
  3292. " <tr height=\"20\">\n"
  3293. " <td height=\"20\">&nbsp;</td>\n"
  3294. " <td>&nbsp;</td>\n"
  3295. " </tr>\n"
  3296. " <tr height=\"20\">\n"
  3297. " <td height=\"20\"><strong>F1</strong></td>\n"
  3298. " <td>&nbsp;Open Online Manual</td>\n"
  3299. " </tr>\n"
  3300. " <tr height=\"20\">\n"
  3301. " <td height=\"20\"><strong>F4</strong></td>\n"
  3302. " <td>&nbsp;Open Online Tutorials</td>\n"
  3303. " </tr>\n"
  3304. " <tr height=\"20\">\n"
  3305. " <td height=\"20\"><strong>Del</strong></td>\n"
  3306. " <td>&nbsp;Delete Object</td>\n"
  3307. " </tr>\n"
  3308. " <tr height=\"20\">\n"
  3309. " <td height=\"20\"><strong>Del</strong></td>\n"
  3310. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  3311. " </tr>\n"
  3312. " <tr height=\"20\">\n"
  3313. " <td height=\"20\"><strong>'`'</strong></td>\n"
  3314. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  3315. "Side)</td>\n"
  3316. " </tr>\n"
  3317. " <tr height=\"20\">\n"
  3318. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  3319. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  3320. " </tr>\n"
  3321. " <tr height=\"20\">\n"
  3322. " <td height=\"20\"><strong>Escape</strong></td>\n"
  3323. " <td>&nbsp;Deselects all objects</td>\n"
  3324. " </tr>\n"
  3325. " </tbody>\n"
  3326. " </table>\n"
  3327. " \n"
  3328. " "
  3329. msgstr ""
  3330. "<b>General Shortcut list</b><br>\n"
  3331. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3332. "\"width:283px\">\n"
  3333. " <tbody>\n"
  3334. " <tr height=\"20\">\n"
  3335. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  3336. "td>\n"
  3337. " <td width=\"194\"><span style=\"color:"
  3338. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  3339. " </tr>\n"
  3340. " <tr height=\"20\">\n"
  3341. " <td height=\"20\">&nbsp;</td>\n"
  3342. " <td>&nbsp;</td>\n"
  3343. " </tr>\n"
  3344. " <tr height=\"20\">\n"
  3345. " <td height=\"20\"><strong>1</strong></td>\n"
  3346. " <td>&nbsp;Switch to Project Tab</td>\n"
  3347. " </tr>\n"
  3348. " <tr height=\"20\">\n"
  3349. " <td height=\"20\"><strong>2</strong></td>\n"
  3350. " <td>&nbsp;Switch to Selected Tab</td>\n"
  3351. " </tr>\n"
  3352. " <tr height=\"20\">\n"
  3353. " <td height=\"20\"><strong>3</strong></td>\n"
  3354. " <td>&nbsp;Switch to Tool Tab</td>\n"
  3355. " </tr>\n"
  3356. " <tr height=\"20\">\n"
  3357. " <td height=\"20\">&nbsp;</td>\n"
  3358. " <td>&nbsp;</td>\n"
  3359. " </tr>\n"
  3360. " <tr height=\"20\">\n"
  3361. " <td height=\"20\"><strong>E</strong></td>\n"
  3362. " <td>&nbsp;Edit Object (if selected)</td>\n"
  3363. " </tr>\n"
  3364. " <tr height=\"20\">\n"
  3365. " <td height=\"20\"><strong>G</strong></td>\n"
  3366. " <td>&nbsp;Grid On/Off</td>\n"
  3367. " </tr>\n"
  3368. " <tr height=\"20\">\n"
  3369. " <td height=\"20\"><strong>J</strong></td>\n"
  3370. " <td>&nbsp;Jump to Coordinates</td>\n"
  3371. " </tr>\n"
  3372. " <tr height=\"20\">\n"
  3373. " <td height=\"20\"><strong>L</strong></td>\n"
  3374. " <td>&nbsp;New Excellon</td>\n"
  3375. " </tr>\n"
  3376. " <tr height=\"20\">\n"
  3377. " <td height=\"20\"><strong>M</strong></td>\n"
  3378. " <td>&nbsp;Move Obj</td>\n"
  3379. " </tr>\n"
  3380. " <tr height=\"20\">\n"
  3381. " <td height=\"20\"><strong>N</strong></td>\n"
  3382. " <td>&nbsp;New Geometry</td>\n"
  3383. " </tr>\n"
  3384. " <tr height=\"20\">\n"
  3385. " <td height=\"20\"><strong>O</strong></td>\n"
  3386. " <td>&nbsp;Set Origin</td>\n"
  3387. " </tr>\n"
  3388. " <tr height=\"20\">\n"
  3389. " <td height=\"20\"><strong>Q</strong></td>\n"
  3390. " <td>&nbsp;Change Units</td>\n"
  3391. " </tr>\n"
  3392. " <tr height=\"20\">\n"
  3393. " <td height=\"20\"><strong>P</strong></td>\n"
  3394. " <td>&nbsp;Open Properties Tool</td>\n"
  3395. " </tr>\n"
  3396. " <tr height=\"20\">\n"
  3397. " <td height=\"20\"><strong>R</strong></td>\n"
  3398. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  3399. " </tr>\n"
  3400. " <tr height=\"20\">\n"
  3401. " <td height=\"20\"><strong>S</strong></td>\n"
  3402. " <td>&nbsp;Shell Toggle</td>\n"
  3403. " </tr>\n"
  3404. " <tr height=\"20\">\n"
  3405. " <td height=\"20\"><strong>T</strong></td>\n"
  3406. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  3407. "or in Tools NCC or Tools Paint)</td>\n"
  3408. " </tr>\n"
  3409. " <tr height=\"20\">\n"
  3410. " <td height=\"20\"><strong>V</strong></td>\n"
  3411. " <td>&nbsp;Zoom Fit</td>\n"
  3412. " </tr>\n"
  3413. " <tr height=\"20\">\n"
  3414. " <td height=\"20\"><strong>X</strong></td>\n"
  3415. " <td>&nbsp;Flip on X_axis</td>\n"
  3416. " </tr>\n"
  3417. " <tr height=\"20\">\n"
  3418. " <td height=\"20\"><strong>Y</strong></td>\n"
  3419. " <td>&nbsp;Flip on Y_axis</td>\n"
  3420. " </tr>\n"
  3421. " <tr height=\"20\">\n"
  3422. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  3423. " <td>&nbsp;Zoom Out</td>\n"
  3424. " </tr>\n"
  3425. " <tr height=\"20\">\n"
  3426. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  3427. " <td>&nbsp;Zoom In</td>\n"
  3428. " </tr>\n"
  3429. " <tr height=\"20\">\n"
  3430. " <td height=\"20\">&nbsp;</td>\n"
  3431. " <td>&nbsp;</td>\n"
  3432. " </tr>\n"
  3433. " <tr height=\"20\">\n"
  3434. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  3435. " <td>&nbsp;Select All</td>\n"
  3436. " </tr>\n"
  3437. " <tr height=\"20\">\n"
  3438. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  3439. " <td>&nbsp;Copy Obj</td>\n"
  3440. " </tr>\n"
  3441. " <tr height=\"20\">\n"
  3442. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  3443. " <td>&nbsp;Open Excellon File</td>\n"
  3444. " </tr>\n"
  3445. " <tr height=\"20\">\n"
  3446. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  3447. " <td>&nbsp;Open Gerber File</td>\n"
  3448. " </tr>\n"
  3449. " <tr height=\"20\">\n"
  3450. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  3451. " <td>&nbsp;New Project</td>\n"
  3452. " </tr>\n"
  3453. " <tr height=\"20\">\n"
  3454. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3455. " <td>&nbsp;Measurement Tool</td>\n"
  3456. " </tr>\n"
  3457. " <tr height=\"20\">\n"
  3458. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  3459. " <td>&nbsp;Open Project</td>\n"
  3460. " </tr>\n"
  3461. " <tr height=\"20\">\n"
  3462. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3463. " <td>&nbsp;Save Project As</td>\n"
  3464. " </tr>\n"
  3465. " <tr height=\"20\">\n"
  3466. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  3467. " <td>&nbsp;Toggle Plot Area</td>\n"
  3468. " </tr>\n"
  3469. " <tr height=\"20\">\n"
  3470. " <td height=\"20\">&nbsp;</td>\n"
  3471. " <td>&nbsp;</td>\n"
  3472. " </tr>\n"
  3473. " <tr height=\"20\">\n"
  3474. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  3475. " <td>&nbsp;Copy Obj_Name</td>\n"
  3476. " </tr>\n"
  3477. " <tr height=\"20\">\n"
  3478. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  3479. " <td>&nbsp;Toggle Code Editor</td>\n"
  3480. " </tr>\n"
  3481. " <tr height=\"20\">\n"
  3482. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  3483. " <td>&nbsp;Toggle the axis</td>\n"
  3484. " </tr>\n"
  3485. " <tr height=\"20\">\n"
  3486. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  3487. " <td>&nbsp;Open Preferences Window</td>\n"
  3488. " </tr>\n"
  3489. " <tr height=\"20\">\n"
  3490. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  3491. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  3492. " </tr>\n"
  3493. " <tr height=\"20\">\n"
  3494. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  3495. " <td>&nbsp;Run a Script</td>\n"
  3496. " </tr>\n"
  3497. " <tr height=\"20\">\n"
  3498. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  3499. " <td>&nbsp;Toggle the workspace</td>\n"
  3500. " </tr>\n"
  3501. " <tr height=\"20\">\n"
  3502. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3503. " <td>&nbsp;Skew on X axis</td>\n"
  3504. " </tr>\n"
  3505. " <tr height=\"20\">\n"
  3506. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3507. " <td>&nbsp;Skew on Y axis</td>\n"
  3508. " </tr>\n"
  3509. " <tr height=\"20\">\n"
  3510. " <td height=\"20\">&nbsp;</td>\n"
  3511. " <td>&nbsp;</td>\n"
  3512. " </tr>\n"
  3513. " <tr height=\"20\">\n"
  3514. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  3515. " <td>&nbsp;Calculators Tool</td>\n"
  3516. " </tr>\n"
  3517. " <tr height=\"20\">\n"
  3518. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  3519. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  3520. " </tr>\n"
  3521. " <tr height=\"20\">\n"
  3522. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  3523. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  3524. " </tr>\n"
  3525. " <tr height=\"20\">\n"
  3526. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  3527. " <td>&nbsp;Film PCB Tool</td>\n"
  3528. " </tr>\n"
  3529. " <tr height=\"20\">\n"
  3530. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  3531. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  3532. " </tr>\n"
  3533. " <tr height=\"20\">\n"
  3534. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  3535. " <td>&nbsp;Paint Area Tool</td>\n"
  3536. " </tr>\n"
  3537. " <tr height=\"20\">\n"
  3538. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3539. " <td>&nbsp;Transformations Tool</td>\n"
  3540. " </tr>\n"
  3541. " <tr height=\"20\">\n"
  3542. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  3543. " <td>&nbsp;View File Source</td>\n"
  3544. " </tr>\n"
  3545. " <tr height=\"20\">\n"
  3546. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  3547. " <td>&nbsp;Cutout PCB Tool</td>\n"
  3548. " </tr>\n"
  3549. " <tr height=\"20\">\n"
  3550. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  3551. " <td>&nbsp;Enable all Plots</td>\n"
  3552. " </tr>\n"
  3553. " <tr height=\"20\">\n"
  3554. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  3555. " <td>&nbsp;Disable all Plots</td>\n"
  3556. " </tr>\n"
  3557. " <tr height=\"20\">\n"
  3558. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  3559. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  3560. " </tr>\n"
  3561. " <tr height=\"20\">\n"
  3562. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  3563. " <td>&nbsp;Toggle Full Screen</td>\n"
  3564. " </tr>\n"
  3565. " <tr height=\"20\">\n"
  3566. " <td height=\"20\">&nbsp;</td>\n"
  3567. " <td>&nbsp;</td>\n"
  3568. " </tr>\n"
  3569. " <tr height=\"20\">\n"
  3570. " <td height=\"20\"><strong>F1</strong></td>\n"
  3571. " <td>&nbsp;Open Online Manual</td>\n"
  3572. " </tr>\n"
  3573. " <tr height=\"20\">\n"
  3574. " <td height=\"20\"><strong>F4</strong></td>\n"
  3575. " <td>&nbsp;Open Online Tutorials</td>\n"
  3576. " </tr>\n"
  3577. " <tr height=\"20\">\n"
  3578. " <td height=\"20\"><strong>Del</strong></td>\n"
  3579. " <td>&nbsp;Delete Object</td>\n"
  3580. " </tr>\n"
  3581. " <tr height=\"20\">\n"
  3582. " <td height=\"20\"><strong>Del</strong></td>\n"
  3583. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  3584. " </tr>\n"
  3585. " <tr height=\"20\">\n"
  3586. " <td height=\"20\"><strong>'`'</strong></td>\n"
  3587. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  3588. "Side)</td>\n"
  3589. " </tr>\n"
  3590. " <tr height=\"20\">\n"
  3591. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  3592. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  3593. " </tr>\n"
  3594. " <tr height=\"20\">\n"
  3595. " <td height=\"20\"><strong>Escape</strong></td>\n"
  3596. " <td>&nbsp;Deselects all objects</td>\n"
  3597. " </tr>\n"
  3598. " </tbody>\n"
  3599. " </table>\n"
  3600. " \n"
  3601. " "
  3602. #: flatcamGUI/FlatCAMGUI.py:1155
  3603. #, fuzzy
  3604. msgid ""
  3605. "<b>Editor Shortcut list</b><br>\n"
  3606. " <br>\n"
  3607. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  3608. "strong><br>\n"
  3609. " \n"
  3610. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3611. "\"width:283px\">\n"
  3612. " <tbody>\n"
  3613. " <tr height=\"20\">\n"
  3614. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3615. "td>\n"
  3616. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  3617. " </tr>\n"
  3618. " <tr height=\"20\">\n"
  3619. " <td height=\"20\"><strong>B</strong></td>\n"
  3620. " <td>&nbsp;Buffer Tool</td>\n"
  3621. " </tr>\n"
  3622. " <tr height=\"20\">\n"
  3623. " <td height=\"20\"><strong>C</strong></td>\n"
  3624. " <td>&nbsp;Copy Geo Item</td>\n"
  3625. " </tr>\n"
  3626. " <tr height=\"20\">\n"
  3627. " <td height=\"20\"><strong>E</strong></td>\n"
  3628. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  3629. " </tr>\n"
  3630. " <tr height=\"20\">\n"
  3631. " <td height=\"20\"><strong>I</strong></td>\n"
  3632. " <td>&nbsp;Paint Tool</td>\n"
  3633. " </tr>\n"
  3634. " <tr height=\"20\">\n"
  3635. " <td height=\"20\"><strong>J</strong></td>\n"
  3636. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3637. " </tr>\n"
  3638. " <tr height=\"20\">\n"
  3639. " <td height=\"20\"><strong>K</strong></td>\n"
  3640. " <td>&nbsp;Toggle Corner Snap</td>\n"
  3641. " </tr>\n"
  3642. " <tr height=\"20\">\n"
  3643. " <td height=\"20\"><strong>M</strong></td>\n"
  3644. " <td>&nbsp;Move Geo Item</td>\n"
  3645. " </tr>\n"
  3646. " <tr height=\"20\">\n"
  3647. " <td height=\"20\"><strong>N</strong></td>\n"
  3648. " <td>&nbsp;Draw a Polygon</td>\n"
  3649. " </tr>\n"
  3650. " <tr height=\"20\">\n"
  3651. " <td height=\"20\"><strong>O</strong></td>\n"
  3652. " <td>&nbsp;Draw a Circle</td>\n"
  3653. " </tr>\n"
  3654. " <tr height=\"20\">\n"
  3655. " <td height=\"20\"><strong>P</strong></td>\n"
  3656. " <td>&nbsp;Draw a Path</td>\n"
  3657. " </tr>\n"
  3658. " <tr height=\"20\">\n"
  3659. " <td height=\"20\"><strong>R</strong></td>\n"
  3660. " <td>&nbsp;Draw Rectangle</td>\n"
  3661. " </tr>\n"
  3662. " <tr height=\"20\">\n"
  3663. " <td height=\"20\"><strong>S</strong></td>\n"
  3664. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  3665. " </tr>\n"
  3666. " <tr height=\"20\">\n"
  3667. " <td height=\"20\"><strong>T</strong></td>\n"
  3668. " <td>&nbsp;Add Text Tool</td>\n"
  3669. " </tr>\n"
  3670. " <tr height=\"20\">\n"
  3671. " <td height=\"20\"><strong>U</strong></td>\n"
  3672. " <td>&nbsp;Polygon Union Tool</td>\n"
  3673. " </tr>\n"
  3674. " <tr height=\"20\">\n"
  3675. " <td height=\"20\"><strong>X</strong></td>\n"
  3676. " <td>&nbsp;Flip shape on X axis</td>\n"
  3677. " </tr>\n"
  3678. " <tr height=\"20\">\n"
  3679. " <td height=\"20\"><strong>Y</strong></td>\n"
  3680. " <td>&nbsp;Flip shape on Y axis</td>\n"
  3681. " </tr>\n"
  3682. " <tr height=\"20\">\n"
  3683. " <td height=\"20\">&nbsp;</td>\n"
  3684. " <td>&nbsp;</td>\n"
  3685. " </tr>\n"
  3686. " <tr height=\"20\">\n"
  3687. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3688. " <td>&nbsp;Skew shape on X axis</td>\n"
  3689. " </tr>\n"
  3690. " <tr height=\"20\">\n"
  3691. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3692. " <td>&nbsp;Skew shape on Y axis</td>\n"
  3693. " </tr>\n"
  3694. " <tr height=\"20\">\n"
  3695. " <td height=\"20\">&nbsp;</td>\n"
  3696. " <td>&nbsp;</td>\n"
  3697. " </tr>\n"
  3698. " <tr height=\"20\">\n"
  3699. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3700. " <td>&nbsp;Editor Transformation Tool</td>\n"
  3701. " </tr>\n"
  3702. " <tr height=\"20\">\n"
  3703. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  3704. " <td>&nbsp;Offset shape on X axis</td>\n"
  3705. " </tr>\n"
  3706. " <tr height=\"20\">\n"
  3707. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  3708. " <td>&nbsp;Offset shape on Y axis</td>\n"
  3709. " </tr>\n"
  3710. " <tr height=\"20\">\n"
  3711. " <td height=\"20\">&nbsp;</td>\n"
  3712. " <td>&nbsp;</td>\n"
  3713. " </tr>\n"
  3714. " <tr height=\"20\">\n"
  3715. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3716. " <td>&nbsp;Measurement Tool</td>\n"
  3717. " </tr>\n"
  3718. " <tr height=\"20\">\n"
  3719. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3720. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3721. " </tr>\n"
  3722. " <tr height=\"20\">\n"
  3723. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  3724. " <td>&nbsp;Polygon Cut Tool</td>\n"
  3725. " </tr>\n"
  3726. " <tr height=\"20\">\n"
  3727. " <td height=\"20\">&nbsp;</td>\n"
  3728. " <td>&nbsp;</td>\n"
  3729. " </tr>\n"
  3730. " <tr height=\"20\">\n"
  3731. " <td height=\"20\"><strong>Space</strong></td>\n"
  3732. " <td>&nbsp;Rotate Geometry</td>\n"
  3733. " </tr>\n"
  3734. " <tr height=\"20\">\n"
  3735. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  3736. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  3737. " </tr>\n"
  3738. " <tr height=\"20\">\n"
  3739. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3740. " <td>&nbsp;Abort and return to Select</td>\n"
  3741. " </tr>\n"
  3742. " <tr height=\"20\">\n"
  3743. " <td height=\"20\"><strong>Del</strong></td>\n"
  3744. " <td>&nbsp;Delete Shape</td>\n"
  3745. " </tr>\n"
  3746. " </tbody>\n"
  3747. " </table>\n"
  3748. " <br>\n"
  3749. " <br>\n"
  3750. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  3751. "strong><br>\n"
  3752. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3753. "\"width:283px\">\n"
  3754. " <tbody>\n"
  3755. " <tr height=\"20\">\n"
  3756. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3757. "td>\n"
  3758. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  3759. " </tr>\n"
  3760. " <tr height=\"20\">\n"
  3761. " <td height=\"20\"><strong>C</strong></td>\n"
  3762. " <td>&nbsp;Copy Drill(s)</td>\n"
  3763. " </tr>\n"
  3764. " <tr height=\"20\">\n"
  3765. " <td height=\"20\"><strong>D</strong></td>\n"
  3766. " <td>&nbsp;Add Drill</td>\n"
  3767. " </tr>\n"
  3768. " <tr height=\"20\">\n"
  3769. " <td height=\"20\"><strong>J</strong></td>\n"
  3770. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3771. " </tr>\n"
  3772. " <tr height=\"20\">\n"
  3773. " <td height=\"20\"><strong>M</strong></td>\n"
  3774. " <td>&nbsp;Move Drill(s)</td>\n"
  3775. " </tr>\n"
  3776. " <tr height=\"20\">\n"
  3777. " <td height=\"20\"><strong>R</strong></td>\n"
  3778. " <td>&nbsp;Resize Drill(s)</td>\n"
  3779. " </tr>\n"
  3780. " <tr height=\"20\">\n"
  3781. " <td height=\"20\"><strong>T</strong></td>\n"
  3782. " <td>&nbsp;Add a new Tool</td>\n"
  3783. " </tr>\n"
  3784. " <tr height=\"20\">\n"
  3785. " <td height=\"20\">&nbsp;</td>\n"
  3786. " <td>&nbsp;</td>\n"
  3787. " </tr>\n"
  3788. " <tr height=\"20\">\n"
  3789. " <td height=\"20\"><strong>Del</strong></td>\n"
  3790. " <td>&nbsp;Delete Drill(s)</td>\n"
  3791. " </tr>\n"
  3792. " <tr height=\"20\">\n"
  3793. " <td height=\"20\"><strong>Del</strong></td>\n"
  3794. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  3795. " </tr>\n"
  3796. " <tr height=\"20\">\n"
  3797. " <td height=\"20\">&nbsp;</td>\n"
  3798. " <td>&nbsp;</td>\n"
  3799. " </tr>\n"
  3800. " <tr height=\"20\">\n"
  3801. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3802. " <td>&nbsp;Abort and return to Select</td>\n"
  3803. " </tr>\n"
  3804. " <tr height=\"20\">\n"
  3805. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3806. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3807. " </tr>\n"
  3808. " </tbody>\n"
  3809. " </table>\n"
  3810. " "
  3811. msgstr ""
  3812. "<b>Editor Shortcut list</b><br>\n"
  3813. " <br>\n"
  3814. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  3815. "strong><br>\n"
  3816. " \n"
  3817. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3818. "\"width:283px\">\n"
  3819. " <tbody>\n"
  3820. " <tr height=\"20\">\n"
  3821. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3822. "td>\n"
  3823. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  3824. " </tr>\n"
  3825. " <tr height=\"20\">\n"
  3826. " <td height=\"20\"><strong>B</strong></td>\n"
  3827. " <td>&nbsp;Buffer Tool</td>\n"
  3828. " </tr>\n"
  3829. " <tr height=\"20\">\n"
  3830. " <td height=\"20\"><strong>C</strong></td>\n"
  3831. " <td>&nbsp;Copy Geo Item</td>\n"
  3832. " </tr>\n"
  3833. " <tr height=\"20\">\n"
  3834. " <td height=\"20\"><strong>E</strong></td>\n"
  3835. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  3836. " </tr>\n"
  3837. " <tr height=\"20\">\n"
  3838. " <td height=\"20\"><strong>I</strong></td>\n"
  3839. " <td>&nbsp;Paint Tool</td>\n"
  3840. " </tr>\n"
  3841. " <tr height=\"20\">\n"
  3842. " <td height=\"20\"><strong>J</strong></td>\n"
  3843. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3844. " </tr>\n"
  3845. " <tr height=\"20\">\n"
  3846. " <td height=\"20\"><strong>K</strong></td>\n"
  3847. " <td>&nbsp;Toggle Corner Snap</td>\n"
  3848. " </tr>\n"
  3849. " <tr height=\"20\">\n"
  3850. " <td height=\"20\"><strong>M</strong></td>\n"
  3851. " <td>&nbsp;Move Geo Item</td>\n"
  3852. " </tr>\n"
  3853. " <tr height=\"20\">\n"
  3854. " <td height=\"20\"><strong>N</strong></td>\n"
  3855. " <td>&nbsp;Draw a Polygon</td>\n"
  3856. " </tr>\n"
  3857. " <tr height=\"20\">\n"
  3858. " <td height=\"20\"><strong>O</strong></td>\n"
  3859. " <td>&nbsp;Draw a Circle</td>\n"
  3860. " </tr>\n"
  3861. " <tr height=\"20\">\n"
  3862. " <td height=\"20\"><strong>P</strong></td>\n"
  3863. " <td>&nbsp;Draw a Path</td>\n"
  3864. " </tr>\n"
  3865. " <tr height=\"20\">\n"
  3866. " <td height=\"20\"><strong>R</strong></td>\n"
  3867. " <td>&nbsp;Draw Rectangle</td>\n"
  3868. " </tr>\n"
  3869. " <tr height=\"20\">\n"
  3870. " <td height=\"20\"><strong>S</strong></td>\n"
  3871. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  3872. " </tr>\n"
  3873. " <tr height=\"20\">\n"
  3874. " <td height=\"20\"><strong>T</strong></td>\n"
  3875. " <td>&nbsp;Add Text Tool</td>\n"
  3876. " </tr>\n"
  3877. " <tr height=\"20\">\n"
  3878. " <td height=\"20\"><strong>U</strong></td>\n"
  3879. " <td>&nbsp;Polygon Union Tool</td>\n"
  3880. " </tr>\n"
  3881. " <tr height=\"20\">\n"
  3882. " <td height=\"20\"><strong>X</strong></td>\n"
  3883. " <td>&nbsp;Flip shape on X axis</td>\n"
  3884. " </tr>\n"
  3885. " <tr height=\"20\">\n"
  3886. " <td height=\"20\"><strong>Y</strong></td>\n"
  3887. " <td>&nbsp;Flip shape on Y axis</td>\n"
  3888. " </tr>\n"
  3889. " <tr height=\"20\">\n"
  3890. " <td height=\"20\">&nbsp;</td>\n"
  3891. " <td>&nbsp;</td>\n"
  3892. " </tr>\n"
  3893. " <tr height=\"20\">\n"
  3894. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3895. " <td>&nbsp;Skew shape on X axis</td>\n"
  3896. " </tr>\n"
  3897. " <tr height=\"20\">\n"
  3898. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3899. " <td>&nbsp;Skew shape on Y axis</td>\n"
  3900. " </tr>\n"
  3901. " <tr height=\"20\">\n"
  3902. " <td height=\"20\">&nbsp;</td>\n"
  3903. " <td>&nbsp;</td>\n"
  3904. " </tr>\n"
  3905. " <tr height=\"20\">\n"
  3906. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3907. " <td>&nbsp;Editor Transformation Tool</td>\n"
  3908. " </tr>\n"
  3909. " <tr height=\"20\">\n"
  3910. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  3911. " <td>&nbsp;Offset shape on X axis</td>\n"
  3912. " </tr>\n"
  3913. " <tr height=\"20\">\n"
  3914. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  3915. " <td>&nbsp;Offset shape on Y axis</td>\n"
  3916. " </tr>\n"
  3917. " <tr height=\"20\">\n"
  3918. " <td height=\"20\">&nbsp;</td>\n"
  3919. " <td>&nbsp;</td>\n"
  3920. " </tr>\n"
  3921. " <tr height=\"20\">\n"
  3922. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3923. " <td>&nbsp;Measurement Tool</td>\n"
  3924. " </tr>\n"
  3925. " <tr height=\"20\">\n"
  3926. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3927. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3928. " </tr>\n"
  3929. " <tr height=\"20\">\n"
  3930. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  3931. " <td>&nbsp;Polygon Cut Tool</td>\n"
  3932. " </tr>\n"
  3933. " <tr height=\"20\">\n"
  3934. " <td height=\"20\">&nbsp;</td>\n"
  3935. " <td>&nbsp;</td>\n"
  3936. " </tr>\n"
  3937. " <tr height=\"20\">\n"
  3938. " <td height=\"20\"><strong>Space</strong></td>\n"
  3939. " <td>&nbsp;Rotate Geometry</td>\n"
  3940. " </tr>\n"
  3941. " <tr height=\"20\">\n"
  3942. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  3943. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  3944. " </tr>\n"
  3945. " <tr height=\"20\">\n"
  3946. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3947. " <td>&nbsp;Abort and return to Select</td>\n"
  3948. " </tr>\n"
  3949. " <tr height=\"20\">\n"
  3950. " <td height=\"20\"><strong>Del</strong></td>\n"
  3951. " <td>&nbsp;Delete Shape</td>\n"
  3952. " </tr>\n"
  3953. " </tbody>\n"
  3954. " </table>\n"
  3955. " <br>\n"
  3956. " <br>\n"
  3957. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  3958. "strong><br>\n"
  3959. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3960. "\"width:283px\">\n"
  3961. " <tbody>\n"
  3962. " <tr height=\"20\">\n"
  3963. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3964. "td>\n"
  3965. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  3966. " </tr>\n"
  3967. " <tr height=\"20\">\n"
  3968. " <td height=\"20\"><strong>C</strong></td>\n"
  3969. " <td>&nbsp;Copy Drill(s)</td>\n"
  3970. " </tr>\n"
  3971. " <tr height=\"20\">\n"
  3972. " <td height=\"20\"><strong>D</strong></td>\n"
  3973. " <td>&nbsp;Add Drill</td>\n"
  3974. " </tr>\n"
  3975. " <tr height=\"20\">\n"
  3976. " <td height=\"20\"><strong>J</strong></td>\n"
  3977. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3978. " </tr>\n"
  3979. " <tr height=\"20\">\n"
  3980. " <td height=\"20\"><strong>M</strong></td>\n"
  3981. " <td>&nbsp;Move Drill(s)</td>\n"
  3982. " </tr>\n"
  3983. " <tr height=\"20\">\n"
  3984. " <td height=\"20\"><strong>R</strong></td>\n"
  3985. " <td>&nbsp;Resize Drill(s)</td>\n"
  3986. " </tr>\n"
  3987. " <tr height=\"20\">\n"
  3988. " <td height=\"20\"><strong>T</strong></td>\n"
  3989. " <td>&nbsp;Add a new Tool</td>\n"
  3990. " </tr>\n"
  3991. " <tr height=\"20\">\n"
  3992. " <td height=\"20\">&nbsp;</td>\n"
  3993. " <td>&nbsp;</td>\n"
  3994. " </tr>\n"
  3995. " <tr height=\"20\">\n"
  3996. " <td height=\"20\"><strong>Del</strong></td>\n"
  3997. " <td>&nbsp;Delete Drill(s)</td>\n"
  3998. " </tr>\n"
  3999. " <tr height=\"20\">\n"
  4000. " <td height=\"20\"><strong>Del</strong></td>\n"
  4001. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  4002. " </tr>\n"
  4003. " <tr height=\"20\">\n"
  4004. " <td height=\"20\">&nbsp;</td>\n"
  4005. " <td>&nbsp;</td>\n"
  4006. " </tr>\n"
  4007. " <tr height=\"20\">\n"
  4008. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4009. " <td>&nbsp;Abort and return to Select</td>\n"
  4010. " </tr>\n"
  4011. " <tr height=\"20\">\n"
  4012. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4013. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4014. " </tr>\n"
  4015. " </tbody>\n"
  4016. " </table>\n"
  4017. " "
  4018. #: flatcamGUI/FlatCAMGUI.py:1368
  4019. msgid "Disable"
  4020. msgstr "Deaktivieren"
  4021. #: flatcamGUI/FlatCAMGUI.py:1370
  4022. msgid "New"
  4023. msgstr "Neu"
  4024. #: flatcamGUI/FlatCAMGUI.py:1371
  4025. msgid "Geometry"
  4026. msgstr "Geometrie"
  4027. #: flatcamGUI/FlatCAMGUI.py:1372
  4028. msgid "Excellon"
  4029. msgstr "Excellon"
  4030. #: flatcamGUI/FlatCAMGUI.py:1377
  4031. msgid "Grids"
  4032. msgstr "Raster"
  4033. #: flatcamGUI/FlatCAMGUI.py:1379
  4034. msgid "View"
  4035. msgstr "Aussicht"
  4036. #: flatcamGUI/FlatCAMGUI.py:1381
  4037. msgid "Clear Plot"
  4038. msgstr "Plot klar löschen"
  4039. #: flatcamGUI/FlatCAMGUI.py:1382
  4040. msgid "Replot"
  4041. msgstr "Replotieren"
  4042. #: flatcamGUI/FlatCAMGUI.py:1385
  4043. msgid "Geo Editor"
  4044. msgstr "Geo-Editor"
  4045. #: flatcamGUI/FlatCAMGUI.py:1386
  4046. msgid "Line"
  4047. msgstr "Linie"
  4048. #: flatcamGUI/FlatCAMGUI.py:1387
  4049. msgid "Rectangle"
  4050. msgstr "Rechteck"
  4051. #: flatcamGUI/FlatCAMGUI.py:1388 flatcamGUI/FlatCAMGUI.py:4607
  4052. #: flatcamGUI/ObjectUI.py:1431
  4053. msgid "Cut"
  4054. msgstr "Schnitt"
  4055. #: flatcamGUI/FlatCAMGUI.py:1390 flatcamGUI/FlatCAMGUI.py:1405
  4056. #: flatcamTools/ToolMove.py:26
  4057. msgid "Move"
  4058. msgstr "Bewegung"
  4059. #: flatcamGUI/FlatCAMGUI.py:1392
  4060. msgid "Exc Editor"
  4061. msgstr "Exc-Editor"
  4062. #: flatcamGUI/FlatCAMGUI.py:1393
  4063. msgid "Add Drill"
  4064. msgstr "Bohrer hinzufügen"
  4065. #: flatcamGUI/FlatCAMGUI.py:1395
  4066. msgid "Copy Drill(s)"
  4067. msgstr "Bohrer kopieren"
  4068. #: flatcamGUI/FlatCAMGUI.py:1401
  4069. msgid "Save && Close Edit"
  4070. msgstr "Speichern && Schließen Sie die Bearbeitung"
  4071. #: flatcamGUI/FlatCAMGUI.py:1426
  4072. msgid "Print Preview"
  4073. msgstr "Druckvorschau"
  4074. #: flatcamGUI/FlatCAMGUI.py:1427
  4075. msgid "Print Code"
  4076. msgstr "Code drucken"
  4077. #: flatcamGUI/FlatCAMGUI.py:1428
  4078. msgid "Find in Code"
  4079. msgstr "Im Code suchen"
  4080. #: flatcamGUI/FlatCAMGUI.py:1433
  4081. msgid "Replace With"
  4082. msgstr "Ersetzen mit"
  4083. #: flatcamGUI/FlatCAMGUI.py:1437 flatcamGUI/FlatCAMGUI.py:4605
  4084. #: flatcamGUI/FlatCAMGUI.py:5106 flatcamGUI/ObjectUI.py:1429
  4085. msgid "All"
  4086. msgstr "Alles"
  4087. #: flatcamGUI/FlatCAMGUI.py:1439
  4088. msgid ""
  4089. "When checked it will replace all instances in the 'Find' box\n"
  4090. "with the text in the 'Replace' box.."
  4091. msgstr ""
  4092. "Wenn diese Option aktiviert ist, werden alle Instanzen im Feld \"Suchen\" "
  4093. "ersetzt\n"
  4094. "mit dem Text im Feld \"Ersetzen\" .."
  4095. #: flatcamGUI/FlatCAMGUI.py:1442
  4096. msgid "Open Code"
  4097. msgstr "Code öffnen"
  4098. #: flatcamGUI/FlatCAMGUI.py:1443
  4099. msgid "Save Code"
  4100. msgstr "Code speichern"
  4101. #: flatcamGUI/FlatCAMGUI.py:1478
  4102. msgid ""
  4103. "Relative neasurement.\n"
  4104. "Reference is last click position"
  4105. msgstr ""
  4106. "Relative Messung\n"
  4107. "Referenz ist Position des letzten Klicks"
  4108. #: flatcamGUI/FlatCAMGUI.py:1484
  4109. msgid ""
  4110. "Absolute neasurement.\n"
  4111. "Reference is (X=0, Y= 0) position"
  4112. msgstr ""
  4113. "Absolute Messung.\n"
  4114. "Referenz ist (X = 0, Y = 0)"
  4115. #: flatcamGUI/FlatCAMGUI.py:1651
  4116. msgid "Add Drill Hole Array"
  4117. msgstr "Bohrlochfeld hinzufügen"
  4118. #: flatcamGUI/FlatCAMGUI.py:1663
  4119. msgid "Select 'Esc'"
  4120. msgstr "Wählen"
  4121. #: flatcamGUI/FlatCAMGUI.py:1688
  4122. msgid "Copy Objects"
  4123. msgstr "Objekte kopieren"
  4124. #: flatcamGUI/FlatCAMGUI.py:1690
  4125. msgid "Delete Shape"
  4126. msgstr "Form löschen"
  4127. #: flatcamGUI/FlatCAMGUI.py:1695
  4128. msgid "Move Objects"
  4129. msgstr "Objekte verschieben"
  4130. #: flatcamGUI/FlatCAMGUI.py:2077
  4131. msgid ""
  4132. "Please first select a geometry item to be cutted\n"
  4133. "then select the geometry item that will be cutted\n"
  4134. "out of the first item. In the end press ~X~ key or\n"
  4135. "the toolbar button."
  4136. msgstr ""
  4137. "Bitte wählen Sie zuerst ein zu schneidendes Geometrieelement aus\n"
  4138. "Wählen Sie dann das Geometrieelement aus, das geschnitten werden soll\n"
  4139. "aus dem ersten Artikel. Zum Schluss drücken Sie die Taste ~ X ~ oder\n"
  4140. "die Symbolleisten-Schaltfläche."
  4141. #: flatcamGUI/FlatCAMGUI.py:2084 flatcamGUI/FlatCAMGUI.py:2216
  4142. #: flatcamGUI/FlatCAMGUI.py:2275 flatcamGUI/FlatCAMGUI.py:2295
  4143. msgid "Warning"
  4144. msgstr "Warnung"
  4145. #: flatcamGUI/FlatCAMGUI.py:2151 flatcamGUI/FlatCAMGUI.py:2345
  4146. msgid "[WARNING_NOTCL]Cancelled."
  4147. msgstr "[WARNING_NOTCL] Abgebrochen."
  4148. #: flatcamGUI/FlatCAMGUI.py:2211
  4149. msgid ""
  4150. "Please select geometry items \n"
  4151. "on which to perform Intersection Tool."
  4152. msgstr ""
  4153. "Bitte wählen Sie Geometrieelemente aus\n"
  4154. "auf dem das Verschneidungswerkzeug ausgeführt werden soll."
  4155. #: flatcamGUI/FlatCAMGUI.py:2270
  4156. msgid ""
  4157. "Please select geometry items \n"
  4158. "on which to perform Substraction Tool."
  4159. msgstr ""
  4160. "Bitte wählen Sie Geometrieelemente aus\n"
  4161. "auf dem das Subtraktionswerkzeug ausgeführt werden soll."
  4162. #: flatcamGUI/FlatCAMGUI.py:2290
  4163. msgid ""
  4164. "Please select geometry items \n"
  4165. "on which to perform union."
  4166. msgstr ""
  4167. "Bitte wählen Sie Geometrieelemente aus\n"
  4168. "auf dem die Polygonverbindung ausgeführt werden soll."
  4169. #: flatcamGUI/FlatCAMGUI.py:2362
  4170. msgid "[WARNING_NOTCL]Cancelled. Nothing selected to delete."
  4171. msgstr "[WARNING_NOTCL] Abgebrochen. Nichts zum Löschen ausgewählt."
  4172. #: flatcamGUI/FlatCAMGUI.py:2429
  4173. msgid "[WARNING_NOTCL]Cancelled. Nothing selected to copy."
  4174. msgstr "[WARNING_NOTCL] Abgebrochen. Nichts zum Kopieren ausgewählt."
  4175. #: flatcamGUI/FlatCAMGUI.py:2475
  4176. msgid "[WARNING_NOTCL]Cancelled. Nothing selected to move."
  4177. msgstr "[WARNING_NOTCL] Abgebrochen. Nichts ausgewählt, um sich zu bewegen."
  4178. #: flatcamGUI/FlatCAMGUI.py:2489
  4179. msgid "New Tool ..."
  4180. msgstr "Neues Werkzeug ..."
  4181. #: flatcamGUI/FlatCAMGUI.py:2490
  4182. msgid "Enter a Tool Diameter:"
  4183. msgstr "Geben Sie einen Werkzeugdurchmesser ein:"
  4184. #: flatcamGUI/FlatCAMGUI.py:2789
  4185. msgid "Grid X value:"
  4186. msgstr "Raster X-Wert:"
  4187. #: flatcamGUI/FlatCAMGUI.py:2791
  4188. msgid "This is the Grid snap value on X axis."
  4189. msgstr "Dies ist der Rasterfangwert auf der X-Achse."
  4190. #: flatcamGUI/FlatCAMGUI.py:2796
  4191. msgid "Grid Y value:"
  4192. msgstr "Raster Y-Wert:"
  4193. #: flatcamGUI/FlatCAMGUI.py:2798
  4194. msgid "This is the Grid snap value on Y axis."
  4195. msgstr "Dies ist der Rasterfangwert auf der Y-Achse."
  4196. #: flatcamGUI/FlatCAMGUI.py:2803
  4197. msgid "Snap Max:"
  4198. msgstr "Maximalwert:"
  4199. #: flatcamGUI/FlatCAMGUI.py:2808
  4200. msgid "Workspace:"
  4201. msgstr "Arbeitsplatz:"
  4202. #: flatcamGUI/FlatCAMGUI.py:2810
  4203. msgid ""
  4204. "Draw a delimiting rectangle on canvas.\n"
  4205. "The purpose is to illustrate the limits for our work."
  4206. msgstr ""
  4207. "Zeichnen Sie ein begrenzendes Rechteck auf die Leinwand.\n"
  4208. "Ziel ist es, die Grenzen unserer Arbeit aufzuzeigen."
  4209. #: flatcamGUI/FlatCAMGUI.py:2813
  4210. msgid "Wk. format:"
  4211. msgstr "Arbeitsbereichformat:"
  4212. #: flatcamGUI/FlatCAMGUI.py:2815
  4213. msgid ""
  4214. "Select the type of rectangle to be used on canvas,\n"
  4215. "as valid workspace."
  4216. msgstr ""
  4217. "Wählen Sie den Typ des Rechtecks für die Leinwand aus.\n"
  4218. "als gültiger Arbeitsbereich."
  4219. #: flatcamGUI/FlatCAMGUI.py:2828
  4220. msgid "Plot Fill:"
  4221. msgstr "Plot füllen:"
  4222. #: flatcamGUI/FlatCAMGUI.py:2830
  4223. msgid ""
  4224. "Set the fill color for plotted objects.\n"
  4225. "First 6 digits are the color and the last 2\n"
  4226. "digits are for alpha (transparency) level."
  4227. msgstr ""
  4228. "Legen Sie die Füllfarbe für geplottete Objekte fest.\n"
  4229. "Die ersten 6 Ziffern sind die Farbe und die letzten 2\n"
  4230. "Ziffern sind für Alpha (Transparenz)."
  4231. #: flatcamGUI/FlatCAMGUI.py:2844 flatcamGUI/FlatCAMGUI.py:2894
  4232. #: flatcamGUI/FlatCAMGUI.py:2944
  4233. msgid "Alpha Level:"
  4234. msgstr "Alpha-Ebene:"
  4235. #: flatcamGUI/FlatCAMGUI.py:2846
  4236. msgid "Set the fill transparency for plotted objects."
  4237. msgstr "Legen Sie die Füllungstransparenz für geplottete Objekte fest."
  4238. #: flatcamGUI/FlatCAMGUI.py:2863
  4239. msgid "Plot Line:"
  4240. msgstr "Handlungsstrang:"
  4241. #: flatcamGUI/FlatCAMGUI.py:2865
  4242. msgid "Set the line color for plotted objects."
  4243. msgstr "Legen Sie die Linienfarbe für geplottete Objekte fest."
  4244. #: flatcamGUI/FlatCAMGUI.py:2877
  4245. msgid "Sel. Fill:"
  4246. msgstr "Ausgewählte Füllung:"
  4247. #: flatcamGUI/FlatCAMGUI.py:2879
  4248. msgid ""
  4249. "Set the fill color for the selection box\n"
  4250. "in case that the selection is done from left to right.\n"
  4251. "First 6 digits are the color and the last 2\n"
  4252. "digits are for alpha (transparency) level."
  4253. msgstr ""
  4254. "Legen Sie die Füllfarbe für das Auswahlfeld fest\n"
  4255. "falls die Auswahl von links nach rechts erfolgt.\n"
  4256. "Die ersten 6 Ziffern sind die Farbe und die letzten 2\n"
  4257. "Ziffern sind für Alpha (Transparenz)."
  4258. #: flatcamGUI/FlatCAMGUI.py:2896
  4259. msgid "Set the fill transparency for the 'left to right' selection box."
  4260. msgstr ""
  4261. "Legen Sie die Füllungstransparenz für das Auswahlfeld \"von links nach rechts"
  4262. "\" fest."
  4263. #: flatcamGUI/FlatCAMGUI.py:2913
  4264. msgid "Sel. Line:"
  4265. msgstr "Auswahlzeile:"
  4266. #: flatcamGUI/FlatCAMGUI.py:2915
  4267. msgid "Set the line color for the 'left to right' selection box."
  4268. msgstr ""
  4269. "Legen Sie die Linienfarbe für das Auswahlfeld \"von links nach rechts\" fest."
  4270. #: flatcamGUI/FlatCAMGUI.py:2927
  4271. msgid "Sel2. Fill:"
  4272. msgstr "Auswahl2 Füllung:"
  4273. #: flatcamGUI/FlatCAMGUI.py:2929
  4274. msgid ""
  4275. "Set the fill color for the selection box\n"
  4276. "in case that the selection is done from right to left.\n"
  4277. "First 6 digits are the color and the last 2\n"
  4278. "digits are for alpha (transparency) level."
  4279. msgstr ""
  4280. "Legen Sie die Füllfarbe für das Auswahlfeld fest\n"
  4281. "falls die Auswahl von rechts nach links erfolgt.\n"
  4282. "Die ersten 6 Ziffern sind die Farbe und die letzten 2\n"
  4283. "Ziffern sind für Alpha (Transparenz)."
  4284. #: flatcamGUI/FlatCAMGUI.py:2946
  4285. msgid "Set the fill transparency for selection 'right to left' box."
  4286. msgstr ""
  4287. "Legen Sie die Füllungstransparenz für die Auswahl von rechts nach links fest."
  4288. #: flatcamGUI/FlatCAMGUI.py:2963
  4289. msgid "Sel2. Line:"
  4290. msgstr "Auswahl 2 Zeile:"
  4291. #: flatcamGUI/FlatCAMGUI.py:2965
  4292. msgid "Set the line color for the 'right to left' selection box."
  4293. msgstr ""
  4294. "Legen Sie die Linienfarbe für das Auswahlfeld 'von rechts nach links' fest."
  4295. #: flatcamGUI/FlatCAMGUI.py:2977
  4296. msgid "Editor Draw:"
  4297. msgstr "Editor zeichnen:"
  4298. #: flatcamGUI/FlatCAMGUI.py:2979
  4299. msgid "Set the color for the shape."
  4300. msgstr "Legen Sie die Farbe für die Form fest."
  4301. #: flatcamGUI/FlatCAMGUI.py:2991
  4302. msgid "Editor Draw Sel.:"
  4303. msgstr "Editor Draw Sel.:"
  4304. #: flatcamGUI/FlatCAMGUI.py:2993
  4305. msgid "Set the color of the shape when selected."
  4306. msgstr "Set the color of the shape when selected."
  4307. #: flatcamGUI/FlatCAMGUI.py:3040
  4308. msgid "GUI Settings"
  4309. msgstr "GUI Settings"
  4310. #: flatcamGUI/FlatCAMGUI.py:3047
  4311. msgid "Layout:"
  4312. msgstr "Layout:"
  4313. #: flatcamGUI/FlatCAMGUI.py:3049
  4314. msgid ""
  4315. "Select an layout for FlatCAM.\n"
  4316. "It is applied immediately."
  4317. msgstr ""
  4318. "Select an layout for FlatCAM.\n"
  4319. "It is applied immediately."
  4320. #: flatcamGUI/FlatCAMGUI.py:3065
  4321. msgid "Style:"
  4322. msgstr "Style:"
  4323. #: flatcamGUI/FlatCAMGUI.py:3067
  4324. msgid ""
  4325. "Select an style for FlatCAM.\n"
  4326. "It will be applied at the next app start."
  4327. msgstr ""
  4328. "Select an style for FlatCAM.\n"
  4329. "It will be applied at the next app start."
  4330. #: flatcamGUI/FlatCAMGUI.py:3078
  4331. msgid "HDPI Support:"
  4332. msgstr "HDPI Support:"
  4333. #: flatcamGUI/FlatCAMGUI.py:3080
  4334. msgid ""
  4335. "Enable High DPI support for FlatCAM.\n"
  4336. "It will be applied at the next app start."
  4337. msgstr ""
  4338. "Enable High DPI support for FlatCAM.\n"
  4339. "It will be applied at the next app start."
  4340. #: flatcamGUI/FlatCAMGUI.py:3093
  4341. msgid "Clear GUI Settings:"
  4342. msgstr "Clear GUI Settings:"
  4343. #: flatcamGUI/FlatCAMGUI.py:3095
  4344. msgid ""
  4345. "Clear the GUI settings for FlatCAM,\n"
  4346. "such as: layout, gui state, style, hdpi support etc."
  4347. msgstr ""
  4348. "Clear the GUI settings for FlatCAM,\n"
  4349. "such as: layout, gui state, style, hdpi support etc."
  4350. #: flatcamGUI/FlatCAMGUI.py:3098
  4351. msgid "Clear"
  4352. msgstr "Clear"
  4353. #: flatcamGUI/FlatCAMGUI.py:3102
  4354. msgid "Hover Shape:"
  4355. msgstr "Hover Shape:"
  4356. #: flatcamGUI/FlatCAMGUI.py:3104
  4357. msgid ""
  4358. "Enable display of a hover shape for FlatCAM objects.\n"
  4359. "It is displayed whenever the mouse cursor is hovering\n"
  4360. "over any kind of not-selected object."
  4361. msgstr ""
  4362. "Enable display of a hover shape for FlatCAM objects.\n"
  4363. "It is displayed whenever the mouse cursor is hovering\n"
  4364. "over any kind of not-selected object."
  4365. #: flatcamGUI/FlatCAMGUI.py:3145
  4366. msgid "Are you sure you want to delete the GUI Settings? \n"
  4367. msgstr "Are you sure you want to delete the GUI Settings? \n"
  4368. #: flatcamGUI/FlatCAMGUI.py:3148
  4369. msgid "Clear GUI Settings"
  4370. msgstr "Clear GUI Settings"
  4371. #: flatcamGUI/FlatCAMGUI.py:3161
  4372. msgid "[success] GUI settings deleted ..."
  4373. msgstr "[success] GUI settings deleted ..."
  4374. #: flatcamGUI/FlatCAMGUI.py:3168
  4375. msgid "App Preferences"
  4376. msgstr "App Preferences"
  4377. #: flatcamGUI/FlatCAMGUI.py:3174
  4378. msgid "<b>Units:</b>"
  4379. msgstr "<b>Units:</b>"
  4380. #: flatcamGUI/FlatCAMGUI.py:3175
  4381. msgid ""
  4382. "The default value for FlatCAM units.\n"
  4383. "Whatever is selected here is set every time\n"
  4384. "FLatCAM is started."
  4385. msgstr ""
  4386. "The default value for FlatCAM units.\n"
  4387. "Whatever is selected here is set every time\n"
  4388. "FLatCAM is started."
  4389. #: flatcamGUI/FlatCAMGUI.py:3182
  4390. msgid "<b>APP. LEVEL:</b>"
  4391. msgstr "<b>APP. LEVEL:</b>"
  4392. #: flatcamGUI/FlatCAMGUI.py:3183
  4393. msgid ""
  4394. "Choose the default level of usage for FlatCAM.\n"
  4395. "BASIC level -> reduced functionality, best for beginner's.\n"
  4396. "ADVANCED level -> full functionality.\n"
  4397. "\n"
  4398. "The choice here will influence the parameters in\n"
  4399. "the Selected Tab for all kinds of FlatCAM objects."
  4400. msgstr ""
  4401. "Choose the default level of usage for FlatCAM.\n"
  4402. "BASIC level -> reduced functionality, best for beginner's.\n"
  4403. "ADVANCED level -> full functionality.\n"
  4404. "\n"
  4405. "The choice here will influence the parameters in\n"
  4406. "the Selected Tab for all kinds of FlatCAM objects."
  4407. #: flatcamGUI/FlatCAMGUI.py:3188 flatcamGUI/FlatCAMGUI.py:3792
  4408. msgid "Basic"
  4409. msgstr "Basic"
  4410. #: flatcamGUI/FlatCAMGUI.py:3189
  4411. msgid "Advanced"
  4412. msgstr "Advanced"
  4413. #: flatcamGUI/FlatCAMGUI.py:3192
  4414. msgid "<b>Languages:</b>"
  4415. msgstr "<b>Languages:</b>"
  4416. #: flatcamGUI/FlatCAMGUI.py:3193
  4417. msgid "Set the language used throughout FlatCAM."
  4418. msgstr "Set the language used throughout FlatCAM."
  4419. #: flatcamGUI/FlatCAMGUI.py:3196
  4420. msgid "Apply Language"
  4421. msgstr "Apply Language"
  4422. #: flatcamGUI/FlatCAMGUI.py:3199
  4423. msgid "Shell at StartUp:"
  4424. msgstr "Shell at StartUp:"
  4425. #: flatcamGUI/FlatCAMGUI.py:3201 flatcamGUI/FlatCAMGUI.py:3206
  4426. msgid ""
  4427. "Check this box if you want the shell to\n"
  4428. "start automatically at startup."
  4429. msgstr ""
  4430. "Check this box if you want the shell to\n"
  4431. "start automatically at startup."
  4432. #: flatcamGUI/FlatCAMGUI.py:3211
  4433. msgid "Version Check:"
  4434. msgstr "Version Check:"
  4435. #: flatcamGUI/FlatCAMGUI.py:3213 flatcamGUI/FlatCAMGUI.py:3218
  4436. msgid ""
  4437. "Check this box if you want to check\n"
  4438. "for a new version automatically at startup."
  4439. msgstr ""
  4440. "Check this box if you want to check\n"
  4441. "for a new version automatically at startup."
  4442. #: flatcamGUI/FlatCAMGUI.py:3223
  4443. msgid "Send Stats:"
  4444. msgstr "Send Stats:"
  4445. #: flatcamGUI/FlatCAMGUI.py:3225 flatcamGUI/FlatCAMGUI.py:3230
  4446. msgid ""
  4447. "Check this box if you agree to send anonymous\n"
  4448. "stats automatically at startup, to help improve FlatCAM."
  4449. msgstr ""
  4450. "Check this box if you agree to send anonymous\n"
  4451. "stats automatically at startup, to help improve FlatCAM."
  4452. #: flatcamGUI/FlatCAMGUI.py:3237
  4453. msgid "<b>Pan Button:</b>"
  4454. msgstr "<b>Pan Button:</b>"
  4455. #: flatcamGUI/FlatCAMGUI.py:3238
  4456. msgid ""
  4457. "Select the mouse button to use for panning:\n"
  4458. "- MMB --> Middle Mouse Button\n"
  4459. "- RMB --> Right Mouse Button"
  4460. msgstr ""
  4461. "Select the mouse button to use for panning:\n"
  4462. "- MMB --> Middle Mouse Button\n"
  4463. "- RMB --> Right Mouse Button"
  4464. #: flatcamGUI/FlatCAMGUI.py:3241
  4465. msgid "MMB"
  4466. msgstr "MMB"
  4467. #: flatcamGUI/FlatCAMGUI.py:3242
  4468. msgid "RMB"
  4469. msgstr "RMB"
  4470. #: flatcamGUI/FlatCAMGUI.py:3245
  4471. msgid "<b>Multiple Sel:</b>"
  4472. msgstr "<b>Multiple Sel:</b>"
  4473. #: flatcamGUI/FlatCAMGUI.py:3246
  4474. msgid "Select the key used for multiple selection."
  4475. msgstr "Select the key used for multiple selection."
  4476. #: flatcamGUI/FlatCAMGUI.py:3247
  4477. msgid "CTRL"
  4478. msgstr "CTRL"
  4479. #: flatcamGUI/FlatCAMGUI.py:3248
  4480. msgid "SHIFT"
  4481. msgstr "SHIFT"
  4482. #: flatcamGUI/FlatCAMGUI.py:3251
  4483. msgid "Project at StartUp:"
  4484. msgstr "Project at StartUp:"
  4485. #: flatcamGUI/FlatCAMGUI.py:3253 flatcamGUI/FlatCAMGUI.py:3258
  4486. msgid ""
  4487. "Check this box if you want the project/selected/tool tab area to\n"
  4488. "to be shown automatically at startup."
  4489. msgstr ""
  4490. "Check this box if you want the project/selected/tool tab area to\n"
  4491. "to be shown automatically at startup."
  4492. #: flatcamGUI/FlatCAMGUI.py:3263
  4493. msgid "Project AutoHide:"
  4494. msgstr "Project AutoHide:"
  4495. #: flatcamGUI/FlatCAMGUI.py:3265 flatcamGUI/FlatCAMGUI.py:3271
  4496. msgid ""
  4497. "Check this box if you want the project/selected/tool tab area to\n"
  4498. "hide automatically when there are no objects loaded and\n"
  4499. "to show whenever a new object is created."
  4500. msgstr ""
  4501. "Check this box if you want the project/selected/tool tab area to\n"
  4502. "hide automatically when there are no objects loaded and\n"
  4503. "to show whenever a new object is created."
  4504. #: flatcamGUI/FlatCAMGUI.py:3277
  4505. msgid "<b>Enable ToolTips:</b>"
  4506. msgstr "<b>Enable ToolTips:</b>"
  4507. #: flatcamGUI/FlatCAMGUI.py:3279 flatcamGUI/FlatCAMGUI.py:3284
  4508. msgid ""
  4509. "Check this box if you want to have toolTips displayed\n"
  4510. "when hovering with mouse over items throughout the App."
  4511. msgstr ""
  4512. "Check this box if you want to have toolTips displayed\n"
  4513. "when hovering with mouse over items throughout the App."
  4514. #: flatcamGUI/FlatCAMGUI.py:3318
  4515. msgid "Save Compressed Project"
  4516. msgstr "Save Compressed Project"
  4517. #: flatcamGUI/FlatCAMGUI.py:3320
  4518. msgid ""
  4519. "Whether to save a compressed or uncompressed project.\n"
  4520. "When checked it will save a compressed FlatCAM project."
  4521. msgstr ""
  4522. "Whether to save a compressed or uncompressed project.\n"
  4523. "When checked it will save a compressed FlatCAM project."
  4524. #: flatcamGUI/FlatCAMGUI.py:3331
  4525. msgid "Compression Level:"
  4526. msgstr "Compression Level:"
  4527. #: flatcamGUI/FlatCAMGUI.py:3333
  4528. msgid ""
  4529. "The level of compression used when saving\n"
  4530. "a FlatCAM project. Higher value means better compression\n"
  4531. "but require more RAM usage and more processing time."
  4532. msgstr ""
  4533. "The level of compression used when saving\n"
  4534. "a FlatCAM project. Higher value means better compression\n"
  4535. "but require more RAM usage and more processing time."
  4536. #: flatcamGUI/FlatCAMGUI.py:3359 flatcamGUI/FlatCAMGUI.py:3600
  4537. #: flatcamGUI/FlatCAMGUI.py:4255 flatcamGUI/FlatCAMGUI.py:4579
  4538. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:576
  4539. #: flatcamGUI/ObjectUI.py:901 flatcamGUI/ObjectUI.py:1415
  4540. msgid "<b>Plot Options:</b>"
  4541. msgstr "<b>Plot Options:</b>"
  4542. #: flatcamGUI/FlatCAMGUI.py:3366 flatcamGUI/FlatCAMGUI.py:3612
  4543. #: flatcamGUI/ObjectUI.py:577
  4544. msgid "Solid"
  4545. msgstr "Solid"
  4546. #: flatcamGUI/FlatCAMGUI.py:3368 flatcamGUI/ObjectUI.py:158
  4547. msgid "Solid color polygons."
  4548. msgstr "Solid color polygons."
  4549. #: flatcamGUI/FlatCAMGUI.py:3373
  4550. msgid "M-Color"
  4551. msgstr "M-Color"
  4552. #: flatcamGUI/FlatCAMGUI.py:3375 flatcamGUI/ObjectUI.py:166
  4553. msgid "Draw polygons in different colors."
  4554. msgstr "Draw polygons in different colors."
  4555. #: flatcamGUI/FlatCAMGUI.py:3380 flatcamGUI/FlatCAMGUI.py:3606
  4556. #: flatcamGUI/FlatCAMGUI.py:4259 flatcamGUI/ObjectUI.py:172
  4557. msgid "Plot"
  4558. msgstr "Plot"
  4559. #: flatcamGUI/FlatCAMGUI.py:3382 flatcamGUI/FlatCAMGUI.py:4261
  4560. #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:617
  4561. #: flatcamGUI/ObjectUI.py:947 flatcamGUI/ObjectUI.py:1502
  4562. msgid "Plot (show) this object."
  4563. msgstr "Plot (show) this object."
  4564. #: flatcamGUI/FlatCAMGUI.py:3387 flatcamGUI/FlatCAMGUI.py:4268
  4565. #: flatcamGUI/FlatCAMGUI.py:4615
  4566. msgid "Circle Steps:"
  4567. msgstr "Circle Steps:"
  4568. #: flatcamGUI/FlatCAMGUI.py:3389
  4569. msgid ""
  4570. "The number of circle steps for Gerber \n"
  4571. "circular aperture linear approximation."
  4572. msgstr ""
  4573. "The number of circle steps for Gerber \n"
  4574. "circular aperture linear approximation."
  4575. #: flatcamGUI/FlatCAMGUI.py:3404
  4576. msgid "Gerber Options"
  4577. msgstr "Gerber Options"
  4578. #: flatcamGUI/FlatCAMGUI.py:3408 flatcamGUI/ObjectUI.py:322
  4579. msgid "<b>Isolation Routing:</b>"
  4580. msgstr "<b>Isolation Routing:</b>"
  4581. #: flatcamGUI/FlatCAMGUI.py:3410 flatcamGUI/ObjectUI.py:324
  4582. msgid ""
  4583. "Create a Geometry object with\n"
  4584. "toolpaths to cut outside polygons."
  4585. msgstr ""
  4586. "Create a Geometry object with\n"
  4587. "toolpaths to cut outside polygons."
  4588. #: flatcamGUI/FlatCAMGUI.py:3421 flatcamGUI/FlatCAMGUI.py:3978
  4589. #: flatcamGUI/FlatCAMGUI.py:4903 flatcamGUI/ObjectUI.py:856
  4590. #: flatcamGUI/ObjectUI.py:872
  4591. msgid "Diameter of the cutting tool."
  4592. msgstr "Diameter of the cutting tool."
  4593. #: flatcamGUI/FlatCAMGUI.py:3428
  4594. msgid "Width (# passes):"
  4595. msgstr "Width (# passes):"
  4596. #: flatcamGUI/FlatCAMGUI.py:3430 flatcamGUI/ObjectUI.py:346
  4597. msgid ""
  4598. "Width of the isolation gap in\n"
  4599. "number (integer) of tool widths."
  4600. msgstr ""
  4601. "Width of the isolation gap in\n"
  4602. "number (integer) of tool widths."
  4603. #: flatcamGUI/FlatCAMGUI.py:3438 flatcamGUI/ObjectUI.py:354
  4604. msgid "Pass overlap:"
  4605. msgstr "Pass overlap:"
  4606. #: flatcamGUI/FlatCAMGUI.py:3440 flatcamGUI/ObjectUI.py:356
  4607. #, python-format
  4608. msgid ""
  4609. "How much (fraction) of the tool width to overlap each tool pass.\n"
  4610. "Example:\n"
  4611. "A value here of 0.25 means an overlap of 25%% from the tool diameter found "
  4612. "above."
  4613. msgstr ""
  4614. "How much (fraction) of the tool width to overlap each tool pass.\n"
  4615. "Example:\n"
  4616. "A value here of 0.25 means an overlap of 25%% from the tool diameter found "
  4617. "above."
  4618. #: flatcamGUI/FlatCAMGUI.py:3448 flatcamGUI/ObjectUI.py:366
  4619. msgid "Milling Type:"
  4620. msgstr "Milling Type:"
  4621. #: flatcamGUI/FlatCAMGUI.py:3450 flatcamGUI/ObjectUI.py:368
  4622. msgid ""
  4623. "Milling type:\n"
  4624. "- climb / best for precision milling and to reduce tool usage\n"
  4625. "- conventional / useful when there is no backlash compensation"
  4626. msgstr ""
  4627. "Milling type:\n"
  4628. "- climb / best for precision milling and to reduce tool usage\n"
  4629. "- conventional / useful when there is no backlash compensation"
  4630. #: flatcamGUI/FlatCAMGUI.py:3455 flatcamGUI/ObjectUI.py:373
  4631. msgid "Climb"
  4632. msgstr "Climb"
  4633. #: flatcamGUI/FlatCAMGUI.py:3456 flatcamGUI/ObjectUI.py:374
  4634. msgid "Conv."
  4635. msgstr "Conv."
  4636. #: flatcamGUI/FlatCAMGUI.py:3460
  4637. msgid "Combine Passes"
  4638. msgstr "Combine Passes"
  4639. #: flatcamGUI/FlatCAMGUI.py:3462 flatcamGUI/ObjectUI.py:380
  4640. msgid "Combine all passes into one object"
  4641. msgstr "Combine all passes into one object"
  4642. #: flatcamGUI/FlatCAMGUI.py:3467
  4643. msgid "<b>Clear non-copper:</b>"
  4644. msgstr "<b>Clear non-copper:</b>"
  4645. #: flatcamGUI/FlatCAMGUI.py:3469 flatcamGUI/FlatCAMGUI.py:4791
  4646. #: flatcamGUI/ObjectUI.py:457
  4647. msgid ""
  4648. "Create a Geometry object with\n"
  4649. "toolpaths to cut all non-copper regions."
  4650. msgstr ""
  4651. "Create a Geometry object with\n"
  4652. "toolpaths to cut all non-copper regions."
  4653. #: flatcamGUI/FlatCAMGUI.py:3478 flatcamGUI/FlatCAMGUI.py:3504
  4654. #: flatcamGUI/ObjectUI.py:501 flatcamGUI/ObjectUI.py:535
  4655. msgid "Boundary Margin:"
  4656. msgstr "Boundary Margin:"
  4657. #: flatcamGUI/FlatCAMGUI.py:3480 flatcamGUI/ObjectUI.py:503
  4658. msgid ""
  4659. "Specify the edge of the PCB\n"
  4660. "by drawing a box around all\n"
  4661. "objects with this minimum\n"
  4662. "distance."
  4663. msgstr ""
  4664. "Specify the edge of the PCB\n"
  4665. "by drawing a box around all\n"
  4666. "objects with this minimum\n"
  4667. "distance."
  4668. #: flatcamGUI/FlatCAMGUI.py:3490 flatcamGUI/FlatCAMGUI.py:3513
  4669. msgid "Rounded corners"
  4670. msgstr "Rounded corners"
  4671. #: flatcamGUI/FlatCAMGUI.py:3492
  4672. msgid ""
  4673. "Creates a Geometry objects with polygons\n"
  4674. "covering the copper-free areas of the PCB."
  4675. msgstr ""
  4676. "Creates a Geometry objects with polygons\n"
  4677. "covering the copper-free areas of the PCB."
  4678. #: flatcamGUI/FlatCAMGUI.py:3498 flatcamGUI/ObjectUI.py:525
  4679. msgid "<b>Bounding Box:</b>"
  4680. msgstr "<b>Bounding Box:</b>"
  4681. #: flatcamGUI/FlatCAMGUI.py:3506 flatcamGUI/ObjectUI.py:537
  4682. msgid ""
  4683. "Distance of the edges of the box\n"
  4684. "to the nearest polygon."
  4685. msgstr ""
  4686. "Distance of the edges of the box\n"
  4687. "to the nearest polygon."
  4688. #: flatcamGUI/FlatCAMGUI.py:3515 flatcamGUI/ObjectUI.py:547
  4689. msgid ""
  4690. "If the bounding box is \n"
  4691. "to have rounded corners\n"
  4692. "their radius is equal to\n"
  4693. "the margin."
  4694. msgstr ""
  4695. "If the bounding box is \n"
  4696. "to have rounded corners\n"
  4697. "their radius is equal to\n"
  4698. "the margin."
  4699. #: flatcamGUI/FlatCAMGUI.py:3529
  4700. msgid "Gerber Adv. Options"
  4701. msgstr "Gerber Adv. Options"
  4702. #: flatcamGUI/FlatCAMGUI.py:3533
  4703. msgid "<b>Advanced Param.:</b>"
  4704. msgstr "<b>Advanced Param.:</b>"
  4705. #: flatcamGUI/FlatCAMGUI.py:3535
  4706. msgid ""
  4707. "A list of Gerber advanced parameters.\n"
  4708. "Those parameters are available only for\n"
  4709. "Advanced App. Level."
  4710. msgstr ""
  4711. "A list of Gerber advanced parameters.\n"
  4712. "Those parameters are available only for\n"
  4713. "Advanced App. Level."
  4714. #: flatcamGUI/FlatCAMGUI.py:3545 flatcamGUI/ObjectUI.py:385
  4715. msgid "\"Follow\""
  4716. msgstr "\"Follow\""
  4717. #: flatcamGUI/FlatCAMGUI.py:3547 flatcamGUI/ObjectUI.py:387
  4718. msgid ""
  4719. "Generate a 'Follow' geometry.\n"
  4720. "This means that it will cut through\n"
  4721. "the middle of the trace."
  4722. msgstr ""
  4723. "Generate a 'Follow' geometry.\n"
  4724. "This means that it will cut through\n"
  4725. "the middle of the trace."
  4726. #: flatcamGUI/FlatCAMGUI.py:3555
  4727. msgid "Table Show/Hide"
  4728. msgstr "Table Show/Hide"
  4729. #: flatcamGUI/FlatCAMGUI.py:3557
  4730. msgid ""
  4731. "Toggle the display of the Gerber Apertures Table.\n"
  4732. "Also, on hide, it will delete all mark shapes\n"
  4733. "that are drawn on canvas."
  4734. msgstr ""
  4735. "Toggle the display of the Gerber Apertures Table.\n"
  4736. "Also, on hide, it will delete all mark shapes\n"
  4737. "that are drawn on canvas."
  4738. #: flatcamGUI/FlatCAMGUI.py:3565
  4739. msgid "Ap. Scale Factor:"
  4740. msgstr "Ap. Scale Factor:"
  4741. #: flatcamGUI/FlatCAMGUI.py:3567 flatcamGUI/ObjectUI.py:254
  4742. msgid ""
  4743. "Change the size of the selected apertures.\n"
  4744. "Factor by which to multiply\n"
  4745. "geometric features of this object."
  4746. msgstr ""
  4747. "Change the size of the selected apertures.\n"
  4748. "Factor by which to multiply\n"
  4749. "geometric features of this object."
  4750. #: flatcamGUI/FlatCAMGUI.py:3577
  4751. msgid "Ap. Buffer Factor:"
  4752. msgstr "Ap. Buffer Factor:"
  4753. #: flatcamGUI/FlatCAMGUI.py:3579 flatcamGUI/ObjectUI.py:275
  4754. msgid ""
  4755. "Change the size of the selected apertures.\n"
  4756. "Factor by which to expand/shrink\n"
  4757. "geometric features of this object."
  4758. msgstr ""
  4759. "Change the size of the selected apertures.\n"
  4760. "Factor by which to expand/shrink\n"
  4761. "geometric features of this object."
  4762. #: flatcamGUI/FlatCAMGUI.py:3597
  4763. msgid "Excellon General"
  4764. msgstr "Excellon General"
  4765. #: flatcamGUI/FlatCAMGUI.py:3619
  4766. msgid "<b>Excellon Format:</b>"
  4767. msgstr "<b>Excellon Format:</b>"
  4768. #: flatcamGUI/FlatCAMGUI.py:3621
  4769. msgid ""
  4770. "The NC drill files, usually named Excellon files\n"
  4771. "are files that can be found in different formats.\n"
  4772. "Here we set the format used when the provided\n"
  4773. "coordinates are not using period.\n"
  4774. "\n"
  4775. "Possible presets:\n"
  4776. "\n"
  4777. "PROTEUS 3:3 MM LZ\n"
  4778. "DipTrace 5:2 MM TZ\n"
  4779. "DipTrace 4:3 MM LZ\n"
  4780. "\n"
  4781. "EAGLE 3:3 MM TZ\n"
  4782. "EAGLE 4:3 MM TZ\n"
  4783. "EAGLE 2:5 INCH TZ\n"
  4784. "EAGLE 3:5 INCH TZ\n"
  4785. "\n"
  4786. "ALTIUM 2:4 INCH LZ\n"
  4787. "Sprint Layout 2:4 INCH LZ\n"
  4788. "KiCAD 3:5 INCH TZ"
  4789. msgstr ""
  4790. "The NC drill files, usually named Excellon files\n"
  4791. "are files that can be found in different formats.\n"
  4792. "Here we set the format used when the provided\n"
  4793. "coordinates are not using period.\n"
  4794. "\n"
  4795. "Possible presets:\n"
  4796. "\n"
  4797. "PROTEUS 3:3 MM LZ\n"
  4798. "DipTrace 5:2 MM TZ\n"
  4799. "DipTrace 4:3 MM LZ\n"
  4800. "\n"
  4801. "EAGLE 3:3 MM TZ\n"
  4802. "EAGLE 4:3 MM TZ\n"
  4803. "EAGLE 2:5 INCH TZ\n"
  4804. "EAGLE 3:5 INCH TZ\n"
  4805. "\n"
  4806. "ALTIUM 2:4 INCH LZ\n"
  4807. "Sprint Layout 2:4 INCH LZ\n"
  4808. "KiCAD 3:5 INCH TZ"
  4809. #: flatcamGUI/FlatCAMGUI.py:3646
  4810. msgid "INCH:"
  4811. msgstr "INCH:"
  4812. #: flatcamGUI/FlatCAMGUI.py:3649
  4813. msgid "Default values for INCH are 2:4"
  4814. msgstr "Default values for INCH are 2:4"
  4815. #: flatcamGUI/FlatCAMGUI.py:3657 flatcamGUI/FlatCAMGUI.py:3690
  4816. #: flatcamGUI/FlatCAMGUI.py:4167
  4817. msgid ""
  4818. "This numbers signify the number of digits in\n"
  4819. "the whole part of Excellon coordinates."
  4820. msgstr ""
  4821. "This numbers signify the number of digits in\n"
  4822. "the whole part of Excellon coordinates."
  4823. #: flatcamGUI/FlatCAMGUI.py:3671 flatcamGUI/FlatCAMGUI.py:3704
  4824. #: flatcamGUI/FlatCAMGUI.py:4181
  4825. msgid ""
  4826. "This numbers signify the number of digits in\n"
  4827. "the decimal part of Excellon coordinates."
  4828. msgstr ""
  4829. "This numbers signify the number of digits in\n"
  4830. "the decimal part of Excellon coordinates."
  4831. #: flatcamGUI/FlatCAMGUI.py:3679
  4832. msgid "METRIC:"
  4833. msgstr "METRIC:"
  4834. #: flatcamGUI/FlatCAMGUI.py:3682
  4835. msgid "Default values for METRIC are 3:3"
  4836. msgstr "Default values for METRIC are 3:3"
  4837. #: flatcamGUI/FlatCAMGUI.py:3713
  4838. msgid "Default <b>Zeros</b>:"
  4839. msgstr "Default <b>Zeros</b>:"
  4840. #: flatcamGUI/FlatCAMGUI.py:3716 flatcamGUI/FlatCAMGUI.py:4216
  4841. msgid ""
  4842. "This sets the type of Excellon zeros.\n"
  4843. "If LZ then Leading Zeros are kept and\n"
  4844. "Trailing Zeros are removed.\n"
  4845. "If TZ is checked then Trailing Zeros are kept\n"
  4846. "and Leading Zeros are removed."
  4847. msgstr ""
  4848. "This sets the type of Excellon zeros.\n"
  4849. "If LZ then Leading Zeros are kept and\n"
  4850. "Trailing Zeros are removed.\n"
  4851. "If TZ is checked then Trailing Zeros are kept\n"
  4852. "and Leading Zeros are removed."
  4853. #: flatcamGUI/FlatCAMGUI.py:3724 flatcamGUI/FlatCAMGUI.py:4223
  4854. msgid "LZ"
  4855. msgstr "LZ"
  4856. #: flatcamGUI/FlatCAMGUI.py:3725 flatcamGUI/FlatCAMGUI.py:4224
  4857. msgid "TZ"
  4858. msgstr "TZ"
  4859. #: flatcamGUI/FlatCAMGUI.py:3727
  4860. msgid ""
  4861. "This sets the default type of Excellon zeros.\n"
  4862. "If it is not detected in the parsed file the value here\n"
  4863. "will be used.If LZ then Leading Zeros are kept and\n"
  4864. "Trailing Zeros are removed.\n"
  4865. "If TZ is checked then Trailing Zeros are kept\n"
  4866. "and Leading Zeros are removed."
  4867. msgstr ""
  4868. "This sets the default type of Excellon zeros.\n"
  4869. "If it is not detected in the parsed file the value here\n"
  4870. "will be used.If LZ then Leading Zeros are kept and\n"
  4871. "Trailing Zeros are removed.\n"
  4872. "If TZ is checked then Trailing Zeros are kept\n"
  4873. "and Leading Zeros are removed."
  4874. #: flatcamGUI/FlatCAMGUI.py:3741
  4875. msgid "Default <b>Units</b>:"
  4876. msgstr "Default <b>Units</b>:"
  4877. #: flatcamGUI/FlatCAMGUI.py:3744
  4878. msgid ""
  4879. "This sets the default units of Excellon files.\n"
  4880. "If it is not detected in the parsed file the value here\n"
  4881. "will be used.Some Excellon files don't have an header\n"
  4882. "therefore this parameter will be used."
  4883. msgstr ""
  4884. "This sets the default units of Excellon files.\n"
  4885. "If it is not detected in the parsed file the value here\n"
  4886. "will be used.Some Excellon files don't have an header\n"
  4887. "therefore this parameter will be used."
  4888. #: flatcamGUI/FlatCAMGUI.py:3752 flatcamGUI/FlatCAMGUI.py:4143
  4889. msgid "INCH"
  4890. msgstr "INCH"
  4891. #: flatcamGUI/FlatCAMGUI.py:3753 flatcamGUI/FlatCAMGUI.py:4144
  4892. msgid "MM"
  4893. msgstr "MM"
  4894. #: flatcamGUI/FlatCAMGUI.py:3755
  4895. msgid ""
  4896. "This sets the units of Excellon files.\n"
  4897. "Some Excellon files don't have an header\n"
  4898. "therefore this parameter will be used."
  4899. msgstr ""
  4900. "This sets the units of Excellon files.\n"
  4901. "Some Excellon files don't have an header\n"
  4902. "therefore this parameter will be used."
  4903. #: flatcamGUI/FlatCAMGUI.py:3771
  4904. msgid "<b>Excellon Optimization:</b>"
  4905. msgstr "<b>Excellon Optimization:</b>"
  4906. #: flatcamGUI/FlatCAMGUI.py:3778
  4907. msgid "Algorithm: "
  4908. msgstr "Algorithm: "
  4909. #: flatcamGUI/FlatCAMGUI.py:3781 flatcamGUI/FlatCAMGUI.py:3794
  4910. msgid ""
  4911. "This sets the optimization type for the Excellon drill path.\n"
  4912. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  4913. "Guided Local Path is used. Default search time is 3sec.\n"
  4914. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  4915. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  4916. "\n"
  4917. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  4918. "Travelling Salesman algorithm for path optimization."
  4919. msgstr ""
  4920. "This sets the optimization type for the Excellon drill path.\n"
  4921. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  4922. "Guided Local Path is used. Default search time is 3sec.\n"
  4923. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  4924. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  4925. "\n"
  4926. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  4927. "Travelling Salesman algorithm for path optimization."
  4928. #: flatcamGUI/FlatCAMGUI.py:3791
  4929. msgid "MH"
  4930. msgstr "MH"
  4931. #: flatcamGUI/FlatCAMGUI.py:3806
  4932. msgid "Optimization Time: "
  4933. msgstr "Optimization Time: "
  4934. #: flatcamGUI/FlatCAMGUI.py:3809
  4935. msgid ""
  4936. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  4937. "maximum threshold for how much time is spent doing the\n"
  4938. "path optimization. This max duration is set here.\n"
  4939. "In seconds."
  4940. msgstr ""
  4941. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  4942. "maximum threshold for how much time is spent doing the\n"
  4943. "path optimization. This max duration is set here.\n"
  4944. "In seconds."
  4945. #: flatcamGUI/FlatCAMGUI.py:3850
  4946. msgid "Excellon Options"
  4947. msgstr "Excellon Options"
  4948. #: flatcamGUI/FlatCAMGUI.py:3853 flatcamGUI/ObjectUI.py:655
  4949. msgid "<b>Create CNC Job</b>"
  4950. msgstr "<b>Create CNC Job</b>"
  4951. #: flatcamGUI/FlatCAMGUI.py:3855
  4952. msgid ""
  4953. "Parameters used to create a CNC Job object\n"
  4954. "for this drill object."
  4955. msgstr ""
  4956. "Parameters used to create a CNC Job object\n"
  4957. "for this drill object."
  4958. #: flatcamGUI/FlatCAMGUI.py:3863 flatcamGUI/FlatCAMGUI.py:4319
  4959. #: flatcamGUI/FlatCAMGUI.py:5318 flatcamGUI/ObjectUI.py:666
  4960. #: flatcamGUI/ObjectUI.py:1130 flatcamTools/ToolCalculators.py:108
  4961. msgid "Cut Z:"
  4962. msgstr "Cut Z:"
  4963. #: flatcamGUI/FlatCAMGUI.py:3865 flatcamGUI/ObjectUI.py:668
  4964. msgid ""
  4965. "Drill depth (negative)\n"
  4966. "below the copper surface."
  4967. msgstr ""
  4968. "Drill depth (negative)\n"
  4969. "below the copper surface."
  4970. #: flatcamGUI/FlatCAMGUI.py:3872 flatcamGUI/FlatCAMGUI.py:4352
  4971. #: flatcamGUI/ObjectUI.py:676 flatcamGUI/ObjectUI.py:1166
  4972. msgid "Travel Z:"
  4973. msgstr "Travel Z:"
  4974. #: flatcamGUI/FlatCAMGUI.py:3874 flatcamGUI/ObjectUI.py:678
  4975. msgid ""
  4976. "Tool height when travelling\n"
  4977. "across the XY plane."
  4978. msgstr ""
  4979. "Tool height when travelling\n"
  4980. "across the XY plane."
  4981. #: flatcamGUI/FlatCAMGUI.py:3882 flatcamGUI/FlatCAMGUI.py:4362
  4982. msgid "Tool change:"
  4983. msgstr "Tool change:"
  4984. #: flatcamGUI/FlatCAMGUI.py:3884 flatcamGUI/FlatCAMGUI.py:4364
  4985. #: flatcamGUI/ObjectUI.py:688
  4986. msgid ""
  4987. "Include tool-change sequence\n"
  4988. "in G-Code (Pause for tool change)."
  4989. msgstr ""
  4990. "Include tool-change sequence\n"
  4991. "in G-Code (Pause for tool change)."
  4992. #: flatcamGUI/FlatCAMGUI.py:3891 flatcamGUI/FlatCAMGUI.py:4372
  4993. msgid "Toolchange Z:"
  4994. msgstr "Toolchange Z:"
  4995. #: flatcamGUI/FlatCAMGUI.py:3893 flatcamGUI/FlatCAMGUI.py:4374
  4996. msgid "Toolchange Z position."
  4997. msgstr "Toolchange Z position."
  4998. #: flatcamGUI/FlatCAMGUI.py:3899
  4999. msgid "Feedrate:"
  5000. msgstr "Feedrate:"
  5001. #: flatcamGUI/FlatCAMGUI.py:3901
  5002. msgid ""
  5003. "Tool speed while drilling\n"
  5004. "(in units per minute)."
  5005. msgstr ""
  5006. "Tool speed while drilling\n"
  5007. "(in units per minute)."
  5008. #: flatcamGUI/FlatCAMGUI.py:3909
  5009. msgid "Spindle Speed:"
  5010. msgstr "Spindle Speed:"
  5011. #: flatcamGUI/FlatCAMGUI.py:3911 flatcamGUI/FlatCAMGUI.py:4404
  5012. #: flatcamGUI/ObjectUI.py:752
  5013. msgid ""
  5014. "Speed of the spindle\n"
  5015. "in RPM (optional)"
  5016. msgstr ""
  5017. "Speed of the spindle\n"
  5018. "in RPM (optional)"
  5019. #: flatcamGUI/FlatCAMGUI.py:3919 flatcamGUI/FlatCAMGUI.py:4412
  5020. #: flatcamGUI/ObjectUI.py:760 flatcamGUI/ObjectUI.py:1289
  5021. msgid "Dwell:"
  5022. msgstr "Dwell:"
  5023. #: flatcamGUI/FlatCAMGUI.py:3921 flatcamGUI/FlatCAMGUI.py:4414
  5024. #: flatcamGUI/ObjectUI.py:762 flatcamGUI/ObjectUI.py:1292
  5025. msgid ""
  5026. "Pause to allow the spindle to reach its\n"
  5027. "speed before cutting."
  5028. msgstr ""
  5029. "Pause to allow the spindle to reach its\n"
  5030. "speed before cutting."
  5031. #: flatcamGUI/FlatCAMGUI.py:3924 flatcamGUI/FlatCAMGUI.py:4417
  5032. msgid "Duration:"
  5033. msgstr "Duration:"
  5034. #: flatcamGUI/FlatCAMGUI.py:3926 flatcamGUI/FlatCAMGUI.py:4419
  5035. #: flatcamGUI/ObjectUI.py:767 flatcamGUI/ObjectUI.py:1299
  5036. msgid "Number of milliseconds for spindle to dwell."
  5037. msgstr "Number of milliseconds for spindle to dwell."
  5038. #: flatcamGUI/FlatCAMGUI.py:3938 flatcamGUI/FlatCAMGUI.py:4429
  5039. #: flatcamGUI/ObjectUI.py:775
  5040. msgid "Postprocessor:"
  5041. msgstr "Postprocessor:"
  5042. #: flatcamGUI/FlatCAMGUI.py:3940
  5043. msgid ""
  5044. "The postprocessor file that dictates\n"
  5045. "gcode output."
  5046. msgstr ""
  5047. "The postprocessor file that dictates\n"
  5048. "gcode output."
  5049. #: flatcamGUI/FlatCAMGUI.py:3950
  5050. msgid "<b>Gcode: </b>"
  5051. msgstr "<b>Gcode: </b>"
  5052. #: flatcamGUI/FlatCAMGUI.py:3952
  5053. msgid ""
  5054. "Choose what to use for GCode generation:\n"
  5055. "'Drills', 'Slots' or 'Both'.\n"
  5056. "When choosing 'Slots' or 'Both', slots will be\n"
  5057. "converted to drills."
  5058. msgstr ""
  5059. "Choose what to use for GCode generation:\n"
  5060. "'Drills', 'Slots' or 'Both'.\n"
  5061. "When choosing 'Slots' or 'Both', slots will be\n"
  5062. "converted to drills."
  5063. #: flatcamGUI/FlatCAMGUI.py:3957 flatcamGUI/ObjectUI.py:627
  5064. #: flatcamGUI/ObjectUI.py:823
  5065. msgid "Drills"
  5066. msgstr "Drills"
  5067. #: flatcamGUI/FlatCAMGUI.py:3958 flatcamGUI/ObjectUI.py:627
  5068. #: flatcamGUI/ObjectUI.py:824
  5069. msgid "Slots"
  5070. msgstr "Slots"
  5071. #: flatcamGUI/FlatCAMGUI.py:3959 flatcamGUI/ObjectUI.py:825
  5072. msgid "Both"
  5073. msgstr "Both"
  5074. #: flatcamGUI/FlatCAMGUI.py:3968 flatcamGUI/ObjectUI.py:840
  5075. msgid "<b>Mill Holes</b>"
  5076. msgstr "<b>Mill Holes</b>"
  5077. #: flatcamGUI/FlatCAMGUI.py:3970 flatcamGUI/ObjectUI.py:842
  5078. msgid "Create Geometry for milling holes."
  5079. msgstr "Create Geometry for milling holes."
  5080. #: flatcamGUI/FlatCAMGUI.py:3976
  5081. msgid "Drill Tool dia:"
  5082. msgstr "Drill Tool dia:"
  5083. #: flatcamGUI/FlatCAMGUI.py:3983
  5084. msgid "Slot Tool dia:"
  5085. msgstr "Slot Tool dia:"
  5086. #: flatcamGUI/FlatCAMGUI.py:3985
  5087. msgid ""
  5088. "Diameter of the cutting tool\n"
  5089. "when milling slots."
  5090. msgstr ""
  5091. "Diameter of the cutting tool\n"
  5092. "when milling slots."
  5093. #: flatcamGUI/FlatCAMGUI.py:3997
  5094. msgid "Defaults"
  5095. msgstr "Defaults"
  5096. #: flatcamGUI/FlatCAMGUI.py:4010
  5097. msgid "Excellon Adv. Options"
  5098. msgstr "Excellon Adv. Options"
  5099. #: flatcamGUI/FlatCAMGUI.py:4016 flatcamGUI/FlatCAMGUI.py:4452
  5100. msgid "<b>Advanced Options:</b>"
  5101. msgstr "<b>Advanced Options:</b>"
  5102. #: flatcamGUI/FlatCAMGUI.py:4018
  5103. msgid ""
  5104. "Parameters used to create a CNC Job object\n"
  5105. "for this drill object that are shown when App Level is Advanced."
  5106. msgstr ""
  5107. "Parameters used to create a CNC Job object\n"
  5108. "for this drill object that are shown when App Level is Advanced."
  5109. #: flatcamGUI/FlatCAMGUI.py:4026
  5110. msgid "Offset Z:"
  5111. msgstr "Offset Z:"
  5112. #: flatcamGUI/FlatCAMGUI.py:4028 flatcamGUI/ObjectUI.py:645
  5113. msgid ""
  5114. "Some drill bits (the larger ones) need to drill deeper\n"
  5115. "to create the desired exit hole diameter due of the tip shape.\n"
  5116. "The value here can compensate the Cut Z parameter."
  5117. msgstr ""
  5118. "Some drill bits (the larger ones) need to drill deeper\n"
  5119. "to create the desired exit hole diameter due of the tip shape.\n"
  5120. "The value here can compensate the Cut Z parameter."
  5121. #: flatcamGUI/FlatCAMGUI.py:4035 flatcamGUI/FlatCAMGUI.py:4463
  5122. msgid "Toolchange X,Y:"
  5123. msgstr "Toolchange X,Y:"
  5124. #: flatcamGUI/FlatCAMGUI.py:4037 flatcamGUI/FlatCAMGUI.py:4465
  5125. msgid "Toolchange X,Y position."
  5126. msgstr "Toolchange X,Y position."
  5127. #: flatcamGUI/FlatCAMGUI.py:4043 flatcamGUI/FlatCAMGUI.py:4472
  5128. #: flatcamGUI/ObjectUI.py:705
  5129. msgid "Start move Z:"
  5130. msgstr "Start move Z:"
  5131. #: flatcamGUI/FlatCAMGUI.py:4045
  5132. msgid ""
  5133. "Height of the tool just after start.\n"
  5134. "Delete the value if you don't need this feature."
  5135. msgstr ""
  5136. "Height of the tool just after start.\n"
  5137. "Delete the value if you don't need this feature."
  5138. #: flatcamGUI/FlatCAMGUI.py:4052 flatcamGUI/FlatCAMGUI.py:4482
  5139. #: flatcamGUI/ObjectUI.py:715 flatcamGUI/ObjectUI.py:1212
  5140. msgid "End move Z:"
  5141. msgstr "End move Z:"
  5142. #: flatcamGUI/FlatCAMGUI.py:4054 flatcamGUI/FlatCAMGUI.py:4484
  5143. msgid ""
  5144. "Height of the tool after\n"
  5145. "the last move at the end of the job."
  5146. msgstr ""
  5147. "Height of the tool after\n"
  5148. "the last move at the end of the job."
  5149. #: flatcamGUI/FlatCAMGUI.py:4061 flatcamGUI/FlatCAMGUI.py:4492
  5150. #: flatcamGUI/ObjectUI.py:736
  5151. msgid "Feedrate Rapids:"
  5152. msgstr "Feedrate Rapids:"
  5153. #: flatcamGUI/FlatCAMGUI.py:4063 flatcamGUI/ObjectUI.py:738
  5154. msgid ""
  5155. "Tool speed while drilling\n"
  5156. "(in units per minute).\n"
  5157. "This is for the rapid move G00.\n"
  5158. "It is useful only for Marlin,\n"
  5159. "ignore for any other cases."
  5160. msgstr ""
  5161. "Tool speed while drilling\n"
  5162. "(in units per minute).\n"
  5163. "This is for the rapid move G00.\n"
  5164. "It is useful only for Marlin,\n"
  5165. "ignore for any other cases."
  5166. #: flatcamGUI/FlatCAMGUI.py:4074 flatcamGUI/FlatCAMGUI.py:4516
  5167. #: flatcamGUI/ObjectUI.py:786 flatcamGUI/ObjectUI.py:1321
  5168. msgid "Probe Z depth:"
  5169. msgstr "Probe Z depth:"
  5170. #: flatcamGUI/FlatCAMGUI.py:4076 flatcamGUI/FlatCAMGUI.py:4518
  5171. #: flatcamGUI/ObjectUI.py:788 flatcamGUI/ObjectUI.py:1324
  5172. msgid ""
  5173. "The maximum depth that the probe is allowed\n"
  5174. "to probe. Negative value, in current units."
  5175. msgstr ""
  5176. "The maximum depth that the probe is allowed\n"
  5177. "to probe. Negative value, in current units."
  5178. #: flatcamGUI/FlatCAMGUI.py:4084 flatcamGUI/FlatCAMGUI.py:4526
  5179. #: flatcamGUI/ObjectUI.py:798 flatcamGUI/ObjectUI.py:1335
  5180. msgid "Feedrate Probe:"
  5181. msgstr "Feedrate Probe:"
  5182. #: flatcamGUI/FlatCAMGUI.py:4086 flatcamGUI/FlatCAMGUI.py:4528
  5183. #: flatcamGUI/ObjectUI.py:800 flatcamGUI/ObjectUI.py:1338
  5184. msgid "The feedrate used while the probe is probing."
  5185. msgstr "The feedrate used while the probe is probing."
  5186. #: flatcamGUI/FlatCAMGUI.py:4092 flatcamGUI/FlatCAMGUI.py:4535
  5187. msgid "Fast Plunge:"
  5188. msgstr "Fast Plunge:"
  5189. #: flatcamGUI/FlatCAMGUI.py:4094 flatcamGUI/FlatCAMGUI.py:4537
  5190. msgid ""
  5191. "By checking this, the vertical move from\n"
  5192. "Z_Toolchange to Z_move is done with G0,\n"
  5193. "meaning the fastest speed available.\n"
  5194. "WARNING: the move is done at Toolchange X,Y coords."
  5195. msgstr ""
  5196. "By checking this, the vertical move from\n"
  5197. "Z_Toolchange to Z_move is done with G0,\n"
  5198. "meaning the fastest speed available.\n"
  5199. "WARNING: the move is done at Toolchange X,Y coords."
  5200. #: flatcamGUI/FlatCAMGUI.py:4103
  5201. msgid "Fast Retract:"
  5202. msgstr "Fast Retract:"
  5203. #: flatcamGUI/FlatCAMGUI.py:4105
  5204. msgid ""
  5205. "Exit hole strategy.\n"
  5206. " - When uncheked, while exiting the drilled hole the drill bit\n"
  5207. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  5208. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  5209. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  5210. "(travel height) is done as fast as possible (G0) in one move."
  5211. msgstr ""
  5212. "Exit hole strategy.\n"
  5213. " - When uncheked, while exiting the drilled hole the drill bit\n"
  5214. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  5215. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  5216. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  5217. "(travel height) is done as fast as possible (G0) in one move."
  5218. #: flatcamGUI/FlatCAMGUI.py:4124
  5219. msgid "Excellon Export"
  5220. msgstr "Excellon Export"
  5221. #: flatcamGUI/FlatCAMGUI.py:4127
  5222. msgid "<b>Export Options:</b>"
  5223. msgstr "<b>Export Options:</b>"
  5224. #: flatcamGUI/FlatCAMGUI.py:4129
  5225. msgid ""
  5226. "The parameters set here are used in the file exported\n"
  5227. "when using the File -> Export -> Export Excellon menu entry."
  5228. msgstr ""
  5229. "The parameters set here are used in the file exported\n"
  5230. "when using the File -> Export -> Export Excellon menu entry."
  5231. #: flatcamGUI/FlatCAMGUI.py:4138
  5232. msgid "<b>Units</b>:"
  5233. msgstr "<b>Units</b>:"
  5234. #: flatcamGUI/FlatCAMGUI.py:4140 flatcamGUI/FlatCAMGUI.py:4146
  5235. msgid "The units used in the Excellon file."
  5236. msgstr "The units used in the Excellon file."
  5237. #: flatcamGUI/FlatCAMGUI.py:4152
  5238. msgid "<b>Int/Decimals:</b>"
  5239. msgstr "<b>Int/Decimals:</b>"
  5240. #: flatcamGUI/FlatCAMGUI.py:4154
  5241. msgid ""
  5242. "The NC drill files, usually named Excellon files\n"
  5243. "are files that can be found in different formats.\n"
  5244. "Here we set the format used when the provided\n"
  5245. "coordinates are not using period."
  5246. msgstr ""
  5247. "The NC drill files, usually named Excellon files\n"
  5248. "are files that can be found in different formats.\n"
  5249. "Here we set the format used when the provided\n"
  5250. "coordinates are not using period."
  5251. #: flatcamGUI/FlatCAMGUI.py:4190
  5252. msgid "<b>Format:</b>"
  5253. msgstr "<b>Format:</b>"
  5254. #: flatcamGUI/FlatCAMGUI.py:4192 flatcamGUI/FlatCAMGUI.py:4202
  5255. msgid ""
  5256. "Select the kind of coordinates format used.\n"
  5257. "Coordinates can be saved with decimal point or without.\n"
  5258. "When there is no decimal point, it is required to specify\n"
  5259. "the number of digits for integer part and the number of decimals.\n"
  5260. "Also it will have to be specified if LZ = leading zeros are kept\n"
  5261. "or TZ = trailing zeros are kept."
  5262. msgstr ""
  5263. "Select the kind of coordinates format used.\n"
  5264. "Coordinates can be saved with decimal point or without.\n"
  5265. "When there is no decimal point, it is required to specify\n"
  5266. "the number of digits for integer part and the number of decimals.\n"
  5267. "Also it will have to be specified if LZ = leading zeros are kept\n"
  5268. "or TZ = trailing zeros are kept."
  5269. #: flatcamGUI/FlatCAMGUI.py:4199
  5270. msgid "Decimal"
  5271. msgstr "Decimal"
  5272. #: flatcamGUI/FlatCAMGUI.py:4200
  5273. msgid "No-Decimal"
  5274. msgstr "No-Decimal"
  5275. #: flatcamGUI/FlatCAMGUI.py:4213
  5276. msgid "<b>Zeros</b>:"
  5277. msgstr "<b>Zeros</b>:"
  5278. #: flatcamGUI/FlatCAMGUI.py:4226
  5279. msgid ""
  5280. "This sets the default type of Excellon zeros.\n"
  5281. "If LZ then Leading Zeros are kept and\n"
  5282. "Trailing Zeros are removed.\n"
  5283. "If TZ is checked then Trailing Zeros are kept\n"
  5284. "and Leading Zeros are removed."
  5285. msgstr ""
  5286. "This sets the default type of Excellon zeros.\n"
  5287. "If LZ then Leading Zeros are kept and\n"
  5288. "Trailing Zeros are removed.\n"
  5289. "If TZ is checked then Trailing Zeros are kept\n"
  5290. "and Leading Zeros are removed."
  5291. #: flatcamGUI/FlatCAMGUI.py:4252
  5292. msgid "Geometry General"
  5293. msgstr "Geometry General"
  5294. #: flatcamGUI/FlatCAMGUI.py:4270
  5295. msgid ""
  5296. "The number of circle steps for <b>Geometry</b> \n"
  5297. "circle and arc shapes linear approximation."
  5298. msgstr ""
  5299. "The number of circle steps for <b>Geometry</b> \n"
  5300. "circle and arc shapes linear approximation."
  5301. #: flatcamGUI/FlatCAMGUI.py:4278
  5302. msgid "<b>Tools</b>"
  5303. msgstr "<b>Tools</b>"
  5304. #: flatcamGUI/FlatCAMGUI.py:4285
  5305. msgid "Tool dia: "
  5306. msgstr "Tool dia: "
  5307. #: flatcamGUI/FlatCAMGUI.py:4287
  5308. msgid ""
  5309. "The diameter of the cutting\n"
  5310. "tool.."
  5311. msgstr ""
  5312. "The diameter of the cutting\n"
  5313. "tool.."
  5314. #: flatcamGUI/FlatCAMGUI.py:4302
  5315. msgid "Geometry Options"
  5316. msgstr "Geometry Options"
  5317. #: flatcamGUI/FlatCAMGUI.py:4307
  5318. msgid "<b>Create CNC Job:</b>"
  5319. msgstr "<b>Create CNC Job:</b>"
  5320. #: flatcamGUI/FlatCAMGUI.py:4309
  5321. msgid ""
  5322. "Create a CNC Job object\n"
  5323. "tracing the contours of this\n"
  5324. "Geometry object."
  5325. msgstr ""
  5326. "Create a CNC Job object\n"
  5327. "tracing the contours of this\n"
  5328. "Geometry object."
  5329. #: flatcamGUI/FlatCAMGUI.py:4321 flatcamGUI/ObjectUI.py:1133
  5330. msgid ""
  5331. "Cutting depth (negative)\n"
  5332. "below the copper surface."
  5333. msgstr ""
  5334. "Cutting depth (negative)\n"
  5335. "below the copper surface."
  5336. #: flatcamGUI/FlatCAMGUI.py:4329
  5337. msgid "Multidepth"
  5338. msgstr "Multidepth"
  5339. #: flatcamGUI/FlatCAMGUI.py:4331
  5340. msgid "Multidepth usage: True or False."
  5341. msgstr "Multidepth usage: True or False."
  5342. #: flatcamGUI/FlatCAMGUI.py:4336
  5343. msgid "Depth/Pass:"
  5344. msgstr "Depth/Pass:"
  5345. #: flatcamGUI/FlatCAMGUI.py:4338
  5346. msgid ""
  5347. "The depth to cut on each pass,\n"
  5348. "when multidepth is enabled.\n"
  5349. "It has positive value although\n"
  5350. "it is a fraction from the depth\n"
  5351. "which has negative value."
  5352. msgstr ""
  5353. "The depth to cut on each pass,\n"
  5354. "when multidepth is enabled.\n"
  5355. "It has positive value although\n"
  5356. "it is a fraction from the depth\n"
  5357. "which has negative value."
  5358. #: flatcamGUI/FlatCAMGUI.py:4354 flatcamGUI/ObjectUI.py:1169
  5359. msgid ""
  5360. "Height of the tool when\n"
  5361. "moving without cutting."
  5362. msgstr ""
  5363. "Height of the tool when\n"
  5364. "moving without cutting."
  5365. #: flatcamGUI/FlatCAMGUI.py:4381 flatcamGUI/ObjectUI.py:1224
  5366. msgid "Feed Rate X-Y:"
  5367. msgstr "Feed Rate X-Y:"
  5368. #: flatcamGUI/FlatCAMGUI.py:4383 flatcamGUI/ObjectUI.py:1227
  5369. msgid ""
  5370. "Cutting speed in the XY\n"
  5371. "plane in units per minute"
  5372. msgstr ""
  5373. "Cutting speed in the XY\n"
  5374. "plane in units per minute"
  5375. #: flatcamGUI/FlatCAMGUI.py:4391
  5376. msgid "Feed Rate Z:"
  5377. msgstr "Feed Rate Z:"
  5378. #: flatcamGUI/FlatCAMGUI.py:4393
  5379. msgid ""
  5380. "Cutting speed in the XY\n"
  5381. "plane in units per minute.\n"
  5382. "It is called also Plunge."
  5383. msgstr ""
  5384. "Cutting speed in the XY\n"
  5385. "plane in units per minute.\n"
  5386. "It is called also Plunge."
  5387. #: flatcamGUI/FlatCAMGUI.py:4402 flatcamGUI/ObjectUI.py:750
  5388. #: flatcamGUI/ObjectUI.py:1276
  5389. msgid "Spindle speed:"
  5390. msgstr "Spindle speed:"
  5391. #: flatcamGUI/FlatCAMGUI.py:4431
  5392. msgid ""
  5393. "The postprocessor file that dictates\n"
  5394. "Machine Code output."
  5395. msgstr ""
  5396. "The postprocessor file that dictates\n"
  5397. "Machine Code output."
  5398. #: flatcamGUI/FlatCAMGUI.py:4447
  5399. msgid "Geometry Adv. Options"
  5400. msgstr "Geometry Adv. Options"
  5401. #: flatcamGUI/FlatCAMGUI.py:4454
  5402. msgid ""
  5403. "Parameters to create a CNC Job object\n"
  5404. "tracing the contours of a Geometry object."
  5405. msgstr ""
  5406. "Parameters to create a CNC Job object\n"
  5407. "tracing the contours of a Geometry object."
  5408. #: flatcamGUI/FlatCAMGUI.py:4474
  5409. msgid ""
  5410. "Height of the tool just after starting the work.\n"
  5411. "Delete the value if you don't need this feature."
  5412. msgstr ""
  5413. "Height of the tool just after starting the work.\n"
  5414. "Delete the value if you don't need this feature."
  5415. #: flatcamGUI/FlatCAMGUI.py:4494
  5416. msgid ""
  5417. "Cutting speed in the XY plane\n"
  5418. "(in units per minute).\n"
  5419. "This is for the rapid move G00.\n"
  5420. "It is useful only for Marlin,\n"
  5421. "ignore for any other cases."
  5422. msgstr ""
  5423. "Cutting speed in the XY plane\n"
  5424. "(in units per minute).\n"
  5425. "This is for the rapid move G00.\n"
  5426. "It is useful only for Marlin,\n"
  5427. "ignore for any other cases."
  5428. #: flatcamGUI/FlatCAMGUI.py:4506
  5429. msgid "Re-cut 1st pt."
  5430. msgstr "Re-cut 1st pt."
  5431. #: flatcamGUI/FlatCAMGUI.py:4508 flatcamGUI/ObjectUI.py:1267
  5432. msgid ""
  5433. "In order to remove possible\n"
  5434. "copper leftovers where first cut\n"
  5435. "meet with last cut, we generate an\n"
  5436. "extended cut over the first cut section."
  5437. msgstr ""
  5438. "In order to remove possible\n"
  5439. "copper leftovers where first cut\n"
  5440. "meet with last cut, we generate an\n"
  5441. "extended cut over the first cut section."
  5442. #: flatcamGUI/FlatCAMGUI.py:4547
  5443. msgid "Seg. X size:"
  5444. msgstr "Seg. X size:"
  5445. #: flatcamGUI/FlatCAMGUI.py:4549
  5446. msgid ""
  5447. "The size of the trace segment on the X axis.\n"
  5448. "Useful for auto-leveling.\n"
  5449. "A value of 0 means no segmentation on the X axis."
  5450. msgstr ""
  5451. "The size of the trace segment on the X axis.\n"
  5452. "Useful for auto-leveling.\n"
  5453. "A value of 0 means no segmentation on the X axis."
  5454. #: flatcamGUI/FlatCAMGUI.py:4558
  5455. msgid "Seg. Y size:"
  5456. msgstr "Seg. Y size:"
  5457. #: flatcamGUI/FlatCAMGUI.py:4560
  5458. msgid ""
  5459. "The size of the trace segment on the Y axis.\n"
  5460. "Useful for auto-leveling.\n"
  5461. "A value of 0 means no segmentation on the Y axis."
  5462. msgstr ""
  5463. "The size of the trace segment on the Y axis.\n"
  5464. "Useful for auto-leveling.\n"
  5465. "A value of 0 means no segmentation on the Y axis."
  5466. #: flatcamGUI/FlatCAMGUI.py:4576
  5467. msgid "CNC Job General"
  5468. msgstr "CNC Job General"
  5469. #: flatcamGUI/FlatCAMGUI.py:4589 flatcamGUI/ObjectUI.py:615
  5470. #: flatcamGUI/ObjectUI.py:945 flatcamGUI/ObjectUI.py:1499
  5471. msgid "Plot Object"
  5472. msgstr "Plot Object"
  5473. #: flatcamGUI/FlatCAMGUI.py:4596
  5474. msgid "Plot kind:"
  5475. msgstr "Plot kind:"
  5476. #: flatcamGUI/FlatCAMGUI.py:4598 flatcamGUI/ObjectUI.py:1421
  5477. msgid ""
  5478. "This selects the kind of geometries on the canvas to plot.\n"
  5479. "Those can be either of type 'Travel' which means the moves\n"
  5480. "above the work piece or it can be of type 'Cut',\n"
  5481. "which means the moves that cut into the material."
  5482. msgstr ""
  5483. "This selects the kind of geometries on the canvas to plot.\n"
  5484. "Those can be either of type 'Travel' which means the moves\n"
  5485. "above the work piece or it can be of type 'Cut',\n"
  5486. "which means the moves that cut into the material."
  5487. #: flatcamGUI/FlatCAMGUI.py:4606 flatcamGUI/ObjectUI.py:1430
  5488. msgid "Travel"
  5489. msgstr "Travel"
  5490. #: flatcamGUI/FlatCAMGUI.py:4617
  5491. msgid ""
  5492. "The number of circle steps for <b>GCode</b> \n"
  5493. "circle and arc shapes linear approximation."
  5494. msgstr ""
  5495. "The number of circle steps for <b>GCode</b> \n"
  5496. "circle and arc shapes linear approximation."
  5497. #: flatcamGUI/FlatCAMGUI.py:4627
  5498. msgid ""
  5499. "Diameter of the tool to be\n"
  5500. "rendered in the plot."
  5501. msgstr ""
  5502. "Diameter of the tool to be\n"
  5503. "rendered in the plot."
  5504. #: flatcamGUI/FlatCAMGUI.py:4635
  5505. msgid "Coords dec.:"
  5506. msgstr "Coords dec.:"
  5507. #: flatcamGUI/FlatCAMGUI.py:4637
  5508. msgid ""
  5509. "The number of decimals to be used for \n"
  5510. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  5511. msgstr ""
  5512. "The number of decimals to be used for \n"
  5513. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  5514. #: flatcamGUI/FlatCAMGUI.py:4645
  5515. msgid "Feedrate dec.:"
  5516. msgstr "Feedrate dec.:"
  5517. #: flatcamGUI/FlatCAMGUI.py:4647
  5518. msgid ""
  5519. "The number of decimals to be used for \n"
  5520. "the Feedrate parameter in CNC code (GCODE, etc.)"
  5521. msgstr ""
  5522. "The number of decimals to be used for \n"
  5523. "the Feedrate parameter in CNC code (GCODE, etc.)"
  5524. #: flatcamGUI/FlatCAMGUI.py:4662
  5525. msgid "CNC Job Options"
  5526. msgstr "CNC Job Options"
  5527. #: flatcamGUI/FlatCAMGUI.py:4665 flatcamGUI/FlatCAMGUI.py:4706
  5528. msgid "<b>Export G-Code:</b>"
  5529. msgstr "<b>Export G-Code:</b>"
  5530. #: flatcamGUI/FlatCAMGUI.py:4667 flatcamGUI/FlatCAMGUI.py:4708
  5531. #: flatcamGUI/ObjectUI.py:1535
  5532. msgid ""
  5533. "Export and save G-Code to\n"
  5534. "make this object to a file."
  5535. msgstr ""
  5536. "Export and save G-Code to\n"
  5537. "make this object to a file."
  5538. #: flatcamGUI/FlatCAMGUI.py:4673
  5539. msgid "Prepend to G-Code:"
  5540. msgstr "Prepend to G-Code:"
  5541. #: flatcamGUI/FlatCAMGUI.py:4675
  5542. msgid ""
  5543. "Type here any G-Code commands you would\n"
  5544. "like to add at the beginning of the G-Code file."
  5545. msgstr ""
  5546. "Type here any G-Code commands you would\n"
  5547. "like to add at the beginning of the G-Code file."
  5548. #: flatcamGUI/FlatCAMGUI.py:4684
  5549. msgid "Append to G-Code:"
  5550. msgstr "Append to G-Code:"
  5551. #: flatcamGUI/FlatCAMGUI.py:4686 flatcamGUI/ObjectUI.py:1557
  5552. msgid ""
  5553. "Type here any G-Code commands you would\n"
  5554. "like to append to the generated file.\n"
  5555. "I.e.: M2 (End of program)"
  5556. msgstr ""
  5557. "Type here any G-Code commands you would\n"
  5558. "like to append to the generated file.\n"
  5559. "I.e.: M2 (End of program)"
  5560. #: flatcamGUI/FlatCAMGUI.py:4703
  5561. msgid "CNC Job Adv. Options"
  5562. msgstr "CNC Job Adv. Options"
  5563. #: flatcamGUI/FlatCAMGUI.py:4714 flatcamGUI/ObjectUI.py:1575
  5564. msgid "Toolchange G-Code:"
  5565. msgstr "Toolchange G-Code:"
  5566. #: flatcamGUI/FlatCAMGUI.py:4716
  5567. msgid ""
  5568. "Type here any G-Code commands you would\n"
  5569. "like to be executed when Toolchange event is encountered.\n"
  5570. "This will constitute a Custom Toolchange GCode,\n"
  5571. "or a Toolchange Macro."
  5572. msgstr ""
  5573. "Type here any G-Code commands you would\n"
  5574. "like to be executed when Toolchange event is encountered.\n"
  5575. "This will constitute a Custom Toolchange GCode,\n"
  5576. "or a Toolchange Macro."
  5577. #: flatcamGUI/FlatCAMGUI.py:4730 flatcamGUI/ObjectUI.py:1597
  5578. msgid "Use Toolchange Macro"
  5579. msgstr "Use Toolchange Macro"
  5580. #: flatcamGUI/FlatCAMGUI.py:4732 flatcamGUI/ObjectUI.py:1600
  5581. msgid ""
  5582. "Check this box if you want to use\n"
  5583. "a Custom Toolchange GCode (macro)."
  5584. msgstr ""
  5585. "Check this box if you want to use\n"
  5586. "a Custom Toolchange GCode (macro)."
  5587. #: flatcamGUI/FlatCAMGUI.py:4744 flatcamGUI/ObjectUI.py:1616
  5588. msgid ""
  5589. "A list of the FlatCAM variables that can be used\n"
  5590. "in the Toolchange event.\n"
  5591. "They have to be surrounded by the '%' symbol"
  5592. msgstr ""
  5593. "A list of the FlatCAM variables that can be used\n"
  5594. "in the Toolchange event.\n"
  5595. "They have to be surrounded by the '%' symbol"
  5596. #: flatcamGUI/FlatCAMGUI.py:4751 flatcamGUI/ObjectUI.py:1624
  5597. msgid "Parameters"
  5598. msgstr "Parameters"
  5599. #: flatcamGUI/FlatCAMGUI.py:4754 flatcamGUI/ObjectUI.py:1627
  5600. msgid "FlatCAM CNC parameters"
  5601. msgstr "FlatCAM CNC parameters"
  5602. #: flatcamGUI/FlatCAMGUI.py:4755 flatcamGUI/ObjectUI.py:1628
  5603. msgid "tool = tool number"
  5604. msgstr "tool = tool number"
  5605. #: flatcamGUI/FlatCAMGUI.py:4756 flatcamGUI/ObjectUI.py:1629
  5606. msgid "tooldia = tool diameter"
  5607. msgstr "tooldia = tool diameter"
  5608. #: flatcamGUI/FlatCAMGUI.py:4757 flatcamGUI/ObjectUI.py:1630
  5609. msgid "t_drills = for Excellon, total number of drills"
  5610. msgstr "t_drills = for Excellon, total number of drills"
  5611. #: flatcamGUI/FlatCAMGUI.py:4758 flatcamGUI/ObjectUI.py:1631
  5612. msgid "x_toolchange = X coord for Toolchange"
  5613. msgstr "x_toolchange = X coord for Toolchange"
  5614. #: flatcamGUI/FlatCAMGUI.py:4759 flatcamGUI/ObjectUI.py:1632
  5615. msgid "y_toolchange = Y coord for Toolchange"
  5616. msgstr "y_toolchange = Y coord for Toolchange"
  5617. #: flatcamGUI/FlatCAMGUI.py:4760 flatcamGUI/ObjectUI.py:1633
  5618. msgid "z_toolchange = Z coord for Toolchange"
  5619. msgstr "z_toolchange = Z coord for Toolchange"
  5620. #: flatcamGUI/FlatCAMGUI.py:4761
  5621. msgid "z_cut = Z depth for the cut"
  5622. msgstr "z_cut = Z depth for the cut"
  5623. #: flatcamGUI/FlatCAMGUI.py:4762
  5624. msgid "z_move = Z height for travel"
  5625. msgstr "z_move = Z height for travel"
  5626. #: flatcamGUI/FlatCAMGUI.py:4763 flatcamGUI/ObjectUI.py:1636
  5627. msgid "z_depthpercut = the step value for multidepth cut"
  5628. msgstr "z_depthpercut = the step value for multidepth cut"
  5629. #: flatcamGUI/FlatCAMGUI.py:4764 flatcamGUI/ObjectUI.py:1637
  5630. msgid "spindlesspeed = the value for the spindle speed"
  5631. msgstr "spindlesspeed = the value for the spindle speed"
  5632. #: flatcamGUI/FlatCAMGUI.py:4765 flatcamGUI/ObjectUI.py:1638
  5633. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  5634. msgstr "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  5635. #: flatcamGUI/FlatCAMGUI.py:4786
  5636. msgid "NCC Tool Options"
  5637. msgstr "NCC Tool Options"
  5638. #: flatcamGUI/FlatCAMGUI.py:4789 flatcamGUI/FlatCAMGUI.py:4890
  5639. #: flatcamGUI/FlatCAMGUI.py:4960 flatcamGUI/FlatCAMGUI.py:5019
  5640. #: flatcamGUI/FlatCAMGUI.py:5122 flatcamGUI/FlatCAMGUI.py:5183
  5641. #: flatcamGUI/FlatCAMGUI.py:5382 flatcamGUI/FlatCAMGUI.py:5509
  5642. msgid "<b>Parameters:</b>"
  5643. msgstr "<b>Parameters:</b>"
  5644. #: flatcamGUI/FlatCAMGUI.py:4799 flatcamGUI/FlatCAMGUI.py:5520
  5645. msgid "Tools dia:"
  5646. msgstr "Tools dia:"
  5647. #: flatcamGUI/FlatCAMGUI.py:4801
  5648. msgid "Diameters of the cutting tools, separated by ','"
  5649. msgstr "Diameters of the cutting tools, separated by ','"
  5650. #: flatcamGUI/FlatCAMGUI.py:4809 flatcamTools/ToolNonCopperClear.py:166
  5651. #, python-format
  5652. msgid ""
  5653. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5654. "Example:\n"
  5655. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  5656. "\n"
  5657. "Adjust the value starting with lower values\n"
  5658. "and increasing it if areas that should be cleared are still \n"
  5659. "not cleared.\n"
  5660. "Lower values = faster processing, faster execution on PCB.\n"
  5661. "Higher values = slow processing and slow execution on CNC\n"
  5662. "due of too many paths."
  5663. msgstr ""
  5664. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5665. "Example:\n"
  5666. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  5667. "\n"
  5668. "Adjust the value starting with lower values\n"
  5669. "and increasing it if areas that should be cleared are still \n"
  5670. "not cleared.\n"
  5671. "Lower values = faster processing, faster execution on PCB.\n"
  5672. "Higher values = slow processing and slow execution on CNC\n"
  5673. "due of too many paths."
  5674. #: flatcamGUI/FlatCAMGUI.py:4825 flatcamTools/ToolNonCopperClear.py:182
  5675. msgid "Bounding box margin."
  5676. msgstr "Bounding box margin."
  5677. #: flatcamGUI/FlatCAMGUI.py:4834 flatcamTools/ToolNonCopperClear.py:191
  5678. #: flatcamTools/ToolPaint.py:190
  5679. msgid ""
  5680. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  5681. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  5682. "lines."
  5683. msgstr ""
  5684. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  5685. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  5686. "lines."
  5687. #: flatcamGUI/FlatCAMGUI.py:4866 flatcamTools/ToolNonCopperClear.py:223
  5688. #: flatcamTools/ToolPaint.py:222
  5689. msgid "Rest M.:"
  5690. msgstr "Rest M.:"
  5691. #: flatcamGUI/FlatCAMGUI.py:4868
  5692. msgid ""
  5693. "If checked, use 'rest machining'.\n"
  5694. "Basically it will clear copper outside PCB features,\n"
  5695. "using the biggest tool and continue with the next tools,\n"
  5696. "from bigger to smaller, to clear areas of copper that\n"
  5697. "could not be cleared by previous tool.\n"
  5698. "If not checked, use the standard algorithm."
  5699. msgstr ""
  5700. "If checked, use 'rest machining'.\n"
  5701. "Basically it will clear copper outside PCB features,\n"
  5702. "using the biggest tool and continue with the next tools,\n"
  5703. "from bigger to smaller, to clear areas of copper that\n"
  5704. "could not be cleared by previous tool.\n"
  5705. "If not checked, use the standard algorithm."
  5706. #: flatcamGUI/FlatCAMGUI.py:4887
  5707. msgid "Cutout Tool Options"
  5708. msgstr "Cutout Tool Options"
  5709. #: flatcamGUI/FlatCAMGUI.py:4892 flatcamGUI/ObjectUI.py:473
  5710. msgid ""
  5711. "Create toolpaths to cut around\n"
  5712. "the PCB and separate it from\n"
  5713. "the original board."
  5714. msgstr ""
  5715. "Create toolpaths to cut around\n"
  5716. "the PCB and separate it from\n"
  5717. "the original board."
  5718. #: flatcamGUI/FlatCAMGUI.py:4911
  5719. msgid ""
  5720. "Distance from objects at which\n"
  5721. "to draw the cutout."
  5722. msgstr ""
  5723. "Distance from objects at which\n"
  5724. "to draw the cutout."
  5725. #: flatcamGUI/FlatCAMGUI.py:4918 flatcamTools/ToolCutOut.py:96
  5726. msgid "Gap size:"
  5727. msgstr "Gap size:"
  5728. #: flatcamGUI/FlatCAMGUI.py:4920
  5729. msgid ""
  5730. "Size of the gaps in the toolpath\n"
  5731. "that will remain to hold the\n"
  5732. "board in place."
  5733. msgstr ""
  5734. "Size of the gaps in the toolpath\n"
  5735. "that will remain to hold the\n"
  5736. "board in place."
  5737. #: flatcamGUI/FlatCAMGUI.py:4928 flatcamTools/ToolCutOut.py:125
  5738. msgid "Gaps:"
  5739. msgstr "Gaps:"
  5740. #: flatcamGUI/FlatCAMGUI.py:4930
  5741. msgid ""
  5742. "Number of bridge gaps used for the cutout.\n"
  5743. "There can be maximum 8 bridges/gaps.\n"
  5744. "The choices are:\n"
  5745. "- lr - left + right\n"
  5746. "- tb - top + bottom\n"
  5747. "- 4 - left + right +top + bottom\n"
  5748. "- 2lr - 2*left + 2*right\n"
  5749. "- 2tb - 2*top + 2*bottom\n"
  5750. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  5751. msgstr ""
  5752. "Number of bridge gaps used for the cutout.\n"
  5753. "There can be maximum 8 bridges/gaps.\n"
  5754. "The choices are:\n"
  5755. "- lr - left + right\n"
  5756. "- tb - top + bottom\n"
  5757. "- 4 - left + right +top + bottom\n"
  5758. "- 2lr - 2*left + 2*right\n"
  5759. "- 2tb - 2*top + 2*bottom\n"
  5760. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  5761. #: flatcamGUI/FlatCAMGUI.py:4957
  5762. msgid "2Sided Tool Options"
  5763. msgstr "2Sided Tool Options"
  5764. #: flatcamGUI/FlatCAMGUI.py:4962
  5765. msgid ""
  5766. "A tool to help in creating a double sided\n"
  5767. "PCB using alignment holes."
  5768. msgstr ""
  5769. "A tool to help in creating a double sided\n"
  5770. "PCB using alignment holes."
  5771. #: flatcamGUI/FlatCAMGUI.py:4972 flatcamTools/ToolDblSided.py:235
  5772. msgid "Drill diam.:"
  5773. msgstr "Drill diam.:"
  5774. #: flatcamGUI/FlatCAMGUI.py:4974 flatcamTools/ToolDblSided.py:226
  5775. #: flatcamTools/ToolDblSided.py:237
  5776. msgid "Diameter of the drill for the alignment holes."
  5777. msgstr "Diameter of the drill for the alignment holes."
  5778. #: flatcamGUI/FlatCAMGUI.py:4981
  5779. msgid "X"
  5780. msgstr "X"
  5781. #: flatcamGUI/FlatCAMGUI.py:4982
  5782. msgid "Y"
  5783. msgstr "Y"
  5784. #: flatcamGUI/FlatCAMGUI.py:4983 flatcamTools/ToolDblSided.py:120
  5785. msgid "Mirror Axis:"
  5786. msgstr "Mirror Axis:"
  5787. #: flatcamGUI/FlatCAMGUI.py:4985 flatcamTools/ToolDblSided.py:122
  5788. msgid "Mirror vertically (X) or horizontally (Y)."
  5789. msgstr "Mirror vertically (X) or horizontally (Y)."
  5790. #: flatcamGUI/FlatCAMGUI.py:4994
  5791. msgid "Point"
  5792. msgstr "Point"
  5793. #: flatcamGUI/FlatCAMGUI.py:4995
  5794. msgid "Box"
  5795. msgstr "Box"
  5796. #: flatcamGUI/FlatCAMGUI.py:4996 flatcamTools/ToolDblSided.py:133
  5797. msgid "Axis Ref:"
  5798. msgstr "Axis Ref:"
  5799. #: flatcamGUI/FlatCAMGUI.py:4998
  5800. msgid ""
  5801. "The axis should pass through a <b>point</b> or cut\n"
  5802. " a specified <b>box</b> (in a Geometry object) in \n"
  5803. "the middle."
  5804. msgstr ""
  5805. "The axis should pass through a <b>point</b> or cut\n"
  5806. " a specified <b>box</b> (in a Geometry object) in \n"
  5807. "the middle."
  5808. #: flatcamGUI/FlatCAMGUI.py:5014
  5809. msgid "Paint Tool Options"
  5810. msgstr "Paint Tool Options"
  5811. #: flatcamGUI/FlatCAMGUI.py:5021 flatcamGUI/ObjectUI.py:1370
  5812. msgid ""
  5813. "Creates tool paths to cover the\n"
  5814. "whole area of a polygon (remove\n"
  5815. "all copper). You will be asked\n"
  5816. "to click on the desired polygon."
  5817. msgstr ""
  5818. "Creates tool paths to cover the\n"
  5819. "whole area of a polygon (remove\n"
  5820. "all copper). You will be asked\n"
  5821. "to click on the desired polygon."
  5822. #: flatcamGUI/FlatCAMGUI.py:5045
  5823. msgid ""
  5824. "How much (fraction) of the tool\n"
  5825. "width to overlap each tool pass."
  5826. msgstr ""
  5827. "How much (fraction) of the tool\n"
  5828. "width to overlap each tool pass."
  5829. #: flatcamGUI/FlatCAMGUI.py:5099 flatcamTools/ToolPaint.py:237
  5830. msgid "Selection:"
  5831. msgstr "Selection:"
  5832. #: flatcamGUI/FlatCAMGUI.py:5101
  5833. msgid "How to select the polygons to paint."
  5834. msgstr "How to select the polygons to paint."
  5835. #: flatcamGUI/FlatCAMGUI.py:5105
  5836. msgid "Single"
  5837. msgstr "Single"
  5838. #: flatcamGUI/FlatCAMGUI.py:5119
  5839. msgid "Film Tool Options"
  5840. msgstr "Film Tool Options"
  5841. #: flatcamGUI/FlatCAMGUI.py:5124
  5842. msgid ""
  5843. "Create a PCB film from a Gerber or Geometry\n"
  5844. "FlatCAM object.\n"
  5845. "The file is saved in SVG format."
  5846. msgstr ""
  5847. "Create a PCB film from a Gerber or Geometry\n"
  5848. "FlatCAM object.\n"
  5849. "The file is saved in SVG format."
  5850. #: flatcamGUI/FlatCAMGUI.py:5133
  5851. msgid "Pos"
  5852. msgstr "Pos"
  5853. #: flatcamGUI/FlatCAMGUI.py:5134
  5854. msgid "Neg"
  5855. msgstr "Neg"
  5856. #: flatcamGUI/FlatCAMGUI.py:5135 flatcamTools/ToolFilm.py:116
  5857. msgid "Film Type:"
  5858. msgstr "Film Type:"
  5859. #: flatcamGUI/FlatCAMGUI.py:5137 flatcamTools/ToolFilm.py:118
  5860. msgid ""
  5861. "Generate a Positive black film or a Negative film.\n"
  5862. "Positive means that it will print the features\n"
  5863. "with black on a white canvas.\n"
  5864. "Negative means that it will print the features\n"
  5865. "with white on a black canvas.\n"
  5866. "The Film format is SVG."
  5867. msgstr ""
  5868. "Generate a Positive black film or a Negative film.\n"
  5869. "Positive means that it will print the features\n"
  5870. "with black on a white canvas.\n"
  5871. "Negative means that it will print the features\n"
  5872. "with white on a black canvas.\n"
  5873. "The Film format is SVG."
  5874. #: flatcamGUI/FlatCAMGUI.py:5148 flatcamTools/ToolFilm.py:130
  5875. msgid "Border:"
  5876. msgstr "Border:"
  5877. #: flatcamGUI/FlatCAMGUI.py:5150 flatcamTools/ToolFilm.py:132
  5878. msgid ""
  5879. "Specify a border around the object.\n"
  5880. "Only for negative film.\n"
  5881. "It helps if we use as a Box Object the same \n"
  5882. "object as in Film Object. It will create a thick\n"
  5883. "black bar around the actual print allowing for a\n"
  5884. "better delimitation of the outline features which are of\n"
  5885. "white color like the rest and which may confound with the\n"
  5886. "surroundings if not for this border."
  5887. msgstr ""
  5888. "Specify a border around the object.\n"
  5889. "Only for negative film.\n"
  5890. "It helps if we use as a Box Object the same \n"
  5891. "object as in Film Object. It will create a thick\n"
  5892. "black bar around the actual print allowing for a\n"
  5893. "better delimitation of the outline features which are of\n"
  5894. "white color like the rest and which may confound with the\n"
  5895. "surroundings if not for this border."
  5896. #: flatcamGUI/FlatCAMGUI.py:5163 flatcamTools/ToolFilm.py:144
  5897. msgid "Scale Stroke:"
  5898. msgstr "Scale Stroke:"
  5899. #: flatcamGUI/FlatCAMGUI.py:5165 flatcamTools/ToolFilm.py:146
  5900. msgid ""
  5901. "Scale the line stroke thickness of each feature in the SVG file.\n"
  5902. "It means that the line that envelope each SVG feature will be thicker or "
  5903. "thinner,\n"
  5904. "therefore the fine features may be more affected by this parameter."
  5905. msgstr ""
  5906. "Scale the line stroke thickness of each feature in the SVG file.\n"
  5907. "It means that the line that envelope each SVG feature will be thicker or "
  5908. "thinner,\n"
  5909. "therefore the fine features may be more affected by this parameter."
  5910. #: flatcamGUI/FlatCAMGUI.py:5180
  5911. msgid "Panelize Tool Options"
  5912. msgstr "Panelize Tool Options"
  5913. #: flatcamGUI/FlatCAMGUI.py:5185
  5914. msgid ""
  5915. "Create an object that contains an array of (x, y) elements,\n"
  5916. "each element is a copy of the source object spaced\n"
  5917. "at a X distance, Y distance of each other."
  5918. msgstr ""
  5919. "Create an object that contains an array of (x, y) elements,\n"
  5920. "each element is a copy of the source object spaced\n"
  5921. "at a X distance, Y distance of each other."
  5922. #: flatcamGUI/FlatCAMGUI.py:5196 flatcamTools/ToolPanelize.py:113
  5923. msgid "Spacing cols:"
  5924. msgstr "Spacing cols:"
  5925. #: flatcamGUI/FlatCAMGUI.py:5198 flatcamTools/ToolPanelize.py:115
  5926. msgid ""
  5927. "Spacing between columns of the desired panel.\n"
  5928. "In current units."
  5929. msgstr ""
  5930. "Spacing between columns of the desired panel.\n"
  5931. "In current units."
  5932. #: flatcamGUI/FlatCAMGUI.py:5206 flatcamTools/ToolPanelize.py:122
  5933. msgid "Spacing rows:"
  5934. msgstr "Spacing rows:"
  5935. #: flatcamGUI/FlatCAMGUI.py:5208 flatcamTools/ToolPanelize.py:124
  5936. msgid ""
  5937. "Spacing between rows of the desired panel.\n"
  5938. "In current units."
  5939. msgstr ""
  5940. "Spacing between rows of the desired panel.\n"
  5941. "In current units."
  5942. #: flatcamGUI/FlatCAMGUI.py:5216 flatcamTools/ToolPanelize.py:131
  5943. msgid "Columns:"
  5944. msgstr "Columns:"
  5945. #: flatcamGUI/FlatCAMGUI.py:5218 flatcamTools/ToolPanelize.py:133
  5946. msgid "Number of columns of the desired panel"
  5947. msgstr "Number of columns of the desired panel"
  5948. #: flatcamGUI/FlatCAMGUI.py:5225 flatcamTools/ToolPanelize.py:139
  5949. msgid "Rows:"
  5950. msgstr "Rows:"
  5951. #: flatcamGUI/FlatCAMGUI.py:5227 flatcamTools/ToolPanelize.py:141
  5952. msgid "Number of rows of the desired panel"
  5953. msgstr "Number of rows of the desired panel"
  5954. #: flatcamGUI/FlatCAMGUI.py:5233
  5955. msgid "Gerber"
  5956. msgstr "Gerber"
  5957. #: flatcamGUI/FlatCAMGUI.py:5234
  5958. msgid "Geo"
  5959. msgstr "Geo"
  5960. #: flatcamGUI/FlatCAMGUI.py:5235 flatcamTools/ToolPanelize.py:148
  5961. msgid "Panel Type:"
  5962. msgstr "Panel Type:"
  5963. #: flatcamGUI/FlatCAMGUI.py:5237
  5964. msgid ""
  5965. "Choose the type of object for the panel object:\n"
  5966. "- Gerber\n"
  5967. "- Geometry"
  5968. msgstr ""
  5969. "Choose the type of object for the panel object:\n"
  5970. "- Gerber\n"
  5971. "- Geometry"
  5972. #: flatcamGUI/FlatCAMGUI.py:5246
  5973. msgid "Constrain within:"
  5974. msgstr "Constrain within:"
  5975. #: flatcamGUI/FlatCAMGUI.py:5248 flatcamTools/ToolPanelize.py:160
  5976. msgid ""
  5977. "Area define by DX and DY within to constrain the panel.\n"
  5978. "DX and DY values are in current units.\n"
  5979. "Regardless of how many columns and rows are desired,\n"
  5980. "the final panel will have as many columns and rows as\n"
  5981. "they fit completely within selected area."
  5982. msgstr ""
  5983. "Area define by DX and DY within to constrain the panel.\n"
  5984. "DX and DY values are in current units.\n"
  5985. "Regardless of how many columns and rows are desired,\n"
  5986. "the final panel will have as many columns and rows as\n"
  5987. "they fit completely within selected area."
  5988. #: flatcamGUI/FlatCAMGUI.py:5257 flatcamTools/ToolPanelize.py:169
  5989. msgid "Width (DX):"
  5990. msgstr "Width (DX):"
  5991. #: flatcamGUI/FlatCAMGUI.py:5259 flatcamTools/ToolPanelize.py:171
  5992. msgid ""
  5993. "The width (DX) within which the panel must fit.\n"
  5994. "In current units."
  5995. msgstr ""
  5996. "The width (DX) within which the panel must fit.\n"
  5997. "In current units."
  5998. #: flatcamGUI/FlatCAMGUI.py:5266 flatcamTools/ToolPanelize.py:177
  5999. msgid "Height (DY):"
  6000. msgstr "Height (DY):"
  6001. #: flatcamGUI/FlatCAMGUI.py:5268 flatcamTools/ToolPanelize.py:179
  6002. msgid ""
  6003. "The height (DY)within which the panel must fit.\n"
  6004. "In current units."
  6005. msgstr ""
  6006. "The height (DY)within which the panel must fit.\n"
  6007. "In current units."
  6008. #: flatcamGUI/FlatCAMGUI.py:5282
  6009. msgid "Calculators Tool Options"
  6010. msgstr "Calculators Tool Options"
  6011. #: flatcamGUI/FlatCAMGUI.py:5285
  6012. msgid "<b>V-Shape Tool Calculator:</b>"
  6013. msgstr "<b>V-Shape Tool Calculator:</b>"
  6014. #: flatcamGUI/FlatCAMGUI.py:5287
  6015. msgid ""
  6016. "Calculate the tool diameter for a given V-shape tool,\n"
  6017. "having the tip diameter, tip angle and\n"
  6018. "depth-of-cut as parameters."
  6019. msgstr ""
  6020. "Calculate the tool diameter for a given V-shape tool,\n"
  6021. "having the tip diameter, tip angle and\n"
  6022. "depth-of-cut as parameters."
  6023. #: flatcamGUI/FlatCAMGUI.py:5298 flatcamTools/ToolCalculators.py:94
  6024. msgid "Tip Diameter:"
  6025. msgstr "Tip Diameter:"
  6026. #: flatcamGUI/FlatCAMGUI.py:5300
  6027. msgid ""
  6028. "This is the tool tip diameter.\n"
  6029. "It is specified by manufacturer."
  6030. msgstr ""
  6031. "This is the tool tip diameter.\n"
  6032. "It is specified by manufacturer."
  6033. #: flatcamGUI/FlatCAMGUI.py:5308
  6034. msgid "Tip angle:"
  6035. msgstr "Tip angle:"
  6036. #: flatcamGUI/FlatCAMGUI.py:5310
  6037. msgid ""
  6038. "This is the angle on the tip of the tool.\n"
  6039. "It is specified by manufacturer."
  6040. msgstr ""
  6041. "This is the angle on the tip of the tool.\n"
  6042. "It is specified by manufacturer."
  6043. #: flatcamGUI/FlatCAMGUI.py:5320
  6044. msgid ""
  6045. "This is depth to cut into material.\n"
  6046. "In the CNCJob object it is the CutZ parameter."
  6047. msgstr ""
  6048. "This is depth to cut into material.\n"
  6049. "In the CNCJob object it is the CutZ parameter."
  6050. #: flatcamGUI/FlatCAMGUI.py:5327
  6051. msgid "<b>ElectroPlating Calculator:</b>"
  6052. msgstr "<b>ElectroPlating Calculator:</b>"
  6053. #: flatcamGUI/FlatCAMGUI.py:5329 flatcamTools/ToolCalculators.py:152
  6054. msgid ""
  6055. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  6056. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  6057. "chloride."
  6058. msgstr ""
  6059. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  6060. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  6061. "chloride."
  6062. #: flatcamGUI/FlatCAMGUI.py:5339 flatcamTools/ToolCalculators.py:161
  6063. msgid "Board Length:"
  6064. msgstr "Board Length:"
  6065. #: flatcamGUI/FlatCAMGUI.py:5341 flatcamTools/ToolCalculators.py:165
  6066. msgid "This is the board length. In centimeters."
  6067. msgstr "This is the board length. In centimeters."
  6068. #: flatcamGUI/FlatCAMGUI.py:5347 flatcamTools/ToolCalculators.py:167
  6069. msgid "Board Width:"
  6070. msgstr "Board Width:"
  6071. #: flatcamGUI/FlatCAMGUI.py:5349 flatcamTools/ToolCalculators.py:171
  6072. msgid "This is the board width.In centimeters."
  6073. msgstr "This is the board width.In centimeters."
  6074. #: flatcamGUI/FlatCAMGUI.py:5354 flatcamTools/ToolCalculators.py:173
  6075. msgid "Current Density:"
  6076. msgstr "Current Density:"
  6077. #: flatcamGUI/FlatCAMGUI.py:5357 flatcamTools/ToolCalculators.py:177
  6078. msgid ""
  6079. "Current density to pass through the board. \n"
  6080. "In Amps per Square Feet ASF."
  6081. msgstr ""
  6082. "Current density to pass through the board. \n"
  6083. "In Amps per Square Feet ASF."
  6084. #: flatcamGUI/FlatCAMGUI.py:5363 flatcamTools/ToolCalculators.py:181
  6085. msgid "Copper Growth:"
  6086. msgstr "Copper Growth:"
  6087. #: flatcamGUI/FlatCAMGUI.py:5366 flatcamTools/ToolCalculators.py:185
  6088. msgid ""
  6089. "How thick the copper growth is intended to be.\n"
  6090. "In microns."
  6091. msgstr ""
  6092. "How thick the copper growth is intended to be.\n"
  6093. "In microns."
  6094. #: flatcamGUI/FlatCAMGUI.py:5379
  6095. msgid "Transform Tool Options"
  6096. msgstr "Transform Tool Options"
  6097. #: flatcamGUI/FlatCAMGUI.py:5384
  6098. msgid ""
  6099. "Various transformations that can be applied\n"
  6100. "on a FlatCAM object."
  6101. msgstr ""
  6102. "Various transformations that can be applied\n"
  6103. "on a FlatCAM object."
  6104. #: flatcamGUI/FlatCAMGUI.py:5394
  6105. msgid "Rotate Angle:"
  6106. msgstr "Rotate Angle:"
  6107. #: flatcamGUI/FlatCAMGUI.py:5396
  6108. msgid "Angle for rotation. In degrees."
  6109. msgstr "Angle for rotation. In degrees."
  6110. #: flatcamGUI/FlatCAMGUI.py:5403
  6111. msgid "Skew_X angle:"
  6112. msgstr "Skew_X angle:"
  6113. #: flatcamGUI/FlatCAMGUI.py:5405
  6114. msgid "Angle for Skew/Shear on X axis. In degrees."
  6115. msgstr "Angle for Skew/Shear on X axis. In degrees."
  6116. #: flatcamGUI/FlatCAMGUI.py:5412
  6117. msgid "Skew_Y angle:"
  6118. msgstr "Skew_Y angle:"
  6119. #: flatcamGUI/FlatCAMGUI.py:5414
  6120. msgid "Angle for Skew/Shear on Y axis. In degrees."
  6121. msgstr "Angle for Skew/Shear on Y axis. In degrees."
  6122. #: flatcamGUI/FlatCAMGUI.py:5421
  6123. msgid "Scale_X factor:"
  6124. msgstr "Scale_X factor:"
  6125. #: flatcamGUI/FlatCAMGUI.py:5423
  6126. msgid "Factor for scaling on X axis."
  6127. msgstr "Factor for scaling on X axis."
  6128. #: flatcamGUI/FlatCAMGUI.py:5430
  6129. msgid "Scale_Y factor:"
  6130. msgstr "Scale_Y factor:"
  6131. #: flatcamGUI/FlatCAMGUI.py:5432
  6132. msgid "Factor for scaling on Y axis."
  6133. msgstr "Factor for scaling on Y axis."
  6134. #: flatcamGUI/FlatCAMGUI.py:5440
  6135. msgid ""
  6136. "Scale the selected object(s)\n"
  6137. "using the Scale_X factor for both axis."
  6138. msgstr ""
  6139. "Scale the selected object(s)\n"
  6140. "using the Scale_X factor for both axis."
  6141. #: flatcamGUI/FlatCAMGUI.py:5448 flatcamTools/ToolTransform.py:210
  6142. msgid ""
  6143. "Scale the selected object(s)\n"
  6144. "using the origin reference when checked,\n"
  6145. "and the center of the biggest bounding box\n"
  6146. "of the selected objects when unchecked."
  6147. msgstr ""
  6148. "Scale the selected object(s)\n"
  6149. "using the origin reference when checked,\n"
  6150. "and the center of the biggest bounding box\n"
  6151. "of the selected objects when unchecked."
  6152. #: flatcamGUI/FlatCAMGUI.py:5457
  6153. msgid "Offset_X val:"
  6154. msgstr "Offset_X val:"
  6155. #: flatcamGUI/FlatCAMGUI.py:5459
  6156. msgid "Distance to offset on X axis. In current units."
  6157. msgstr "Distance to offset on X axis. In current units."
  6158. #: flatcamGUI/FlatCAMGUI.py:5466
  6159. msgid "Offset_Y val:"
  6160. msgstr "Offset_Y val:"
  6161. #: flatcamGUI/FlatCAMGUI.py:5468
  6162. msgid "Distance to offset on Y axis. In current units."
  6163. msgstr "Distance to offset on Y axis. In current units."
  6164. #: flatcamGUI/FlatCAMGUI.py:5474
  6165. msgid "Mirror Reference"
  6166. msgstr "Mirror Reference"
  6167. #: flatcamGUI/FlatCAMGUI.py:5476 flatcamTools/ToolTransform.py:314
  6168. msgid ""
  6169. "Flip the selected object(s)\n"
  6170. "around the point in Point Entry Field.\n"
  6171. "\n"
  6172. "The point coordinates can be captured by\n"
  6173. "left click on canvas together with pressing\n"
  6174. "SHIFT key. \n"
  6175. "Then click Add button to insert coordinates.\n"
  6176. "Or enter the coords in format (x, y) in the\n"
  6177. "Point Entry field and click Flip on X(Y)"
  6178. msgstr ""
  6179. "Flip the selected object(s)\n"
  6180. "around the point in Point Entry Field.\n"
  6181. "\n"
  6182. "The point coordinates can be captured by\n"
  6183. "left click on canvas together with pressing\n"
  6184. "SHIFT key. \n"
  6185. "Then click Add button to insert coordinates.\n"
  6186. "Or enter the coords in format (x, y) in the\n"
  6187. "Point Entry field and click Flip on X(Y)"
  6188. #: flatcamGUI/FlatCAMGUI.py:5487
  6189. msgid " Mirror Ref. Point:"
  6190. msgstr " Mirror Ref. Point:"
  6191. #: flatcamGUI/FlatCAMGUI.py:5489 flatcamTools/ToolTransform.py:327
  6192. msgid ""
  6193. "Coordinates in format (x, y) used as reference for mirroring.\n"
  6194. "The 'x' in (x, y) will be used when using Flip on X and\n"
  6195. "the 'y' in (x, y) will be used when using Flip on Y and"
  6196. msgstr ""
  6197. "Coordinates in format (x, y) used as reference for mirroring.\n"
  6198. "The 'x' in (x, y) will be used when using Flip on X and\n"
  6199. "the 'y' in (x, y) will be used when using Flip on Y and"
  6200. #: flatcamGUI/FlatCAMGUI.py:5506
  6201. msgid "SolderPaste Tool Options"
  6202. msgstr "SolderPaste Tool Options"
  6203. #: flatcamGUI/FlatCAMGUI.py:5511
  6204. msgid ""
  6205. "A tool to create GCode for dispensing\n"
  6206. "solder paste onto a PCB."
  6207. msgstr ""
  6208. "A tool to create GCode for dispensing\n"
  6209. "solder paste onto a PCB."
  6210. #: flatcamGUI/FlatCAMGUI.py:5522
  6211. msgid "Diameters of nozzle tools, separated by ','"
  6212. msgstr "Diameters of nozzle tools, separated by ','"
  6213. #: flatcamGUI/FlatCAMGUI.py:5529
  6214. msgid "<b>New Nozzle Dia:</b>"
  6215. msgstr "<b>New Nozzle Dia:</b>"
  6216. #: flatcamGUI/FlatCAMGUI.py:5531 flatcamTools/ToolSolderPaste.py:103
  6217. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  6218. msgstr "Diameter for the new Nozzle tool to add in the Tool Table"
  6219. #: flatcamGUI/FlatCAMGUI.py:5539 flatcamTools/ToolSolderPaste.py:166
  6220. msgid "Z Dispense Start:"
  6221. msgstr "Z Dispense Start:"
  6222. #: flatcamGUI/FlatCAMGUI.py:5541 flatcamTools/ToolSolderPaste.py:168
  6223. msgid "The height (Z) when solder paste dispensing starts."
  6224. msgstr "The height (Z) when solder paste dispensing starts."
  6225. #: flatcamGUI/FlatCAMGUI.py:5548 flatcamTools/ToolSolderPaste.py:174
  6226. msgid "Z Dispense:"
  6227. msgstr "Z Dispense:"
  6228. #: flatcamGUI/FlatCAMGUI.py:5550 flatcamTools/ToolSolderPaste.py:176
  6229. msgid "The height (Z) when doing solder paste dispensing."
  6230. msgstr "The height (Z) when doing solder paste dispensing."
  6231. #: flatcamGUI/FlatCAMGUI.py:5557 flatcamTools/ToolSolderPaste.py:183
  6232. msgid "Z Dispense Stop:"
  6233. msgstr "Z Dispense Stop:"
  6234. #: flatcamGUI/FlatCAMGUI.py:5559 flatcamTools/ToolSolderPaste.py:185
  6235. msgid "The height (Z) when solder paste dispensing stops."
  6236. msgstr "The height (Z) when solder paste dispensing stops."
  6237. #: flatcamGUI/FlatCAMGUI.py:5566 flatcamTools/ToolSolderPaste.py:191
  6238. msgid "Z Travel:"
  6239. msgstr "Z Travel:"
  6240. #: flatcamGUI/FlatCAMGUI.py:5568 flatcamTools/ToolSolderPaste.py:193
  6241. msgid ""
  6242. "The height (Z) for travel between pads\n"
  6243. "(without dispensing solder paste)."
  6244. msgstr ""
  6245. "The height (Z) for travel between pads\n"
  6246. "(without dispensing solder paste)."
  6247. #: flatcamGUI/FlatCAMGUI.py:5576 flatcamTools/ToolSolderPaste.py:200
  6248. msgid "Z Toolchange:"
  6249. msgstr "Z Toolchange:"
  6250. #: flatcamGUI/FlatCAMGUI.py:5578 flatcamTools/ToolSolderPaste.py:202
  6251. msgid "The height (Z) for tool (nozzle) change."
  6252. msgstr "The height (Z) for tool (nozzle) change."
  6253. #: flatcamGUI/FlatCAMGUI.py:5585 flatcamTools/ToolSolderPaste.py:208
  6254. msgid "XY Toolchange:"
  6255. msgstr "XY Toolchange:"
  6256. #: flatcamGUI/FlatCAMGUI.py:5587 flatcamTools/ToolSolderPaste.py:210
  6257. msgid ""
  6258. "The X,Y location for tool (nozzle) change.\n"
  6259. "The format is (x, y) where x and y are real numbers."
  6260. msgstr ""
  6261. "The X,Y location for tool (nozzle) change.\n"
  6262. "The format is (x, y) where x and y are real numbers."
  6263. #: flatcamGUI/FlatCAMGUI.py:5595 flatcamTools/ToolSolderPaste.py:217
  6264. msgid "Feedrate X-Y:"
  6265. msgstr "Feedrate X-Y:"
  6266. #: flatcamGUI/FlatCAMGUI.py:5597 flatcamTools/ToolSolderPaste.py:219
  6267. msgid "Feedrate (speed) while moving on the X-Y plane."
  6268. msgstr "Feedrate (speed) while moving on the X-Y plane."
  6269. #: flatcamGUI/FlatCAMGUI.py:5604 flatcamTools/ToolSolderPaste.py:225
  6270. msgid "Feedrate Z:"
  6271. msgstr "Feedrate Z:"
  6272. #: flatcamGUI/FlatCAMGUI.py:5606 flatcamTools/ToolSolderPaste.py:227
  6273. msgid ""
  6274. "Feedrate (speed) while moving vertically\n"
  6275. "(on Z plane)."
  6276. msgstr ""
  6277. "Feedrate (speed) while moving vertically\n"
  6278. "(on Z plane)."
  6279. #: flatcamGUI/FlatCAMGUI.py:5614 flatcamTools/ToolSolderPaste.py:234
  6280. msgid "Feedrate Z Dispense:"
  6281. msgstr "Feedrate Z Dispense:"
  6282. #: flatcamGUI/FlatCAMGUI.py:5616 flatcamTools/ToolSolderPaste.py:236
  6283. msgid ""
  6284. "Feedrate (speed) while moving up vertically\n"
  6285. " to Dispense position (on Z plane)."
  6286. msgstr ""
  6287. "Feedrate (speed) while moving up vertically\n"
  6288. " to Dispense position (on Z plane)."
  6289. #: flatcamGUI/FlatCAMGUI.py:5624 flatcamTools/ToolSolderPaste.py:243
  6290. msgid "Spindle Speed FWD:"
  6291. msgstr "Spindle Speed FWD:"
  6292. #: flatcamGUI/FlatCAMGUI.py:5626 flatcamTools/ToolSolderPaste.py:245
  6293. msgid ""
  6294. "The dispenser speed while pushing solder paste\n"
  6295. "through the dispenser nozzle."
  6296. msgstr ""
  6297. "The dispenser speed while pushing solder paste\n"
  6298. "through the dispenser nozzle."
  6299. #: flatcamGUI/FlatCAMGUI.py:5634 flatcamTools/ToolSolderPaste.py:252
  6300. msgid "Dwell FWD:"
  6301. msgstr "Dwell FWD:"
  6302. #: flatcamGUI/FlatCAMGUI.py:5636 flatcamTools/ToolSolderPaste.py:254
  6303. msgid "Pause after solder dispensing."
  6304. msgstr "Pause after solder dispensing."
  6305. #: flatcamGUI/FlatCAMGUI.py:5643 flatcamTools/ToolSolderPaste.py:260
  6306. msgid "Spindle Speed REV:"
  6307. msgstr "Spindle Speed REV:"
  6308. #: flatcamGUI/FlatCAMGUI.py:5645 flatcamTools/ToolSolderPaste.py:262
  6309. msgid ""
  6310. "The dispenser speed while retracting solder paste\n"
  6311. "through the dispenser nozzle."
  6312. msgstr ""
  6313. "The dispenser speed while retracting solder paste\n"
  6314. "through the dispenser nozzle."
  6315. #: flatcamGUI/FlatCAMGUI.py:5653 flatcamTools/ToolSolderPaste.py:269
  6316. msgid "Dwell REV:"
  6317. msgstr "Dwell REV:"
  6318. #: flatcamGUI/FlatCAMGUI.py:5655 flatcamTools/ToolSolderPaste.py:271
  6319. msgid ""
  6320. "Pause after solder paste dispenser retracted,\n"
  6321. "to allow pressure equilibrium."
  6322. msgstr ""
  6323. "Pause after solder paste dispenser retracted,\n"
  6324. "to allow pressure equilibrium."
  6325. #: flatcamGUI/FlatCAMGUI.py:5662 flatcamTools/ToolSolderPaste.py:277
  6326. msgid "PostProcessors:"
  6327. msgstr "PostProcessors:"
  6328. #: flatcamGUI/FlatCAMGUI.py:5664 flatcamTools/ToolSolderPaste.py:279
  6329. msgid "Files that control the GCode generation."
  6330. msgstr "Files that control the GCode generation."
  6331. #: flatcamGUI/FlatCAMGUI.py:5694 flatcamGUI/FlatCAMGUI.py:5700
  6332. msgid "Idle."
  6333. msgstr "Idle."
  6334. #: flatcamGUI/FlatCAMGUI.py:5724
  6335. msgid "Application started ..."
  6336. msgstr "Bewerbung gestartet ..."
  6337. #: flatcamGUI/FlatCAMGUI.py:5725
  6338. msgid "Hello!"
  6339. msgstr "Hello!"
  6340. #: flatcamGUI/ObjectUI.py:33
  6341. msgid "FlatCAM Object"
  6342. msgstr "FlatCAM Object"
  6343. #: flatcamGUI/ObjectUI.py:58
  6344. msgid ""
  6345. "BASIC is suitable for a beginner. Many parameters\n"
  6346. "are hidden from the user in this mode.\n"
  6347. "ADVANCED mode will make available all parameters.\n"
  6348. "\n"
  6349. "To change the application LEVEL, go to:\n"
  6350. "Edit -> Preferences -> General and check:\n"
  6351. "'APP. LEVEL' radio button."
  6352. msgstr ""
  6353. "BASIC is suitable for a beginner. Many parameters\n"
  6354. "are hidden from the user in this mode.\n"
  6355. "ADVANCED mode will make available all parameters.\n"
  6356. "\n"
  6357. "To change the application LEVEL, go to:\n"
  6358. "Edit -> Preferences -> General and check:\n"
  6359. "'APP. LEVEL' radio button."
  6360. #: flatcamGUI/ObjectUI.py:79
  6361. msgid "<b>Scale:</b>"
  6362. msgstr "<b>Scale:</b>"
  6363. #: flatcamGUI/ObjectUI.py:81
  6364. msgid "Change the size of the object."
  6365. msgstr "Change the size of the object."
  6366. #: flatcamGUI/ObjectUI.py:89
  6367. msgid "Factor:"
  6368. msgstr "Factor:"
  6369. #: flatcamGUI/ObjectUI.py:91
  6370. msgid ""
  6371. "Factor by which to multiply\n"
  6372. "geometric features of this object."
  6373. msgstr ""
  6374. "Factor by which to multiply\n"
  6375. "geometric features of this object."
  6376. #: flatcamGUI/ObjectUI.py:102
  6377. msgid "Perform scaling operation."
  6378. msgstr "Perform scaling operation."
  6379. #: flatcamGUI/ObjectUI.py:108
  6380. msgid "<b>Offset:</b>"
  6381. msgstr "<b>Offset:</b>"
  6382. #: flatcamGUI/ObjectUI.py:110
  6383. msgid "Change the position of this object."
  6384. msgstr "Change the position of this object."
  6385. #: flatcamGUI/ObjectUI.py:117
  6386. msgid "Vector:"
  6387. msgstr "Vector:"
  6388. #: flatcamGUI/ObjectUI.py:119
  6389. msgid ""
  6390. "Amount by which to move the object\n"
  6391. "in the x and y axes in (x, y) format."
  6392. msgstr ""
  6393. "Amount by which to move the object\n"
  6394. "in the x and y axes in (x, y) format."
  6395. #: flatcamGUI/ObjectUI.py:129
  6396. msgid "Perform the offset operation."
  6397. msgstr "Perform the offset operation."
  6398. #: flatcamGUI/ObjectUI.py:143
  6399. msgid "Gerber Object"
  6400. msgstr "Gerber Object"
  6401. #: flatcamGUI/ObjectUI.py:156
  6402. msgid "Solid "
  6403. msgstr "Solid "
  6404. #: flatcamGUI/ObjectUI.py:164
  6405. msgid "M-Color "
  6406. msgstr "M-Color "
  6407. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:588
  6408. #: flatcamGUI/ObjectUI.py:907 flatcamGUI/ObjectUI.py:1437
  6409. msgid "<b>Name:</b>"
  6410. msgstr "<b>Name:</b>"
  6411. #: flatcamGUI/ObjectUI.py:192
  6412. msgid "<b>Apertures:</b>"
  6413. msgstr "<b>Apertures:</b>"
  6414. #: flatcamGUI/ObjectUI.py:194
  6415. msgid "Apertures Table for the Gerber Object."
  6416. msgstr "Apertures Table for the Gerber Object."
  6417. #: flatcamGUI/ObjectUI.py:203
  6418. msgid ""
  6419. "Toggle the display of the Gerber Apertures Table.\n"
  6420. "When unchecked, it will delete all mark shapes\n"
  6421. "that are drawn on canvas."
  6422. msgstr ""
  6423. "Toggle the display of the Gerber Apertures Table.\n"
  6424. "When unchecked, it will delete all mark shapes\n"
  6425. "that are drawn on canvas."
  6426. #: flatcamGUI/ObjectUI.py:214
  6427. msgid "Mark All"
  6428. msgstr "Mark All"
  6429. #: flatcamGUI/ObjectUI.py:216
  6430. msgid ""
  6431. "When checked it will display all the apertures.\n"
  6432. "When unchecked, it will delete all mark shapes\n"
  6433. "that are drawn on canvas."
  6434. msgstr ""
  6435. "When checked it will display all the apertures.\n"
  6436. "When unchecked, it will delete all mark shapes\n"
  6437. "that are drawn on canvas."
  6438. #: flatcamGUI/ObjectUI.py:228
  6439. msgid "Code"
  6440. msgstr "Code"
  6441. #: flatcamGUI/ObjectUI.py:228 flatcamGUI/ObjectUI.py:959
  6442. #: flatcamGUI/ObjectUI.py:1517
  6443. msgid "Type"
  6444. msgstr "Type"
  6445. #: flatcamGUI/ObjectUI.py:228
  6446. msgid "Size"
  6447. msgstr "Size"
  6448. #: flatcamGUI/ObjectUI.py:228
  6449. msgid "Dim"
  6450. msgstr "Dim"
  6451. #: flatcamGUI/ObjectUI.py:232
  6452. msgid "Index"
  6453. msgstr "Index"
  6454. #: flatcamGUI/ObjectUI.py:234
  6455. msgid "Aperture Code"
  6456. msgstr "Aperture Code"
  6457. #: flatcamGUI/ObjectUI.py:236
  6458. msgid "Type of aperture: circular, rectangle, macros etc"
  6459. msgstr "Type of aperture: circular, rectangle, macros etc"
  6460. #: flatcamGUI/ObjectUI.py:238
  6461. msgid "Aperture Size:"
  6462. msgstr "Aperture Size:"
  6463. #: flatcamGUI/ObjectUI.py:240
  6464. msgid ""
  6465. "Aperture Dimensions:\n"
  6466. " - (width, height) for R, O type.\n"
  6467. " - (dia, nVertices) for P type"
  6468. msgstr ""
  6469. "Aperture Dimensions:\n"
  6470. " - (width, height) for R, O type.\n"
  6471. " - (dia, nVertices) for P type"
  6472. #: flatcamGUI/ObjectUI.py:244
  6473. msgid "Mark the aperture instances on canvas."
  6474. msgstr "Mark the aperture instances on canvas."
  6475. #: flatcamGUI/ObjectUI.py:252
  6476. msgid "Scale Factor:"
  6477. msgstr "Scale Factor:"
  6478. #: flatcamGUI/ObjectUI.py:267
  6479. msgid "Perform scaling operation on the selected apertures."
  6480. msgstr "Perform scaling operation on the selected apertures."
  6481. #: flatcamGUI/ObjectUI.py:273
  6482. msgid "Buffer Factor:"
  6483. msgstr "Buffer Factor:"
  6484. #: flatcamGUI/ObjectUI.py:286
  6485. msgid "Buffer"
  6486. msgstr "Buffer"
  6487. #: flatcamGUI/ObjectUI.py:288
  6488. msgid "Perform buffer operation on the selected apertures."
  6489. msgstr "Perform buffer operation on the selected apertures."
  6490. #: flatcamGUI/ObjectUI.py:296
  6491. msgid "<b>Generate new Gerber Object:</b>"
  6492. msgstr "<b>Generate new Gerber Object:</b>"
  6493. #: flatcamGUI/ObjectUI.py:298
  6494. msgid "Will generate a new Gerber object from the changed apertures."
  6495. msgstr "Will generate a new Gerber object from the changed apertures."
  6496. #: flatcamGUI/ObjectUI.py:304
  6497. msgid "Go"
  6498. msgstr "Go"
  6499. #: flatcamGUI/ObjectUI.py:306
  6500. msgid ""
  6501. "Will generate a new Gerber object from the changed apertures.\n"
  6502. "This new object can then be isolated etc."
  6503. msgstr ""
  6504. "Will generate a new Gerber object from the changed apertures.\n"
  6505. "This new object can then be isolated etc."
  6506. #: flatcamGUI/ObjectUI.py:333
  6507. msgid ""
  6508. "Diameter of the cutting tool.\n"
  6509. "If you want to have an isolation path\n"
  6510. "inside the actual shape of the Gerber\n"
  6511. "feature, use a negative value for\n"
  6512. "this parameter."
  6513. msgstr ""
  6514. "Diameter of the cutting tool.\n"
  6515. "If you want to have an isolation path\n"
  6516. "inside the actual shape of the Gerber\n"
  6517. "feature, use a negative value for\n"
  6518. "this parameter."
  6519. #: flatcamGUI/ObjectUI.py:344
  6520. msgid "Passes:"
  6521. msgstr "Passes:"
  6522. #: flatcamGUI/ObjectUI.py:378
  6523. msgid "Combine"
  6524. msgstr "Combine"
  6525. #: flatcamGUI/ObjectUI.py:394
  6526. msgid "<b>Generate Isolation Geometry:</b>"
  6527. msgstr "<b>Generate Isolation Geometry:</b>"
  6528. #: flatcamGUI/ObjectUI.py:396
  6529. msgid ""
  6530. "Create a Geometry object with toolpaths to cut \n"
  6531. "isolation outside, inside or on both sides of the\n"
  6532. "object. For a Gerber object outside means outside\n"
  6533. "of the Gerber feature and inside means inside of\n"
  6534. "the Gerber feature, if possible at all. This means\n"
  6535. "that only if the Gerber feature has openings inside, they\n"
  6536. "will be isolated. If what is wanted is to cut isolation\n"
  6537. "inside the actual Gerber feature, use a negative tool\n"
  6538. "diameter above."
  6539. msgstr ""
  6540. "Create a Geometry object with toolpaths to cut \n"
  6541. "isolation outside, inside or on both sides of the\n"
  6542. "object. For a Gerber object outside means outside\n"
  6543. "of the Gerber feature and inside means inside of\n"
  6544. "the Gerber feature, if possible at all. This means\n"
  6545. "that only if the Gerber feature has openings inside, they\n"
  6546. "will be isolated. If what is wanted is to cut isolation\n"
  6547. "inside the actual Gerber feature, use a negative tool\n"
  6548. "diameter above."
  6549. #: flatcamGUI/ObjectUI.py:415
  6550. msgid "FULL Geo"
  6551. msgstr "FULL Geo"
  6552. #: flatcamGUI/ObjectUI.py:417
  6553. msgid ""
  6554. "Create the Geometry Object\n"
  6555. "for isolation routing. It contains both\n"
  6556. "the interiors and exteriors geometry."
  6557. msgstr ""
  6558. "Create the Geometry Object\n"
  6559. "for isolation routing. It contains both\n"
  6560. "the interiors and exteriors geometry."
  6561. #: flatcamGUI/ObjectUI.py:426
  6562. msgid "Ext Geo"
  6563. msgstr "Ext Geo"
  6564. #: flatcamGUI/ObjectUI.py:428
  6565. msgid ""
  6566. "Create the Geometry Object\n"
  6567. "for isolation routing containing\n"
  6568. "only the exteriors geometry."
  6569. msgstr ""
  6570. "Create the Geometry Object\n"
  6571. "for isolation routing containing\n"
  6572. "only the exteriors geometry."
  6573. #: flatcamGUI/ObjectUI.py:435
  6574. msgid "Int Geo"
  6575. msgstr "Int Geo"
  6576. #: flatcamGUI/ObjectUI.py:437
  6577. msgid ""
  6578. "Create the Geometry Object\n"
  6579. "for isolation routing containing\n"
  6580. "only the interiors geometry."
  6581. msgstr ""
  6582. "Create the Geometry Object\n"
  6583. "for isolation routing containing\n"
  6584. "only the interiors geometry."
  6585. #: flatcamGUI/ObjectUI.py:455
  6586. msgid "<b>Clear N-copper:</b>"
  6587. msgstr "<b>Clear N-copper:</b>"
  6588. #: flatcamGUI/ObjectUI.py:465 flatcamTools/ToolNonCopperClear.py:239
  6589. msgid ""
  6590. "Create the Geometry Object\n"
  6591. "for non-copper routing."
  6592. msgstr ""
  6593. "Create the Geometry Object\n"
  6594. "for non-copper routing."
  6595. #: flatcamGUI/ObjectUI.py:471
  6596. msgid "<b>Board cutout:</b>"
  6597. msgstr "<b>Board cutout:</b>"
  6598. #: flatcamGUI/ObjectUI.py:479
  6599. msgid "Cutout Tool"
  6600. msgstr "Cutout Tool"
  6601. #: flatcamGUI/ObjectUI.py:481
  6602. msgid ""
  6603. "Generate the geometry for\n"
  6604. "the board cutout."
  6605. msgstr ""
  6606. "Generate the geometry for\n"
  6607. "the board cutout."
  6608. #: flatcamGUI/ObjectUI.py:487
  6609. msgid "<b>Non-copper regions:</b>"
  6610. msgstr "<b>Non-copper regions:</b>"
  6611. #: flatcamGUI/ObjectUI.py:489
  6612. msgid ""
  6613. "Create polygons covering the\n"
  6614. "areas without copper on the PCB.\n"
  6615. "Equivalent to the inverse of this\n"
  6616. "object. Can be used to remove all\n"
  6617. "copper from a specified region."
  6618. msgstr ""
  6619. "Create polygons covering the\n"
  6620. "areas without copper on the PCB.\n"
  6621. "Equivalent to the inverse of this\n"
  6622. "object. Can be used to remove all\n"
  6623. "copper from a specified region."
  6624. #: flatcamGUI/ObjectUI.py:514 flatcamGUI/ObjectUI.py:545
  6625. msgid "Rounded Geo"
  6626. msgstr "Rounded Geo"
  6627. #: flatcamGUI/ObjectUI.py:516
  6628. msgid "Resulting geometry will have rounded corners."
  6629. msgstr "Resulting geometry will have rounded corners."
  6630. #: flatcamGUI/ObjectUI.py:521 flatcamGUI/ObjectUI.py:555
  6631. #: flatcamTools/ToolCutOut.py:159 flatcamTools/ToolCutOut.py:179
  6632. #: flatcamTools/ToolCutOut.py:230 flatcamTools/ToolSolderPaste.py:127
  6633. msgid "Generate Geo"
  6634. msgstr "Generate Geo"
  6635. #: flatcamGUI/ObjectUI.py:527
  6636. msgid ""
  6637. "Create a geometry surrounding the Gerber object.\n"
  6638. "Square shape."
  6639. msgstr ""
  6640. "Create a geometry surrounding the Gerber object.\n"
  6641. "Square shape."
  6642. #: flatcamGUI/ObjectUI.py:557
  6643. msgid "Generate the Geometry object."
  6644. msgstr "Generate the Geometry object."
  6645. #: flatcamGUI/ObjectUI.py:568
  6646. msgid "Excellon Object"
  6647. msgstr "Excellon Object"
  6648. #: flatcamGUI/ObjectUI.py:579
  6649. msgid "Solid circles."
  6650. msgstr "Solid circles."
  6651. #: flatcamGUI/ObjectUI.py:607 flatcamGUI/ObjectUI.py:926
  6652. msgid "<b>Tools Table</b>"
  6653. msgstr "<b>Tools Table</b>"
  6654. #: flatcamGUI/ObjectUI.py:628
  6655. msgid "Offset Z"
  6656. msgstr "Offset Z"
  6657. #: flatcamGUI/ObjectUI.py:632
  6658. msgid ""
  6659. "This is the Tool Number.\n"
  6660. "When ToolChange is checked, on toolchange event this value\n"
  6661. "will be showed as a T1, T2 ... Tn in the Machine Code."
  6662. msgstr ""
  6663. "This is the Tool Number.\n"
  6664. "When ToolChange is checked, on toolchange event this value\n"
  6665. "will be showed as a T1, T2 ... Tn in the Machine Code."
  6666. #: flatcamGUI/ObjectUI.py:636 flatcamGUI/ObjectUI.py:972
  6667. #: flatcamTools/ToolNonCopperClear.py:96 flatcamTools/ToolPaint.py:94
  6668. msgid ""
  6669. "Tool Diameter. It's value (in current FlatCAM units) \n"
  6670. "is the cut width into the material."
  6671. msgstr ""
  6672. "Tool Diameter. It's value (in current FlatCAM units) \n"
  6673. "is the cut width into the material."
  6674. #: flatcamGUI/ObjectUI.py:639
  6675. msgid ""
  6676. "The number of Drill holes. Holes that are drilled with\n"
  6677. "a drill bit."
  6678. msgstr ""
  6679. "The number of Drill holes. Holes that are drilled with\n"
  6680. "a drill bit."
  6681. #: flatcamGUI/ObjectUI.py:642
  6682. msgid ""
  6683. "The number of Slot holes. Holes that are created by\n"
  6684. "milling them with an endmill bit."
  6685. msgstr ""
  6686. "The number of Slot holes. Holes that are created by\n"
  6687. "milling them with an endmill bit."
  6688. #: flatcamGUI/ObjectUI.py:649
  6689. msgid "Toggle display of the drills for the current tool."
  6690. msgstr "Toggle display of the drills for the current tool."
  6691. #: flatcamGUI/ObjectUI.py:657
  6692. msgid ""
  6693. "Create a CNC Job object\n"
  6694. "for this drill object."
  6695. msgstr ""
  6696. "Create a CNC Job object\n"
  6697. "for this drill object."
  6698. #: flatcamGUI/ObjectUI.py:686 flatcamGUI/ObjectUI.py:1186
  6699. msgid "Tool change"
  6700. msgstr "Tool change"
  6701. #: flatcamGUI/ObjectUI.py:694 flatcamGUI/ObjectUI.py:1179
  6702. msgid "Tool change Z:"
  6703. msgstr "Tool change Z:"
  6704. #: flatcamGUI/ObjectUI.py:696 flatcamGUI/ObjectUI.py:1182
  6705. msgid ""
  6706. "Z-axis position (height) for\n"
  6707. "tool change."
  6708. msgstr ""
  6709. "Z-axis position (height) for\n"
  6710. "tool change."
  6711. #: flatcamGUI/ObjectUI.py:707
  6712. msgid ""
  6713. "Tool height just before starting the work.\n"
  6714. "Delete the value if you don't need this feature."
  6715. msgstr ""
  6716. "Tool height just before starting the work.\n"
  6717. "Delete the value if you don't need this feature."
  6718. #: flatcamGUI/ObjectUI.py:717
  6719. msgid ""
  6720. "Z-axis position (height) for\n"
  6721. "the last move."
  6722. msgstr ""
  6723. "Z-axis position (height) for\n"
  6724. "the last move."
  6725. #: flatcamGUI/ObjectUI.py:725
  6726. msgid "Feedrate (Plunge):"
  6727. msgstr "Feedrate (Plunge):"
  6728. #: flatcamGUI/ObjectUI.py:727
  6729. msgid ""
  6730. "Tool speed while drilling\n"
  6731. "(in units per minute).\n"
  6732. "This is for linear move G01."
  6733. msgstr ""
  6734. "Tool speed while drilling\n"
  6735. "(in units per minute).\n"
  6736. "This is for linear move G01."
  6737. #: flatcamGUI/ObjectUI.py:777
  6738. msgid ""
  6739. "The json file that dictates\n"
  6740. "gcode output."
  6741. msgstr ""
  6742. "The json file that dictates\n"
  6743. "gcode output."
  6744. #: flatcamGUI/ObjectUI.py:809
  6745. msgid ""
  6746. "Select from the Tools Table above\n"
  6747. "the tools you want to include."
  6748. msgstr ""
  6749. "Select from the Tools Table above\n"
  6750. "the tools you want to include."
  6751. #: flatcamGUI/ObjectUI.py:816
  6752. msgid "<b>Type: </b>"
  6753. msgstr "<b>Type: </b>"
  6754. #: flatcamGUI/ObjectUI.py:818
  6755. msgid ""
  6756. "Choose what to use for GCode generation:\n"
  6757. "'Drills', 'Slots' or 'Both'.\n"
  6758. "When choosing 'Slots' or 'Both', slots will be\n"
  6759. "converted to a series of drills."
  6760. msgstr ""
  6761. "Choose what to use for GCode generation:\n"
  6762. "'Drills', 'Slots' or 'Both'.\n"
  6763. "When choosing 'Slots' or 'Both', slots will be\n"
  6764. "converted to a series of drills."
  6765. #: flatcamGUI/ObjectUI.py:833
  6766. msgid "Create GCode"
  6767. msgstr "Create GCode"
  6768. #: flatcamGUI/ObjectUI.py:835
  6769. msgid "Generate the CNC Job."
  6770. msgstr "Generate the CNC Job."
  6771. #: flatcamGUI/ObjectUI.py:847
  6772. msgid ""
  6773. "Select from the Tools Table above\n"
  6774. " the hole dias that are to be milled."
  6775. msgstr ""
  6776. "Select from the Tools Table above\n"
  6777. " the hole dias that are to be milled."
  6778. #: flatcamGUI/ObjectUI.py:854
  6779. msgid "Drills Tool dia:"
  6780. msgstr "Drills Tool dia:"
  6781. #: flatcamGUI/ObjectUI.py:861
  6782. msgid "Mill Drills Geo"
  6783. msgstr "Mill Drills Geo"
  6784. #: flatcamGUI/ObjectUI.py:863
  6785. msgid ""
  6786. "Create the Geometry Object\n"
  6787. "for milling DRILLS toolpaths."
  6788. msgstr ""
  6789. "Create the Geometry Object\n"
  6790. "for milling DRILLS toolpaths."
  6791. #: flatcamGUI/ObjectUI.py:870
  6792. msgid "Slots Tool dia:"
  6793. msgstr "Slots Tool dia:"
  6794. #: flatcamGUI/ObjectUI.py:877
  6795. msgid "Mill Slots Geo"
  6796. msgstr "Mill Slots Geo"
  6797. #: flatcamGUI/ObjectUI.py:879
  6798. msgid ""
  6799. "Create the Geometry Object\n"
  6800. "for milling SLOTS toolpaths."
  6801. msgstr ""
  6802. "Create the Geometry Object\n"
  6803. "for milling SLOTS toolpaths."
  6804. #: flatcamGUI/ObjectUI.py:897
  6805. msgid "Geometry Object"
  6806. msgstr "Geometry Object"
  6807. #: flatcamGUI/ObjectUI.py:928
  6808. msgid ""
  6809. "Tools in this Geometry object used for cutting.\n"
  6810. "The 'Offset' entry will set an offset for the cut.\n"
  6811. "'Offset' can be inside, outside, on path (none) and custom.\n"
  6812. "'Type' entry is only informative and it allow to know the \n"
  6813. "intent of using the current tool. \n"
  6814. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  6815. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  6816. "ball(B), or V-Shaped(V). \n"
  6817. "When V-shaped is selected the 'Type' entry is automatically \n"
  6818. "set to Isolation, the CutZ parameter in the UI form is\n"
  6819. "grayed out and Cut Z is automatically calculated from the newly \n"
  6820. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  6821. msgstr ""
  6822. "Tools in this Geometry object used for cutting.\n"
  6823. "The 'Offset' entry will set an offset for the cut.\n"
  6824. "'Offset' can be inside, outside, on path (none) and custom.\n"
  6825. "'Type' entry is only informative and it allow to know the \n"
  6826. "intent of using the current tool. \n"
  6827. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  6828. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  6829. "ball(B), or V-Shaped(V). \n"
  6830. "When V-shaped is selected the 'Type' entry is automatically \n"
  6831. "set to Isolation, the CutZ parameter in the UI form is\n"
  6832. "grayed out and Cut Z is automatically calculated from the newly \n"
  6833. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  6834. #: flatcamGUI/ObjectUI.py:959 flatcamGUI/ObjectUI.py:1517
  6835. msgid "Dia"
  6836. msgstr "Dia"
  6837. #: flatcamGUI/ObjectUI.py:959 flatcamGUI/ObjectUI.py:1517
  6838. msgid "TT"
  6839. msgstr "TT"
  6840. #: flatcamGUI/ObjectUI.py:966
  6841. msgid ""
  6842. "This is the Tool Number.\n"
  6843. "When ToolChange is checked, on toolchange event this value\n"
  6844. "will be showed as a T1, T2 ... Tn"
  6845. msgstr ""
  6846. "This is the Tool Number.\n"
  6847. "When ToolChange is checked, on toolchange event this value\n"
  6848. "will be showed as a T1, T2 ... Tn"
  6849. #: flatcamGUI/ObjectUI.py:977
  6850. msgid ""
  6851. "The value for the Offset can be:\n"
  6852. "- Path -> There is no offset, the tool cut will be done through the geometry "
  6853. "line.\n"
  6854. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  6855. "'pocket'.\n"
  6856. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  6857. msgstr ""
  6858. "The value for the Offset can be:\n"
  6859. "- Path -> There is no offset, the tool cut will be done through the geometry "
  6860. "line.\n"
  6861. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  6862. "'pocket'.\n"
  6863. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  6864. #: flatcamGUI/ObjectUI.py:984
  6865. msgid ""
  6866. "The (Operation) Type has only informative value. Usually the UI form "
  6867. "values \n"
  6868. "are choosed based on the operation type and this will serve as a reminder.\n"
  6869. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  6870. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  6871. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  6872. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  6873. "tip."
  6874. msgstr ""
  6875. "The (Operation) Type has only informative value. Usually the UI form "
  6876. "values \n"
  6877. "are choosed based on the operation type and this will serve as a reminder.\n"
  6878. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  6879. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  6880. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  6881. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  6882. "tip."
  6883. #: flatcamGUI/ObjectUI.py:993
  6884. msgid ""
  6885. "The Tool Type (TT) can be:\n"
  6886. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  6887. "cut width in material\n"
  6888. "is exactly the tool diameter.\n"
  6889. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  6890. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  6891. "two additional UI form\n"
  6892. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  6893. "the Z-Cut parameter such\n"
  6894. "as the cut width into material will be equal with the value in the Tool "
  6895. "Diameter column of this table.\n"
  6896. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  6897. "as Isolation."
  6898. msgstr ""
  6899. "The Tool Type (TT) can be:\n"
  6900. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  6901. "cut width in material\n"
  6902. "is exactly the tool diameter.\n"
  6903. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  6904. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  6905. "two additional UI form\n"
  6906. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  6907. "the Z-Cut parameter such\n"
  6908. "as the cut width into material will be equal with the value in the Tool "
  6909. "Diameter column of this table.\n"
  6910. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  6911. "as Isolation."
  6912. #: flatcamGUI/ObjectUI.py:1004
  6913. msgid ""
  6914. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  6915. "that holds the geometry\n"
  6916. "data into the tools. For those geometries, deleting the tool will delete the "
  6917. "geometry data also,\n"
  6918. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  6919. "plot on canvas\n"
  6920. "for the corresponding tool."
  6921. msgstr ""
  6922. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  6923. "that holds the geometry\n"
  6924. "data into the tools. For those geometries, deleting the tool will delete the "
  6925. "geometry data also,\n"
  6926. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  6927. "plot on canvas\n"
  6928. "for the corresponding tool."
  6929. #: flatcamGUI/ObjectUI.py:1017
  6930. msgid "Tool Offset:"
  6931. msgstr "Tool Offset:"
  6932. #: flatcamGUI/ObjectUI.py:1020
  6933. msgid ""
  6934. "The value to offset the cut when \n"
  6935. "the Offset type selected is 'Offset'.\n"
  6936. "The value can be positive for 'outside'\n"
  6937. "cut and negative for 'inside' cut."
  6938. msgstr ""
  6939. "The value to offset the cut when \n"
  6940. "the Offset type selected is 'Offset'.\n"
  6941. "The value can be positive for 'outside'\n"
  6942. "cut and negative for 'inside' cut."
  6943. #: flatcamGUI/ObjectUI.py:1043
  6944. msgid "<b>Tool Dia:</b>"
  6945. msgstr "<b>Tool Dia:</b>"
  6946. #: flatcamGUI/ObjectUI.py:1062 flatcamTools/ToolNonCopperClear.py:135
  6947. #: flatcamTools/ToolPaint.py:133
  6948. msgid ""
  6949. "Add a new tool to the Tool Table\n"
  6950. "with the diameter specified above."
  6951. msgstr ""
  6952. "Add a new tool to the Tool Table\n"
  6953. "with the diameter specified above."
  6954. #: flatcamGUI/ObjectUI.py:1070
  6955. msgid ""
  6956. "Copy a selection of tools in the Tool Table\n"
  6957. "by first selecting a row in the Tool Table."
  6958. msgstr ""
  6959. "Copy a selection of tools in the Tool Table\n"
  6960. "by first selecting a row in the Tool Table."
  6961. #: flatcamGUI/ObjectUI.py:1078
  6962. msgid ""
  6963. "Delete a selection of tools in the Tool Table\n"
  6964. "by first selecting a row in the Tool Table."
  6965. msgstr ""
  6966. "Delete a selection of tools in the Tool Table\n"
  6967. "by first selecting a row in the Tool Table."
  6968. #: flatcamGUI/ObjectUI.py:1094
  6969. msgid "<b>Tool Data</b>"
  6970. msgstr "<b>Tool Data</b>"
  6971. #: flatcamGUI/ObjectUI.py:1097
  6972. msgid ""
  6973. "The data used for creating GCode.\n"
  6974. "Each tool store it's own set of such data."
  6975. msgstr ""
  6976. "The data used for creating GCode.\n"
  6977. "Each tool store it's own set of such data."
  6978. #: flatcamGUI/ObjectUI.py:1107
  6979. msgid "V-Tip Dia:"
  6980. msgstr "V-Tip Dia:"
  6981. #: flatcamGUI/ObjectUI.py:1110
  6982. msgid "The tip diameter for V-Shape Tool"
  6983. msgstr "The tip diameter for V-Shape Tool"
  6984. #: flatcamGUI/ObjectUI.py:1118
  6985. msgid "V-Tip Angle:"
  6986. msgstr "V-Tip Angle:"
  6987. #: flatcamGUI/ObjectUI.py:1121
  6988. msgid ""
  6989. "The tip angle for V-Shape Tool.\n"
  6990. "In degree."
  6991. msgstr ""
  6992. "The tip angle for V-Shape Tool.\n"
  6993. "In degree."
  6994. #: flatcamGUI/ObjectUI.py:1142
  6995. msgid "Multi-Depth:"
  6996. msgstr "Multi-Depth:"
  6997. #: flatcamGUI/ObjectUI.py:1145
  6998. msgid ""
  6999. "Use multiple passes to limit\n"
  7000. "the cut depth in each pass. Will\n"
  7001. "cut multiple times until Cut Z is\n"
  7002. "reached.\n"
  7003. "To the right, input the depth of \n"
  7004. "each pass (positive value)."
  7005. msgstr ""
  7006. "Use multiple passes to limit\n"
  7007. "the cut depth in each pass. Will\n"
  7008. "cut multiple times until Cut Z is\n"
  7009. "reached.\n"
  7010. "To the right, input the depth of \n"
  7011. "each pass (positive value)."
  7012. #: flatcamGUI/ObjectUI.py:1158
  7013. msgid "Depth of each pass (positive)."
  7014. msgstr "Depth of each pass (positive)."
  7015. #: flatcamGUI/ObjectUI.py:1189
  7016. msgid ""
  7017. "Include tool-change sequence\n"
  7018. "in the Machine Code (Pause for tool change)."
  7019. msgstr ""
  7020. "Include tool-change sequence\n"
  7021. "in the Machine Code (Pause for tool change)."
  7022. #: flatcamGUI/ObjectUI.py:1215
  7023. msgid ""
  7024. "This is the height (Z) at which the CNC\n"
  7025. "will go as the last move."
  7026. msgstr ""
  7027. "This is the height (Z) at which the CNC\n"
  7028. "will go as the last move."
  7029. #: flatcamGUI/ObjectUI.py:1236
  7030. msgid "Feed Rate Z (Plunge):"
  7031. msgstr "Feed Rate Z (Plunge):"
  7032. #: flatcamGUI/ObjectUI.py:1239
  7033. msgid ""
  7034. "Cutting speed in the Z\n"
  7035. "plane in units per minute"
  7036. msgstr ""
  7037. "Cutting speed in the Z\n"
  7038. "plane in units per minute"
  7039. #: flatcamGUI/ObjectUI.py:1248
  7040. msgid "Feed Rate Rapids:"
  7041. msgstr "Feed Rate Rapids:"
  7042. #: flatcamGUI/ObjectUI.py:1251
  7043. msgid ""
  7044. "Cutting speed in the XY\n"
  7045. "plane in units per minute\n"
  7046. "(in units per minute).\n"
  7047. "This is for the rapid move G00.\n"
  7048. "It is useful only for Marlin,\n"
  7049. "ignore for any other cases."
  7050. msgstr ""
  7051. "Cutting speed in the XY\n"
  7052. "plane in units per minute\n"
  7053. "(in units per minute).\n"
  7054. "This is for the rapid move G00.\n"
  7055. "It is useful only for Marlin,\n"
  7056. "ignore for any other cases."
  7057. #: flatcamGUI/ObjectUI.py:1264
  7058. msgid "Cut over 1st pt"
  7059. msgstr "Cut over 1st pt"
  7060. #: flatcamGUI/ObjectUI.py:1279
  7061. msgid ""
  7062. "Speed of the spindle in RPM (optional).\n"
  7063. "If LASER postprocessor is used,\n"
  7064. "this value is the power of laser."
  7065. msgstr ""
  7066. "Speed of the spindle in RPM (optional).\n"
  7067. "If LASER postprocessor is used,\n"
  7068. "this value is the power of laser."
  7069. #: flatcamGUI/ObjectUI.py:1308
  7070. msgid "PostProcessor:"
  7071. msgstr "PostProcessor:"
  7072. #: flatcamGUI/ObjectUI.py:1311
  7073. msgid ""
  7074. "The Postprocessor file that dictates\n"
  7075. "the Machine Code (like GCode, RML, HPGL) output."
  7076. msgstr ""
  7077. "The Postprocessor file that dictates\n"
  7078. "the Machine Code (like GCode, RML, HPGL) output."
  7079. #: flatcamGUI/ObjectUI.py:1349
  7080. msgid ""
  7081. "Add at least one tool in the tool-table.\n"
  7082. "Click the header to select all, or Ctrl + LMB\n"
  7083. "for custom selection of tools."
  7084. msgstr ""
  7085. "Add at least one tool in the tool-table.\n"
  7086. "Click the header to select all, or Ctrl + LMB\n"
  7087. "for custom selection of tools."
  7088. #: flatcamGUI/ObjectUI.py:1356
  7089. msgid "Generate"
  7090. msgstr "Generate"
  7091. #: flatcamGUI/ObjectUI.py:1359
  7092. msgid "Generate the CNC Job object."
  7093. msgstr "Generate the CNC Job object."
  7094. #: flatcamGUI/ObjectUI.py:1367
  7095. msgid "<b>Paint Area:</b>"
  7096. msgstr "<b>Paint Area:</b>"
  7097. #: flatcamGUI/ObjectUI.py:1382
  7098. msgid "Launch Paint Tool in Tools Tab."
  7099. msgstr "Launch Paint Tool in Tools Tab."
  7100. #: flatcamGUI/ObjectUI.py:1399
  7101. msgid "CNC Job Object"
  7102. msgstr "CNC Job Object"
  7103. #: flatcamGUI/ObjectUI.py:1418
  7104. msgid "<b>Plot kind:</b>"
  7105. msgstr "<b>Plot kind:</b>"
  7106. #: flatcamGUI/ObjectUI.py:1443
  7107. msgid "<b>Travelled dist.:</b>"
  7108. msgstr "<b>Travelled dist.:</b>"
  7109. #: flatcamGUI/ObjectUI.py:1446 flatcamGUI/ObjectUI.py:1453
  7110. msgid ""
  7111. "This is the total travelled distance on X-Y plane.\n"
  7112. "In current units."
  7113. msgstr ""
  7114. "This is the total travelled distance on X-Y plane.\n"
  7115. "In current units."
  7116. #: flatcamGUI/ObjectUI.py:1481
  7117. msgid "<b>CNC Tools Table</b>"
  7118. msgstr "<b>CNC Tools Table</b>"
  7119. #: flatcamGUI/ObjectUI.py:1484
  7120. msgid ""
  7121. "Tools in this CNCJob object used for cutting.\n"
  7122. "The tool diameter is used for plotting on canvas.\n"
  7123. "The 'Offset' entry will set an offset for the cut.\n"
  7124. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7125. "'Type' entry is only informative and it allow to know the \n"
  7126. "intent of using the current tool. \n"
  7127. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7128. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7129. "ball(B), or V-Shaped(V)."
  7130. msgstr ""
  7131. "Tools in this CNCJob object used for cutting.\n"
  7132. "The tool diameter is used for plotting on canvas.\n"
  7133. "The 'Offset' entry will set an offset for the cut.\n"
  7134. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7135. "'Type' entry is only informative and it allow to know the \n"
  7136. "intent of using the current tool. \n"
  7137. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7138. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7139. "ball(B), or V-Shaped(V)."
  7140. #: flatcamGUI/ObjectUI.py:1518
  7141. msgid "P"
  7142. msgstr "P"
  7143. #: flatcamGUI/ObjectUI.py:1524
  7144. msgid "Update Plot"
  7145. msgstr "Update Plot"
  7146. #: flatcamGUI/ObjectUI.py:1526
  7147. msgid "Update the plot."
  7148. msgstr "Update the plot."
  7149. #: flatcamGUI/ObjectUI.py:1533
  7150. msgid "<b>Export CNC Code:</b>"
  7151. msgstr "<b>Export CNC Code:</b>"
  7152. #: flatcamGUI/ObjectUI.py:1541
  7153. msgid "Prepend to CNC Code:"
  7154. msgstr "Prepend to CNC Code:"
  7155. #: flatcamGUI/ObjectUI.py:1544
  7156. msgid ""
  7157. "Type here any G-Code commands you would\n"
  7158. "like to add to the beginning of the generated file."
  7159. msgstr ""
  7160. "Type here any G-Code commands you would\n"
  7161. "like to add to the beginning of the generated file."
  7162. #: flatcamGUI/ObjectUI.py:1554
  7163. msgid "Append to CNC Code"
  7164. msgstr "Append to CNC Code"
  7165. #: flatcamGUI/ObjectUI.py:1578
  7166. msgid ""
  7167. "Type here any G-Code commands you would\n"
  7168. "like to be executed when Toolchange event is encountered.\n"
  7169. "This will constitute a Custom Toolchange GCode,\n"
  7170. "or a Toolchange Macro.\n"
  7171. "The FlatCAM variables are surrounded by '%' symbol.\n"
  7172. "\n"
  7173. "WARNING: it can be used only with a postprocessor file\n"
  7174. "that has 'toolchange_custom' in it's name and this is built\n"
  7175. "having as template the 'Toolchange Custom' posprocessor file."
  7176. msgstr ""
  7177. "Type here any G-Code commands you would\n"
  7178. "like to be executed when Toolchange event is encountered.\n"
  7179. "This will constitute a Custom Toolchange GCode,\n"
  7180. "or a Toolchange Macro.\n"
  7181. "The FlatCAM variables are surrounded by '%' symbol.\n"
  7182. "\n"
  7183. "WARNING: it can be used only with a postprocessor file\n"
  7184. "that has 'toolchange_custom' in it's name and this is built\n"
  7185. "having as template the 'Toolchange Custom' posprocessor file."
  7186. #: flatcamGUI/ObjectUI.py:1634
  7187. msgid "z_cut = depth where to cut"
  7188. msgstr "z_cut = depth where to cut"
  7189. #: flatcamGUI/ObjectUI.py:1635
  7190. msgid "z_move = height where to travel"
  7191. msgstr "z_move = height where to travel"
  7192. #: flatcamGUI/ObjectUI.py:1656
  7193. msgid "View CNC Code"
  7194. msgstr "View CNC Code"
  7195. #: flatcamGUI/ObjectUI.py:1659
  7196. msgid ""
  7197. "Opens TAB to view/modify/print G-Code\n"
  7198. "file."
  7199. msgstr ""
  7200. "Opens TAB to view/modify/print G-Code\n"
  7201. "file."
  7202. #: flatcamGUI/ObjectUI.py:1665
  7203. msgid "Save CNC Code"
  7204. msgstr "Save CNC Code"
  7205. #: flatcamGUI/ObjectUI.py:1668
  7206. msgid ""
  7207. "Opens dialog to save G-Code\n"
  7208. "file."
  7209. msgstr ""
  7210. "Opens dialog to save G-Code\n"
  7211. "file."
  7212. #: flatcamTools/ToolCalculators.py:24
  7213. msgid "Calculators"
  7214. msgstr "Calculators"
  7215. #: flatcamTools/ToolCalculators.py:25
  7216. msgid "V-Shape Tool Calculator"
  7217. msgstr "V-Shape Tool Calculator"
  7218. #: flatcamTools/ToolCalculators.py:26
  7219. msgid "Units Calculator"
  7220. msgstr "Units Calculator"
  7221. #: flatcamTools/ToolCalculators.py:27
  7222. msgid "ElectroPlating Calculator"
  7223. msgstr "ElectroPlating Calculator"
  7224. #: flatcamTools/ToolCalculators.py:68
  7225. msgid "Here you enter the value to be converted from INCH to MM"
  7226. msgstr "Here you enter the value to be converted from INCH to MM"
  7227. #: flatcamTools/ToolCalculators.py:73
  7228. msgid "Here you enter the value to be converted from MM to INCH"
  7229. msgstr "Here you enter the value to be converted from MM to INCH"
  7230. #: flatcamTools/ToolCalculators.py:98
  7231. msgid ""
  7232. "This is the diameter of the tool tip.\n"
  7233. "The manufacturer specifies it."
  7234. msgstr ""
  7235. "This is the diameter of the tool tip.\n"
  7236. "The manufacturer specifies it."
  7237. #: flatcamTools/ToolCalculators.py:101
  7238. msgid "Tip Angle:"
  7239. msgstr "Tip Angle:"
  7240. #: flatcamTools/ToolCalculators.py:105
  7241. msgid ""
  7242. "This is the angle of the tip of the tool.\n"
  7243. "It is specified by manufacturer."
  7244. msgstr ""
  7245. "This is the angle of the tip of the tool.\n"
  7246. "It is specified by manufacturer."
  7247. #: flatcamTools/ToolCalculators.py:112
  7248. msgid ""
  7249. "This is the depth to cut into the material.\n"
  7250. "In the CNCJob is the CutZ parameter."
  7251. msgstr ""
  7252. "This is the depth to cut into the material.\n"
  7253. "In the CNCJob is the CutZ parameter."
  7254. #: flatcamTools/ToolCalculators.py:115
  7255. msgid "Tool Diameter:"
  7256. msgstr "Tool Diameter:"
  7257. #: flatcamTools/ToolCalculators.py:119
  7258. msgid ""
  7259. "This is the tool diameter to be entered into\n"
  7260. "FlatCAM Gerber section.\n"
  7261. "In the CNCJob section it is called >Tool dia<."
  7262. msgstr ""
  7263. "This is the tool diameter to be entered into\n"
  7264. "FlatCAM Gerber section.\n"
  7265. "In the CNCJob section it is called >Tool dia<."
  7266. #: flatcamTools/ToolCalculators.py:131 flatcamTools/ToolCalculators.py:214
  7267. msgid "Calculate"
  7268. msgstr "Calculate"
  7269. #: flatcamTools/ToolCalculators.py:134
  7270. msgid ""
  7271. "Calculate either the Cut Z or the effective tool diameter,\n"
  7272. " depending on which is desired and which is known. "
  7273. msgstr ""
  7274. "Calculate either the Cut Z or the effective tool diameter,\n"
  7275. " depending on which is desired and which is known. "
  7276. #: flatcamTools/ToolCalculators.py:190
  7277. msgid "Current Value:"
  7278. msgstr "Current Value:"
  7279. #: flatcamTools/ToolCalculators.py:194
  7280. msgid ""
  7281. "This is the current intensity value\n"
  7282. "to be set on the Power Supply. In Amps."
  7283. msgstr ""
  7284. "This is the current intensity value\n"
  7285. "to be set on the Power Supply. In Amps."
  7286. #: flatcamTools/ToolCalculators.py:198
  7287. msgid "Time:"
  7288. msgstr "Time:"
  7289. #: flatcamTools/ToolCalculators.py:202
  7290. msgid ""
  7291. "This is the calculated time required for the procedure.\n"
  7292. "In minutes."
  7293. msgstr ""
  7294. "This is the calculated time required for the procedure.\n"
  7295. "In minutes."
  7296. #: flatcamTools/ToolCalculators.py:217
  7297. msgid ""
  7298. "Calculate the current intensity value and the procedure time,\n"
  7299. " depending on the parameters above"
  7300. msgstr ""
  7301. "Calculate the current intensity value and the procedure time,\n"
  7302. " depending on the parameters above"
  7303. #: flatcamTools/ToolCutOut.py:17
  7304. msgid "Cutout PCB"
  7305. msgstr "Cutout PCB"
  7306. #: flatcamTools/ToolCutOut.py:53
  7307. msgid "Obj Type:"
  7308. msgstr "Obj Type:"
  7309. #: flatcamTools/ToolCutOut.py:55
  7310. msgid ""
  7311. "Specify the type of object to be cutout.\n"
  7312. "It can be of type: Gerber or Geometry.\n"
  7313. "What is selected here will dictate the kind\n"
  7314. "of objects that will populate the 'Object' combobox."
  7315. msgstr ""
  7316. "Specify the type of object to be cutout.\n"
  7317. "It can be of type: Gerber or Geometry.\n"
  7318. "What is selected here will dictate the kind\n"
  7319. "of objects that will populate the 'Object' combobox."
  7320. #: flatcamTools/ToolCutOut.py:69 flatcamTools/ToolPanelize.py:71
  7321. msgid "Object:"
  7322. msgstr "Object:"
  7323. #: flatcamTools/ToolCutOut.py:71
  7324. msgid "Object to be cutout. "
  7325. msgstr "Object to be cutout. "
  7326. #: flatcamTools/ToolCutOut.py:79
  7327. msgid ""
  7328. "Diameter of the tool used to cutout\n"
  7329. "the PCB shape out of the surrounding material."
  7330. msgstr ""
  7331. "Diameter of the tool used to cutout\n"
  7332. "the PCB shape out of the surrounding material."
  7333. #: flatcamTools/ToolCutOut.py:88
  7334. msgid ""
  7335. "Margin over bounds. A positive value here\n"
  7336. "will make the cutout of the PCB further from\n"
  7337. "the actual PCB border"
  7338. msgstr ""
  7339. "Margin over bounds. A positive value here\n"
  7340. "will make the cutout of the PCB further from\n"
  7341. "the actual PCB border"
  7342. #: flatcamTools/ToolCutOut.py:98
  7343. msgid ""
  7344. "The size of the bridge gaps in the cutout\n"
  7345. "used to keep the board connected to\n"
  7346. "the surrounding material (the one \n"
  7347. "from which the PCB is cutout)."
  7348. msgstr ""
  7349. "The size of the bridge gaps in the cutout\n"
  7350. "used to keep the board connected to\n"
  7351. "the surrounding material (the one \n"
  7352. "from which the PCB is cutout)."
  7353. #: flatcamTools/ToolCutOut.py:114
  7354. msgid "A. Automatic Bridge Gaps"
  7355. msgstr "A. Automatic Bridge Gaps"
  7356. #: flatcamTools/ToolCutOut.py:116
  7357. msgid "This section handle creation of automatic bridge gaps."
  7358. msgstr "This section handle creation of automatic bridge gaps."
  7359. #: flatcamTools/ToolCutOut.py:127
  7360. msgid ""
  7361. "Number of gaps used for the Automatic cutout.\n"
  7362. "There can be maximum 8 bridges/gaps.\n"
  7363. "The choices are:\n"
  7364. "- lr - left + right\n"
  7365. "- tb - top + bottom\n"
  7366. "- 4 - left + right +top + bottom\n"
  7367. "- 2lr - 2*left + 2*right\n"
  7368. "- 2tb - 2*top + 2*bottom\n"
  7369. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7370. msgstr ""
  7371. "Number of gaps used for the Automatic cutout.\n"
  7372. "There can be maximum 8 bridges/gaps.\n"
  7373. "The choices are:\n"
  7374. "- lr - left + right\n"
  7375. "- tb - top + bottom\n"
  7376. "- 4 - left + right +top + bottom\n"
  7377. "- 2lr - 2*left + 2*right\n"
  7378. "- 2tb - 2*top + 2*bottom\n"
  7379. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7380. #: flatcamTools/ToolCutOut.py:150
  7381. msgid "FreeForm:"
  7382. msgstr "FreeForm:"
  7383. #: flatcamTools/ToolCutOut.py:152
  7384. msgid ""
  7385. "The cutout shape can be of ny shape.\n"
  7386. "Useful when the PCB has a non-rectangular shape."
  7387. msgstr ""
  7388. "The cutout shape can be of ny shape.\n"
  7389. "Useful when the PCB has a non-rectangular shape."
  7390. #: flatcamTools/ToolCutOut.py:161
  7391. msgid ""
  7392. "Cutout the selected object.\n"
  7393. "The cutout shape can be of any shape.\n"
  7394. "Useful when the PCB has a non-rectangular shape."
  7395. msgstr ""
  7396. "Cutout the selected object.\n"
  7397. "The cutout shape can be of any shape.\n"
  7398. "Useful when the PCB has a non-rectangular shape."
  7399. #: flatcamTools/ToolCutOut.py:170
  7400. msgid "Rectangular:"
  7401. msgstr "Rectangular:"
  7402. #: flatcamTools/ToolCutOut.py:172
  7403. msgid ""
  7404. "The resulting cutout shape is\n"
  7405. "always a rectangle shape and it will be\n"
  7406. "the bounding box of the Object."
  7407. msgstr ""
  7408. "The resulting cutout shape is\n"
  7409. "always a rectangle shape and it will be\n"
  7410. "the bounding box of the Object."
  7411. #: flatcamTools/ToolCutOut.py:181
  7412. msgid ""
  7413. "Cutout the selected object.\n"
  7414. "The resulting cutout shape is\n"
  7415. "always a rectangle shape and it will be\n"
  7416. "the bounding box of the Object."
  7417. msgstr ""
  7418. "Cutout the selected object.\n"
  7419. "The resulting cutout shape is\n"
  7420. "always a rectangle shape and it will be\n"
  7421. "the bounding box of the Object."
  7422. #: flatcamTools/ToolCutOut.py:189
  7423. msgid "B. Manual Bridge Gaps"
  7424. msgstr "B. Manual Bridge Gaps"
  7425. #: flatcamTools/ToolCutOut.py:191
  7426. msgid ""
  7427. "This section handle creation of manual bridge gaps.\n"
  7428. "This is done by mouse clicking on the perimeter of the\n"
  7429. "Geometry object that is used as a cutout object. "
  7430. msgstr ""
  7431. "This section handle creation of manual bridge gaps.\n"
  7432. "This is done by mouse clicking on the perimeter of the\n"
  7433. "Geometry object that is used as a cutout object. "
  7434. #: flatcamTools/ToolCutOut.py:207
  7435. msgid "Geo Obj:"
  7436. msgstr "Geo Obj:"
  7437. #: flatcamTools/ToolCutOut.py:209
  7438. msgid "Geometry object used to create the manual cutout."
  7439. msgstr "Geometry object used to create the manual cutout."
  7440. #: flatcamTools/ToolCutOut.py:220
  7441. msgid "Manual Geo:"
  7442. msgstr "Manual Geo:"
  7443. #: flatcamTools/ToolCutOut.py:222 flatcamTools/ToolCutOut.py:232
  7444. msgid ""
  7445. "If the object to be cutout is a Gerber\n"
  7446. "first create a Geometry that surrounds it,\n"
  7447. "to be used as the cutout, if one doesn't exist yet.\n"
  7448. "Select the source Gerber file in the top object combobox."
  7449. msgstr ""
  7450. "If the object to be cutout is a Gerber\n"
  7451. "first create a Geometry that surrounds it,\n"
  7452. "to be used as the cutout, if one doesn't exist yet.\n"
  7453. "Select the source Gerber file in the top object combobox."
  7454. #: flatcamTools/ToolCutOut.py:242
  7455. msgid "Manual Add Bridge Gaps:"
  7456. msgstr "Manual Add Bridge Gaps:"
  7457. #: flatcamTools/ToolCutOut.py:244
  7458. msgid ""
  7459. "Use the left mouse button (LMB) click\n"
  7460. "to create a bridge gap to separate the PCB from\n"
  7461. "the surrounding material."
  7462. msgstr ""
  7463. "Use the left mouse button (LMB) click\n"
  7464. "to create a bridge gap to separate the PCB from\n"
  7465. "the surrounding material."
  7466. #: flatcamTools/ToolCutOut.py:251
  7467. msgid "Generate Gap"
  7468. msgstr "Generate Gap"
  7469. #: flatcamTools/ToolCutOut.py:253
  7470. msgid ""
  7471. "Use the left mouse button (LMB) click\n"
  7472. "to create a bridge gap to separate the PCB from\n"
  7473. "the surrounding material.\n"
  7474. "The LMB click has to be done on the perimeter of\n"
  7475. "the Geometry object used as a cutout geometry."
  7476. msgstr ""
  7477. "Use the left mouse button (LMB) click\n"
  7478. "to create a bridge gap to separate the PCB from\n"
  7479. "the surrounding material.\n"
  7480. "The LMB click has to be done on the perimeter of\n"
  7481. "the Geometry object used as a cutout geometry."
  7482. #: flatcamTools/ToolCutOut.py:329 flatcamTools/ToolCutOut.py:468
  7483. #: flatcamTools/ToolNonCopperClear.py:659 flatcamTools/ToolPaint.py:757
  7484. #: flatcamTools/ToolPanelize.py:293 flatcamTools/ToolPanelize.py:307
  7485. #, python-format
  7486. msgid "[ERROR_NOTCL]Could not retrieve object: %s"
  7487. msgstr "[ERROR_NOTCL]Could not retrieve object: %s"
  7488. #: flatcamTools/ToolCutOut.py:333
  7489. msgid ""
  7490. "[ERROR_NOTCL]There is no object selected for Cutout.\n"
  7491. "Select one and try again."
  7492. msgstr ""
  7493. "[ERROR_NOTCL]There is no object selected for Cutout.\n"
  7494. "Select one and try again."
  7495. #: flatcamTools/ToolCutOut.py:349
  7496. msgid ""
  7497. "[WARNING_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
  7498. msgstr ""
  7499. "[WARNING_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
  7500. #: flatcamTools/ToolCutOut.py:359 flatcamTools/ToolCutOut.py:496
  7501. #: flatcamTools/ToolCutOut.py:721
  7502. msgid ""
  7503. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  7504. msgstr ""
  7505. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  7506. #: flatcamTools/ToolCutOut.py:370 flatcamTools/ToolCutOut.py:507
  7507. #: flatcamTools/ToolCutOut.py:616
  7508. msgid ""
  7509. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  7510. msgstr ""
  7511. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  7512. #: flatcamTools/ToolCutOut.py:377 flatcamTools/ToolCutOut.py:514
  7513. msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  7514. msgstr "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  7515. #: flatcamTools/ToolCutOut.py:381 flatcamTools/ToolCutOut.py:518
  7516. msgid ""
  7517. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  7518. "or 8. Fill in a correct value and retry. "
  7519. msgstr ""
  7520. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  7521. "or 8. Fill in a correct value and retry. "
  7522. #: flatcamTools/ToolCutOut.py:386 flatcamTools/ToolCutOut.py:523
  7523. msgid ""
  7524. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  7525. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  7526. "Geometry,\n"
  7527. "and after that perform Cutout."
  7528. msgstr ""
  7529. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  7530. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  7531. "Geometry,\n"
  7532. "and after that perform Cutout."
  7533. #: flatcamTools/ToolCutOut.py:452 flatcamTools/ToolCutOut.py:586
  7534. msgid "[success] Any form CutOut operation finished."
  7535. msgstr "[success] Any form CutOut operation finished."
  7536. #: flatcamTools/ToolCutOut.py:472 flatcamTools/ToolPaint.py:761
  7537. #: flatcamTools/ToolPanelize.py:299
  7538. #, python-format
  7539. msgid "[ERROR_NOTCL]Object not found: %s"
  7540. msgstr "[ERROR_NOTCL]Object not found: %s"
  7541. #: flatcamTools/ToolCutOut.py:486 flatcamTools/ToolCutOut.py:606
  7542. #: flatcamTools/ToolCutOut.py:711
  7543. msgid ""
  7544. "[ERROR_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
  7545. msgstr ""
  7546. "[ERROR_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
  7547. #: flatcamTools/ToolCutOut.py:591
  7548. msgid ""
  7549. "Click on the selected geometry object perimeter to create a bridge gap ..."
  7550. msgstr ""
  7551. "Click on the selected geometry object perimeter to create a bridge gap ..."
  7552. #: flatcamTools/ToolCutOut.py:632
  7553. msgid "Making manual bridge gap..."
  7554. msgstr "Making manual bridge gap..."
  7555. #: flatcamTools/ToolCutOut.py:655
  7556. #, python-format
  7557. msgid "[ERROR_NOTCL]Could not retrieve Geoemtry object: %s"
  7558. msgstr "[ERROR_NOTCL]Could not retrieve Geoemtry object: %s"
  7559. #: flatcamTools/ToolCutOut.py:659
  7560. #, python-format
  7561. msgid "[ERROR_NOTCL]Geometry object for manual cutout not found: %s"
  7562. msgstr "[ERROR_NOTCL]Geometry object for manual cutout not found: %s"
  7563. #: flatcamTools/ToolCutOut.py:669
  7564. msgid "[success] Added manual Bridge Gap."
  7565. msgstr "[success] Added manual Bridge Gap."
  7566. #: flatcamTools/ToolCutOut.py:686
  7567. #, python-format
  7568. msgid "[ERROR_NOTCL]Could not retrieve Gerber object: %s"
  7569. msgstr "[ERROR_NOTCL]Could not retrieve Gerber object: %s"
  7570. #: flatcamTools/ToolCutOut.py:690
  7571. msgid ""
  7572. "[ERROR_NOTCL]There is no Gerber object selected for Cutout.\n"
  7573. "Select one and try again."
  7574. msgstr ""
  7575. "[ERROR_NOTCL]There is no Gerber object selected for Cutout.\n"
  7576. "Select one and try again."
  7577. #: flatcamTools/ToolCutOut.py:695
  7578. msgid ""
  7579. "[ERROR_NOTCL]The selected object has to be of Gerber type.\n"
  7580. "Select a Gerber file and try again."
  7581. msgstr ""
  7582. "[ERROR_NOTCL]The selected object has to be of Gerber type.\n"
  7583. "Select a Gerber file and try again."
  7584. #: flatcamTools/ToolDblSided.py:18
  7585. msgid "2-Sided PCB"
  7586. msgstr "2-Sided PCB"
  7587. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  7588. #: flatcamTools/ToolDblSided.py:100
  7589. msgid "Mirror"
  7590. msgstr "Mirror"
  7591. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  7592. #: flatcamTools/ToolDblSided.py:102
  7593. msgid ""
  7594. "Mirrors (flips) the specified object around \n"
  7595. "the specified axis. Does not create a new \n"
  7596. "object, but modifies it."
  7597. msgstr ""
  7598. "Mirrors (flips) the specified object around \n"
  7599. "the specified axis. Does not create a new \n"
  7600. "object, but modifies it."
  7601. #: flatcamTools/ToolDblSided.py:73
  7602. msgid "Excellon Object to be mirrored."
  7603. msgstr "Excellon Object to be mirrored."
  7604. #: flatcamTools/ToolDblSided.py:97
  7605. msgid "Geometry Obj to be mirrored."
  7606. msgstr "Geometry Obj to be mirrored."
  7607. #: flatcamTools/ToolDblSided.py:135
  7608. msgid ""
  7609. "The axis should pass through a <b>point</b> or cut\n"
  7610. " a specified <b>box</b> (in a FlatCAM object) through \n"
  7611. "the center."
  7612. msgstr ""
  7613. "The axis should pass through a <b>point</b> or cut\n"
  7614. " a specified <b>box</b> (in a FlatCAM object) through \n"
  7615. "the center."
  7616. #: flatcamTools/ToolDblSided.py:152
  7617. msgid "Point/Box Reference:"
  7618. msgstr "Point/Box Reference:"
  7619. #: flatcamTools/ToolDblSided.py:154
  7620. msgid ""
  7621. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  7622. "the mirroring axis passes.\n"
  7623. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  7624. "Geo).\n"
  7625. "Through the center of this object pass the mirroring axis selected above."
  7626. msgstr ""
  7627. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  7628. "the mirroring axis passes.\n"
  7629. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  7630. "Geo).\n"
  7631. "Through the center of this object pass the mirroring axis selected above."
  7632. #: flatcamTools/ToolDblSided.py:162
  7633. msgid ""
  7634. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  7635. "axis \n"
  7636. " selected in 'MIRROR AXIS' pass.\n"
  7637. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  7638. "and left mouse button click on canvas or you can enter the coords manually."
  7639. msgstr ""
  7640. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  7641. "axis \n"
  7642. " selected in 'MIRROR AXIS' pass.\n"
  7643. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  7644. "and left mouse button click on canvas or you can enter the coords manually."
  7645. #: flatcamTools/ToolDblSided.py:182
  7646. msgid "Gerber Reference Box Object"
  7647. msgstr "Gerber Reference Box Object"
  7648. #: flatcamTools/ToolDblSided.py:183
  7649. msgid "Excellon Reference Box Object"
  7650. msgstr "Excellon Reference Box Object"
  7651. #: flatcamTools/ToolDblSided.py:184
  7652. msgid "Geometry Reference Box Object"
  7653. msgstr "Geometry Reference Box Object"
  7654. #: flatcamTools/ToolDblSided.py:193
  7655. msgid "Alignment Drill Coordinates:"
  7656. msgstr "Alignment Drill Coordinates:"
  7657. #: flatcamTools/ToolDblSided.py:195
  7658. msgid ""
  7659. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  7660. "each set of (x, y) coordinates\n"
  7661. "entered here, a pair of drills will be created:\n"
  7662. "\n"
  7663. "- one drill at the coordinates from the field\n"
  7664. "- one drill in mirror position over the axis selected above in the 'Mirror "
  7665. "Axis'."
  7666. msgstr ""
  7667. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  7668. "each set of (x, y) coordinates\n"
  7669. "entered here, a pair of drills will be created:\n"
  7670. "\n"
  7671. "- one drill at the coordinates from the field\n"
  7672. "- one drill in mirror position over the axis selected above in the 'Mirror "
  7673. "Axis'."
  7674. #: flatcamTools/ToolDblSided.py:210
  7675. msgid ""
  7676. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  7677. "on one side of the mirror axis.\n"
  7678. "\n"
  7679. "The coordinates set can be obtained:\n"
  7680. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  7681. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  7682. "field.\n"
  7683. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  7684. "field and click Paste.\n"
  7685. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  7686. msgstr ""
  7687. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  7688. "on one side of the mirror axis.\n"
  7689. "\n"
  7690. "The coordinates set can be obtained:\n"
  7691. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  7692. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  7693. "field.\n"
  7694. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  7695. "field and click Paste.\n"
  7696. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  7697. #: flatcamTools/ToolDblSided.py:224
  7698. msgid "Alignment Drill Diameter"
  7699. msgstr "Alignment Drill Diameter"
  7700. #: flatcamTools/ToolDblSided.py:247
  7701. msgid "Create Excellon Object"
  7702. msgstr "Create Excellon Object"
  7703. #: flatcamTools/ToolDblSided.py:249
  7704. msgid ""
  7705. "Creates an Excellon Object containing the\n"
  7706. "specified alignment holes and their mirror\n"
  7707. "images."
  7708. msgstr ""
  7709. "Creates an Excellon Object containing the\n"
  7710. "specified alignment holes and their mirror\n"
  7711. "images."
  7712. #: flatcamTools/ToolDblSided.py:255
  7713. msgid "Reset"
  7714. msgstr "Reset"
  7715. #: flatcamTools/ToolDblSided.py:257
  7716. msgid "Resets all the fields."
  7717. msgstr "Resets all the fields."
  7718. #: flatcamTools/ToolDblSided.py:302
  7719. msgid "2-Sided Tool"
  7720. msgstr "2-Sided Tool"
  7721. #: flatcamTools/ToolDblSided.py:327
  7722. msgid ""
  7723. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  7724. "missing. Add them and retry."
  7725. msgstr ""
  7726. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  7727. "missing. Add them and retry."
  7728. #: flatcamTools/ToolDblSided.py:346
  7729. msgid ""
  7730. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  7731. msgstr ""
  7732. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  7733. #: flatcamTools/ToolDblSided.py:368
  7734. msgid ""
  7735. "[WARNING_NOTCL]No value or wrong format in Drill Dia entry. Add it and retry."
  7736. msgstr ""
  7737. "[WARNING_NOTCL]No value or wrong format in Drill Dia entry. Add it and retry."
  7738. #: flatcamTools/ToolDblSided.py:375
  7739. msgid ""
  7740. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  7741. "and retry."
  7742. msgstr ""
  7743. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  7744. "and retry."
  7745. #: flatcamTools/ToolDblSided.py:397
  7746. msgid "[success] Excellon object with alignment drills created..."
  7747. msgstr "[success] Excellon object with alignment drills created..."
  7748. #: flatcamTools/ToolDblSided.py:406
  7749. msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
  7750. msgstr "[WARNING_NOTCL] There is no Gerber object loaded ..."
  7751. #: flatcamTools/ToolDblSided.py:410 flatcamTools/ToolDblSided.py:453
  7752. #: flatcamTools/ToolDblSided.py:497
  7753. msgid ""
  7754. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  7755. msgstr ""
  7756. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  7757. #: flatcamTools/ToolDblSided.py:420
  7758. msgid ""
  7759. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  7760. "mirroring reference."
  7761. msgstr ""
  7762. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  7763. "mirroring reference."
  7764. #: flatcamTools/ToolDblSided.py:430 flatcamTools/ToolDblSided.py:474
  7765. #: flatcamTools/ToolDblSided.py:511
  7766. msgid "[WARNING_NOTCL] There is no Box object loaded ..."
  7767. msgstr "[WARNING_NOTCL] There is no Box object loaded ..."
  7768. #: flatcamTools/ToolDblSided.py:440
  7769. #, python-format
  7770. msgid "[success] Gerber %s was mirrored..."
  7771. msgstr "[success] Gerber %s was mirrored..."
  7772. #: flatcamTools/ToolDblSided.py:449
  7773. msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
  7774. msgstr "[WARNING_NOTCL] There is no Excellon object loaded ..."
  7775. #: flatcamTools/ToolDblSided.py:464
  7776. msgid ""
  7777. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  7778. "coords and try again ..."
  7779. msgstr ""
  7780. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  7781. "coords and try again ..."
  7782. #: flatcamTools/ToolDblSided.py:484
  7783. #, python-format
  7784. msgid "[success] Excellon %s was mirrored..."
  7785. msgstr "[success] Excellon %s was mirrored..."
  7786. #: flatcamTools/ToolDblSided.py:493
  7787. msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
  7788. msgstr "[WARNING_NOTCL] There is no Geometry object loaded ..."
  7789. #: flatcamTools/ToolDblSided.py:521
  7790. #, python-format
  7791. msgid "[success] Geometry %s was mirrored..."
  7792. msgstr "[success] Geometry %s was mirrored..."
  7793. #: flatcamTools/ToolFilm.py:25
  7794. msgid "Film PCB"
  7795. msgstr "Film PCB"
  7796. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  7797. #: flatcamTools/ToolPanelize.py:56
  7798. msgid "Object Type:"
  7799. msgstr "Object Type:"
  7800. #: flatcamTools/ToolFilm.py:58
  7801. msgid ""
  7802. "Specify the type of object for which to create the film.\n"
  7803. "The object can be of type: Gerber or Geometry.\n"
  7804. "The selection here decide the type of objects that will be\n"
  7805. "in the Film Object combobox."
  7806. msgstr ""
  7807. "Specify the type of object for which to create the film.\n"
  7808. "The object can be of type: Gerber or Geometry.\n"
  7809. "The selection here decide the type of objects that will be\n"
  7810. "in the Film Object combobox."
  7811. #: flatcamTools/ToolFilm.py:71
  7812. msgid "Film Object:"
  7813. msgstr "Film Object:"
  7814. #: flatcamTools/ToolFilm.py:73
  7815. msgid "Object for which to create the film."
  7816. msgstr "Object for which to create the film."
  7817. #: flatcamTools/ToolFilm.py:89 flatcamTools/ToolPanelize.py:89
  7818. msgid "Box Type:"
  7819. msgstr "Box Type:"
  7820. #: flatcamTools/ToolFilm.py:91
  7821. msgid ""
  7822. "Specify the type of object to be used as an container for\n"
  7823. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  7824. "the type of objects that will be\n"
  7825. "in the Box Object combobox."
  7826. msgstr ""
  7827. "Specify the type of object to be used as an container for\n"
  7828. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  7829. "the type of objects that will be\n"
  7830. "in the Box Object combobox."
  7831. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:104
  7832. msgid "Box Object:"
  7833. msgstr "Box Object:"
  7834. #: flatcamTools/ToolFilm.py:106
  7835. msgid ""
  7836. "The actual object that is used a container for the\n"
  7837. " selected object for which we create the film.\n"
  7838. "Usually it is the PCB outline but it can be also the\n"
  7839. "same object for which the film is created."
  7840. msgstr ""
  7841. "The actual object that is used a container for the\n"
  7842. " selected object for which we create the film.\n"
  7843. "Usually it is the PCB outline but it can be also the\n"
  7844. "same object for which the film is created."
  7845. #: flatcamTools/ToolFilm.py:157
  7846. msgid "Save Film"
  7847. msgstr "Save Film"
  7848. #: flatcamTools/ToolFilm.py:159
  7849. msgid ""
  7850. "Create a Film for the selected object, within\n"
  7851. "the specified box. Does not create a new \n"
  7852. " FlatCAM object, but directly save it in SVG format\n"
  7853. "which can be opened with Inkscape."
  7854. msgstr ""
  7855. "Create a Film for the selected object, within\n"
  7856. "the specified box. Does not create a new \n"
  7857. " FlatCAM object, but directly save it in SVG format\n"
  7858. "which can be opened with Inkscape."
  7859. #: flatcamTools/ToolFilm.py:225
  7860. msgid ""
  7861. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  7862. msgstr ""
  7863. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  7864. #: flatcamTools/ToolFilm.py:231
  7865. msgid ""
  7866. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  7867. msgstr ""
  7868. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  7869. #: flatcamTools/ToolFilm.py:255
  7870. msgid "Generating Film ..."
  7871. msgstr "Generating Film ..."
  7872. #: flatcamTools/ToolFilm.py:260 flatcamTools/ToolFilm.py:264
  7873. msgid "Export SVG positive"
  7874. msgstr "Export SVG positive"
  7875. #: flatcamTools/ToolFilm.py:269
  7876. msgid "[WARNING_NOTCL]Export SVG positive cancelled."
  7877. msgstr "[WARNING_NOTCL]Export SVG positive cancelled."
  7878. #: flatcamTools/ToolFilm.py:276 flatcamTools/ToolFilm.py:280
  7879. msgid "Export SVG negative"
  7880. msgstr "Export SVG negative"
  7881. #: flatcamTools/ToolFilm.py:285
  7882. msgid "[WARNING_NOTCL]Export SVG negative cancelled."
  7883. msgstr "[WARNING_NOTCL]Export SVG negative cancelled."
  7884. #: flatcamTools/ToolImage.py:25
  7885. msgid "Image as Object"
  7886. msgstr "Image as Object"
  7887. #: flatcamTools/ToolImage.py:31
  7888. msgid "Image to PCB"
  7889. msgstr "Image to PCB"
  7890. #: flatcamTools/ToolImage.py:55
  7891. msgid ""
  7892. "Specify the type of object to create from the image.\n"
  7893. "It can be of type: Gerber or Geometry."
  7894. msgstr ""
  7895. "Specify the type of object to create from the image.\n"
  7896. "It can be of type: Gerber or Geometry."
  7897. #: flatcamTools/ToolImage.py:63
  7898. msgid "DPI value:"
  7899. msgstr "DPI value:"
  7900. #: flatcamTools/ToolImage.py:65
  7901. msgid "Specify a DPI value for the image."
  7902. msgstr "Specify a DPI value for the image."
  7903. #: flatcamTools/ToolImage.py:72
  7904. msgid "Level of detail"
  7905. msgstr "Level of detail"
  7906. #: flatcamTools/ToolImage.py:81
  7907. msgid "Image type"
  7908. msgstr "Image type"
  7909. #: flatcamTools/ToolImage.py:83
  7910. msgid ""
  7911. "Choose a method for the image interpretation.\n"
  7912. "B/W means a black & white image. Color means a colored image."
  7913. msgstr ""
  7914. "Choose a method for the image interpretation.\n"
  7915. "B/W means a black & white image. Color means a colored image."
  7916. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  7917. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  7918. msgid "Mask value"
  7919. msgstr "Mask value"
  7920. #: flatcamTools/ToolImage.py:92
  7921. msgid ""
  7922. "Mask for monochrome image.\n"
  7923. "Takes values between [0 ... 255].\n"
  7924. "Decides the level of details to include\n"
  7925. "in the resulting geometry.\n"
  7926. "0 means no detail and 255 means everything \n"
  7927. "(which is totally black)."
  7928. msgstr ""
  7929. "Mask for monochrome image.\n"
  7930. "Takes values between [0 ... 255].\n"
  7931. "Decides the level of details to include\n"
  7932. "in the resulting geometry.\n"
  7933. "0 means no detail and 255 means everything \n"
  7934. "(which is totally black)."
  7935. #: flatcamTools/ToolImage.py:105
  7936. msgid ""
  7937. "Mask for RED color.\n"
  7938. "Takes values between [0 ... 255].\n"
  7939. "Decides the level of details to include\n"
  7940. "in the resulting geometry."
  7941. msgstr ""
  7942. "Mask for RED color.\n"
  7943. "Takes values between [0 ... 255].\n"
  7944. "Decides the level of details to include\n"
  7945. "in the resulting geometry."
  7946. #: flatcamTools/ToolImage.py:116
  7947. msgid ""
  7948. "Mask for GREEN color.\n"
  7949. "Takes values between [0 ... 255].\n"
  7950. "Decides the level of details to include\n"
  7951. "in the resulting geometry."
  7952. msgstr ""
  7953. "Mask for GREEN color.\n"
  7954. "Takes values between [0 ... 255].\n"
  7955. "Decides the level of details to include\n"
  7956. "in the resulting geometry."
  7957. #: flatcamTools/ToolImage.py:127
  7958. msgid ""
  7959. "Mask for BLUE color.\n"
  7960. "Takes values between [0 ... 255].\n"
  7961. "Decides the level of details to include\n"
  7962. "in the resulting geometry."
  7963. msgstr ""
  7964. "Mask for BLUE color.\n"
  7965. "Takes values between [0 ... 255].\n"
  7966. "Decides the level of details to include\n"
  7967. "in the resulting geometry."
  7968. #: flatcamTools/ToolImage.py:139
  7969. msgid "Import image"
  7970. msgstr "Import image"
  7971. #: flatcamTools/ToolImage.py:141
  7972. msgid "Open a image of raster type and then import it in FlatCAM."
  7973. msgstr "Open a image of raster type and then import it in FlatCAM."
  7974. #: flatcamTools/ToolImage.py:170
  7975. msgid "Image Tool"
  7976. msgstr "Image Tool"
  7977. #: flatcamTools/ToolImage.py:200 flatcamTools/ToolImage.py:203
  7978. msgid "Import IMAGE"
  7979. msgstr "Import IMAGE"
  7980. #: flatcamTools/ToolMeasurement.py:26
  7981. msgid "Measurement"
  7982. msgstr "Measurement"
  7983. #: flatcamTools/ToolMeasurement.py:47
  7984. msgid "Start"
  7985. msgstr "Start"
  7986. #: flatcamTools/ToolMeasurement.py:47 flatcamTools/ToolMeasurement.py:50
  7987. msgid "Coords"
  7988. msgstr "Coords"
  7989. #: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:99
  7990. msgid "This is measuring Start point coordinates."
  7991. msgstr "This is measuring Start point coordinates."
  7992. #: flatcamTools/ToolMeasurement.py:50
  7993. msgid "Stop"
  7994. msgstr "Stop"
  7995. #: flatcamTools/ToolMeasurement.py:51 flatcamTools/ToolMeasurement.py:104
  7996. msgid "This is the measuring Stop point coordinates."
  7997. msgstr "This is the measuring Stop point coordinates."
  7998. #: flatcamTools/ToolMeasurement.py:54 flatcamTools/ToolMeasurement.py:109
  7999. msgid "This is the distance measured over the X axis."
  8000. msgstr "This is the distance measured over the X axis."
  8001. #: flatcamTools/ToolMeasurement.py:57 flatcamTools/ToolMeasurement.py:115
  8002. msgid "This is the distance measured over the Y axis."
  8003. msgstr "This is the distance measured over the Y axis."
  8004. #: flatcamTools/ToolMeasurement.py:59
  8005. msgid "DISTANCE"
  8006. msgstr "DISTANCE"
  8007. #: flatcamTools/ToolMeasurement.py:60 flatcamTools/ToolMeasurement.py:121
  8008. msgid "This is the point to point Euclidian distance."
  8009. msgstr "This is the point to point Euclidian distance."
  8010. #: flatcamTools/ToolMeasurement.py:63 flatcamTools/ToolMeasurement.py:70
  8011. #: flatcamTools/ToolMeasurement.py:77 flatcamTools/ToolMeasurement.py:84
  8012. #: flatcamTools/ToolMeasurement.py:91
  8013. msgid "Those are the units in which the distance is measured."
  8014. msgstr "Those are the units in which the distance is measured."
  8015. #: flatcamTools/ToolMeasurement.py:124
  8016. msgid "Measure"
  8017. msgstr "Measure"
  8018. #: flatcamTools/ToolMeasurement.py:183
  8019. msgid "Meas. Tool"
  8020. msgstr "Meas. Tool"
  8021. #: flatcamTools/ToolMeasurement.py:276
  8022. msgid "MEASURING: Click on the Start point ..."
  8023. msgstr "MEASURING: Click on the Start point ..."
  8024. #: flatcamTools/ToolMeasurement.py:305
  8025. msgid "MEASURING: Click on the Destination point ..."
  8026. msgstr "MEASURING: Click on the Destination point ..."
  8027. #: flatcamTools/ToolMeasurement.py:326
  8028. #, python-brace-format
  8029. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  8030. msgstr "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  8031. #: flatcamTools/ToolMove.py:81
  8032. msgid "MOVE: Click on the Start point ..."
  8033. msgstr "MOVE: Click on the Start point ..."
  8034. #: flatcamTools/ToolMove.py:88
  8035. msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  8036. msgstr "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  8037. #: flatcamTools/ToolMove.py:110
  8038. msgid "MOVE: Click on the Destination point ..."
  8039. msgstr "MOVE: Click on the Destination point ..."
  8040. #: flatcamTools/ToolMove.py:128
  8041. msgid "Moving ..."
  8042. msgstr "Moving ..."
  8043. #: flatcamTools/ToolMove.py:135
  8044. msgid "[WARNING_NOTCL] No object(s) selected."
  8045. msgstr "[WARNING_NOTCL] No object(s) selected."
  8046. #: flatcamTools/ToolMove.py:158
  8047. #, python-format
  8048. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  8049. msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  8050. #: flatcamTools/ToolMove.py:164
  8051. #, python-format
  8052. msgid "[success]%s object was moved ..."
  8053. msgstr "[success]%s object was moved ..."
  8054. #: flatcamTools/ToolMove.py:174
  8055. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  8056. msgstr ""
  8057. "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  8058. #: flatcamTools/ToolMove.py:202
  8059. msgid "[WARNING_NOTCL]Move action cancelled."
  8060. msgstr "[WARNING_NOTCL]Move action cancelled."
  8061. #: flatcamTools/ToolMove.py:214
  8062. msgid "[WARNING_NOTCL]Object(s) not selected"
  8063. msgstr "[WARNING_NOTCL]Object(s) not selected"
  8064. #: flatcamTools/ToolNonCopperClear.py:25
  8065. msgid "Non-Copper Clearing"
  8066. msgstr "Non-Copper Clearing"
  8067. #: flatcamTools/ToolNonCopperClear.py:63
  8068. msgid "Gerber object to be cleared of excess copper. "
  8069. msgstr "Gerber object to be cleared of excess copper. "
  8070. #: flatcamTools/ToolNonCopperClear.py:73
  8071. msgid ""
  8072. "Tools pool from which the algorithm\n"
  8073. "will pick the ones used for copper clearing."
  8074. msgstr ""
  8075. "Tools pool from which the algorithm\n"
  8076. "will pick the ones used for copper clearing."
  8077. #: flatcamTools/ToolNonCopperClear.py:88
  8078. msgid ""
  8079. "This is the Tool Number.\n"
  8080. "Non copper clearing will start with the tool with the biggest \n"
  8081. "diameter, continuing until there are no more tools.\n"
  8082. "Only tools that create NCC clearing geometry will still be present\n"
  8083. "in the resulting geometry. This is because with some tools\n"
  8084. "this function will not be able to create painting geometry."
  8085. msgstr ""
  8086. "This is the Tool Number.\n"
  8087. "Non copper clearing will start with the tool with the biggest \n"
  8088. "diameter, continuing until there are no more tools.\n"
  8089. "Only tools that create NCC clearing geometry will still be present\n"
  8090. "in the resulting geometry. This is because with some tools\n"
  8091. "this function will not be able to create painting geometry."
  8092. #: flatcamTools/ToolNonCopperClear.py:100 flatcamTools/ToolPaint.py:98
  8093. msgid ""
  8094. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  8095. "informative only. Being circular, <BR>the cut width in material is exactly "
  8096. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  8097. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  8098. "parameter in the resulting geometry UI form and enable two additional UI "
  8099. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  8100. "those two values will adjust the Z-Cut parameter such as the cut width into "
  8101. "material will be equal with the value in the Tool Diameter column of this "
  8102. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  8103. "the Operation Type in the resulting geometry as Isolation."
  8104. msgstr ""
  8105. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  8106. "informative only. Being circular, <BR>the cut width in material is exactly "
  8107. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  8108. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  8109. "parameter in the resulting geometry UI form and enable two additional UI "
  8110. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  8111. "those two values will adjust the Z-Cut parameter such as the cut width into "
  8112. "material will be equal with the value in the Tool Diameter column of this "
  8113. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  8114. "the Operation Type in the resulting geometry as Isolation."
  8115. #: flatcamTools/ToolNonCopperClear.py:119 flatcamTools/ToolPaint.py:117
  8116. msgid "Tool Dia"
  8117. msgstr "Tool Dia"
  8118. #: flatcamTools/ToolNonCopperClear.py:121
  8119. msgid "Diameter for the new tool to add in the Tool Table"
  8120. msgstr "Diameter for the new tool to add in the Tool Table"
  8121. #: flatcamTools/ToolNonCopperClear.py:147 flatcamTools/ToolPaint.py:145
  8122. #: flatcamTools/ToolSolderPaste.py:123
  8123. msgid ""
  8124. "Delete a selection of tools in the Tool Table\n"
  8125. "by first selecting a row(s) in the Tool Table."
  8126. msgstr ""
  8127. "Delete a selection of tools in the Tool Table\n"
  8128. "by first selecting a row(s) in the Tool Table."
  8129. #: flatcamTools/ToolNonCopperClear.py:225
  8130. msgid ""
  8131. "If checked, use 'rest machining'.\n"
  8132. "Basically it will clear copper outside PCB features,\n"
  8133. "using the biggest tool and continue with the next tools,\n"
  8134. "from bigger to smaller, to clear areas of copper that\n"
  8135. "could not be cleared by previous tool, until there is\n"
  8136. "no more copper to clear or there are no more tools.\n"
  8137. "If not checked, use the standard algorithm."
  8138. msgstr ""
  8139. "If checked, use 'rest machining'.\n"
  8140. "Basically it will clear copper outside PCB features,\n"
  8141. "using the biggest tool and continue with the next tools,\n"
  8142. "from bigger to smaller, to clear areas of copper that\n"
  8143. "could not be cleared by previous tool, until there is\n"
  8144. "no more copper to clear or there are no more tools.\n"
  8145. "If not checked, use the standard algorithm."
  8146. #: flatcamTools/ToolNonCopperClear.py:237
  8147. msgid "Generate Geometry"
  8148. msgstr "Generate Geometry"
  8149. #: flatcamTools/ToolNonCopperClear.py:483 flatcamTools/ToolPaint.py:543
  8150. #: flatcamTools/ToolSolderPaste.py:760
  8151. msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  8152. msgstr "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  8153. #: flatcamTools/ToolNonCopperClear.py:511 flatcamTools/ToolPaint.py:567
  8154. msgid "[WARNING_NOTCL]Adding tool cancelled. Tool already in Tool Table."
  8155. msgstr "[WARNING_NOTCL]Adding tool cancelled. Tool already in Tool Table."
  8156. #: flatcamTools/ToolNonCopperClear.py:516 flatcamTools/ToolPaint.py:572
  8157. msgid "[success] New tool added to Tool Table."
  8158. msgstr "[success] New tool added to Tool Table."
  8159. #: flatcamTools/ToolNonCopperClear.py:549
  8160. msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
  8161. msgstr "[ERROR_NOTCL] Wrong value format entered, use a number."
  8162. #: flatcamTools/ToolNonCopperClear.py:558 flatcamTools/ToolPaint.py:615
  8163. msgid "[success] Tool from Tool Table was edited."
  8164. msgstr "[success] Tool from Tool Table was edited."
  8165. #: flatcamTools/ToolNonCopperClear.py:569 flatcamTools/ToolPaint.py:626
  8166. #: flatcamTools/ToolSolderPaste.py:846
  8167. msgid ""
  8168. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  8169. "Table."
  8170. msgstr ""
  8171. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  8172. "Table."
  8173. #: flatcamTools/ToolNonCopperClear.py:608 flatcamTools/ToolPaint.py:723
  8174. msgid "[WARNING_NOTCL]Delete failed. Select a tool to delete."
  8175. msgstr "[WARNING_NOTCL]Delete failed. Select a tool to delete."
  8176. #: flatcamTools/ToolNonCopperClear.py:613 flatcamTools/ToolPaint.py:728
  8177. msgid "[success] Tool(s) deleted from Tool Table."
  8178. msgstr "[success] Tool(s) deleted from Tool Table."
  8179. #: flatcamTools/ToolNonCopperClear.py:666
  8180. msgid "[ERROR_NOTCL]No Gerber file available."
  8181. msgstr "[ERROR_NOTCL]No Gerber file available."
  8182. #: flatcamTools/ToolNonCopperClear.py:704
  8183. #: flatcamTools/ToolNonCopperClear.py:826
  8184. msgid "Clearing Non-Copper areas."
  8185. msgstr "Clearing Non-Copper areas."
  8186. #: flatcamTools/ToolNonCopperClear.py:722
  8187. #, python-format
  8188. msgid "[success] Non-Copper Clearing with ToolDia = %s started."
  8189. msgstr "[success] Non-Copper Clearing with ToolDia = %s started."
  8190. #: flatcamTools/ToolNonCopperClear.py:791
  8191. #, python-format
  8192. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  8193. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  8194. #: flatcamTools/ToolNonCopperClear.py:796
  8195. msgid "[success] NCC Tool finished."
  8196. msgstr "[success] NCC Tool finished."
  8197. #: flatcamTools/ToolNonCopperClear.py:798
  8198. msgid ""
  8199. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  8200. "cleared. Check the result."
  8201. msgstr ""
  8202. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  8203. "cleared. Check the result."
  8204. #: flatcamTools/ToolNonCopperClear.py:844
  8205. #, python-format
  8206. msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  8207. msgstr "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  8208. #: flatcamTools/ToolNonCopperClear.py:942
  8209. #, python-format
  8210. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  8211. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  8212. #: flatcamTools/ToolNonCopperClear.py:950
  8213. msgid ""
  8214. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  8215. "settings."
  8216. msgstr ""
  8217. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  8218. "settings."
  8219. #: flatcamTools/ToolPaint.py:24
  8220. msgid "Paint Area"
  8221. msgstr "Paint Area"
  8222. #: flatcamTools/ToolPaint.py:60
  8223. msgid "Geometry:"
  8224. msgstr "Geometry:"
  8225. #: flatcamTools/ToolPaint.py:62
  8226. msgid "Geometry object to be painted. "
  8227. msgstr "Geometry object to be painted. "
  8228. #: flatcamTools/ToolPaint.py:71
  8229. msgid ""
  8230. "Tools pool from which the algorithm\n"
  8231. "will pick the ones used for painting."
  8232. msgstr ""
  8233. "Tools pool from which the algorithm\n"
  8234. "will pick the ones used for painting."
  8235. #: flatcamTools/ToolPaint.py:86
  8236. msgid ""
  8237. "This is the Tool Number.\n"
  8238. "Painting will start with the tool with the biggest diameter,\n"
  8239. "continuing until there are no more tools.\n"
  8240. "Only tools that create painting geometry will still be present\n"
  8241. "in the resulting geometry. This is because with some tools\n"
  8242. "this function will not be able to create painting geometry."
  8243. msgstr ""
  8244. "This is the Tool Number.\n"
  8245. "Painting will start with the tool with the biggest diameter,\n"
  8246. "continuing until there are no more tools.\n"
  8247. "Only tools that create painting geometry will still be present\n"
  8248. "in the resulting geometry. This is because with some tools\n"
  8249. "this function will not be able to create painting geometry."
  8250. #: flatcamTools/ToolPaint.py:119
  8251. msgid "Diameter for the new tool."
  8252. msgstr "Diameter for the new tool."
  8253. #: flatcamTools/ToolPaint.py:224
  8254. msgid ""
  8255. "If checked, use 'rest machining'.\n"
  8256. "Basically it will clear copper outside PCB features,\n"
  8257. "using the biggest tool and continue with the next tools,\n"
  8258. "from bigger to smaller, to clear areas of copper that\n"
  8259. "could not be cleared by previous tool, until there is\n"
  8260. "no more copper to clear or there are no more tools.\n"
  8261. "\n"
  8262. "If not checked, use the standard algorithm."
  8263. msgstr ""
  8264. "If checked, use 'rest machining'.\n"
  8265. "Basically it will clear copper outside PCB features,\n"
  8266. "using the biggest tool and continue with the next tools,\n"
  8267. "from bigger to smaller, to clear areas of copper that\n"
  8268. "could not be cleared by previous tool, until there is\n"
  8269. "no more copper to clear or there are no more tools.\n"
  8270. "\n"
  8271. "If not checked, use the standard algorithm."
  8272. #: flatcamTools/ToolPaint.py:239
  8273. msgid ""
  8274. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  8275. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  8276. "polygons."
  8277. msgstr ""
  8278. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  8279. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  8280. "polygons."
  8281. #: flatcamTools/ToolPaint.py:254
  8282. msgid "Create Paint Geometry"
  8283. msgstr "Create Paint Geometry"
  8284. #: flatcamTools/ToolPaint.py:256
  8285. msgid ""
  8286. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  8287. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  8288. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  8289. "created."
  8290. msgstr ""
  8291. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  8292. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  8293. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  8294. "created."
  8295. #: flatcamTools/ToolPaint.py:732
  8296. msgid "geometry_on_paint_button"
  8297. msgstr "geometry_on_paint_button"
  8298. #: flatcamTools/ToolPaint.py:735 flatcamTools/ToolPaint.py:780
  8299. msgid "[WARNING_NOTCL]Click inside the desired polygon."
  8300. msgstr "[WARNING_NOTCL]Click inside the desired polygon."
  8301. #: flatcamTools/ToolPaint.py:767
  8302. msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  8303. msgstr "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  8304. #: flatcamTools/ToolPaint.py:789 flatcamTools/ToolPaint.py:992
  8305. msgid "Painting polygon..."
  8306. msgstr "Painting polygon..."
  8307. #: flatcamTools/ToolPaint.py:840
  8308. msgid "[WARNING] No polygon found."
  8309. msgstr "[WARNING] No polygon found."
  8310. #: flatcamTools/ToolPaint.py:843
  8311. msgid "Painting polygon."
  8312. msgstr "Painting polygon."
  8313. #: flatcamTools/ToolPaint.py:885
  8314. msgid "[ERROR_NOTCL] Geometry could not be painted completely"
  8315. msgstr "[ERROR_NOTCL] Geometry could not be painted completely"
  8316. #: flatcamTools/ToolPaint.py:911
  8317. #, python-format
  8318. msgid ""
  8319. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  8320. "different strategy of paint\n"
  8321. "%s"
  8322. msgstr ""
  8323. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  8324. "different strategy of paint\n"
  8325. "%s"
  8326. #: flatcamTools/ToolPaint.py:953
  8327. #, python-format
  8328. msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  8329. msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  8330. #: flatcamTools/ToolPaint.py:959 flatcamTools/ToolPaint.py:1251
  8331. msgid "Polygon Paint started ..."
  8332. msgstr "Polygon Paint started ..."
  8333. #: flatcamTools/ToolPaint.py:1107 flatcamTools/ToolPaint.py:1196
  8334. #, python-format
  8335. msgid ""
  8336. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  8337. "Or a different Method of paint\n"
  8338. "%s"
  8339. msgstr ""
  8340. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  8341. "Or a different Method of paint\n"
  8342. "%s"
  8343. #: flatcamTools/ToolPaint.py:1131
  8344. msgid ""
  8345. "[ERROR] There is no Painting Geometry in the file.\n"
  8346. "Usually it means that the tool diameter is too big for the painted "
  8347. "geometry.\n"
  8348. "Change the painting parameters and try again."
  8349. msgstr ""
  8350. "[ERROR] There is no Painting Geometry in the file.\n"
  8351. "Usually it means that the tool diameter is too big for the painted "
  8352. "geometry.\n"
  8353. "Change the painting parameters and try again."
  8354. #: flatcamTools/ToolPaint.py:1140
  8355. msgid "[success] Paint All Done."
  8356. msgstr "[success] Paint All Done."
  8357. #: flatcamTools/ToolPaint.py:1226
  8358. msgid ""
  8359. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  8360. "Usually it means that the tool diameter is too big for the painted "
  8361. "geometry.\n"
  8362. "Change the painting parameters and try again."
  8363. msgstr ""
  8364. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  8365. "Usually it means that the tool diameter is too big for the painted "
  8366. "geometry.\n"
  8367. "Change the painting parameters and try again."
  8368. #: flatcamTools/ToolPaint.py:1235
  8369. msgid "[success] Paint All with Rest-Machining done."
  8370. msgstr "[success] Paint All with Rest-Machining done."
  8371. #: flatcamTools/ToolPanelize.py:25
  8372. msgid "Panelize PCB"
  8373. msgstr "Panelize PCB"
  8374. #: flatcamTools/ToolPanelize.py:58
  8375. msgid ""
  8376. "Specify the type of object to be panelized\n"
  8377. "It can be of type: Gerber, Excellon or Geometry.\n"
  8378. "The selection here decide the type of objects that will be\n"
  8379. "in the Object combobox."
  8380. msgstr ""
  8381. "Specify the type of object to be panelized\n"
  8382. "It can be of type: Gerber, Excellon or Geometry.\n"
  8383. "The selection here decide the type of objects that will be\n"
  8384. "in the Object combobox."
  8385. #: flatcamTools/ToolPanelize.py:73
  8386. msgid ""
  8387. "Object to be panelized. This means that it will\n"
  8388. "be duplicated in an array of rows and columns."
  8389. msgstr ""
  8390. "Object to be panelized. This means that it will\n"
  8391. "be duplicated in an array of rows and columns."
  8392. #: flatcamTools/ToolPanelize.py:91
  8393. msgid ""
  8394. "Specify the type of object to be used as an container for\n"
  8395. "panelization. It can be: Gerber or Geometry type.\n"
  8396. "The selection here decide the type of objects that will be\n"
  8397. "in the Box Object combobox."
  8398. msgstr ""
  8399. "Specify the type of object to be used as an container for\n"
  8400. "panelization. It can be: Gerber or Geometry type.\n"
  8401. "The selection here decide the type of objects that will be\n"
  8402. "in the Box Object combobox."
  8403. #: flatcamTools/ToolPanelize.py:106
  8404. msgid ""
  8405. "The actual object that is used a container for the\n"
  8406. " selected object that is to be panelized."
  8407. msgstr ""
  8408. "The actual object that is used a container for the\n"
  8409. " selected object that is to be panelized."
  8410. #: flatcamTools/ToolPanelize.py:150
  8411. msgid ""
  8412. "Choose the type of object for the panel object:\n"
  8413. "- Geometry\n"
  8414. "- Gerber"
  8415. msgstr ""
  8416. "Choose the type of object for the panel object:\n"
  8417. "- Geometry\n"
  8418. "- Gerber"
  8419. #: flatcamTools/ToolPanelize.py:158
  8420. msgid "Constrain panel within:"
  8421. msgstr "Constrain panel within:"
  8422. #: flatcamTools/ToolPanelize.py:192
  8423. msgid "Panelize Object"
  8424. msgstr "Panelize Object"
  8425. #: flatcamTools/ToolPanelize.py:194
  8426. msgid ""
  8427. "Panelize the specified object around the specified box.\n"
  8428. "In other words it creates multiple copies of the source object,\n"
  8429. "arranged in a 2D array of rows and columns."
  8430. msgstr ""
  8431. "Panelize the specified object around the specified box.\n"
  8432. "In other words it creates multiple copies of the source object,\n"
  8433. "arranged in a 2D array of rows and columns."
  8434. #: flatcamTools/ToolPanelize.py:311
  8435. #, python-format
  8436. msgid "[WARNING]No object Box. Using instead %s"
  8437. msgstr "[WARNING]No object Box. Using instead %s"
  8438. #: flatcamTools/ToolPanelize.py:392
  8439. msgid ""
  8440. "[ERROR_NOTCL]Columns or Rows are zero value. Change them to a positive "
  8441. "integer."
  8442. msgstr ""
  8443. "[ERROR_NOTCL]Columns or Rows are zero value. Change them to a positive "
  8444. "integer."
  8445. #: flatcamTools/ToolPanelize.py:417 flatcamTools/ToolPanelize.py:526
  8446. msgid "Generating panel ... Please wait."
  8447. msgstr "Generating panel ... Please wait."
  8448. #: flatcamTools/ToolPanelize.py:520
  8449. msgid "[success]Panel done..."
  8450. msgstr "[success]Panel done..."
  8451. #: flatcamTools/ToolPanelize.py:523
  8452. #, python-brace-format
  8453. msgid ""
  8454. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  8455. "{row} rows"
  8456. msgstr ""
  8457. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  8458. "{row} rows"
  8459. #: flatcamTools/ToolPanelize.py:531
  8460. msgid "[success]Panel created successfully."
  8461. msgstr "[success]Panel created successfully."
  8462. #: flatcamTools/ToolProperties.py:103
  8463. msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  8464. msgstr "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  8465. #: flatcamTools/ToolProperties.py:110
  8466. msgid "[success] Object Properties are displayed."
  8467. msgstr "[success] Object Properties are displayed."
  8468. #: flatcamTools/ToolProperties.py:111
  8469. msgid "Properties Tool"
  8470. msgstr "Properties Tool"
  8471. #: flatcamTools/ToolShell.py:69
  8472. msgid "...proccessing..."
  8473. msgstr "...proccessing..."
  8474. #: flatcamTools/ToolShell.py:71
  8475. #, python-format
  8476. msgid "...proccessing... [%s]"
  8477. msgstr "...proccessing... [%s]"
  8478. #: flatcamTools/ToolSolderPaste.py:37
  8479. msgid "Solder Paste Tool"
  8480. msgstr "Solder Paste Tool"
  8481. #: flatcamTools/ToolSolderPaste.py:65
  8482. msgid "Gerber Solder paste object. "
  8483. msgstr "Gerber Solder paste object. "
  8484. #: flatcamTools/ToolSolderPaste.py:72
  8485. msgid ""
  8486. "Tools pool from which the algorithm\n"
  8487. "will pick the ones used for dispensing solder paste."
  8488. msgstr ""
  8489. "Tools pool from which the algorithm\n"
  8490. "will pick the ones used for dispensing solder paste."
  8491. #: flatcamTools/ToolSolderPaste.py:87
  8492. msgid ""
  8493. "This is the Tool Number.\n"
  8494. "The solder dispensing will start with the tool with the biggest \n"
  8495. "diameter, continuing until there are no more Nozzle tools.\n"
  8496. "If there are no longer tools but there are still pads not covered\n"
  8497. " with solder paste, the app will issue a warning message box."
  8498. msgstr ""
  8499. "This is the Tool Number.\n"
  8500. "The solder dispensing will start with the tool with the biggest \n"
  8501. "diameter, continuing until there are no more Nozzle tools.\n"
  8502. "If there are no longer tools but there are still pads not covered\n"
  8503. " with solder paste, the app will issue a warning message box."
  8504. #: flatcamTools/ToolSolderPaste.py:94
  8505. msgid ""
  8506. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  8507. "is the width of the solder paste dispensed."
  8508. msgstr ""
  8509. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  8510. "is the width of the solder paste dispensed."
  8511. #: flatcamTools/ToolSolderPaste.py:101
  8512. msgid "New Nozzle Tool"
  8513. msgstr "New Nozzle Tool"
  8514. #: flatcamTools/ToolSolderPaste.py:117
  8515. msgid ""
  8516. "Add a new nozzle tool to the Tool Table\n"
  8517. "with the diameter specified above."
  8518. msgstr ""
  8519. "Add a new nozzle tool to the Tool Table\n"
  8520. "with the diameter specified above."
  8521. #: flatcamTools/ToolSolderPaste.py:129
  8522. msgid "Generate solder paste dispensing geometry."
  8523. msgstr "Generate solder paste dispensing geometry."
  8524. #: flatcamTools/ToolSolderPaste.py:142
  8525. msgid "STEP 1"
  8526. msgstr "STEP 1"
  8527. #: flatcamTools/ToolSolderPaste.py:144
  8528. msgid ""
  8529. "First step is to select a number of nozzle tools for usage\n"
  8530. "and then optionally modify the GCode parameters bellow."
  8531. msgstr ""
  8532. "First step is to select a number of nozzle tools for usage\n"
  8533. "and then optionally modify the GCode parameters bellow."
  8534. #: flatcamTools/ToolSolderPaste.py:147
  8535. msgid ""
  8536. "Select tools.\n"
  8537. "Modify parameters."
  8538. msgstr ""
  8539. "Select tools.\n"
  8540. "Modify parameters."
  8541. #: flatcamTools/ToolSolderPaste.py:290
  8542. msgid "Generate GCode"
  8543. msgstr "Generate GCode"
  8544. #: flatcamTools/ToolSolderPaste.py:292
  8545. msgid ""
  8546. "Generate GCode for Solder Paste dispensing\n"
  8547. "on PCB pads."
  8548. msgstr ""
  8549. "Generate GCode for Solder Paste dispensing\n"
  8550. "on PCB pads."
  8551. #: flatcamTools/ToolSolderPaste.py:308
  8552. msgid "STEP 2:"
  8553. msgstr "STEP 2:"
  8554. #: flatcamTools/ToolSolderPaste.py:310
  8555. msgid ""
  8556. "Second step is to create a solder paste dispensing\n"
  8557. "geometry out of an Solder Paste Mask Gerber file."
  8558. msgstr ""
  8559. "Second step is to create a solder paste dispensing\n"
  8560. "geometry out of an Solder Paste Mask Gerber file."
  8561. #: flatcamTools/ToolSolderPaste.py:326
  8562. msgid "Geo Result:"
  8563. msgstr "Geo Result:"
  8564. #: flatcamTools/ToolSolderPaste.py:328
  8565. msgid ""
  8566. "Geometry Solder Paste object.\n"
  8567. "The name of the object has to end in:\n"
  8568. "'_solderpaste' as a protection."
  8569. msgstr ""
  8570. "Geometry Solder Paste object.\n"
  8571. "The name of the object has to end in:\n"
  8572. "'_solderpaste' as a protection."
  8573. #: flatcamTools/ToolSolderPaste.py:337
  8574. msgid "STEP 3:"
  8575. msgstr "STEP 3:"
  8576. #: flatcamTools/ToolSolderPaste.py:339
  8577. msgid ""
  8578. "Third step is to select a solder paste dispensing geometry,\n"
  8579. "and then generate a CNCJob object.\n"
  8580. "\n"
  8581. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  8582. "first you need to generate a geometry with those new params,\n"
  8583. "and only after that you can generate an updated CNCJob."
  8584. msgstr ""
  8585. "Third step is to select a solder paste dispensing geometry,\n"
  8586. "and then generate a CNCJob object.\n"
  8587. "\n"
  8588. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  8589. "first you need to generate a geometry with those new params,\n"
  8590. "and only after that you can generate an updated CNCJob."
  8591. #: flatcamTools/ToolSolderPaste.py:359
  8592. msgid "CNC Result:"
  8593. msgstr "CNC Result:"
  8594. #: flatcamTools/ToolSolderPaste.py:361
  8595. msgid ""
  8596. "CNCJob Solder paste object.\n"
  8597. "In order to enable the GCode save section,\n"
  8598. "the name of the object has to end in:\n"
  8599. "'_solderpaste' as a protection."
  8600. msgstr ""
  8601. "CNCJob Solder paste object.\n"
  8602. "In order to enable the GCode save section,\n"
  8603. "the name of the object has to end in:\n"
  8604. "'_solderpaste' as a protection."
  8605. #: flatcamTools/ToolSolderPaste.py:371
  8606. msgid "View GCode"
  8607. msgstr "View GCode"
  8608. #: flatcamTools/ToolSolderPaste.py:373
  8609. msgid ""
  8610. "View the generated GCode for Solder Paste dispensing\n"
  8611. "on PCB pads."
  8612. msgstr ""
  8613. "View the generated GCode for Solder Paste dispensing\n"
  8614. "on PCB pads."
  8615. #: flatcamTools/ToolSolderPaste.py:377
  8616. msgid "Save GCode"
  8617. msgstr "Save GCode"
  8618. #: flatcamTools/ToolSolderPaste.py:379
  8619. msgid ""
  8620. "Save the generated GCode for Solder Paste dispensing\n"
  8621. "on PCB pads, to a file."
  8622. msgstr ""
  8623. "Save the generated GCode for Solder Paste dispensing\n"
  8624. "on PCB pads, to a file."
  8625. #: flatcamTools/ToolSolderPaste.py:383
  8626. msgid "STEP 4:"
  8627. msgstr "STEP 4:"
  8628. #: flatcamTools/ToolSolderPaste.py:385
  8629. msgid ""
  8630. "Fourth step (and last) is to select a CNCJob made from \n"
  8631. "a solder paste dispensing geometry, and then view/save it's GCode."
  8632. msgstr ""
  8633. "Fourth step (and last) is to select a CNCJob made from \n"
  8634. "a solder paste dispensing geometry, and then view/save it's GCode."
  8635. #: flatcamTools/ToolSolderPaste.py:413
  8636. msgid "Delete Object"
  8637. msgstr "Delete Object"
  8638. #: flatcamTools/ToolSolderPaste.py:788
  8639. msgid ""
  8640. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  8641. msgstr ""
  8642. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  8643. #: flatcamTools/ToolSolderPaste.py:793
  8644. msgid "[success] New Nozzle tool added to Tool Table."
  8645. msgstr "[success] New Nozzle tool added to Tool Table."
  8646. #: flatcamTools/ToolSolderPaste.py:835
  8647. msgid "[success] Nozzle tool from Tool Table was edited."
  8648. msgstr "[success] Nozzle tool from Tool Table was edited."
  8649. #: flatcamTools/ToolSolderPaste.py:891
  8650. msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  8651. msgstr "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  8652. #: flatcamTools/ToolSolderPaste.py:896
  8653. msgid "[success] Nozzle tool(s) deleted from Tool Table."
  8654. msgstr "[success] Nozzle tool(s) deleted from Tool Table."
  8655. #: flatcamTools/ToolSolderPaste.py:951
  8656. msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  8657. msgstr "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  8658. #: flatcamTools/ToolSolderPaste.py:968
  8659. msgid "Creating Solder Paste dispensing geometry."
  8660. msgstr "Creating Solder Paste dispensing geometry."
  8661. #: flatcamTools/ToolSolderPaste.py:980
  8662. msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
  8663. msgstr "[WARNING_NOTCL] No Nozzle tools in the tool table."
  8664. #: flatcamTools/ToolSolderPaste.py:1106 flatcamTools/ToolSolderPaste.py:1161
  8665. msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  8666. msgstr "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  8667. #: flatcamTools/ToolSolderPaste.py:1109
  8668. msgid "[success] Solder Paste geometry generated successfully..."
  8669. msgstr "[success] Solder Paste geometry generated successfully..."
  8670. #: flatcamTools/ToolSolderPaste.py:1115
  8671. msgid ""
  8672. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  8673. "diameters..."
  8674. msgstr ""
  8675. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  8676. "diameters..."
  8677. #: flatcamTools/ToolSolderPaste.py:1129
  8678. msgid "Generating Solder Paste dispensing geometry..."
  8679. msgstr "Generating Solder Paste dispensing geometry..."
  8680. #: flatcamTools/ToolSolderPaste.py:1149
  8681. msgid "[WARNING_NOTCL] There is no Geometry object available."
  8682. msgstr "[WARNING_NOTCL] There is no Geometry object available."
  8683. #: flatcamTools/ToolSolderPaste.py:1153
  8684. msgid ""
  8685. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  8686. "geometry."
  8687. msgstr ""
  8688. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  8689. "geometry."
  8690. #: flatcamTools/ToolSolderPaste.py:1258
  8691. #, python-format
  8692. msgid "[success] ToolSolderPaste CNCjob created: %s"
  8693. msgstr "[success] ToolSolderPaste CNCjob created: %s"
  8694. #: flatcamTools/ToolSolderPaste.py:1290 flatcamTools/ToolSolderPaste.py:1294
  8695. #: flatcamTools/ToolSolderPaste.py:1345
  8696. msgid ""
  8697. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  8698. "solder_paste_tool CNCJob object."
  8699. msgstr ""
  8700. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  8701. "solder_paste_tool CNCJob object."
  8702. #: flatcamTools/ToolSolderPaste.py:1317
  8703. msgid "[ERROR_NOTCL] No Gcode in the object..."
  8704. msgstr "[ERROR_NOTCL] No Gcode in the object..."
  8705. #: flatcamTools/ToolSolderPaste.py:1326
  8706. #, python-format
  8707. msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  8708. msgstr "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  8709. #: flatcamTools/ToolSolderPaste.py:1355
  8710. msgid "Export GCode ..."
  8711. msgstr "Export GCode ..."
  8712. #: flatcamTools/ToolSolderPaste.py:1363
  8713. msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
  8714. msgstr "[WARNING_NOTCL] Export Machine Code cancelled ..."
  8715. #: flatcamTools/ToolSolderPaste.py:1393
  8716. #, python-format
  8717. msgid "[success] Solder paste dispenser GCode file saved to: %s"
  8718. msgstr "[success] Solder paste dispenser GCode file saved to: %s"
  8719. #: flatcamTools/ToolTransform.py:23
  8720. msgid "Object Transform"
  8721. msgstr "Object Transform"
  8722. #: flatcamTools/ToolTransform.py:84
  8723. msgid ""
  8724. "Rotate the selected object(s).\n"
  8725. "The point of reference is the middle of\n"
  8726. "the bounding box for all selected objects."
  8727. msgstr ""
  8728. "Rotate the selected object(s).\n"
  8729. "The point of reference is the middle of\n"
  8730. "the bounding box for all selected objects."
  8731. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  8732. msgid ""
  8733. "Skew/shear the selected object(s).\n"
  8734. "The point of reference is the middle of\n"
  8735. "the bounding box for all selected objects."
  8736. msgstr ""
  8737. "Skew/shear the selected object(s).\n"
  8738. "The point of reference is the middle of\n"
  8739. "the bounding box for all selected objects."
  8740. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  8741. msgid ""
  8742. "Scale the selected object(s).\n"
  8743. "The point of reference depends on \n"
  8744. "the Scale reference checkbox state."
  8745. msgstr ""
  8746. "Scale the selected object(s).\n"
  8747. "The point of reference depends on \n"
  8748. "the Scale reference checkbox state."
  8749. #: flatcamTools/ToolTransform.py:202
  8750. msgid ""
  8751. "Scale the selected object(s)\n"
  8752. "using the Scale Factor X for both axis."
  8753. msgstr ""
  8754. "Scale the selected object(s)\n"
  8755. "using the Scale Factor X for both axis."
  8756. #: flatcamTools/ToolTransform.py:250 flatcamTools/ToolTransform.py:267
  8757. msgid ""
  8758. "Offset the selected object(s).\n"
  8759. "The point of reference is the middle of\n"
  8760. "the bounding box for all selected objects.\n"
  8761. msgstr ""
  8762. "Offset the selected object(s).\n"
  8763. "The point of reference is the middle of\n"
  8764. "the bounding box for all selected objects.\n"
  8765. #: flatcamTools/ToolTransform.py:297 flatcamTools/ToolTransform.py:305
  8766. msgid ""
  8767. "Flip the selected object(s) over the X axis.\n"
  8768. "Does not create a new object.\n"
  8769. " "
  8770. msgstr ""
  8771. "Flip the selected object(s) over the X axis.\n"
  8772. "Does not create a new object.\n"
  8773. " "
  8774. #: flatcamTools/ToolTransform.py:637
  8775. msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  8776. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  8777. #: flatcamTools/ToolTransform.py:665
  8778. msgid "CNCJob objects can't be rotated."
  8779. msgstr "CNCJob objects can't be rotated."
  8780. #: flatcamTools/ToolTransform.py:674
  8781. msgid "[success]Rotate done ..."
  8782. msgstr "[success]Rotate done ..."
  8783. #: flatcamTools/ToolTransform.py:689
  8784. msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  8785. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  8786. #: flatcamTools/ToolTransform.py:724
  8787. msgid "CNCJob objects can't be mirrored/flipped."
  8788. msgstr "CNCJob objects can't be mirrored/flipped."
  8789. #: flatcamTools/ToolTransform.py:735
  8790. msgid "[success]Flip on the Y axis done ..."
  8791. msgstr "[success]Flip on the Y axis done ..."
  8792. #: flatcamTools/ToolTransform.py:745
  8793. msgid "[success]Flip on the X axis done ..."
  8794. msgstr "[success]Flip on the X axis done ..."
  8795. #: flatcamTools/ToolTransform.py:759
  8796. msgid ""
  8797. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  8798. msgstr ""
  8799. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  8800. #: flatcamTools/ToolTransform.py:781
  8801. msgid "CNCJob objects can't be skewed."
  8802. msgstr "CNCJob objects can't be skewed."
  8803. #: flatcamTools/ToolTransform.py:793
  8804. #, python-format
  8805. msgid "[success]Skew on the %s axis done ..."
  8806. msgstr "[success]Skew on the %s axis done ..."
  8807. #: flatcamTools/ToolTransform.py:808
  8808. msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  8809. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  8810. #: flatcamTools/ToolTransform.py:841
  8811. msgid "CNCJob objects can't be scaled."
  8812. msgstr "CNCJob objects can't be scaled."
  8813. #: flatcamTools/ToolTransform.py:861
  8814. msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  8815. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  8816. #: flatcamTools/ToolTransform.py:882
  8817. msgid "CNCJob objects can't be offseted."
  8818. msgstr "CNCJob objects can't be offseted."
  8819. #: flatcamTools/ToolTransform.py:894
  8820. #, python-format
  8821. msgid "[success]Offset on the %s axis done ..."
  8822. msgstr "[success]Offset on the %s axis done ..."
  8823. msgid ""
  8824. "How much (fraction) of the tool width to overlap each tool pass.\n"
  8825. "Example:\n"
  8826. "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  8827. "\n"
  8828. "Adjust the value starting with lower values\n"
  8829. "and increasing it if areas that should be painted are still \n"
  8830. "not painted.\n"
  8831. "Lower values = faster processing, faster execution on PCB.\n"
  8832. "Higher values = slow processing and slow execution on CNC\n"
  8833. "due of too many paths."
  8834. msgstr ""
  8835. "How much (fraction) of the tool width to overlap each tool pass.\n"
  8836. "Example:\n"
  8837. "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  8838. "\n"
  8839. "Adjust the value starting with lower values\n"
  8840. "and increasing it if areas that should be painted are still \n"
  8841. "not painted.\n"
  8842. "Lower values = faster processing, faster execution on PCB.\n"
  8843. "Higher values = slow processing and slow execution on CNC\n"
  8844. "due of too many paths."
  8845. msgid "z_cut = Z coord for Toolchange"
  8846. msgstr "z_cut = Z coord for Toolchange"
  8847. msgid "z_move = Z coord for Toolchange"
  8848. msgstr "z_move = Z coord for Toolchange"
  8849. msgid "%s/Project_%s"
  8850. msgstr "%s/Project_%s"
  8851. msgid "tool_tab"
  8852. msgstr "tool_tab"