strings.po 431 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR ORGANIZATION
  3. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: \n"
  8. "POT-Creation-Date: 2019-06-20 19:33+0300\n"
  9. "PO-Revision-Date: 2019-06-20 19:39+0300\n"
  10. "Last-Translator: \n"
  11. "Language-Team: \n"
  12. "Language: ro\n"
  13. "MIME-Version: 1.0\n"
  14. "Content-Type: text/plain; charset=UTF-8\n"
  15. "Content-Transfer-Encoding: 8bit\n"
  16. "Generated-By: pygettext.py 1.5\n"
  17. "X-Generator: Poedit 2.2.1\n"
  18. "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==0 || (n!=1 && n%100>=1 && n"
  19. "%100<=19) ? 1 : 2);\n"
  20. "X-Poedit-Basepath: ../../..\n"
  21. "X-Poedit-SearchPath-0: .\n"
  22. "X-Poedit-SearchPathExcluded-0: build\n"
  23. "X-Poedit-SearchPathExcluded-1: tests\n"
  24. "X-Poedit-SearchPathExcluded-2: doc\n"
  25. #: FlatCAMApp.py:925
  26. msgid "[ERROR] Could not find the Language files. The App strings are missing."
  27. msgstr ""
  28. "[ERROR] Nu am gasit fişierele cu traduceri. Mesajele aplicaţiei lipsesc."
  29. #: FlatCAMApp.py:2018 ObjectCollection.py:80 flatcamTools/ToolImage.py:213
  30. #: flatcamTools/ToolPcbWizard.py:299 flatcamTools/ToolPcbWizard.py:322
  31. msgid "Open cancelled."
  32. msgstr "Deschidere anulată."
  33. #: FlatCAMApp.py:2032
  34. msgid "Open Config file failed."
  35. msgstr "Deschiderea fişierului de configurare a eşuat."
  36. #: FlatCAMApp.py:2046
  37. msgid "Open Script file failed."
  38. msgstr "Deschiderea fişierului Script eşuat."
  39. #: FlatCAMApp.py:2235
  40. msgid "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit."
  41. msgstr ""
  42. "[WARNING_NOTCL] Selectează un obiect tip Geometrie Gerber sau Excellon "
  43. "pentru editare."
  44. #: FlatCAMApp.py:2245
  45. msgid ""
  46. "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo "
  47. "Geometry is not possible.\n"
  48. "Edit only one geometry at a time."
  49. msgstr ""
  50. "[WARNING_NOTCL] Editarea simultană de geometrii ale uneltelor dintr-un "
  51. "obiect tip Geometrie MultiGeo nu este posibilă.\n"
  52. "Se poate edita numai o singură geometrie de fiecare dată."
  53. #: FlatCAMApp.py:2289
  54. msgid "[WARNING_NOTCL] Editor is activated ..."
  55. msgstr "[WARNING_NOTCL] Editorul este activ. .."
  56. #: FlatCAMApp.py:2307
  57. msgid "Do you want to save the edited object?"
  58. msgstr "Vrei sa salvezi obiectul editat?"
  59. #: FlatCAMApp.py:2308 flatcamGUI/FlatCAMGUI.py:1618
  60. msgid "Close Editor"
  61. msgstr "Inchide Editorul"
  62. #: FlatCAMApp.py:2311 FlatCAMApp.py:3403 FlatCAMApp.py:5887
  63. #: FlatCAMTranslation.py:89 flatcamGUI/FlatCAMGUI.py:3730
  64. msgid "Yes"
  65. msgstr "Da"
  66. #: FlatCAMApp.py:2312 FlatCAMApp.py:3404 FlatCAMApp.py:5888
  67. #: FlatCAMTranslation.py:90 flatcamGUI/FlatCAMGUI.py:3731
  68. msgid "No"
  69. msgstr "Nu"
  70. #: FlatCAMApp.py:2313 FlatCAMApp.py:3405 FlatCAMApp.py:3737 FlatCAMApp.py:5889
  71. msgid "Cancel"
  72. msgstr "Anuleaza"
  73. #: FlatCAMApp.py:2340
  74. msgid "[WARNING] Object empty after edit."
  75. msgstr "[WARNING] Obiectul nu are date dupa editare."
  76. #: FlatCAMApp.py:2362 FlatCAMApp.py:2381 FlatCAMApp.py:2393
  77. msgid "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update."
  78. msgstr ""
  79. "[WARNING_NOTCL] Selectează un obiect tip Gerber, Geometrie sau Excellon "
  80. "pentru salvare."
  81. #: FlatCAMApp.py:2365
  82. #, python-format
  83. msgid "[selected] %s is updated, returning to App..."
  84. msgstr "[selected] %s este actualizat, intoarcere la aplicaţie."
  85. #: FlatCAMApp.py:2730
  86. msgid "[ERROR] Could not load defaults file."
  87. msgstr "[ERROR] Nu am putut incărca fişierul cu valori default."
  88. #: FlatCAMApp.py:2742
  89. msgid "[ERROR] Failed to parse defaults file."
  90. msgstr "[ERROR] Parsarea fişierului cu valori default a eșuat."
  91. #: FlatCAMApp.py:2763 FlatCAMApp.py:2767
  92. msgid "Import FlatCAM Preferences"
  93. msgstr "Importa Preferințele FlatCAM"
  94. #: FlatCAMApp.py:2773
  95. msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled."
  96. msgstr "[WARNING_NOTCL] Importul preferințelor FlatCAM a eșuat."
  97. #: FlatCAMApp.py:2781 FlatCAMApp.py:2835 FlatCAMApp.py:3282
  98. msgid "[ERROR_NOTCL] Could not load defaults file."
  99. msgstr ""
  100. "[ERROR_NOTCL] Nu a fost posibilă incărcarea fişierului cu valori default."
  101. #: FlatCAMApp.py:2789 FlatCAMApp.py:3291
  102. msgid "[ERROR_NOTCL] Failed to parse defaults file."
  103. msgstr "[ERROR_NOTCL] Parsarea fişierului cu valori default a eșuat."
  104. #: FlatCAMApp.py:2792
  105. #, python-format
  106. msgid "[success] Imported Defaults from %s"
  107. msgstr "[success] Valorile default au fost importate din %s"
  108. #: FlatCAMApp.py:2807 FlatCAMApp.py:2812
  109. msgid "Export FlatCAM Preferences"
  110. msgstr "Exporta Preferințele FlatCAM"
  111. #: FlatCAMApp.py:2819
  112. msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled."
  113. msgstr "[WARNING_NOTCL] Exportul preferințelor FlatCAM este anulat."
  114. #: FlatCAMApp.py:2854 FlatCAMApp.py:3336
  115. msgid "[ERROR_NOTCL] Failed to write defaults to file."
  116. msgstr "[ERROR_NOTCL] Salvarea valorilor default intr-un fişier a eșuat."
  117. #: FlatCAMApp.py:2907
  118. msgid "[ERROR_NOTCL] Failed to open recent files file for writing."
  119. msgstr ""
  120. "[ERROR_NOTCL] Deschiderea fişierului cu >fişiere recente< pentru a fi salvat "
  121. "a eșuat."
  122. #: FlatCAMApp.py:2984 camlib.py:4457
  123. msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
  124. msgstr ""
  125. "[ERROR_NOTCL] A apărut o eroare internă. Verifică in TCL Shell pt mai multe "
  126. "detalii.\n"
  127. #: FlatCAMApp.py:2985
  128. #, python-brace-format
  129. msgid ""
  130. "Object ({kind}) failed because: {error} \n"
  131. "\n"
  132. msgstr ""
  133. "Obiectul ({kind}) a eșuat din cauza: {error} \n"
  134. "\n"
  135. #: FlatCAMApp.py:3005
  136. msgid "Converting units to "
  137. msgstr "Se convertesc unitatile la "
  138. #: FlatCAMApp.py:3084 FlatCAMApp.py:3087 FlatCAMApp.py:3090 FlatCAMApp.py:3093
  139. #, python-brace-format
  140. msgid ""
  141. "[selected] {kind} created/selected: <span style=\"color:{color};\">{name}</"
  142. "span>"
  143. msgstr ""
  144. "[selected]{kind} creat/selectat: <span style=\"color:{color};\">{name}</span>"
  145. #: FlatCAMApp.py:3187
  146. #, python-brace-format
  147. msgid ""
  148. "<font size=8><B>FlatCAM</B></font><BR>Version {version} {beta} ({date}) - "
  149. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  150. "<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> Main Contributors:</"
  151. "B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu "
  152. "Berthomé<BR>and many others found <a href = \"https://bitbucket.org/jpcgt/"
  153. "flatcam/pull-requests/?state=MERGED\">here.</a><BR><BR>Development is done "
  154. "<a href = \"https://bitbucket.org/jpcgt/flatcam/src/Beta/\">here.</"
  155. "a><BR>DOWNLOAD area <a href = \"https://bitbucket.org/jpcgt/flatcam/"
  156. "downloads/\">here.</a><BR>"
  157. msgstr ""
  158. "<font size=8><B>FlatCAM</B></font><BR>Versiunea {version} {beta} ({date}) - "
  159. "{arch} <BR><BR>Producţie PCB in 2D asistata de calculator.<BR><BR>(c) "
  160. "2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> Contributori principali:</"
  161. "B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu "
  162. "Berthomé<BR>si multi altii care pot fi gasiti aici <a href = \"https://"
  163. "bitbucket.org/jpcgt/flatcam/pull-requests/?state=MERGED\">here.</"
  164. "a><BR><BR>Dezvoltarea este realizata <a href = \"https://bitbucket.org/jpcgt/"
  165. "flatcam/src/Beta/\">aici.</a><BR>Sectiunea DOWNLOAD este <a href = \"https://"
  166. "bitbucket.org/jpcgt/flatcam/downloads/\">aici.</a><BR>"
  167. #: FlatCAMApp.py:3340
  168. msgid "[success] Defaults saved."
  169. msgstr "[success] Valorile default au fost salvate."
  170. #: FlatCAMApp.py:3361
  171. msgid "[ERROR_NOTCL] Could not load factory defaults file."
  172. msgstr ""
  173. "[ERROR_NOTCL] Fişierul cu valori default de fabrică nu a putut fi deschis."
  174. #: FlatCAMApp.py:3370
  175. msgid "[ERROR_NOTCL] Failed to parse factory defaults file."
  176. msgstr ""
  177. "[ERROR_NOTCL] Parsarea fişierului cu valori default de fabrică a eșuat."
  178. #: FlatCAMApp.py:3384
  179. msgid "[ERROR_NOTCL] Failed to write factory defaults to file."
  180. msgstr ""
  181. "[ERROR_NOTCL]] Salvarea fişierului cu valori default de fabrică intr-un "
  182. "fişier a eșuat."
  183. #: FlatCAMApp.py:3388
  184. msgid "Factory defaults saved."
  185. msgstr "Valori default de fabrică au fost salvate."
  186. #: FlatCAMApp.py:3393 flatcamGUI/FlatCAMGUI.py:3106
  187. msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  188. msgstr "[WARNING_NOTCL] Aplicația salvează proiectul. Vă rugăm aşteptați ..."
  189. #: FlatCAMApp.py:3398
  190. msgid ""
  191. "There are files/objects modified in FlatCAM. \n"
  192. "Do you want to Save the project?"
  193. msgstr ""
  194. "FlatCAM are fişiere/obiecte care au fost modificate. \n"
  195. "Dorești să Salvezi proiectul?"
  196. #: FlatCAMApp.py:3401 FlatCAMApp.py:5885
  197. msgid "Save changes"
  198. msgstr "Salvează modificarile."
  199. #: FlatCAMApp.py:3468
  200. msgid ""
  201. "[ERROR] Failed join. The Geometry objects are of different types.\n"
  202. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  203. "is to convert from one to another and retry joining \n"
  204. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  205. "be lost and the result may not be what was expected. \n"
  206. "Check the generated GCODE."
  207. msgstr ""
  208. "[ERROR] Fuziune eșuata. Obiectele Geometrii sunt de tipuri diferite.\n"
  209. "Cel puțin unul este de tip Multigeo și celalalt este tip SinglGeo. O "
  210. "posibilitate este să convertesti dintr-unul in celalalt și să reincerci "
  211. "fuzionarea \n"
  212. "dar un cazul conversiei de la MultiGeo to SingleGeo, se pot pierde "
  213. "informatii și rezultatul ar putea să nu fie cel dorit. \n"
  214. "Verifică codul G-Code generat."
  215. #: FlatCAMApp.py:3509
  216. msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects."
  217. msgstr ""
  218. "[ERROR_NOTCL] Eșuat. Fuzionarea Excellon functionează doar cu obiecte de tip "
  219. "Excellon."
  220. #: FlatCAMApp.py:3531
  221. msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects."
  222. msgstr ""
  223. "[ERROR_NOTCL] Eșuat. Fuzionarea Gerber functionează doar cu obiecte de tip "
  224. "Gerber ."
  225. #: FlatCAMApp.py:3546 FlatCAMApp.py:3571
  226. msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again."
  227. msgstr ""
  228. "[ERROR_NOTCL] Eșuat. Selectează un obiect Geometrie și încearcă din nou."
  229. #: FlatCAMApp.py:3550 FlatCAMApp.py:3575
  230. #, python-format
  231. msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
  232. msgstr "[ERROR_NOTCL] Se astepta o Geometrie FlatCAM, s-a primit %s"
  233. #: FlatCAMApp.py:3563
  234. msgid "[success] A Geometry object was converted to MultiGeo type."
  235. msgstr "[success] Un obiect Geometrie a fost convertit la tipul MultiGeo."
  236. #: FlatCAMApp.py:3589
  237. msgid "[success] A Geometry object was converted to SingleGeo type."
  238. msgstr "[success] Un obiect Geometrie a fost convertit la tipul SingleGeo ."
  239. #: FlatCAMApp.py:3736 FlatCAMApp.py:4572 FlatCAMApp.py:6160 FlatCAMApp.py:6171
  240. #: FlatCAMApp.py:6411 FlatCAMApp.py:6421
  241. msgid "Ok"
  242. msgstr "Ok"
  243. #: FlatCAMApp.py:3778
  244. #, python-format
  245. msgid "[success] Converted units to %s"
  246. msgstr "[success] Conversie unitati la %s"
  247. #: FlatCAMApp.py:3789
  248. msgid "[WARNING_NOTCL] Units conversion cancelled."
  249. msgstr "[WARNING_NOTCL] Conversia unitatilor este anulată."
  250. #: FlatCAMApp.py:4441
  251. msgid "Open file"
  252. msgstr "Deschide fişierul ..."
  253. #: FlatCAMApp.py:4472 FlatCAMApp.py:4477
  254. msgid "Export G-Code ..."
  255. msgstr "Exporta G-Code ..."
  256. #: FlatCAMApp.py:4480
  257. msgid "[WARNING_NOTCL] Export Code cancelled."
  258. msgstr "[WARNING_NOTCL Exportul GCode este anulat."
  259. #: FlatCAMApp.py:4490
  260. msgid "[WARNING] No such file or directory"
  261. msgstr "[WARNING] Nu exista un aşa fişier sau director"
  262. #: FlatCAMApp.py:4497
  263. #, python-format
  264. msgid "Saved to: %s"
  265. msgstr "Salvat in: %s"
  266. #: FlatCAMApp.py:4560 FlatCAMApp.py:4593 FlatCAMApp.py:4604 FlatCAMApp.py:4615
  267. #: flatcamTools/ToolNonCopperClear.py:489 flatcamTools/ToolSolderPaste.py:765
  268. msgid ""
  269. "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
  270. "format."
  271. msgstr ""
  272. "[WARNING_NOTCL] Introdu un diametru al uneltei valid: valoare ne-nula in "
  273. "format Real."
  274. #: FlatCAMApp.py:4565 FlatCAMApp.py:4598 FlatCAMApp.py:4609 FlatCAMApp.py:4620
  275. #: flatcamGUI/FlatCAMGUI.py:3001
  276. msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
  277. msgstr "[WARNING_NOTCL] Adăugarea unei unelte anulată ..."
  278. #: FlatCAMApp.py:4568
  279. msgid ""
  280. "Adding Tool works only when Advanced is checked.\n"
  281. "Go to Preferences -> General - Show Advanced Options."
  282. msgstr ""
  283. "Adăugarea de unelte noi functionează doar in modul Avansat.\n"
  284. "Pentru aceasta mergi in Preferințe -> General - Activează Modul Avansat."
  285. #: FlatCAMApp.py:4681
  286. msgid "Object(s) deleted ..."
  287. msgstr "Obiect(ele) șters(e)."
  288. #: FlatCAMApp.py:4685
  289. msgid "Failed. No object(s) selected..."
  290. msgstr "Eșuat. Nici-un obiect nu este selectat."
  291. #: FlatCAMApp.py:4687
  292. msgid "Save the work in Editor and try again ..."
  293. msgstr "Salvează continutul din Editor și încearcă din nou."
  294. #: FlatCAMApp.py:4700
  295. msgid "Click to set the origin ..."
  296. msgstr "Click pentru a seta originea..."
  297. #: FlatCAMApp.py:4712
  298. msgid "Jump to ..."
  299. msgstr "Sari la ..."
  300. #: FlatCAMApp.py:4713
  301. msgid "Enter the coordinates in format X,Y:"
  302. msgstr "Introduceți coordonatele in format X,Y:"
  303. #: FlatCAMApp.py:4720
  304. msgid "Wrong coordinates. Enter coordinates in format: X,Y"
  305. msgstr "Coordonate gresite. Introduceți coordonatele in format X,Y."
  306. #: FlatCAMApp.py:4738 flatcamEditors/FlatCAMExcEditor.py:2320
  307. #: flatcamEditors/FlatCAMExcEditor.py:2327
  308. #: flatcamEditors/FlatCAMGeoEditor.py:3645
  309. #: flatcamEditors/FlatCAMGeoEditor.py:3659
  310. #: flatcamEditors/FlatCAMGrbEditor.py:1040
  311. #: flatcamEditors/FlatCAMGrbEditor.py:1141
  312. #: flatcamEditors/FlatCAMGrbEditor.py:1409
  313. #: flatcamEditors/FlatCAMGrbEditor.py:1666
  314. #: flatcamEditors/FlatCAMGrbEditor.py:3960
  315. #: flatcamEditors/FlatCAMGrbEditor.py:3974 flatcamGUI/FlatCAMGUI.py:2414
  316. #: flatcamGUI/FlatCAMGUI.py:2426
  317. msgid "[success] Done."
  318. msgstr "[success] Executat."
  319. #: FlatCAMApp.py:4870 FlatCAMApp.py:4937
  320. msgid "[WARNING_NOTCL] No object is selected. Select an object and try again."
  321. msgstr ""
  322. "[WARNING_NOTCL] Nici-un obiect nu este selectat. Selectează un obiect și "
  323. "incearcă din nou."
  324. #: FlatCAMApp.py:4978
  325. msgid "[success] Origin set ..."
  326. msgstr "[success] Originea a fost setată ..."
  327. #: FlatCAMApp.py:4998
  328. msgid "Preferences"
  329. msgstr "Preferințe"
  330. #: FlatCAMApp.py:5018
  331. msgid "[WARNING_NOTCL] No object selected to Flip on Y axis."
  332. msgstr ""
  333. "[WARNING_NOTCL] Nu sete nici-un obiect selectat pentru oglindire pe axa Y."
  334. #: FlatCAMApp.py:5043
  335. msgid "[success] Flip on Y axis done."
  336. msgstr "[success] Oglindire pe axa Y executată."
  337. #: FlatCAMApp.py:5045 FlatCAMApp.py:5085
  338. #: flatcamEditors/FlatCAMGeoEditor.py:1355
  339. #: flatcamEditors/FlatCAMGrbEditor.py:5343 flatcamTools/ToolTransform.py:748
  340. #, python-format
  341. msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
  342. msgstr "[ERROR_NOTCL] Datorita %s, oglindirea a eșuat."
  343. #: FlatCAMApp.py:5058
  344. msgid "[WARNING_NOTCL] No object selected to Flip on X axis."
  345. msgstr ""
  346. "[WARNING_NOTCL] Nu sete nici-un obiect selectat pentru oglindire pe axa X."
  347. #: FlatCAMApp.py:5083
  348. msgid "[success] Flip on X axis done."
  349. msgstr "[success] Oglindirea pe axa X executată."
  350. #: FlatCAMApp.py:5098
  351. msgid "[WARNING_NOTCL] No object selected to Rotate."
  352. msgstr "[WARNING_NOTCL] Nici-un obiect selectat pentru Rotaţie."
  353. #: FlatCAMApp.py:5101 FlatCAMApp.py:5146 FlatCAMApp.py:5177
  354. msgid "Transform"
  355. msgstr "Transformare"
  356. #: FlatCAMApp.py:5101 FlatCAMApp.py:5146 FlatCAMApp.py:5177
  357. msgid "Enter the Angle value:"
  358. msgstr "Introduceți valoaea Unghiului:"
  359. #: FlatCAMApp.py:5131
  360. msgid "[success] Rotation done."
  361. msgstr "[success] Rotaţie executată."
  362. #: FlatCAMApp.py:5133 flatcamEditors/FlatCAMGeoEditor.py:1298
  363. #: flatcamEditors/FlatCAMGrbEditor.py:5272 flatcamTools/ToolTransform.py:677
  364. #, python-format
  365. msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
  366. msgstr "[ERROR_NOTCL] Datorita %s, Rotatia a eșuat."
  367. #: FlatCAMApp.py:5144
  368. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
  369. msgstr "[WARNING_NOTCL] Nici-un obiect selectat pentru Deformare pe axa X."
  370. #: FlatCAMApp.py:5165
  371. msgid "[success] Skew on X axis done."
  372. msgstr "[success] Deformare pe axa X executată."
  373. #: FlatCAMApp.py:5175
  374. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
  375. msgstr "[WARNING_NOTCL] Nici-un obiect selectat pentru Deformare pe axa Y."
  376. #: FlatCAMApp.py:5196
  377. msgid "[success] Skew on Y axis done."
  378. msgstr "[success] Deformare pe axa Y executată."
  379. #: FlatCAMApp.py:5266
  380. msgid "Grid On/Off"
  381. msgstr "Grid On/Off"
  382. #: FlatCAMApp.py:5279 flatcamEditors/FlatCAMGeoEditor.py:937
  383. #: flatcamEditors/FlatCAMGrbEditor.py:2381
  384. #: flatcamEditors/FlatCAMGrbEditor.py:4861 flatcamGUI/ObjectUI.py:991
  385. #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208
  386. #: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131
  387. #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:479
  388. #: flatcamTools/ToolTransform.py:337
  389. msgid "Add"
  390. msgstr "Adaugă"
  391. #: FlatCAMApp.py:5280 FlatCAMObj.py:3276
  392. #: flatcamEditors/FlatCAMGrbEditor.py:2386 flatcamGUI/FlatCAMGUI.py:527
  393. #: flatcamGUI/FlatCAMGUI.py:724 flatcamGUI/FlatCAMGUI.py:1616
  394. #: flatcamGUI/FlatCAMGUI.py:1953 flatcamGUI/ObjectUI.py:1007
  395. #: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143
  396. #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:481
  397. msgid "Delete"
  398. msgstr "Șterge"
  399. #: FlatCAMApp.py:5293
  400. msgid "New Grid ..."
  401. msgstr "Grid nou ..."
  402. #: FlatCAMApp.py:5294
  403. msgid "Enter a Grid Value:"
  404. msgstr "Introduceti of valoare pt Grid:"
  405. #: FlatCAMApp.py:5302 FlatCAMApp.py:5329
  406. msgid ""
  407. "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
  408. "format."
  409. msgstr ""
  410. "[WARNING_NOTCL] Introduceți o valoare pentru Grila ne-nula și in format Real."
  411. #: FlatCAMApp.py:5308
  412. msgid "[success] New Grid added ..."
  413. msgstr "[success] O noua valoare pt Grila a fost adăugată..."
  414. #: FlatCAMApp.py:5311
  415. msgid "[WARNING_NOTCL] Grid already exists ..."
  416. msgstr "[WARNING_NOTCL] Grila există deja."
  417. #: FlatCAMApp.py:5314
  418. msgid "[WARNING_NOTCL] Adding New Grid cancelled ..."
  419. msgstr "[WARNING_NOTCL] Adăugarea unei valori de Grilă a fost anulată ..."
  420. #: FlatCAMApp.py:5336
  421. msgid "[ERROR_NOTCL] Grid Value does not exist ..."
  422. msgstr "[ERROR_NOTCL] Valoarea Grilei nu există ..."
  423. #: FlatCAMApp.py:5339
  424. msgid "[success] Grid Value deleted ..."
  425. msgstr "[success] Valoarea Grila a fost stearsă."
  426. #: FlatCAMApp.py:5342
  427. msgid "[WARNING_NOTCL] Delete Grid value cancelled ..."
  428. msgstr "[WARNING_NOTCL] Ștergerea unei valori de Grilă a fost anulată ..."
  429. #: FlatCAMApp.py:5381
  430. msgid "[WARNING_NOTCL] No object selected to copy it's name"
  431. msgstr ""
  432. "[WARNING_NOTCL] Nici-un obiect nu este selectat pentru i se copia valoarea"
  433. #: FlatCAMApp.py:5385
  434. msgid "Name copied on clipboard ..."
  435. msgstr "Numele a fost copiat pe Clipboard ..."
  436. #: FlatCAMApp.py:5427 flatcamEditors/FlatCAMGrbEditor.py:3901
  437. msgid "[success] Coordinates copied to clipboard."
  438. msgstr "[success] Coordonatele au fost copiate in clipboard."
  439. #: FlatCAMApp.py:5683 FlatCAMApp.py:5686 FlatCAMApp.py:5689 FlatCAMApp.py:5692
  440. #: FlatCAMApp.py:5707 FlatCAMApp.py:5710 FlatCAMApp.py:5713 FlatCAMApp.py:5716
  441. #: FlatCAMApp.py:5756 FlatCAMApp.py:5759 FlatCAMApp.py:5762 FlatCAMApp.py:5765
  442. #: ObjectCollection.py:719 ObjectCollection.py:722 ObjectCollection.py:725
  443. #: ObjectCollection.py:728
  444. #, python-brace-format
  445. msgid "[selected]<span style=\"color:{color};\">{name}</span> selected"
  446. msgstr "[selected]<span style=\"color:{color};\">{name}</span> selectat"
  447. #: FlatCAMApp.py:5882
  448. msgid ""
  449. "There are files/objects opened in FlatCAM.\n"
  450. "Creating a New project will delete them.\n"
  451. "Do you want to Save the project?"
  452. msgstr ""
  453. "Exista fişiere/obiecte deschide in FlatCAM.\n"
  454. "Crearea unui nou Proiect le va șterge..\n"
  455. "Doriti să Salvati proiectul curentt?"
  456. #: FlatCAMApp.py:5903
  457. msgid "[success] New Project created..."
  458. msgstr "[success] Un nou Proiect a fost creat..."
  459. #: FlatCAMApp.py:6019 FlatCAMApp.py:6022 flatcamGUI/FlatCAMGUI.py:608
  460. #: flatcamGUI/FlatCAMGUI.py:1832
  461. msgid "Open Gerber"
  462. msgstr "Încarcă Gerber"
  463. #: FlatCAMApp.py:6027
  464. msgid "[WARNING_NOTCL] Open Gerber cancelled."
  465. msgstr "[WARNING_NOTCL] Incărcarea unui fişier Gerber este anulată."
  466. #: FlatCAMApp.py:6048 FlatCAMApp.py:6051 flatcamGUI/FlatCAMGUI.py:609
  467. #: flatcamGUI/FlatCAMGUI.py:1833
  468. msgid "Open Excellon"
  469. msgstr "Încarcă Excellon"
  470. #: FlatCAMApp.py:6056
  471. msgid "[WARNING_NOTCL] Open Excellon cancelled."
  472. msgstr "[WARNING_NOTCL] Incărcarea unui fişier Excellon este anulată."
  473. #: FlatCAMApp.py:6078 FlatCAMApp.py:6081
  474. msgid "Open G-Code"
  475. msgstr "Încarcă G-Code"
  476. #: FlatCAMApp.py:6086
  477. msgid "[WARNING_NOTCL] Open G-Code cancelled."
  478. msgstr "[WARNING_NOTCL] Incărcarea unui fişier G-Code este anulată."
  479. #: FlatCAMApp.py:6104 FlatCAMApp.py:6107
  480. msgid "Open Project"
  481. msgstr "Încarcă Project"
  482. #: FlatCAMApp.py:6115
  483. msgid "[WARNING_NOTCL] Open Project cancelled."
  484. msgstr "[WARNING_NOTCL] Incărcarea unui Proiect a fost anulată."
  485. #: FlatCAMApp.py:6134 FlatCAMApp.py:6137
  486. msgid "Open Configuration File"
  487. msgstr "Încarcă un fişier de Configurare"
  488. #: FlatCAMApp.py:6141
  489. msgid "[WARNING_NOTCL] Open Config cancelled."
  490. msgstr "[WARNING_NOTCL] Incărcarea unui fişier de Configurare este anulată."
  491. #: FlatCAMApp.py:6156 FlatCAMApp.py:6407 FlatCAMApp.py:8560 FlatCAMApp.py:8580
  492. #: FlatCAMApp.py:8601 FlatCAMApp.py:8623
  493. msgid "[WARNING_NOTCL] No object selected."
  494. msgstr "[WARNING_NOTCL] Nici-un obiect selectat."
  495. #: FlatCAMApp.py:6157 FlatCAMApp.py:6408
  496. msgid "Please Select a Geometry object to export"
  497. msgstr "Selectează un obiect Geometrie pentru export"
  498. #: FlatCAMApp.py:6168
  499. msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  500. msgstr ""
  501. "[ERROR_NOTCL] Doar obiectele Geometrie, Gerber și CNCJob pot fi folosite."
  502. #: FlatCAMApp.py:6181 FlatCAMApp.py:6185
  503. msgid "Export SVG"
  504. msgstr "Exporta SVG"
  505. #: FlatCAMApp.py:6190
  506. msgid "[WARNING_NOTCL] Export SVG cancelled."
  507. msgstr "[WARNING_NOTCL] Exportul SVG este anulat."
  508. #: FlatCAMApp.py:6209
  509. msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  510. msgstr ""
  511. "[[WARNING_NOTCL]] Datele trebuie să fie organizate intr-o arie 3D cu ultima "
  512. "dimensiune cu valoarea 3 sau 4."
  513. #: FlatCAMApp.py:6215 FlatCAMApp.py:6219
  514. msgid "Export PNG Image"
  515. msgstr "Exporta imagine PNG"
  516. #: FlatCAMApp.py:6224
  517. msgid "Export PNG cancelled."
  518. msgstr "Exportul imagine PNG este anulat."
  519. #: FlatCAMApp.py:6243
  520. msgid ""
  521. "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  522. msgstr ""
  523. "[WARNING_NOTCL] Nici-un obiect selectat. Selectează un obiect Gerber pentru "
  524. "export."
  525. #: FlatCAMApp.py:6248 FlatCAMApp.py:6371
  526. msgid ""
  527. "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  528. msgstr ""
  529. "[ERROR_NOTCL] Eșuat. Doar obiectele tip Gerber pot fi salvate ca fişiere "
  530. "Gerber..."
  531. #: FlatCAMApp.py:6260
  532. msgid "Save Gerber source file"
  533. msgstr "Salvează codul sursa Gerber ca fişier"
  534. #: FlatCAMApp.py:6265
  535. msgid "[WARNING_NOTCL] Save Gerber source file cancelled."
  536. msgstr "[WARNING_NOTCL] Salvarea codului sursa Gerber este anulată."
  537. #: FlatCAMApp.py:6284
  538. msgid ""
  539. "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
  540. "export."
  541. msgstr ""
  542. "[WARNING_NOTCL] Nici-un obiect selectat. Selectează un obiect Excellon "
  543. "pentru export."
  544. #: FlatCAMApp.py:6289 FlatCAMApp.py:6330
  545. msgid ""
  546. "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  547. msgstr ""
  548. "[ERROR_NOTCL] Eșuat. Doar obiectele tip Excellon pot fi salvate ca fişiere "
  549. "Excellon ..."
  550. #: FlatCAMApp.py:6297 FlatCAMApp.py:6301
  551. msgid "Save Excellon source file"
  552. msgstr "Salvează codul sursa Excellon ca fişier"
  553. #: FlatCAMApp.py:6306
  554. msgid "[WARNING_NOTCL] Saving Excellon source file cancelled."
  555. msgstr "[WARNING_NOTCL] Salvarea codului sursa Excellon este anulată."
  556. #: FlatCAMApp.py:6325
  557. msgid ""
  558. "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
  559. "export."
  560. msgstr ""
  561. "[WARNING_NOTCL] Nici-un obiect selectat. Selectează un obiect Excellon "
  562. "pentru export."
  563. #: FlatCAMApp.py:6338 FlatCAMApp.py:6342
  564. msgid "Export Excellon"
  565. msgstr "Exporta Excellon"
  566. #: FlatCAMApp.py:6347
  567. msgid "[WARNING_NOTCL] Export Excellon cancelled."
  568. msgstr "[WARNING_NOTCL] Exportul Excellon anulat."
  569. #: FlatCAMApp.py:6366
  570. msgid ""
  571. "[WARNING_NOTCL] No object selected. Please Select an Gerber object to export."
  572. msgstr ""
  573. "[WARNING_NOTCL] Nici-un obiect selectat. Selectează un obiect Gerber pentru "
  574. "export."
  575. #: FlatCAMApp.py:6379 FlatCAMApp.py:6383
  576. msgid "Export Gerber"
  577. msgstr "Exporta Gerber"
  578. #: FlatCAMApp.py:6388
  579. msgid "[WARNING_NOTCL] Export Gerber cancelled."
  580. msgstr "[WARNING_NOTCL] Exportul Gerber este anulat."
  581. #: FlatCAMApp.py:6418
  582. msgid "[ERROR_NOTCL] Only Geometry objects can be used."
  583. msgstr "[ERROR_NOTCL] Doar obiecte tip Geometrie pot fi folosite."
  584. #: FlatCAMApp.py:6432 FlatCAMApp.py:6436
  585. msgid "Export DXF"
  586. msgstr "Exporta DXF"
  587. #: FlatCAMApp.py:6442
  588. msgid "[WARNING_NOTCL] Export DXF cancelled."
  589. msgstr "[WARNING_NOTCL] Exportul DXF anulat."
  590. #: FlatCAMApp.py:6462 FlatCAMApp.py:6465
  591. msgid "Import SVG"
  592. msgstr "Importa SVG"
  593. #: FlatCAMApp.py:6474
  594. msgid "[WARNING_NOTCL] Open SVG cancelled."
  595. msgstr "[WARNING_NOTCL] Importul SVG anulat."
  596. #: FlatCAMApp.py:6493 FlatCAMApp.py:6497
  597. msgid "Import DXF"
  598. msgstr "Importa DXF"
  599. #: FlatCAMApp.py:6506
  600. msgid "[WARNING_NOTCL] Open DXF cancelled."
  601. msgstr "[WARNING_NOTCL] Incărcarea fişier DXF anulată."
  602. #: FlatCAMApp.py:6524
  603. #, python-format
  604. msgid "%s"
  605. msgstr "%s"
  606. #: FlatCAMApp.py:6544
  607. msgid ""
  608. "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  609. msgstr ""
  610. "[WARNING_NOTCL] Selectati un obiect Gerber sau Excellon pentru a-i vedea "
  611. "codul sursa."
  612. #: FlatCAMApp.py:6551
  613. msgid ""
  614. "[WARNING_NOTCL] There is no selected object for which to see it's source "
  615. "file code."
  616. msgstr "[WARNING_NOTCL] Nici-un obiect selectat pentru a-i vedea codul sursa."
  617. #: FlatCAMApp.py:6559
  618. msgid "Source Editor"
  619. msgstr "Editor Cod"
  620. #: FlatCAMApp.py:6569
  621. #, python-format
  622. msgid "[ERROR]App.on_view_source() -->%s"
  623. msgstr "[ERROR]App.on_view_source() -->%s"
  624. #: FlatCAMApp.py:6581 FlatCAMApp.py:7723 FlatCAMObj.py:5560
  625. #: flatcamTools/ToolSolderPaste.py:1278
  626. msgid "Code Editor"
  627. msgstr "Editor Cod"
  628. #: FlatCAMApp.py:6593
  629. msgid "Script Editor"
  630. msgstr "Editor Script."
  631. #: FlatCAMApp.py:6596
  632. msgid ""
  633. "#\n"
  634. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  635. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  636. "html\n"
  637. "#\n"
  638. "\n"
  639. "# FlatCAM commands list:\n"
  640. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  641. "AlignDrillGrid, ClearShell, Cncjob,\n"
  642. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  643. "GeoUnion, GetNames, GetSys,\n"
  644. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  645. "ListSys, MillHoles, Mirror, New,\n"
  646. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  647. "Options, Paint, Panelize,\n"
  648. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  649. "SubtractRectangle, Version,\n"
  650. "# WriteGCode\n"
  651. "#\n"
  652. "\n"
  653. msgstr ""
  654. "#\n"
  655. "# CREAZA UN NOU SCRIPT TCL FLATCAM\n"
  656. "# Tutorial TCL aici: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  657. "html\n"
  658. "#\n"
  659. "\n"
  660. "# Lista de comenzi FlatCAM:\n"
  661. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  662. "AlignDrillGrid, ClearShell, Cncjob,\n"
  663. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  664. "GeoUnion, GetNames, GetSys,\n"
  665. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  666. "ListSys, MillHoles, Mirror, New,\n"
  667. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  668. "Options, Paint, Panelize,\n"
  669. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  670. "SubtractRectangle, Version,\n"
  671. "# WriteGCode\n"
  672. "#\n"
  673. "\n"
  674. #: FlatCAMApp.py:6619 FlatCAMApp.py:6622
  675. msgid "Open TCL script"
  676. msgstr "Încarcă TCL script"
  677. #: FlatCAMApp.py:6630
  678. msgid "[WARNING_NOTCL] Open TCL script cancelled."
  679. msgstr "[WARNING_NOTCL] Incărcarea TCL script anulată."
  680. #: FlatCAMApp.py:6642
  681. #, python-format
  682. msgid "[ERROR]App.on_fileopenscript() -->%s"
  683. msgstr "[ERROR]App.on_fileopenscript() -->%s"
  684. #: FlatCAMApp.py:6668 FlatCAMApp.py:6671
  685. msgid "Run TCL script"
  686. msgstr "Ruleaza TCL script"
  687. #: FlatCAMApp.py:6679
  688. msgid "[WARNING_NOTCL] Run TCL script cancelled."
  689. msgstr "[WARNING_NOTCL] Rularea fisierului Script a fost anulată."
  690. #: FlatCAMApp.py:6729 FlatCAMApp.py:6733
  691. msgid "Save Project As ..."
  692. msgstr "Salvează Proiectul ca ..."
  693. #: FlatCAMApp.py:6730
  694. #, python-brace-format
  695. msgid "{l_save}/Project_{date}"
  696. msgstr "{l_save}/Proiect_{date}"
  697. #: FlatCAMApp.py:6738
  698. msgid "[WARNING_NOTCL] Save Project cancelled."
  699. msgstr "[WARNING_NOTCL] Salvarea Proiect anulată."
  700. #: FlatCAMApp.py:6782
  701. msgid "Exporting SVG"
  702. msgstr "SVG in curs de export"
  703. #: FlatCAMApp.py:6816 FlatCAMApp.py:6922 FlatCAMApp.py:7037
  704. #, python-format
  705. msgid "[success] SVG file exported to %s"
  706. msgstr "[success] Fişier SVG exportat in %s"
  707. #: FlatCAMApp.py:6847 FlatCAMApp.py:6968
  708. #, python-format
  709. msgid "[WARNING_NOTCL] No object Box. Using instead %s"
  710. msgstr ""
  711. "[WARNING_NOTCL] Nu este nici-un container Box pentru obiect. Se foloseşte %s"
  712. #: FlatCAMApp.py:6925 FlatCAMApp.py:7040
  713. msgid "Generating Film ... Please wait."
  714. msgstr "Filmul se generează ... Aşteaptă!"
  715. #: FlatCAMApp.py:7188
  716. #, python-format
  717. msgid "[success] Excellon file exported to %s"
  718. msgstr "[success] Fişierul Excellon exportat in %s"
  719. #: FlatCAMApp.py:7195
  720. msgid "Exporting Excellon"
  721. msgstr "Excellon in curs de export"
  722. #: FlatCAMApp.py:7200 FlatCAMApp.py:7207
  723. msgid "[ERROR_NOTCL] Could not export Excellon file."
  724. msgstr "[ERROR_NOTCL] Fişierul Excellon nu a putut fi exportat."
  725. #: FlatCAMApp.py:7305
  726. #, python-format
  727. msgid "[success] Gerber file exported to %s"
  728. msgstr "[success] Fişier Gerber exportat in %s"
  729. #: FlatCAMApp.py:7312
  730. msgid "Exporting Gerber"
  731. msgstr "Gerber in curs de export"
  732. #: FlatCAMApp.py:7317 FlatCAMApp.py:7324
  733. msgid "[ERROR_NOTCL] Could not export Gerber file."
  734. msgstr "[ERROR_NOTCL] Fişierul Gerber nu a putut fi exportat."
  735. #: FlatCAMApp.py:7364
  736. #, python-format
  737. msgid "[success] DXF file exported to %s"
  738. msgstr "[success] Fişierul DXF exportat in %s"
  739. #: FlatCAMApp.py:7370
  740. msgid "Exporting DXF"
  741. msgstr "DXF in curs de export"
  742. #: FlatCAMApp.py:7375 FlatCAMApp.py:7382
  743. msgid "[[WARNING_NOTCL]] Could not export DXF file."
  744. msgstr "[[WARNING_NOTCL]] Fişierul DXF nu a putut fi exportat."
  745. #: FlatCAMApp.py:7402 FlatCAMApp.py:7444 FlatCAMApp.py:7488
  746. msgid ""
  747. "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
  748. "Gerber are supported"
  749. msgstr ""
  750. "[ERROR_NOTCL] Typul parametrului nu este compatibil. Doar Geometrie is "
  751. "Gerber sunt acceptate."
  752. #: FlatCAMApp.py:7412
  753. msgid "Importing SVG"
  754. msgstr "SVG in curs de ia fi importat"
  755. #: FlatCAMApp.py:7423 FlatCAMApp.py:7465 FlatCAMApp.py:7508 FlatCAMApp.py:7585
  756. #: FlatCAMApp.py:7646 FlatCAMApp.py:7709 flatcamTools/ToolPDF.py:212
  757. #, python-format
  758. msgid "[success] Opened: %s"
  759. msgstr "[success] Incărcat: %s"
  760. #: FlatCAMApp.py:7454
  761. msgid "Importing DXF"
  762. msgstr "DXF in curs de a fi importat"
  763. #: FlatCAMApp.py:7496
  764. msgid "Importing Image"
  765. msgstr "Imaginea in curs de a fi importata"
  766. #: FlatCAMApp.py:7537 FlatCAMApp.py:7539
  767. #, python-format
  768. msgid "[ERROR_NOTCL] Failed to open file: %s"
  769. msgstr "[ERROR_NOTCL] Eşec in incărcarea fişierului %s"
  770. #: FlatCAMApp.py:7542
  771. #, python-brace-format
  772. msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  773. msgstr "[ERROR_NOTCL] Eşec in parsarea fişierului: {name}. {error}"
  774. #: FlatCAMApp.py:7549 FlatCAMObj.py:4239
  775. #: flatcamEditors/FlatCAMExcEditor.py:2077
  776. msgid "[ERROR] An internal error has ocurred. See shell.\n"
  777. msgstr ""
  778. "[ERROR] A apărut o eroare interna. Verifică in TCL Shell pt mai multe "
  779. "detalii.\n"
  780. #: FlatCAMApp.py:7558
  781. msgid ""
  782. "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  783. msgstr ""
  784. "[ERROR_NOTCL] Obiectul nu estetip Gerber sau este gol. Se anulează crearea "
  785. "obiectului."
  786. #: FlatCAMApp.py:7566
  787. msgid "Opening Gerber"
  788. msgstr "Gerber in curs de incărcare"
  789. #: FlatCAMApp.py:7576
  790. msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  791. msgstr ""
  792. "[ERROR_NOTCL] Incărcarea Gerber a eșuat. Probabil nu este de tip Gerber."
  793. #: FlatCAMApp.py:7609 flatcamTools/ToolPcbWizard.py:421
  794. msgid "[ERROR_NOTCL] This is not Excellon file."
  795. msgstr "[ERROR_NOTCL] Acesta nu este un fişier Excellon."
  796. #: FlatCAMApp.py:7612
  797. #, python-format
  798. msgid "[ERROR_NOTCL] Cannot open file: %s"
  799. msgstr "[ERROR_NOTCL] Fişierul %s nu se poate incărca."
  800. #: FlatCAMApp.py:7617 flatcamTools/ToolPcbWizard.py:429
  801. msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  802. msgstr ""
  803. "[ERROR_NOTCL] A apărut o eroare interna. Verifică in TCL Shell pt mai multe "
  804. "detalii.\n"
  805. #: FlatCAMApp.py:7630 flatcamTools/ToolPDF.py:262
  806. #: flatcamTools/ToolPcbWizard.py:442
  807. #, python-format
  808. msgid "[ERROR_NOTCL] No geometry found in file: %s"
  809. msgstr ""
  810. "[ERROR_NOTCL] Nici-o informaţie de tip geometrie nu s-a gasit in fişierul: %s"
  811. #: FlatCAMApp.py:7633
  812. msgid "Opening Excellon."
  813. msgstr "Excellon in curs de incărcare"
  814. #: FlatCAMApp.py:7639
  815. msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  816. msgstr ""
  817. "[ERROR_NOTCL] Incărcarea Excellon a eșuat. Probabil nu este de tip Excellon."
  818. #: FlatCAMApp.py:7676
  819. #, python-format
  820. msgid "[ERROR_NOTCL] Failed to open %s"
  821. msgstr "[ERROR_NOTCL] Incărcarea fişierului %s a eșuat."
  822. #: FlatCAMApp.py:7686
  823. msgid "[ERROR_NOTCL] This is not GCODE"
  824. msgstr "[ERROR_NOTCL] Acest obiect nu este de tip GCode"
  825. #: FlatCAMApp.py:7692
  826. msgid "Opening G-Code."
  827. msgstr "G-Code in curs de incărcare"
  828. #: FlatCAMApp.py:7700
  829. msgid ""
  830. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  831. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  832. "processing"
  833. msgstr ""
  834. "[ERROR_NOTCL] Eşec in crearea unui obiect CNCJob. Probabil nu este un fişier "
  835. "GCode.\n"
  836. "Incercarea de a crea un obiect CNCJob din G-Code a eșuat in timpul "
  837. "procesarii."
  838. #: FlatCAMApp.py:7740
  839. #, python-format
  840. msgid "[ERROR_NOTCL] Failed to open config file: %s"
  841. msgstr "[ERROR_NOTCL] Eşec in incărcarea fişierului de configurare: %s"
  842. #: FlatCAMApp.py:7766 FlatCAMApp.py:7783
  843. #, python-format
  844. msgid "[ERROR_NOTCL] Failed to open project file: %s"
  845. msgstr "[ERROR_NOTCL] Eşec in incărcarea fişierului proiect: %s"
  846. #: FlatCAMApp.py:7806
  847. #, python-format
  848. msgid "[success] Project loaded from: %s"
  849. msgstr "[success] Proeictul a fost incărcat din: %s"
  850. #: FlatCAMApp.py:7911
  851. msgid "Available commands:\n"
  852. msgstr "Comenzi disponibile:\n"
  853. #: FlatCAMApp.py:7913
  854. msgid ""
  855. "\n"
  856. "\n"
  857. "Type help <command_name> for usage.\n"
  858. " Example: help open_gerber"
  859. msgstr ""
  860. "\n"
  861. "\n"
  862. "Introduceți help <nume_comanda> pentru utilizare.\n"
  863. "Exemplu: help open_gerber"
  864. #: FlatCAMApp.py:8063
  865. msgid "Shows list of commands."
  866. msgstr "Arata o lista de comenzi."
  867. #: FlatCAMApp.py:8120
  868. msgid "[ERROR_NOTCL] Failed to load recent item list."
  869. msgstr "[ERROR_NOTCL] Eşec in incărcarea listei cu obiecte recente."
  870. #: FlatCAMApp.py:8127
  871. msgid "[ERROR_NOTCL] Failed to parse recent item list."
  872. msgstr "[ERROR_NOTCL] Eşec in parsarea listei cu obiecte recente."
  873. #: FlatCAMApp.py:8171
  874. msgid "Clear Recent files"
  875. msgstr "Sterge fişierele recente"
  876. #: FlatCAMApp.py:8188 flatcamGUI/FlatCAMGUI.py:968
  877. msgid "<b>Shortcut Key List</b>"
  878. msgstr "<b>Lista cu taste Shortcut</b>"
  879. #: FlatCAMApp.py:8195
  880. msgid ""
  881. "\n"
  882. "<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from "
  883. "Project Tab</strong></span></p>\n"
  884. "\n"
  885. "<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
  886. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  887. "\n"
  888. "<ol>\n"
  889. "\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, "
  890. "DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, "
  891. "toolbars, key shortcuts or even dragging and dropping the files on the GUI."
  892. "<br />\n"
  893. "\t<br />\n"
  894. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  895. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  896. "through the menu/toolbar links offered within the app.</span><br />\n"
  897. "\t&nbsp;</li>\n"
  898. "\t<li><span style=\"font-size:10px\">Once an object is available in the "
  899. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  900. "strong>(more simpler is to double click the object name in the Project Tab), "
  901. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  902. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  903. ">\n"
  904. "\t<br />\n"
  905. "\tIf the selection of the object is done on the canvas by single click "
  906. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  907. "properties will be displayed into the Selected Tab. Alternatively, double "
  908. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  909. "strong> and populate it even if it was out of focus.<br />\n"
  910. "\t<br />\n"
  911. "\tYou can change the parameters in this screen and the flow direction is "
  912. "like this:<br />\n"
  913. "\t<br />\n"
  914. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  915. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  916. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  917. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  918. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  919. "span></li>\n"
  920. "</ol>\n"
  921. "\n"
  922. "<p><span style=\"font-size:10px\">A list of key shortcuts is available "
  923. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  924. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  925. "\n"
  926. " "
  927. msgstr ""
  928. "\n"
  929. "<p><span style=\"font-size:14px\"><strong>Tab Selectat - Alege o intrare din "
  930. "Tab-ul Proiect</strong></span></p>\n"
  931. "\n"
  932. "<p><span style=\"font-size:10px\"><strong>Detalii</strong>:<br />\n"
  933. "Fluxul normal când se lucrează in FlatCAM este următorul:</span></p>\n"
  934. "\n"
  935. "<ol>\n"
  936. "\t<li><span style=\"font-size:10px\">Încarcă/Importa un fişier Gerber, "
  937. "Excellon, Gcode, DXF, Imagine Raster sau SVG in FlatCAM folosind ori "
  938. "meniurile, toolbarurile, tastele shortcut sau chiar tragerea și eliberarea "
  939. "fişierelor in fereastra FlatCAM.<br />\n"
  940. "\t<br />\n"
  941. "\tPoti să incarci și un <strong>proiect FlatCAM</strong> prin dublu click pe "
  942. "fişierul proiect, tragerea și eliberarea fişierului peste FLATCAM GUI sau "
  943. "prin sistemul de meniuri/toolbaruri oferit in cadrul aplicaţiei.</span><br /"
  944. ">\n"
  945. "\t&nbsp;</li>\n"
  946. "\t<li><span style=\"font-size:10px\">Odata ce un obiect este disponibil in "
  947. "Tab-ul Proiect, prin selectarea și focalizarea in <strong>Tab-ul SELECTAT</"
  948. "strong>(mai simplu prin dublu click pe numele obiectului in lista dinTab-ul "
  949. "Proiect), <strong>Tab-ul SELECTAT </strong>va fi updatat conform cu tipul "
  950. "sau: Gerber, Excellon, Geometrie sau CNCJob.<br />\n"
  951. "\t<br />\n"
  952. "\tDaca selectia este efectuata pe Canvas prin simplu click și <strong>Tab-ul "
  953. "SELECTAT</strong> este in focus, din nou, proprietatile obiectului vor fi "
  954. "afisate in Tab-ul SELECTAT. Alternativ, prin dublu click pe obiect in Canvas "
  955. "se va aduce <strong>Tab-ul SELECTAT</strong> in focus și va fi actualizat cu "
  956. "informaţie chair daca initial nu era focalizat.<br />\n"
  957. "\t<br />\n"
  958. "\tO suma de parametri se pot schimba in acest Tab and directia in lucru este "
  959. "urmatoarea:<br />\n"
  960. "\t<br />\n"
  961. "\t<strong>Obiectul Gerber/Excellon</strong> -&gt; Schimba Parametru -&gt; "
  962. "Generează Geometrie -&gt;<strong>Obiectul Geometrie </strong>-&gt; Adaugă "
  963. "unelte (prin schimbare parametru in Tab-ul SELECTAT) -&gt; Generează CNCJob -"
  964. "&gt;<strong> Obiect CNCJob</strong>-&gt; Verifică GCode (folosind Editare "
  965. "cod CNC) și/sau Adaugă cod GCode la inceput/la sfârşit (din nou, efectuat in "
  966. "<strong>Tab-ul SELECTAT)&nbsp;</strong>-&gt; Salvează GCode</span></li>\n"
  967. "</ol>\n"
  968. "\n"
  969. "<p><span style=\"font-size:10px\">O lista cu tastele shortcut este "
  970. "disponibila ca și meniu in <strong>Help -&gt;Lista Shortcut-uri</"
  971. "strong>&nbsp;sau prin propria tasta shortcutt: <strng>F3</strong>.</span></"
  972. "p>\n"
  973. "\n"
  974. " "
  975. #: FlatCAMApp.py:8302
  976. msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  977. msgstr ""
  978. "[WARNING_NOTCL] Verificarea pentru ultima versiune a eșuat. Nu a fost "
  979. "posibilă conectarea la server."
  980. #: FlatCAMApp.py:8309
  981. msgid "[ERROR_NOTCL] Could not parse information about latest version."
  982. msgstr ""
  983. "[ERROR_NOTCL] Informatia cu privire la ultima versiune nu s-a putut "
  984. "interpreta."
  985. #: FlatCAMApp.py:8319
  986. msgid "[success] FlatCAM is up to date!"
  987. msgstr "[success] FlatCAM este la ultima versiune!"
  988. #: FlatCAMApp.py:8324
  989. msgid "Newer Version Available"
  990. msgstr "O nouă versiune este disponibila"
  991. #: FlatCAMApp.py:8325
  992. msgid ""
  993. "There is a newer version of FlatCAM available for download:\n"
  994. "\n"
  995. msgstr ""
  996. "O nouă versiune de FlatCAM este disponibilă pentru download::\n"
  997. "\n"
  998. #: FlatCAMApp.py:8327
  999. msgid "info"
  1000. msgstr "Informaţie"
  1001. #: FlatCAMApp.py:8346
  1002. msgid "[success] All plots disabled."
  1003. msgstr "[success] Toate afişările sunt dezactivate."
  1004. #: FlatCAMApp.py:8352
  1005. msgid "[success] All non selected plots disabled."
  1006. msgstr "[success] Toate afişările care nu sunt selectate sunt dezactivate."
  1007. #: FlatCAMApp.py:8358
  1008. msgid "[success] All plots enabled."
  1009. msgstr "[success] Toate afişările sunt activate."
  1010. #: FlatCAMApp.py:8364
  1011. msgid "[success] Selected plots enabled..."
  1012. msgstr "[success] Toate afişările sunt activate..."
  1013. #: FlatCAMApp.py:8372
  1014. msgid "[success] Selected plots disabled..."
  1015. msgstr "[success] Toate afişările sunt dezactivate..."
  1016. #: FlatCAMApp.py:8382 FlatCAMApp.py:8395
  1017. msgid "Working ..."
  1018. msgstr "Se lucrează..."
  1019. #: FlatCAMApp.py:8429
  1020. msgid "Saving FlatCAM Project"
  1021. msgstr "Proiectul FlatCAM este in curs de salvare"
  1022. #: FlatCAMApp.py:8450 FlatCAMApp.py:8481
  1023. #, python-format
  1024. msgid "[success] Project saved to: %s"
  1025. msgstr "[success] Proiectul s-a salvat in: %s"
  1026. #: FlatCAMApp.py:8468
  1027. #, python-format
  1028. msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  1029. msgstr ""
  1030. "[ERROR_NOTCL] Verificarea proiectului salvat a eșuat: %s. Incearcă să il "
  1031. "salvezi din nou."
  1032. #: FlatCAMApp.py:8475
  1033. #, python-format
  1034. msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  1035. msgstr ""
  1036. "[ERROR_NOTCL] Parsarea proiectului salvat a eșuat: %s. Incearcă să il "
  1037. "salvezi din nou."
  1038. #: FlatCAMApp.py:8483
  1039. #, python-format
  1040. msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  1041. msgstr ""
  1042. "[ERROR_NOTCL] Salvarea proiectului a eșuat: %s. Incearcă să il salvezi din "
  1043. "nou."
  1044. #: FlatCAMObj.py:207
  1045. #, python-brace-format
  1046. msgid "[success] Name changed from {old} to {new}"
  1047. msgstr "[success] Numele schimbat din {old} in {new}"
  1048. #: FlatCAMObj.py:553 FlatCAMObj.py:2035 FlatCAMObj.py:3281 FlatCAMObj.py:5457
  1049. msgid "<span style=\"color:green;\"><b>Basic</b></span>"
  1050. msgstr "<span style=\"color:green;\"><b>Baza</b></span>"
  1051. #: FlatCAMObj.py:565 FlatCAMObj.py:2051 FlatCAMObj.py:3303 FlatCAMObj.py:5463
  1052. msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
  1053. msgstr "<span style=\"color:red;\"><b>Avansat</b></span>"
  1054. #: FlatCAMObj.py:928 FlatCAMObj.py:983
  1055. #, python-format
  1056. msgid "[success] Isolation geometry created: %s"
  1057. msgstr "[success] Geometria de izolare creată: %s"
  1058. #: FlatCAMObj.py:1162
  1059. msgid "Plotting Apertures"
  1060. msgstr "Aperturile sunt in curs de afișare"
  1061. #: FlatCAMObj.py:1878 flatcamEditors/FlatCAMExcEditor.py:1368
  1062. msgid "Total Drills"
  1063. msgstr "Nr. Tot. Op. Găurire"
  1064. #: FlatCAMObj.py:1904 flatcamEditors/FlatCAMExcEditor.py:1400
  1065. msgid "Total Slots"
  1066. msgstr "Nr. Tot. Sloturi"
  1067. #: FlatCAMObj.py:2107 FlatCAMObj.py:3355 FlatCAMObj.py:3655 FlatCAMObj.py:3842
  1068. #: FlatCAMObj.py:3855 FlatCAMObj.py:3972 FlatCAMObj.py:4389 FlatCAMObj.py:4627
  1069. #: FlatCAMObj.py:5040 flatcamEditors/FlatCAMExcEditor.py:1474
  1070. #: flatcamTools/ToolCalculators.py:307 flatcamTools/ToolCalculators.py:318
  1071. #: flatcamTools/ToolCalculators.py:330 flatcamTools/ToolCalculators.py:345
  1072. #: flatcamTools/ToolCalculators.py:358 flatcamTools/ToolCalculators.py:372
  1073. #: flatcamTools/ToolCalculators.py:383 flatcamTools/ToolCalculators.py:394
  1074. #: flatcamTools/ToolCalculators.py:405 flatcamTools/ToolFilm.py:241
  1075. #: flatcamTools/ToolFilm.py:248 flatcamTools/ToolNonCopperClear.py:480
  1076. #: flatcamTools/ToolNonCopperClear.py:551
  1077. #: flatcamTools/ToolNonCopperClear.py:627
  1078. #: flatcamTools/ToolNonCopperClear.py:644 flatcamTools/ToolPaint.py:538
  1079. #: flatcamTools/ToolPaint.py:608 flatcamTools/ToolPaint.py:743
  1080. #: flatcamTools/ToolPaint.py:844 flatcamTools/ToolPaint.py:999
  1081. #: flatcamTools/ToolPanelize.py:385 flatcamTools/ToolPanelize.py:397
  1082. #: flatcamTools/ToolPanelize.py:410 flatcamTools/ToolPanelize.py:423
  1083. #: flatcamTools/ToolPanelize.py:435 flatcamTools/ToolPanelize.py:446
  1084. #: flatcamTools/ToolSolderPaste.py:756 flatcamTools/ToolSolderPaste.py:827
  1085. msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
  1086. msgstr "[ERROR_NOTCL] O valoare gresita a fost introdusa. Foloseşte un număr."
  1087. #: FlatCAMObj.py:2331 FlatCAMObj.py:2423 FlatCAMObj.py:2546
  1088. msgid ""
  1089. "[ERROR_NOTCL] Please select one or more tools from the list and try again."
  1090. msgstr ""
  1091. "[ERROR_NOTCL] Selectează una sau mai multe unelte din lista și încearcă din "
  1092. "nou."
  1093. #: FlatCAMObj.py:2338
  1094. msgid ""
  1095. "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  1096. msgstr ""
  1097. "[ERROR_NOTCL] Anulat. Freza pt frezarea găurilor este mai mare decat "
  1098. "diametrul găurii."
  1099. #: FlatCAMObj.py:2352 FlatCAMObj.py:2447 FlatCAMObj.py:2566
  1100. msgid "Tool_nr"
  1101. msgstr "Nr. Unealtă"
  1102. #: FlatCAMObj.py:2352 FlatCAMObj.py:2447 FlatCAMObj.py:2566
  1103. #: flatcamEditors/FlatCAMExcEditor.py:819
  1104. #: flatcamEditors/FlatCAMExcEditor.py:2020 flatcamGUI/ObjectUI.py:556
  1105. #: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80
  1106. #: flatcamTools/ToolPcbWizard.py:78 flatcamTools/ToolSolderPaste.py:81
  1107. msgid "Diameter"
  1108. msgstr "Diametru"
  1109. #: FlatCAMObj.py:2352 FlatCAMObj.py:2447 FlatCAMObj.py:2566
  1110. msgid "Drills_Nr"
  1111. msgstr "Nr. gaura"
  1112. #: FlatCAMObj.py:2352 FlatCAMObj.py:2447 FlatCAMObj.py:2566
  1113. msgid "Slots_Nr"
  1114. msgstr "Nr. slot"
  1115. #: FlatCAMObj.py:2433
  1116. msgid ""
  1117. "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  1118. msgstr ""
  1119. "[ERROR_NOTCL] Anulat. Freza este mai mare decat diametrul slotului de frezat."
  1120. #: FlatCAMObj.py:2608 FlatCAMObj.py:4277 FlatCAMObj.py:4493 FlatCAMObj.py:4810
  1121. msgid ""
  1122. "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self."
  1123. "options[\"z_pdepth\"]"
  1124. msgstr ""
  1125. "[ERROR_NOTCL] Valoare gresita pt self.defaults[\"z_pdepth\"] sau self."
  1126. "options[\"z_pdepth\"]"
  1127. #: FlatCAMObj.py:2620 FlatCAMObj.py:4289 FlatCAMObj.py:4505 FlatCAMObj.py:4822
  1128. msgid ""
  1129. "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or "
  1130. "self.options[\"feedrate_probe\"]"
  1131. msgstr ""
  1132. "[ERROR_NOTCL] Valoare gresita pt self.defaults[\"feedrate_probe\"] sau self."
  1133. "options[\"feedrate_probe\"]"
  1134. #: FlatCAMObj.py:2652 FlatCAMObj.py:4698 FlatCAMObj.py:4703 FlatCAMObj.py:4853
  1135. msgid "Generating CNC Code"
  1136. msgstr "CNC Code in curs de generare"
  1137. #: FlatCAMObj.py:2678 FlatCAMObj.py:4999 camlib.py:5167 camlib.py:5626
  1138. #: camlib.py:5889
  1139. msgid ""
  1140. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
  1141. "format (x, y) \n"
  1142. "but now there is only one value, not two. "
  1143. msgstr ""
  1144. "[ERROR] Parametrul >Schimbare Unealtă X, Y< in Editare -> Peferințe trebuie "
  1145. "să fie in formatul (x, y) \n"
  1146. "dar are o singură valoare in loc de doua. "
  1147. #: FlatCAMObj.py:2990 FlatCAMObj.py:3898 FlatCAMObj.py:3899 FlatCAMObj.py:3908
  1148. msgid "Iso"
  1149. msgstr "Izo."
  1150. #: FlatCAMObj.py:2990 FlatCAMObj.py:3239 FlatCAMObj.py:3520
  1151. msgid "Rough"
  1152. msgstr "Grosier"
  1153. #: FlatCAMObj.py:2990
  1154. msgid "Finish"
  1155. msgstr "Finisare"
  1156. #: FlatCAMObj.py:3274 flatcamGUI/FlatCAMGUI.py:526 flatcamGUI/FlatCAMGUI.py:722
  1157. #: flatcamGUI/FlatCAMGUI.py:1615 flatcamGUI/FlatCAMGUI.py:1951
  1158. #: flatcamGUI/ObjectUI.py:999
  1159. msgid "Copy"
  1160. msgstr "Copiază"
  1161. #: FlatCAMObj.py:3490
  1162. msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  1163. msgstr "[ERROR_NOTCL] Introdu diametrul dorit pt unealtă in format Real."
  1164. #: FlatCAMObj.py:3565
  1165. msgid "[success] Tool added in Tool Table."
  1166. msgstr "[success] Unealtă adăugată in Tabela de Unelte."
  1167. #: FlatCAMObj.py:3570
  1168. msgid "[ERROR_NOTCL] Default Tool added. Wrong value format entered."
  1169. msgstr ""
  1170. "[ERROR_NOTCL] Unealta implicita adăugată dar valoarea are un format gresit."
  1171. #: FlatCAMObj.py:3600 FlatCAMObj.py:3610
  1172. msgid "[WARNING_NOTCL] Failed. Select a tool to copy."
  1173. msgstr "[WARNING_NOTCL] Eșuat. Selectează o unealtă pt copiere."
  1174. #: FlatCAMObj.py:3639
  1175. msgid "[success] Tool was copied in Tool Table."
  1176. msgstr "[success] Unealta a fost copiata in Tabela de Unelte."
  1177. #: FlatCAMObj.py:3672
  1178. msgid "[success] Tool was edited in Tool Table."
  1179. msgstr "[success] Unealta a fost editata in Tabela de Unelte."
  1180. #: FlatCAMObj.py:3703 FlatCAMObj.py:3713
  1181. msgid "[WARNING_NOTCL] Failed. Select a tool to delete."
  1182. msgstr "[WARNING_NOTCL] Eșuat. Selectează o unealtă pentru ștergere."
  1183. #: FlatCAMObj.py:3737
  1184. msgid "[success] Tool was deleted in Tool Table."
  1185. msgstr "[success] Unealta a fost stearsa din Tabela de Unelte."
  1186. #: FlatCAMObj.py:4158
  1187. #, python-format
  1188. msgid ""
  1189. "[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry."
  1190. msgstr ""
  1191. "[WARNING_NOTCL] Acest obiect Geometrie nu poate fi procesar decoarece este "
  1192. "Geometrie %s."
  1193. #: FlatCAMObj.py:4175
  1194. msgid "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number."
  1195. msgstr ""
  1196. "[ERROR_NOTCL] Diametrul uneltei este in format gresit, foloseşte un număr "
  1197. "Real."
  1198. #: FlatCAMObj.py:4202
  1199. msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  1200. msgstr ""
  1201. "[ERROR_NOTCL] Eșuat. Nici-o unealtă nu este selectată in Tabela de Unelte ..."
  1202. #: FlatCAMObj.py:4240
  1203. #, python-format
  1204. msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1205. msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1206. #: FlatCAMObj.py:4398 FlatCAMObj.py:4636
  1207. msgid ""
  1208. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  1209. "Add a Tool Offset or change the Offset Type."
  1210. msgstr ""
  1211. "[WARNING] Un ofset pt unealtă este selectat in Tabela de Unelte dar nici-o "
  1212. "val. nu este oferita.\n"
  1213. "Adaugă un ofset pt unealtă sau schimbă Tipul Ofset."
  1214. #: FlatCAMObj.py:4517 flatcamTools/ToolSolderPaste.py:1107
  1215. #: flatcamTools/ToolSolderPaste.py:1162
  1216. msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  1217. msgstr "[ERROR_NOTCL] Anulat. Fişier gol, nu are date geometrice."
  1218. #: FlatCAMObj.py:4886 FlatCAMObj.py:4896 camlib.py:3348 camlib.py:3357
  1219. msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  1220. msgstr ""
  1221. "[ERROR_NOTCL] Factorul de scalare trebuie să fie un număr: natural sau real."
  1222. #: FlatCAMObj.py:4934
  1223. msgid "[success] Geometry Scale done."
  1224. msgstr "[success] Scalare Geometrie executată."
  1225. #: FlatCAMObj.py:4951 camlib.py:3426
  1226. msgid ""
  1227. "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only "
  1228. "one value in the Offset field."
  1229. msgstr ""
  1230. "[ERROR_NOTCL] O pereche de valori (x,y) este necesară. Probabil că ai "
  1231. "introdus numai o singură valoare in câmpul Offset."
  1232. #: FlatCAMObj.py:4971
  1233. msgid "[success] Geometry Offset done."
  1234. msgstr "[success] Ofset Geometrie executat."
  1235. #: FlatCAMObj.py:5525 FlatCAMObj.py:5530 flatcamTools/ToolSolderPaste.py:1361
  1236. msgid "Export Machine Code ..."
  1237. msgstr "Exporta CNC Cod Masina ..."
  1238. #: FlatCAMObj.py:5536 flatcamTools/ToolSolderPaste.py:1364
  1239. msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
  1240. msgstr "[WARNING_NOTCL] Exportul codului masina CNC a fost anulat ..."
  1241. #: FlatCAMObj.py:5549
  1242. #, python-format
  1243. msgid "[success] Machine Code file saved to: %s"
  1244. msgstr "[success] Fişierul cu cod CNC este salvat in: %s"
  1245. #: FlatCAMObj.py:5571
  1246. #, python-format
  1247. msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  1248. msgstr "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  1249. #: FlatCAMObj.py:5688
  1250. #, python-format
  1251. msgid ""
  1252. "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s "
  1253. "CNCJob object."
  1254. msgstr ""
  1255. "[WARNING_NOTCL] Acest obiect CNCJob nu poate fi procesar deoarece este un "
  1256. "obiect CNCJob tip %s."
  1257. #: FlatCAMObj.py:5741
  1258. msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  1259. msgstr "[ERROR_NOTCL] G-code nu contine codul pt unitati: G20 sau G21"
  1260. #: FlatCAMObj.py:5754
  1261. msgid ""
  1262. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  1263. "empty."
  1264. msgstr ""
  1265. "[ERROR_NOTCL] Anulat. Codul G-Code din Macro-ul Schimbare unealtă este "
  1266. "activat dar nuc contine nimic."
  1267. #: FlatCAMObj.py:5761
  1268. msgid "[success] Toolchange G-code was replaced by a custom code."
  1269. msgstr ""
  1270. "[success] G-Code-ul pt schimbare unealtă a fost inlocuit cu un cod "
  1271. "pesonalizat."
  1272. #: FlatCAMObj.py:5776 flatcamTools/ToolSolderPaste.py:1390
  1273. msgid "[WARNING_NOTCL] No such file or directory"
  1274. msgstr "[WARNING_NOTCL] Nu exista un asemenea fişier sau director"
  1275. #: FlatCAMObj.py:5796 FlatCAMObj.py:5808
  1276. msgid ""
  1277. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  1278. "'toolchange_custom'"
  1279. msgstr ""
  1280. "[WARNING_NOTCL] Postprocesorul folosit trebuie să aibă in numele sau: "
  1281. "'toolchange_custom'"
  1282. #: FlatCAMObj.py:5814
  1283. msgid "[ERROR] There is no postprocessor file."
  1284. msgstr "[ERROR] Nu exista nici-un fişier postprocesor."
  1285. #: ObjectCollection.py:420
  1286. #, python-brace-format
  1287. msgid "Object renamed from <b>{old}</b> to <b>{new}</b>"
  1288. msgstr "Obiectul este redenumit din <b>{old}</b> in <b>{new}</b>"
  1289. #: ObjectCollection.py:759
  1290. #, python-format
  1291. msgid "[ERROR] Cause of error: %s"
  1292. msgstr "[ERROR] Motivul erorii: %s"
  1293. #: camlib.py:197
  1294. msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  1295. msgstr ""
  1296. "[ERROR_NOTCL] self.solid_geometry nu este tip BaseGeometry sau tip lista."
  1297. #: camlib.py:1391
  1298. msgid "[success] Object was mirrored ..."
  1299. msgstr "[success] Obiectul a fost oglindit ..."
  1300. #: camlib.py:1393
  1301. msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
  1302. msgstr "[ERROR_NOTCL] Oglindire eșuata. Nici-un obiect nu este selectat ..."
  1303. #: camlib.py:1429
  1304. msgid "[success] Object was rotated ..."
  1305. msgstr "[success] Obiectul a fost rotit ..."
  1306. #: camlib.py:1431
  1307. msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
  1308. msgstr "[ERROR_NOTCL] Rotaţie eșuata. Nici-un obiect nu este selectat ..."
  1309. #: camlib.py:1465
  1310. msgid "[success] Object was skewed ..."
  1311. msgstr "[success] Obiectul a fost deformat ..."
  1312. #: camlib.py:1467
  1313. msgid "[ERROR_NOTCL] Failed to skew. No object selected"
  1314. msgstr "[ERROR_NOTCL] Deformare eșuata. Nici-un obiect nu este selectat ..."
  1315. #: camlib.py:2728 camlib.py:2813
  1316. #, python-format
  1317. msgid "[WARNING] Coordinates missing, line ignored: %s"
  1318. msgstr "[WARNING] Coordonatele lipsesc, linia este ignorata: %s"
  1319. #: camlib.py:2729 camlib.py:2814
  1320. msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  1321. msgstr ""
  1322. "[WARNING_NOTCL] Fişierul Gerber poate fi corrupt. Verificati fişierul!!!"
  1323. #: camlib.py:2778
  1324. #, python-format
  1325. msgid ""
  1326. "[ERROR] Region does not have enough points. File will be processed but there "
  1327. "are parser errors. Line number: %s"
  1328. msgstr ""
  1329. "[ERROR] Regiunea Gerber nu are suficiente puncte. Fişierul va fi procesat "
  1330. "dar sunt erori de parsare. Numărul liniei: %s"
  1331. #: camlib.py:3170
  1332. #, python-format
  1333. msgid ""
  1334. "[ERROR]Gerber Parser ERROR.\n"
  1335. "%s:"
  1336. msgstr ""
  1337. "[ERROR] Eroare in parserul Gerber.\n"
  1338. "%s:"
  1339. #: camlib.py:3394
  1340. msgid "[success] Gerber Scale done."
  1341. msgstr "[success] Scalarea Gerber efectuata."
  1342. #: camlib.py:3459
  1343. msgid "[success] Gerber Offset done."
  1344. msgstr "[success] Offsetare Gerber efectuata."
  1345. #: camlib.py:3513
  1346. msgid "[success] Gerber Mirror done."
  1347. msgstr "[success] Oglindirea Gerber efectuata."
  1348. #: camlib.py:3559
  1349. msgid "[success] Gerber Skew done."
  1350. msgstr "[success] Deformarea Gerber efectuata."
  1351. #: camlib.py:3597
  1352. msgid "[success] Gerber Rotate done."
  1353. msgstr "[success] Rotatia Gerber efectuata."
  1354. #: camlib.py:3878
  1355. #, python-format
  1356. msgid "[ERROR_NOTCL] This is GCODE mark: %s"
  1357. msgstr "[ERROR_NOTCL] Acesta este un marcaj Gerber: %s"
  1358. #: camlib.py:3993
  1359. #, python-format
  1360. msgid ""
  1361. "[WARNING] No tool diameter info's. See shell.\n"
  1362. "A tool change event: T%s was found but the Excellon file have no "
  1363. "informations regarding the tool diameters therefore the application will try "
  1364. "to load it by using some 'fake' diameters.\n"
  1365. "The user needs to edit the resulting Excellon object and change the "
  1366. "diameters to reflect the real diameters."
  1367. msgstr ""
  1368. "[WARNING] Nu sunt date despre diametrul uneltei. Vezi in Shell.\n"
  1369. "Schimbare Unealtă: T%s a fost gasită dar fisierul Excellon nu are info's "
  1370. "despre diametrele uneltelor prin urmare aplicatia va folosi valori 'false'.\n"
  1371. "Userul trebuie să editeze obictul Excellon rezultat si sa ajusteze "
  1372. "diametrele a.i sa reflecte diametrele reale."
  1373. #: camlib.py:4458
  1374. #, python-brace-format
  1375. msgid ""
  1376. "[ERROR] Excellon Parser error.\n"
  1377. "Parsing Failed. Line {l_nr}: {line}\n"
  1378. msgstr ""
  1379. "[ERROR] Eroare in parserul Excellon.\n"
  1380. "Parsare eșuata. Linia {l_nr}: {line}\n"
  1381. "\n"
  1382. #: camlib.py:4537
  1383. msgid ""
  1384. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  1385. "not having a tool associated.\n"
  1386. "Check the resulting GCode."
  1387. msgstr ""
  1388. "[WARNING] Excellon.create_geometry() -> o locaţie de găurire a fost sarita "
  1389. "deoarece nu are o unealtă asociata.\n"
  1390. "Verifică codul G-Code rezultat."
  1391. #: camlib.py:5076
  1392. #, python-format
  1393. msgid "[ERROR] There is no such parameter: %s"
  1394. msgstr "[ERROR] Nu exista un asemenea parametru: %s"
  1395. #: camlib.py:5146
  1396. msgid ""
  1397. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1398. "drill into material.\n"
  1399. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1400. "therefore the app will convert the value to negative. Check the resulting "
  1401. "CNC code (Gcode etc)."
  1402. msgstr ""
  1403. "[WARNING] Parametrul >Z tăiere< are o valoare pozitivă. Reprezinta adâncimea "
  1404. "de tăiere in material prin urmare poate fi numai negativ.\n"
  1405. "Se presupune că este o eroare de tastare astfel ca aplicaţia va converti "
  1406. "intr-o valoare negativă. Verifică codul masina (G-Code etc) rezultat."
  1407. #: camlib.py:5153 camlib.py:5649 camlib.py:5912
  1408. #, python-format
  1409. msgid ""
  1410. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  1411. msgstr ""
  1412. "[WARNING] Parametrul >Z tăiere< este nul. Nu va fi nici-o tăiere prin urmare "
  1413. "nu procesam fişierul %s"
  1414. #: camlib.py:5382 camlib.py:5479 camlib.py:5537
  1415. msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..."
  1416. msgstr "[ERROR_NOTCL] Fişierul Excellon incărcat nu are găuri ..."
  1417. #: camlib.py:5484
  1418. msgid "[ERROR_NOTCL] Wrong optimization type selected."
  1419. msgstr "[ERROR_NOTCL] Un tip de optimizare incorrect a fost selectat."
  1420. #: camlib.py:5637 camlib.py:5900
  1421. msgid ""
  1422. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  1423. "combinations of other parameters."
  1424. msgstr ""
  1425. "[ERROR_NOTCL] Parametrul >Z tăiere< este None sau zero. Cel mai probabil o "
  1426. "combinaţie nefericita de parametri."
  1427. #: camlib.py:5642 camlib.py:5905
  1428. msgid ""
  1429. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1430. "cut into material.\n"
  1431. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1432. "therefore the app will convert the value to negative.Check the resulting CNC "
  1433. "code (Gcode etc)."
  1434. msgstr ""
  1435. "[WARNING] Parametrul >Z tăiere< are o valoare pozitivă. Reprezinta adâncimea "
  1436. "de tăiere in material prin urmare poate fi numai negativ.\n"
  1437. "Se presupune că este o eroare de tastare astfel ca aplicaţia va converti "
  1438. "intr-o valoare negativă. Verifică codul masina (G-Code etc) rezultat."
  1439. #: camlib.py:5654 camlib.py:5917
  1440. msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
  1441. msgstr "[ERROR_NOTCL] Parametrul >Z deplasare< este None sau zero."
  1442. #: camlib.py:5658 camlib.py:5921
  1443. msgid ""
  1444. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  1445. "to travel between cuts.\n"
  1446. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  1447. "therefore the app will convert the value to positive.Check the resulting CNC "
  1448. "code (Gcode etc)."
  1449. msgstr ""
  1450. "[WARNING] Parametrul >Z deplasare< are o valoare negativă. Reprezinta "
  1451. "Înălţimea la care unealtă se deplasează fără să taie prin urmare poate fi "
  1452. "numai pozitiv.\n"
  1453. "Se presupune că este o eroare de tastare astfel ca aplicaţia va converti "
  1454. "intr-o valoare pozitivă. Verifică codul masina (G-Code etc) rezultat."
  1455. #: camlib.py:5665 camlib.py:5928
  1456. #, python-format
  1457. msgid ""
  1458. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  1459. msgstr ""
  1460. "[WARNING] Parametrul >Z deplasare< este zero. Aceasta este periculos, prin "
  1461. "urmare fişierul %s nu se procesează."
  1462. #: camlib.py:5795
  1463. #, python-format
  1464. msgid "[ERROR]Expected a Geometry, got %s"
  1465. msgstr "[ERROR] Se astepta o Geometrie, am primit in schimb %s"
  1466. #: camlib.py:5801
  1467. msgid ""
  1468. "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without "
  1469. "solid_geometry."
  1470. msgstr ""
  1471. "[ERROR_NOTCL] Se încearcă generarea unui CNC Job dintr-un obiect Geometrie "
  1472. "fără atributul solid_geometry."
  1473. #: camlib.py:5840
  1474. msgid ""
  1475. "[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
  1476. "current_geometry.\n"
  1477. "Raise the value (in module) and try again."
  1478. msgstr ""
  1479. "[ERROR_NOTCL] Valoarea pentru >Offset unealtă< este prea negativă pentru a "
  1480. "fi folosita. \n"
  1481. "Mareste valoarea absoluta și încearcă din nou."
  1482. #: camlib.py:6052
  1483. msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  1484. msgstr ""
  1485. "[ERROR_NOTCL] Nu exista date cu privier la unealtă in geometria SolderPaste."
  1486. #: flatcamEditors/FlatCAMExcEditor.py:37 flatcamEditors/FlatCAMExcEditor.py:143
  1487. #: flatcamEditors/FlatCAMGrbEditor.py:229
  1488. #: flatcamEditors/FlatCAMGrbEditor.py:234
  1489. msgid "Click to place ..."
  1490. msgstr "Click pt a plasa ..."
  1491. #: flatcamEditors/FlatCAMExcEditor.py:46
  1492. msgid "[WARNING_NOTCL] To add a drill first select a tool"
  1493. msgstr ""
  1494. "[WARNING_NOTCL] Pentru a adăuga o operaţie de găurire mai intai selectează "
  1495. "un burghiu (unealtă)"
  1496. #: flatcamEditors/FlatCAMExcEditor.py:62 flatcamEditors/FlatCAMExcEditor.py:165
  1497. #: flatcamEditors/FlatCAMExcEditor.py:450
  1498. #: flatcamEditors/FlatCAMExcEditor.py:475
  1499. #: flatcamEditors/FlatCAMGrbEditor.py:451
  1500. #: flatcamEditors/FlatCAMGrbEditor.py:1776
  1501. #: flatcamEditors/FlatCAMGrbEditor.py:1804
  1502. msgid "Click on target location ..."
  1503. msgstr "Click pe locatia tinta ..."
  1504. #: flatcamEditors/FlatCAMExcEditor.py:108
  1505. msgid "[success] Done. Drill added."
  1506. msgstr "[success] Executat. Operaţie de găurire adăugată."
  1507. #: flatcamEditors/FlatCAMExcEditor.py:150
  1508. msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1509. msgstr ""
  1510. "[WARNING_NOTCL] Pentru a adăuga o arie de operațiuni de găurire mai intai "
  1511. "selectează un burghiu (unealtă)"
  1512. #: flatcamEditors/FlatCAMExcEditor.py:182
  1513. msgid "Click on the Drill Circular Array Start position"
  1514. msgstr "Click pe punctul de Start al ariei de operațiuni de găurire"
  1515. #: flatcamEditors/FlatCAMExcEditor.py:204
  1516. #: flatcamEditors/FlatCAMGrbEditor.py:494
  1517. msgid ""
  1518. "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
  1519. "separator."
  1520. msgstr ""
  1521. "[ERROR_NOTCL] Valoarea nu este număr Real. Verifică să nu fi folosit virgula "
  1522. "in loc de punct ca și separator decimal."
  1523. #: flatcamEditors/FlatCAMExcEditor.py:207
  1524. #, python-format
  1525. msgid "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
  1526. msgstr "[ERROR_NOTCL] Valoarea este gresita. Verifică valoarea. %s"
  1527. #: flatcamEditors/FlatCAMExcEditor.py:305
  1528. msgid "[WARNING_NOTCL] Too many drills for the selected spacing angle."
  1529. msgstr ""
  1530. "[WARNING_NOTCL] Prea multe operațiuni de găurire pentru unghiul selectat."
  1531. #: flatcamEditors/FlatCAMExcEditor.py:322
  1532. msgid "[success] Done. Drill Array added."
  1533. msgstr "[success] Executat. Aria de operațiuni de găurire a fost adăugată."
  1534. #: flatcamEditors/FlatCAMExcEditor.py:333
  1535. msgid "Click on the Drill(s) to resize ..."
  1536. msgstr ""
  1537. "Click pe operațiunile de găurire care se dorește să fie redimensionate ..."
  1538. #: flatcamEditors/FlatCAMExcEditor.py:354
  1539. msgid ""
  1540. "[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
  1541. msgstr ""
  1542. "[ERROR_NOTCL] Redimensionarea operațiunilor de găurire a eșuat. Adaugă o "
  1543. "valoare pentru dimetrul la care se face redimensionarea."
  1544. #: flatcamEditors/FlatCAMExcEditor.py:424
  1545. msgid "[success] Done. Drill Resize completed."
  1546. msgstr "[success] Executat. Redimensionare găurire terminată."
  1547. #: flatcamEditors/FlatCAMExcEditor.py:427
  1548. msgid "[WARNING_NOTCL] Cancelled. No drills selected for resize ..."
  1549. msgstr ""
  1550. "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentruredimensionare ..."
  1551. #: flatcamEditors/FlatCAMExcEditor.py:452
  1552. #: flatcamEditors/FlatCAMGrbEditor.py:1778
  1553. msgid "Click on reference location ..."
  1554. msgstr "Click pe locatia de referinţă ..."
  1555. #: flatcamEditors/FlatCAMExcEditor.py:507
  1556. msgid "[success] Done. Drill(s) Move completed."
  1557. msgstr "[success] Executat. Operatiile de găurire au fost mutate."
  1558. #: flatcamEditors/FlatCAMExcEditor.py:592
  1559. msgid "[success] Done. Drill(s) copied."
  1560. msgstr "[success] Executat. Operatiile de găurire au fost copiate."
  1561. #: flatcamEditors/FlatCAMExcEditor.py:792 flatcamGUI/FlatCAMGUI.py:5026
  1562. msgid "Excellon Editor"
  1563. msgstr "Editor Excellon"
  1564. #: flatcamEditors/FlatCAMExcEditor.py:799
  1565. #: flatcamEditors/FlatCAMGrbEditor.py:2266
  1566. msgid "Name:"
  1567. msgstr "Nume:"
  1568. #: flatcamEditors/FlatCAMExcEditor.py:805 flatcamTools/ToolNonCopperClear.py:72
  1569. #: flatcamTools/ToolPaint.py:69 flatcamTools/ToolSolderPaste.py:70
  1570. msgid "Tools Table"
  1571. msgstr "Tabela Unelte"
  1572. #: flatcamEditors/FlatCAMExcEditor.py:807 flatcamGUI/ObjectUI.py:538
  1573. msgid ""
  1574. "Tools in this Excellon object\n"
  1575. "when are used for drilling."
  1576. msgstr ""
  1577. "Burghie (unelte) in acest obiect Excellon\n"
  1578. "când se face găurire."
  1579. #: flatcamEditors/FlatCAMExcEditor.py:827
  1580. msgid "Add/Delete Tool"
  1581. msgstr "Adaugă/Șterge Unealta"
  1582. #: flatcamEditors/FlatCAMExcEditor.py:829
  1583. msgid ""
  1584. "Add/Delete a tool to the tool list\n"
  1585. "for this Excellon object."
  1586. msgstr ""
  1587. "Adaugă/Șterge o unealtă la lista de unelte\n"
  1588. "pentru acest obiect Excellon."
  1589. #: flatcamEditors/FlatCAMExcEditor.py:837 flatcamTools/ToolCutOut.py:77
  1590. msgid "Tool Dia:"
  1591. msgstr "Dia. Unealtă:"
  1592. #: flatcamEditors/FlatCAMExcEditor.py:839 flatcamGUI/FlatCAMGUI.py:5055
  1593. #: flatcamGUI/ObjectUI.py:978
  1594. msgid "Diameter for the new tool"
  1595. msgstr "Diametru pentru noua unealtă (burghiu, freza)"
  1596. #: flatcamEditors/FlatCAMExcEditor.py:847
  1597. msgid "Add Tool"
  1598. msgstr "Adaugă Unealta"
  1599. #: flatcamEditors/FlatCAMExcEditor.py:849
  1600. msgid ""
  1601. "Add a new tool to the tool list\n"
  1602. "with the diameter specified above."
  1603. msgstr ""
  1604. "Adaugă o unealtă noua la lista de unelte\n"
  1605. "cu diametrul specificat deasupra."
  1606. #: flatcamEditors/FlatCAMExcEditor.py:861
  1607. msgid "Delete Tool"
  1608. msgstr "Șterge Unealta"
  1609. #: flatcamEditors/FlatCAMExcEditor.py:863
  1610. msgid ""
  1611. "Delete a tool in the tool list\n"
  1612. "by selecting a row in the tool table."
  1613. msgstr ""
  1614. "Șterge o unealtă in lista de unelte\n"
  1615. "prin selectarea unei linii in tabela de unelte."
  1616. #: flatcamEditors/FlatCAMExcEditor.py:881
  1617. msgid "Resize Drill(s)"
  1618. msgstr "Redimensionare operațiuni de găurire"
  1619. #: flatcamEditors/FlatCAMExcEditor.py:883
  1620. msgid "Resize a drill or a selection of drills."
  1621. msgstr ""
  1622. "Redimensionează o operaţie de găurire sau o selecţie de operațiuni de "
  1623. "găurire."
  1624. #: flatcamEditors/FlatCAMExcEditor.py:890
  1625. msgid "Resize Dia:"
  1626. msgstr "Redimensionare Dia:"
  1627. #: flatcamEditors/FlatCAMExcEditor.py:892
  1628. msgid "Diameter to resize to."
  1629. msgstr "Diametrul la care se face redimensionarea."
  1630. #: flatcamEditors/FlatCAMExcEditor.py:900
  1631. msgid "Resize"
  1632. msgstr "Redimensionează"
  1633. #: flatcamEditors/FlatCAMExcEditor.py:902
  1634. msgid "Resize drill(s)"
  1635. msgstr "Redimensionează op. de găurire."
  1636. #: flatcamEditors/FlatCAMExcEditor.py:924 flatcamGUI/FlatCAMGUI.py:1612
  1637. msgid "Add Drill Array"
  1638. msgstr "Adaugă o arie de op. găurire"
  1639. #: flatcamEditors/FlatCAMExcEditor.py:926
  1640. msgid "Add an array of drills (linear or circular array)"
  1641. msgstr "Adaugă o arie de operațiuni de găurire (arie lineara sau circulara)."
  1642. #: flatcamEditors/FlatCAMExcEditor.py:932
  1643. msgid ""
  1644. "Select the type of drills array to create.\n"
  1645. "It can be Linear X(Y) or Circular"
  1646. msgstr ""
  1647. "Selectează tipul de arii de operațiuni de găurire.\n"
  1648. "Poate fi Liniar X(Y) sau Circular."
  1649. #: flatcamEditors/FlatCAMExcEditor.py:935
  1650. #: flatcamEditors/FlatCAMGrbEditor.py:2499
  1651. msgid "Linear"
  1652. msgstr "Liniar"
  1653. #: flatcamEditors/FlatCAMExcEditor.py:936
  1654. #: flatcamEditors/FlatCAMGrbEditor.py:2500
  1655. msgid "Circular"
  1656. msgstr "Circular"
  1657. #: flatcamEditors/FlatCAMExcEditor.py:944 flatcamGUI/FlatCAMGUI.py:5065
  1658. msgid "Nr of drills:"
  1659. msgstr "Nr. op. găurire"
  1660. #: flatcamEditors/FlatCAMExcEditor.py:946 flatcamGUI/FlatCAMGUI.py:5067
  1661. msgid "Specify how many drills to be in the array."
  1662. msgstr "Specifica cate operațiuni de găurire să fie incluse in arie."
  1663. #: flatcamEditors/FlatCAMExcEditor.py:964
  1664. #: flatcamEditors/FlatCAMExcEditor.py:1010
  1665. #: flatcamEditors/FlatCAMGrbEditor.py:2526
  1666. #: flatcamEditors/FlatCAMGrbEditor.py:2571
  1667. msgid "Direction:"
  1668. msgstr "Direcţie:"
  1669. #: flatcamEditors/FlatCAMExcEditor.py:966
  1670. #: flatcamEditors/FlatCAMGrbEditor.py:2528 flatcamGUI/FlatCAMGUI.py:5082
  1671. msgid ""
  1672. "Direction on which the linear array is oriented:\n"
  1673. "- 'X' - horizontal axis \n"
  1674. "- 'Y' - vertical axis or \n"
  1675. "- 'Angle' - a custom angle for the array inclination"
  1676. msgstr ""
  1677. "Directia in care aria lineara este orientata:\n"
  1678. "- 'X' - pe axa orizontala \n"
  1679. "- 'Y' - pe axa verticala sau \n"
  1680. "- 'Unghi' - un unghi particular pentru inclinatia ariei"
  1681. #: flatcamEditors/FlatCAMExcEditor.py:979
  1682. #: flatcamEditors/FlatCAMGrbEditor.py:2541 flatcamGUI/FlatCAMGUI.py:5096
  1683. msgid "Pitch:"
  1684. msgstr "Pas:"
  1685. #: flatcamEditors/FlatCAMExcEditor.py:981
  1686. #: flatcamEditors/FlatCAMGrbEditor.py:2543 flatcamGUI/FlatCAMGUI.py:5098
  1687. msgid "Pitch = Distance between elements of the array."
  1688. msgstr "Pas = Distanta între elementele ariei."
  1689. #: flatcamEditors/FlatCAMExcEditor.py:989
  1690. #: flatcamEditors/FlatCAMExcEditor.py:1024
  1691. #: flatcamEditors/FlatCAMGeoEditor.py:665
  1692. #: flatcamEditors/FlatCAMGrbEditor.py:2550
  1693. #: flatcamEditors/FlatCAMGrbEditor.py:2586
  1694. #: flatcamEditors/FlatCAMGrbEditor.py:4588 flatcamGUI/FlatCAMGUI.py:5107
  1695. #: flatcamTools/ToolTransform.py:68
  1696. msgid "Angle:"
  1697. msgstr "Unghi:"
  1698. #: flatcamEditors/FlatCAMExcEditor.py:991
  1699. #: flatcamEditors/FlatCAMGrbEditor.py:2552
  1700. msgid ""
  1701. "Angle at which the linear array is placed.\n"
  1702. "The precision is of max 2 decimals.\n"
  1703. "Min value is: -359.99 degrees.\n"
  1704. "Max value is: 360.00 degrees."
  1705. msgstr ""
  1706. "Unghiul global la care aria lineara este plasata.\n"
  1707. "Precizia este de max 2 zecimale.\n"
  1708. "Val minima este: -359.99 grade.\n"
  1709. "Val maxima este: 360.00 grade."
  1710. #: flatcamEditors/FlatCAMExcEditor.py:1012
  1711. #: flatcamEditors/FlatCAMGrbEditor.py:2573
  1712. msgid ""
  1713. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1714. "clockwise."
  1715. msgstr ""
  1716. "Directia pentru aria circulara. Poate fi CW = in sensul acelor de ceasornic "
  1717. "sau CCW = invers acelor de ceasornic"
  1718. #: flatcamEditors/FlatCAMExcEditor.py:1026
  1719. #: flatcamEditors/FlatCAMGrbEditor.py:2588 flatcamGUI/FlatCAMGUI.py:5109
  1720. #: flatcamGUI/FlatCAMGUI.py:5135
  1721. msgid "Angle at which each element in circular array is placed."
  1722. msgstr ""
  1723. "Unghiul la care fiecare element al ariei circulare este plasat fata de "
  1724. "originea ariei."
  1725. #: flatcamEditors/FlatCAMExcEditor.py:1487
  1726. msgid ""
  1727. "[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
  1728. "Save and reedit Excellon if you need to add this tool. "
  1729. msgstr ""
  1730. "[WARNING_NOTCL] Unealta este deja in lista originala sau actuala de unelte.\n"
  1731. "Salvează și reeditează obiectul Excellon daca ai nevoie să adaugi aceasta "
  1732. "unealtă."
  1733. #: flatcamEditors/FlatCAMExcEditor.py:1496 flatcamGUI/FlatCAMGUI.py:2997
  1734. #, python-brace-format
  1735. msgid "[success] Added new tool with dia: {dia} {units}"
  1736. msgstr "[success] O noua unealtă este adăugată cu diametrul: {dia} {units}"
  1737. #: flatcamEditors/FlatCAMExcEditor.py:1528
  1738. msgid "[WARNING_NOTCL] Select a tool in Tool Table"
  1739. msgstr "[WARNING_NOTCL] Selectează o unealtă in Tabela de Unelte"
  1740. #: flatcamEditors/FlatCAMExcEditor.py:1560
  1741. #, python-brace-format
  1742. msgid "[success] Deleted tool with dia: {del_dia} {units}"
  1743. msgstr "[success] Unealta stearsa cu diametrul: {del_dia} {units}"
  1744. #: flatcamEditors/FlatCAMExcEditor.py:2074
  1745. msgid ""
  1746. "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
  1747. "creation."
  1748. msgstr ""
  1749. "[ERROR_NOTCL] Nu exista definitii de unelte in fişier. Se anulează crearea "
  1750. "de obiect Excellon."
  1751. #: flatcamEditors/FlatCAMExcEditor.py:2083
  1752. msgid "Creating Excellon."
  1753. msgstr "In curs de creere Excellon."
  1754. #: flatcamEditors/FlatCAMExcEditor.py:2092
  1755. msgid "[success] Excellon editing finished."
  1756. msgstr "[success] Editarea Excellon a fost terminată."
  1757. #: flatcamEditors/FlatCAMExcEditor.py:2109
  1758. msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
  1759. msgstr ""
  1760. "[WARNING_NOTCL] Anulata. Nu este selectată nici-o unealtă sau op. de găurire."
  1761. #: flatcamEditors/FlatCAMExcEditor.py:2637
  1762. msgid "[success] Done. Drill(s) deleted."
  1763. msgstr "[success] Executat. Operatiile de găurire șterse."
  1764. #: flatcamEditors/FlatCAMExcEditor.py:2705
  1765. #: flatcamEditors/FlatCAMGrbEditor.py:4350
  1766. msgid "Click on the circular array Center position"
  1767. msgstr "Click pe punctul de Centru al ariei circulare."
  1768. #: flatcamEditors/FlatCAMGeoEditor.py:80
  1769. #: flatcamEditors/FlatCAMGrbEditor.py:2416
  1770. msgid "Buffer distance:"
  1771. msgstr "Distanta pt bufer:"
  1772. #: flatcamEditors/FlatCAMGeoEditor.py:81
  1773. #: flatcamEditors/FlatCAMGrbEditor.py:2417
  1774. msgid "Buffer corner:"
  1775. msgstr "Coltul pt bufer:"
  1776. #: flatcamEditors/FlatCAMGeoEditor.py:83
  1777. msgid ""
  1778. "There are 3 types of corners:\n"
  1779. " - 'Round': the corner is rounded for exterior buffer.\n"
  1780. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  1781. " - 'Beveled:' the corner is a line that directly connects the features "
  1782. "meeting in the corner"
  1783. msgstr ""
  1784. "Sunt disponibile 3 tipuri de colțuri:\n"
  1785. " - 'Rotund': coltul este rotunjit in cazul buferului exterior.\n"
  1786. " - 'Patrat:' colțurile formează unghi de 90 grade pt buferul exterior\n"
  1787. " - 'Beveled:' coltul este inlocuit cu o linie care uneste capetele liniilor "
  1788. "care formează coltul"
  1789. #: flatcamEditors/FlatCAMGeoEditor.py:89
  1790. #: flatcamEditors/FlatCAMGrbEditor.py:2425
  1791. msgid "Round"
  1792. msgstr "Rotund"
  1793. #: flatcamEditors/FlatCAMGeoEditor.py:90
  1794. #: flatcamEditors/FlatCAMGrbEditor.py:2426
  1795. msgid "Square"
  1796. msgstr "Patrat"
  1797. #: flatcamEditors/FlatCAMGeoEditor.py:91
  1798. #: flatcamEditors/FlatCAMGrbEditor.py:2427
  1799. msgid "Beveled"
  1800. msgstr "Beveled"
  1801. #: flatcamEditors/FlatCAMGeoEditor.py:98
  1802. msgid "Buffer Interior"
  1803. msgstr "Bufer interior"
  1804. #: flatcamEditors/FlatCAMGeoEditor.py:100
  1805. msgid "Buffer Exterior"
  1806. msgstr "Bufer Exterior"
  1807. #: flatcamEditors/FlatCAMGeoEditor.py:106
  1808. msgid "Full Buffer"
  1809. msgstr "Bufer complet"
  1810. #: flatcamEditors/FlatCAMGeoEditor.py:127
  1811. #: flatcamEditors/FlatCAMGeoEditor.py:2682
  1812. msgid "Buffer Tool"
  1813. msgstr "Unealta Bufer"
  1814. #: flatcamEditors/FlatCAMGeoEditor.py:138
  1815. #: flatcamEditors/FlatCAMGeoEditor.py:155
  1816. #: flatcamEditors/FlatCAMGeoEditor.py:172
  1817. #: flatcamEditors/FlatCAMGeoEditor.py:2700
  1818. #: flatcamEditors/FlatCAMGeoEditor.py:2726
  1819. #: flatcamEditors/FlatCAMGeoEditor.py:2752
  1820. #: flatcamEditors/FlatCAMGrbEditor.py:4402
  1821. msgid ""
  1822. "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
  1823. "retry."
  1824. msgstr ""
  1825. "[WARNING_NOTCL] Valoarea distantei bufer lipseste sau este intr-un format "
  1826. "gresit. Adaugă din nou și reîncearcă."
  1827. #: flatcamEditors/FlatCAMGeoEditor.py:343
  1828. msgid "Text Tool"
  1829. msgstr "Unealta Text"
  1830. #: flatcamEditors/FlatCAMGeoEditor.py:401 flatcamGUI/FlatCAMGUI.py:803
  1831. msgid "Tool"
  1832. msgstr "Unealta"
  1833. #: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:4054
  1834. #: flatcamGUI/FlatCAMGUI.py:5618 flatcamGUI/FlatCAMGUI.py:5895
  1835. #: flatcamGUI/FlatCAMGUI.py:6035 flatcamGUI/ObjectUI.py:260
  1836. msgid "Tool dia:"
  1837. msgstr "Dia unealtă:"
  1838. #: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:6037
  1839. msgid ""
  1840. "Diameter of the tool to\n"
  1841. "be used in the operation."
  1842. msgstr ""
  1843. "Diametrul uneltei care este utilizata in operaţie. \n"
  1844. "Este și lăţimea de tăiere pentru uneltele cilindrice."
  1845. #: flatcamEditors/FlatCAMGeoEditor.py:443 flatcamGUI/FlatCAMGUI.py:5801
  1846. #: flatcamGUI/FlatCAMGUI.py:6046 flatcamTools/ToolNonCopperClear.py:165
  1847. #: flatcamTools/ToolPaint.py:160
  1848. msgid "Overlap Rate:"
  1849. msgstr "Rata suprapunere:"
  1850. #: flatcamEditors/FlatCAMGeoEditor.py:445 flatcamTools/ToolPaint.py:162
  1851. #, python-format
  1852. msgid ""
  1853. "How much (fraction) of the tool width to overlap each tool pass.\n"
  1854. "Example:\n"
  1855. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  1856. "\n"
  1857. "Adjust the value starting with lower values\n"
  1858. "and increasing it if areas that should be painted are still \n"
  1859. "not painted.\n"
  1860. "Lower values = faster processing, faster execution on PCB.\n"
  1861. "Higher values = slow processing and slow execution on CNC\n"
  1862. "due of too many paths."
  1863. msgstr ""
  1864. "Cat de mult (fracţie) din diametrul uneltei să se suprapună la fiecare "
  1865. "trecere a uneltei.\n"
  1866. "Exemplu:\n"
  1867. "O valoare aici de 0.25 inseamna 25% din diametrul uneltei de mai sus.\n"
  1868. "\n"
  1869. "Ajustează valoarea incepand de la valori mici și pe urma creste daca ariile "
  1870. "care ar trebui\n"
  1871. " >pictate< inca nu sunt procesate.\n"
  1872. "Valori scazute = procesare rapida,execuţie rapida a PCB-ului.\n"
  1873. "Valori mari= procesare lenta cat și o execuţie la fel de lenta a PCB-ului,\n"
  1874. "datorita numărului mai mare de treceri-tăiere."
  1875. #: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5817
  1876. #: flatcamGUI/FlatCAMGUI.py:5903 flatcamGUI/FlatCAMGUI.py:6056
  1877. #: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:181
  1878. #: flatcamTools/ToolPaint.py:177
  1879. msgid "Margin:"
  1880. msgstr "Margine:"
  1881. #: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:6058
  1882. #: flatcamTools/ToolPaint.py:179
  1883. msgid ""
  1884. "Distance by which to avoid\n"
  1885. "the edges of the polygon to\n"
  1886. "be painted."
  1887. msgstr ""
  1888. "Distanta fata de marginile\n"
  1889. "poligonului care trebuie\n"
  1890. "să fie >pictat<."
  1891. #: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5826
  1892. #: flatcamGUI/FlatCAMGUI.py:6067 flatcamTools/ToolNonCopperClear.py:190
  1893. #: flatcamTools/ToolPaint.py:188
  1894. msgid "Method:"
  1895. msgstr "Metoda:"
  1896. #: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:6069
  1897. msgid ""
  1898. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  1899. "<BR><B>Seed-based</B>: Outwards from seed."
  1900. msgstr ""
  1901. "Algoritm pentru a picta poligonul<BR><B>Standard</B>: Pas fix spre interior."
  1902. "<BR><B>Samanta</B>: Spre exterior pornind de la un punct-samanta."
  1903. #: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5842
  1904. #: flatcamGUI/FlatCAMGUI.py:6082 flatcamTools/ToolNonCopperClear.py:206
  1905. #: flatcamTools/ToolPaint.py:204
  1906. msgid "Connect:"
  1907. msgstr "Conectează:"
  1908. #: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/FlatCAMGUI.py:5844
  1909. #: flatcamGUI/FlatCAMGUI.py:6084 flatcamTools/ToolNonCopperClear.py:208
  1910. #: flatcamTools/ToolPaint.py:206
  1911. msgid ""
  1912. "Draw lines between resulting\n"
  1913. "segments to minimize tool lifts."
  1914. msgstr ""
  1915. "Desenează linii între segmentele\n"
  1916. "rezultate pentru a minimiza miscarile\n"
  1917. "de ridicare a uneltei."
  1918. #: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5851
  1919. #: flatcamGUI/FlatCAMGUI.py:6092 flatcamTools/ToolNonCopperClear.py:215
  1920. #: flatcamTools/ToolPaint.py:213
  1921. msgid "Contour:"
  1922. msgstr "Contur:"
  1923. #: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/FlatCAMGUI.py:5853
  1924. #: flatcamGUI/FlatCAMGUI.py:6094 flatcamTools/ToolNonCopperClear.py:217
  1925. #: flatcamTools/ToolPaint.py:215
  1926. msgid ""
  1927. "Cut around the perimeter of the polygon\n"
  1928. "to trim rough edges."
  1929. msgstr ""
  1930. "Taie de-a lungul perimetrului poligonului\n"
  1931. "pentru a elimina bavurile."
  1932. #: flatcamEditors/FlatCAMGeoEditor.py:509
  1933. msgid "Paint"
  1934. msgstr "Pictează"
  1935. #: flatcamEditors/FlatCAMGeoEditor.py:527 flatcamGUI/FlatCAMGUI.py:643
  1936. #: flatcamGUI/FlatCAMGUI.py:1866 flatcamGUI/ObjectUI.py:1314
  1937. #: flatcamTools/ToolPaint.py:341
  1938. msgid "Paint Tool"
  1939. msgstr "Unealta Paint"
  1940. #: flatcamEditors/FlatCAMGeoEditor.py:563
  1941. msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
  1942. msgstr "[WARNING_NOTCL] Operaţie Paint anulată. Nici-o forma selectată."
  1943. #: flatcamEditors/FlatCAMGeoEditor.py:574 flatcamTools/ToolCutOut.py:355
  1944. #: flatcamTools/ToolCutOut.py:518 flatcamTools/ToolCutOut.py:657
  1945. #: flatcamTools/ToolCutOut.py:762 flatcamTools/ToolDblSided.py:363
  1946. msgid ""
  1947. "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
  1948. "retry."
  1949. msgstr ""
  1950. "[WARNING_NOTCL] Diametrul uneltei lipseste sau este intr-un format "
  1951. "incompatibil. Adaugă-l și reîncearcă."
  1952. #: flatcamEditors/FlatCAMGeoEditor.py:585
  1953. msgid ""
  1954. "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  1955. msgstr ""
  1956. "[WARNING_NOTCL] Valoarea de suprapunere a uneltei lipseste sau este intr-un "
  1957. "format incompatibil. Adaugă-o și reîncearcă."
  1958. #: flatcamEditors/FlatCAMGeoEditor.py:597
  1959. msgid ""
  1960. "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
  1961. "retry."
  1962. msgstr ""
  1963. "[WARNING_NOTCL] Valoarea de margine lipseste sau este intr-un format "
  1964. "incompatibil. Adaugă-o și reîncearcă."
  1965. #: flatcamEditors/FlatCAMGeoEditor.py:606
  1966. #: flatcamEditors/FlatCAMGeoEditor.py:2707
  1967. #: flatcamEditors/FlatCAMGeoEditor.py:2733
  1968. #: flatcamEditors/FlatCAMGeoEditor.py:2759
  1969. #: flatcamTools/ToolNonCopperClear.py:813 flatcamTools/ToolProperties.py:104
  1970. msgid "Tools"
  1971. msgstr "Unelte"
  1972. #: flatcamEditors/FlatCAMGeoEditor.py:617
  1973. #: flatcamEditors/FlatCAMGeoEditor.py:990
  1974. #: flatcamEditors/FlatCAMGrbEditor.py:4539
  1975. #: flatcamEditors/FlatCAMGrbEditor.py:4924 flatcamGUI/FlatCAMGUI.py:654
  1976. #: flatcamGUI/FlatCAMGUI.py:1879 flatcamTools/ToolTransform.py:398
  1977. msgid "Transform Tool"
  1978. msgstr "Unealta Transformare"
  1979. #: flatcamEditors/FlatCAMGeoEditor.py:618
  1980. #: flatcamEditors/FlatCAMGeoEditor.py:679
  1981. #: flatcamEditors/FlatCAMGrbEditor.py:4540
  1982. #: flatcamEditors/FlatCAMGrbEditor.py:4602 flatcamTools/ToolTransform.py:24
  1983. #: flatcamTools/ToolTransform.py:82
  1984. msgid "Rotate"
  1985. msgstr "Rotaţie"
  1986. #: flatcamEditors/FlatCAMGeoEditor.py:619
  1987. #: flatcamEditors/FlatCAMGrbEditor.py:4541 flatcamTools/ToolTransform.py:25
  1988. msgid "Skew/Shear"
  1989. msgstr "Deformare"
  1990. #: flatcamEditors/FlatCAMGeoEditor.py:620
  1991. #: flatcamEditors/FlatCAMGrbEditor.py:2471
  1992. #: flatcamEditors/FlatCAMGrbEditor.py:4542 flatcamGUI/FlatCAMGUI.py:718
  1993. #: flatcamGUI/FlatCAMGUI.py:1947 flatcamGUI/ObjectUI.py:100
  1994. #: flatcamTools/ToolTransform.py:26
  1995. msgid "Scale"
  1996. msgstr "Scalare"
  1997. #: flatcamEditors/FlatCAMGeoEditor.py:621
  1998. #: flatcamEditors/FlatCAMGrbEditor.py:4543 flatcamTools/ToolTransform.py:27
  1999. msgid "Mirror (Flip)"
  2000. msgstr "Oglindire"
  2001. #: flatcamEditors/FlatCAMGeoEditor.py:622
  2002. #: flatcamEditors/FlatCAMGrbEditor.py:4544 flatcamGUI/ObjectUI.py:127
  2003. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  2004. #: flatcamTools/ToolTransform.py:28
  2005. msgid "Offset"
  2006. msgstr "Ofset"
  2007. #: flatcamEditors/FlatCAMGeoEditor.py:633
  2008. #: flatcamEditors/FlatCAMGrbEditor.py:4556
  2009. #, python-format
  2010. msgid "Editor %s"
  2011. msgstr "Editor %s"
  2012. #: flatcamEditors/FlatCAMGeoEditor.py:667
  2013. #: flatcamEditors/FlatCAMGrbEditor.py:4590 flatcamTools/ToolTransform.py:70
  2014. msgid ""
  2015. "Angle for Rotation action, in degrees.\n"
  2016. "Float number between -360 and 359.\n"
  2017. "Positive numbers for CW motion.\n"
  2018. "Negative numbers for CCW motion."
  2019. msgstr ""
  2020. "Unghiul pentru Rotaţie, in grade. Număr Real cu valori între -360 și 359.\n"
  2021. "Numerele pozitive inseamna o mișcare in sens ace ceasornic.\n"
  2022. "Numerele negative inseamna o mișcare in sens invers ace ceasornic."
  2023. #: flatcamEditors/FlatCAMGeoEditor.py:681
  2024. #: flatcamEditors/FlatCAMGrbEditor.py:4604
  2025. msgid ""
  2026. "Rotate the selected shape(s).\n"
  2027. "The point of reference is the middle of\n"
  2028. "the bounding box for all selected shapes."
  2029. msgstr ""
  2030. "Roteste formele selectate.\n"
  2031. "Punctul de referinţă este mijlocul\n"
  2032. "formei înconjurătoare care cuprinde\n"
  2033. "toate formele selectate."
  2034. #: flatcamEditors/FlatCAMGeoEditor.py:704
  2035. #: flatcamEditors/FlatCAMGrbEditor.py:4627 flatcamTools/ToolTransform.py:107
  2036. msgid "Angle X:"
  2037. msgstr "Unghi X:"
  2038. #: flatcamEditors/FlatCAMGeoEditor.py:706
  2039. #: flatcamEditors/FlatCAMGeoEditor.py:724
  2040. #: flatcamEditors/FlatCAMGrbEditor.py:4629
  2041. #: flatcamEditors/FlatCAMGrbEditor.py:4647 flatcamTools/ToolTransform.py:109
  2042. #: flatcamTools/ToolTransform.py:127
  2043. msgid ""
  2044. "Angle for Skew action, in degrees.\n"
  2045. "Float number between -360 and 359."
  2046. msgstr ""
  2047. "Valoarea unghiului de Deformare, in grade.\n"
  2048. "Ia valori Reale între -360 and 359 grade."
  2049. #: flatcamEditors/FlatCAMGeoEditor.py:715
  2050. #: flatcamEditors/FlatCAMGrbEditor.py:4638 flatcamTools/ToolTransform.py:118
  2051. msgid "Skew X"
  2052. msgstr "Deformare X"
  2053. #: flatcamEditors/FlatCAMGeoEditor.py:717
  2054. #: flatcamEditors/FlatCAMGeoEditor.py:735
  2055. #: flatcamEditors/FlatCAMGrbEditor.py:4640
  2056. #: flatcamEditors/FlatCAMGrbEditor.py:4658
  2057. msgid ""
  2058. "Skew/shear the selected shape(s).\n"
  2059. "The point of reference is the middle of\n"
  2060. "the bounding box for all selected shapes."
  2061. msgstr ""
  2062. "Deformează formele selectate.\n"
  2063. "Punctul de referinţă este mijlocul\n"
  2064. "formei înconjurătoare care cuprinde\n"
  2065. "toate formele selectate."
  2066. #: flatcamEditors/FlatCAMGeoEditor.py:722
  2067. #: flatcamEditors/FlatCAMGrbEditor.py:4645 flatcamTools/ToolTransform.py:125
  2068. msgid "Angle Y:"
  2069. msgstr "Unghi Y:"
  2070. #: flatcamEditors/FlatCAMGeoEditor.py:733
  2071. #: flatcamEditors/FlatCAMGrbEditor.py:4656 flatcamTools/ToolTransform.py:136
  2072. msgid "Skew Y"
  2073. msgstr "Deformare Y"
  2074. #: flatcamEditors/FlatCAMGeoEditor.py:761
  2075. #: flatcamEditors/FlatCAMGrbEditor.py:4684 flatcamTools/ToolTransform.py:164
  2076. msgid "Factor X:"
  2077. msgstr "Factor X:"
  2078. #: flatcamEditors/FlatCAMGeoEditor.py:763
  2079. #: flatcamEditors/FlatCAMGrbEditor.py:4686 flatcamTools/ToolTransform.py:166
  2080. msgid "Factor for Scale action over X axis."
  2081. msgstr "Factor pentru scalarea pe axa X"
  2082. #: flatcamEditors/FlatCAMGeoEditor.py:771
  2083. #: flatcamEditors/FlatCAMGrbEditor.py:4694 flatcamTools/ToolTransform.py:174
  2084. msgid "Scale X"
  2085. msgstr "Scalează X"
  2086. #: flatcamEditors/FlatCAMGeoEditor.py:773
  2087. #: flatcamEditors/FlatCAMGeoEditor.py:790
  2088. #: flatcamEditors/FlatCAMGrbEditor.py:4696
  2089. #: flatcamEditors/FlatCAMGrbEditor.py:4713
  2090. msgid ""
  2091. "Scale the selected shape(s).\n"
  2092. "The point of reference depends on \n"
  2093. "the Scale reference checkbox state."
  2094. msgstr ""
  2095. "Scalează formele selectate.\n"
  2096. "Punctul de referinţă depinde de \n"
  2097. "starea checkbox-ului >Referința scalare<."
  2098. #: flatcamEditors/FlatCAMGeoEditor.py:778
  2099. #: flatcamEditors/FlatCAMGrbEditor.py:4701 flatcamTools/ToolTransform.py:181
  2100. msgid "Factor Y:"
  2101. msgstr "Factor Y:"
  2102. #: flatcamEditors/FlatCAMGeoEditor.py:780
  2103. #: flatcamEditors/FlatCAMGrbEditor.py:4703 flatcamTools/ToolTransform.py:183
  2104. msgid "Factor for Scale action over Y axis."
  2105. msgstr "Factor pentru scalarea pe axa Y."
  2106. #: flatcamEditors/FlatCAMGeoEditor.py:788
  2107. #: flatcamEditors/FlatCAMGrbEditor.py:4711 flatcamTools/ToolTransform.py:191
  2108. msgid "Scale Y"
  2109. msgstr "Scalează Y"
  2110. #: flatcamEditors/FlatCAMGeoEditor.py:797
  2111. #: flatcamEditors/FlatCAMGrbEditor.py:4720 flatcamGUI/FlatCAMGUI.py:6441
  2112. #: flatcamTools/ToolTransform.py:200
  2113. msgid "Link"
  2114. msgstr "Legatura"
  2115. #: flatcamEditors/FlatCAMGeoEditor.py:799
  2116. #: flatcamEditors/FlatCAMGrbEditor.py:4722
  2117. msgid ""
  2118. "Scale the selected shape(s)\n"
  2119. "using the Scale Factor X for both axis."
  2120. msgstr ""
  2121. "Scalează formele selectate\n"
  2122. "folsoind factorul: Factor X pentru ambele axe."
  2123. #: flatcamEditors/FlatCAMGeoEditor.py:805
  2124. #: flatcamEditors/FlatCAMGrbEditor.py:4728 flatcamGUI/FlatCAMGUI.py:6449
  2125. #: flatcamTools/ToolTransform.py:208
  2126. msgid "Scale Reference"
  2127. msgstr "Referința scalare"
  2128. #: flatcamEditors/FlatCAMGeoEditor.py:807
  2129. #: flatcamEditors/FlatCAMGrbEditor.py:4730
  2130. msgid ""
  2131. "Scale the selected shape(s)\n"
  2132. "using the origin reference when checked,\n"
  2133. "and the center of the biggest bounding box\n"
  2134. "of the selected shapes when unchecked."
  2135. msgstr ""
  2136. "Scalează formele selectate.\n"
  2137. "Punctul de referinţă este mijlocul\n"
  2138. "formei înconjurătoare care cuprinde\n"
  2139. "toate formele selectate când nu este\n"
  2140. "bifat și este originea când este bifat."
  2141. #: flatcamEditors/FlatCAMGeoEditor.py:835
  2142. #: flatcamEditors/FlatCAMGrbEditor.py:4759 flatcamTools/ToolTransform.py:238
  2143. msgid "Value X:"
  2144. msgstr "Valoare X:"
  2145. #: flatcamEditors/FlatCAMGeoEditor.py:837
  2146. #: flatcamEditors/FlatCAMGrbEditor.py:4761 flatcamTools/ToolTransform.py:240
  2147. msgid "Value for Offset action on X axis."
  2148. msgstr "Valoare pentru deplasarea pe axa X."
  2149. #: flatcamEditors/FlatCAMGeoEditor.py:845
  2150. #: flatcamEditors/FlatCAMGrbEditor.py:4769 flatcamTools/ToolTransform.py:248
  2151. msgid "Offset X"
  2152. msgstr "Ofset pe X"
  2153. #: flatcamEditors/FlatCAMGeoEditor.py:847
  2154. #: flatcamEditors/FlatCAMGeoEditor.py:865
  2155. #: flatcamEditors/FlatCAMGrbEditor.py:4771
  2156. #: flatcamEditors/FlatCAMGrbEditor.py:4789
  2157. msgid ""
  2158. "Offset the selected shape(s).\n"
  2159. "The point of reference is the middle of\n"
  2160. "the bounding box for all selected shapes.\n"
  2161. msgstr ""
  2162. "Deplasează formele selectate\n"
  2163. "Punctul de referinţă este mijlocul\n"
  2164. "formei înconjurătoare care cuprinde\n"
  2165. "toate formele selectate.\n"
  2166. #: flatcamEditors/FlatCAMGeoEditor.py:853
  2167. #: flatcamEditors/FlatCAMGrbEditor.py:4777 flatcamTools/ToolTransform.py:255
  2168. msgid "Value Y:"
  2169. msgstr "Valoare Y:"
  2170. #: flatcamEditors/FlatCAMGeoEditor.py:855
  2171. #: flatcamEditors/FlatCAMGrbEditor.py:4779 flatcamTools/ToolTransform.py:257
  2172. msgid "Value for Offset action on Y axis."
  2173. msgstr "Valoare pentru deplasarea pe axa Y."
  2174. #: flatcamEditors/FlatCAMGeoEditor.py:863
  2175. #: flatcamEditors/FlatCAMGrbEditor.py:4787 flatcamTools/ToolTransform.py:265
  2176. msgid "Offset Y"
  2177. msgstr "Ofset pe Y"
  2178. #: flatcamEditors/FlatCAMGeoEditor.py:894
  2179. #: flatcamEditors/FlatCAMGrbEditor.py:4818 flatcamTools/ToolTransform.py:295
  2180. msgid "Flip on X"
  2181. msgstr "Oglindește pe X"
  2182. #: flatcamEditors/FlatCAMGeoEditor.py:896
  2183. #: flatcamEditors/FlatCAMGeoEditor.py:904
  2184. #: flatcamEditors/FlatCAMGrbEditor.py:4820
  2185. #: flatcamEditors/FlatCAMGrbEditor.py:4828
  2186. msgid ""
  2187. "Flip the selected shape(s) over the X axis.\n"
  2188. "Does not create a new shape."
  2189. msgstr ""
  2190. "Oglindește formele selectate peste axa X\n"
  2191. "Nu crează noi forme."
  2192. #: flatcamEditors/FlatCAMGeoEditor.py:902
  2193. #: flatcamEditors/FlatCAMGrbEditor.py:4826 flatcamTools/ToolTransform.py:303
  2194. msgid "Flip on Y"
  2195. msgstr "Oglindește pe Y"
  2196. #: flatcamEditors/FlatCAMGeoEditor.py:911
  2197. #: flatcamEditors/FlatCAMGrbEditor.py:4835 flatcamTools/ToolTransform.py:312
  2198. msgid "Ref Pt"
  2199. msgstr "Pt ref"
  2200. #: flatcamEditors/FlatCAMGeoEditor.py:913
  2201. #: flatcamEditors/FlatCAMGrbEditor.py:4837
  2202. msgid ""
  2203. "Flip the selected shape(s)\n"
  2204. "around the point in Point Entry Field.\n"
  2205. "\n"
  2206. "The point coordinates can be captured by\n"
  2207. "left click on canvas together with pressing\n"
  2208. "SHIFT key. \n"
  2209. "Then click Add button to insert coordinates.\n"
  2210. "Or enter the coords in format (x, y) in the\n"
  2211. "Point Entry field and click Flip on X(Y)"
  2212. msgstr ""
  2213. "Oglindește formele selectate\n"
  2214. "in jurul punctului din câmpul >Punct<\n"
  2215. "\n"
  2216. "Coordonatele punctului pot fi obtinute\n"
  2217. "prin click pe canvas in timp ce se tine apasata\n"
  2218. "tasta SHIFT.\n"
  2219. "Apoi click pe butonul >Adaugă< pentru a insera\n"
  2220. "coordonatele.\n"
  2221. "Alternativ se pot introduce manual in formatul (x, y). \n"
  2222. "La final click pe >Oglindește pe X(Y)<."
  2223. #: flatcamEditors/FlatCAMGeoEditor.py:925
  2224. #: flatcamEditors/FlatCAMGrbEditor.py:4849 flatcamTools/ToolTransform.py:325
  2225. msgid "Point:"
  2226. msgstr "Punct:"
  2227. #: flatcamEditors/FlatCAMGeoEditor.py:927
  2228. #: flatcamEditors/FlatCAMGrbEditor.py:4851
  2229. msgid ""
  2230. "Coordinates in format (x, y) used as reference for mirroring.\n"
  2231. "The 'x' in (x, y) will be used when using Flip on X and\n"
  2232. "the 'y' in (x, y) will be used when using Flip on Y."
  2233. msgstr ""
  2234. "Coordonatele in format (x, y) folosite pentru oglindire.\n"
  2235. "Valoarea 'x' in (x, y) va fi folosita când se face oglindire pe X\n"
  2236. "și valoarea 'y' in (x, y) va fi folosita când se face oglindire pe Y."
  2237. #: flatcamEditors/FlatCAMGeoEditor.py:939
  2238. #: flatcamEditors/FlatCAMGrbEditor.py:4863 flatcamTools/ToolTransform.py:339
  2239. msgid ""
  2240. "The point coordinates can be captured by\n"
  2241. "left click on canvas together with pressing\n"
  2242. "SHIFT key. Then click Add button to insert."
  2243. msgstr ""
  2244. "Coordonatele punctului se pot obtine\n"
  2245. "prin click pe canvas in timp ce se tine apasata\n"
  2246. "tasta SHIFT.\n"
  2247. "La final, apasa butonul >Adaugă< pt a le insera."
  2248. #: flatcamEditors/FlatCAMGeoEditor.py:1054
  2249. #: flatcamEditors/FlatCAMGrbEditor.py:4988
  2250. msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  2251. msgstr "[WARNING_NOTCL] Transformare anulată. Nici-o formă nu este selectată."
  2252. #: flatcamEditors/FlatCAMGeoEditor.py:1075
  2253. #: flatcamEditors/FlatCAMGrbEditor.py:5008 flatcamTools/ToolTransform.py:468
  2254. msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
  2255. msgstr ""
  2256. "[ERROR_NOTCL] Valoare incorecta intodusa pentru Rotaţie, foloseşte un număr "
  2257. "Real."
  2258. #: flatcamEditors/FlatCAMGeoEditor.py:1112
  2259. #: flatcamEditors/FlatCAMGrbEditor.py:5051 flatcamTools/ToolTransform.py:502
  2260. msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
  2261. msgstr ""
  2262. "[ERROR_NOTCL] Valoare incorecta intodusa pentru Deformare X, foloseşte un "
  2263. "număr Real."
  2264. #: flatcamEditors/FlatCAMGeoEditor.py:1133
  2265. #: flatcamEditors/FlatCAMGrbEditor.py:5078 flatcamTools/ToolTransform.py:520
  2266. msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
  2267. msgstr ""
  2268. "[ERROR_NOTCL] Valoare incorecta intodusa pentru Deformare Y, foloseşte un "
  2269. "număr Real."
  2270. #: flatcamEditors/FlatCAMGeoEditor.py:1154
  2271. #: flatcamEditors/FlatCAMGrbEditor.py:5105 flatcamTools/ToolTransform.py:538
  2272. msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
  2273. msgstr ""
  2274. "[ERROR_NOTCL] Valoare incorecta intodusa pentru Scalare X, foloseşte un "
  2275. "număr Real."
  2276. #: flatcamEditors/FlatCAMGeoEditor.py:1191
  2277. #: flatcamEditors/FlatCAMGrbEditor.py:5146 flatcamTools/ToolTransform.py:572
  2278. msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
  2279. msgstr ""
  2280. "[ERROR_NOTCL] Valoare incorecta intodusa pentru Scalare Y, foloseşte un "
  2281. "număr Real."
  2282. #: flatcamEditors/FlatCAMGeoEditor.py:1223
  2283. #: flatcamEditors/FlatCAMGrbEditor.py:5184 flatcamTools/ToolTransform.py:601
  2284. msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
  2285. msgstr ""
  2286. "[ERROR_NOTCL] Valoare incorecta intodusa pentru Ofset pe X, foloseşte un "
  2287. "număr Real."
  2288. #: flatcamEditors/FlatCAMGeoEditor.py:1244
  2289. #: flatcamEditors/FlatCAMGrbEditor.py:5210 flatcamTools/ToolTransform.py:619
  2290. msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
  2291. msgstr ""
  2292. "[ERROR_NOTCL] Valoare incorecta intodusa pentru Ofset pe Y, foloseşte un "
  2293. "număr Real."
  2294. #: flatcamEditors/FlatCAMGeoEditor.py:1262
  2295. #: flatcamEditors/FlatCAMGrbEditor.py:5233
  2296. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  2297. msgstr ""
  2298. "[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a "
  2299. "putea face Rotaţie!"
  2300. #: flatcamEditors/FlatCAMGeoEditor.py:1265
  2301. #: flatcamEditors/FlatCAMGrbEditor.py:5236 flatcamTools/ToolTransform.py:640
  2302. msgid "Appying Rotate"
  2303. msgstr "Execuţie Rotaţie"
  2304. #: flatcamEditors/FlatCAMGeoEditor.py:1293
  2305. #: flatcamEditors/FlatCAMGrbEditor.py:5269
  2306. msgid "[success] Done. Rotate completed."
  2307. msgstr "[success] Executat. Rotaţie finalizata."
  2308. #: flatcamEditors/FlatCAMGeoEditor.py:1309
  2309. #: flatcamEditors/FlatCAMGrbEditor.py:5288
  2310. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  2311. msgstr ""
  2312. "[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a "
  2313. "putea face Oglindire!"
  2314. #: flatcamEditors/FlatCAMGeoEditor.py:1312
  2315. #: flatcamEditors/FlatCAMGrbEditor.py:5291 flatcamTools/ToolTransform.py:691
  2316. msgid "Applying Flip"
  2317. msgstr "Execuţie Oglindire"
  2318. #: flatcamEditors/FlatCAMGeoEditor.py:1342
  2319. #: flatcamEditors/FlatCAMGrbEditor.py:5330 flatcamTools/ToolTransform.py:733
  2320. msgid "[success] Flip on the Y axis done ..."
  2321. msgstr "Oglindirea pe axa X efectuata ..."
  2322. #: flatcamEditors/FlatCAMGeoEditor.py:1345
  2323. #: flatcamEditors/FlatCAMGrbEditor.py:5338 flatcamTools/ToolTransform.py:742
  2324. msgid "[success] Flip on the X axis done ..."
  2325. msgstr "Oglindirea pe axa Y efectuata ..."
  2326. #: flatcamEditors/FlatCAMGeoEditor.py:1364
  2327. #: flatcamEditors/FlatCAMGrbEditor.py:5358
  2328. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  2329. msgstr ""
  2330. "[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a "
  2331. "putea face Deformare!"
  2332. #: flatcamEditors/FlatCAMGeoEditor.py:1367
  2333. #: flatcamEditors/FlatCAMGrbEditor.py:5361 flatcamTools/ToolTransform.py:760
  2334. msgid "Applying Skew"
  2335. msgstr "Execuţie Deformare"
  2336. #: flatcamEditors/FlatCAMGeoEditor.py:1392
  2337. #: flatcamEditors/FlatCAMGrbEditor.py:5396 flatcamTools/ToolTransform.py:791
  2338. #, python-format
  2339. msgid "[success] Skew on the %s axis done ..."
  2340. msgstr "[success] Deformarea pe axa %s executată ..."
  2341. #: flatcamEditors/FlatCAMGeoEditor.py:1396
  2342. #: flatcamEditors/FlatCAMGrbEditor.py:5400 flatcamTools/ToolTransform.py:795
  2343. #, python-format
  2344. msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  2345. msgstr "[ERROR_NOTCL] Datorită erorii: %s, Deformarea a fost anulată."
  2346. #: flatcamEditors/FlatCAMGeoEditor.py:1407
  2347. #: flatcamEditors/FlatCAMGrbEditor.py:5419
  2348. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  2349. msgstr ""
  2350. "[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a "
  2351. "putea face Scalare!"
  2352. #: flatcamEditors/FlatCAMGeoEditor.py:1410
  2353. #: flatcamEditors/FlatCAMGrbEditor.py:5422 flatcamTools/ToolTransform.py:809
  2354. msgid "Applying Scale"
  2355. msgstr "Execuţie Scalare"
  2356. #: flatcamEditors/FlatCAMGeoEditor.py:1443
  2357. #: flatcamEditors/FlatCAMGrbEditor.py:5460 flatcamTools/ToolTransform.py:848
  2358. #, python-format
  2359. msgid "[success] Scale on the %s axis done ..."
  2360. msgstr "[success] Scalarea pe axa %s executată ..."
  2361. #: flatcamEditors/FlatCAMGeoEditor.py:1446
  2362. #: flatcamEditors/FlatCAMGrbEditor.py:5463 flatcamTools/ToolTransform.py:851
  2363. #, python-format
  2364. msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  2365. msgstr "[ERROR_NOTCL] Datorită erorii: %s, Scalarea a fost anulată ..."
  2366. #: flatcamEditors/FlatCAMGeoEditor.py:1455
  2367. #: flatcamEditors/FlatCAMGrbEditor.py:5476
  2368. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  2369. msgstr ""
  2370. "[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a "
  2371. "putea face Ofset!"
  2372. #: flatcamEditors/FlatCAMGeoEditor.py:1458
  2373. #: flatcamEditors/FlatCAMGrbEditor.py:5479 flatcamTools/ToolTransform.py:861
  2374. msgid "Applying Offset"
  2375. msgstr "Execuţie Ofset"
  2376. #: flatcamEditors/FlatCAMGeoEditor.py:1469
  2377. #: flatcamEditors/FlatCAMGrbEditor.py:5501 flatcamTools/ToolTransform.py:880
  2378. #, python-format
  2379. msgid "[success] Offset on the %s axis done ..."
  2380. msgstr "[success] Deplasarea pe axa %s executată ..."
  2381. #: flatcamEditors/FlatCAMGeoEditor.py:1473
  2382. #: flatcamEditors/FlatCAMGrbEditor.py:5505 flatcamTools/ToolTransform.py:884
  2383. #, python-format
  2384. msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  2385. msgstr "[ERROR_NOTCL] Datorită erorii: %s, Deplasarea a fost anulată."
  2386. #: flatcamEditors/FlatCAMGeoEditor.py:1477
  2387. #: flatcamEditors/FlatCAMGrbEditor.py:5509
  2388. msgid "Rotate ..."
  2389. msgstr "Rotaţie ..."
  2390. #: flatcamEditors/FlatCAMGeoEditor.py:1478
  2391. #: flatcamEditors/FlatCAMGeoEditor.py:1535
  2392. #: flatcamEditors/FlatCAMGeoEditor.py:1552
  2393. #: flatcamEditors/FlatCAMGrbEditor.py:5510
  2394. #: flatcamEditors/FlatCAMGrbEditor.py:5567
  2395. #: flatcamEditors/FlatCAMGrbEditor.py:5584
  2396. msgid "Enter an Angle Value (degrees):"
  2397. msgstr "Introdu o valoare in grade pt Unghi:"
  2398. #: flatcamEditors/FlatCAMGeoEditor.py:1487
  2399. #: flatcamEditors/FlatCAMGrbEditor.py:5519
  2400. msgid "[success] Geometry shape rotate done..."
  2401. msgstr "[success] Rotatia formei geometrice executată ..."
  2402. #: flatcamEditors/FlatCAMGeoEditor.py:1492
  2403. #: flatcamEditors/FlatCAMGrbEditor.py:5524
  2404. msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  2405. msgstr "[WARNING_NOTCL] Rotatia formei geometrice anulată ..."
  2406. #: flatcamEditors/FlatCAMGeoEditor.py:1498
  2407. #: flatcamEditors/FlatCAMGrbEditor.py:5530
  2408. msgid "Offset on X axis ..."
  2409. msgstr "Ofset pe axa X ..."
  2410. #: flatcamEditors/FlatCAMGeoEditor.py:1499
  2411. #: flatcamEditors/FlatCAMGeoEditor.py:1518
  2412. #: flatcamEditors/FlatCAMGrbEditor.py:5531
  2413. #: flatcamEditors/FlatCAMGrbEditor.py:5550
  2414. #, python-format
  2415. msgid "Enter a distance Value (%s):"
  2416. msgstr "Introdu of valoare pt Distanta (%s):"
  2417. #: flatcamEditors/FlatCAMGeoEditor.py:1508
  2418. #: flatcamEditors/FlatCAMGrbEditor.py:5540
  2419. msgid "[success] Geometry shape offset on X axis done..."
  2420. msgstr "[success] Deplasarea formei geometrice pe axa X executată ..."
  2421. #: flatcamEditors/FlatCAMGeoEditor.py:1512
  2422. #: flatcamEditors/FlatCAMGrbEditor.py:5544
  2423. msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  2424. msgstr "[WARNING_NOTCL] Deplasarea formei geometrice pe axa X anulată ..."
  2425. #: flatcamEditors/FlatCAMGeoEditor.py:1517
  2426. #: flatcamEditors/FlatCAMGrbEditor.py:5549
  2427. msgid "Offset on Y axis ..."
  2428. msgstr "Ofset pe axa Y ..."
  2429. #: flatcamEditors/FlatCAMGeoEditor.py:1527
  2430. #: flatcamEditors/FlatCAMGrbEditor.py:5559
  2431. msgid "[success] Geometry shape offset on Y axis done..."
  2432. msgstr "[success] Deplasarea formei geometrice pe axa Y executată ..."
  2433. #: flatcamEditors/FlatCAMGeoEditor.py:1531
  2434. #: flatcamEditors/FlatCAMGrbEditor.py:5563
  2435. msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  2436. msgstr "[WARNING_NOTCL] Deplasarea formei geometrice pe axa Y anulată ..."
  2437. #: flatcamEditors/FlatCAMGeoEditor.py:1534
  2438. #: flatcamEditors/FlatCAMGrbEditor.py:5566
  2439. msgid "Skew on X axis ..."
  2440. msgstr "Deformare pe axa X ..."
  2441. #: flatcamEditors/FlatCAMGeoEditor.py:1544
  2442. #: flatcamEditors/FlatCAMGrbEditor.py:5576
  2443. msgid "[success] Geometry shape skew on X axis done..."
  2444. msgstr "[success] Deformarea formei geometrice pe axa X executată ..."
  2445. #: flatcamEditors/FlatCAMGeoEditor.py:1548
  2446. #: flatcamEditors/FlatCAMGrbEditor.py:5580
  2447. msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  2448. msgstr "[WARNING_NOTCL] Deformarea formei geometrice pe axa X anulată ..."
  2449. #: flatcamEditors/FlatCAMGeoEditor.py:1551
  2450. #: flatcamEditors/FlatCAMGrbEditor.py:5583
  2451. msgid "Skew on Y axis ..."
  2452. msgstr "Deformare pe axa Y ..."
  2453. #: flatcamEditors/FlatCAMGeoEditor.py:1561
  2454. #: flatcamEditors/FlatCAMGrbEditor.py:5593
  2455. msgid "[success] Geometry shape skew on Y axis done..."
  2456. msgstr "[success] Deformarea formei geometrice pe axa Y executată ..."
  2457. #: flatcamEditors/FlatCAMGeoEditor.py:1565
  2458. #: flatcamEditors/FlatCAMGrbEditor.py:5597
  2459. msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  2460. msgstr "[success] Deformarea formei geometrice pe axa Y executată ..."
  2461. #: flatcamEditors/FlatCAMGeoEditor.py:1929
  2462. #: flatcamEditors/FlatCAMGeoEditor.py:1980
  2463. #: flatcamEditors/FlatCAMGrbEditor.py:1361
  2464. #: flatcamEditors/FlatCAMGrbEditor.py:1430
  2465. msgid "Click on Center point ..."
  2466. msgstr "Click pe punctul de Centru ..."
  2467. #: flatcamEditors/FlatCAMGeoEditor.py:1936
  2468. #: flatcamEditors/FlatCAMGrbEditor.py:1369
  2469. msgid "Click on Perimeter point to complete ..."
  2470. msgstr "Click pe un punct aflat pe Circumferintă pentru terminare ..."
  2471. #: flatcamEditors/FlatCAMGeoEditor.py:1965
  2472. msgid "[success] Done. Adding Circle completed."
  2473. msgstr "[success] Executat. Adăugarea unei forme Cerc terminată."
  2474. #: flatcamEditors/FlatCAMGeoEditor.py:2000
  2475. #: flatcamEditors/FlatCAMGrbEditor.py:1462
  2476. msgid "Click on Start point ..."
  2477. msgstr "Click pe punctul de Start ..."
  2478. #: flatcamEditors/FlatCAMGeoEditor.py:2002
  2479. #: flatcamEditors/FlatCAMGrbEditor.py:1464
  2480. msgid "Click on Point3 ..."
  2481. msgstr "Click pe Punctul3 ..."
  2482. #: flatcamEditors/FlatCAMGeoEditor.py:2004
  2483. #: flatcamEditors/FlatCAMGrbEditor.py:1466
  2484. msgid "Click on Stop point ..."
  2485. msgstr "Click pe punctulde Stop ..."
  2486. #: flatcamEditors/FlatCAMGeoEditor.py:2009
  2487. #: flatcamEditors/FlatCAMGrbEditor.py:1471
  2488. msgid "Click on Stop point to complete ..."
  2489. msgstr "Click pe punctul de Stop pentru terminare ..."
  2490. #: flatcamEditors/FlatCAMGeoEditor.py:2011
  2491. #: flatcamEditors/FlatCAMGrbEditor.py:1473
  2492. msgid "Click on Point2 to complete ..."
  2493. msgstr "Click pe Punctul2 pentru terminare ..."
  2494. #: flatcamEditors/FlatCAMGeoEditor.py:2013
  2495. #: flatcamEditors/FlatCAMGrbEditor.py:1475
  2496. msgid "Click on Center point to complete ..."
  2497. msgstr "Click pe punctul de Centru pentru terminare ..."
  2498. #: flatcamEditors/FlatCAMGeoEditor.py:2025
  2499. #: flatcamEditors/FlatCAMGrbEditor.py:1487
  2500. #, python-format
  2501. msgid "Direction: %s"
  2502. msgstr "Direcţie: %s"
  2503. #: flatcamEditors/FlatCAMGeoEditor.py:2035
  2504. #: flatcamEditors/FlatCAMGrbEditor.py:1497
  2505. msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
  2506. msgstr "Mod: Start -> Stop -> Centru. Click pe punctul de Start ..."
  2507. #: flatcamEditors/FlatCAMGeoEditor.py:2038
  2508. #: flatcamEditors/FlatCAMGrbEditor.py:1500
  2509. msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
  2510. msgstr "Mod: Point1 -> Point3 -> Point2. Click pe Punctul1 ..."
  2511. #: flatcamEditors/FlatCAMGeoEditor.py:2041
  2512. #: flatcamEditors/FlatCAMGrbEditor.py:1503
  2513. msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
  2514. msgstr "Mod: Center -> Start -> Stop. Click pe punctul de Centru ..."
  2515. #: flatcamEditors/FlatCAMGeoEditor.py:2179
  2516. msgid "[success] Done. Arc completed."
  2517. msgstr "[success] Executat. Adăugarea unei forme Arc terminată."
  2518. #: flatcamEditors/FlatCAMGeoEditor.py:2198
  2519. #: flatcamEditors/FlatCAMGeoEditor.py:2251
  2520. #: flatcamEditors/FlatCAMGeoEditor.py:2626
  2521. msgid "Click on 1st corner ..."
  2522. msgstr "Click pe primul colt ..."
  2523. #: flatcamEditors/FlatCAMGeoEditor.py:2204
  2524. msgid "Click on opposite corner to complete ..."
  2525. msgstr "Click pe punctul opus pentru terminare ..."
  2526. #: flatcamEditors/FlatCAMGeoEditor.py:2232
  2527. msgid "[success] Done. Rectangle completed."
  2528. msgstr "[success] Executat. Rotaţie finalizata."
  2529. #: flatcamEditors/FlatCAMGeoEditor.py:2258
  2530. msgid "Click on next Point or click right mouse button to complete ..."
  2531. msgstr ""
  2532. "Click pe punctul următor sau click buton dreapta al mousului pentru "
  2533. "terminare ..."
  2534. #: flatcamEditors/FlatCAMGeoEditor.py:2286
  2535. msgid "[success] Done. Polygon completed."
  2536. msgstr "[success] Executat. Adăugarea unei forme Poligon terminată."
  2537. #: flatcamEditors/FlatCAMGeoEditor.py:2296
  2538. #: flatcamEditors/FlatCAMGeoEditor.py:2342
  2539. #: flatcamEditors/FlatCAMGrbEditor.py:1058
  2540. #: flatcamEditors/FlatCAMGrbEditor.py:1252
  2541. msgid "Backtracked one point ..."
  2542. msgstr "Revenit la penultimul Punct ..."
  2543. #: flatcamEditors/FlatCAMGeoEditor.py:2324
  2544. msgid "[success] Done. Path completed."
  2545. msgstr "[success] Executata. Adăugarea unei forme tip Cale terminată."
  2546. #: flatcamEditors/FlatCAMGeoEditor.py:2447
  2547. msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
  2548. msgstr ""
  2549. "[WARNING_NOTCL] MUTARE: Nici-o forma nu este selectată. Selectează o forma "
  2550. "pentru a putea face deplasare!"
  2551. #: flatcamEditors/FlatCAMGeoEditor.py:2449
  2552. #: flatcamEditors/FlatCAMGeoEditor.py:2461
  2553. msgid " MOVE: Click on reference point ..."
  2554. msgstr "MUTARE: Click pe punctul de referinţă ..."
  2555. #: flatcamEditors/FlatCAMGeoEditor.py:2452
  2556. msgid " Click on destination point ..."
  2557. msgstr " Click pe punctul de Destinaţie ..."
  2558. #: flatcamEditors/FlatCAMGeoEditor.py:2486
  2559. msgid "[success] Done. Geometry(s) Move completed."
  2560. msgstr "[success] Executat. Mutarea Geometriilor terminată."
  2561. #: flatcamEditors/FlatCAMGeoEditor.py:2606
  2562. msgid "[success] Done. Geometry(s) Copy completed."
  2563. msgstr "[success] Executat. Copierea Geometriilor terminată."
  2564. #: flatcamEditors/FlatCAMGeoEditor.py:2640
  2565. #, python-format
  2566. msgid ""
  2567. "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
  2568. "supported. Error: %s"
  2569. msgstr ""
  2570. "[ERROR] Fontul nu este compatibil. Doar cele tip: Regular, Bold, Italic și "
  2571. "BoldItalic sunt acceptate. Eroarea:: %s"
  2572. #: flatcamEditors/FlatCAMGeoEditor.py:2650
  2573. msgid "[success] Done. Adding Text completed."
  2574. msgstr "[success] Executat. Adăugarea de Text terminată."
  2575. #: flatcamEditors/FlatCAMGeoEditor.py:2678
  2576. msgid "Create buffer geometry ..."
  2577. msgstr "Crează o geometrie de tipe Bufer ..."
  2578. #: flatcamEditors/FlatCAMGeoEditor.py:2689
  2579. #: flatcamEditors/FlatCAMGeoEditor.py:2715
  2580. #: flatcamEditors/FlatCAMGeoEditor.py:2741
  2581. msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  2582. msgstr ""
  2583. "[WARNING_NOTCL] Crearea de geometrie Bufer anulată. Nici-o forma geometrică "
  2584. "nu este selectată."
  2585. #: flatcamEditors/FlatCAMGeoEditor.py:2711
  2586. #: flatcamEditors/FlatCAMGrbEditor.py:4447
  2587. msgid "[success] Done. Buffer Tool completed."
  2588. msgstr "[success] Executat. Unealta Bufer terminată."
  2589. #: flatcamEditors/FlatCAMGeoEditor.py:2737
  2590. msgid "[success] Done. Buffer Int Tool completed."
  2591. msgstr "[success] Executat. Unealta Bufer Intern terminată."
  2592. #: flatcamEditors/FlatCAMGeoEditor.py:2763
  2593. msgid "[success] Done. Buffer Ext Tool completed."
  2594. msgstr "[success] Executat. Unealta Bufer Extern terminată."
  2595. #: flatcamEditors/FlatCAMGeoEditor.py:2798
  2596. #: flatcamEditors/FlatCAMGrbEditor.py:1983
  2597. msgid "Select a shape to act as deletion area ..."
  2598. msgstr "Selectează o formă geometrică ca formă de stergere ..."
  2599. #: flatcamEditors/FlatCAMGeoEditor.py:2800
  2600. #: flatcamEditors/FlatCAMGeoEditor.py:2819
  2601. #: flatcamEditors/FlatCAMGeoEditor.py:2825
  2602. #: flatcamEditors/FlatCAMGrbEditor.py:1985
  2603. msgid "Click to pick-up the erase shape..."
  2604. msgstr "Click pentru a activa forma de stergere..."
  2605. #: flatcamEditors/FlatCAMGeoEditor.py:2829
  2606. #: flatcamEditors/FlatCAMGrbEditor.py:2042
  2607. msgid "Click to erase ..."
  2608. msgstr "Click pt a sterge ..."
  2609. #: flatcamEditors/FlatCAMGeoEditor.py:2858
  2610. #: flatcamEditors/FlatCAMGrbEditor.py:2075
  2611. msgid "[success] Done. Eraser tool action completed."
  2612. msgstr "[success] Executat. Unealta Stergere s-a terminat."
  2613. #: flatcamEditors/FlatCAMGeoEditor.py:2901
  2614. msgid "Create Paint geometry ..."
  2615. msgstr "Crează o geometrie Paint ..."
  2616. #: flatcamEditors/FlatCAMGeoEditor.py:2915
  2617. #: flatcamEditors/FlatCAMGrbEditor.py:2217
  2618. msgid "Shape transformations ..."
  2619. msgstr "Transformări de forme geometrice ..."
  2620. #: flatcamEditors/FlatCAMGeoEditor.py:3416
  2621. #, python-brace-format
  2622. msgid ""
  2623. "[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
  2624. msgstr ""
  2625. "[WARNING_NOTCL] Se editeaza un obiect tip Geometrie MultiGeo , unealta: "
  2626. "{tool} cu diametrul: {dia}"
  2627. #: flatcamEditors/FlatCAMGeoEditor.py:3793
  2628. msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
  2629. msgstr ""
  2630. "[WARNING_NOTCL] Copiere anulată. Nici-o forma geometrică nu este selectată."
  2631. #: flatcamEditors/FlatCAMGeoEditor.py:3800 flatcamGUI/FlatCAMGUI.py:2727
  2632. #: flatcamGUI/FlatCAMGUI.py:2773 flatcamGUI/FlatCAMGUI.py:2791
  2633. #: flatcamGUI/FlatCAMGUI.py:2922 flatcamGUI/FlatCAMGUI.py:2934
  2634. #: flatcamGUI/FlatCAMGUI.py:2968
  2635. msgid "Click on target point."
  2636. msgstr "Click pe punctul tinta."
  2637. #: flatcamEditors/FlatCAMGeoEditor.py:4044
  2638. #: flatcamEditors/FlatCAMGeoEditor.py:4079
  2639. msgid ""
  2640. "[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
  2641. "Intersection."
  2642. msgstr ""
  2643. "[WARNING_NOTCL] Cel puțin o selecţie de doua forme geometrice este necesară "
  2644. "pentru a face o Intersecţie."
  2645. #: flatcamEditors/FlatCAMGeoEditor.py:4163
  2646. #: flatcamEditors/FlatCAMGeoEditor.py:4201
  2647. #: flatcamEditors/FlatCAMGeoEditor.py:4277
  2648. msgid ""
  2649. "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to "
  2650. "generate an 'inside' shape"
  2651. msgstr ""
  2652. "[ERROR_NOTCL] O valoare de bufer negativă nu se acceptă. Folosete Bufer "
  2653. "Interior pentru a genera o forma geo. interioara."
  2654. #: flatcamEditors/FlatCAMGeoEditor.py:4172
  2655. #: flatcamEditors/FlatCAMGeoEditor.py:4210
  2656. #: flatcamEditors/FlatCAMGeoEditor.py:4285
  2657. msgid "[WARNING_NOTCL] Nothing selected for buffering."
  2658. msgstr ""
  2659. "[WARNING_NOTCL] Nici-o forma geometrică nu este selectată pentru a face "
  2660. "Bufer."
  2661. #: flatcamEditors/FlatCAMGeoEditor.py:4176
  2662. #: flatcamEditors/FlatCAMGeoEditor.py:4214
  2663. #: flatcamEditors/FlatCAMGeoEditor.py:4289
  2664. msgid "[WARNING_NOTCL] Invalid distance for buffering."
  2665. msgstr "[WARNING_NOTCL] Distanta invalida pentru a face Bufer."
  2666. #: flatcamEditors/FlatCAMGeoEditor.py:4186
  2667. #: flatcamEditors/FlatCAMGeoEditor.py:4298
  2668. msgid ""
  2669. "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
  2670. msgstr ""
  2671. "[ERROR_NOTCL] Eșuat, rezultatul este gol. Foloseşte o valoare diferita "
  2672. "pentru Bufer."
  2673. #: flatcamEditors/FlatCAMGeoEditor.py:4194
  2674. msgid "[success] Full buffer geometry created."
  2675. msgstr "[success] Geometrie tip Bufer Complet creată."
  2676. #: flatcamEditors/FlatCAMGeoEditor.py:4224
  2677. msgid ""
  2678. "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
  2679. msgstr ""
  2680. "[ERROR_NOTCL] Eșuat, rezultatul este gol. Foloseşte of valoare mai mica pt. "
  2681. "Bufer."
  2682. #: flatcamEditors/FlatCAMGeoEditor.py:4239
  2683. msgid "[success] Interior buffer geometry created."
  2684. msgstr "[success] Geometrie Bufer interior creată."
  2685. #: flatcamEditors/FlatCAMGeoEditor.py:4310
  2686. msgid "[success] Exterior buffer geometry created."
  2687. msgstr "[success] Geometrie Bufer Exterior creată."
  2688. #: flatcamEditors/FlatCAMGeoEditor.py:4374
  2689. msgid "[WARNING_NOTCL] Nothing selected for painting."
  2690. msgstr ""
  2691. "[WARNING_NOTCL] Nici-o forma geometrică nu este selectată pentru Paint."
  2692. #: flatcamEditors/FlatCAMGeoEditor.py:4380
  2693. msgid "[WARNING] Invalid value for {}"
  2694. msgstr "[WARNING] Valoare invalida pentru {}"
  2695. #: flatcamEditors/FlatCAMGeoEditor.py:4386
  2696. msgid ""
  2697. "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
  2698. "(100%)."
  2699. msgstr ""
  2700. "[ERROR_NOTCL] Nu se poate face Paint. Valoarea de suprapunere trebuie să fie "
  2701. "mai puțin de 1.00 (100%)."
  2702. #: flatcamEditors/FlatCAMGeoEditor.py:4445
  2703. #, python-format
  2704. msgid ""
  2705. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  2706. "different method of Paint\n"
  2707. "%s"
  2708. msgstr ""
  2709. "[ERROR] Nu se poate face Paint. Incearcă o combinaţie diferita de parametri. "
  2710. "Or o metoda diferita de Paint\n"
  2711. "%s"
  2712. #: flatcamEditors/FlatCAMGeoEditor.py:4456
  2713. msgid "[success] Paint done."
  2714. msgstr "[success] Paint executat."
  2715. #: flatcamEditors/FlatCAMGrbEditor.py:200
  2716. msgid "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
  2717. msgstr ""
  2718. "[WARNING_NOTCL] Pentru a adăuga un Pad mai intai selectează o apertură "
  2719. "(unealtă) in Tabela de Aperturi"
  2720. #: flatcamEditors/FlatCAMGrbEditor.py:206
  2721. #: flatcamEditors/FlatCAMGrbEditor.py:398
  2722. msgid ""
  2723. "[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
  2724. msgstr ""
  2725. "[WARNING_NOTCL] Dimens. aperturii este zero. Trebuie sa fie mai mare ca zero."
  2726. #: flatcamEditors/FlatCAMGrbEditor.py:357
  2727. #: flatcamEditors/FlatCAMGrbEditor.py:662
  2728. msgid ""
  2729. "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2730. msgstr ""
  2731. "Tip de apertură incompatibil. Selectează o apertură cu tipul 'C', 'R' sau "
  2732. "'O'."
  2733. #: flatcamEditors/FlatCAMGrbEditor.py:369
  2734. msgid "[success] Done. Adding Pad completed."
  2735. msgstr "[success] Executat. Adăugarea padului terminată."
  2736. #: flatcamEditors/FlatCAMGrbEditor.py:391
  2737. msgid ""
  2738. "[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
  2739. msgstr ""
  2740. "[WARNING_NOTCL] Pentru a adăuga o arie de paduri mai intai selectează o "
  2741. "apertura (unealtă) in Tabela de Aperturi"
  2742. #: flatcamEditors/FlatCAMGrbEditor.py:468
  2743. msgid "Click on the Pad Circular Array Start position"
  2744. msgstr "Click pe punctul de Start al ariei de paduri"
  2745. #: flatcamEditors/FlatCAMGrbEditor.py:497
  2746. msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
  2747. msgstr "[ERROR_NOTCL] Valoarea este gresita. Verifică ce ai introdus."
  2748. #: flatcamEditors/FlatCAMGrbEditor.py:687
  2749. msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
  2750. msgstr "[WARNING_NOTCL] Prea multe paduri pentru unghiul selectat."
  2751. #: flatcamEditors/FlatCAMGrbEditor.py:709
  2752. msgid "[success] Done. Pad Array added."
  2753. msgstr "[success] Executat. Aria de paduri a fost adăugată."
  2754. #: flatcamEditors/FlatCAMGrbEditor.py:730
  2755. msgid "Select shape(s) and then click ..."
  2756. msgstr "Selectează formele si apoi click ..."
  2757. #: flatcamEditors/FlatCAMGrbEditor.py:741
  2758. msgid "[ERROR_NOTCL] Failed. Nothing selected."
  2759. msgstr "[ERROR_NOTCL] Eșuat. Nu este nimic selectat."
  2760. #: flatcamEditors/FlatCAMGrbEditor.py:756
  2761. msgid ""
  2762. "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the "
  2763. "same aperture."
  2764. msgstr ""
  2765. "[WARNING_NOTCL] Esuat. Poligonizarea lucrează doar asupra geometriilor care "
  2766. "apartin aceleasi aperturi."
  2767. #: flatcamEditors/FlatCAMGrbEditor.py:809
  2768. msgid "[success] Done. Poligonize completed."
  2769. msgstr "[success] Executat. Poligonizare completă."
  2770. #: flatcamEditors/FlatCAMGrbEditor.py:860
  2771. #: flatcamEditors/FlatCAMGrbEditor.py:1075
  2772. #: flatcamEditors/FlatCAMGrbEditor.py:1099
  2773. msgid "Corner Mode 1: 45 degrees ..."
  2774. msgstr "Mod Colt 1: 45 grade ..."
  2775. #: flatcamEditors/FlatCAMGrbEditor.py:862
  2776. msgid "Click on 1st point ..."
  2777. msgstr "Click pe primul punct ..."
  2778. #: flatcamEditors/FlatCAMGrbEditor.py:872
  2779. #: flatcamEditors/FlatCAMGrbEditor.py:1170
  2780. msgid "Click on next Point or click Right mouse button to complete ..."
  2781. msgstr ""
  2782. "Click pe punctul următor sau click buton dreapta al mousului pentru "
  2783. "terminare ..."
  2784. #: flatcamEditors/FlatCAMGrbEditor.py:1063
  2785. #: flatcamEditors/FlatCAMGrbEditor.py:1096
  2786. msgid "Corner Mode 2: Reverse 45 degrees ..."
  2787. msgstr "Mod Colt 2: Invers 45 grade ..."
  2788. #: flatcamEditors/FlatCAMGrbEditor.py:1066
  2789. #: flatcamEditors/FlatCAMGrbEditor.py:1093
  2790. msgid "Corner Mode 3: 90 degrees ..."
  2791. msgstr "Mod Colt 3: 90 grade ..."
  2792. #: flatcamEditors/FlatCAMGrbEditor.py:1069
  2793. #: flatcamEditors/FlatCAMGrbEditor.py:1090
  2794. msgid "Corner Mode 4: Reverse 90 degrees ..."
  2795. msgstr "Mod Colt 4: Invers 90 grade ..."
  2796. #: flatcamEditors/FlatCAMGrbEditor.py:1072
  2797. #: flatcamEditors/FlatCAMGrbEditor.py:1087
  2798. msgid "Corner Mode 5: Free angle ..."
  2799. msgstr "Mod Colt 5: Unghi liber ..."
  2800. #: flatcamEditors/FlatCAMGrbEditor.py:1126
  2801. #: flatcamEditors/FlatCAMGrbEditor.py:1284
  2802. #: flatcamEditors/FlatCAMGrbEditor.py:1323
  2803. msgid "Track Mode 1: 45 degrees ..."
  2804. msgstr "Mod Traseu 1: 45 grade ..."
  2805. #: flatcamEditors/FlatCAMGrbEditor.py:1264
  2806. #: flatcamEditors/FlatCAMGrbEditor.py:1318
  2807. msgid "Track Mode 2: Reverse 45 degrees ..."
  2808. msgstr "Mod Traseu 2: Invers 45 grade ..."
  2809. #: flatcamEditors/FlatCAMGrbEditor.py:1269
  2810. #: flatcamEditors/FlatCAMGrbEditor.py:1313
  2811. msgid "Track Mode 3: 90 degrees ..."
  2812. msgstr "Mod Traseu 3: 90 grade ..."
  2813. #: flatcamEditors/FlatCAMGrbEditor.py:1274
  2814. #: flatcamEditors/FlatCAMGrbEditor.py:1308
  2815. msgid "Track Mode 4: Reverse 90 degrees ..."
  2816. msgstr "Mod Traseu 4: Invers 90 grade ..."
  2817. #: flatcamEditors/FlatCAMGrbEditor.py:1279
  2818. #: flatcamEditors/FlatCAMGrbEditor.py:1303
  2819. msgid "Track Mode 5: Free angle ..."
  2820. msgstr "Mod Traseu 5: Unghi liber ..."
  2821. #: flatcamEditors/FlatCAMGrbEditor.py:1683
  2822. msgid "Scale the selected Gerber apertures ..."
  2823. msgstr "Șterge aperturile Gerber selectate ..."
  2824. #: flatcamEditors/FlatCAMGrbEditor.py:1725
  2825. msgid "Buffer the selected apertures ..."
  2826. msgstr "Bufereaza aperturile selectate."
  2827. #: flatcamEditors/FlatCAMGrbEditor.py:1769
  2828. msgid "[WARNING_NOTCL] Nothing selected to move ..."
  2829. msgstr "[WARNING_NOTCL] Nimic nu este selectat pentru mutare ..."
  2830. #: flatcamEditors/FlatCAMGrbEditor.py:1892
  2831. msgid "[success] Done. Apertures Move completed."
  2832. msgstr "[success] Executat. Mutarea Aperturilor terminată."
  2833. #: flatcamEditors/FlatCAMGrbEditor.py:1968
  2834. msgid "[success] Done. Apertures copied."
  2835. msgstr "[success] Executat. Aperturile au fost copiate."
  2836. #: flatcamEditors/FlatCAMGrbEditor.py:2259 flatcamGUI/FlatCAMGUI.py:1604
  2837. #: flatcamGUI/FlatCAMGUI.py:4323
  2838. msgid "Gerber Editor"
  2839. msgstr "Editor Gerber"
  2840. #: flatcamEditors/FlatCAMGrbEditor.py:2278 flatcamGUI/ObjectUI.py:192
  2841. msgid "<b>Apertures:</b>"
  2842. msgstr "<b>Aperturi:</b>"
  2843. #: flatcamEditors/FlatCAMGrbEditor.py:2280 flatcamGUI/ObjectUI.py:194
  2844. msgid "Apertures Table for the Gerber Object."
  2845. msgstr "Tabela de aperturi pt obiectul Gerber."
  2846. #: flatcamEditors/FlatCAMGrbEditor.py:2291
  2847. #: flatcamEditors/FlatCAMGrbEditor.py:3601 flatcamGUI/ObjectUI.py:228
  2848. msgid "Code"
  2849. msgstr "Cod"
  2850. #: flatcamEditors/FlatCAMGrbEditor.py:2291
  2851. #: flatcamEditors/FlatCAMGrbEditor.py:3601 flatcamGUI/ObjectUI.py:228
  2852. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  2853. msgid "Type"
  2854. msgstr "Tip"
  2855. #: flatcamEditors/FlatCAMGrbEditor.py:2291
  2856. #: flatcamEditors/FlatCAMGrbEditor.py:3601 flatcamGUI/ObjectUI.py:228
  2857. msgid "Size"
  2858. msgstr "Dimens."
  2859. #: flatcamEditors/FlatCAMGrbEditor.py:2291
  2860. #: flatcamEditors/FlatCAMGrbEditor.py:3601 flatcamGUI/ObjectUI.py:228
  2861. msgid "Dim"
  2862. msgstr "Dim"
  2863. #: flatcamEditors/FlatCAMGrbEditor.py:2295 flatcamGUI/ObjectUI.py:232
  2864. msgid "Index"
  2865. msgstr "Index"
  2866. #: flatcamEditors/FlatCAMGrbEditor.py:2297 flatcamGUI/ObjectUI.py:234
  2867. msgid "Aperture Code"
  2868. msgstr "Cod"
  2869. #: flatcamEditors/FlatCAMGrbEditor.py:2299 flatcamGUI/ObjectUI.py:236
  2870. msgid "Type of aperture: circular, rectangle, macros etc"
  2871. msgstr ""
  2872. "Tipul aperturilor:\n"
  2873. "- circular\n"
  2874. "- patrulater\n"
  2875. "- macro-uri\n"
  2876. "etc"
  2877. #: flatcamEditors/FlatCAMGrbEditor.py:2301
  2878. #: flatcamEditors/FlatCAMGrbEditor.py:2334 flatcamGUI/ObjectUI.py:238
  2879. msgid "Aperture Size:"
  2880. msgstr "Dim. aper."
  2881. #: flatcamEditors/FlatCAMGrbEditor.py:2303 flatcamGUI/ObjectUI.py:240
  2882. msgid ""
  2883. "Aperture Dimensions:\n"
  2884. " - (width, height) for R, O type.\n"
  2885. " - (dia, nVertices) for P type"
  2886. msgstr ""
  2887. "Dimensiunile aperturilor:\n"
  2888. "- (latime, inaltime) pt tipurile R, O.\n"
  2889. "- (diametru, nVertices) pt tipul P"
  2890. #: flatcamEditors/FlatCAMGrbEditor.py:2324
  2891. msgid "Aperture Code:"
  2892. msgstr "Cod apertură"
  2893. #: flatcamEditors/FlatCAMGrbEditor.py:2326
  2894. msgid "Code for the new aperture"
  2895. msgstr "Diametru pentru noua apertură"
  2896. #: flatcamEditors/FlatCAMGrbEditor.py:2336
  2897. msgid ""
  2898. "Size for the new aperture.\n"
  2899. "If aperture type is 'R' or 'O' then\n"
  2900. "this value is automatically\n"
  2901. "calculated as:\n"
  2902. "sqrt(width**2 + height**2)"
  2903. msgstr ""
  2904. "Dimensiunea pt noua apertură.\n"
  2905. "Dacă tipul aperturii este 'R' sau 'O'\n"
  2906. "valoarea este calculată automat prin:\n"
  2907. "sqrt(lătime**2 + inăltime**2)"
  2908. #: flatcamEditors/FlatCAMGrbEditor.py:2348
  2909. msgid "Aperture Type:"
  2910. msgstr "Tip aper."
  2911. #: flatcamEditors/FlatCAMGrbEditor.py:2350
  2912. msgid ""
  2913. "Select the type of new aperture. Can be:\n"
  2914. "C = circular\n"
  2915. "R = rectangular\n"
  2916. "O = oblong"
  2917. msgstr ""
  2918. "Selectează noul tip de apertură. Poate fi:\n"
  2919. "C = circular\n"
  2920. "R = rectangular\n"
  2921. "O = oval"
  2922. #: flatcamEditors/FlatCAMGrbEditor.py:2361
  2923. msgid "Aperture Dim:"
  2924. msgstr "Dim. aper."
  2925. #: flatcamEditors/FlatCAMGrbEditor.py:2363
  2926. msgid ""
  2927. "Dimensions for the new aperture.\n"
  2928. "Active only for rectangular apertures (type R).\n"
  2929. "The format is (width, height)"
  2930. msgstr ""
  2931. "Dimensiunile pentru noua apertură.\n"
  2932. "Activă doar pentru aperturile rectangulare (tip 'R').\n"
  2933. "Formatul este (lătime, inăltime)"
  2934. #: flatcamEditors/FlatCAMGrbEditor.py:2372
  2935. msgid "Add/Delete Aperture:"
  2936. msgstr "Adaugă/Șterge aper."
  2937. #: flatcamEditors/FlatCAMGrbEditor.py:2374
  2938. msgid "Add/Delete an aperture in the aperture table"
  2939. msgstr "Adaugă/Șterge o apertură din lista de aperturi."
  2940. #: flatcamEditors/FlatCAMGrbEditor.py:2383
  2941. msgid "Add a new aperture to the aperture list."
  2942. msgstr "Adaugă o nouă apertură in lista de aperturi."
  2943. #: flatcamEditors/FlatCAMGrbEditor.py:2388
  2944. msgid "Delete a aperture in the aperture list"
  2945. msgstr "Șterge o apertură din lista de aperturi."
  2946. #: flatcamEditors/FlatCAMGrbEditor.py:2404
  2947. msgid "Buffer Aperture:"
  2948. msgstr "Bufer pt apertură:"
  2949. #: flatcamEditors/FlatCAMGrbEditor.py:2406
  2950. msgid "Buffer a aperture in the aperture list"
  2951. msgstr "Fă bufer pt o apertură din lista de aperturi"
  2952. #: flatcamEditors/FlatCAMGrbEditor.py:2419
  2953. msgid ""
  2954. "There are 3 types of corners:\n"
  2955. " - 'Round': the corner is rounded.\n"
  2956. " - 'Square:' the corner is met in a sharp angle.\n"
  2957. " - 'Beveled:' the corner is a line that directly connects the features "
  2958. "meeting in the corner"
  2959. msgstr ""
  2960. "Sunt disponibile 3 tipuri de colțuri:\n"
  2961. " - 'Rotund': coltul este rotunjit.\n"
  2962. " - 'Patrat:' colțurile formează unghi de 90 grade.\n"
  2963. " - 'Beveled:' coltul este inlocuit cu o linie care uneste capetele liniilor "
  2964. "care formează coltul"
  2965. #: flatcamEditors/FlatCAMGrbEditor.py:2434 flatcamGUI/FlatCAMGUI.py:717
  2966. #: flatcamGUI/FlatCAMGUI.py:1946
  2967. msgid "Buffer"
  2968. msgstr "Bufer"
  2969. #: flatcamEditors/FlatCAMGrbEditor.py:2448
  2970. msgid "Scale Aperture:"
  2971. msgstr "Scalează ap.:"
  2972. #: flatcamEditors/FlatCAMGrbEditor.py:2450
  2973. msgid "Scale a aperture in the aperture list"
  2974. msgstr "Scalează o apertură in lista de aperturi"
  2975. #: flatcamEditors/FlatCAMGrbEditor.py:2458
  2976. msgid "Scale factor:"
  2977. msgstr "Factor Scalare:"
  2978. #: flatcamEditors/FlatCAMGrbEditor.py:2460
  2979. msgid ""
  2980. "The factor by which to scale the selected aperture.\n"
  2981. "Values can be between 0.0000 and 999.9999"
  2982. msgstr ""
  2983. "Factorul cu care se va face scalarea aperturii selectate.\n"
  2984. "Poate lua valori intre: 0.000 si 999.9999"
  2985. #: flatcamEditors/FlatCAMGrbEditor.py:2488 flatcamGUI/FlatCAMGUI.py:707
  2986. #: flatcamGUI/FlatCAMGUI.py:1936
  2987. msgid "Add Pad Array"
  2988. msgstr "Adaugă o arie de paduri"
  2989. #: flatcamEditors/FlatCAMGrbEditor.py:2490
  2990. msgid "Add an array of pads (linear or circular array)"
  2991. msgstr "Adaugă o arie de paduri (arie lineara sau circulara)."
  2992. #: flatcamEditors/FlatCAMGrbEditor.py:2496
  2993. msgid ""
  2994. "Select the type of pads array to create.\n"
  2995. "It can be Linear X(Y) or Circular"
  2996. msgstr ""
  2997. "Selectează tipul de arii de paduri.\n"
  2998. "Poate fi Liniar X(Y) sau Circular."
  2999. #: flatcamEditors/FlatCAMGrbEditor.py:2507
  3000. msgid "Nr of pads:"
  3001. msgstr "Nr. paduri:"
  3002. #: flatcamEditors/FlatCAMGrbEditor.py:2509
  3003. msgid "Specify how many pads to be in the array."
  3004. msgstr "Specifica cate paduri să fie incluse in arie."
  3005. #: flatcamEditors/FlatCAMGrbEditor.py:2986
  3006. #: flatcamEditors/FlatCAMGrbEditor.py:2990
  3007. msgid ""
  3008. "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and "
  3009. "retry."
  3010. msgstr ""
  3011. "[WARNING_NOTCL] Valoarea codului aperturii lipseste sau este in format "
  3012. "greșit. Adaugă din nou și reîncearcă."
  3013. #: flatcamEditors/FlatCAMGrbEditor.py:3026
  3014. msgid ""
  3015. "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it "
  3016. "in format (width, height) and retry."
  3017. msgstr ""
  3018. "[WARNING_NOTCL] Dimensiunile aperturii lipsesc sau sunt intr-un format "
  3019. "greșit. Adaugă din nou și reîncearcă."
  3020. #: flatcamEditors/FlatCAMGrbEditor.py:3038
  3021. msgid ""
  3022. "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and "
  3023. "retry."
  3024. msgstr ""
  3025. "[WARNING_NOTCL] Valoarea mărimii aperturii lipseste sau este in format "
  3026. "greșit. Adaugă din nou și reîncearcă."
  3027. #: flatcamEditors/FlatCAMGrbEditor.py:3049
  3028. msgid "[WARNING_NOTCL] Aperture already in the aperture table."
  3029. msgstr "[WARNING_NOTCL] Apertura este deja in lista de aperturi."
  3030. #: flatcamEditors/FlatCAMGrbEditor.py:3056
  3031. #, python-brace-format
  3032. msgid "[success] Added new aperture with code: {apid}"
  3033. msgstr "[success] O nouă apertură este adăugată cu codul: {apid}"
  3034. #: flatcamEditors/FlatCAMGrbEditor.py:3084
  3035. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table"
  3036. msgstr "[WARNING_NOTCL] Selectează o unealtă in Tabela de Aperturi"
  3037. #: flatcamEditors/FlatCAMGrbEditor.py:3090
  3038. #, python-format
  3039. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
  3040. msgstr "[WARNING_NOTCL] Selectează o unealtă in Tabela de Aperturi --> %s"
  3041. #: flatcamEditors/FlatCAMGrbEditor.py:3113
  3042. #, python-brace-format
  3043. msgid "[success] Deleted aperture with code: {del_dia}"
  3044. msgstr "[success] Unealta cu diametrul: {del_dia} a fost stearsă"
  3045. #: flatcamEditors/FlatCAMGrbEditor.py:3533
  3046. #, python-format
  3047. msgid "Adding aperture: %s geo ..."
  3048. msgstr "Se adaugă apertura: %s geo ..."
  3049. #: flatcamEditors/FlatCAMGrbEditor.py:3718
  3050. msgid ""
  3051. "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber "
  3052. "creation."
  3053. msgstr ""
  3054. "[ERROR_NOTCL] Nu există definitii de aperturi in fişier. Se anulează crearea "
  3055. "de obiect Gerber."
  3056. #: flatcamEditors/FlatCAMGrbEditor.py:3721
  3057. msgid "[ERROR] An internal error has occurred. See shell.\n"
  3058. msgstr ""
  3059. "[ERROR] A apărut o eroare internă. Verifică in TCL Shell pt mai multe "
  3060. "detalii.\n"
  3061. #: flatcamEditors/FlatCAMGrbEditor.py:3726
  3062. msgid "Creating Gerber."
  3063. msgstr "Gerber in curs de creare."
  3064. #: flatcamEditors/FlatCAMGrbEditor.py:3734
  3065. msgid "[success] Gerber editing finished."
  3066. msgstr "[success] Editarea Gerber a fost terminată."
  3067. #: flatcamEditors/FlatCAMGrbEditor.py:3750
  3068. msgid "[WARNING_NOTCL] Cancelled. No aperture is selected"
  3069. msgstr "[WARNING_NOTCL] Anulat. Nici-o apertură nu este selectată."
  3070. #: flatcamEditors/FlatCAMGrbEditor.py:4280
  3071. msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected."
  3072. msgstr ""
  3073. "[WARNING_NOTCL] Anulat. Nici-o geometrie de apertură nu este selectată."
  3074. #: flatcamEditors/FlatCAMGrbEditor.py:4288
  3075. msgid "[success] Done. Apertures geometry deleted."
  3076. msgstr "[success] Executat. Geometriile aperturilor au fost șterse."
  3077. #: flatcamEditors/FlatCAMGrbEditor.py:4431
  3078. msgid ""
  3079. "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try "
  3080. "again."
  3081. msgstr ""
  3082. "[WARNING_NOTCL] Nici-o apertură sel. pt a face bufer. Selectează cel puțin o "
  3083. "apertură și încearcă din nou."
  3084. #: flatcamEditors/FlatCAMGrbEditor.py:4444
  3085. #, python-format
  3086. #| msgid "[ERROR_NOTCL] Failed to open %s"
  3087. msgid ""
  3088. "[ERROR_NOTCL] Failed.\n"
  3089. "%s"
  3090. msgstr ""
  3091. "[ERROR_NOTCL] Actiune esuată.\n"
  3092. "%s"
  3093. #: flatcamEditors/FlatCAMGrbEditor.py:4461
  3094. msgid ""
  3095. "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
  3096. "retry."
  3097. msgstr ""
  3098. "[WARNING_NOTCL] Valoarea factorului de scalare lipseste sau este in format "
  3099. "gresit. Adaugă din nou și reîncearcă."
  3100. #: flatcamEditors/FlatCAMGrbEditor.py:4494
  3101. msgid ""
  3102. "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
  3103. "again."
  3104. msgstr ""
  3105. "[WARNING_NOTCL] Nici-o apertură sel. pt scalare. Selectează cel puțin o "
  3106. "apertură și încearcă din nou."
  3107. #: flatcamEditors/FlatCAMGrbEditor.py:4510
  3108. msgid "[success] Done. Scale Tool completed."
  3109. msgstr "[success] Executat. Unealta Scalare a terminat."
  3110. #: flatcamGUI/FlatCAMGUI.py:50
  3111. msgid "&File"
  3112. msgstr "&Fişiere"
  3113. #: flatcamGUI/FlatCAMGUI.py:55
  3114. msgid "&New Project ...\tCTRL+N"
  3115. msgstr "&Proiect Nou...\tCTRL+N"
  3116. #: flatcamGUI/FlatCAMGUI.py:57
  3117. msgid "Will create a new, blank project"
  3118. msgstr "Se va crea un proiect nou, fără continut"
  3119. #: flatcamGUI/FlatCAMGUI.py:62
  3120. msgid "&New"
  3121. msgstr "&Nou"
  3122. #: flatcamGUI/FlatCAMGUI.py:65
  3123. msgid "Geometry\tN"
  3124. msgstr "Geometrie\tN"
  3125. #: flatcamGUI/FlatCAMGUI.py:67
  3126. msgid "Will create a new, empty Geometry Object."
  3127. msgstr "Va crea un obiect nou de tip Geometrie, fără continut."
  3128. #: flatcamGUI/FlatCAMGUI.py:69
  3129. msgid "Gerber\tB"
  3130. msgstr "Gerber\tB"
  3131. #: flatcamGUI/FlatCAMGUI.py:71
  3132. msgid "Will create a new, empty Gerber Object."
  3133. msgstr "Va crea un obiect nou de tip Gerber, fără continut."
  3134. #: flatcamGUI/FlatCAMGUI.py:73
  3135. msgid "Excellon\tL"
  3136. msgstr "Excellon\tL"
  3137. #: flatcamGUI/FlatCAMGUI.py:75
  3138. msgid "Will create a new, empty Excellon Object."
  3139. msgstr "Va crea un obiect nou de tip Excellon, fără continut."
  3140. #: flatcamGUI/FlatCAMGUI.py:78 flatcamTools/ToolPcbWizard.py:63
  3141. #: flatcamTools/ToolPcbWizard.py:71
  3142. msgid "Open"
  3143. msgstr "Încarcă"
  3144. #: flatcamGUI/FlatCAMGUI.py:83
  3145. msgid "Open &Gerber ...\tCTRL+G"
  3146. msgstr "Încarcă &Gerber ...\tCTRL+G"
  3147. #: flatcamGUI/FlatCAMGUI.py:90
  3148. msgid "Open &Excellon ...\tCTRL+E"
  3149. msgstr "Încarcă &Excellon ...\tCTRL+E"
  3150. #: flatcamGUI/FlatCAMGUI.py:95
  3151. msgid "Open G-&Code ..."
  3152. msgstr "Încarcă G-&Code ..."
  3153. #: flatcamGUI/FlatCAMGUI.py:99
  3154. msgid "Open &Project ..."
  3155. msgstr "Încarcă &Project ..."
  3156. #: flatcamGUI/FlatCAMGUI.py:105
  3157. msgid "Open Config ..."
  3158. msgstr "Încarcă Config ..."
  3159. #: flatcamGUI/FlatCAMGUI.py:109
  3160. msgid "Recent files"
  3161. msgstr "Fişierele Recente"
  3162. #: flatcamGUI/FlatCAMGUI.py:115
  3163. msgid "Scripting"
  3164. msgstr "Scripting"
  3165. #: flatcamGUI/FlatCAMGUI.py:118
  3166. msgid "New Script ..."
  3167. msgstr "Script nou ..."
  3168. #: flatcamGUI/FlatCAMGUI.py:120
  3169. msgid "Open Script ..."
  3170. msgstr "Încarcă &Script..."
  3171. #: flatcamGUI/FlatCAMGUI.py:122
  3172. msgid "Run Script ...\tSHIFT+S"
  3173. msgstr "Rulează Script ...\tSHIFT+S"
  3174. #: flatcamGUI/FlatCAMGUI.py:125
  3175. msgid ""
  3176. "Will run the opened Tcl Script thus\n"
  3177. "enabling the automation of certain\n"
  3178. "functions of FlatCAM."
  3179. msgstr ""
  3180. "Va rula un script TCL astfel oferind\n"
  3181. "o automatizare a anumitor functii\n"
  3182. "din FlatCAM."
  3183. #: flatcamGUI/FlatCAMGUI.py:138
  3184. msgid "Import"
  3185. msgstr "Import"
  3186. #: flatcamGUI/FlatCAMGUI.py:140
  3187. msgid "&SVG as Geometry Object ..."
  3188. msgstr "&SVG ca și obiect Geometrie ..."
  3189. #: flatcamGUI/FlatCAMGUI.py:143
  3190. msgid "&SVG as Gerber Object ..."
  3191. msgstr "&SVG ca și obiect Gerber ..."
  3192. #: flatcamGUI/FlatCAMGUI.py:148
  3193. msgid "&DXF as Geometry Object ..."
  3194. msgstr "&DXF ca și obiect Geometrie ..."
  3195. #: flatcamGUI/FlatCAMGUI.py:151
  3196. msgid "&DXF as Gerber Object ..."
  3197. msgstr "&DXF ca și obiect Gerber ..."
  3198. #: flatcamGUI/FlatCAMGUI.py:156
  3199. msgid "Export"
  3200. msgstr "Export"
  3201. #: flatcamGUI/FlatCAMGUI.py:159
  3202. msgid "Export &SVG ..."
  3203. msgstr "Exporta &SVG ..."
  3204. #: flatcamGUI/FlatCAMGUI.py:162
  3205. msgid "Export DXF ..."
  3206. msgstr "Exporta DXF ..."
  3207. #: flatcamGUI/FlatCAMGUI.py:167
  3208. msgid "Export &PNG ..."
  3209. msgstr "Exporta &PNG ..."
  3210. #: flatcamGUI/FlatCAMGUI.py:169
  3211. msgid ""
  3212. "Will export an image in PNG format,\n"
  3213. "the saved image will contain the visual \n"
  3214. "information currently in FlatCAM Plot Area."
  3215. msgstr ""
  3216. "Va exporta o imagine in format PNG,\n"
  3217. "imagina salvata va contine elementele vizuale\n"
  3218. "afisate in zona de afișare."
  3219. #: flatcamGUI/FlatCAMGUI.py:177
  3220. msgid "Export &Excellon ..."
  3221. msgstr "Exporta Excellon ..."
  3222. #: flatcamGUI/FlatCAMGUI.py:180
  3223. msgid ""
  3224. "Will export an Excellon Object as Excellon file,\n"
  3225. "the coordinates format, the file units and zeros\n"
  3226. "are set in Preferences -> Excellon Export."
  3227. msgstr ""
  3228. "Va exporta un obiect Excellon intr-un fişier Excellon.\n"
  3229. "Formatul coordonatelor, unitatile de masura și tipul\n"
  3230. "de zerouri se vor seta in Preferințe -> Export Excellon."
  3231. #: flatcamGUI/FlatCAMGUI.py:186
  3232. msgid "Export &Gerber ..."
  3233. msgstr "Exporta &Gerber ..."
  3234. #: flatcamGUI/FlatCAMGUI.py:189
  3235. msgid ""
  3236. "Will export an Gerber Object as Gerber file,\n"
  3237. "the coordinates format, the file units and zeros\n"
  3238. "are set in Preferences -> Gerber Export."
  3239. msgstr ""
  3240. "Va exporta un obiect Gerber intr-un fişier Gerber.\n"
  3241. "Formatul coordonatelor, unitatile de măsură și tipul\n"
  3242. "de zerouri se vor seta in Preferințe -> Export Gerber."
  3243. #: flatcamGUI/FlatCAMGUI.py:199
  3244. msgid "Save &Defaults"
  3245. msgstr "Salvează valori &Default"
  3246. #: flatcamGUI/FlatCAMGUI.py:205 flatcamGUI/FlatCAMGUI.py:528
  3247. msgid "Save"
  3248. msgstr "Salvează"
  3249. #: flatcamGUI/FlatCAMGUI.py:208
  3250. msgid "&Save Project ..."
  3251. msgstr "&Salvează Proiect ..."
  3252. #: flatcamGUI/FlatCAMGUI.py:213
  3253. msgid "Save Project &As ...\tCTRL+S"
  3254. msgstr "Salvează Proiect &ca ...\tCTRL+S"
  3255. #: flatcamGUI/FlatCAMGUI.py:217
  3256. msgid "Save Project C&opy ..."
  3257. msgstr "Salvează o C&opie Proiect..."
  3258. #: flatcamGUI/FlatCAMGUI.py:225
  3259. msgid "E&xit"
  3260. msgstr "Iesire"
  3261. #: flatcamGUI/FlatCAMGUI.py:231
  3262. msgid "&Edit"
  3263. msgstr "&Editare"
  3264. #: flatcamGUI/FlatCAMGUI.py:234
  3265. msgid "Edit Object\tE"
  3266. msgstr "Editare Obiect\tE"
  3267. #: flatcamGUI/FlatCAMGUI.py:235
  3268. msgid "Close Editor\tCTRL+S"
  3269. msgstr "Salvează Editor\tCTRL+S"
  3270. #: flatcamGUI/FlatCAMGUI.py:243
  3271. msgid "Conversion"
  3272. msgstr "Conversii"
  3273. #: flatcamGUI/FlatCAMGUI.py:245
  3274. msgid "&Join Geo/Gerber/Exc -> Geo"
  3275. msgstr "&Fuzionează Geo/Gerber/Exc -> Geo"
  3276. #: flatcamGUI/FlatCAMGUI.py:247
  3277. msgid ""
  3278. "Merge a selection of objects, which can be of type:\n"
  3279. "- Gerber\n"
  3280. "- Excellon\n"
  3281. "- Geometry\n"
  3282. "into a new combo Geometry object."
  3283. msgstr ""
  3284. "Fuzionează o selecţie de obiecte care pot fi de tipul:\n"
  3285. "- Gerber\n"
  3286. "- Excellon\n"
  3287. "- Geometrie\n"
  3288. "intr-un nou obiect tip Geometrie >combo<."
  3289. #: flatcamGUI/FlatCAMGUI.py:254
  3290. msgid "Join Excellon(s) -> Excellon"
  3291. msgstr "Fuzionează Excellon(s) -> Excellon"
  3292. #: flatcamGUI/FlatCAMGUI.py:256
  3293. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  3294. msgstr ""
  3295. "Fuzionează o selecţie de obiecte Excellon intr-un nou obiect Excellon >combo<"
  3296. #: flatcamGUI/FlatCAMGUI.py:259
  3297. msgid "Join Gerber(s) -> Gerber"
  3298. msgstr "Fuzionează Gerber(s) -> Gerber"
  3299. #: flatcamGUI/FlatCAMGUI.py:261
  3300. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  3301. msgstr ""
  3302. "Fuzionează o selecţie de obiecte Gerber intr-un nou obiect Gerber >combo<"
  3303. #: flatcamGUI/FlatCAMGUI.py:266
  3304. msgid "Convert Single to MultiGeo"
  3305. msgstr "Converteste SingleGeo in MultiGeo"
  3306. #: flatcamGUI/FlatCAMGUI.py:268
  3307. msgid ""
  3308. "Will convert a Geometry object from single_geometry type\n"
  3309. "to a multi_geometry type."
  3310. msgstr ""
  3311. "Va converti un obiect Geometrie din tipul simpla geometrie (SingleGeo)\n"
  3312. "la tipul geometrie complexa (MultiGeo)."
  3313. #: flatcamGUI/FlatCAMGUI.py:272
  3314. msgid "Convert Multi to SingleGeo"
  3315. msgstr "Converteste MultiGeo in SingleGeo"
  3316. #: flatcamGUI/FlatCAMGUI.py:274
  3317. msgid ""
  3318. "Will convert a Geometry object from multi_geometry type\n"
  3319. "to a single_geometry type."
  3320. msgstr ""
  3321. "Va converti un obiect Geometrie din tipul geometrie complexa (MultiGeo)\n"
  3322. "la tipul geometrie simpla (SingleGeo)."
  3323. #: flatcamGUI/FlatCAMGUI.py:280
  3324. msgid "Convert Any to Geo"
  3325. msgstr "Converteste Oricare to Geo"
  3326. #: flatcamGUI/FlatCAMGUI.py:282
  3327. msgid "Convert Any to Gerber"
  3328. msgstr "Converteste Oricare in Gerber"
  3329. #: flatcamGUI/FlatCAMGUI.py:287
  3330. msgid "&Copy\tCTRL+C"
  3331. msgstr "&Copiază\tCTRL+C"
  3332. #: flatcamGUI/FlatCAMGUI.py:291
  3333. msgid "&Delete\tDEL"
  3334. msgstr "&Șterge\tDEL"
  3335. #: flatcamGUI/FlatCAMGUI.py:295
  3336. msgid "Se&t Origin\tO"
  3337. msgstr "Se&tează Originea\tO"
  3338. #: flatcamGUI/FlatCAMGUI.py:296
  3339. msgid "Jump to Location\tJ"
  3340. msgstr "Sari la Locaţie\tJ"
  3341. #: flatcamGUI/FlatCAMGUI.py:301
  3342. msgid "Toggle Units\tQ"
  3343. msgstr "Comută Unitati\tQ"
  3344. #: flatcamGUI/FlatCAMGUI.py:303
  3345. msgid "&Select All\tCTRL+A"
  3346. msgstr "&Selectează Tot\tCTRL+A"
  3347. #: flatcamGUI/FlatCAMGUI.py:307
  3348. msgid "&Preferences\tSHIFT+P"
  3349. msgstr "&Preferințe\tSHIFT+P"
  3350. #: flatcamGUI/FlatCAMGUI.py:310
  3351. msgid "&Options"
  3352. msgstr "&Opțiuni"
  3353. #: flatcamGUI/FlatCAMGUI.py:325
  3354. msgid "&Rotate Selection\tSHIFT+(R)"
  3355. msgstr "&Roteste Selectia\tSHIFT+(R)"
  3356. #: flatcamGUI/FlatCAMGUI.py:330
  3357. msgid "&Skew on X axis\tSHIFT+X"
  3358. msgstr "&Deformează pe axa X\tSHIFT+X"
  3359. #: flatcamGUI/FlatCAMGUI.py:332
  3360. msgid "S&kew on Y axis\tSHIFT+Y"
  3361. msgstr "Deformează pe axa Y\tSHIFT+Y"
  3362. #: flatcamGUI/FlatCAMGUI.py:337
  3363. msgid "Flip on &X axis\tX"
  3364. msgstr "Oglindește pe axa &X\tX"
  3365. #: flatcamGUI/FlatCAMGUI.py:339
  3366. msgid "Flip on &Y axis\tY"
  3367. msgstr "Oglindește pe axa &Y\tY"
  3368. #: flatcamGUI/FlatCAMGUI.py:344
  3369. msgid "View source\tALT+S"
  3370. msgstr "Vezi sursa\tALT+S"
  3371. #: flatcamGUI/FlatCAMGUI.py:349
  3372. msgid "&View"
  3373. msgstr "&Vizualizare"
  3374. #: flatcamGUI/FlatCAMGUI.py:350
  3375. msgid "Enable all plots\tALT+1"
  3376. msgstr "Activează toate afişările\tALT+1"
  3377. #: flatcamGUI/FlatCAMGUI.py:352
  3378. msgid "Disable all plots\tALT+2"
  3379. msgstr "Dezactivează toate afişările\tALT+2"
  3380. #: flatcamGUI/FlatCAMGUI.py:354
  3381. msgid "Disable non-selected\tALT+3"
  3382. msgstr "Dezactivează non-selectate\tALT+3"
  3383. #: flatcamGUI/FlatCAMGUI.py:357
  3384. msgid "&Zoom Fit\tV"
  3385. msgstr "&Mărește și potrivește\tV"
  3386. #: flatcamGUI/FlatCAMGUI.py:358
  3387. msgid "&Zoom In\t="
  3388. msgstr "&Măreste\t="
  3389. #: flatcamGUI/FlatCAMGUI.py:359
  3390. msgid "&Zoom Out\t-"
  3391. msgstr "&Micșorează\t-"
  3392. #: flatcamGUI/FlatCAMGUI.py:363
  3393. msgid "Toggle Code Editor\tCTRL+E"
  3394. msgstr "Comută Editorul de cod\tCTRL+E"
  3395. #: flatcamGUI/FlatCAMGUI.py:366
  3396. msgid "&Toggle FullScreen\tALT+F10"
  3397. msgstr "Comută FullScreen\tALT+F10"
  3398. #: flatcamGUI/FlatCAMGUI.py:368
  3399. msgid "&Toggle Plot Area\tCTRL+F10"
  3400. msgstr "Comută Aria de Afișare\tCTRL+F10"
  3401. #: flatcamGUI/FlatCAMGUI.py:370
  3402. msgid "&Toggle Project/Sel/Tool\t`"
  3403. msgstr "Comută Proiect/Sel/Unealta\t`"
  3404. #: flatcamGUI/FlatCAMGUI.py:373
  3405. msgid "&Toggle Grid Snap\tG"
  3406. msgstr "Comută Grid\tG"
  3407. #: flatcamGUI/FlatCAMGUI.py:375
  3408. msgid "&Toggle Axis\tSHIFT+G"
  3409. msgstr "Comută Axe\tSHIFT+G"
  3410. #: flatcamGUI/FlatCAMGUI.py:378
  3411. msgid "Toggle Workspace\tSHIFT+W"
  3412. msgstr "Comută Suprafata de lucru\tSHIFT+W"
  3413. #: flatcamGUI/FlatCAMGUI.py:381
  3414. msgid "&Tool"
  3415. msgstr "Unelte"
  3416. #: flatcamGUI/FlatCAMGUI.py:383
  3417. msgid "&Command Line\tS"
  3418. msgstr "&Linie de comanda\tS"
  3419. #: flatcamGUI/FlatCAMGUI.py:386
  3420. msgid "&Help"
  3421. msgstr "Ajutor"
  3422. #: flatcamGUI/FlatCAMGUI.py:387
  3423. msgid "Help\tF1"
  3424. msgstr "Ajutor\tF1"
  3425. #: flatcamGUI/FlatCAMGUI.py:388
  3426. msgid "FlatCAM.org"
  3427. msgstr "FlatCAM.org"
  3428. #: flatcamGUI/FlatCAMGUI.py:391
  3429. msgid "Shortcuts List\tF3"
  3430. msgstr "Lista shortcut-uri\tF3"
  3431. #: flatcamGUI/FlatCAMGUI.py:392
  3432. msgid "YouTube Channel\tF4"
  3433. msgstr "YouTube \tF4"
  3434. #: flatcamGUI/FlatCAMGUI.py:394
  3435. msgid "About"
  3436. msgstr "Despre"
  3437. #: flatcamGUI/FlatCAMGUI.py:401
  3438. msgid "Add Circle\tO"
  3439. msgstr "Adaugă Cerc\tO"
  3440. #: flatcamGUI/FlatCAMGUI.py:403
  3441. msgid "Add Arc\tA"
  3442. msgstr "Adaugă Arc\tA"
  3443. #: flatcamGUI/FlatCAMGUI.py:406
  3444. msgid "Add Rectangle\tR"
  3445. msgstr "Adaugă Patrulater\tR"
  3446. #: flatcamGUI/FlatCAMGUI.py:409
  3447. msgid "Add Polygon\tN"
  3448. msgstr "Adaugă Poligon\tN"
  3449. #: flatcamGUI/FlatCAMGUI.py:411
  3450. msgid "Add Path\tP"
  3451. msgstr "Adaugă Cale\tP"
  3452. #: flatcamGUI/FlatCAMGUI.py:413
  3453. msgid "Add Text\tT"
  3454. msgstr "Adaugă Text\tT"
  3455. #: flatcamGUI/FlatCAMGUI.py:416
  3456. msgid "Polygon Union\tU"
  3457. msgstr "Uniune Poligoane\tU"
  3458. #: flatcamGUI/FlatCAMGUI.py:418
  3459. msgid "Polygon Intersection\tE"
  3460. msgstr "Intersecţie Poligoane\tE"
  3461. #: flatcamGUI/FlatCAMGUI.py:420
  3462. msgid "Polygon Subtraction\tS"
  3463. msgstr "Substracţie Poligoane\tS"
  3464. #: flatcamGUI/FlatCAMGUI.py:424
  3465. msgid "Cut Path\tX"
  3466. msgstr "Tăiere Cale\tX"
  3467. #: flatcamGUI/FlatCAMGUI.py:426
  3468. msgid "Copy Geom\tC"
  3469. msgstr "Copiază Geo\tC"
  3470. #: flatcamGUI/FlatCAMGUI.py:428
  3471. msgid "Delete Shape\tDEL"
  3472. msgstr "Șterge forma Geo.\tDEL"
  3473. #: flatcamGUI/FlatCAMGUI.py:431 flatcamGUI/FlatCAMGUI.py:503
  3474. msgid "Move\tM"
  3475. msgstr "Muta\tM"
  3476. #: flatcamGUI/FlatCAMGUI.py:433
  3477. msgid "Buffer Tool\tB"
  3478. msgstr "Unealta Bufer\tB"
  3479. #: flatcamGUI/FlatCAMGUI.py:436
  3480. msgid "Paint Tool\tI"
  3481. msgstr "Unealta Paint\t"
  3482. #: flatcamGUI/FlatCAMGUI.py:439
  3483. msgid "Transform Tool\tALT+R"
  3484. msgstr "Unealta Transformare\tALT+R"
  3485. #: flatcamGUI/FlatCAMGUI.py:443
  3486. msgid "Toggle Corner Snap\tK"
  3487. msgstr "Comută lipire colt\tK"
  3488. #: flatcamGUI/FlatCAMGUI.py:446
  3489. msgid ">Excellon Editor<"
  3490. msgstr ">Editor Excellon<"
  3491. #: flatcamGUI/FlatCAMGUI.py:450
  3492. msgid "Add Drill Array\tA"
  3493. msgstr "Adaugă Arie Găuriri\tA"
  3494. #: flatcamGUI/FlatCAMGUI.py:452
  3495. msgid "Add Drill\tD"
  3496. msgstr "Adaugă Găurire\tD"
  3497. #: flatcamGUI/FlatCAMGUI.py:456
  3498. msgid "Resize Drill(S)\tR"
  3499. msgstr "Redimens. Găuriri\tR"
  3500. #: flatcamGUI/FlatCAMGUI.py:458 flatcamGUI/FlatCAMGUI.py:496
  3501. msgid "Copy\tC"
  3502. msgstr "Copiază\tC"
  3503. #: flatcamGUI/FlatCAMGUI.py:460 flatcamGUI/FlatCAMGUI.py:498
  3504. msgid "Delete\tDEL"
  3505. msgstr "Șterge\tDEL"
  3506. #: flatcamGUI/FlatCAMGUI.py:465
  3507. msgid "Move Drill(s)\tM"
  3508. msgstr "Muta Găuriri\tM"
  3509. #: flatcamGUI/FlatCAMGUI.py:468
  3510. msgid ">Gerber Editor<"
  3511. msgstr ">Editor Gerber<"
  3512. #: flatcamGUI/FlatCAMGUI.py:472
  3513. msgid "Add Pad\tP"
  3514. msgstr "Adaugă Pad\tP"
  3515. #: flatcamGUI/FlatCAMGUI.py:474
  3516. msgid "Add Pad Array\tA"
  3517. msgstr "Adaugă Arie paduri\tA"
  3518. #: flatcamGUI/FlatCAMGUI.py:476
  3519. msgid "Add Track\tT"
  3520. msgstr "Adaugă Traseu\tA"
  3521. #: flatcamGUI/FlatCAMGUI.py:478
  3522. msgid "Add Region\tN"
  3523. msgstr "Adaugă Regiune\tN"
  3524. #: flatcamGUI/FlatCAMGUI.py:482
  3525. msgid "Poligonize\tALT+N"
  3526. msgstr "Poligonizare\tALT+N"
  3527. #: flatcamGUI/FlatCAMGUI.py:484
  3528. msgid "Add SemiDisc\tE"
  3529. msgstr "Adaugă SemiDisc\tE"
  3530. #: flatcamGUI/FlatCAMGUI.py:486
  3531. msgid "Add Disc\tD"
  3532. msgstr "Adaugă Disc\tD"
  3533. #: flatcamGUI/FlatCAMGUI.py:488
  3534. msgid "Buffer\tB"
  3535. msgstr "Bufer\tB"
  3536. #: flatcamGUI/FlatCAMGUI.py:490
  3537. msgid "Scale\tS"
  3538. msgstr "Scalare\tS"
  3539. #: flatcamGUI/FlatCAMGUI.py:492
  3540. msgid "Transform\tALT+R"
  3541. msgstr "Unealta Transformare\tALT+R"
  3542. #: flatcamGUI/FlatCAMGUI.py:519
  3543. msgid "Enable Plot"
  3544. msgstr "Activează Afișare"
  3545. #: flatcamGUI/FlatCAMGUI.py:520 flatcamGUI/FlatCAMGUI.py:1577
  3546. msgid "Disable Plot"
  3547. msgstr "Dezactivează Afișare"
  3548. #: flatcamGUI/FlatCAMGUI.py:522
  3549. msgid "Generate CNC"
  3550. msgstr "Generează CNC"
  3551. #: flatcamGUI/FlatCAMGUI.py:523
  3552. msgid "View Source"
  3553. msgstr "Vizualiz. Sursa"
  3554. #: flatcamGUI/FlatCAMGUI.py:525 flatcamGUI/FlatCAMGUI.py:1617
  3555. msgid "Edit"
  3556. msgstr "Editează"
  3557. #: flatcamGUI/FlatCAMGUI.py:531 flatcamGUI/FlatCAMGUI.py:1623
  3558. #: flatcamTools/ToolProperties.py:25
  3559. msgid "Properties"
  3560. msgstr "Proprietati"
  3561. #: flatcamGUI/FlatCAMGUI.py:560
  3562. msgid "File Toolbar"
  3563. msgstr "Toolbar Fişiere"
  3564. #: flatcamGUI/FlatCAMGUI.py:564
  3565. msgid "Edit Toolbar"
  3566. msgstr "Toolbar Editare"
  3567. #: flatcamGUI/FlatCAMGUI.py:568
  3568. msgid "View Toolbar"
  3569. msgstr "Toolbar Vizualizare"
  3570. #: flatcamGUI/FlatCAMGUI.py:572
  3571. msgid "Shell Toolbar"
  3572. msgstr "Toolbar Linie de comanda"
  3573. #: flatcamGUI/FlatCAMGUI.py:576
  3574. msgid "Tools Toolbar"
  3575. msgstr "Toolbar Unelte"
  3576. #: flatcamGUI/FlatCAMGUI.py:580
  3577. msgid "Excellon Editor Toolbar"
  3578. msgstr "Toolbar Editor Excellon"
  3579. #: flatcamGUI/FlatCAMGUI.py:584
  3580. msgid "Geometry Editor Toolbar"
  3581. msgstr "Toolbar Editor Geometrii"
  3582. #: flatcamGUI/FlatCAMGUI.py:588
  3583. msgid "Gerber Editor Toolbar"
  3584. msgstr "Toolbar Editor Gerber"
  3585. #: flatcamGUI/FlatCAMGUI.py:592
  3586. msgid "Grid Toolbar"
  3587. msgstr "Toolbar Grid-uri"
  3588. #: flatcamGUI/FlatCAMGUI.py:611 flatcamGUI/FlatCAMGUI.py:1835
  3589. msgid "Open project"
  3590. msgstr "Încarcă Proiect"
  3591. #: flatcamGUI/FlatCAMGUI.py:612 flatcamGUI/FlatCAMGUI.py:1836
  3592. msgid "Save project"
  3593. msgstr "Salvează Proiect"
  3594. #: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1839
  3595. msgid "New Blank Geometry"
  3596. msgstr "Geometrie Noua (goală)"
  3597. #: flatcamGUI/FlatCAMGUI.py:616
  3598. msgid "New Blank Gerber"
  3599. msgstr "Gerber Nou (gol)"
  3600. #: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1840
  3601. msgid "New Blank Excellon"
  3602. msgstr "Excellon nou (gol)"
  3603. #: flatcamGUI/FlatCAMGUI.py:619 flatcamGUI/FlatCAMGUI.py:1842
  3604. msgid "Editor"
  3605. msgstr "Editor"
  3606. #: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1844
  3607. msgid "Save Object and close the Editor"
  3608. msgstr "Salvează Obiectul și inchide Editorul"
  3609. #: flatcamGUI/FlatCAMGUI.py:625 flatcamGUI/FlatCAMGUI.py:1848
  3610. msgid "&Delete"
  3611. msgstr "&Șterge"
  3612. #: flatcamGUI/FlatCAMGUI.py:628 flatcamGUI/FlatCAMGUI.py:1851
  3613. msgid "&Replot"
  3614. msgstr "&Reafișare"
  3615. #: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1852
  3616. msgid "&Clear plot"
  3617. msgstr "&Șterge Afișare"
  3618. #: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1853
  3619. msgid "Zoom In"
  3620. msgstr "Marire"
  3621. #: flatcamGUI/FlatCAMGUI.py:631 flatcamGUI/FlatCAMGUI.py:1854
  3622. msgid "Zoom Out"
  3623. msgstr "Micsorare"
  3624. #: flatcamGUI/FlatCAMGUI.py:632 flatcamGUI/FlatCAMGUI.py:1592
  3625. #: flatcamGUI/FlatCAMGUI.py:1855
  3626. msgid "Zoom Fit"
  3627. msgstr "Marire și ajustare"
  3628. #: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1860
  3629. msgid "&Command Line"
  3630. msgstr "&Linie de comanda"
  3631. #: flatcamGUI/FlatCAMGUI.py:640 flatcamGUI/FlatCAMGUI.py:1863
  3632. msgid "2Sided Tool"
  3633. msgstr "Unealta 2-fețe"
  3634. #: flatcamGUI/FlatCAMGUI.py:641 flatcamGUI/FlatCAMGUI.py:1864
  3635. msgid "&Cutout Tool"
  3636. msgstr "Unealta Decupare"
  3637. #: flatcamGUI/FlatCAMGUI.py:642 flatcamGUI/FlatCAMGUI.py:1865
  3638. #: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:285
  3639. msgid "NCC Tool"
  3640. msgstr "Unealta NCC"
  3641. #: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1869
  3642. msgid "Panel Tool"
  3643. msgstr "Unealta Panel"
  3644. #: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1870
  3645. #: flatcamTools/ToolFilm.py:204
  3646. msgid "Film Tool"
  3647. msgstr "Unealta Film"
  3648. #: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1872
  3649. #: flatcamTools/ToolSolderPaste.py:451
  3650. msgid "SolderPaste Tool"
  3651. msgstr "Unealta Dispenser SP"
  3652. #: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1873
  3653. #: flatcamTools/ToolSub.py:26
  3654. msgid "Substract Tool"
  3655. msgstr "Unealta Scădere"
  3656. #: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1878
  3657. msgid "Calculators Tool"
  3658. msgstr "Unealta Calculatoare"
  3659. #: flatcamGUI/FlatCAMGUI.py:657 flatcamGUI/FlatCAMGUI.py:671
  3660. #: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:1882
  3661. #: flatcamGUI/FlatCAMGUI.py:1934
  3662. msgid "Select"
  3663. msgstr "Selectează"
  3664. #: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1883
  3665. msgid "Add Drill Hole"
  3666. msgstr "Adaugă o Găurire"
  3667. #: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:1885
  3668. msgid "Add Drill Hole Array"
  3669. msgstr "Adaugă o arie de Găuriri"
  3670. #: flatcamGUI/FlatCAMGUI.py:661 flatcamGUI/FlatCAMGUI.py:1886
  3671. msgid "Resize Drill"
  3672. msgstr "Redimens. Găurire"
  3673. #: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:1889
  3674. msgid "Copy Drill"
  3675. msgstr "Copiază Găurire"
  3676. #: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1891
  3677. msgid "Delete Drill"
  3678. msgstr "Șterge Găurire"
  3679. #: flatcamGUI/FlatCAMGUI.py:668 flatcamGUI/FlatCAMGUI.py:1894
  3680. msgid "Move Drill"
  3681. msgstr "Muta Găurire"
  3682. #: flatcamGUI/FlatCAMGUI.py:672 flatcamGUI/FlatCAMGUI.py:1898
  3683. msgid "Add Circle"
  3684. msgstr "Adaugă Cerc"
  3685. #: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1899
  3686. msgid "Add Arc"
  3687. msgstr "Adaugă Arc"
  3688. #: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:1901
  3689. msgid "Add Rectangle"
  3690. msgstr "Adaugă Patrulater"
  3691. #: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1904
  3692. msgid "Add Path"
  3693. msgstr "Adaugă Cale"
  3694. #: flatcamGUI/FlatCAMGUI.py:679 flatcamGUI/FlatCAMGUI.py:1906
  3695. msgid "Add Polygon"
  3696. msgstr "Adaugă Poligon"
  3697. #: flatcamGUI/FlatCAMGUI.py:681 flatcamGUI/FlatCAMGUI.py:1908
  3698. msgid "Add Text"
  3699. msgstr "Adaugă Text"
  3700. #: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1910
  3701. msgid "Add Buffer"
  3702. msgstr "Adaugă Bufer"
  3703. #: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1911
  3704. msgid "Paint Shape"
  3705. msgstr "Paint o forma"
  3706. #: flatcamGUI/FlatCAMGUI.py:684 flatcamGUI/FlatCAMGUI.py:719
  3707. #: flatcamGUI/FlatCAMGUI.py:1912 flatcamGUI/FlatCAMGUI.py:1948
  3708. msgid "Eraser"
  3709. msgstr "Stergere Selectivă"
  3710. #: flatcamGUI/FlatCAMGUI.py:687 flatcamGUI/FlatCAMGUI.py:1916
  3711. msgid "Polygon Union"
  3712. msgstr "Uniune Poligoane"
  3713. #: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:1918
  3714. msgid "Polygon Intersection"
  3715. msgstr "Intersecţie Poligoane"
  3716. #: flatcamGUI/FlatCAMGUI.py:691 flatcamGUI/FlatCAMGUI.py:1920
  3717. msgid "Polygon Subtraction"
  3718. msgstr "Substracţie Poligoane"
  3719. #: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:1923
  3720. msgid "Cut Path"
  3721. msgstr "Taie Cale"
  3722. #: flatcamGUI/FlatCAMGUI.py:695
  3723. msgid "Copy Shape(s)"
  3724. msgstr "Copiază forme geo."
  3725. #: flatcamGUI/FlatCAMGUI.py:698
  3726. msgid "Delete Shape '-'"
  3727. msgstr "Șterge forme geo."
  3728. #: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:726
  3729. #: flatcamGUI/FlatCAMGUI.py:1928 flatcamGUI/FlatCAMGUI.py:1955
  3730. msgid "Transformations"
  3731. msgstr "Transformări"
  3732. #: flatcamGUI/FlatCAMGUI.py:702
  3733. msgid "Move Objects "
  3734. msgstr "Muta obiecte"
  3735. #: flatcamGUI/FlatCAMGUI.py:706 flatcamGUI/FlatCAMGUI.py:1935
  3736. msgid "Add Pad"
  3737. msgstr "Adaugă Pad"
  3738. #: flatcamGUI/FlatCAMGUI.py:708 flatcamGUI/FlatCAMGUI.py:1937
  3739. msgid "Add Track"
  3740. msgstr "Adaugă Traseu"
  3741. #: flatcamGUI/FlatCAMGUI.py:709 flatcamGUI/FlatCAMGUI.py:1938
  3742. msgid "Add Region"
  3743. msgstr "Adaugă Regiune"
  3744. #: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:1940
  3745. msgid "Poligonize"
  3746. msgstr "Poligonizare"
  3747. #: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1942
  3748. msgid "SemiDisc"
  3749. msgstr "SemiDisc"
  3750. #: flatcamGUI/FlatCAMGUI.py:714 flatcamGUI/FlatCAMGUI.py:1943
  3751. msgid "Disc"
  3752. msgstr "Disc"
  3753. #: flatcamGUI/FlatCAMGUI.py:728 flatcamGUI/FlatCAMGUI.py:1602
  3754. #: flatcamGUI/FlatCAMGUI.py:1622 flatcamGUI/FlatCAMGUI.py:1957
  3755. #: flatcamTools/ToolMove.py:26
  3756. msgid "Move"
  3757. msgstr "Mutare"
  3758. #: flatcamGUI/FlatCAMGUI.py:734 flatcamGUI/FlatCAMGUI.py:1963
  3759. msgid "Snap to grid"
  3760. msgstr "Lipire la grid"
  3761. #: flatcamGUI/FlatCAMGUI.py:737 flatcamGUI/FlatCAMGUI.py:1966
  3762. msgid "Grid X snapping distance"
  3763. msgstr "Distanta de lipire la grid pe axa X"
  3764. #: flatcamGUI/FlatCAMGUI.py:742 flatcamGUI/FlatCAMGUI.py:1971
  3765. msgid "Grid Y snapping distance"
  3766. msgstr "Distanta de lipire la grid pe axa Y"
  3767. #: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:1977
  3768. msgid ""
  3769. "When active, value on Grid_X\n"
  3770. "is copied to the Grid_Y value."
  3771. msgstr ""
  3772. "când este activ, valoarea de pe Grid_X\n"
  3773. "este copiata și in Grid_Y"
  3774. #: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:1983
  3775. msgid "Snap to corner"
  3776. msgstr "Lipire la colt"
  3777. #: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:1987
  3778. #: flatcamGUI/FlatCAMGUI.py:3344
  3779. msgid "Max. magnet distance"
  3780. msgstr "Distanta magnetica maxima"
  3781. #: flatcamGUI/FlatCAMGUI.py:786 flatcamGUI/FlatCAMGUI.py:1586
  3782. msgid "Project"
  3783. msgstr "Proiect"
  3784. #: flatcamGUI/FlatCAMGUI.py:796
  3785. msgid "Selected"
  3786. msgstr "Selectat"
  3787. #: flatcamGUI/FlatCAMGUI.py:815 flatcamGUI/FlatCAMGUI.py:823
  3788. msgid "Plot Area"
  3789. msgstr "Arie Afișare"
  3790. #: flatcamGUI/FlatCAMGUI.py:847
  3791. msgid "General"
  3792. msgstr "General"
  3793. #: flatcamGUI/FlatCAMGUI.py:856
  3794. msgid "APP. DEFAULTS"
  3795. msgstr "Default for App"
  3796. #: flatcamGUI/FlatCAMGUI.py:857
  3797. msgid "PROJ. OPTIONS "
  3798. msgstr "Opțiuni Proiect"
  3799. #: flatcamGUI/FlatCAMGUI.py:868
  3800. msgid "GERBER"
  3801. msgstr "GERBER"
  3802. #: flatcamGUI/FlatCAMGUI.py:877
  3803. msgid "EXCELLON"
  3804. msgstr "EXCELLON"
  3805. #: flatcamGUI/FlatCAMGUI.py:886
  3806. msgid "GEOMETRY"
  3807. msgstr "GEOMETRIE"
  3808. #: flatcamGUI/FlatCAMGUI.py:896
  3809. msgid "CNC-JOB"
  3810. msgstr "CNCJob"
  3811. #: flatcamGUI/FlatCAMGUI.py:905
  3812. msgid "TOOLS"
  3813. msgstr "Unelte"
  3814. #: flatcamGUI/FlatCAMGUI.py:922
  3815. msgid "Import Preferences"
  3816. msgstr "Importa Preferințele"
  3817. #: flatcamGUI/FlatCAMGUI.py:925
  3818. msgid ""
  3819. "Import a full set of FlatCAM settings from a file\n"
  3820. "previously saved on HDD.\n"
  3821. "\n"
  3822. "FlatCAM automatically save a 'factory_defaults' file\n"
  3823. "on the first start. Do not delete that file."
  3824. msgstr ""
  3825. "Importa un set complet de setări ale FlatCAM dintr-un fişier\n"
  3826. "care a fost anterior salvat pe HDD..\n"
  3827. "\n"
  3828. "FlatCAM salvează automat un fişier numit 'factory_defaults'\n"
  3829. "la prima pornire. Nu șterge acel fişier."
  3830. #: flatcamGUI/FlatCAMGUI.py:932
  3831. msgid "Export Preferences"
  3832. msgstr "Exporta Preferințele"
  3833. #: flatcamGUI/FlatCAMGUI.py:935
  3834. msgid ""
  3835. "Export a full set of FlatCAM settings in a file\n"
  3836. "that is saved on HDD."
  3837. msgstr ""
  3838. "Exporta un set complet de setări ale FlatCAM\n"
  3839. "intr-un fişier care se salvează pe HDD."
  3840. #: flatcamGUI/FlatCAMGUI.py:940
  3841. msgid "Open Pref Folder"
  3842. msgstr "Deschide Pref Dir"
  3843. #: flatcamGUI/FlatCAMGUI.py:943
  3844. msgid "Open the folder where FlatCAM save the preferences files."
  3845. msgstr "Deschide directorul unde FlatCAM salvează fişierele cu setări."
  3846. #: flatcamGUI/FlatCAMGUI.py:951
  3847. msgid "Save Preferences"
  3848. msgstr "Salvează Pref"
  3849. #: flatcamGUI/FlatCAMGUI.py:954
  3850. msgid ""
  3851. "Save the current settings in the 'current_defaults' file\n"
  3852. "which is the file storing the working default preferences."
  3853. msgstr ""
  3854. "Salvează setările curente in fişierul numit: 'current_defaults'\n"
  3855. "fişier care este cel unde se salvează preferințele cu care se va lucra."
  3856. #: flatcamGUI/FlatCAMGUI.py:980
  3857. msgid ""
  3858. "<b>General Shortcut list</b><br>\n"
  3859. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3860. "\"width:283px\">\n"
  3861. " <tbody>\n"
  3862. " <tr height=\"20\">\n"
  3863. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  3864. "td>\n"
  3865. " <td width=\"194\"><span style=\"color:"
  3866. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  3867. " </tr>\n"
  3868. " <tr height=\"20\">\n"
  3869. " <td height=\"20\">&nbsp;</td>\n"
  3870. " <td>&nbsp;</td>\n"
  3871. " </tr>\n"
  3872. " <tr height=\"20\">\n"
  3873. " <td height=\"20\"><strong>1</strong></td>\n"
  3874. " <td>&nbsp;Switch to Project Tab</td>\n"
  3875. " </tr>\n"
  3876. " <tr height=\"20\">\n"
  3877. " <td height=\"20\"><strong>2</strong></td>\n"
  3878. " <td>&nbsp;Switch to Selected Tab</td>\n"
  3879. " </tr>\n"
  3880. " <tr height=\"20\">\n"
  3881. " <td height=\"20\"><strong>3</strong></td>\n"
  3882. " <td>&nbsp;Switch to Tool Tab</td>\n"
  3883. " </tr>\n"
  3884. " <tr height=\"20\">\n"
  3885. " <td height=\"20\">&nbsp;</td>\n"
  3886. " <td>&nbsp;</td>\n"
  3887. " </tr>\n"
  3888. " <tr height=\"20\">\n"
  3889. " <td height=\"20\"><strong>B</strong></td>\n"
  3890. " <td>&nbsp;New Gerber</td>\n"
  3891. " </tr>\n"
  3892. " <tr height=\"20\">\n"
  3893. " <td height=\"20\"><strong>E</strong></td>\n"
  3894. " <td>&nbsp;Edit Object (if selected)</td>\n"
  3895. " </tr>\n"
  3896. " <tr height=\"20\">\n"
  3897. " <td height=\"20\"><strong>G</strong></td>\n"
  3898. " <td>&nbsp;Grid On/Off</td>\n"
  3899. " </tr>\n"
  3900. " <tr height=\"20\">\n"
  3901. " <td height=\"20\"><strong>J</strong></td>\n"
  3902. " <td>&nbsp;Jump to Coordinates</td>\n"
  3903. " </tr>\n"
  3904. " <tr height=\"20\">\n"
  3905. " <td height=\"20\"><strong>L</strong></td>\n"
  3906. " <td>&nbsp;New Excellon</td>\n"
  3907. " </tr>\n"
  3908. " <tr height=\"20\">\n"
  3909. " <td height=\"20\"><strong>M</strong></td>\n"
  3910. " <td>&nbsp;Move Obj</td>\n"
  3911. " </tr>\n"
  3912. " <tr height=\"20\">\n"
  3913. " <td height=\"20\"><strong>N</strong></td>\n"
  3914. " <td>&nbsp;New Geometry</td>\n"
  3915. " </tr>\n"
  3916. " <tr height=\"20\">\n"
  3917. " <td height=\"20\"><strong>O</strong></td>\n"
  3918. " <td>&nbsp;Set Origin</td>\n"
  3919. " </tr>\n"
  3920. " <tr height=\"20\">\n"
  3921. " <td height=\"20\"><strong>Q</strong></td>\n"
  3922. " <td>&nbsp;Change Units</td>\n"
  3923. " </tr>\n"
  3924. " <tr height=\"20\">\n"
  3925. " <td height=\"20\"><strong>P</strong></td>\n"
  3926. " <td>&nbsp;Open Properties Tool</td>\n"
  3927. " </tr>\n"
  3928. " <tr height=\"20\">\n"
  3929. " <td height=\"20\"><strong>R</strong></td>\n"
  3930. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  3931. " </tr>\n"
  3932. " <tr height=\"20\">\n"
  3933. " <td height=\"20\"><strong>S</strong></td>\n"
  3934. " <td>&nbsp;Shell Toggle</td>\n"
  3935. " </tr>\n"
  3936. " <tr height=\"20\">\n"
  3937. " <td height=\"20\"><strong>T</strong></td>\n"
  3938. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  3939. "or in Tools NCC or Tools Paint)</td>\n"
  3940. " </tr>\n"
  3941. " <tr height=\"20\">\n"
  3942. " <td height=\"20\"><strong>V</strong></td>\n"
  3943. " <td>&nbsp;Zoom Fit</td>\n"
  3944. " </tr>\n"
  3945. " <tr height=\"20\">\n"
  3946. " <td height=\"20\"><strong>X</strong></td>\n"
  3947. " <td>&nbsp;Flip on X_axis</td>\n"
  3948. " </tr>\n"
  3949. " <tr height=\"20\">\n"
  3950. " <td height=\"20\"><strong>Y</strong></td>\n"
  3951. " <td>&nbsp;Flip on Y_axis</td>\n"
  3952. " </tr>\n"
  3953. " <tr height=\"20\">\n"
  3954. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  3955. " <td>&nbsp;Zoom Out</td>\n"
  3956. " </tr>\n"
  3957. " <tr height=\"20\">\n"
  3958. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  3959. " <td>&nbsp;Zoom In</td>\n"
  3960. " </tr>\n"
  3961. " <tr height=\"20\">\n"
  3962. " <td height=\"20\">&nbsp;</td>\n"
  3963. " <td>&nbsp;</td>\n"
  3964. " </tr>\n"
  3965. " <tr height=\"20\">\n"
  3966. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  3967. " <td>&nbsp;Select All</td>\n"
  3968. " </tr>\n"
  3969. " <tr height=\"20\">\n"
  3970. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  3971. " <td>&nbsp;Copy Obj</td>\n"
  3972. " </tr>\n"
  3973. " <tr height=\"20\">\n"
  3974. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  3975. " <td>&nbsp;Open Excellon File</td>\n"
  3976. " </tr>\n"
  3977. " <tr height=\"20\">\n"
  3978. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  3979. " <td>&nbsp;Open Gerber File</td>\n"
  3980. " </tr>\n"
  3981. " <tr height=\"20\">\n"
  3982. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  3983. " <td>&nbsp;New Project</td>\n"
  3984. " </tr>\n"
  3985. " <tr height=\"20\">\n"
  3986. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3987. " <td>&nbsp;Measurement Tool</td>\n"
  3988. " </tr>\n"
  3989. " <tr height=\"20\">\n"
  3990. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  3991. " <td>&nbsp;Open Project</td>\n"
  3992. " </tr>\n"
  3993. " <tr height=\"20\">\n"
  3994. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3995. " <td>&nbsp;Save Project As</td>\n"
  3996. " </tr>\n"
  3997. " <tr height=\"20\">\n"
  3998. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  3999. " <td>&nbsp;Toggle Plot Area</td>\n"
  4000. " </tr>\n"
  4001. " <tr height=\"20\">\n"
  4002. " <td height=\"20\">&nbsp;</td>\n"
  4003. " <td>&nbsp;</td>\n"
  4004. " </tr>\n"
  4005. " <tr height=\"20\">\n"
  4006. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  4007. " <td>&nbsp;Copy Obj_Name</td>\n"
  4008. " </tr>\n"
  4009. " <tr height=\"20\">\n"
  4010. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  4011. " <td>&nbsp;Toggle Code Editor</td>\n"
  4012. " </tr>\n"
  4013. " <tr height=\"20\">\n"
  4014. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  4015. " <td>&nbsp;Toggle the axis</td>\n"
  4016. " </tr>\n"
  4017. " <tr height=\"20\">\n"
  4018. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  4019. " <td>&nbsp;Open Preferences Window</td>\n"
  4020. " </tr>\n"
  4021. " <tr height=\"20\">\n"
  4022. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  4023. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  4024. " </tr>\n"
  4025. " <tr height=\"20\">\n"
  4026. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  4027. " <td>&nbsp;Run a Script</td>\n"
  4028. " </tr>\n"
  4029. " <tr height=\"20\">\n"
  4030. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  4031. " <td>&nbsp;Toggle the workspace</td>\n"
  4032. " </tr>\n"
  4033. " <tr height=\"20\">\n"
  4034. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4035. " <td>&nbsp;Skew on X axis</td>\n"
  4036. " </tr>\n"
  4037. " <tr height=\"20\">\n"
  4038. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4039. " <td>&nbsp;Skew on Y axis</td>\n"
  4040. " </tr>\n"
  4041. " <tr height=\"20\">\n"
  4042. " <td height=\"20\">&nbsp;</td>\n"
  4043. " <td>&nbsp;</td>\n"
  4044. " </tr>\n"
  4045. " <tr height=\"20\">\n"
  4046. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  4047. " <td>&nbsp;Calculators Tool</td>\n"
  4048. " </tr>\n"
  4049. " <tr height=\"20\">\n"
  4050. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  4051. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  4052. " </tr>\n"
  4053. " <tr height=\"20\">\n"
  4054. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  4055. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  4056. " </tr>\n"
  4057. " <tr height=\"20\">\n"
  4058. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4059. " <td>&nbsp;Film PCB Tool</td>\n"
  4060. " </tr>\n"
  4061. " <tr height=\"20\">\n"
  4062. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4063. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  4064. " </tr>\n"
  4065. " <tr height=\"20\">\n"
  4066. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4067. " <td>&nbsp;Paint Area Tool</td>\n"
  4068. " </tr>\n"
  4069. " <tr height=\"20\">\n"
  4070. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4071. " <td>&nbsp;PDF Import Tool</td>\n"
  4072. " </tr>\n"
  4073. " <tr height=\"20\">\n"
  4074. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4075. " <td>&nbsp;Transformations Tool</td>\n"
  4076. " </tr>\n"
  4077. " <tr height=\"20\">\n"
  4078. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4079. " <td>&nbsp;View File Source</td>\n"
  4080. " </tr>\n"
  4081. " <tr height=\"20\">\n"
  4082. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4083. " <td>&nbsp;Cutout PCB Tool</td>\n"
  4084. " </tr>\n"
  4085. " <tr height=\"20\">\n"
  4086. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4087. " <td>&nbsp;Enable all Plots</td>\n"
  4088. " </tr>\n"
  4089. " <tr height=\"20\">\n"
  4090. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4091. " <td>&nbsp;Disable all Plots</td>\n"
  4092. " </tr>\n"
  4093. " <tr height=\"20\">\n"
  4094. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4095. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  4096. " </tr>\n"
  4097. " <tr height=\"20\">\n"
  4098. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4099. " <td>&nbsp;Toggle Full Screen</td>\n"
  4100. " </tr>\n"
  4101. " <tr height=\"20\">\n"
  4102. " <td height=\"20\">&nbsp;</td>\n"
  4103. " <td>&nbsp;</td>\n"
  4104. " </tr>\n"
  4105. " <tr height=\"20\">\n"
  4106. " <td height=\"20\"><strong>F1</strong></td>\n"
  4107. " <td>&nbsp;Open Online Manual</td>\n"
  4108. " </tr>\n"
  4109. " <tr height=\"20\">\n"
  4110. " <td height=\"20\"><strong>F4</strong></td>\n"
  4111. " <td>&nbsp;Open Online Tutorials</td>\n"
  4112. " </tr>\n"
  4113. " <tr height=\"20\">\n"
  4114. " <td height=\"20\"><strong>Del</strong></td>\n"
  4115. " <td>&nbsp;Delete Object</td>\n"
  4116. " </tr>\n"
  4117. " <tr height=\"20\">\n"
  4118. " <td height=\"20\"><strong>Del</strong></td>\n"
  4119. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  4120. " </tr>\n"
  4121. " <tr height=\"20\">\n"
  4122. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4123. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  4124. "Side)</td>\n"
  4125. " </tr>\n"
  4126. " <tr height=\"20\">\n"
  4127. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4128. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  4129. " </tr>\n"
  4130. " <tr height=\"20\">\n"
  4131. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4132. " <td>&nbsp;Deselects all objects</td>\n"
  4133. " </tr>\n"
  4134. " </tbody>\n"
  4135. " </table>\n"
  4136. " \n"
  4137. " "
  4138. msgstr ""
  4139. "<b>General Shortcut list</b><br>\n"
  4140. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4141. "\"width:283px\">\n"
  4142. " <tbody>\n"
  4143. " <tr height=\"20\">\n"
  4144. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  4145. "td>\n"
  4146. " <td width=\"194\"><span style=\"color:"
  4147. "#006400\"><strong>&nbsp;Afișează Lista de Shortcut-uri</strong></span></td>\n"
  4148. " </tr>\n"
  4149. " <tr height=\"20\">\n"
  4150. " <td height=\"20\">&nbsp;</td>\n"
  4151. " <td>&nbsp;</td>\n"
  4152. " </tr>\n"
  4153. " <tr height=\"20\">\n"
  4154. " <td height=\"20\"><strong>1</strong></td>\n"
  4155. " <td>&nbsp;Focus in Tab-ul Proiect</td>\n"
  4156. " </tr>\n"
  4157. " <tr height=\"20\">\n"
  4158. " <td height=\"20\"><strong>2</strong></td>\n"
  4159. " <td>&nbsp;Focus in Tab-ul Selectat</td>\n"
  4160. " </tr>\n"
  4161. " <tr height=\"20\">\n"
  4162. " <td height=\"20\"><strong>3</strong></td>\n"
  4163. " <td>&nbsp;Focus in Tab-ul Unelte</td>\n"
  4164. " </tr>\n"
  4165. " <tr height=\"20\">\n"
  4166. " <td height=\"20\">&nbsp;</td>\n"
  4167. " <td>&nbsp;</td>\n"
  4168. " </tr>\n"
  4169. " <tr height=\"20\">\n"
  4170. " <td height=\"20\"><strong>B</strong></td>\n"
  4171. " <td>&nbsp;Gerber Nou</td>\n"
  4172. " </tr>\n"
  4173. " <tr height=\"20\">\n"
  4174. " <td height=\"20\"><strong>E</strong></td>\n"
  4175. " <td>&nbsp;Editează Obiectul (daca este selectat)</"
  4176. "td>\n"
  4177. " </tr>\n"
  4178. " <tr height=\"20\">\n"
  4179. " <td height=\"20\"><strong>G</strong></td>\n"
  4180. " <td>&nbsp;Grid On/Off</td>\n"
  4181. " </tr>\n"
  4182. " <tr height=\"20\">\n"
  4183. " <td height=\"20\"><strong>J</strong></td>\n"
  4184. " <td>&nbsp;Sari la Coordinate</td>\n"
  4185. " </tr>\n"
  4186. " <tr height=\"20\">\n"
  4187. " <td height=\"20\"><strong>L</strong></td>\n"
  4188. " <td>&nbsp;Excellon Nou</td>\n"
  4189. " </tr>\n"
  4190. " <tr height=\"20\">\n"
  4191. " <td height=\"20\"><strong>M</strong></td>\n"
  4192. " <td>&nbsp;Mută Obj</td>\n"
  4193. " </tr>\n"
  4194. " <tr height=\"20\">\n"
  4195. " <td height=\"20\"><strong>N</strong></td>\n"
  4196. " <td>&nbsp;Geometrie Nouă</td>\n"
  4197. " </tr>\n"
  4198. " <tr height=\"20\">\n"
  4199. " <td height=\"20\"><strong>O</strong></td>\n"
  4200. " <td>&nbsp;Setează Originea</td>\n"
  4201. " </tr>\n"
  4202. " <tr height=\"20\">\n"
  4203. " <td height=\"20\"><strong>Q</strong></td>\n"
  4204. " <td>&nbsp;Schimbă Unitătile</td>\n"
  4205. " </tr>\n"
  4206. " <tr height=\"20\">\n"
  4207. " <td height=\"20\"><strong>P</strong></td>\n"
  4208. " <td>&nbsp;Deschide Unealta de Proprietati</td>\n"
  4209. " </tr>\n"
  4210. " <tr height=\"20\">\n"
  4211. " <td height=\"20\"><strong>R</strong></td>\n"
  4212. " <td>&nbsp;Rotește cu 90 grade CW</td>\n"
  4213. " </tr>\n"
  4214. " <tr height=\"20\">\n"
  4215. " <td height=\"20\"><strong>S</strong></td>\n"
  4216. " <td>&nbsp;Comută Shell (linia de comandă)</td>\n"
  4217. " </tr>\n"
  4218. " <tr height=\"20\">\n"
  4219. " <td height=\"20\"><strong>T</strong></td>\n"
  4220. " <td>&nbsp;Adaugă o Unealtă (când focus-ul este in "
  4221. "Tab-ul Selectat pt Geo, sau in Unealta NCC sau unealta Paint)</td>\n"
  4222. " </tr>\n"
  4223. " <tr height=\"20\">\n"
  4224. " <td height=\"20\"><strong>V</strong></td>\n"
  4225. " <td>&nbsp;Mărește și potrivește</td>\n"
  4226. " </tr>\n"
  4227. " <tr height=\"20\">\n"
  4228. " <td height=\"20\"><strong>X</strong></td>\n"
  4229. " <td>&nbsp;Oglindește pe axa X</td>\n"
  4230. " </tr>\n"
  4231. " <tr height=\"20\">\n"
  4232. " <td height=\"20\"><strong>Y</strong></td>\n"
  4233. " <td>&nbsp;Oglindește pe axa Y</td>\n"
  4234. " </tr>\n"
  4235. " <tr height=\"20\">\n"
  4236. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  4237. " <td>&nbsp;Micșorează</td>\n"
  4238. " </tr>\n"
  4239. " <tr height=\"20\">\n"
  4240. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  4241. " <td>&nbsp;Mărește</td>\n"
  4242. " </tr>\n"
  4243. " <tr height=\"20\">\n"
  4244. " <td height=\"20\">&nbsp;</td>\n"
  4245. " <td>&nbsp;</td>\n"
  4246. " </tr>\n"
  4247. " <tr height=\"20\">\n"
  4248. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  4249. " <td>&nbsp;Selectează Tot</td>\n"
  4250. " </tr>\n"
  4251. " <tr height=\"20\">\n"
  4252. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  4253. " <td>&nbsp;Copiază Obiect</td>\n"
  4254. " </tr>\n"
  4255. " <tr height=\"20\">\n"
  4256. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4257. " <td>&nbsp;Deschide fişier Excellon</td>\n"
  4258. " </tr>\n"
  4259. " <tr height=\"20\">\n"
  4260. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  4261. " <td>&nbsp;Deschide fişier Gerber</td>\n"
  4262. " </tr>\n"
  4263. " <tr height=\"20\">\n"
  4264. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  4265. " <td>&nbsp;Proiect Nou</td>\n"
  4266. " </tr>\n"
  4267. " <tr height=\"20\">\n"
  4268. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4269. " <td>&nbsp;Unealta de Masurare</td>\n"
  4270. " </tr>\n"
  4271. " <tr height=\"20\">\n"
  4272. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  4273. " <td>&nbsp;Deschide Proiect</td>\n"
  4274. " </tr>\n"
  4275. " <tr height=\"20\">\n"
  4276. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4277. " <td>&nbsp;Salvează Proiect ca</td>\n"
  4278. " </tr>\n"
  4279. " <tr height=\"20\">\n"
  4280. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  4281. " <td>&nbsp;Comută Aria de Afișare</td>\n"
  4282. " </tr>\n"
  4283. " <tr height=\"20\">\n"
  4284. " <td height=\"20\">&nbsp;</td>\n"
  4285. " <td>&nbsp;</td>\n"
  4286. " </tr>\n"
  4287. " <tr height=\"20\">\n"
  4288. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  4289. " <td>&nbsp;Copiază Nume Obiect</td>\n"
  4290. " </tr>\n"
  4291. " <tr height=\"20\">\n"
  4292. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  4293. " <td>&nbsp;Comută Editor Cod</td>\n"
  4294. " </tr>\n"
  4295. " <tr height=\"20\">\n"
  4296. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  4297. " <td>&nbsp;Comută Axele</td>\n"
  4298. " </tr>\n"
  4299. " <tr height=\"20\">\n"
  4300. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  4301. " <td>&nbsp;Deschide Preferințe</td>\n"
  4302. " </tr>\n"
  4303. " <tr height=\"20\">\n"
  4304. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  4305. " <td>&nbsp;Rotește cu 90 grade CCW</td>\n"
  4306. " </tr>\n"
  4307. " <tr height=\"20\">\n"
  4308. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  4309. " <td>&nbsp;Rulează un Script</td>\n"
  4310. " </tr>\n"
  4311. " <tr height=\"20\">\n"
  4312. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  4313. " <td>&nbsp;Comută Spatiul de Lucru</td>\n"
  4314. " </tr>\n"
  4315. " <tr height=\"20\">\n"
  4316. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4317. " <td>&nbsp;Deformează pe axa X</td>\n"
  4318. " </tr>\n"
  4319. " <tr height=\"20\">\n"
  4320. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4321. " <td>&nbsp;Deformează pe axa Y</td>\n"
  4322. " </tr>\n"
  4323. " <tr height=\"20\">\n"
  4324. " <td height=\"20\">&nbsp;</td>\n"
  4325. " <td>&nbsp;</td>\n"
  4326. " </tr>\n"
  4327. " <tr height=\"20\">\n"
  4328. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  4329. " <td>&nbsp;Unealta Calculatoare</td>\n"
  4330. " </tr>\n"
  4331. " <tr height=\"20\">\n"
  4332. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  4333. " <td>&nbsp;Unealta 2-Layer</td>\n"
  4334. " </tr>\n"
  4335. " <tr height=\"20\">\n"
  4336. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  4337. " <td>&nbsp;Unealta Dispensare Pasta Fludor</td>\n"
  4338. " </tr>\n"
  4339. " <tr height=\"20\">\n"
  4340. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4341. " <td>&nbsp;Unealta Film PCB</td>\n"
  4342. " </tr>\n"
  4343. " <tr height=\"20\">\n"
  4344. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4345. " <td>&nbsp;Unealta de curățare zone cupru</td>\n"
  4346. " </tr>\n"
  4347. " <tr height=\"20\">\n"
  4348. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4349. " <td>&nbsp;Unealta Paint</td>\n"
  4350. " </tr>\n"
  4351. " <tr height=\"20\">\n"
  4352. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4353. " <td>&nbsp;Unealta de import PDF</td>\n"
  4354. " </tr>\n"
  4355. " <tr height=\"20\">\n"
  4356. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4357. " <td>&nbsp;Unealta Transformări</td>\n"
  4358. " </tr>\n"
  4359. " <tr height=\"20\">\n"
  4360. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4361. " <td>&nbsp;Vizualiz. Codul Sursa</td>\n"
  4362. " </tr>\n"
  4363. " <tr height=\"20\">\n"
  4364. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4365. " <td>&nbsp;Unealta de Decupare</td>\n"
  4366. " </tr>\n"
  4367. " <tr height=\"20\">\n"
  4368. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4369. " <td>&nbsp;Activează toate Afișările</td>\n"
  4370. " </tr>\n"
  4371. " <tr height=\"20\">\n"
  4372. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4373. " <td>&nbsp;Dezactivează toate afişările/td>\n"
  4374. " </tr>\n"
  4375. " <tr height=\"20\">\n"
  4376. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4377. " <td>&nbsp;Dezactivează toate afişările neselectate</"
  4378. "td>\n"
  4379. " </tr>\n"
  4380. " <tr height=\"20\">\n"
  4381. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4382. " <td>&nbsp;Comută Full Screen</td>\n"
  4383. " </tr>\n"
  4384. " <tr height=\"20\">\n"
  4385. " <td height=\"20\">&nbsp;</td>\n"
  4386. " <td>&nbsp;</td>\n"
  4387. " </tr>\n"
  4388. " <tr height=\"20\">\n"
  4389. " <td height=\"20\"><strong>F1</strong></td>\n"
  4390. " <td>&nbsp;Deschide Manualul Online</td>\n"
  4391. " </tr>\n"
  4392. " <tr height=\"20\">\n"
  4393. " <td height=\"20\"><strong>F4</strong></td>\n"
  4394. " <td>&nbsp;Deschide Tutoriale Online</td>\n"
  4395. " </tr>\n"
  4396. " <tr height=\"20\">\n"
  4397. " <td height=\"20\"><strong>Del</strong></td>\n"
  4398. " <td>&nbsp;Șterge Obiectul</td>\n"
  4399. " </tr>\n"
  4400. " <tr height=\"20\">\n"
  4401. " <td height=\"20\"><strong>Del</strong></td>\n"
  4402. " <td>&nbsp;Alternativ: Șterge Unealta</td>\n"
  4403. " </tr>\n"
  4404. " <tr height=\"20\">\n"
  4405. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4406. " <td>&nbsp;(in stânga Tasta_1)Comută Aria Notebook "
  4407. "(in stânga)</td>\n"
  4408. " </tr>\n"
  4409. " <tr height=\"20\">\n"
  4410. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4411. " <td>&nbsp;(Dez)Activează afișare obiect</td>\n"
  4412. " </tr>\n"
  4413. " <tr height=\"20\">\n"
  4414. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4415. " <td>&nbsp;Deselectează toate obiectele</td>\n"
  4416. " </tr>\n"
  4417. " </tbody>\n"
  4418. " </table>\n"
  4419. " \n"
  4420. " "
  4421. #: flatcamGUI/FlatCAMGUI.py:1265
  4422. msgid ""
  4423. "<b>Editor Shortcut list</b><br>\n"
  4424. " <br>\n"
  4425. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  4426. "strong><br>\n"
  4427. " \n"
  4428. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4429. "\"width:283px\">\n"
  4430. " <tbody>\n"
  4431. " <tr height=\"20\">\n"
  4432. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4433. "td>\n"
  4434. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  4435. " </tr>\n"
  4436. " <tr height=\"20\">\n"
  4437. " <td height=\"20\"><strong>B</strong></td>\n"
  4438. " <td>&nbsp;Buffer Tool</td>\n"
  4439. " </tr>\n"
  4440. " <tr height=\"20\">\n"
  4441. " <td height=\"20\"><strong>C</strong></td>\n"
  4442. " <td>&nbsp;Copy Geo Item</td>\n"
  4443. " </tr>\n"
  4444. " <tr height=\"20\">\n"
  4445. " <td height=\"20\"><strong>D</strong></td>\n"
  4446. " <td>&nbsp;Within Add Arc will toogle the ARC "
  4447. "direction: CW or CCW</td>\n"
  4448. " </tr>\n"
  4449. " <tr height=\"20\">\n"
  4450. " <td height=\"20\"><strong>E</strong></td>\n"
  4451. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  4452. " </tr>\n"
  4453. " <tr height=\"20\">\n"
  4454. " <td height=\"20\"><strong>I</strong></td>\n"
  4455. " <td>&nbsp;Paint Tool</td>\n"
  4456. " </tr>\n"
  4457. " <tr height=\"20\">\n"
  4458. " <td height=\"20\"><strong>J</strong></td>\n"
  4459. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4460. " </tr>\n"
  4461. " <tr height=\"20\">\n"
  4462. " <td height=\"20\"><strong>K</strong></td>\n"
  4463. " <td>&nbsp;Toggle Corner Snap</td>\n"
  4464. " </tr>\n"
  4465. " <tr height=\"20\">\n"
  4466. " <td height=\"20\"><strong>M</strong></td>\n"
  4467. " <td>&nbsp;Move Geo Item</td>\n"
  4468. " </tr>\n"
  4469. " <tr height=\"20\">\n"
  4470. " <td height=\"20\"><strong>M</strong></td>\n"
  4471. " <td>&nbsp;Within Add Arc will cycle through the ARC "
  4472. "modes</td>\n"
  4473. " </tr>\n"
  4474. " <tr height=\"20\">\n"
  4475. " <td height=\"20\"><strong>N</strong></td>\n"
  4476. " <td>&nbsp;Draw a Polygon</td>\n"
  4477. " </tr>\n"
  4478. " <tr height=\"20\">\n"
  4479. " <td height=\"20\"><strong>O</strong></td>\n"
  4480. " <td>&nbsp;Draw a Circle</td>\n"
  4481. " </tr>\n"
  4482. " <tr height=\"20\">\n"
  4483. " <td height=\"20\"><strong>P</strong></td>\n"
  4484. " <td>&nbsp;Draw a Path</td>\n"
  4485. " </tr>\n"
  4486. " <tr height=\"20\">\n"
  4487. " <td height=\"20\"><strong>R</strong></td>\n"
  4488. " <td>&nbsp;Draw Rectangle</td>\n"
  4489. " </tr>\n"
  4490. " <tr height=\"20\">\n"
  4491. " <td height=\"20\"><strong>S</strong></td>\n"
  4492. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  4493. " </tr>\n"
  4494. " <tr height=\"20\">\n"
  4495. " <td height=\"20\"><strong>T</strong></td>\n"
  4496. " <td>&nbsp;Add Text Tool</td>\n"
  4497. " </tr>\n"
  4498. " <tr height=\"20\">\n"
  4499. " <td height=\"20\"><strong>U</strong></td>\n"
  4500. " <td>&nbsp;Polygon Union Tool</td>\n"
  4501. " </tr>\n"
  4502. " <tr height=\"20\">\n"
  4503. " <td height=\"20\"><strong>X</strong></td>\n"
  4504. " <td>&nbsp;Flip shape on X axis</td>\n"
  4505. " </tr>\n"
  4506. " <tr height=\"20\">\n"
  4507. " <td height=\"20\"><strong>Y</strong></td>\n"
  4508. " <td>&nbsp;Flip shape on Y axis</td>\n"
  4509. " </tr>\n"
  4510. " <tr height=\"20\">\n"
  4511. " <td height=\"20\">&nbsp;</td>\n"
  4512. " <td>&nbsp;</td>\n"
  4513. " </tr>\n"
  4514. " <tr height=\"20\">\n"
  4515. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4516. " <td>&nbsp;Skew shape on X axis</td>\n"
  4517. " </tr>\n"
  4518. " <tr height=\"20\">\n"
  4519. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4520. " <td>&nbsp;Skew shape on Y axis</td>\n"
  4521. " </tr>\n"
  4522. " <tr height=\"20\">\n"
  4523. " <td height=\"20\">&nbsp;</td>\n"
  4524. " <td>&nbsp;</td>\n"
  4525. " </tr>\n"
  4526. " <tr height=\"20\">\n"
  4527. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4528. " <td>&nbsp;Editor Transformation Tool</td>\n"
  4529. " </tr>\n"
  4530. " <tr height=\"20\">\n"
  4531. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4532. " <td>&nbsp;Offset shape on X axis</td>\n"
  4533. " </tr>\n"
  4534. " <tr height=\"20\">\n"
  4535. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4536. " <td>&nbsp;Offset shape on Y axis</td>\n"
  4537. " </tr>\n"
  4538. " <tr height=\"20\">\n"
  4539. " <td height=\"20\">&nbsp;</td>\n"
  4540. " <td>&nbsp;</td>\n"
  4541. " </tr>\n"
  4542. " <tr height=\"20\">\n"
  4543. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4544. " <td>&nbsp;Measurement Tool</td>\n"
  4545. " </tr>\n"
  4546. " <tr height=\"20\">\n"
  4547. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4548. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4549. " </tr>\n"
  4550. " <tr height=\"20\">\n"
  4551. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4552. " <td>&nbsp;Polygon Cut Tool</td>\n"
  4553. " </tr>\n"
  4554. " <tr height=\"20\">\n"
  4555. " <td height=\"20\">&nbsp;</td>\n"
  4556. " <td>&nbsp;</td>\n"
  4557. " </tr>\n"
  4558. " <tr height=\"20\">\n"
  4559. " <td height=\"20\"><strong>Space</strong></td>\n"
  4560. " <td>&nbsp;Rotate Geometry</td>\n"
  4561. " </tr>\n"
  4562. " <tr height=\"20\">\n"
  4563. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4564. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  4565. " </tr>\n"
  4566. " <tr height=\"20\">\n"
  4567. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4568. " <td>&nbsp;Abort and return to Select</td>\n"
  4569. " </tr>\n"
  4570. " <tr height=\"20\">\n"
  4571. " <td height=\"20\"><strong>Del</strong></td>\n"
  4572. " <td>&nbsp;Delete Shape</td>\n"
  4573. " </tr>\n"
  4574. " </tbody>\n"
  4575. " </table>\n"
  4576. " <br>\n"
  4577. " <br>\n"
  4578. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  4579. "strong><br>\n"
  4580. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4581. "\"width:283px\">\n"
  4582. " <tbody>\n"
  4583. " <tr height=\"20\">\n"
  4584. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4585. "td>\n"
  4586. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  4587. " </tr>\n"
  4588. " <tr height=\"20\">\n"
  4589. " <td height=\"20\"><strong>C</strong></td>\n"
  4590. " <td>&nbsp;Copy Drill(s)</td>\n"
  4591. " </tr>\n"
  4592. " <tr height=\"20\">\n"
  4593. " <td height=\"20\"><strong>D</strong></td>\n"
  4594. " <td>&nbsp;Add Drill</td>\n"
  4595. " </tr>\n"
  4596. " <tr height=\"20\">\n"
  4597. " <td height=\"20\"><strong>J</strong></td>\n"
  4598. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4599. " </tr>\n"
  4600. " <tr height=\"20\">\n"
  4601. " <td height=\"20\"><strong>M</strong></td>\n"
  4602. " <td>&nbsp;Move Drill(s)</td>\n"
  4603. " </tr>\n"
  4604. " <tr height=\"20\">\n"
  4605. " <td height=\"20\"><strong>R</strong></td>\n"
  4606. " <td>&nbsp;Resize Drill(s)</td>\n"
  4607. " </tr>\n"
  4608. " <tr height=\"20\">\n"
  4609. " <td height=\"20\"><strong>T</strong></td>\n"
  4610. " <td>&nbsp;Add a new Tool</td>\n"
  4611. " </tr>\n"
  4612. " <tr height=\"20\">\n"
  4613. " <td height=\"20\">&nbsp;</td>\n"
  4614. " <td>&nbsp;</td>\n"
  4615. " </tr>\n"
  4616. " <tr height=\"20\">\n"
  4617. " <td height=\"20\"><strong>Del</strong></td>\n"
  4618. " <td>&nbsp;Delete Drill(s)</td>\n"
  4619. " </tr>\n"
  4620. " <tr height=\"20\">\n"
  4621. " <td height=\"20\"><strong>Del</strong></td>\n"
  4622. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  4623. " </tr>\n"
  4624. " <tr height=\"20\">\n"
  4625. " <td height=\"20\">&nbsp;</td>\n"
  4626. " <td>&nbsp;</td>\n"
  4627. " </tr>\n"
  4628. " <tr height=\"20\">\n"
  4629. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4630. " <td>&nbsp;Abort and return to Select</td>\n"
  4631. " </tr>\n"
  4632. " <tr height=\"20\">\n"
  4633. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4634. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4635. " </tr>\n"
  4636. " </tbody>\n"
  4637. " </table>\n"
  4638. " <br>\n"
  4639. " <br>\n"
  4640. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  4641. "strong><br>\n"
  4642. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4643. "\"width:283px\">\n"
  4644. " <tbody>\n"
  4645. " <tr height=\"20\">\n"
  4646. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4647. "td>\n"
  4648. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  4649. " </tr>\n"
  4650. " <tr height=\"20\">\n"
  4651. " <td height=\"20\"><strong>B</strong></td>\n"
  4652. " <td>&nbsp;Buffer</td>\n"
  4653. " </tr>\n"
  4654. " <tr height=\"20\">\n"
  4655. " <td height=\"20\"><strong>C</strong></td>\n"
  4656. " <td>&nbsp;Copy</td>\n"
  4657. " </tr>\n"
  4658. " <tr height=\"20\">\n"
  4659. " <td height=\"20\"><strong>D</strong></td>\n"
  4660. " <td>&nbsp;Add Disc</td>\n"
  4661. " </tr>\n"
  4662. " <tr height=\"20\">\n"
  4663. " <td height=\"20\"><strong>E</strong></td>\n"
  4664. " <td>&nbsp;Add SemiDisc</td>\n"
  4665. " </tr>\n"
  4666. " <tr height=\"20\">\n"
  4667. " <td height=\"20\"><strong>J</strong></td>\n"
  4668. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4669. " </tr>\n"
  4670. " <tr height=\"20\">\n"
  4671. " <td height=\"20\"><strong>M</strong></td>\n"
  4672. " <td>&nbsp;Move</td>\n"
  4673. " </tr>\n"
  4674. " <tr height=\"20\">\n"
  4675. " <td height=\"20\"><strong>N</strong></td>\n"
  4676. " <td>&nbsp;Add Region</td>\n"
  4677. " </tr>\n"
  4678. " <tr height=\"20\">\n"
  4679. " <td height=\"20\"><strong>P</strong></td>\n"
  4680. " <td>&nbsp;Add Pad</td>\n"
  4681. " </tr>\n"
  4682. " <tr height=\"20\">\n"
  4683. " <td height=\"20\"><strong>R</strong></td>\n"
  4684. " <td>&nbsp;Within Track & Region Tools will cycle in "
  4685. "REVERSE the bend modes</td>\n"
  4686. " </tr>\n"
  4687. " <tr height=\"20\">\n"
  4688. " <td height=\"20\"><strong>S</strong></td>\n"
  4689. " <td>&nbsp;Scale</td>\n"
  4690. " </tr>\n"
  4691. " <tr height=\"20\">\n"
  4692. " <td height=\"20\"><strong>T</strong></td>\n"
  4693. " <td>&nbsp;Add Track</td>\n"
  4694. " </tr>\n"
  4695. " <tr height=\"20\">\n"
  4696. " <td height=\"20\"><strong>T</strong></td>\n"
  4697. " <td>&nbsp;Within Track & Region Tools will cycle "
  4698. "FORWARD the bend modes</td>\n"
  4699. " </tr>\n"
  4700. " <tr height=\"20\">\n"
  4701. " <td height=\"20\">&nbsp;</td>\n"
  4702. " <td>&nbsp;</td>\n"
  4703. " </tr>\n"
  4704. " <tr height=\"20\">\n"
  4705. " <td height=\"20\"><strong>Del</strong></td>\n"
  4706. " <td>&nbsp;Delete</td>\n"
  4707. " </tr>\n"
  4708. " <tr height=\"20\">\n"
  4709. " <td height=\"20\"><strong>Del</strong></td>\n"
  4710. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  4711. " </tr>\n"
  4712. " <tr height=\"20\">\n"
  4713. " <td height=\"20\">&nbsp;</td>\n"
  4714. " <td>&nbsp;</td>\n"
  4715. " </tr>\n"
  4716. " <tr height=\"20\">\n"
  4717. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4718. " <td>&nbsp;Abort and return to Select</td>\n"
  4719. " </tr>\n"
  4720. " <tr height=\"20\">\n"
  4721. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4722. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4723. " </tr>\n"
  4724. " <tr height=\"20\">\n"
  4725. " <td height=\"20\">&nbsp;</td>\n"
  4726. " <td>&nbsp;</td>\n"
  4727. " </tr>\n"
  4728. " <tr height=\"20\">\n"
  4729. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4730. " <td>&nbsp;Transformation Tool</td>\n"
  4731. " </tr>\n"
  4732. " </tbody>\n"
  4733. " </table>\n"
  4734. " "
  4735. msgstr ""
  4736. "<b>Lista de teste shortcut in Editor</b><br>\n"
  4737. " <br>\n"
  4738. " <strong><span style=\"color:#0000ff\">EDITOR GEOMETRII</span></"
  4739. "strong><br>\n"
  4740. " \n"
  4741. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4742. "\"width:283px\">\n"
  4743. " <tbody>\n"
  4744. " <tr height=\"20\">\n"
  4745. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4746. "td>\n"
  4747. " <td width=\"194\">&nbsp;Deseneaza un arc</td>\n"
  4748. " </tr>\n"
  4749. " <tr height=\"20\">\n"
  4750. " <td height=\"20\"><strong>B</strong></td>\n"
  4751. " <td>&nbsp;Unealta Bufer</td>\n"
  4752. " </tr>\n"
  4753. " <tr height=\"20\">\n"
  4754. " <td height=\"20\"><strong>C</strong></td>\n"
  4755. " <td>&nbsp;Copiază o geometrie</td>\n"
  4756. " </tr>\n"
  4757. " <tr height=\"20\">\n"
  4758. " <td height=\"20\"><strong>D</strong></td>\n"
  4759. " <td>&nbsp;Pt cazul Adauga Arc va schimba directia "
  4760. "curbei: CW sau CCW</td>\n"
  4761. " </tr>\n"
  4762. " <tr height=\"20\">\n"
  4763. " <td height=\"20\"><strong>E</strong></td>\n"
  4764. " <td>&nbsp;Unealta Intersectie Poligoane</td>\n"
  4765. " </tr>\n"
  4766. " <tr height=\"20\">\n"
  4767. " <td height=\"20\"><strong>I</strong></td>\n"
  4768. " <td>&nbsp;Unealta Paint</td>\n"
  4769. " </tr>\n"
  4770. " <tr height=\"20\">\n"
  4771. " <td height=\"20\"><strong>J</strong></td>\n"
  4772. " <td>&nbsp;Sari la locatie (x, y)</td>\n"
  4773. " </tr>\n"
  4774. " <tr height=\"20\">\n"
  4775. " <td height=\"20\"><strong>K</strong></td>\n"
  4776. " <td>&nbsp;Comută magnet colt</td>\n"
  4777. " </tr>\n"
  4778. " <tr height=\"20\">\n"
  4779. " <td height=\"20\"><strong>M</strong></td>\n"
  4780. " <td>&nbsp;Muta geometrie</td>\n"
  4781. " </tr>\n"
  4782. " <tr height=\"20\">\n"
  4783. " <td height=\"20\"><strong>M</strong></td>\n"
  4784. " <td>&nbsp;Pt cazul Adauga Arc va parcurge modurile "
  4785. "de realizare a curbelor</td>\n"
  4786. " </tr>\n"
  4787. " <tr height=\"20\">\n"
  4788. " <td height=\"20\"><strong>N</strong></td>\n"
  4789. " <td>&nbsp;Deseneaza un Poligon</td>\n"
  4790. " </tr>\n"
  4791. " <tr height=\"20\">\n"
  4792. " <td height=\"20\"><strong>O</strong></td>\n"
  4793. " <td>&nbsp;Deseneaza un Cerc</td>\n"
  4794. " </tr>\n"
  4795. " <tr height=\"20\">\n"
  4796. " <td height=\"20\"><strong>P</strong></td>\n"
  4797. " <td>&nbsp;Deseneaza o Cale</td>\n"
  4798. " </tr>\n"
  4799. " <tr height=\"20\">\n"
  4800. " <td height=\"20\"><strong>R</strong></td>\n"
  4801. " <td>&nbsp;Deseneaza un Patrulater</td>\n"
  4802. " </tr>\n"
  4803. " <tr height=\"20\">\n"
  4804. " <td height=\"20\"><strong>S</strong></td>\n"
  4805. " <td>&nbsp;Unealta de Substractie Poligoane</td>\n"
  4806. " </tr>\n"
  4807. " <tr height=\"20\">\n"
  4808. " <td height=\"20\"><strong>T</strong></td>\n"
  4809. " <td>&nbsp;Unealta de adaugare Text</td>\n"
  4810. " </tr>\n"
  4811. " <tr height=\"20\">\n"
  4812. " <td height=\"20\"><strong>U</strong></td>\n"
  4813. " <td>&nbsp;Unealta de Uniune Poligoane</td>\n"
  4814. " </tr>\n"
  4815. " <tr height=\"20\">\n"
  4816. " <td height=\"20\"><strong>X</strong></td>\n"
  4817. " <td>&nbsp;Oglindire pe axa X</td>\n"
  4818. " </tr>\n"
  4819. " <tr height=\"20\">\n"
  4820. " <td height=\"20\"><strong>Y</strong></td>\n"
  4821. " <td>&nbsp;Oglindire pe axa Y</td>\n"
  4822. " </tr>\n"
  4823. " <tr height=\"20\">\n"
  4824. " <td height=\"20\">&nbsp;</td>\n"
  4825. " <td>&nbsp;</td>\n"
  4826. " </tr>\n"
  4827. " <tr height=\"20\">\n"
  4828. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4829. " <td>&nbsp;Deformeaza pe axa X</td>\n"
  4830. " </tr>\n"
  4831. " <tr height=\"20\">\n"
  4832. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4833. " <td>&nbsp;Deformeaza pe axa Y</td>\n"
  4834. " </tr>\n"
  4835. " <tr height=\"20\">\n"
  4836. " <td height=\"20\">&nbsp;</td>\n"
  4837. " <td>&nbsp;</td>\n"
  4838. " </tr>\n"
  4839. " <tr height=\"20\">\n"
  4840. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4841. " <td>&nbsp;Unealta Transformare din Editor</td>\n"
  4842. " </tr>\n"
  4843. " <tr height=\"20\">\n"
  4844. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4845. " <td>&nbsp;Deplaseaza pe axa X</td>\n"
  4846. " </tr>\n"
  4847. " <tr height=\"20\">\n"
  4848. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4849. " <td>&nbsp;Deplaseaza pe axa Y</td>\n"
  4850. " </tr>\n"
  4851. " <tr height=\"20\">\n"
  4852. " <td height=\"20\">&nbsp;</td>\n"
  4853. " <td>&nbsp;</td>\n"
  4854. " </tr>\n"
  4855. " <tr height=\"20\">\n"
  4856. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4857. " <td>&nbsp;Unealta de masurare</td>\n"
  4858. " </tr>\n"
  4859. " <tr height=\"20\">\n"
  4860. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4861. " <td>&nbsp;Inchide Editorul</td>\n"
  4862. " </tr>\n"
  4863. " <tr height=\"20\">\n"
  4864. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4865. " <td>&nbsp;Unealta de Decupare Poligoane</td>\n"
  4866. " </tr>\n"
  4867. " <tr height=\"20\">\n"
  4868. " <td height=\"20\">&nbsp;</td>\n"
  4869. " <td>&nbsp;</td>\n"
  4870. " </tr>\n"
  4871. " <tr height=\"20\">\n"
  4872. " <td height=\"20\"><strong>Space</strong></td>\n"
  4873. " <td>&nbsp;Roteste geometria</td>\n"
  4874. " </tr>\n"
  4875. " <tr height=\"20\">\n"
  4876. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4877. " <td>&nbsp;Finalizeaza desenul pt anumite tipuri de "
  4878. "geo.</td>\n"
  4879. " </tr>\n"
  4880. " <tr height=\"20\">\n"
  4881. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4882. " <td>&nbsp;Renunță si revino la Unealta Selectie</"
  4883. "td>\n"
  4884. " </tr>\n"
  4885. " <tr height=\"20\">\n"
  4886. " <td height=\"20\"><strong>Del</strong></td>\n"
  4887. " <td>&nbsp;Sterge geometrie</td>\n"
  4888. " </tr>\n"
  4889. " </tbody>\n"
  4890. " </table>\n"
  4891. " <br>\n"
  4892. " <br>\n"
  4893. " <strong><span style=\"color:#ff0000\">EDITOR EXCELLON</span></"
  4894. "strong><br>\n"
  4895. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4896. "\"width:283px\">\n"
  4897. " <tbody>\n"
  4898. " <tr height=\"20\">\n"
  4899. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4900. "td>\n"
  4901. " <td width=\"194\">&nbsp;Adauga o arie de gauri</td>\n"
  4902. " </tr>\n"
  4903. " <tr height=\"20\">\n"
  4904. " <td height=\"20\"><strong>C</strong></td>\n"
  4905. " <td>&nbsp;Copiază gauri</td>\n"
  4906. " </tr>\n"
  4907. " <tr height=\"20\">\n"
  4908. " <td height=\"20\"><strong>D</strong></td>\n"
  4909. " <td>&nbsp;Adauga o gaura</td>\n"
  4910. " </tr>\n"
  4911. " <tr height=\"20\">\n"
  4912. " <td height=\"20\"><strong>J</strong></td>\n"
  4913. " <td>&nbsp;Sari la locatia (x, y)</td>\n"
  4914. " </tr>\n"
  4915. " <tr height=\"20\">\n"
  4916. " <td height=\"20\"><strong>M</strong></td>\n"
  4917. " <td>&nbsp;Muta gauri</td>\n"
  4918. " </tr>\n"
  4919. " <tr height=\"20\">\n"
  4920. " <td height=\"20\"><strong>R</strong></td>\n"
  4921. " <td>&nbsp;Redimensioneaza gauri</td>\n"
  4922. " </tr>\n"
  4923. " <tr height=\"20\">\n"
  4924. " <td height=\"20\"><strong>T</strong></td>\n"
  4925. " <td>&nbsp;Adauga o noua unealta</td>\n"
  4926. " </tr>\n"
  4927. " <tr height=\"20\">\n"
  4928. " <td height=\"20\">&nbsp;</td>\n"
  4929. " <td>&nbsp;</td>\n"
  4930. " </tr>\n"
  4931. " <tr height=\"20\">\n"
  4932. " <td height=\"20\"><strong>Del</strong></td>\n"
  4933. " <td>&nbsp;Sterge gauri</td>\n"
  4934. " </tr>\n"
  4935. " <tr height=\"20\">\n"
  4936. " <td height=\"20\"><strong>Del</strong></td>\n"
  4937. " <td>&nbsp;Alternativ: Sterge Unelte</td>\n"
  4938. " </tr>\n"
  4939. " <tr height=\"20\">\n"
  4940. " <td height=\"20\">&nbsp;</td>\n"
  4941. " <td>&nbsp;</td>\n"
  4942. " </tr>\n"
  4943. " <tr height=\"20\">\n"
  4944. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4945. " <td>&nbsp;Renunță si revino la Unealta de Selectie</"
  4946. "td>\n"
  4947. " </tr>\n"
  4948. " <tr height=\"20\">\n"
  4949. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4950. " <td>&nbsp;Inchide Editorul</td>\n"
  4951. " </tr>\n"
  4952. " </tbody>\n"
  4953. " </table>\n"
  4954. " <br>\n"
  4955. " <br>\n"
  4956. " <strong><span style=\"color:#00ff00\">EDITOR GERBER</span></"
  4957. "strong><br>\n"
  4958. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4959. "\"width:283px\">\n"
  4960. " <tbody>\n"
  4961. " <tr height=\"20\">\n"
  4962. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4963. "td>\n"
  4964. " <td width=\"194\">&nbsp;Adauga o arie de Paduri</"
  4965. "td>\n"
  4966. " </tr>\n"
  4967. " <tr height=\"20\">\n"
  4968. " <td height=\"20\"><strong>B</strong></td>\n"
  4969. " <td>&nbsp;Bufer</td>\n"
  4970. " </tr>\n"
  4971. " <tr height=\"20\">\n"
  4972. " <td height=\"20\"><strong>C</strong></td>\n"
  4973. " <td>&nbsp;Copiere</td>\n"
  4974. " </tr>\n"
  4975. " <tr height=\"20\">\n"
  4976. " <td height=\"20\"><strong>D</strong></td>\n"
  4977. " <td>&nbsp;Adauga Disc</td>\n"
  4978. " </tr>\n"
  4979. " <tr height=\"20\">\n"
  4980. " <td height=\"20\"><strong>J</strong></td>\n"
  4981. " <td>&nbsp;Sari la locatia (x, y)</td>\n"
  4982. " </tr>\n"
  4983. " <tr height=\"20\">\n"
  4984. " <td height=\"20\"><strong>M</strong></td>\n"
  4985. " <td>&nbsp;Muta</td>\n"
  4986. " </tr>\n"
  4987. " <tr height=\"20\">\n"
  4988. " <td height=\"20\"><strong>N</strong></td>\n"
  4989. " <td>&nbsp;Adauga Regiune</td>\n"
  4990. " </tr>\n"
  4991. " <tr height=\"20\">\n"
  4992. " <td height=\"20\"><strong>P</strong></td>\n"
  4993. " <td>&nbsp;Adauga Pad</td>\n"
  4994. " </tr>\n"
  4995. " <tr height=\"20\">\n"
  4996. " <td height=\"20\"><strong>R</strong></td>\n"
  4997. " <td>&nbsp;In uneltele Traseu si Regiune va parcurge "
  4998. "in Revers modurile de indoire</td>\n"
  4999. " </tr>\n"
  5000. " <tr height=\"20\">\n"
  5001. " <td height=\"20\"><strong>S</strong></td>\n"
  5002. " <td>&nbsp;Scalare</td>\n"
  5003. " </tr>\n"
  5004. " <tr height=\"20\">\n"
  5005. " <td height=\"20\"><strong>T</strong></td>\n"
  5006. " <td>&nbsp;Adauga Traseu</td>\n"
  5007. " </tr>\n"
  5008. " <tr height=\"20\">\n"
  5009. " <td height=\"20\"><strong>R</strong></td>\n"
  5010. " <td>&nbsp;In uneltele Traseu si Regiune va parcurge "
  5011. "in Avans modurile de indoire</td>\n"
  5012. " </tr>\n"
  5013. " <tr height=\"20\">\n"
  5014. " <td height=\"20\">&nbsp;</td>\n"
  5015. " <td>&nbsp;</td>\n"
  5016. " </tr>\n"
  5017. " <tr height=\"20\">\n"
  5018. " <td height=\"20\"><strong>Del</strong></td>\n"
  5019. " <td>&nbsp;Stergere</td>\n"
  5020. " </tr>\n"
  5021. " <tr height=\"20\">\n"
  5022. " <td height=\"20\"><strong>Del</strong></td>\n"
  5023. " <td>&nbsp;Alternativ: Sterge aperturi</td>\n"
  5024. " </tr>\n"
  5025. " <tr height=\"20\">\n"
  5026. " <td height=\"20\">&nbsp;</td>\n"
  5027. " <td>&nbsp;</td>\n"
  5028. " </tr>\n"
  5029. " <tr height=\"20\">\n"
  5030. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5031. " <td>&nbsp;Renunță si revino la Unealta Selectie</"
  5032. "td>\n"
  5033. " </tr>\n"
  5034. " <tr height=\"20\">\n"
  5035. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5036. " <td>&nbsp;Inchide Editorul</td>\n"
  5037. " </tr>\n"
  5038. " <tr height=\"20\">\n"
  5039. " <td height=\"20\">&nbsp;</td>\n"
  5040. " <td>&nbsp;</td>\n"
  5041. " </tr>\n"
  5042. " <tr height=\"20\">\n"
  5043. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  5044. " <td>&nbsp;Unealta Transformare</td>\n"
  5045. " </tr>\n"
  5046. " </tbody>\n"
  5047. " </table>\n"
  5048. " "
  5049. #: flatcamGUI/FlatCAMGUI.py:1578
  5050. msgid "Toggle Panel"
  5051. msgstr "Comută Panel"
  5052. #: flatcamGUI/FlatCAMGUI.py:1581
  5053. msgid "New"
  5054. msgstr "Nou"
  5055. #: flatcamGUI/FlatCAMGUI.py:1582
  5056. msgid "Geometry"
  5057. msgstr "Geometrie"
  5058. #: flatcamGUI/FlatCAMGUI.py:1584
  5059. msgid "Excellon"
  5060. msgstr "Excellon"
  5061. #: flatcamGUI/FlatCAMGUI.py:1589
  5062. msgid "Grids"
  5063. msgstr "Grid-uri"
  5064. #: flatcamGUI/FlatCAMGUI.py:1591
  5065. msgid "View"
  5066. msgstr "Vizualizare"
  5067. #: flatcamGUI/FlatCAMGUI.py:1593
  5068. msgid "Clear Plot"
  5069. msgstr "Șterge Afișare"
  5070. #: flatcamGUI/FlatCAMGUI.py:1594
  5071. msgid "Replot"
  5072. msgstr "Reafișare"
  5073. #: flatcamGUI/FlatCAMGUI.py:1597
  5074. msgid "Geo Editor"
  5075. msgstr "Editor Geometrii"
  5076. #: flatcamGUI/FlatCAMGUI.py:1598
  5077. msgid "Line"
  5078. msgstr "Linie"
  5079. #: flatcamGUI/FlatCAMGUI.py:1599
  5080. msgid "Rectangle"
  5081. msgstr "Patrulater"
  5082. #: flatcamGUI/FlatCAMGUI.py:1600
  5083. msgid "Cut"
  5084. msgstr "Tăiere"
  5085. #: flatcamGUI/FlatCAMGUI.py:1605
  5086. msgid "Pad"
  5087. msgstr "Pad"
  5088. #: flatcamGUI/FlatCAMGUI.py:1606
  5089. msgid "Pad Array"
  5090. msgstr "Arie de paduri"
  5091. #: flatcamGUI/FlatCAMGUI.py:1607
  5092. msgid "Track"
  5093. msgstr "Traseu"
  5094. #: flatcamGUI/FlatCAMGUI.py:1608
  5095. msgid "Region"
  5096. msgstr "Regiune"
  5097. #: flatcamGUI/FlatCAMGUI.py:1610
  5098. msgid "Exc Editor"
  5099. msgstr "Editor EXC."
  5100. #: flatcamGUI/FlatCAMGUI.py:1611
  5101. msgid "Add Drill"
  5102. msgstr "Adaugă găurire"
  5103. #: flatcamGUI/FlatCAMGUI.py:1643
  5104. msgid "Print Preview"
  5105. msgstr "Preview tiparire"
  5106. #: flatcamGUI/FlatCAMGUI.py:1644
  5107. msgid "Print Code"
  5108. msgstr "Tipareste Cod"
  5109. #: flatcamGUI/FlatCAMGUI.py:1645
  5110. msgid "Find in Code"
  5111. msgstr "Cauta in Cod"
  5112. #: flatcamGUI/FlatCAMGUI.py:1650
  5113. msgid "Replace With"
  5114. msgstr "Inlocuieste cu"
  5115. #: flatcamGUI/FlatCAMGUI.py:1654
  5116. msgid "All"
  5117. msgstr "Toate"
  5118. #: flatcamGUI/FlatCAMGUI.py:1656
  5119. msgid ""
  5120. "When checked it will replace all instances in the 'Find' box\n"
  5121. "with the text in the 'Replace' box.."
  5122. msgstr ""
  5123. "Când este bifat, va inlocui toate cuvintele gasite conform ce este in "
  5124. "'Cauta'\n"
  5125. "cu textul din casuta 'Inlocuieste'"
  5126. #: flatcamGUI/FlatCAMGUI.py:1659
  5127. msgid "Open Code"
  5128. msgstr "Deschide Cod"
  5129. #: flatcamGUI/FlatCAMGUI.py:1660
  5130. msgid "Save Code"
  5131. msgstr "Salvează Cod"
  5132. #: flatcamGUI/FlatCAMGUI.py:1695
  5133. msgid ""
  5134. "Relative neasurement.\n"
  5135. "Reference is last click position"
  5136. msgstr ""
  5137. "Masuratoare relativa.\n"
  5138. "Referința este poziţia ultimului click pe canvas."
  5139. #: flatcamGUI/FlatCAMGUI.py:1701
  5140. msgid ""
  5141. "Absolute neasurement.\n"
  5142. "Reference is (X=0, Y= 0) position"
  5143. msgstr ""
  5144. "Masuratoare absoluta.\n"
  5145. "Referința este originea (0, 0)."
  5146. #: flatcamGUI/FlatCAMGUI.py:1897
  5147. msgid "Select 'Esc'"
  5148. msgstr "Select"
  5149. #: flatcamGUI/FlatCAMGUI.py:1924
  5150. msgid "Copy Objects"
  5151. msgstr "Copiază Obiecte"
  5152. #: flatcamGUI/FlatCAMGUI.py:1926
  5153. msgid "Delete Shape"
  5154. msgstr "Șterge forme geo"
  5155. #: flatcamGUI/FlatCAMGUI.py:1931
  5156. msgid "Move Objects"
  5157. msgstr "Muta Obiecte"
  5158. #: flatcamGUI/FlatCAMGUI.py:2360
  5159. msgid ""
  5160. "Please first select a geometry item to be cutted\n"
  5161. "then select the geometry item that will be cutted\n"
  5162. "out of the first item. In the end press ~X~ key or\n"
  5163. "the toolbar button."
  5164. msgstr ""
  5165. "Mai intai selectează o forma geometrică care trebuie taiata\n"
  5166. "apoi selectează forma geo. taietoare. La final apasa tasta ~X~ sau\n"
  5167. "butonul corespunzator din Toolbar."
  5168. #: flatcamGUI/FlatCAMGUI.py:2367 flatcamGUI/FlatCAMGUI.py:2504
  5169. #: flatcamGUI/FlatCAMGUI.py:2563 flatcamGUI/FlatCAMGUI.py:2583
  5170. msgid "Warning"
  5171. msgstr "Atenţie"
  5172. #: flatcamGUI/FlatCAMGUI.py:2434 flatcamGUI/FlatCAMGUI.py:2633
  5173. #: flatcamGUI/FlatCAMGUI.py:2844
  5174. msgid "[WARNING_NOTCL] Cancelled."
  5175. msgstr "[WARNING_NOTCL] Anulat."
  5176. #: flatcamGUI/FlatCAMGUI.py:2499
  5177. msgid ""
  5178. "Please select geometry items \n"
  5179. "on which to perform Intersection Tool."
  5180. msgstr ""
  5181. "Selectează forma geometrică asupra careia să se\n"
  5182. "aplice Unealta Intersecţie."
  5183. #: flatcamGUI/FlatCAMGUI.py:2558
  5184. msgid ""
  5185. "Please select geometry items \n"
  5186. "on which to perform Substraction Tool."
  5187. msgstr ""
  5188. "Selectează forma geometrică asupra careia să se\n"
  5189. "aplice Unealta Substracţie."
  5190. #: flatcamGUI/FlatCAMGUI.py:2578
  5191. msgid ""
  5192. "Please select geometry items \n"
  5193. "on which to perform union."
  5194. msgstr ""
  5195. "Selectează forma geometrică asupra careia să se\n"
  5196. "aplice Unealta Uniune."
  5197. #: flatcamGUI/FlatCAMGUI.py:2649 flatcamGUI/FlatCAMGUI.py:2861
  5198. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  5199. msgstr "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentru ștergere."
  5200. #: flatcamGUI/FlatCAMGUI.py:2733 flatcamGUI/FlatCAMGUI.py:2928
  5201. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  5202. msgstr "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentru copiere."
  5203. #: flatcamGUI/FlatCAMGUI.py:2779 flatcamGUI/FlatCAMGUI.py:2974
  5204. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  5205. msgstr "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentru mutare."
  5206. #: flatcamGUI/FlatCAMGUI.py:2988
  5207. msgid "New Tool ..."
  5208. msgstr "O noua Unealtă ..."
  5209. #: flatcamGUI/FlatCAMGUI.py:2989
  5210. msgid "Enter a Tool Diameter:"
  5211. msgstr "Introdu un Diametru de Unealtă:"
  5212. #: flatcamGUI/FlatCAMGUI.py:3032
  5213. msgid "Measurement Tool exit..."
  5214. msgstr "Măsurătoarea s-a terminat ..."
  5215. #: flatcamGUI/FlatCAMGUI.py:3323
  5216. msgid "GUI Preferences"
  5217. msgstr "Preferințe GUI"
  5218. #: flatcamGUI/FlatCAMGUI.py:3329
  5219. msgid "Grid X value:"
  5220. msgstr "Valoarea Grid_X:"
  5221. #: flatcamGUI/FlatCAMGUI.py:3331
  5222. msgid "This is the Grid snap value on X axis."
  5223. msgstr "Aceasta este valoare pentru lipire pe Grid pe axa X."
  5224. #: flatcamGUI/FlatCAMGUI.py:3336
  5225. msgid "Grid Y value:"
  5226. msgstr "Valoarea Grid_Y:"
  5227. #: flatcamGUI/FlatCAMGUI.py:3338
  5228. msgid "This is the Grid snap value on Y axis."
  5229. msgstr "Aceasta este valoare pentru lipire pe Grid pe axa Y."
  5230. #: flatcamGUI/FlatCAMGUI.py:3343
  5231. msgid "Snap Max:"
  5232. msgstr "Lipire Max:"
  5233. #: flatcamGUI/FlatCAMGUI.py:3348
  5234. msgid "Workspace:"
  5235. msgstr "Spatiu de lucru:"
  5236. #: flatcamGUI/FlatCAMGUI.py:3350
  5237. msgid ""
  5238. "Draw a delimiting rectangle on canvas.\n"
  5239. "The purpose is to illustrate the limits for our work."
  5240. msgstr ""
  5241. "Desenează un patrulater care delimitează o asuprafata de lucru.\n"
  5242. "Scopul este de a ilustra limitele suprafetei noastre de lucru."
  5243. #: flatcamGUI/FlatCAMGUI.py:3353
  5244. msgid "Wk. format:"
  5245. msgstr "Format SL:"
  5246. #: flatcamGUI/FlatCAMGUI.py:3355
  5247. msgid ""
  5248. "Select the type of rectangle to be used on canvas,\n"
  5249. "as valid workspace."
  5250. msgstr ""
  5251. "Selectează tipul de patrulater care va fi desenat pe canvas,\n"
  5252. "pentru a delimita suprafata de lucru disponibila (SL)."
  5253. #: flatcamGUI/FlatCAMGUI.py:3368
  5254. msgid "Plot Fill:"
  5255. msgstr "Culoare Afișare:"
  5256. #: flatcamGUI/FlatCAMGUI.py:3370
  5257. msgid ""
  5258. "Set the fill color for plotted objects.\n"
  5259. "First 6 digits are the color and the last 2\n"
  5260. "digits are for alpha (transparency) level."
  5261. msgstr ""
  5262. "Setează culoarea pentru obiectele afisate.\n"
  5263. "Primii 6 digiti sunt culoarea efectiva și ultimii\n"
  5264. "doi sunt pentru nivelul de transparenţă (alfa)."
  5265. #: flatcamGUI/FlatCAMGUI.py:3384 flatcamGUI/FlatCAMGUI.py:3434
  5266. #: flatcamGUI/FlatCAMGUI.py:3484
  5267. msgid "Alpha Level:"
  5268. msgstr "Nivel Alfa:"
  5269. #: flatcamGUI/FlatCAMGUI.py:3386
  5270. msgid "Set the fill transparency for plotted objects."
  5271. msgstr "Setează nivelul de transparenţa pentru obiectele afisate."
  5272. #: flatcamGUI/FlatCAMGUI.py:3403
  5273. msgid "Plot Line:"
  5274. msgstr "Culoare contur:"
  5275. #: flatcamGUI/FlatCAMGUI.py:3405
  5276. msgid "Set the line color for plotted objects."
  5277. msgstr "Setează culoarea conturului."
  5278. #: flatcamGUI/FlatCAMGUI.py:3417
  5279. msgid "Sel. Fill:"
  5280. msgstr "Culoare Selecţie:"
  5281. #: flatcamGUI/FlatCAMGUI.py:3419
  5282. msgid ""
  5283. "Set the fill color for the selection box\n"
  5284. "in case that the selection is done from left to right.\n"
  5285. "First 6 digits are the color and the last 2\n"
  5286. "digits are for alpha (transparency) level."
  5287. msgstr ""
  5288. "Setează culoarea pentru forma de selectare in cazul\n"
  5289. "in care selectia se face de la stânga la dreapta.\n"
  5290. "Primii 6 digiti sunt culoarea efectiva și ultimii\n"
  5291. "doi sunt pentru nivelul de transparenţă (alfa)."
  5292. #: flatcamGUI/FlatCAMGUI.py:3436
  5293. msgid "Set the fill transparency for the 'left to right' selection box."
  5294. msgstr ""
  5295. "Setează transparenţa formei de selecţie când selectia\n"
  5296. "se face de la stânga la dreapta."
  5297. #: flatcamGUI/FlatCAMGUI.py:3453
  5298. msgid "Sel. Line:"
  5299. msgstr "Contur Selecţie:"
  5300. #: flatcamGUI/FlatCAMGUI.py:3455
  5301. msgid "Set the line color for the 'left to right' selection box."
  5302. msgstr ""
  5303. "Setează transparenţa conturului formei de selecţie\n"
  5304. "când selectia se face de la stânga la dreapta."
  5305. #: flatcamGUI/FlatCAMGUI.py:3467
  5306. msgid "Sel2. Fill:"
  5307. msgstr "Culoare Selecţie 2:"
  5308. #: flatcamGUI/FlatCAMGUI.py:3469
  5309. msgid ""
  5310. "Set the fill color for the selection box\n"
  5311. "in case that the selection is done from right to left.\n"
  5312. "First 6 digits are the color and the last 2\n"
  5313. "digits are for alpha (transparency) level."
  5314. msgstr ""
  5315. "Setează culoarea pentru forma de selectare in cazul\n"
  5316. "in care selectia se face de la dreapta la stânga.\n"
  5317. "Primii 6 digiti sunt culoarea efectiva și ultimii\n"
  5318. "doi sunt pentru nivelul de transparenţă (alfa)."
  5319. #: flatcamGUI/FlatCAMGUI.py:3486
  5320. msgid "Set the fill transparency for selection 'right to left' box."
  5321. msgstr ""
  5322. "Setează transparenţa formei de selecţie când selectia\n"
  5323. "se face de la dreapta la stânga."
  5324. #: flatcamGUI/FlatCAMGUI.py:3503
  5325. msgid "Sel2. Line:"
  5326. msgstr "Contur Selecţie 2:"
  5327. #: flatcamGUI/FlatCAMGUI.py:3505
  5328. msgid "Set the line color for the 'right to left' selection box."
  5329. msgstr ""
  5330. "Setează transparenţa conturului formei de selecţie\n"
  5331. "când selectia se face de la dreapta la stânga."
  5332. #: flatcamGUI/FlatCAMGUI.py:3517
  5333. msgid "Editor Draw:"
  5334. msgstr "Desen Editor:"
  5335. #: flatcamGUI/FlatCAMGUI.py:3519
  5336. msgid "Set the color for the shape."
  5337. msgstr "Setează culoarea pentru forma geometrică din Editor."
  5338. #: flatcamGUI/FlatCAMGUI.py:3531
  5339. msgid "Editor Draw Sel.:"
  5340. msgstr "Sel. Desen Editor:"
  5341. #: flatcamGUI/FlatCAMGUI.py:3533
  5342. msgid "Set the color of the shape when selected."
  5343. msgstr ""
  5344. "Setează culoarea formei geometrice in Editor\n"
  5345. "când se face o selecţie."
  5346. #: flatcamGUI/FlatCAMGUI.py:3545
  5347. msgid "Project Items:"
  5348. msgstr "Elemente Proiect:"
  5349. #: flatcamGUI/FlatCAMGUI.py:3547
  5350. msgid "Set the color of the items in Project Tab Tree."
  5351. msgstr "Setează culoarea elementelor din tab-ul Proiect."
  5352. #: flatcamGUI/FlatCAMGUI.py:3558
  5353. msgid "Proj. Dis. Items:"
  5354. msgstr "Elem. proj. dez."
  5355. #: flatcamGUI/FlatCAMGUI.py:3560
  5356. msgid ""
  5357. "Set the color of the items in Project Tab Tree,\n"
  5358. "for the case when the items are disabled."
  5359. msgstr ""
  5360. "Setează culoarea elementelor din tab-ul Proiect\n"
  5361. "in cazul in care elementele sunt dezactivate."
  5362. #: flatcamGUI/FlatCAMGUI.py:3611
  5363. msgid "GUI Settings"
  5364. msgstr "Setări GUI"
  5365. #: flatcamGUI/FlatCAMGUI.py:3617
  5366. msgid "Layout:"
  5367. msgstr "Amplasare:"
  5368. #: flatcamGUI/FlatCAMGUI.py:3619
  5369. msgid ""
  5370. "Select an layout for FlatCAM.\n"
  5371. "It is applied immediately."
  5372. msgstr ""
  5373. "Selectează un stil de amplasare a elementelor GUI in FlatCAM.\n"
  5374. "Se aplica imediat."
  5375. #: flatcamGUI/FlatCAMGUI.py:3635
  5376. msgid "Style:"
  5377. msgstr "Stil:"
  5378. #: flatcamGUI/FlatCAMGUI.py:3637
  5379. msgid ""
  5380. "Select an style for FlatCAM.\n"
  5381. "It will be applied at the next app start."
  5382. msgstr ""
  5383. "Selectează un stil pentru FlatCAM.\n"
  5384. "Se va aplica la urmatoarea pornire a aplicaţiei."
  5385. #: flatcamGUI/FlatCAMGUI.py:3648
  5386. msgid "HDPI Support:"
  5387. msgstr "Suport H-DPI:"
  5388. #: flatcamGUI/FlatCAMGUI.py:3650
  5389. msgid ""
  5390. "Enable High DPI support for FlatCAM.\n"
  5391. "It will be applied at the next app start."
  5392. msgstr ""
  5393. "Activează capabilitatea de DPI cu valoare mare.\n"
  5394. "Util pentru monitoarele 4k.\n"
  5395. "Va fi aplicată la următoarea pornire a aplicaţiei."
  5396. #: flatcamGUI/FlatCAMGUI.py:3663
  5397. msgid "Clear GUI Settings:"
  5398. msgstr "Șterge setările GUI:"
  5399. #: flatcamGUI/FlatCAMGUI.py:3665
  5400. msgid ""
  5401. "Clear the GUI settings for FlatCAM,\n"
  5402. "such as: layout, gui state, style, hdpi support etc."
  5403. msgstr ""
  5404. "Șterge setările GUI pentru FlatCAM,\n"
  5405. "cum ar fi: amplasare, stare UI, suport HDPI sau traducerea."
  5406. #: flatcamGUI/FlatCAMGUI.py:3668
  5407. msgid "Clear"
  5408. msgstr "Șterge"
  5409. #: flatcamGUI/FlatCAMGUI.py:3672
  5410. msgid "Hover Shape:"
  5411. msgstr "Forma Hover:"
  5412. #: flatcamGUI/FlatCAMGUI.py:3674
  5413. msgid ""
  5414. "Enable display of a hover shape for FlatCAM objects.\n"
  5415. "It is displayed whenever the mouse cursor is hovering\n"
  5416. "over any kind of not-selected object."
  5417. msgstr ""
  5418. "Activează o forma când se tine mouse-ul deasupra unui obiect\n"
  5419. "in canvas-ul FlatCAM. Forma este afișată doar daca obiectul \n"
  5420. "nu este selectat."
  5421. #: flatcamGUI/FlatCAMGUI.py:3681
  5422. msgid "Sel. Shape:"
  5423. msgstr "Forma Sel.:"
  5424. #: flatcamGUI/FlatCAMGUI.py:3683
  5425. msgid ""
  5426. "Enable the display of a selection shape for FlatCAM objects.\n"
  5427. "It is displayed whenever the mouse selects an object\n"
  5428. "either by clicking or dragging mouse from left to right or\n"
  5429. "right to left."
  5430. msgstr ""
  5431. "Activează o formă de selectie pt obiectele FlatCAM.\n"
  5432. "Se afisează când mouse-ul selectează un obiect\n"
  5433. "pe canvas-ul FlatCAM fie facând click pe obiect fie prin\n"
  5434. "crearea unei ferestre de selectie."
  5435. #: flatcamGUI/FlatCAMGUI.py:3725
  5436. msgid "Are you sure you want to delete the GUI Settings? \n"
  5437. msgstr "Esti sigur că dorești să ștergi setările GUI?\n"
  5438. #: flatcamGUI/FlatCAMGUI.py:3728
  5439. msgid "Clear GUI Settings"
  5440. msgstr "Șterge Setările GUI"
  5441. #: flatcamGUI/FlatCAMGUI.py:3749
  5442. msgid "App Preferences"
  5443. msgstr "Preferințele Aplicaţie"
  5444. #: flatcamGUI/FlatCAMGUI.py:3755
  5445. msgid "<b>Units:</b>"
  5446. msgstr "<b>Unitati:</b>"
  5447. #: flatcamGUI/FlatCAMGUI.py:3756
  5448. msgid ""
  5449. "The default value for FlatCAM units.\n"
  5450. "Whatever is selected here is set every time\n"
  5451. "FLatCAM is started."
  5452. msgstr ""
  5453. "Unitatea de masura pt FlatCAM.\n"
  5454. "Este setată la fiecare pornire a programului."
  5455. #: flatcamGUI/FlatCAMGUI.py:3763
  5456. msgid "<b>APP. LEVEL:</b>"
  5457. msgstr "<b>Nivel aplic.:</b>"
  5458. #: flatcamGUI/FlatCAMGUI.py:3764
  5459. msgid ""
  5460. "Choose the default level of usage for FlatCAM.\n"
  5461. "BASIC level -> reduced functionality, best for beginner's.\n"
  5462. "ADVANCED level -> full functionality.\n"
  5463. "\n"
  5464. "The choice here will influence the parameters in\n"
  5465. "the Selected Tab for all kinds of FlatCAM objects."
  5466. msgstr ""
  5467. "Nivelul default de utilizare pt FlatCAM.\n"
  5468. "Nivel BAZA -> functionalitate simplificata, potrivit pt incepatori\n"
  5469. "Nivel AVANSAT -> functionalitate completa.\n"
  5470. "\n"
  5471. "Alegerea efectuata aici va influenta ce aparamtri sunt disponibili\n"
  5472. "in Tab-ul SELECTAT dar și in alte parti ale FlatCAM."
  5473. #: flatcamGUI/FlatCAMGUI.py:3769
  5474. msgid "Basic"
  5475. msgstr "Baza"
  5476. #: flatcamGUI/FlatCAMGUI.py:3770
  5477. msgid "Advanced"
  5478. msgstr "Avansat"
  5479. #: flatcamGUI/FlatCAMGUI.py:3773
  5480. msgid "<b>Languages:</b>"
  5481. msgstr "<b>Traduceri:</b>"
  5482. #: flatcamGUI/FlatCAMGUI.py:3774
  5483. msgid "Set the language used throughout FlatCAM."
  5484. msgstr "Setează limba folosita pentru textele din FlatCAM."
  5485. #: flatcamGUI/FlatCAMGUI.py:3777
  5486. msgid "Apply Language"
  5487. msgstr "Aplica Traducere"
  5488. #: flatcamGUI/FlatCAMGUI.py:3778
  5489. msgid ""
  5490. "Set the language used throughout FlatCAM.\n"
  5491. "The app will restart after click.Windows: When FlatCAM is installed in "
  5492. "Program Files\n"
  5493. "directory, it is possible that the app will not\n"
  5494. "restart after the button is clicked due of Windows\n"
  5495. "security features. In this case the language will be\n"
  5496. "applied at the next app start."
  5497. msgstr ""
  5498. "Seteaza limba folosita in FlatCAM.\n"
  5499. "Aplicatia se va restarta după click.\n"
  5500. "Windows: cand FlatCAM este instalat in directorul\n"
  5501. "Program Files este posibil ca aplicatia să nu se restarteze\n"
  5502. "după click datorită unor setări de securitate ale Windows. "
  5503. #: flatcamGUI/FlatCAMGUI.py:3787
  5504. msgid "Shell at StartUp:"
  5505. msgstr "Shell la pornire:"
  5506. #: flatcamGUI/FlatCAMGUI.py:3789 flatcamGUI/FlatCAMGUI.py:3794
  5507. msgid ""
  5508. "Check this box if you want the shell to\n"
  5509. "start automatically at startup."
  5510. msgstr ""
  5511. "Bifează in cazul in care se dorește pornirea\n"
  5512. "automata a ferestrei Shell (linia de comanda)\n"
  5513. "la initializarea aplicaţiei."
  5514. #: flatcamGUI/FlatCAMGUI.py:3799
  5515. msgid "Version Check:"
  5516. msgstr "Verificare versiune:"
  5517. #: flatcamGUI/FlatCAMGUI.py:3801 flatcamGUI/FlatCAMGUI.py:3806
  5518. msgid ""
  5519. "Check this box if you want to check\n"
  5520. "for a new version automatically at startup."
  5521. msgstr ""
  5522. "Bifează daca se dorește verificarea automata\n"
  5523. "daca exista o versiune mai noua,\n"
  5524. "la pornirea aplicaţiei."
  5525. #: flatcamGUI/FlatCAMGUI.py:3811
  5526. msgid "Send Stats:"
  5527. msgstr "Statistici:"
  5528. #: flatcamGUI/FlatCAMGUI.py:3813 flatcamGUI/FlatCAMGUI.py:3818
  5529. msgid ""
  5530. "Check this box if you agree to send anonymous\n"
  5531. "stats automatically at startup, to help improve FlatCAM."
  5532. msgstr ""
  5533. "Bifează daca esti de acord ca aplicaţia să trimita la pornire\n"
  5534. "un set de informatii cu privire la modul in care folosești\n"
  5535. "aplicaţia. In acest fel dezvoltatorii vor sti unde să se focalizeze\n"
  5536. "in crearea de inbunatatiri."
  5537. #: flatcamGUI/FlatCAMGUI.py:3825
  5538. msgid "<b>Pan Button:</b>"
  5539. msgstr "Buton Pan (mișcare):"
  5540. #: flatcamGUI/FlatCAMGUI.py:3826
  5541. msgid ""
  5542. "Select the mouse button to use for panning:\n"
  5543. "- MMB --> Middle Mouse Button\n"
  5544. "- RMB --> Right Mouse Button"
  5545. msgstr ""
  5546. "Selectează butonul folosit pentru 'mișcare':\n"
  5547. "- MMB - butonul din mijloc al mouse-ului\n"
  5548. "- RMB - butonul in dreapta al mouse-ului."
  5549. #: flatcamGUI/FlatCAMGUI.py:3833
  5550. msgid "<b>Multiple Sel:</b>"
  5551. msgstr "<b>Sel. multipla:</b>"
  5552. #: flatcamGUI/FlatCAMGUI.py:3834
  5553. msgid "Select the key used for multiple selection."
  5554. msgstr "Selectează tasta folosita pentru selectia multipla."
  5555. #: flatcamGUI/FlatCAMGUI.py:3839
  5556. msgid "Project at StartUp:"
  5557. msgstr "Proiect la pornire:"
  5558. #: flatcamGUI/FlatCAMGUI.py:3841 flatcamGUI/FlatCAMGUI.py:3846
  5559. msgid ""
  5560. "Check this box if you want the project/selected/tool tab area to\n"
  5561. "to be shown automatically at startup."
  5562. msgstr ""
  5563. "Bifează aici daca dorești ca zona Notebook să fie\n"
  5564. "afișată automat la pornire."
  5565. #: flatcamGUI/FlatCAMGUI.py:3851
  5566. msgid "Project AutoHide:"
  5567. msgstr "Ascundere Proiect:"
  5568. #: flatcamGUI/FlatCAMGUI.py:3853 flatcamGUI/FlatCAMGUI.py:3859
  5569. msgid ""
  5570. "Check this box if you want the project/selected/tool tab area to\n"
  5571. "hide automatically when there are no objects loaded and\n"
  5572. "to show whenever a new object is created."
  5573. msgstr ""
  5574. "Bifează daca dorești ca zona Notebook să fie ascunsă automat\n"
  5575. "când nu sunt obiecte incărcate și să fie afișată automat\n"
  5576. "când un obiect nou este creat/incărcat."
  5577. #: flatcamGUI/FlatCAMGUI.py:3865
  5578. msgid "<b>Enable ToolTips:</b>"
  5579. msgstr "<b>Activează ToolTip-uri:</b>"
  5580. #: flatcamGUI/FlatCAMGUI.py:3867 flatcamGUI/FlatCAMGUI.py:3872
  5581. msgid ""
  5582. "Check this box if you want to have toolTips displayed\n"
  5583. "when hovering with mouse over items throughout the App."
  5584. msgstr ""
  5585. "Bifează daca dorești ca să fie afisate texte explicative când se\n"
  5586. "tine mouse-ul deasupra diverselor texte din FlatCAM."
  5587. #: flatcamGUI/FlatCAMGUI.py:3875
  5588. msgid "Workers number:"
  5589. msgstr "Număr de worker's:"
  5590. #: flatcamGUI/FlatCAMGUI.py:3877 flatcamGUI/FlatCAMGUI.py:3886
  5591. msgid ""
  5592. "The number of Qthreads made available to the App.\n"
  5593. "A bigger number may finish the jobs more quickly but\n"
  5594. "depending on your computer speed, may make the App\n"
  5595. "unresponsive. Can have a value between 2 and 16.\n"
  5596. "Default value is 2.\n"
  5597. "After change, it will be applied at next App start."
  5598. msgstr ""
  5599. "Număarul de QThread-uri care sunt disponibile pt aplicatie.\n"
  5600. "Un număr mai mare va permite terminarea operatiilor mai rapida\n"
  5601. "dar in functie de cat de rapid este calculatorul, poate face ca aplicatia\n"
  5602. "sa devina temporar blocată. Poate lua o valoare intre 2 si 16.\n"
  5603. "Valoarea standard este 2.\n"
  5604. "Dupa schimbarea valoarii, se va aplica la următoarea pornire a aplicatiei."
  5605. #: flatcamGUI/FlatCAMGUI.py:3898 flatcamGUI/FlatCAMGUI.py:3907
  5606. msgid ""
  5607. "This value can counter the effect of the Circle Steps\n"
  5608. "parameter. Default value is 0.01.\n"
  5609. "A lower value will increase the detail both in image\n"
  5610. "and in Gcode for the circles, with a higher cost in\n"
  5611. "performance. Higher value will provide more\n"
  5612. "performance at the expense of level of detail."
  5613. msgstr ""
  5614. "Această valoare afectează efectul prametrului Pasi Cerc.\n"
  5615. "Valoarea default este 0.01.\n"
  5616. "O valoare mai mică va creste detaliile atat in imagine cat si\n"
  5617. "in GCode pentru cercuri dar cu pretul unei scăderi in performantă.\n"
  5618. "O valoare mai mare va oferi mai multă performantă dar in\n"
  5619. "defavoarea nievelului de detalii."
  5620. #: flatcamGUI/FlatCAMGUI.py:3943
  5621. msgid "\"Open\" behavior"
  5622. msgstr "Stil \"Încarcare\""
  5623. #: flatcamGUI/FlatCAMGUI.py:3945
  5624. msgid ""
  5625. "When checked the path for the last saved file is used when saving files,\n"
  5626. "and the path for the last opened file is used when opening files.\n"
  5627. "\n"
  5628. "When unchecked the path for opening files is the one used last: either the\n"
  5629. "path for saving files or the path for opening files."
  5630. msgstr ""
  5631. "Cand este bifat, calea de salvare a ultimului fiser salvat este folosită "
  5632. "cand se \n"
  5633. "salvează fisiere si calea de deschidere pt ultimul fisier este folosită cand "
  5634. "se \n"
  5635. "deschide fisiere.\n"
  5636. "\n"
  5637. "Cand este debifat, calea de deshidere pt ultimul fisier este folosită pt "
  5638. "ambele \n"
  5639. "cazuri: fie că se deschide un fisier, fie că se salvează un fisier."
  5640. #: flatcamGUI/FlatCAMGUI.py:3954
  5641. msgid "Save Compressed Project"
  5642. msgstr "Salvează Proiectul comprimat"
  5643. #: flatcamGUI/FlatCAMGUI.py:3956
  5644. msgid ""
  5645. "Whether to save a compressed or uncompressed project.\n"
  5646. "When checked it will save a compressed FlatCAM project."
  5647. msgstr ""
  5648. "Daca să se salveze proiectul in mod arhivat.\n"
  5649. "Când este bifat aici, se va salva o arhiva a proiectului\n"
  5650. "lucru care poate reduce dimensiunea semnificativ."
  5651. #: flatcamGUI/FlatCAMGUI.py:3967
  5652. msgid "Compression Level:"
  5653. msgstr "Nivel compresie:"
  5654. #: flatcamGUI/FlatCAMGUI.py:3969
  5655. msgid ""
  5656. "The level of compression used when saving\n"
  5657. "a FlatCAM project. Higher value means better compression\n"
  5658. "but require more RAM usage and more processing time."
  5659. msgstr ""
  5660. "Nivelul de compresie folosit când se salvează un proiect FlatCAM.\n"
  5661. "Valorile posibile sunt [0 ... 9]. Valoarea 0 inseamna compresie minimala\n"
  5662. "dar cu consum redus de resurse in timp ce valoarea 9 cere multa memorie RAM\n"
  5663. "și in plus, durează semnificativ mai mult."
  5664. #: flatcamGUI/FlatCAMGUI.py:3992
  5665. msgid "Gerber General"
  5666. msgstr "Gerber General"
  5667. #: flatcamGUI/FlatCAMGUI.py:3995 flatcamGUI/FlatCAMGUI.py:4361
  5668. #: flatcamGUI/FlatCAMGUI.py:5153 flatcamGUI/FlatCAMGUI.py:5525
  5669. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:505
  5670. #: flatcamGUI/ObjectUI.py:833 flatcamGUI/ObjectUI.py:1350
  5671. msgid "<b>Plot Options:</b>"
  5672. msgstr "Opțiuni afișare:"
  5673. #: flatcamGUI/FlatCAMGUI.py:4002 flatcamGUI/FlatCAMGUI.py:4373
  5674. #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:506
  5675. msgid "Solid"
  5676. msgstr "Solid"
  5677. #: flatcamGUI/FlatCAMGUI.py:4004 flatcamGUI/ObjectUI.py:158
  5678. msgid "Solid color polygons."
  5679. msgstr "Poligoane color solide."
  5680. #: flatcamGUI/FlatCAMGUI.py:4009 flatcamGUI/ObjectUI.py:164
  5681. msgid "M-Color"
  5682. msgstr "M-Color"
  5683. #: flatcamGUI/FlatCAMGUI.py:4011 flatcamGUI/ObjectUI.py:166
  5684. msgid "Draw polygons in different colors."
  5685. msgstr ""
  5686. "Desenează poligoanele Gerber din multiple culori\n"
  5687. "alese in mod aleator."
  5688. #: flatcamGUI/FlatCAMGUI.py:4016 flatcamGUI/FlatCAMGUI.py:4367
  5689. #: flatcamGUI/FlatCAMGUI.py:5157 flatcamGUI/ObjectUI.py:172
  5690. msgid "Plot"
  5691. msgstr "Afisează"
  5692. #: flatcamGUI/FlatCAMGUI.py:4018 flatcamGUI/FlatCAMGUI.py:5159
  5693. #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:546
  5694. #: flatcamGUI/ObjectUI.py:879 flatcamGUI/ObjectUI.py:1450
  5695. msgid "Plot (show) this object."
  5696. msgstr "Afisează (arata) acest obiect."
  5697. #: flatcamGUI/FlatCAMGUI.py:4023 flatcamGUI/FlatCAMGUI.py:5166
  5698. #: flatcamGUI/FlatCAMGUI.py:5608
  5699. msgid "Circle Steps:"
  5700. msgstr "Aprox. Cerc"
  5701. #: flatcamGUI/FlatCAMGUI.py:4025
  5702. msgid ""
  5703. "The number of circle steps for Gerber \n"
  5704. "circular aperture linear approximation."
  5705. msgstr ""
  5706. "Numărul de segmente utilizate pentru\n"
  5707. "aproximarea lineara a aperturilor Gerber circulare."
  5708. #: flatcamGUI/FlatCAMGUI.py:4040
  5709. msgid "Gerber Options"
  5710. msgstr "Opțiuni Gerber"
  5711. #: flatcamGUI/FlatCAMGUI.py:4043 flatcamGUI/ObjectUI.py:251
  5712. msgid "<b>Isolation Routing:</b>"
  5713. msgstr "<b>Izolare:</b>"
  5714. #: flatcamGUI/FlatCAMGUI.py:4045 flatcamGUI/ObjectUI.py:253
  5715. msgid ""
  5716. "Create a Geometry object with\n"
  5717. "toolpaths to cut outside polygons."
  5718. msgstr ""
  5719. "Crează un obiect tip Geometrie cu trasee\n"
  5720. "care să fie taiate in afara poligoanelor,\n"
  5721. "urmărindu-le conturul."
  5722. #: flatcamGUI/FlatCAMGUI.py:4056 flatcamGUI/FlatCAMGUI.py:4753
  5723. #: flatcamGUI/FlatCAMGUI.py:5897 flatcamGUI/ObjectUI.py:788
  5724. #: flatcamGUI/ObjectUI.py:804
  5725. msgid "Diameter of the cutting tool."
  5726. msgstr "Diametrul uneltei taietoare."
  5727. #: flatcamGUI/FlatCAMGUI.py:4063
  5728. msgid "Width (# passes):"
  5729. msgstr "Latime(# treceri):"
  5730. #: flatcamGUI/FlatCAMGUI.py:4065 flatcamGUI/ObjectUI.py:275
  5731. msgid ""
  5732. "Width of the isolation gap in\n"
  5733. "number (integer) of tool widths."
  5734. msgstr ""
  5735. "Lăţimea spatiului de izolare\n"
  5736. "in număr intreg de grosimi ale uneltei."
  5737. #: flatcamGUI/FlatCAMGUI.py:4073 flatcamGUI/ObjectUI.py:283
  5738. msgid "Pass overlap:"
  5739. msgstr "Suprapunere:"
  5740. #: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/ObjectUI.py:285
  5741. #, python-format
  5742. msgid ""
  5743. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5744. "Example:\n"
  5745. "A value here of 0.25 means an overlap of 25% from the tool diameter found "
  5746. "above."
  5747. msgstr ""
  5748. "Cat de mult (in fractii ale diametrului uneltei) să se suprapună trecerea "
  5749. "curentă\n"
  5750. "peste cea anterioară. \n"
  5751. "Exemplu:\n"
  5752. "O valoare de 0.25 reprezinta o suprapunere de 25%% din diametrul uneltei."
  5753. #: flatcamGUI/FlatCAMGUI.py:4083 flatcamGUI/ObjectUI.py:295
  5754. msgid "Milling Type:"
  5755. msgstr "Tip Frezare:"
  5756. #: flatcamGUI/FlatCAMGUI.py:4085 flatcamGUI/ObjectUI.py:297
  5757. msgid ""
  5758. "Milling type:\n"
  5759. "- climb / best for precision milling and to reduce tool usage\n"
  5760. "- conventional / useful when there is no backlash compensation"
  5761. msgstr ""
  5762. "Tipul de frezare:\n"
  5763. "- urcare -> potrivit pentru frezare de precizie și pt a reduce uzura "
  5764. "uneltei\n"
  5765. "- conventional -> pentru cazul când nu exista o compensare a 'backlash-ului'"
  5766. #: flatcamGUI/FlatCAMGUI.py:4095
  5767. msgid "Combine Passes"
  5768. msgstr "Combina"
  5769. #: flatcamGUI/FlatCAMGUI.py:4097 flatcamGUI/ObjectUI.py:309
  5770. msgid "Combine all passes into one object"
  5771. msgstr "Combina toate trecerile intr-un singur obiect"
  5772. #: flatcamGUI/FlatCAMGUI.py:4102
  5773. msgid "<b>Clear non-copper:</b>"
  5774. msgstr "<b>Curăță non-Cu:</b>"
  5775. #: flatcamGUI/FlatCAMGUI.py:4104 flatcamGUI/FlatCAMGUI.py:5785
  5776. #: flatcamGUI/ObjectUI.py:386
  5777. msgid ""
  5778. "Create a Geometry object with\n"
  5779. "toolpaths to cut all non-copper regions."
  5780. msgstr ""
  5781. "Crează un obiect tip Geometrie cu traiectorii unealtă\n"
  5782. "care să curete de cupru toate zonele unde se dorește să nu \n"
  5783. "fie cupru."
  5784. #: flatcamGUI/FlatCAMGUI.py:4113 flatcamGUI/FlatCAMGUI.py:4139
  5785. #: flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464
  5786. msgid "Boundary Margin:"
  5787. msgstr "Margine:"
  5788. #: flatcamGUI/FlatCAMGUI.py:4115 flatcamGUI/ObjectUI.py:432
  5789. msgid ""
  5790. "Specify the edge of the PCB\n"
  5791. "by drawing a box around all\n"
  5792. "objects with this minimum\n"
  5793. "distance."
  5794. msgstr ""
  5795. "Specificati marginea PCB-ului prin desenarea\n"
  5796. "unei forme patratice de jur imprejurul la toate obiectele\n"
  5797. "la o distanţa minima cu valoarea din acest câmp."
  5798. #: flatcamGUI/FlatCAMGUI.py:4125 flatcamGUI/FlatCAMGUI.py:4148
  5799. msgid "Rounded corners"
  5800. msgstr "C. rotunjite"
  5801. #: flatcamGUI/FlatCAMGUI.py:4127
  5802. msgid ""
  5803. "Creates a Geometry objects with polygons\n"
  5804. "covering the copper-free areas of the PCB."
  5805. msgstr ""
  5806. "Crează un obiect tip Geometrie conținând poligoane\n"
  5807. "care acopera toate suprafetele libere de cupru ale PCB-ului."
  5808. #: flatcamGUI/FlatCAMGUI.py:4133 flatcamGUI/ObjectUI.py:454
  5809. msgid "<b>Bounding Box:</b>"
  5810. msgstr "<b>Forma înconjurătoare::</b>"
  5811. #: flatcamGUI/FlatCAMGUI.py:4141 flatcamGUI/ObjectUI.py:466
  5812. msgid ""
  5813. "Distance of the edges of the box\n"
  5814. "to the nearest polygon."
  5815. msgstr ""
  5816. "Distanta de la marginile formei înconjurătoare\n"
  5817. "pana la cel mai apropiat poligon."
  5818. #: flatcamGUI/FlatCAMGUI.py:4150 flatcamGUI/ObjectUI.py:476
  5819. msgid ""
  5820. "If the bounding box is \n"
  5821. "to have rounded corners\n"
  5822. "their radius is equal to\n"
  5823. "the margin."
  5824. msgstr ""
  5825. "Daca forma înconjurătoare să aibă colțuri rotunjite.\n"
  5826. "Raza acesor colțuri va fi egală cu parametrul Margine."
  5827. #: flatcamGUI/FlatCAMGUI.py:4164
  5828. msgid "Gerber Adv. Options"
  5829. msgstr "Opțiuni Av. Gerber"
  5830. #: flatcamGUI/FlatCAMGUI.py:4167
  5831. msgid "<b>Advanced Param.:</b>"
  5832. msgstr "<b>Param. avansati.:</b>"
  5833. #: flatcamGUI/FlatCAMGUI.py:4169
  5834. msgid ""
  5835. "A list of Gerber advanced parameters.\n"
  5836. "Those parameters are available only for\n"
  5837. "Advanced App. Level."
  5838. msgstr ""
  5839. "O lista de parametri Gerber avansati.\n"
  5840. "Acesti parametri sunt disponibili doar\n"
  5841. "când este selectat Nivelul Avansat pentru\n"
  5842. "aplicaţie in Preferințe - > General"
  5843. #: flatcamGUI/FlatCAMGUI.py:4179 flatcamGUI/ObjectUI.py:314
  5844. msgid "\"Follow\""
  5845. msgstr "\"Urmareste\""
  5846. #: flatcamGUI/FlatCAMGUI.py:4181 flatcamGUI/ObjectUI.py:316
  5847. msgid ""
  5848. "Generate a 'Follow' geometry.\n"
  5849. "This means that it will cut through\n"
  5850. "the middle of the trace."
  5851. msgstr ""
  5852. "Generează o geometrie de tip 'urmăritor'.\n"
  5853. "Mai exact, in loc să se genereze un poligon se va genera o 'linie'.\n"
  5854. "In acest fel se taie prin mijlocul unui traseu și nu in jurul lui."
  5855. #: flatcamGUI/FlatCAMGUI.py:4188
  5856. msgid "Table Show/Hide"
  5857. msgstr "Arata/Ascunde Tabela"
  5858. #: flatcamGUI/FlatCAMGUI.py:4190
  5859. msgid ""
  5860. "Toggle the display of the Gerber Apertures Table.\n"
  5861. "Also, on hide, it will delete all mark shapes\n"
  5862. "that are drawn on canvas."
  5863. msgstr ""
  5864. "Comută afișarea tabelei de aperturi Gerber.\n"
  5865. "când se ascunde aceasta, se vor șterge și toate\n"
  5866. "posibil afisatele marcaje ale aperturilor."
  5867. #: flatcamGUI/FlatCAMGUI.py:4229
  5868. msgid "Gerber Export"
  5869. msgstr "Export Gerber"
  5870. #: flatcamGUI/FlatCAMGUI.py:4232 flatcamGUI/FlatCAMGUI.py:4902
  5871. msgid "<b>Export Options:</b>"
  5872. msgstr "<b>Opțiuni Export::</b>"
  5873. #: flatcamGUI/FlatCAMGUI.py:4234
  5874. msgid ""
  5875. "The parameters set here are used in the file exported\n"
  5876. "when using the File -> Export -> Export Gerber menu entry."
  5877. msgstr ""
  5878. "Acesti parametri listati aici sunt folositi atunci când\n"
  5879. "se exporta un fişier Gerber folosind:\n"
  5880. "File -> Exportă -> Exportă Gerber"
  5881. #: flatcamGUI/FlatCAMGUI.py:4243 flatcamGUI/FlatCAMGUI.py:4913
  5882. msgid "<b>Units</b>:"
  5883. msgstr "<b>Unitati</b>:"
  5884. #: flatcamGUI/FlatCAMGUI.py:4245 flatcamGUI/FlatCAMGUI.py:4251
  5885. msgid "The units used in the Gerber file."
  5886. msgstr "Unitătile de măsură folosite in fişierul Gerber."
  5887. #: flatcamGUI/FlatCAMGUI.py:4257 flatcamGUI/FlatCAMGUI.py:4927
  5888. msgid "<b>Int/Decimals:</b>"
  5889. msgstr "<b>Int/Zecimale:</b>"
  5890. #: flatcamGUI/FlatCAMGUI.py:4259
  5891. msgid ""
  5892. "The number of digits in the whole part of the number\n"
  5893. "and in the fractional part of the number."
  5894. msgstr ""
  5895. "Acest număr reprezinta numărul de digiti din partea\n"
  5896. "intreagă si in partea fractională a numărului."
  5897. #: flatcamGUI/FlatCAMGUI.py:4270
  5898. msgid ""
  5899. "This numbers signify the number of digits in\n"
  5900. "the whole part of Gerber coordinates."
  5901. msgstr ""
  5902. "Acest număr reprezinta numărul de digiti din partea\n"
  5903. "intreagă a coordonatelor Gerber."
  5904. #: flatcamGUI/FlatCAMGUI.py:4284
  5905. msgid ""
  5906. "This numbers signify the number of digits in\n"
  5907. "the decimal part of Gerber coordinates."
  5908. msgstr ""
  5909. "Acest număr reprezinta numărul de digiti din partea\n"
  5910. "zecimală a coordonatelor Gerber."
  5911. #: flatcamGUI/FlatCAMGUI.py:4293 flatcamGUI/FlatCAMGUI.py:4988
  5912. msgid "<b>Zeros</b>:"
  5913. msgstr "<b>Zero-uri</b>:"
  5914. #: flatcamGUI/FlatCAMGUI.py:4296 flatcamGUI/FlatCAMGUI.py:4306
  5915. msgid ""
  5916. "This sets the type of Gerber zeros.\n"
  5917. "If LZ then Leading Zeros are removed and\n"
  5918. "Trailing Zeros are kept.\n"
  5919. "If TZ is checked then Trailing Zeros are removed\n"
  5920. "and Leading Zeros are kept."
  5921. msgstr ""
  5922. "Aici se setează tipul de suprimare a zerourilor,\n"
  5923. "in cazul unui fişier Gerber.\n"
  5924. "TZ = zerourile din fata numărului sunt păstrate și\n"
  5925. "cele de la final sunt indepărtate.\n"
  5926. "LZ = zerourile din fata numărului sunt indepărtate și\n"
  5927. "cele de la final sunt păstrate.\n"
  5928. "(Invers fată de fişierele Excellon)."
  5929. #: flatcamGUI/FlatCAMGUI.py:4326 flatcamGUI/FlatCAMGUI.py:5029
  5930. #: flatcamGUI/FlatCAMGUI.py:5491 flatcamGUI/FlatCAMGUI.py:5783
  5931. #: flatcamGUI/FlatCAMGUI.py:5884 flatcamGUI/FlatCAMGUI.py:5963
  5932. #: flatcamGUI/FlatCAMGUI.py:6022 flatcamGUI/FlatCAMGUI.py:6125
  5933. #: flatcamGUI/FlatCAMGUI.py:6186 flatcamGUI/FlatCAMGUI.py:6385
  5934. #: flatcamGUI/FlatCAMGUI.py:6512
  5935. msgid "<b>Parameters:</b>"
  5936. msgstr "<b>Parametri:</b>"
  5937. #: flatcamGUI/FlatCAMGUI.py:4328
  5938. msgid "A list of Gerber Editor parameters."
  5939. msgstr "O listă de parametri ai Editorului Gerber."
  5940. #: flatcamGUI/FlatCAMGUI.py:4336 flatcamGUI/FlatCAMGUI.py:5039
  5941. #: flatcamGUI/FlatCAMGUI.py:5501
  5942. msgid "Selection limit:"
  5943. msgstr "Limita selecţie:"
  5944. #: flatcamGUI/FlatCAMGUI.py:4338
  5945. msgid ""
  5946. "Set the number of selected Gerber geometry\n"
  5947. "items above which the utility geometry\n"
  5948. "becomes just a selection rectangle.\n"
  5949. "Increases the performance when moving a\n"
  5950. "large number of geometric elements."
  5951. msgstr ""
  5952. "Setează numărul de geometrii selectate peste care\n"
  5953. "geometria utilitară devine un simplu pătrat de selectie.\n"
  5954. "Creste performanta cand se mută un număr mai mare\n"
  5955. "de elemente geometrice."
  5956. #: flatcamGUI/FlatCAMGUI.py:4358
  5957. msgid "Excellon General"
  5958. msgstr "Excellon General"
  5959. #: flatcamGUI/FlatCAMGUI.py:4380
  5960. msgid "<b>Excellon Format:</b>"
  5961. msgstr "<b>Formatul Excellon</b>"
  5962. #: flatcamGUI/FlatCAMGUI.py:4382
  5963. msgid ""
  5964. "The NC drill files, usually named Excellon files\n"
  5965. "are files that can be found in different formats.\n"
  5966. "Here we set the format used when the provided\n"
  5967. "coordinates are not using period.\n"
  5968. "\n"
  5969. "Possible presets:\n"
  5970. "\n"
  5971. "PROTEUS 3:3 MM LZ\n"
  5972. "DipTrace 5:2 MM TZ\n"
  5973. "DipTrace 4:3 MM LZ\n"
  5974. "\n"
  5975. "EAGLE 3:3 MM TZ\n"
  5976. "EAGLE 4:3 MM TZ\n"
  5977. "EAGLE 2:5 INCH TZ\n"
  5978. "EAGLE 3:5 INCH TZ\n"
  5979. "\n"
  5980. "ALTIUM 2:4 INCH LZ\n"
  5981. "Sprint Layout 2:4 INCH LZ\n"
  5982. "KiCAD 3:5 INCH TZ"
  5983. msgstr ""
  5984. "Fişierele de găurire NC drills numite generic Excellon\n"
  5985. "sunt fişiere care nu respecta clar un format.\n"
  5986. "Fiecare companie și-a aplicat propria viziune aşa încât\n"
  5987. "s-a ajuns că nu se poate face o recunoaștere automata\n"
  5988. "a formatului Excellon in fiecare caz.\n"
  5989. "Aici putem seta manual ce format ne asteptăm să gasim,\n"
  5990. "când coordonatele nu sunt reprezentate cu\n"
  5991. "separator zecimal.\n"
  5992. "\n"
  5993. "Setări posibile:\n"
  5994. "\n"
  5995. "PROTEUS 3:3 MM LZ\n"
  5996. "DipTrace 5:2 MM TZ\n"
  5997. "DipTrace 4:3 MM LZ\n"
  5998. "\n"
  5999. "EAGLE 3:3 MM TZ\n"
  6000. "EAGLE 4:3 MM TZ\n"
  6001. "EAGLE 2:5 INCH TZ\n"
  6002. "EAGLE 3:5 INCH TZ\n"
  6003. "\n"
  6004. "ALTIUM 2:4 INCH LZ\n"
  6005. "Sprint Layout 2:4 INCH LZ\n"
  6006. "KiCAD 3:5 INCH TZ"
  6007. #: flatcamGUI/FlatCAMGUI.py:4407
  6008. msgid "INCH:"
  6009. msgstr "Inch"
  6010. #: flatcamGUI/FlatCAMGUI.py:4410
  6011. msgid "Default values for INCH are 2:4"
  6012. msgstr ""
  6013. "Valorile default pentru Inch sunt 2:4\n"
  6014. "adica 2 parti intregi și 4 zecimale."
  6015. #: flatcamGUI/FlatCAMGUI.py:4418 flatcamGUI/FlatCAMGUI.py:4451
  6016. #: flatcamGUI/FlatCAMGUI.py:4942
  6017. msgid ""
  6018. "This numbers signify the number of digits in\n"
  6019. "the whole part of Excellon coordinates."
  6020. msgstr ""
  6021. "Acest număr reprezinta numărul de digiti din partea\n"
  6022. "intreaga a coordonatelor Excellon."
  6023. #: flatcamGUI/FlatCAMGUI.py:4432 flatcamGUI/FlatCAMGUI.py:4465
  6024. #: flatcamGUI/FlatCAMGUI.py:4956
  6025. msgid ""
  6026. "This numbers signify the number of digits in\n"
  6027. "the decimal part of Excellon coordinates."
  6028. msgstr ""
  6029. "Acest număr reprezinta numărul de digiti din partea\n"
  6030. "zecimala a coordonatelor Excellon."
  6031. #: flatcamGUI/FlatCAMGUI.py:4440
  6032. msgid "METRIC:"
  6033. msgstr "Metric"
  6034. #: flatcamGUI/FlatCAMGUI.py:4443
  6035. msgid "Default values for METRIC are 3:3"
  6036. msgstr ""
  6037. "Valorile default pentru Metric sunt 3:3\n"
  6038. "adica 3 parti intregi și 3 zecimale."
  6039. #: flatcamGUI/FlatCAMGUI.py:4474
  6040. msgid "Default <b>Zeros</b>:"
  6041. msgstr "Suprimare <b>Zero</b>:"
  6042. #: flatcamGUI/FlatCAMGUI.py:4477 flatcamGUI/FlatCAMGUI.py:4991
  6043. msgid ""
  6044. "This sets the type of Excellon zeros.\n"
  6045. "If LZ then Leading Zeros are kept and\n"
  6046. "Trailing Zeros are removed.\n"
  6047. "If TZ is checked then Trailing Zeros are kept\n"
  6048. "and Leading Zeros are removed."
  6049. msgstr ""
  6050. "Aici se setează tipul de suprimare a zerourilor,\n"
  6051. "in cazul unui fişier Excellon.\n"
  6052. "LZ = zerourile din fata numărului sunt pastrate și\n"
  6053. "cele de la final sunt indepartate.\n"
  6054. "TZ = zerourile din fata numărului sunt indepartate și\n"
  6055. "cele de la final sunt pastrate.\n"
  6056. "(Invers fata de fişierele Gerber)."
  6057. #: flatcamGUI/FlatCAMGUI.py:4488
  6058. msgid ""
  6059. "This sets the default type of Excellon zeros.\n"
  6060. "If it is not detected in the parsed file the value here\n"
  6061. "will be used.If LZ then Leading Zeros are kept and\n"
  6062. "Trailing Zeros are removed.\n"
  6063. "If TZ is checked then Trailing Zeros are kept\n"
  6064. "and Leading Zeros are removed."
  6065. msgstr ""
  6066. "Aici se setează tipul de suprimare a zerourilor,\n"
  6067. "in cazul unui fişier Excellon.\n"
  6068. "Daca nu se poate face detectia automata la parsarea\n"
  6069. "fişierului Excellon, se folosesc aceste valori.\n"
  6070. "LZ = zerourile din fata numărului sunt pastrate și\n"
  6071. "cele de la final sunt indepartate.\n"
  6072. "TZ = zerourile din fata numărului sunt indepartate și\n"
  6073. "cele de la final sunt pastrate.\n"
  6074. "(Invers fata de fişierele Gerber)."
  6075. #: flatcamGUI/FlatCAMGUI.py:4502
  6076. msgid "Default <b>Units</b>:"
  6077. msgstr "<b>Unitati</b> Excellon:"
  6078. #: flatcamGUI/FlatCAMGUI.py:4505
  6079. msgid ""
  6080. "This sets the default units of Excellon files.\n"
  6081. "If it is not detected in the parsed file the value here\n"
  6082. "will be used.Some Excellon files don't have an header\n"
  6083. "therefore this parameter will be used."
  6084. msgstr ""
  6085. "Aceasta valoare este valoarea la care se recurge\n"
  6086. "in cazul in care nu se poate determina automat\n"
  6087. "atunci când se face parsarea fişierlui Excellon.\n"
  6088. "Unele fişiere de găurire (Excellon) nu au header\n"
  6089. "(unde se gasesc unitatile) și atunci se va folosi\n"
  6090. "aceasta valoare."
  6091. #: flatcamGUI/FlatCAMGUI.py:4516
  6092. msgid ""
  6093. "This sets the units of Excellon files.\n"
  6094. "Some Excellon files don't have an header\n"
  6095. "therefore this parameter will be used."
  6096. msgstr ""
  6097. "Aceasta valoare este valoarea la care se recurge\n"
  6098. "in cazul in care nu se poate determina automat\n"
  6099. "atunci când se face parsarea fişierlui Excellon.\n"
  6100. "Unele fişiere de găurire (Excellon) nu au header\n"
  6101. "(unde se gasesc unitatile) și atunci se va folosi\n"
  6102. "aceasta valoare."
  6103. #: flatcamGUI/FlatCAMGUI.py:4532
  6104. msgid "<b>Excellon Optimization:</b>"
  6105. msgstr "<b>Optimizarea traseului Excellon:</b>"
  6106. #: flatcamGUI/FlatCAMGUI.py:4539
  6107. msgid "Algorithm: "
  6108. msgstr "Algoritm:"
  6109. #: flatcamGUI/FlatCAMGUI.py:4542 flatcamGUI/FlatCAMGUI.py:4555
  6110. msgid ""
  6111. "This sets the optimization type for the Excellon drill path.\n"
  6112. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  6113. "Guided Local Path is used. Default search time is 3sec.\n"
  6114. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  6115. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  6116. "\n"
  6117. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  6118. "Travelling Salesman algorithm for path optimization."
  6119. msgstr ""
  6120. "Se setează tipul de optimizare pentru traiectoria parcursa între\n"
  6121. "găurile fişierului Excellon. Avand in vedere posibilul număr mare de găuri,\n"
  6122. "folosirea unei optimizari adecvate poate aduce un castig important in "
  6123. "viteza\n"
  6124. "de procesare CNC.\n"
  6125. "MH = algoritm Google OR Tools cu optimiz. ghidata local meta-heuristic.\n"
  6126. "Durata default pentru optimizare este de 3 secunde.\n"
  6127. "Basic = algoritm Google OR Tools cu optimiz. de baza.\n"
  6128. "\n"
  6129. "Daca ambele sunt dezactivate atunci rulam varainta de FlatCAM pe 32bit\n"
  6130. "care nu este compatibila cu pachetul OR Tools și in acest caz se foloseşte\n"
  6131. "algoritmul default: Travelling Salesman (vanzatorul ambulant)."
  6132. #: flatcamGUI/FlatCAMGUI.py:4567
  6133. msgid "Optimization Time: "
  6134. msgstr "Durata optimiz.:"
  6135. #: flatcamGUI/FlatCAMGUI.py:4570
  6136. msgid ""
  6137. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  6138. "maximum threshold for how much time is spent doing the\n"
  6139. "path optimization. This max duration is set here.\n"
  6140. "In seconds."
  6141. msgstr ""
  6142. "Când se foloseşte optimziarea MH, aceasta valoare\n"
  6143. "reprezinta cat timp se sta pentru fiecare element in\n"
  6144. "incercarea de a afla calea optima."
  6145. #: flatcamGUI/FlatCAMGUI.py:4612
  6146. msgid "Excellon Options"
  6147. msgstr "Opțiuni Excellon"
  6148. #: flatcamGUI/FlatCAMGUI.py:4615 flatcamGUI/ObjectUI.py:584
  6149. msgid "<b>Create CNC Job</b>"
  6150. msgstr "<b>Crează CNCJob</b>"
  6151. #: flatcamGUI/FlatCAMGUI.py:4617
  6152. msgid ""
  6153. "Parameters used to create a CNC Job object\n"
  6154. "for this drill object."
  6155. msgstr ""
  6156. "Parametrii folositi pentru a crea un obiect FlatCAM tip CNCJob\n"
  6157. "din acest obiect Excellon."
  6158. #: flatcamGUI/FlatCAMGUI.py:4625 flatcamGUI/FlatCAMGUI.py:5217
  6159. #: flatcamGUI/FlatCAMGUI.py:6321 flatcamGUI/ObjectUI.py:595
  6160. #: flatcamGUI/ObjectUI.py:1062 flatcamTools/ToolCalculators.py:108
  6161. msgid "Cut Z:"
  6162. msgstr "Z tăiere:"
  6163. #: flatcamGUI/FlatCAMGUI.py:4627 flatcamGUI/ObjectUI.py:597
  6164. msgid ""
  6165. "Drill depth (negative)\n"
  6166. "below the copper surface."
  6167. msgstr ""
  6168. "Adâncimea de tăiere (valoare negativă).\n"
  6169. "Daca se foloseşte o val. pozitivă, aplicaţia\n"
  6170. "va incerca in mod automat să schimbe semnul."
  6171. #: flatcamGUI/FlatCAMGUI.py:4634 flatcamGUI/FlatCAMGUI.py:5250
  6172. #: flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1098
  6173. msgid "Travel Z:"
  6174. msgstr "Z Deplasare:"
  6175. #: flatcamGUI/FlatCAMGUI.py:4636 flatcamGUI/ObjectUI.py:607
  6176. msgid ""
  6177. "Tool height when travelling\n"
  6178. "across the XY plane."
  6179. msgstr ""
  6180. "Înălţimea la care unealtă se deplasează\n"
  6181. "in planul X-Y, fără a efectua taieri, adica\n"
  6182. "in afara materialului."
  6183. #: flatcamGUI/FlatCAMGUI.py:4644 flatcamGUI/FlatCAMGUI.py:5260
  6184. msgid "Tool change:"
  6185. msgstr "Schimbare unealtă:"
  6186. #: flatcamGUI/FlatCAMGUI.py:4646 flatcamGUI/FlatCAMGUI.py:5262
  6187. #: flatcamGUI/ObjectUI.py:617
  6188. msgid ""
  6189. "Include tool-change sequence\n"
  6190. "in G-Code (Pause for tool change)."
  6191. msgstr ""
  6192. "Include o secventa de schimbare unealtă\n"
  6193. "in codul G-Code (pauza pentru schimbare unealtă).\n"
  6194. "De obicei este folosita comanda G-Code M6."
  6195. #: flatcamGUI/FlatCAMGUI.py:4653 flatcamGUI/FlatCAMGUI.py:5270
  6196. msgid "Toolchange Z:"
  6197. msgstr "Z schimb. unealtă:"
  6198. #: flatcamGUI/FlatCAMGUI.py:4655 flatcamGUI/FlatCAMGUI.py:5272
  6199. msgid "Toolchange Z position."
  6200. msgstr ""
  6201. "Înălţimea la care se efectuează schimbarea uneltei.\n"
  6202. "Poate reprezenta Înălţimea unde se gaseste un\n"
  6203. "'toolchanger' automat sau acolo unde utilizatorul\n"
  6204. "schimba unealtă manual."
  6205. #: flatcamGUI/FlatCAMGUI.py:4661
  6206. msgid "Feedrate:"
  6207. msgstr "Feedrate:"
  6208. #: flatcamGUI/FlatCAMGUI.py:4663
  6209. msgid ""
  6210. "Tool speed while drilling\n"
  6211. "(in units per minute)."
  6212. msgstr ""
  6213. "Viteza cu care se misca unealtă (burghiul) când se fac\n"
  6214. "operațiuni de găurire. In unitati pe minut."
  6215. #: flatcamGUI/FlatCAMGUI.py:4671
  6216. msgid "Spindle Speed:"
  6217. msgstr "Viteza Motor:"
  6218. #: flatcamGUI/FlatCAMGUI.py:4673 flatcamGUI/FlatCAMGUI.py:5302
  6219. #: flatcamGUI/ObjectUI.py:684
  6220. msgid ""
  6221. "Speed of the spindle\n"
  6222. "in RPM (optional)"
  6223. msgstr ""
  6224. "Viteza cu care se roteste motorul ('Spindle').\n"
  6225. "In RPM (rotatii pe minut).\n"
  6226. "Acest parametru este optional și se poate lasa gol\n"
  6227. "daca nu se foloseşte."
  6228. #: flatcamGUI/FlatCAMGUI.py:4681 flatcamGUI/FlatCAMGUI.py:5310
  6229. msgid "Spindle dir.:"
  6230. msgstr "Directie Motor:"
  6231. #: flatcamGUI/FlatCAMGUI.py:4683 flatcamGUI/FlatCAMGUI.py:5312
  6232. msgid ""
  6233. "This sets the direction that the spindle is rotating.\n"
  6234. "It can be either:\n"
  6235. "- CW = clockwise or\n"
  6236. "- CCW = counter clockwise"
  6237. msgstr ""
  6238. "Aici se setează directia in care motorul se roteste.\n"
  6239. "Poate fi:\n"
  6240. "- CW = in sensul acelor de ceasornic\n"
  6241. "- CCW = in sensul invers acelor de ceasornic"
  6242. #: flatcamGUI/FlatCAMGUI.py:4695 flatcamGUI/FlatCAMGUI.py:5324
  6243. #: flatcamGUI/ObjectUI.py:692 flatcamGUI/ObjectUI.py:1224
  6244. msgid "Dwell:"
  6245. msgstr "Pauza:"
  6246. #: flatcamGUI/FlatCAMGUI.py:4697 flatcamGUI/FlatCAMGUI.py:5326
  6247. #: flatcamGUI/ObjectUI.py:694 flatcamGUI/ObjectUI.py:1227
  6248. msgid ""
  6249. "Pause to allow the spindle to reach its\n"
  6250. "speed before cutting."
  6251. msgstr ""
  6252. "O pauza care permite motorului să ajunga la turatia specificata,\n"
  6253. "inainte de a incepe mișcarea spre poziţia de tăiere (găurire)."
  6254. #: flatcamGUI/FlatCAMGUI.py:4700 flatcamGUI/FlatCAMGUI.py:5329
  6255. msgid "Duration:"
  6256. msgstr "Durata:"
  6257. #: flatcamGUI/FlatCAMGUI.py:4702 flatcamGUI/FlatCAMGUI.py:5331
  6258. #: flatcamGUI/ObjectUI.py:699 flatcamGUI/ObjectUI.py:1234
  6259. msgid "Number of milliseconds for spindle to dwell."
  6260. msgstr "Timpul (ori secunde ori milisec) cat se sta in pauza."
  6261. #: flatcamGUI/FlatCAMGUI.py:4714 flatcamGUI/FlatCAMGUI.py:5341
  6262. #: flatcamGUI/ObjectUI.py:707
  6263. msgid "Postprocessor:"
  6264. msgstr "Postprocesor:"
  6265. #: flatcamGUI/FlatCAMGUI.py:4716
  6266. msgid ""
  6267. "The postprocessor file that dictates\n"
  6268. "gcode output."
  6269. msgstr ""
  6270. "Un fişier care prelucrează codul G-Code astfel încât să\n"
  6271. "respecte un anumit format care să fie ințeles de diverse\n"
  6272. "utilaje. Este responsabil de 'personalizarea' G-Code."
  6273. #: flatcamGUI/FlatCAMGUI.py:4725
  6274. msgid "<b>Gcode: </b>"
  6275. msgstr "<b>G-Code:</b>"
  6276. #: flatcamGUI/FlatCAMGUI.py:4727
  6277. msgid ""
  6278. "Choose what to use for GCode generation:\n"
  6279. "'Drills', 'Slots' or 'Both'.\n"
  6280. "When choosing 'Slots' or 'Both', slots will be\n"
  6281. "converted to drills."
  6282. msgstr ""
  6283. "Alege ce anume să fie folot ca sursa pentru generarea de GCode:\n"
  6284. "- Găuri\n"
  6285. "- Sloturi\n"
  6286. "- Ambele.\n"
  6287. "Când se alege Sloturi sau Ambele, sloturile vor fi convertite in serii de "
  6288. "găuri."
  6289. #: flatcamGUI/FlatCAMGUI.py:4743 flatcamGUI/ObjectUI.py:772
  6290. msgid "<b>Mill Holes</b>"
  6291. msgstr "<b>Frezare găuri</b>"
  6292. #: flatcamGUI/FlatCAMGUI.py:4745 flatcamGUI/ObjectUI.py:774
  6293. msgid "Create Geometry for milling holes."
  6294. msgstr "Crează un obiect tip Geometrie pentru frezarea găurilor."
  6295. #: flatcamGUI/FlatCAMGUI.py:4751
  6296. msgid "Drill Tool dia:"
  6297. msgstr "Dia. Burghiu Găurire:"
  6298. #: flatcamGUI/FlatCAMGUI.py:4758
  6299. msgid "Slot Tool dia:"
  6300. msgstr "Dia. Freza Slot:"
  6301. #: flatcamGUI/FlatCAMGUI.py:4760
  6302. msgid ""
  6303. "Diameter of the cutting tool\n"
  6304. "when milling slots."
  6305. msgstr "Diametrul frezei când se frezează sloturile."
  6306. #: flatcamGUI/FlatCAMGUI.py:4772
  6307. msgid "Defaults"
  6308. msgstr "Val. Implicite"
  6309. #: flatcamGUI/FlatCAMGUI.py:4785
  6310. msgid "Excellon Adv. Options"
  6311. msgstr "Opțiuni Avans. Excellon"
  6312. #: flatcamGUI/FlatCAMGUI.py:4791 flatcamGUI/FlatCAMGUI.py:5364
  6313. msgid "<b>Advanced Options:</b>"
  6314. msgstr "<b>Opțiuni avansate:</b>"
  6315. #: flatcamGUI/FlatCAMGUI.py:4793
  6316. msgid ""
  6317. "Parameters used to create a CNC Job object\n"
  6318. "for this drill object that are shown when App Level is Advanced."
  6319. msgstr ""
  6320. "Parametri folositi pentru a crea un obiect CNCJob\n"
  6321. "pt acest obiect Excellon, parametri care sunt disponibili\n"
  6322. "doar in modul Avansat al aplicaţiei."
  6323. #: flatcamGUI/FlatCAMGUI.py:4801
  6324. msgid "Offset Z:"
  6325. msgstr "Z ofset:"
  6326. #: flatcamGUI/FlatCAMGUI.py:4803 flatcamGUI/ObjectUI.py:574
  6327. msgid ""
  6328. "Some drill bits (the larger ones) need to drill deeper\n"
  6329. "to create the desired exit hole diameter due of the tip shape.\n"
  6330. "The value here can compensate the Cut Z parameter."
  6331. msgstr ""
  6332. "Unele burghie (in special cele cu diametru mai mare)\n"
  6333. "au nevoie să găurească mai adanc pentru a depăși conul\n"
  6334. "din vârful burghiului astfel încât diametrul găurii de ieșire\n"
  6335. "să fie cel dorit.\n"
  6336. "Valoarea de aici efectuează o compensare asupra\n"
  6337. "parametrului >Z tăiere<."
  6338. #: flatcamGUI/FlatCAMGUI.py:4810 flatcamGUI/FlatCAMGUI.py:5375
  6339. msgid "Toolchange X,Y:"
  6340. msgstr "X,Y schimb. unealtă:"
  6341. #: flatcamGUI/FlatCAMGUI.py:4812 flatcamGUI/FlatCAMGUI.py:5377
  6342. msgid "Toolchange X,Y position."
  6343. msgstr "Poziţia X,Y in format (x,y) unde se face schimbarea uneltei."
  6344. #: flatcamGUI/FlatCAMGUI.py:4818 flatcamGUI/FlatCAMGUI.py:5384
  6345. #: flatcamGUI/ObjectUI.py:634
  6346. msgid "Start move Z:"
  6347. msgstr "Z pornire:"
  6348. #: flatcamGUI/FlatCAMGUI.py:4820
  6349. msgid ""
  6350. "Height of the tool just after start.\n"
  6351. "Delete the value if you don't need this feature."
  6352. msgstr ""
  6353. "Înălţimea uneltei imediat dupa ce se porneste operatia CNC.\n"
  6354. "Lasa casuta goala daca nu se foloseşte."
  6355. #: flatcamGUI/FlatCAMGUI.py:4827 flatcamGUI/FlatCAMGUI.py:5394
  6356. #: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1144
  6357. msgid "End move Z:"
  6358. msgstr "Z oprire:"
  6359. #: flatcamGUI/FlatCAMGUI.py:4829 flatcamGUI/FlatCAMGUI.py:5396
  6360. msgid ""
  6361. "Height of the tool after\n"
  6362. "the last move at the end of the job."
  6363. msgstr "Înălţimea la care se parchează freza dupa ce se termina lucrul."
  6364. #: flatcamGUI/FlatCAMGUI.py:4836 flatcamGUI/FlatCAMGUI.py:5404
  6365. #: flatcamGUI/ObjectUI.py:665
  6366. msgid "Feedrate Rapids:"
  6367. msgstr "Feedrate rapizi:"
  6368. #: flatcamGUI/FlatCAMGUI.py:4838 flatcamGUI/ObjectUI.py:667
  6369. msgid ""
  6370. "Tool speed while drilling\n"
  6371. "(in units per minute).\n"
  6372. "This is for the rapid move G00.\n"
  6373. "It is useful only for Marlin,\n"
  6374. "ignore for any other cases."
  6375. msgstr ""
  6376. "Viteza de găurire, in unitati pe minut.\n"
  6377. "Corespunde comenzii G0 și este utila doar pentru\n"
  6378. "printerul 3D Marlin, implicit când se foloseşte fişierul\n"
  6379. "postprocesor: Marlin. Ignora aceasta parametru in rest."
  6380. #: flatcamGUI/FlatCAMGUI.py:4849 flatcamGUI/FlatCAMGUI.py:5428
  6381. #: flatcamGUI/ObjectUI.py:718 flatcamGUI/ObjectUI.py:1256
  6382. msgid "Probe Z depth:"
  6383. msgstr "Z sonda:"
  6384. #: flatcamGUI/FlatCAMGUI.py:4851 flatcamGUI/FlatCAMGUI.py:5430
  6385. #: flatcamGUI/ObjectUI.py:720 flatcamGUI/ObjectUI.py:1259
  6386. msgid ""
  6387. "The maximum depth that the probe is allowed\n"
  6388. "to probe. Negative value, in current units."
  6389. msgstr ""
  6390. "Adâncimea maxima la care este permis sondei să coboare.\n"
  6391. "Are o valoare negativă, in unitatile curente."
  6392. #: flatcamGUI/FlatCAMGUI.py:4859 flatcamGUI/FlatCAMGUI.py:5438
  6393. #: flatcamGUI/ObjectUI.py:730 flatcamGUI/ObjectUI.py:1270
  6394. msgid "Feedrate Probe:"
  6395. msgstr "Feedrate sonda:"
  6396. #: flatcamGUI/FlatCAMGUI.py:4861 flatcamGUI/FlatCAMGUI.py:5440
  6397. #: flatcamGUI/ObjectUI.py:732 flatcamGUI/ObjectUI.py:1273
  6398. msgid "The feedrate used while the probe is probing."
  6399. msgstr "Viteza sondei când aceasta coboara."
  6400. #: flatcamGUI/FlatCAMGUI.py:4867 flatcamGUI/FlatCAMGUI.py:5447
  6401. msgid "Fast Plunge:"
  6402. msgstr "Plonjare rapida:"
  6403. #: flatcamGUI/FlatCAMGUI.py:4869 flatcamGUI/FlatCAMGUI.py:5449
  6404. msgid ""
  6405. "By checking this, the vertical move from\n"
  6406. "Z_Toolchange to Z_move is done with G0,\n"
  6407. "meaning the fastest speed available.\n"
  6408. "WARNING: the move is done at Toolchange X,Y coords."
  6409. msgstr ""
  6410. "Prin bifarea de aici, mișcarea de la Înălţimea unde se face schimbarea "
  6411. "uneltei\n"
  6412. "pana la Înălţimea unde se face deplasarea între taieri, se va face cu "
  6413. "comanda G0.\n"
  6414. "Aceasta inseamna că se va folosi viteza maxima disponibila.\n"
  6415. "\n"
  6416. "ATENTIE: mișcarea aceasta pe verticala se face la coordonatele X, Y unde se "
  6417. "schimba\n"
  6418. "unealta. Daca aveti ceva plasat sub unealtă ceva se va strica."
  6419. #: flatcamGUI/FlatCAMGUI.py:4878
  6420. msgid "Fast Retract:"
  6421. msgstr "Retragere rapida:"
  6422. #: flatcamGUI/FlatCAMGUI.py:4880
  6423. msgid ""
  6424. "Exit hole strategy.\n"
  6425. " - When uncheked, while exiting the drilled hole the drill bit\n"
  6426. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  6427. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  6428. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  6429. "(travel height) is done as fast as possible (G0) in one move."
  6430. msgstr ""
  6431. "Strategia de evacuare a găurii tocmai găurite.\n"
  6432. "- când nu este bifat, burghiul va ieși din gaura cu viteza feedrate "
  6433. "setată, \n"
  6434. "G1, pana ajunge la nivelul zero, ulterior ridicându-se pana la Înălţimea de "
  6435. "deplasare\n"
  6436. "cu viteza maxima G0\n"
  6437. "- când este bifat, burghiul se va deplasa de la adâncimea de tăiere pana la "
  6438. "adâncimea\n"
  6439. "de deplasare cu viteza maxima G0, intr-o singură mișcare."
  6440. #: flatcamGUI/FlatCAMGUI.py:4899
  6441. msgid "Excellon Export"
  6442. msgstr "Export Excellon"
  6443. #: flatcamGUI/FlatCAMGUI.py:4904
  6444. msgid ""
  6445. "The parameters set here are used in the file exported\n"
  6446. "when using the File -> Export -> Export Excellon menu entry."
  6447. msgstr ""
  6448. "Acesti parametri listati aici sunt folositi atunci când\n"
  6449. "se exporta un fişier Excellon folosind:\n"
  6450. "File -> Exporta -> Exporta Excellon"
  6451. #: flatcamGUI/FlatCAMGUI.py:4915 flatcamGUI/FlatCAMGUI.py:4921
  6452. msgid "The units used in the Excellon file."
  6453. msgstr "Unitatile de masura folosite in fişierul Excellon."
  6454. #: flatcamGUI/FlatCAMGUI.py:4929
  6455. msgid ""
  6456. "The NC drill files, usually named Excellon files\n"
  6457. "are files that can be found in different formats.\n"
  6458. "Here we set the format used when the provided\n"
  6459. "coordinates are not using period."
  6460. msgstr ""
  6461. "Fişierele NC, numite usual fişiere Excellon\n"
  6462. "sunt fişiere care pot fi gasite in diverse formate.\n"
  6463. "Aici se setează formatul Excellon când nu se utilizează\n"
  6464. "coordonate cu zecimale."
  6465. #: flatcamGUI/FlatCAMGUI.py:4965
  6466. msgid "<b>Format:</b>"
  6467. msgstr "<b>Format:</b>"
  6468. #: flatcamGUI/FlatCAMGUI.py:4967 flatcamGUI/FlatCAMGUI.py:4977
  6469. msgid ""
  6470. "Select the kind of coordinates format used.\n"
  6471. "Coordinates can be saved with decimal point or without.\n"
  6472. "When there is no decimal point, it is required to specify\n"
  6473. "the number of digits for integer part and the number of decimals.\n"
  6474. "Also it will have to be specified if LZ = leading zeros are kept\n"
  6475. "or TZ = trailing zeros are kept."
  6476. msgstr ""
  6477. "Selectati tipul formatului de coordonate folosit.\n"
  6478. "Coordonatele se pot salva cu punct zecimal sau fără.\n"
  6479. "Când nu se foloseşte punctul zecimal ca separator între\n"
  6480. "partea intreaga și partea zecimala, este necesar să se\n"
  6481. "specifice numărul de digiti folosit pentru partea intreaga\n"
  6482. "și numărul de digiti folosit pentru partea zecimala.\n"
  6483. "Trebuie specificat și modul in care sunt tratate zerourile:\n"
  6484. "- LZ = zerourile prefix sunt pastrate și cele sufix eliminate\n"
  6485. "- TZ = zerourile prefix sunt eliminate și cele sufix pastrate."
  6486. #: flatcamGUI/FlatCAMGUI.py:5001
  6487. msgid ""
  6488. "This sets the default type of Excellon zeros.\n"
  6489. "If LZ then Leading Zeros are kept and\n"
  6490. "Trailing Zeros are removed.\n"
  6491. "If TZ is checked then Trailing Zeros are kept\n"
  6492. "and Leading Zeros are removed."
  6493. msgstr ""
  6494. "Acesta este tipul implicit de zero-uri Excellon.\n"
  6495. "- LZ = zerourile prefix sunt pastrate și cele sufix eliminate\n"
  6496. "- TZ = zerourile prefix sunt eliminate și cele sufix pastrate."
  6497. #: flatcamGUI/FlatCAMGUI.py:5031
  6498. msgid "A list of Excellon Editor parameters."
  6499. msgstr "O lista de parametri ai Editorului Excellon."
  6500. #: flatcamGUI/FlatCAMGUI.py:5041
  6501. msgid ""
  6502. "Set the number of selected Excellon geometry\n"
  6503. "items above which the utility geometry\n"
  6504. "becomes just a selection rectangle.\n"
  6505. "Increases the performance when moving a\n"
  6506. "large number of geometric elements."
  6507. msgstr ""
  6508. "Setează numărul de geometrii Excellon selectate peste care\n"
  6509. "geometria utilitară devine o simplă formă pătratica de \n"
  6510. "selectie.\n"
  6511. "Creste performanta cand se muta un număr mai mare de \n"
  6512. "elemente geometrice."
  6513. #: flatcamGUI/FlatCAMGUI.py:5053
  6514. msgid "New Tool Dia:"
  6515. msgstr "Dia. nou unealtă:"
  6516. #: flatcamGUI/FlatCAMGUI.py:5076
  6517. msgid "<b>Linear Drill Array:</b>"
  6518. msgstr "<b>Arie de gauri lineara:</b>"
  6519. #: flatcamGUI/FlatCAMGUI.py:5080
  6520. msgid "Linear Dir.:"
  6521. msgstr "Dir. Lineara:"
  6522. #: flatcamGUI/FlatCAMGUI.py:5116
  6523. msgid "<b>Circular Drill Array:</b>"
  6524. msgstr "<b>Arie de gauri circ.:</b>"
  6525. #: flatcamGUI/FlatCAMGUI.py:5120
  6526. msgid "Circular Dir.:"
  6527. msgstr "Directie circ.:"
  6528. #: flatcamGUI/FlatCAMGUI.py:5122
  6529. msgid ""
  6530. "Direction for circular array.\n"
  6531. "Can be CW = clockwise or CCW = counter clockwise."
  6532. msgstr ""
  6533. "Directia pentru aria circulara.\n"
  6534. "Poate fi CW = in sensul acelor de ceasornic sau CCW = invers acelor de "
  6535. "ceasornic"
  6536. #: flatcamGUI/FlatCAMGUI.py:5133
  6537. msgid "Circ. Angle:"
  6538. msgstr "Unghi circ.:"
  6539. #: flatcamGUI/FlatCAMGUI.py:5150
  6540. msgid "Geometry General"
  6541. msgstr "Geometrie General"
  6542. #: flatcamGUI/FlatCAMGUI.py:5168
  6543. msgid ""
  6544. "The number of circle steps for <b>Geometry</b> \n"
  6545. "circle and arc shapes linear approximation."
  6546. msgstr ""
  6547. "Numărul de segmente utilizate pentru\n"
  6548. "aproximarea lineara a <b>Geometriilor</b> circulare."
  6549. #: flatcamGUI/FlatCAMGUI.py:5176
  6550. msgid "<b>Tools</b>"
  6551. msgstr "<b>Unelte</b>"
  6552. #: flatcamGUI/FlatCAMGUI.py:5183
  6553. msgid "Tool dia: "
  6554. msgstr "Dia Unealtă:"
  6555. #: flatcamGUI/FlatCAMGUI.py:5185
  6556. msgid ""
  6557. "The diameter of the cutting\n"
  6558. "tool.."
  6559. msgstr "Diametrul uneltei taietoare ..."
  6560. #: flatcamGUI/FlatCAMGUI.py:5200
  6561. msgid "Geometry Options"
  6562. msgstr "Opțiuni Geometrie"
  6563. #: flatcamGUI/FlatCAMGUI.py:5205
  6564. msgid "<b>Create CNC Job:</b>"
  6565. msgstr "<b>Crează CNCJob:</b>"
  6566. #: flatcamGUI/FlatCAMGUI.py:5207
  6567. msgid ""
  6568. "Create a CNC Job object\n"
  6569. "tracing the contours of this\n"
  6570. "Geometry object."
  6571. msgstr ""
  6572. "Crează un obiect CNCJob care urmareste conturul\n"
  6573. "acestui obiect tip Geometrie."
  6574. #: flatcamGUI/FlatCAMGUI.py:5219 flatcamGUI/ObjectUI.py:1065
  6575. msgid ""
  6576. "Cutting depth (negative)\n"
  6577. "below the copper surface."
  6578. msgstr ""
  6579. "Adâncimea la care se taie sub suprafata de cupru.\n"
  6580. "Valoare negativă."
  6581. #: flatcamGUI/FlatCAMGUI.py:5227
  6582. msgid "Multidepth"
  6583. msgstr "MultiPas"
  6584. #: flatcamGUI/FlatCAMGUI.py:5229
  6585. msgid "Multidepth usage: True or False."
  6586. msgstr ""
  6587. "Daca se folosesc sau nu pasi multipli de tăiere\n"
  6588. "pentru a ajunge la adâncimea de tăiere."
  6589. #: flatcamGUI/FlatCAMGUI.py:5234
  6590. msgid "Depth/Pass:"
  6591. msgstr "Adanc./Trecere"
  6592. #: flatcamGUI/FlatCAMGUI.py:5236
  6593. msgid ""
  6594. "The depth to cut on each pass,\n"
  6595. "when multidepth is enabled.\n"
  6596. "It has positive value although\n"
  6597. "it is a fraction from the depth\n"
  6598. "which has negative value."
  6599. msgstr ""
  6600. "Adâncimea la care se taie la fiecare trecere,\n"
  6601. "atunci când >MultiPas< este folosit.\n"
  6602. "Valoarea este pozitivă desi reprezinta o fracţie\n"
  6603. "a adancimii de tăiere care este o valoare negativă."
  6604. #: flatcamGUI/FlatCAMGUI.py:5252 flatcamGUI/ObjectUI.py:1101
  6605. msgid ""
  6606. "Height of the tool when\n"
  6607. "moving without cutting."
  6608. msgstr ""
  6609. "Înălţimea la care se misca unealta când nu taie,\n"
  6610. "deasupra materialului."
  6611. #: flatcamGUI/FlatCAMGUI.py:5279 flatcamGUI/ObjectUI.py:1156
  6612. msgid "Feed Rate X-Y:"
  6613. msgstr "Feedrate X-Y:"
  6614. #: flatcamGUI/FlatCAMGUI.py:5281 flatcamGUI/ObjectUI.py:1159
  6615. msgid ""
  6616. "Cutting speed in the XY\n"
  6617. "plane in units per minute"
  6618. msgstr ""
  6619. "Viteza de tăiere in planul X-Y\n"
  6620. "in unitati pe minut."
  6621. #: flatcamGUI/FlatCAMGUI.py:5289
  6622. msgid "Feed Rate Z:"
  6623. msgstr "Feedrate Z:"
  6624. #: flatcamGUI/FlatCAMGUI.py:5291
  6625. msgid ""
  6626. "Cutting speed in the XY\n"
  6627. "plane in units per minute.\n"
  6628. "It is called also Plunge."
  6629. msgstr ""
  6630. "Viteza de tăiere in planul Z\n"
  6631. "in unitati pe minut.\n"
  6632. "Mai este numita și viteza de plonjare."
  6633. #: flatcamGUI/FlatCAMGUI.py:5300 flatcamGUI/ObjectUI.py:682
  6634. #: flatcamGUI/ObjectUI.py:1211
  6635. msgid "Spindle speed:"
  6636. msgstr "Viteza motor:"
  6637. #: flatcamGUI/FlatCAMGUI.py:5343
  6638. msgid ""
  6639. "The postprocessor file that dictates\n"
  6640. "Machine Code output."
  6641. msgstr ""
  6642. "Un fişier care prelucrează codul G-Code astfel încât să\n"
  6643. "respecte un anumit format care să fie ințeles de diverse\n"
  6644. "utilaje. Este responsabil de 'personalizarea' G-Code."
  6645. #: flatcamGUI/FlatCAMGUI.py:5359
  6646. msgid "Geometry Adv. Options"
  6647. msgstr "Opțiuni Avans. Geometrie"
  6648. #: flatcamGUI/FlatCAMGUI.py:5366
  6649. msgid ""
  6650. "Parameters to create a CNC Job object\n"
  6651. "tracing the contours of a Geometry object."
  6652. msgstr ""
  6653. "Parametrii folositi pentru a crea un obiect CNCJob,\n"
  6654. "urmărind contururile unui obiect tip Geometrie."
  6655. #: flatcamGUI/FlatCAMGUI.py:5386
  6656. msgid ""
  6657. "Height of the tool just after starting the work.\n"
  6658. "Delete the value if you don't need this feature."
  6659. msgstr ""
  6660. "Înălţimea uneltei la care se gaseste la inceputul lucrului.\n"
  6661. "Lasa câmpul gol daca nu folosești aceasta."
  6662. #: flatcamGUI/FlatCAMGUI.py:5406
  6663. msgid ""
  6664. "Cutting speed in the XY plane\n"
  6665. "(in units per minute).\n"
  6666. "This is for the rapid move G00.\n"
  6667. "It is useful only for Marlin,\n"
  6668. "ignore for any other cases."
  6669. msgstr ""
  6670. "Viteza de tăiere in planul X-Y, in unitati pe minut,\n"
  6671. "in legatura cu comanda G00.\n"
  6672. "Este utila doar când se foloseşte cu un printer 3D Marlin,\n"
  6673. "pentru toate celelalte cazuri ignora acest parametru."
  6674. #: flatcamGUI/FlatCAMGUI.py:5418
  6675. msgid "Re-cut 1st pt."
  6676. msgstr "Re-tăiere 1-ul pt."
  6677. #: flatcamGUI/FlatCAMGUI.py:5420 flatcamGUI/ObjectUI.py:1202
  6678. msgid ""
  6679. "In order to remove possible\n"
  6680. "copper leftovers where first cut\n"
  6681. "meet with last cut, we generate an\n"
  6682. "extended cut over the first cut section."
  6683. msgstr ""
  6684. "Bifează daca se dorește o siguranţă ca resturile de cupru\n"
  6685. "care pot ramane acolo unde se intalneste inceputul taierii\n"
  6686. "cu sfârşitul acesteia (este vorba de un contur), sunt eliminate\n"
  6687. "prin taierea peste acest punct."
  6688. #: flatcamGUI/FlatCAMGUI.py:5459
  6689. msgid "Seg. X size:"
  6690. msgstr "Dim. seg X."
  6691. #: flatcamGUI/FlatCAMGUI.py:5461
  6692. msgid ""
  6693. "The size of the trace segment on the X axis.\n"
  6694. "Useful for auto-leveling.\n"
  6695. "A value of 0 means no segmentation on the X axis."
  6696. msgstr ""
  6697. "Dimensiunea segmentului de traseu pe axa X.\n"
  6698. "Folositor pentru auto-nivelare.\n"
  6699. "O valoare de 0 inseamnaca nu se face segmentare\n"
  6700. "pe axa X."
  6701. #: flatcamGUI/FlatCAMGUI.py:5470
  6702. msgid "Seg. Y size:"
  6703. msgstr "Dim. seg Y."
  6704. #: flatcamGUI/FlatCAMGUI.py:5472
  6705. msgid ""
  6706. "The size of the trace segment on the Y axis.\n"
  6707. "Useful for auto-leveling.\n"
  6708. "A value of 0 means no segmentation on the Y axis."
  6709. msgstr ""
  6710. "Dimensiunea segmentului de traseu pe axa Y.\n"
  6711. "Folositor pentru auto-nivelare.\n"
  6712. "O valoare de 0 inseamnaca nu se face segmentare\n"
  6713. "pe axa Y."
  6714. #: flatcamGUI/FlatCAMGUI.py:5488
  6715. msgid "Geometry Editor"
  6716. msgstr "Editor Geometrii"
  6717. #: flatcamGUI/FlatCAMGUI.py:5493
  6718. msgid "A list of Geometry Editor parameters."
  6719. msgstr "O lista de parametri ai Editorului de Geometrii."
  6720. #: flatcamGUI/FlatCAMGUI.py:5503
  6721. msgid ""
  6722. "Set the number of selected geometry\n"
  6723. "items above which the utility geometry\n"
  6724. "becomes just a selection rectangle.\n"
  6725. "Increases the performance when moving a\n"
  6726. "large number of geometric elements."
  6727. msgstr ""
  6728. "Setează numărul de geometriil selectate peste care\n"
  6729. "geometria utilitară devine o simplă formă pătratica de \n"
  6730. "selectie.\n"
  6731. "Creste performanta cand se muta un număr mai mare de \n"
  6732. "elemente geometrice."
  6733. #: flatcamGUI/FlatCAMGUI.py:5522
  6734. msgid "CNC Job General"
  6735. msgstr "CNCJob General"
  6736. #: flatcamGUI/FlatCAMGUI.py:5535 flatcamGUI/ObjectUI.py:544
  6737. #: flatcamGUI/ObjectUI.py:877 flatcamGUI/ObjectUI.py:1447
  6738. msgid "Plot Object"
  6739. msgstr "Afisează"
  6740. #: flatcamGUI/FlatCAMGUI.py:5542
  6741. msgid "Plot kind:"
  6742. msgstr "Tip afișare:"
  6743. #: flatcamGUI/FlatCAMGUI.py:5544 flatcamGUI/ObjectUI.py:1356
  6744. msgid ""
  6745. "This selects the kind of geometries on the canvas to plot.\n"
  6746. "Those can be either of type 'Travel' which means the moves\n"
  6747. "above the work piece or it can be of type 'Cut',\n"
  6748. "which means the moves that cut into the material."
  6749. msgstr ""
  6750. "Aici se poate selecta tipul de afișare a geometriilor.\n"
  6751. "Acestea pot fi:\n"
  6752. "- Voiaj -> miscarile deasupra materialului\n"
  6753. "- Tăiere -> miscarile in material, tăiere\n"
  6754. "- Amandoua"
  6755. #: flatcamGUI/FlatCAMGUI.py:5561
  6756. msgid "Display Annotation:"
  6757. msgstr "Afiseaza notatii:"
  6758. #: flatcamGUI/FlatCAMGUI.py:5563 flatcamGUI/ObjectUI.py:1372
  6759. msgid ""
  6760. "This selects if to display text annotation on the plot.\n"
  6761. "When checked it will display numbers in order for each end\n"
  6762. "of a travel line."
  6763. msgstr ""
  6764. "Aici se poate seta daca sa se afiseze notatiile text.\n"
  6765. "Cand este selectat va afisa numerele in ordine pt fiecare\n"
  6766. "capat al liniilor de traversare."
  6767. #: flatcamGUI/FlatCAMGUI.py:5575
  6768. msgid "Annotation Size:"
  6769. msgstr "Dim. anotate:"
  6770. #: flatcamGUI/FlatCAMGUI.py:5577
  6771. msgid "The font size of the annotation text. In pixels."
  6772. msgstr "Dimensiunea fontului pt. textul cu notatii. In pixeli."
  6773. #: flatcamGUI/FlatCAMGUI.py:5585
  6774. msgid "Annotation Color:"
  6775. msgstr "Culoarea anotatii:"
  6776. #: flatcamGUI/FlatCAMGUI.py:5587
  6777. msgid "Set the font color for the annotation texts."
  6778. msgstr "Setează culoarea pentru textul cu anotatii."
  6779. #: flatcamGUI/FlatCAMGUI.py:5610
  6780. msgid ""
  6781. "The number of circle steps for <b>GCode</b> \n"
  6782. "circle and arc shapes linear approximation."
  6783. msgstr ""
  6784. "Numărul de segmente utilizate pentru\n"
  6785. "aproximarea lineara a reprezentarilor <b>GCodului</b> circular."
  6786. #: flatcamGUI/FlatCAMGUI.py:5620
  6787. msgid ""
  6788. "Diameter of the tool to be\n"
  6789. "rendered in the plot."
  6790. msgstr "Diametrul uneltei care să fie redat prin afișare."
  6791. #: flatcamGUI/FlatCAMGUI.py:5628
  6792. msgid "Coords dec.:"
  6793. msgstr "Coord. zec.:"
  6794. #: flatcamGUI/FlatCAMGUI.py:5630
  6795. msgid ""
  6796. "The number of decimals to be used for \n"
  6797. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  6798. msgstr ""
  6799. "Numărul de zecimale care să fie folosit in \n"
  6800. "coordonatele X,Y,Z in codul CNC (GCode etc)."
  6801. #: flatcamGUI/FlatCAMGUI.py:5638
  6802. msgid "Feedrate dec.:"
  6803. msgstr "Feedrate zec.:"
  6804. #: flatcamGUI/FlatCAMGUI.py:5640
  6805. msgid ""
  6806. "The number of decimals to be used for \n"
  6807. "the Feedrate parameter in CNC code (GCODE, etc.)"
  6808. msgstr ""
  6809. "Numărul de zecimale care să fie folosit in \n"
  6810. "parametrul >Feedrate< in codul CNC (GCode etc)."
  6811. #: flatcamGUI/FlatCAMGUI.py:5655
  6812. msgid "CNC Job Options"
  6813. msgstr "Opțiuni CNCJob"
  6814. #: flatcamGUI/FlatCAMGUI.py:5658 flatcamGUI/FlatCAMGUI.py:5699
  6815. msgid "<b>Export G-Code:</b>"
  6816. msgstr "<b>Exporta G-Code:</b>"
  6817. #: flatcamGUI/FlatCAMGUI.py:5660 flatcamGUI/FlatCAMGUI.py:5701
  6818. #: flatcamGUI/ObjectUI.py:1483
  6819. msgid ""
  6820. "Export and save G-Code to\n"
  6821. "make this object to a file."
  6822. msgstr ""
  6823. "Exporta și salvează codul G-Code intr-un fişier\n"
  6824. "care este salvat pe HDD."
  6825. #: flatcamGUI/FlatCAMGUI.py:5666
  6826. msgid "Prepend to G-Code:"
  6827. msgstr "Adaugă la inceputul G-Code:"
  6828. #: flatcamGUI/FlatCAMGUI.py:5668
  6829. msgid ""
  6830. "Type here any G-Code commands you would\n"
  6831. "like to add at the beginning of the G-Code file."
  6832. msgstr ""
  6833. "Adaugă aici orice comenzi G-Code care se dorește să fie\n"
  6834. "inserate la inceputul codului G-Code."
  6835. #: flatcamGUI/FlatCAMGUI.py:5677
  6836. msgid "Append to G-Code:"
  6837. msgstr "Adaugă la sfârşitul G-Code:"
  6838. #: flatcamGUI/FlatCAMGUI.py:5679 flatcamGUI/ObjectUI.py:1505
  6839. msgid ""
  6840. "Type here any G-Code commands you would\n"
  6841. "like to append to the generated file.\n"
  6842. "I.e.: M2 (End of program)"
  6843. msgstr ""
  6844. "Adaugă aici orice comenzi G-Code care se dorește să fie\n"
  6845. "inserate la sfârşitul codului G-Code."
  6846. #: flatcamGUI/FlatCAMGUI.py:5696
  6847. msgid "CNC Job Adv. Options"
  6848. msgstr "Opțiuni Avans. CNCJob"
  6849. #: flatcamGUI/FlatCAMGUI.py:5707 flatcamGUI/ObjectUI.py:1523
  6850. msgid "Toolchange G-Code:"
  6851. msgstr "G-Code pt schimb unealtă:"
  6852. #: flatcamGUI/FlatCAMGUI.py:5709
  6853. msgid ""
  6854. "Type here any G-Code commands you would\n"
  6855. "like to be executed when Toolchange event is encountered.\n"
  6856. "This will constitute a Custom Toolchange GCode,\n"
  6857. "or a Toolchange Macro."
  6858. msgstr ""
  6859. "Adaugă aici orice comenzi G-Code care se dorește să fie\n"
  6860. "inserate in codul G-Code atunci când se intalneste comanda M6.\n"
  6861. "Comanda M6 este inlocuita.\n"
  6862. "Aceata va constitui un macro pentru schimbul uneltelor."
  6863. #: flatcamGUI/FlatCAMGUI.py:5723 flatcamGUI/ObjectUI.py:1545
  6864. msgid "Use Toolchange Macro"
  6865. msgstr "Fol. Macro schimb unealtă"
  6866. #: flatcamGUI/FlatCAMGUI.py:5725 flatcamGUI/ObjectUI.py:1548
  6867. msgid ""
  6868. "Check this box if you want to use\n"
  6869. "a Custom Toolchange GCode (macro)."
  6870. msgstr ""
  6871. "Bifează aici daca dorești să folosești Macro pentru\n"
  6872. "schimb unelte."
  6873. #: flatcamGUI/FlatCAMGUI.py:5737 flatcamGUI/ObjectUI.py:1557
  6874. msgid ""
  6875. "A list of the FlatCAM variables that can be used\n"
  6876. "in the Toolchange event.\n"
  6877. "They have to be surrounded by the '%' symbol"
  6878. msgstr ""
  6879. "O lista de variabile FlatCAM care se pot folosi in evenimentul \n"
  6880. "de schimb al uneltei (când se intalneste comanda M6).\n"
  6881. "Este necesar să fie inconjurate de simbolul '%'."
  6882. #: flatcamGUI/FlatCAMGUI.py:5744 flatcamGUI/ObjectUI.py:1564
  6883. msgid "Parameters"
  6884. msgstr "Parametri"
  6885. #: flatcamGUI/FlatCAMGUI.py:5747 flatcamGUI/ObjectUI.py:1567
  6886. msgid "FlatCAM CNC parameters"
  6887. msgstr "Parametri FlatCAM CNC"
  6888. #: flatcamGUI/FlatCAMGUI.py:5748 flatcamGUI/ObjectUI.py:1568
  6889. msgid "tool = tool number"
  6890. msgstr "tool = numărul uneltei"
  6891. #: flatcamGUI/FlatCAMGUI.py:5749 flatcamGUI/ObjectUI.py:1569
  6892. msgid "tooldia = tool diameter"
  6893. msgstr "tooldia = dimaetrul uneltei"
  6894. #: flatcamGUI/FlatCAMGUI.py:5750 flatcamGUI/ObjectUI.py:1570
  6895. msgid "t_drills = for Excellon, total number of drills"
  6896. msgstr "t_drills = pt Excellom, numărul total de operațiuni găurire"
  6897. #: flatcamGUI/FlatCAMGUI.py:5751 flatcamGUI/ObjectUI.py:1571
  6898. msgid "x_toolchange = X coord for Toolchange"
  6899. msgstr "x_toolchange = coord. X pt schimb unealtă"
  6900. #: flatcamGUI/FlatCAMGUI.py:5752 flatcamGUI/ObjectUI.py:1572
  6901. msgid "y_toolchange = Y coord for Toolchange"
  6902. msgstr "y_toolchange = coord. Y pt schimb unealtă"
  6903. #: flatcamGUI/FlatCAMGUI.py:5753 flatcamGUI/ObjectUI.py:1573
  6904. msgid "z_toolchange = Z coord for Toolchange"
  6905. msgstr "z_toolchange = coord. Z pt schimb unealtă"
  6906. #: flatcamGUI/FlatCAMGUI.py:5754
  6907. msgid "z_cut = Z depth for the cut"
  6908. msgstr "z_cut = Z adâncimea de tăiere"
  6909. #: flatcamGUI/FlatCAMGUI.py:5755
  6910. msgid "z_move = Z height for travel"
  6911. msgstr "z_move = Z Înălţimea deplasare"
  6912. #: flatcamGUI/FlatCAMGUI.py:5756 flatcamGUI/ObjectUI.py:1576
  6913. msgid "z_depthpercut = the step value for multidepth cut"
  6914. msgstr "z_depthpercut = pasul pentru taierea progresiva"
  6915. #: flatcamGUI/FlatCAMGUI.py:5757 flatcamGUI/ObjectUI.py:1577
  6916. msgid "spindlesspeed = the value for the spindle speed"
  6917. msgstr "spindlesspeed = valoarea viteza motor"
  6918. #: flatcamGUI/FlatCAMGUI.py:5759 flatcamGUI/ObjectUI.py:1578
  6919. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  6920. msgstr "dwelltime = durata de asteptare ca motorul să ajunga la turatia setată"
  6921. #: flatcamGUI/FlatCAMGUI.py:5780
  6922. msgid "NCC Tool Options"
  6923. msgstr "Opțiuni Unealta NCC"
  6924. #: flatcamGUI/FlatCAMGUI.py:5793 flatcamGUI/FlatCAMGUI.py:6523
  6925. msgid "Tools dia:"
  6926. msgstr "Dia unealtă:"
  6927. #: flatcamGUI/FlatCAMGUI.py:5795
  6928. msgid "Diameters of the cutting tools, separated by ','"
  6929. msgstr "Diametrele pentru unelte taietoare, separate cu virgula"
  6930. #: flatcamGUI/FlatCAMGUI.py:5803 flatcamTools/ToolNonCopperClear.py:167
  6931. #, python-format
  6932. msgid ""
  6933. "How much (fraction) of the tool width to overlap each tool pass.\n"
  6934. "Example:\n"
  6935. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  6936. "\n"
  6937. "Adjust the value starting with lower values\n"
  6938. "and increasing it if areas that should be cleared are still \n"
  6939. "not cleared.\n"
  6940. "Lower values = faster processing, faster execution on PCB.\n"
  6941. "Higher values = slow processing and slow execution on CNC\n"
  6942. "due of too many paths."
  6943. msgstr ""
  6944. "Cat de mult (fracţie) din diametrul uneltei să se suprapună la fiecare "
  6945. "trecere a uneltei.\n"
  6946. "Exemplu:\n"
  6947. "O valoare aici de 0.25 inseamna 25\\% din diametrul uneltei de mai sus..\n"
  6948. "\n"
  6949. "Ajustează valoarea incepand de la valori mici\n"
  6950. "și pe urma creste daca ariile care ar trebui >curățate< inca\n"
  6951. "nu sunt procesate.\n"
  6952. "Valori scazute = procesare rapida,execuţie rapida a PCB-ului.\n"
  6953. "Valori mari= procesare lenta cat și o execuţie la fel de lenta a PCB-ului,\n"
  6954. "datorita numărului mai mare de treceri-tăiere."
  6955. #: flatcamGUI/FlatCAMGUI.py:5819 flatcamTools/ToolNonCopperClear.py:183
  6956. msgid "Bounding box margin."
  6957. msgstr "Marginea pentru forma înconjurătoare."
  6958. #: flatcamGUI/FlatCAMGUI.py:5828 flatcamTools/ToolNonCopperClear.py:192
  6959. #: flatcamTools/ToolPaint.py:190
  6960. msgid ""
  6961. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  6962. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  6963. "lines."
  6964. msgstr ""
  6965. "Algoritm pt curățare de cupru:<BR><B>Standard</B>: Pas fix spre interior."
  6966. "<BR><B>Punct-samanta</B>: De la punctul samanta, spre expterior.<BR><B>Linii "
  6967. "drepte</B>: Linii paralele."
  6968. #: flatcamGUI/FlatCAMGUI.py:5860 flatcamTools/ToolNonCopperClear.py:224
  6969. #: flatcamTools/ToolPaint.py:222
  6970. msgid "Rest M.:"
  6971. msgstr "Rest M.:"
  6972. #: flatcamGUI/FlatCAMGUI.py:5862
  6973. msgid ""
  6974. "If checked, use 'rest machining'.\n"
  6975. "Basically it will clear copper outside PCB features,\n"
  6976. "using the biggest tool and continue with the next tools,\n"
  6977. "from bigger to smaller, to clear areas of copper that\n"
  6978. "could not be cleared by previous tool.\n"
  6979. "If not checked, use the standard algorithm."
  6980. msgstr ""
  6981. "Daca este bifat, foloste 'rest machining'.\n"
  6982. "Mai exact, se va curăța cuprul din afara traseelor,\n"
  6983. "folosind mai intai unealta cu diametrul cel mai mare\n"
  6984. "apoi folosindu-se progresiv unelte cu diametrul tot\n"
  6985. "mai mic, din cele disponibile in tabela de unelte, pt a\n"
  6986. "curăța zonele care nu s-au putut curăța cu unealta\n"
  6987. "precedenta.\n"
  6988. "Daca nu este bifat, foloseşte algoritmul standard."
  6989. #: flatcamGUI/FlatCAMGUI.py:5881
  6990. msgid "Cutout Tool Options"
  6991. msgstr "Opțiuni Unealta Decupare"
  6992. #: flatcamGUI/FlatCAMGUI.py:5886 flatcamGUI/ObjectUI.py:402
  6993. msgid ""
  6994. "Create toolpaths to cut around\n"
  6995. "the PCB and separate it from\n"
  6996. "the original board."
  6997. msgstr ""
  6998. "Crează taieturi de jur inprejurul PCB-ului,\n"
  6999. "lasand punţi pentru a separa PCB-ul de \n"
  7000. "placa din care a fost taiat."
  7001. #: flatcamGUI/FlatCAMGUI.py:5905
  7002. msgid ""
  7003. "Distance from objects at which\n"
  7004. "to draw the cutout."
  7005. msgstr "Distanta de obiecte la care să se deseneze forma taietoare."
  7006. #: flatcamGUI/FlatCAMGUI.py:5912 flatcamTools/ToolCutOut.py:96
  7007. msgid "Gap size:"
  7008. msgstr "Dim. punte:"
  7009. #: flatcamGUI/FlatCAMGUI.py:5914
  7010. msgid ""
  7011. "Size of the gaps in the toolpath\n"
  7012. "that will remain to hold the\n"
  7013. "board in place."
  7014. msgstr ""
  7015. "Dimensiunea punţilor in trecerile de tăiere\n"
  7016. "care vor mentine PCB-ul in poziţie, fără să cada\n"
  7017. "din placa 'mama' dupa decupare."
  7018. #: flatcamGUI/FlatCAMGUI.py:5922 flatcamTools/ToolCutOut.py:134
  7019. msgid "Gaps:"
  7020. msgstr "Punţi:"
  7021. #: flatcamGUI/FlatCAMGUI.py:5924
  7022. msgid ""
  7023. "Number of bridge gaps used for the cutout.\n"
  7024. "There can be maximum 8 bridges/gaps.\n"
  7025. "The choices are:\n"
  7026. "- lr - left + right\n"
  7027. "- tb - top + bottom\n"
  7028. "- 4 - left + right +top + bottom\n"
  7029. "- 2lr - 2*left + 2*right\n"
  7030. "- 2tb - 2*top + 2*bottom\n"
  7031. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7032. msgstr ""
  7033. "Numărul de punţi folosite in decupare.\n"
  7034. "Pot fi un număr maxim de 8 punţi aranjate in felul\n"
  7035. "următor:\n"
  7036. "- lr = stânga -dreapta\n"
  7037. "- tb = sus - jos\n"
  7038. "- 4 = stânga -dreapta - sus - jos\n"
  7039. "- 2lr = 2* stânga - 2* dreapta\n"
  7040. "- 2tb = 2* sus - 2* jos\n"
  7041. "- 8 = 2* stânga - 2* dreapta - 2* sus - 2* jos"
  7042. #: flatcamGUI/FlatCAMGUI.py:5945 flatcamTools/ToolCutOut.py:115
  7043. msgid "Convex Sh.:"
  7044. msgstr "Formă Conv."
  7045. #: flatcamGUI/FlatCAMGUI.py:5947
  7046. msgid "Create a convex shape surrounding the entire PCB."
  7047. msgstr ""
  7048. "Generează un obiect tip Geometrie care va inconjura\n"
  7049. "tot PCB-ul. Forma sa este convexa."
  7050. #: flatcamGUI/FlatCAMGUI.py:5960
  7051. msgid "2Sided Tool Options"
  7052. msgstr "Opțiuni Unealta 2Fețe"
  7053. #: flatcamGUI/FlatCAMGUI.py:5965
  7054. msgid ""
  7055. "A tool to help in creating a double sided\n"
  7056. "PCB using alignment holes."
  7057. msgstr ""
  7058. "O unealtă care ajuta in crearea de PCB-uri cu 2 fețe\n"
  7059. "folosind găuri de aliniere."
  7060. #: flatcamGUI/FlatCAMGUI.py:5975 flatcamTools/ToolDblSided.py:235
  7061. msgid "Drill diam.:"
  7062. msgstr "Dia gaura:"
  7063. #: flatcamGUI/FlatCAMGUI.py:5977 flatcamTools/ToolDblSided.py:226
  7064. #: flatcamTools/ToolDblSided.py:237
  7065. msgid "Diameter of the drill for the alignment holes."
  7066. msgstr "Diametrul găurii pentru găurile de aliniere."
  7067. #: flatcamGUI/FlatCAMGUI.py:5986 flatcamTools/ToolDblSided.py:120
  7068. msgid "Mirror Axis:"
  7069. msgstr "Axe oglindire:"
  7070. #: flatcamGUI/FlatCAMGUI.py:5988 flatcamTools/ToolDblSided.py:122
  7071. msgid "Mirror vertically (X) or horizontally (Y)."
  7072. msgstr "Oglindește vertical (X) sau orizontal (Y)."
  7073. #: flatcamGUI/FlatCAMGUI.py:5999 flatcamTools/ToolDblSided.py:133
  7074. msgid "Axis Ref:"
  7075. msgstr "Axa de ref.:"
  7076. #: flatcamGUI/FlatCAMGUI.py:6001
  7077. msgid ""
  7078. "The axis should pass through a <b>point</b> or cut\n"
  7079. " a specified <b>box</b> (in a Geometry object) in \n"
  7080. "the middle."
  7081. msgstr ""
  7082. "Axa de referinţă ar trebui să treaca printr-un <b>punct</b> ori să strabata\n"
  7083. " o <b>forma</b> (specificata un obiect tip Geometrie) prin mijloc."
  7084. #: flatcamGUI/FlatCAMGUI.py:6017
  7085. msgid "Paint Tool Options"
  7086. msgstr "Opțiuni Unealta Paint"
  7087. #: flatcamGUI/FlatCAMGUI.py:6024 flatcamGUI/ObjectUI.py:1305
  7088. msgid ""
  7089. "Creates tool paths to cover the\n"
  7090. "whole area of a polygon (remove\n"
  7091. "all copper). You will be asked\n"
  7092. "to click on the desired polygon."
  7093. msgstr ""
  7094. "Crează treceri taietoare pentru a acoperi\n"
  7095. "intreaga arie a unui poligon (pentru a indeparta\n"
  7096. "to cuprul, spre ex.). Când se actionează peste un\n"
  7097. "singur poligon se va cere să faceti click pe poligonul\n"
  7098. "dorit."
  7099. #: flatcamGUI/FlatCAMGUI.py:6048
  7100. msgid ""
  7101. "How much (fraction) of the tool\n"
  7102. "width to overlap each tool pass."
  7103. msgstr ""
  7104. "Cat de mult (o fracţie din diametrul uneltei) din diametrul uneltei,\n"
  7105. "(lăţimea de tăiere) să se suprapună peste trecerea anterioară."
  7106. #: flatcamGUI/FlatCAMGUI.py:6102 flatcamTools/ToolPaint.py:237
  7107. msgid "Selection:"
  7108. msgstr "Selecţie:"
  7109. #: flatcamGUI/FlatCAMGUI.py:6104
  7110. msgid "How to select the polygons to paint."
  7111. msgstr "Cum să se selecteze poligoanele de pictat (paint)."
  7112. #: flatcamGUI/FlatCAMGUI.py:6122
  7113. msgid "Film Tool Options"
  7114. msgstr "Opțiuni Unealta Film"
  7115. #: flatcamGUI/FlatCAMGUI.py:6127
  7116. msgid ""
  7117. "Create a PCB film from a Gerber or Geometry\n"
  7118. "FlatCAM object.\n"
  7119. "The file is saved in SVG format."
  7120. msgstr ""
  7121. "Crează un film PCB dintr-un obiect Gerber sau tip Geometrie.\n"
  7122. "Fişierul este salvat in format SVG."
  7123. #: flatcamGUI/FlatCAMGUI.py:6138 flatcamTools/ToolFilm.py:116
  7124. msgid "Film Type:"
  7125. msgstr "Tip film:"
  7126. #: flatcamGUI/FlatCAMGUI.py:6140 flatcamTools/ToolFilm.py:118
  7127. msgid ""
  7128. "Generate a Positive black film or a Negative film.\n"
  7129. "Positive means that it will print the features\n"
  7130. "with black on a white canvas.\n"
  7131. "Negative means that it will print the features\n"
  7132. "with white on a black canvas.\n"
  7133. "The Film format is SVG."
  7134. msgstr ""
  7135. "Generează un film negru Pozitiv sau un film Negativ.\n"
  7136. "Pozitiv = traseele vor fi negre pe un fundal alb.\n"
  7137. "Negativ = traseele vor fi albe pe un fundal negru.\n"
  7138. "Formatul fişierului pt filmul salvat este SVG."
  7139. #: flatcamGUI/FlatCAMGUI.py:6151 flatcamTools/ToolFilm.py:130
  7140. msgid "Border:"
  7141. msgstr "Bordura:"
  7142. #: flatcamGUI/FlatCAMGUI.py:6153 flatcamTools/ToolFilm.py:132
  7143. msgid ""
  7144. "Specify a border around the object.\n"
  7145. "Only for negative film.\n"
  7146. "It helps if we use as a Box Object the same \n"
  7147. "object as in Film Object. It will create a thick\n"
  7148. "black bar around the actual print allowing for a\n"
  7149. "better delimitation of the outline features which are of\n"
  7150. "white color like the rest and which may confound with the\n"
  7151. "surroundings if not for this border."
  7152. msgstr ""
  7153. "Specifica o bordura de jur imprejurul obiectului.\n"
  7154. "Doar pt filmele negative.\n"
  7155. "Ajuta daca folosim in Obiect Forma acelasi obiect ca in Obiect Film.\n"
  7156. "Va crea o bara solida neagra in jurul printului efectiv permitand o\n"
  7157. "delimitare exacta"
  7158. #: flatcamGUI/FlatCAMGUI.py:6166 flatcamTools/ToolFilm.py:144
  7159. msgid "Scale Stroke:"
  7160. msgstr "Scalează:"
  7161. #: flatcamGUI/FlatCAMGUI.py:6168 flatcamTools/ToolFilm.py:146
  7162. msgid ""
  7163. "Scale the line stroke thickness of each feature in the SVG file.\n"
  7164. "It means that the line that envelope each SVG feature will be thicker or "
  7165. "thinner,\n"
  7166. "therefore the fine features may be more affected by this parameter."
  7167. msgstr ""
  7168. "Scalează grosimea conturului fiecarui element din fişierul SVG.\n"
  7169. "Elementele mai mici vor fi afectate mai mult."
  7170. #: flatcamGUI/FlatCAMGUI.py:6183
  7171. msgid "Panelize Tool Options"
  7172. msgstr "Opțiuni Unealta Panelizare"
  7173. #: flatcamGUI/FlatCAMGUI.py:6188
  7174. msgid ""
  7175. "Create an object that contains an array of (x, y) elements,\n"
  7176. "each element is a copy of the source object spaced\n"
  7177. "at a X distance, Y distance of each other."
  7178. msgstr ""
  7179. "Crează un obiect care contine o arie de (linii, coloane) elemente,\n"
  7180. "unde fiecare element este o copie a obiectului sursa, separat la o\n"
  7181. "distanţă X, Y unul de celalalt."
  7182. #: flatcamGUI/FlatCAMGUI.py:6199 flatcamTools/ToolPanelize.py:147
  7183. msgid "Spacing cols:"
  7184. msgstr "Sep. coloane:"
  7185. #: flatcamGUI/FlatCAMGUI.py:6201 flatcamTools/ToolPanelize.py:149
  7186. msgid ""
  7187. "Spacing between columns of the desired panel.\n"
  7188. "In current units."
  7189. msgstr ""
  7190. "Spatiul de separare între coloane.\n"
  7191. "In unitatile curente."
  7192. #: flatcamGUI/FlatCAMGUI.py:6209 flatcamTools/ToolPanelize.py:156
  7193. msgid "Spacing rows:"
  7194. msgstr "Sep. linii:"
  7195. #: flatcamGUI/FlatCAMGUI.py:6211 flatcamTools/ToolPanelize.py:158
  7196. msgid ""
  7197. "Spacing between rows of the desired panel.\n"
  7198. "In current units."
  7199. msgstr ""
  7200. "Spatiul de separare între linii.\n"
  7201. "In unitatile curente."
  7202. #: flatcamGUI/FlatCAMGUI.py:6219 flatcamTools/ToolPanelize.py:165
  7203. msgid "Columns:"
  7204. msgstr "Coloane:"
  7205. #: flatcamGUI/FlatCAMGUI.py:6221 flatcamTools/ToolPanelize.py:167
  7206. msgid "Number of columns of the desired panel"
  7207. msgstr "Numărul de coloane ale panel-ului dorit."
  7208. #: flatcamGUI/FlatCAMGUI.py:6228 flatcamTools/ToolPanelize.py:173
  7209. msgid "Rows:"
  7210. msgstr "Linii:"
  7211. #: flatcamGUI/FlatCAMGUI.py:6230 flatcamTools/ToolPanelize.py:175
  7212. msgid "Number of rows of the desired panel"
  7213. msgstr "Numărul de linii ale panel-ului dorit."
  7214. #: flatcamGUI/FlatCAMGUI.py:6238
  7215. msgid "Panel Type:"
  7216. msgstr "Tip panel:"
  7217. #: flatcamGUI/FlatCAMGUI.py:6240
  7218. msgid ""
  7219. "Choose the type of object for the panel object:\n"
  7220. "- Gerber\n"
  7221. "- Geometry"
  7222. msgstr ""
  7223. "Alege tipul obiectului panel:\n"
  7224. "- Gerber\n"
  7225. "- Geometrie"
  7226. #: flatcamGUI/FlatCAMGUI.py:6249
  7227. msgid "Constrain within:"
  7228. msgstr "Constrange:"
  7229. #: flatcamGUI/FlatCAMGUI.py:6251 flatcamTools/ToolPanelize.py:195
  7230. msgid ""
  7231. "Area define by DX and DY within to constrain the panel.\n"
  7232. "DX and DY values are in current units.\n"
  7233. "Regardless of how many columns and rows are desired,\n"
  7234. "the final panel will have as many columns and rows as\n"
  7235. "they fit completely within selected area."
  7236. msgstr ""
  7237. "Arie definita de Dx și Dy in care se constrange panel-ul.\n"
  7238. "Dx și Dy sunt valori in unitati curente.\n"
  7239. "Indiferent de cat de multe coloane și/sau linii sunt selectate mai sus\n"
  7240. "panelul final va contine numai acel număr de linii/coloane care se inscrie\n"
  7241. "complet in aria desemnata."
  7242. #: flatcamGUI/FlatCAMGUI.py:6260 flatcamTools/ToolPanelize.py:204
  7243. msgid "Width (DX):"
  7244. msgstr "Latime (Dx):"
  7245. #: flatcamGUI/FlatCAMGUI.py:6262 flatcamTools/ToolPanelize.py:206
  7246. msgid ""
  7247. "The width (DX) within which the panel must fit.\n"
  7248. "In current units."
  7249. msgstr ""
  7250. "Lăţimea (Dx) in care panelul trebuie să se inscrie.\n"
  7251. "In unitati curente."
  7252. #: flatcamGUI/FlatCAMGUI.py:6269 flatcamTools/ToolPanelize.py:212
  7253. msgid "Height (DY):"
  7254. msgstr "Inaltime (Dy):"
  7255. #: flatcamGUI/FlatCAMGUI.py:6271 flatcamTools/ToolPanelize.py:214
  7256. msgid ""
  7257. "The height (DY)within which the panel must fit.\n"
  7258. "In current units."
  7259. msgstr ""
  7260. "Înălţimea (Dy) in care panelul trebuie să se inscrie.\n"
  7261. "In unitati curente."
  7262. #: flatcamGUI/FlatCAMGUI.py:6285
  7263. msgid "Calculators Tool Options"
  7264. msgstr "Opțiuni Unealta Calculatoare"
  7265. #: flatcamGUI/FlatCAMGUI.py:6288
  7266. msgid "<b>V-Shape Tool Calculator:</b>"
  7267. msgstr "<b>Calculator: Unealta V-shape</b>"
  7268. #: flatcamGUI/FlatCAMGUI.py:6290
  7269. msgid ""
  7270. "Calculate the tool diameter for a given V-shape tool,\n"
  7271. "having the tip diameter, tip angle and\n"
  7272. "depth-of-cut as parameters."
  7273. msgstr ""
  7274. "Calculează diametrul pentru o unealtă V-Shape data,\n"
  7275. "avand diametrul vârfului și unghiul la vârf cat și\n"
  7276. "adâncimea de tăiere, ca parametri."
  7277. #: flatcamGUI/FlatCAMGUI.py:6301 flatcamTools/ToolCalculators.py:94
  7278. msgid "Tip Diameter:"
  7279. msgstr "Dia vârf:"
  7280. #: flatcamGUI/FlatCAMGUI.py:6303
  7281. msgid ""
  7282. "This is the tool tip diameter.\n"
  7283. "It is specified by manufacturer."
  7284. msgstr ""
  7285. "Acesta este diametrul la vârf al uneltei.\n"
  7286. "Este specificat de producator."
  7287. #: flatcamGUI/FlatCAMGUI.py:6311
  7288. msgid "Tip angle:"
  7289. msgstr "Unghiul la vârf:"
  7290. #: flatcamGUI/FlatCAMGUI.py:6313
  7291. msgid ""
  7292. "This is the angle on the tip of the tool.\n"
  7293. "It is specified by manufacturer."
  7294. msgstr ""
  7295. "Acesta este unghiul la vârf al uneltei.\n"
  7296. "Este specificat de producator."
  7297. #: flatcamGUI/FlatCAMGUI.py:6323
  7298. msgid ""
  7299. "This is depth to cut into material.\n"
  7300. "In the CNCJob object it is the CutZ parameter."
  7301. msgstr ""
  7302. "Aceasta este adâncimea la care se taie in material.\n"
  7303. "In obiectul CNCJob este parametrul >Z tăiere<."
  7304. #: flatcamGUI/FlatCAMGUI.py:6330
  7305. msgid "<b>ElectroPlating Calculator:</b>"
  7306. msgstr "<b>Calculator Electroplacare:</b>"
  7307. #: flatcamGUI/FlatCAMGUI.py:6332 flatcamTools/ToolCalculators.py:152
  7308. msgid ""
  7309. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  7310. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  7311. "chloride."
  7312. msgstr ""
  7313. "Acest calculator este util pentru aceia care plachează găuri/vias\n"
  7314. "folosind o metoda cum ar fi:\n"
  7315. "- cerneala grafitate (carbon)\n"
  7316. "- clorura paladiu\n"
  7317. "- hipofosfit de calciu"
  7318. #: flatcamGUI/FlatCAMGUI.py:6342 flatcamTools/ToolCalculators.py:161
  7319. msgid "Board Length:"
  7320. msgstr "Lung. placii:"
  7321. #: flatcamGUI/FlatCAMGUI.py:6344 flatcamTools/ToolCalculators.py:165
  7322. msgid "This is the board length. In centimeters."
  7323. msgstr ""
  7324. "Aceasta este lungimea PCB-ului.\n"
  7325. "In centimetri. "
  7326. #: flatcamGUI/FlatCAMGUI.py:6350 flatcamTools/ToolCalculators.py:167
  7327. msgid "Board Width:"
  7328. msgstr "Lat. placii:"
  7329. #: flatcamGUI/FlatCAMGUI.py:6352 flatcamTools/ToolCalculators.py:171
  7330. msgid "This is the board width.In centimeters."
  7331. msgstr ""
  7332. "Aceasta este lăţimea PCB-ului.\n"
  7333. "In centimetri. "
  7334. #: flatcamGUI/FlatCAMGUI.py:6357 flatcamTools/ToolCalculators.py:173
  7335. msgid "Current Density:"
  7336. msgstr "Densitate I:"
  7337. #: flatcamGUI/FlatCAMGUI.py:6360 flatcamTools/ToolCalculators.py:177
  7338. msgid ""
  7339. "Current density to pass through the board. \n"
  7340. "In Amps per Square Feet ASF."
  7341. msgstr ""
  7342. "Densitatea de curent care să treaca prin placa.\n"
  7343. "In ASF (amperi pe picior la patrat)."
  7344. #: flatcamGUI/FlatCAMGUI.py:6366 flatcamTools/ToolCalculators.py:181
  7345. msgid "Copper Growth:"
  7346. msgstr "Grosime Cu:"
  7347. #: flatcamGUI/FlatCAMGUI.py:6369 flatcamTools/ToolCalculators.py:185
  7348. msgid ""
  7349. "How thick the copper growth is intended to be.\n"
  7350. "In microns."
  7351. msgstr ""
  7352. "Cat de gros se dorește să fie stratul de cupru depus.\n"
  7353. "In microni."
  7354. #: flatcamGUI/FlatCAMGUI.py:6382
  7355. msgid "Transform Tool Options"
  7356. msgstr "Opțiuni Unealta Transformare"
  7357. #: flatcamGUI/FlatCAMGUI.py:6387
  7358. msgid ""
  7359. "Various transformations that can be applied\n"
  7360. "on a FlatCAM object."
  7361. msgstr ""
  7362. "Diverse transformări care pot fi aplicate\n"
  7363. "asupra unui obiect FlatCAM. Cum ar fi:\n"
  7364. "- rotaţie,\n"
  7365. "- scalare,\n"
  7366. "- ofset,\n"
  7367. "- deformare\n"
  7368. "- oglindire"
  7369. #: flatcamGUI/FlatCAMGUI.py:6397
  7370. msgid "Rotate Angle:"
  7371. msgstr "Unghi Rotaţie:"
  7372. #: flatcamGUI/FlatCAMGUI.py:6399
  7373. msgid "Angle for rotation. In degrees."
  7374. msgstr "Unnghiul pentru rotaţie. In grade."
  7375. #: flatcamGUI/FlatCAMGUI.py:6406
  7376. msgid "Skew_X angle:"
  7377. msgstr "Unghi Deform_X:"
  7378. #: flatcamGUI/FlatCAMGUI.py:6408
  7379. msgid "Angle for Skew/Shear on X axis. In degrees."
  7380. msgstr "Unghiul pentru deformare pe axa X. In grade."
  7381. #: flatcamGUI/FlatCAMGUI.py:6415
  7382. msgid "Skew_Y angle:"
  7383. msgstr "Unghi Deform_Y:"
  7384. #: flatcamGUI/FlatCAMGUI.py:6417
  7385. msgid "Angle for Skew/Shear on Y axis. In degrees."
  7386. msgstr "Unghiul pentru deformare pe axa Y. In grade."
  7387. #: flatcamGUI/FlatCAMGUI.py:6424
  7388. msgid "Scale_X factor:"
  7389. msgstr "Factor Scal_X:"
  7390. #: flatcamGUI/FlatCAMGUI.py:6426
  7391. msgid "Factor for scaling on X axis."
  7392. msgstr "Factor de scalare pe axa X."
  7393. #: flatcamGUI/FlatCAMGUI.py:6433
  7394. msgid "Scale_Y factor:"
  7395. msgstr "Factor Scal_Y:"
  7396. #: flatcamGUI/FlatCAMGUI.py:6435
  7397. msgid "Factor for scaling on Y axis."
  7398. msgstr "Factor de scalare pe axa Y."
  7399. #: flatcamGUI/FlatCAMGUI.py:6443
  7400. msgid ""
  7401. "Scale the selected object(s)\n"
  7402. "using the Scale_X factor for both axis."
  7403. msgstr ""
  7404. "Scalează obiectele selectate folosind\n"
  7405. "Factor Scal_X pentru ambele axe."
  7406. #: flatcamGUI/FlatCAMGUI.py:6451 flatcamTools/ToolTransform.py:210
  7407. msgid ""
  7408. "Scale the selected object(s)\n"
  7409. "using the origin reference when checked,\n"
  7410. "and the center of the biggest bounding box\n"
  7411. "of the selected objects when unchecked."
  7412. msgstr ""
  7413. "Scalează obiectele selectate folosind\n"
  7414. "originea ca referinţă atunci când este bifat.\n"
  7415. "Când nu este bifat, foloseşte ca referinţă\n"
  7416. "centrul formei inconjuatoare care cuprinde\n"
  7417. "toate obiectele selectate."
  7418. #: flatcamGUI/FlatCAMGUI.py:6460
  7419. msgid "Offset_X val:"
  7420. msgstr "Ofset_X:"
  7421. #: flatcamGUI/FlatCAMGUI.py:6462
  7422. msgid "Distance to offset on X axis. In current units."
  7423. msgstr "Distanta la care se face ofset pe axa X. In unitatile curente."
  7424. #: flatcamGUI/FlatCAMGUI.py:6469
  7425. msgid "Offset_Y val:"
  7426. msgstr "Ofset_Y:"
  7427. #: flatcamGUI/FlatCAMGUI.py:6471
  7428. msgid "Distance to offset on Y axis. In current units."
  7429. msgstr "Distanta la care se face ofset pe axa Y. In unitatile curente."
  7430. #: flatcamGUI/FlatCAMGUI.py:6477
  7431. msgid "Mirror Reference"
  7432. msgstr "Referinţă Oglindire"
  7433. #: flatcamGUI/FlatCAMGUI.py:6479 flatcamTools/ToolTransform.py:314
  7434. msgid ""
  7435. "Flip the selected object(s)\n"
  7436. "around the point in Point Entry Field.\n"
  7437. "\n"
  7438. "The point coordinates can be captured by\n"
  7439. "left click on canvas together with pressing\n"
  7440. "SHIFT key. \n"
  7441. "Then click Add button to insert coordinates.\n"
  7442. "Or enter the coords in format (x, y) in the\n"
  7443. "Point Entry field and click Flip on X(Y)"
  7444. msgstr ""
  7445. "Oglindește obiectele selectate in jurul punctului\n"
  7446. "de referinţă.\n"
  7447. "\n"
  7448. "Coordonatele punctului se pot obtine prin click pe \n"
  7449. "canvas simultan cu apasarea tastei SHIFT.\n"
  7450. "Apoi apasa pe butonul >Adaugă< pentru a insera\n"
  7451. "coordonatele.\n"
  7452. "Alternativ se pot introduce coordonatele manual,\n"
  7453. "in forma (x, y).\n"
  7454. "La final apasa butonul de oglindire pe axa dorita. "
  7455. #: flatcamGUI/FlatCAMGUI.py:6490
  7456. msgid " Mirror Ref. Point:"
  7457. msgstr "Pt. Ref. Oglindire:"
  7458. #: flatcamGUI/FlatCAMGUI.py:6492 flatcamTools/ToolTransform.py:327
  7459. msgid ""
  7460. "Coordinates in format (x, y) used as reference for mirroring.\n"
  7461. "The 'x' in (x, y) will be used when using Flip on X and\n"
  7462. "the 'y' in (x, y) will be used when using Flip on Y and"
  7463. msgstr ""
  7464. "Coordonatele in format (x, y) ale punctului de referinţă pentru\n"
  7465. "oglindire.\n"
  7466. "X din (x,y) se va folosi când se face oglindirea pe axa X\n"
  7467. "Y din (x,y) se va folosi când se face oglindirea pe axa Y."
  7468. #: flatcamGUI/FlatCAMGUI.py:6509
  7469. msgid "SolderPaste Tool Options"
  7470. msgstr "Opțiuni Unealta Pasta Fludor"
  7471. #: flatcamGUI/FlatCAMGUI.py:6514
  7472. msgid ""
  7473. "A tool to create GCode for dispensing\n"
  7474. "solder paste onto a PCB."
  7475. msgstr ""
  7476. "O unealtă care crează cod G-Code pentru dispensarea de pastă de fludor\n"
  7477. "pe padurile unui PCB."
  7478. #: flatcamGUI/FlatCAMGUI.py:6525
  7479. msgid "Diameters of nozzle tools, separated by ','"
  7480. msgstr "Diametrele uneltelor (nozzle), separate prin virgula."
  7481. #: flatcamGUI/FlatCAMGUI.py:6532
  7482. msgid "<b>New Nozzle Dia:</b>"
  7483. msgstr "<b>Nou Dia::</b>"
  7484. #: flatcamGUI/FlatCAMGUI.py:6534 flatcamTools/ToolSolderPaste.py:103
  7485. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  7486. msgstr ""
  7487. "Valoarea pentru diametrul unei noi unelte (nozzle) pentru adaugare in Tabela "
  7488. "de Unelte"
  7489. #: flatcamGUI/FlatCAMGUI.py:6542 flatcamTools/ToolSolderPaste.py:166
  7490. msgid "Z Dispense Start:"
  7491. msgstr "Z start disp.:"
  7492. #: flatcamGUI/FlatCAMGUI.py:6544 flatcamTools/ToolSolderPaste.py:168
  7493. msgid "The height (Z) when solder paste dispensing starts."
  7494. msgstr "Înălţimea (Z) când incepe dispensarea de pastă de fludor."
  7495. #: flatcamGUI/FlatCAMGUI.py:6551 flatcamTools/ToolSolderPaste.py:174
  7496. msgid "Z Dispense:"
  7497. msgstr "Z disp.:"
  7498. #: flatcamGUI/FlatCAMGUI.py:6553 flatcamTools/ToolSolderPaste.py:176
  7499. msgid "The height (Z) when doing solder paste dispensing."
  7500. msgstr "Înălţimea (Z) in timp ce se face dispensarea de pastă de fludor."
  7501. #: flatcamGUI/FlatCAMGUI.py:6560 flatcamTools/ToolSolderPaste.py:183
  7502. msgid "Z Dispense Stop:"
  7503. msgstr "Z stop disp.:"
  7504. #: flatcamGUI/FlatCAMGUI.py:6562 flatcamTools/ToolSolderPaste.py:185
  7505. msgid "The height (Z) when solder paste dispensing stops."
  7506. msgstr "Înălţimea (Z) când se opreste dispensarea de pastă de fludor."
  7507. #: flatcamGUI/FlatCAMGUI.py:6569 flatcamTools/ToolSolderPaste.py:191
  7508. msgid "Z Travel:"
  7509. msgstr "Z deplasare:"
  7510. #: flatcamGUI/FlatCAMGUI.py:6571 flatcamTools/ToolSolderPaste.py:193
  7511. msgid ""
  7512. "The height (Z) for travel between pads\n"
  7513. "(without dispensing solder paste)."
  7514. msgstr ""
  7515. "Înălţimea (Z) când se face deplasare între pad-uri.\n"
  7516. "(fără dispensare de pastă de fludor)."
  7517. #: flatcamGUI/FlatCAMGUI.py:6579 flatcamTools/ToolSolderPaste.py:200
  7518. msgid "Z Toolchange:"
  7519. msgstr "Z schimb. unealtă:"
  7520. #: flatcamGUI/FlatCAMGUI.py:6581 flatcamTools/ToolSolderPaste.py:202
  7521. msgid "The height (Z) for tool (nozzle) change."
  7522. msgstr "Înălţimea (Z) când se schimbă unealta (nozzle-ul)."
  7523. #: flatcamGUI/FlatCAMGUI.py:6588 flatcamTools/ToolSolderPaste.py:208
  7524. msgid "XY Toolchange:"
  7525. msgstr "XY schimb unealtă:"
  7526. #: flatcamGUI/FlatCAMGUI.py:6590 flatcamTools/ToolSolderPaste.py:210
  7527. msgid ""
  7528. "The X,Y location for tool (nozzle) change.\n"
  7529. "The format is (x, y) where x and y are real numbers."
  7530. msgstr ""
  7531. "Coordonatele X, Y pentru schimbarea uneltei (nozzle).\n"
  7532. "Formatul este (x,y) unde x și y sunt numere Reale."
  7533. #: flatcamGUI/FlatCAMGUI.py:6598 flatcamTools/ToolSolderPaste.py:217
  7534. msgid "Feedrate X-Y:"
  7535. msgstr "Feedrate X-Y:"
  7536. #: flatcamGUI/FlatCAMGUI.py:6600 flatcamTools/ToolSolderPaste.py:219
  7537. msgid "Feedrate (speed) while moving on the X-Y plane."
  7538. msgstr "Viteza de deplasare a uneltei când se deplasează in planul X-Y."
  7539. #: flatcamGUI/FlatCAMGUI.py:6607 flatcamTools/ToolSolderPaste.py:225
  7540. msgid "Feedrate Z:"
  7541. msgstr "Feedrate Z:"
  7542. #: flatcamGUI/FlatCAMGUI.py:6609 flatcamTools/ToolSolderPaste.py:227
  7543. msgid ""
  7544. "Feedrate (speed) while moving vertically\n"
  7545. "(on Z plane)."
  7546. msgstr ""
  7547. "Viteza de deplasare a uneltei când se misca in plan vertical (planul Z)."
  7548. #: flatcamGUI/FlatCAMGUI.py:6617 flatcamTools/ToolSolderPaste.py:234
  7549. msgid "Feedrate Z Dispense:"
  7550. msgstr "Feedrate Z disp.:"
  7551. #: flatcamGUI/FlatCAMGUI.py:6619
  7552. msgid ""
  7553. "Feedrate (speed) while moving up vertically\n"
  7554. "to Dispense position (on Z plane)."
  7555. msgstr ""
  7556. "Viteza de deplasare la mișcarea pe verticala spre\n"
  7557. "poziţia de dispensare (in planul Z)."
  7558. #: flatcamGUI/FlatCAMGUI.py:6627 flatcamTools/ToolSolderPaste.py:243
  7559. msgid "Spindle Speed FWD:"
  7560. msgstr "Viteza motor inainte:"
  7561. #: flatcamGUI/FlatCAMGUI.py:6629 flatcamTools/ToolSolderPaste.py:245
  7562. msgid ""
  7563. "The dispenser speed while pushing solder paste\n"
  7564. "through the dispenser nozzle."
  7565. msgstr ""
  7566. "Viteza motorului de dispensare in timp ce impinge pastă de fludor\n"
  7567. "prin orificiul uneltei de dispensare."
  7568. #: flatcamGUI/FlatCAMGUI.py:6637 flatcamTools/ToolSolderPaste.py:252
  7569. msgid "Dwell FWD:"
  7570. msgstr "Pauza dupa disp.:"
  7571. #: flatcamGUI/FlatCAMGUI.py:6639 flatcamTools/ToolSolderPaste.py:254
  7572. msgid "Pause after solder dispensing."
  7573. msgstr "Pauza dupa dispensarea de pastă de fludor."
  7574. #: flatcamGUI/FlatCAMGUI.py:6646 flatcamTools/ToolSolderPaste.py:260
  7575. msgid "Spindle Speed REV:"
  7576. msgstr "Viteza motor inapoi:"
  7577. #: flatcamGUI/FlatCAMGUI.py:6648 flatcamTools/ToolSolderPaste.py:262
  7578. msgid ""
  7579. "The dispenser speed while retracting solder paste\n"
  7580. "through the dispenser nozzle."
  7581. msgstr ""
  7582. "Viteza motorului de dispensare in timp ce retrage pasta de fludor\n"
  7583. "prin orificiul uneltei de dispensare."
  7584. #: flatcamGUI/FlatCAMGUI.py:6656 flatcamTools/ToolSolderPaste.py:269
  7585. msgid "Dwell REV:"
  7586. msgstr "Pauza dupa rev:"
  7587. #: flatcamGUI/FlatCAMGUI.py:6658 flatcamTools/ToolSolderPaste.py:271
  7588. msgid ""
  7589. "Pause after solder paste dispenser retracted,\n"
  7590. "to allow pressure equilibrium."
  7591. msgstr ""
  7592. "Pauza dupa ce pasta de fludor a fost retrasă,\n"
  7593. "necesară pt a ajunge la un echilibru al presiunilor."
  7594. #: flatcamGUI/FlatCAMGUI.py:6665 flatcamTools/ToolSolderPaste.py:277
  7595. msgid "PostProcessors:"
  7596. msgstr "Postprocesoare:"
  7597. #: flatcamGUI/FlatCAMGUI.py:6667 flatcamTools/ToolSolderPaste.py:279
  7598. msgid "Files that control the GCode generation."
  7599. msgstr "Fişiere care controlează generarea codului G-Code."
  7600. #: flatcamGUI/FlatCAMGUI.py:6697 flatcamGUI/FlatCAMGUI.py:6703
  7601. msgid "Idle."
  7602. msgstr "Inactiv."
  7603. #: flatcamGUI/FlatCAMGUI.py:6727
  7604. msgid "Application started ..."
  7605. msgstr "Aplicaţia a pornit ..."
  7606. #: flatcamGUI/FlatCAMGUI.py:6728
  7607. msgid "Hello!"
  7608. msgstr "Bună!"
  7609. #: flatcamGUI/ObjectUI.py:33
  7610. msgid "FlatCAM Object"
  7611. msgstr "Obiect FlatCAM"
  7612. #: flatcamGUI/ObjectUI.py:58
  7613. msgid ""
  7614. "BASIC is suitable for a beginner. Many parameters\n"
  7615. "are hidden from the user in this mode.\n"
  7616. "ADVANCED mode will make available all parameters.\n"
  7617. "\n"
  7618. "To change the application LEVEL, go to:\n"
  7619. "Edit -> Preferences -> General and check:\n"
  7620. "'APP. LEVEL' radio button."
  7621. msgstr ""
  7622. "Modul Baza este potrivit pt incepatori. Multi parametri sunt\n"
  7623. "ascunsi de user in acest mod.\n"
  7624. "Modul Avansat face disponibili toti parametrii programului.\n"
  7625. "\n"
  7626. "Pt a schimba modul de lucru al aplicaţiei mergi in:\n"
  7627. "Edit -> Preferințe -> General și bifează:\n"
  7628. "butonul radio: >Nivel App<"
  7629. #: flatcamGUI/ObjectUI.py:79
  7630. msgid "<b>Scale:</b>"
  7631. msgstr "<b>Scalează:</b>"
  7632. #: flatcamGUI/ObjectUI.py:81
  7633. msgid "Change the size of the object."
  7634. msgstr "Schimbă dimensiunea obiectului."
  7635. #: flatcamGUI/ObjectUI.py:89
  7636. msgid "Factor:"
  7637. msgstr "Factor:"
  7638. #: flatcamGUI/ObjectUI.py:91
  7639. msgid ""
  7640. "Factor by which to multiply\n"
  7641. "geometric features of this object."
  7642. msgstr ""
  7643. "Factor cu care se multiplica \n"
  7644. "caracteristicile geometrice ale\n"
  7645. "acestui obiect."
  7646. #: flatcamGUI/ObjectUI.py:102
  7647. msgid "Perform scaling operation."
  7648. msgstr "Efectuează operatia de scalare."
  7649. #: flatcamGUI/ObjectUI.py:108
  7650. msgid "<b>Offset:</b>"
  7651. msgstr "<b>Ofset:</b>"
  7652. #: flatcamGUI/ObjectUI.py:110
  7653. msgid "Change the position of this object."
  7654. msgstr "Schimbă poziţia acestui obiect."
  7655. #: flatcamGUI/ObjectUI.py:117
  7656. msgid "Vector:"
  7657. msgstr "Vector:"
  7658. #: flatcamGUI/ObjectUI.py:119
  7659. msgid ""
  7660. "Amount by which to move the object\n"
  7661. "in the x and y axes in (x, y) format."
  7662. msgstr ""
  7663. "Valoare cu cat să se deplaseze obiectul\n"
  7664. "pe axele X și /sau Y in formatul (x,y)."
  7665. #: flatcamGUI/ObjectUI.py:129
  7666. msgid "Perform the offset operation."
  7667. msgstr "Efectuează operația de Ofset."
  7668. #: flatcamGUI/ObjectUI.py:143
  7669. msgid "Gerber Object"
  7670. msgstr "Obiect Gerber"
  7671. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:517
  7672. #: flatcamGUI/ObjectUI.py:839 flatcamGUI/ObjectUI.py:1382
  7673. msgid "<b>Name:</b>"
  7674. msgstr "<b>Nume:</b>"
  7675. #: flatcamGUI/ObjectUI.py:203
  7676. msgid ""
  7677. "Toggle the display of the Gerber Apertures Table.\n"
  7678. "When unchecked, it will delete all mark shapes\n"
  7679. "that are drawn on canvas."
  7680. msgstr ""
  7681. "Comută afișarea tabelei de aperturi Gerber.\n"
  7682. "Când se debifează, toate marcajele aperturilor\n"
  7683. "care sutn curent afisate, vor fi șterse."
  7684. #: flatcamGUI/ObjectUI.py:214
  7685. msgid "Mark All"
  7686. msgstr "Marc. Toate"
  7687. #: flatcamGUI/ObjectUI.py:216
  7688. msgid ""
  7689. "When checked it will display all the apertures.\n"
  7690. "When unchecked, it will delete all mark shapes\n"
  7691. "that are drawn on canvas."
  7692. msgstr ""
  7693. "Când este bifat se vor afisa toate aperturile.\n"
  7694. "Când este debifat se vor șterge toate marcajele de aperturi."
  7695. #: flatcamGUI/ObjectUI.py:244
  7696. msgid "Mark the aperture instances on canvas."
  7697. msgstr "Marchează aperturile pe canvas."
  7698. #: flatcamGUI/ObjectUI.py:262
  7699. msgid ""
  7700. "Diameter of the cutting tool.\n"
  7701. "If you want to have an isolation path\n"
  7702. "inside the actual shape of the Gerber\n"
  7703. "feature, use a negative value for\n"
  7704. "this parameter."
  7705. msgstr ""
  7706. "Diametrul uneltei taietoare.\n"
  7707. "Daca se dorește să se aibă o trecere de izolaţie\n"
  7708. "in interiorul poligonului Gerber (traseu), foloseşte\n"
  7709. "o valoare negativă pt acest parametru."
  7710. #: flatcamGUI/ObjectUI.py:273
  7711. msgid "Passes:"
  7712. msgstr "Treceri:"
  7713. #: flatcamGUI/ObjectUI.py:307
  7714. msgid "Combine"
  7715. msgstr "Combina"
  7716. #: flatcamGUI/ObjectUI.py:323
  7717. msgid "<b>Generate Isolation Geometry:</b>"
  7718. msgstr "<b>Creează Geometrie de Izolare:</b>"
  7719. #: flatcamGUI/ObjectUI.py:325
  7720. msgid ""
  7721. "Create a Geometry object with toolpaths to cut \n"
  7722. "isolation outside, inside or on both sides of the\n"
  7723. "object. For a Gerber object outside means outside\n"
  7724. "of the Gerber feature and inside means inside of\n"
  7725. "the Gerber feature, if possible at all. This means\n"
  7726. "that only if the Gerber feature has openings inside, they\n"
  7727. "will be isolated. If what is wanted is to cut isolation\n"
  7728. "inside the actual Gerber feature, use a negative tool\n"
  7729. "diameter above."
  7730. msgstr ""
  7731. "Crează un obiect Geometrie cu treceri taietoare pentru\n"
  7732. "a efectua o izolare in afară, in interior sau pe ambele parti\n"
  7733. "ale obiectului.\n"
  7734. "Pt un Gerber >in afară< inseamna in exteriorul elem. Gerber\n"
  7735. "(traseu, zona etc) iar >in interior< inseamna efectiv in interiorul\n"
  7736. "acelui elem. Gerber (daca poate fi posibil)."
  7737. #: flatcamGUI/ObjectUI.py:344
  7738. msgid "FULL Geo"
  7739. msgstr "Geo Full"
  7740. #: flatcamGUI/ObjectUI.py:346
  7741. msgid ""
  7742. "Create the Geometry Object\n"
  7743. "for isolation routing. It contains both\n"
  7744. "the interiors and exteriors geometry."
  7745. msgstr ""
  7746. "Crează un obiect Geometrie pt izolare.\n"
  7747. "Contine atat geometriile exterioare cat și\n"
  7748. "pe cele interioare."
  7749. #: flatcamGUI/ObjectUI.py:355
  7750. msgid "Ext Geo"
  7751. msgstr "Geo Ext"
  7752. #: flatcamGUI/ObjectUI.py:357
  7753. msgid ""
  7754. "Create the Geometry Object\n"
  7755. "for isolation routing containing\n"
  7756. "only the exteriors geometry."
  7757. msgstr ""
  7758. "Crează obiectul Geometrie\n"
  7759. "pt izolare conținând doar\n"
  7760. "geometriile de exterior."
  7761. #: flatcamGUI/ObjectUI.py:364
  7762. msgid "Int Geo"
  7763. msgstr "Geo Int"
  7764. #: flatcamGUI/ObjectUI.py:366
  7765. msgid ""
  7766. "Create the Geometry Object\n"
  7767. "for isolation routing containing\n"
  7768. "only the interiors geometry."
  7769. msgstr ""
  7770. "Crează obiectul Geometrie\n"
  7771. "pt izolare conținând doar\n"
  7772. "geometriile de interior."
  7773. #: flatcamGUI/ObjectUI.py:384
  7774. msgid "<b>Clear N-copper:</b>"
  7775. msgstr "<b>Curăță Non-Cu:</b>"
  7776. #: flatcamGUI/ObjectUI.py:394 flatcamTools/ToolNonCopperClear.py:240
  7777. msgid ""
  7778. "Create the Geometry Object\n"
  7779. "for non-copper routing."
  7780. msgstr ""
  7781. "Crează un obiect Geometrie\n"
  7782. "pt rutare non-cupru (adica pt\n"
  7783. "curățare zone de cupru)."
  7784. #: flatcamGUI/ObjectUI.py:400
  7785. msgid "<b>Board cutout:</b>"
  7786. msgstr "<b>Decupare PCB:</b>"
  7787. #: flatcamGUI/ObjectUI.py:408 flatcamTools/ToolCutOut.py:313
  7788. msgid "Cutout Tool"
  7789. msgstr "Unealta Decupare"
  7790. #: flatcamGUI/ObjectUI.py:410
  7791. msgid ""
  7792. "Generate the geometry for\n"
  7793. "the board cutout."
  7794. msgstr ""
  7795. "Generează un obiect Geometrie\n"
  7796. "pt decuparea PCB."
  7797. #: flatcamGUI/ObjectUI.py:416
  7798. msgid "<b>Non-copper regions:</b>"
  7799. msgstr "<b>Regiuni fără Cu.:</b>"
  7800. #: flatcamGUI/ObjectUI.py:418
  7801. msgid ""
  7802. "Create polygons covering the\n"
  7803. "areas without copper on the PCB.\n"
  7804. "Equivalent to the inverse of this\n"
  7805. "object. Can be used to remove all\n"
  7806. "copper from a specified region."
  7807. msgstr ""
  7808. "Crează poligoane acopering zonele fără\n"
  7809. "cupru de pe PCB. Echivalent cu inversul\n"
  7810. "obiectului sursa. Poate fi folosit pt a indeparta\n"
  7811. "cuprul din zona specificata."
  7812. #: flatcamGUI/ObjectUI.py:443 flatcamGUI/ObjectUI.py:474
  7813. msgid "Rounded Geo"
  7814. msgstr "Geo rotunjita"
  7815. #: flatcamGUI/ObjectUI.py:445
  7816. msgid "Resulting geometry will have rounded corners."
  7817. msgstr ""
  7818. "Obiectul Geometrie rezultat \n"
  7819. "va avea colțurile rotunjite."
  7820. #: flatcamGUI/ObjectUI.py:450 flatcamGUI/ObjectUI.py:484
  7821. #: flatcamTools/ToolCutOut.py:168 flatcamTools/ToolCutOut.py:188
  7822. #: flatcamTools/ToolCutOut.py:239 flatcamTools/ToolSolderPaste.py:127
  7823. msgid "Generate Geo"
  7824. msgstr "Crează Geo"
  7825. #: flatcamGUI/ObjectUI.py:456
  7826. msgid ""
  7827. "Create a geometry surrounding the Gerber object.\n"
  7828. "Square shape."
  7829. msgstr ""
  7830. "Generează un obiect tip Geometrie care va inconjura\n"
  7831. "obiectul Gerber. Forma patratica (rectangulara)."
  7832. #: flatcamGUI/ObjectUI.py:486
  7833. msgid "Generate the Geometry object."
  7834. msgstr "Generează obiectul Geometrie."
  7835. #: flatcamGUI/ObjectUI.py:497
  7836. msgid "Excellon Object"
  7837. msgstr "Obiect Excellon"
  7838. #: flatcamGUI/ObjectUI.py:508
  7839. msgid "Solid circles."
  7840. msgstr "Cercuri solide."
  7841. #: flatcamGUI/ObjectUI.py:536 flatcamGUI/ObjectUI.py:858
  7842. msgid "<b>Tools Table</b>"
  7843. msgstr "<b>Tabela Unelte</b>"
  7844. #: flatcamGUI/ObjectUI.py:556
  7845. msgid "Drills"
  7846. msgstr "Găuri"
  7847. #: flatcamGUI/ObjectUI.py:556
  7848. msgid "Slots"
  7849. msgstr "Sloturi"
  7850. #: flatcamGUI/ObjectUI.py:557
  7851. msgid "Offset Z"
  7852. msgstr "Ofset Z:"
  7853. #: flatcamGUI/ObjectUI.py:561
  7854. msgid ""
  7855. "This is the Tool Number.\n"
  7856. "When ToolChange is checked, on toolchange event this value\n"
  7857. "will be showed as a T1, T2 ... Tn in the Machine Code."
  7858. msgstr ""
  7859. "Acesta este numărul uneltei.\n"
  7860. "Când se foloseşte optiunea de pauza pt schimb unealtă,\n"
  7861. "la evenim. de schimb unealtă, va aparea sub forma T1, T2, etc\n"
  7862. "in codul masina CNC."
  7863. #: flatcamGUI/ObjectUI.py:565 flatcamGUI/ObjectUI.py:904
  7864. #: flatcamTools/ToolNonCopperClear.py:97 flatcamTools/ToolPaint.py:94
  7865. msgid ""
  7866. "Tool Diameter. It's value (in current FlatCAM units) \n"
  7867. "is the cut width into the material."
  7868. msgstr ""
  7869. "Diametrul uneltei. Valoarea să (in unitati curente)\n"
  7870. "reprezinta lăţimea taieturii in material."
  7871. #: flatcamGUI/ObjectUI.py:568
  7872. msgid ""
  7873. "The number of Drill holes. Holes that are drilled with\n"
  7874. "a drill bit."
  7875. msgstr ""
  7876. "Numărul de găuri. Sunt găuri efectuate prin\n"
  7877. "operațiuni de găurire efectuate cu un burghiu."
  7878. #: flatcamGUI/ObjectUI.py:571
  7879. msgid ""
  7880. "The number of Slot holes. Holes that are created by\n"
  7881. "milling them with an endmill bit."
  7882. msgstr ""
  7883. "Numărul de sloturi. Sunt găuri efectuate\n"
  7884. "prin op. de frezare cu o freza."
  7885. #: flatcamGUI/ObjectUI.py:578
  7886. msgid "Toggle display of the drills for the current tool."
  7887. msgstr "Comută afișarea găurilor pt unealta curentă."
  7888. #: flatcamGUI/ObjectUI.py:586
  7889. msgid ""
  7890. "Create a CNC Job object\n"
  7891. "for this drill object."
  7892. msgstr ""
  7893. "Crează un obiect CNCJob din\n"
  7894. "acest obiect."
  7895. #: flatcamGUI/ObjectUI.py:615 flatcamGUI/ObjectUI.py:1118
  7896. msgid "Tool change"
  7897. msgstr "Schimb unealtă"
  7898. #: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:1111
  7899. msgid "Tool change Z:"
  7900. msgstr "Z schimb unealtă:"
  7901. #: flatcamGUI/ObjectUI.py:625 flatcamGUI/ObjectUI.py:1114
  7902. msgid ""
  7903. "Z-axis position (height) for\n"
  7904. "tool change."
  7905. msgstr "Înălţimea, pe axa Z, pentru schimbul uneltei."
  7906. #: flatcamGUI/ObjectUI.py:636
  7907. msgid ""
  7908. "Tool height just before starting the work.\n"
  7909. "Delete the value if you don't need this feature."
  7910. msgstr ""
  7911. "Înălţimea uneltei la inceputul lucrului.\n"
  7912. "Seterge aceasta valoare daca nu este folosita."
  7913. #: flatcamGUI/ObjectUI.py:646
  7914. msgid ""
  7915. "Z-axis position (height) for\n"
  7916. "the last move."
  7917. msgstr "Înălţimea, pe axa Z, la finalul lucrului."
  7918. #: flatcamGUI/ObjectUI.py:654
  7919. msgid "Feedrate (Plunge):"
  7920. msgstr "Feedrate (Plonjare):"
  7921. #: flatcamGUI/ObjectUI.py:656
  7922. msgid ""
  7923. "Tool speed while drilling\n"
  7924. "(in units per minute).\n"
  7925. "This is for linear move G01."
  7926. msgstr ""
  7927. "Viteza uneltei când se face găuriea\n"
  7928. "(in unitati pe minut).\n"
  7929. "Aceasta este mișcarea lineara G01."
  7930. #: flatcamGUI/ObjectUI.py:709
  7931. msgid ""
  7932. "The json file that dictates\n"
  7933. "gcode output."
  7934. msgstr ""
  7935. "Fişierul care dictează codul G-Code \n"
  7936. "generat. In format JSON."
  7937. #: flatcamGUI/ObjectUI.py:741
  7938. msgid ""
  7939. "Select from the Tools Table above\n"
  7940. "the tools you want to include."
  7941. msgstr ""
  7942. "Selectează din Tabela de Unelte de mai sus,\n"
  7943. "uneltele care trebuie incluse."
  7944. #: flatcamGUI/ObjectUI.py:748
  7945. msgid "<b>Type: </b>"
  7946. msgstr "<b>Tip:</b>"
  7947. #: flatcamGUI/ObjectUI.py:750
  7948. msgid ""
  7949. "Choose what to use for GCode generation:\n"
  7950. "'Drills', 'Slots' or 'Both'.\n"
  7951. "When choosing 'Slots' or 'Both', slots will be\n"
  7952. "converted to a series of drills."
  7953. msgstr ""
  7954. "Alege ce să folosești pentru generarea de G-Code:\n"
  7955. "- Găuri\n"
  7956. "- Sloturi\n"
  7957. "- Ambele\n"
  7958. "Când se alege >Sloturi< sau >Ambele<, sloturile\n"
  7959. "vor fi convertite intr-o serie de găuriri."
  7960. #: flatcamGUI/ObjectUI.py:765
  7961. msgid "Create GCode"
  7962. msgstr "Crează GCode"
  7963. #: flatcamGUI/ObjectUI.py:767
  7964. msgid "Generate the CNC Job."
  7965. msgstr "Generează un obiect CNCJob."
  7966. #: flatcamGUI/ObjectUI.py:779
  7967. msgid ""
  7968. "Select from the Tools Table above\n"
  7969. " the hole dias that are to be milled."
  7970. msgstr ""
  7971. "Selecteaa din Tabela de Unelte de mai sus\n"
  7972. "acele găuri care vor fi frezate."
  7973. #: flatcamGUI/ObjectUI.py:786
  7974. msgid "Drills Tool dia:"
  7975. msgstr "Dia. Burghiu:"
  7976. #: flatcamGUI/ObjectUI.py:793
  7977. msgid "Mill Drills Geo"
  7978. msgstr "Geo pt frezare găuri"
  7979. #: flatcamGUI/ObjectUI.py:795
  7980. msgid ""
  7981. "Create the Geometry Object\n"
  7982. "for milling DRILLS toolpaths."
  7983. msgstr ""
  7984. "Crează un obiect tip Geometrie pt.\n"
  7985. "frezarea rutelor create din Găuri."
  7986. #: flatcamGUI/ObjectUI.py:802
  7987. msgid "Slots Tool dia:"
  7988. msgstr "Dia freza:"
  7989. #: flatcamGUI/ObjectUI.py:809
  7990. msgid "Mill Slots Geo"
  7991. msgstr "Geo pt. frezare sloturi"
  7992. #: flatcamGUI/ObjectUI.py:811
  7993. msgid ""
  7994. "Create the Geometry Object\n"
  7995. "for milling SLOTS toolpaths."
  7996. msgstr ""
  7997. "Crează un obiect tip Geometrie pt.\n"
  7998. "frezarea rutelor create din Sloturi."
  7999. #: flatcamGUI/ObjectUI.py:829
  8000. msgid "Geometry Object"
  8001. msgstr "Obiect Geometrie"
  8002. #: flatcamGUI/ObjectUI.py:860
  8003. msgid ""
  8004. "Tools in this Geometry object used for cutting.\n"
  8005. "The 'Offset' entry will set an offset for the cut.\n"
  8006. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8007. "'Type' entry is only informative and it allow to know the \n"
  8008. "intent of using the current tool. \n"
  8009. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8010. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8011. "ball(B), or V-Shaped(V). \n"
  8012. "When V-shaped is selected the 'Type' entry is automatically \n"
  8013. "set to Isolation, the CutZ parameter in the UI form is\n"
  8014. "grayed out and Cut Z is automatically calculated from the newly \n"
  8015. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  8016. msgstr ""
  8017. "Uneltele din acest obiect Geometrie folosit pentru tăiere.\n"
  8018. "Intrarea >Ofset< va seta un ofset pentru tăiere.\n"
  8019. "Acesta poate fi Inauntru, In afară, Pe cale și Personalizat.\n"
  8020. "Intrarea >Tip< este doar informativa și permite să stim intenția\n"
  8021. "pentru care folosim unealta aleasă.\n"
  8022. "Poate să fie Grosier, Finisare și Izolaţie.\n"
  8023. "Intrarea >Tip unealta< (TU) poate fi: Circular (cu unul sau mai\n"
  8024. "multi dinti C1 ...C4), rotunda (B) sau cu vârf V-Shape (V).\n"
  8025. "\n"
  8026. "Când V-shape este selectat atunci și >Tip< este automat setat \n"
  8027. "in 'Izolare', prametrul >Z tăiere< din UI este dezactivat (gri) pt că\n"
  8028. "este acum calculat automat din doi noi parametri care sunt afisati:\n"
  8029. "- V-Dia \n"
  8030. "- V-unghi"
  8031. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  8032. msgid "Dia"
  8033. msgstr "Dia"
  8034. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  8035. msgid "TT"
  8036. msgstr "TU"
  8037. #: flatcamGUI/ObjectUI.py:898
  8038. msgid ""
  8039. "This is the Tool Number.\n"
  8040. "When ToolChange is checked, on toolchange event this value\n"
  8041. "will be showed as a T1, T2 ... Tn"
  8042. msgstr ""
  8043. "Acesta este numărul uneltei.\n"
  8044. "Când se foloseşte optiunea de pauza pt schimb unealtă,\n"
  8045. "la evenim. de schimb unealtă, va aparea sub forma T1, T2, etc\n"
  8046. "in codul masina CNC."
  8047. #: flatcamGUI/ObjectUI.py:909
  8048. msgid ""
  8049. "The value for the Offset can be:\n"
  8050. "- Path -> There is no offset, the tool cut will be done through the geometry "
  8051. "line.\n"
  8052. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  8053. "'pocket'.\n"
  8054. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  8055. msgstr ""
  8056. "Valorile pt Ofset pot fi:\n"
  8057. "- Pe cale -> Ofsetul este zero, tăietura va fi efectuatat pe linia "
  8058. "geometrică\n"
  8059. "- În(ăuntru) -> Tăietura va urma geometria pe interior. Va crea un "
  8060. "'buzunar'\n"
  8061. "- Afară-> Tăietura va urma geometria pe exterior"
  8062. #: flatcamGUI/ObjectUI.py:916
  8063. msgid ""
  8064. "The (Operation) Type has only informative value. Usually the UI form "
  8065. "values \n"
  8066. "are choosed based on the operation type and this will serve as a reminder.\n"
  8067. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  8068. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  8069. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  8070. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  8071. "tip."
  8072. msgstr ""
  8073. "Tipul (operaţiei efectuate cu unealta) are doar o valoare informativa. De "
  8074. "obicei\n"
  8075. "valorile din UI sunt alese bazate pe tipul operaţiei și acesta ne serveste "
  8076. "ca și\n"
  8077. "notificare. Poate să fie: Grosier, Finisare sau Izolare.\n"
  8078. "Grosier -> putem alege de ex un feedrate scazut și tăiere in mai multe "
  8079. "etape.\n"
  8080. "Finisare -> alegem un feedrate mai mare și tăiere dintr-o singură operaţie\n"
  8081. "Izolare -> avem nevoie de un feedrate scazut pt ca se foloseşte o freza cu "
  8082. "un\n"
  8083. "vârf fin, ascuțit."
  8084. #: flatcamGUI/ObjectUI.py:925
  8085. msgid ""
  8086. "The Tool Type (TT) can be:\n"
  8087. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  8088. "cut width in material\n"
  8089. "is exactly the tool diameter.\n"
  8090. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  8091. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  8092. "two additional UI form\n"
  8093. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  8094. "the Z-Cut parameter such\n"
  8095. "as the cut width into material will be equal with the value in the Tool "
  8096. "Diameter column of this table.\n"
  8097. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  8098. "as Isolation."
  8099. msgstr ""
  8100. "Tipul Uneltei (TU) poate fi:\n"
  8101. "- Circular cu 1 ... 4 dinti -> are aspect informativ. Lăţimea de tăiere este "
  8102. "exact diametrul uneltei.\n"
  8103. "- Rotund (ball) -> val. informativa și face referinţă la tipul de freza "
  8104. "Ball\n"
  8105. "- V-Shape -> produce modificari in UI. Va dezactiva parametrul >Z tăiere< "
  8106. "deoarece acesta va fi\n"
  8107. "calculat automat din valorile >V-dia< și >V-unghi, parametri care sunt acum "
  8108. "afisati in UI, cat și din\n"
  8109. "lăţimea de tăiere in material care este de fapt valoarea diametrului "
  8110. "uneltei.\n"
  8111. "Alegerea tipului V-Shape (forma in V) va selecta automat Tipul de Operaţie "
  8112. "ca Izolare."
  8113. #: flatcamGUI/ObjectUI.py:936
  8114. msgid ""
  8115. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  8116. "that holds the geometry\n"
  8117. "data into the tools. For those geometries, deleting the tool will delete the "
  8118. "geometry data also,\n"
  8119. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  8120. "plot on canvas\n"
  8121. "for the corresponding tool."
  8122. msgstr ""
  8123. "Coloana de afișare. Este vizibila doar pentru obiecte Geometrie de tip "
  8124. "MultiGeo, ceea ce inseamna că\n"
  8125. "obiectul stochează datele geometrice in variabilele unelte. \n"
  8126. "\n"
  8127. "ATENTIE: Pentru aceste obiecte, ștergerea unei unelte conduce automat și la "
  8128. "ștergerea \n"
  8129. "datelor geometrice asociate. Din checkbox-urile asociate, fiecarei unelte i "
  8130. "se poate activa/dezactiva\n"
  8131. "afișarea in canvas."
  8132. #: flatcamGUI/ObjectUI.py:949
  8133. msgid "Tool Offset:"
  8134. msgstr "Ofset unealtă:"
  8135. #: flatcamGUI/ObjectUI.py:952
  8136. msgid ""
  8137. "The value to offset the cut when \n"
  8138. "the Offset type selected is 'Offset'.\n"
  8139. "The value can be positive for 'outside'\n"
  8140. "cut and negative for 'inside' cut."
  8141. msgstr ""
  8142. "Valoarea cu care se face ofset când tipul de ofset selectat\n"
  8143. "este >Ofset<. Aceasta valoare poate fi pozitivă pentru un ofset\n"
  8144. "in exterior sau poate fi negativă pentru un ofset in interior."
  8145. #: flatcamGUI/ObjectUI.py:975
  8146. msgid "<b>Tool Dia:</b>"
  8147. msgstr "<b>Dia unealtă:</b>"
  8148. #: flatcamGUI/ObjectUI.py:994 flatcamTools/ToolNonCopperClear.py:136
  8149. #: flatcamTools/ToolPaint.py:133
  8150. msgid ""
  8151. "Add a new tool to the Tool Table\n"
  8152. "with the diameter specified above."
  8153. msgstr ""
  8154. "Adaugă o noua unelata in Tabela de Unelte,\n"
  8155. "cu diametrul specificat mai sus."
  8156. #: flatcamGUI/ObjectUI.py:1002
  8157. msgid ""
  8158. "Copy a selection of tools in the Tool Table\n"
  8159. "by first selecting a row in the Tool Table."
  8160. msgstr ""
  8161. "Copiază o selecţie de unelte in Tabela de Unelte prin\n"
  8162. "selectarea unei linii (sau mai multe) in Tabela de Unelte."
  8163. #: flatcamGUI/ObjectUI.py:1010
  8164. msgid ""
  8165. "Delete a selection of tools in the Tool Table\n"
  8166. "by first selecting a row in the Tool Table."
  8167. msgstr ""
  8168. "Șterge o selecţie de unelte in Tabela de Unelte prin\n"
  8169. "selectarea unei linii (sau mai multe) in Tabela de Unelte."
  8170. #: flatcamGUI/ObjectUI.py:1026
  8171. msgid "<b>Tool Data</b>"
  8172. msgstr "<b>Date Unealtă</b>"
  8173. #: flatcamGUI/ObjectUI.py:1029
  8174. msgid ""
  8175. "The data used for creating GCode.\n"
  8176. "Each tool store it's own set of such data."
  8177. msgstr ""
  8178. "Datele folosite pentru crearea codului GCode.\n"
  8179. "Fiecare unealtă stochează un subset de asemenea date."
  8180. #: flatcamGUI/ObjectUI.py:1039
  8181. msgid "V-Tip Dia:"
  8182. msgstr "V-dia:"
  8183. #: flatcamGUI/ObjectUI.py:1042
  8184. msgid "The tip diameter for V-Shape Tool"
  8185. msgstr ""
  8186. "Diametrul la vârf al uneltei tip V-Shape.\n"
  8187. "Forma in V."
  8188. #: flatcamGUI/ObjectUI.py:1050
  8189. msgid "V-Tip Angle:"
  8190. msgstr "V-unghi:"
  8191. #: flatcamGUI/ObjectUI.py:1053
  8192. msgid ""
  8193. "The tip angle for V-Shape Tool.\n"
  8194. "In degree."
  8195. msgstr ""
  8196. "Unghiul la vârf pentru unealta tip V-Shape. \n"
  8197. "In grade."
  8198. #: flatcamGUI/ObjectUI.py:1074
  8199. msgid "Multi-Depth:"
  8200. msgstr "Multi-Pas:"
  8201. #: flatcamGUI/ObjectUI.py:1077
  8202. msgid ""
  8203. "Use multiple passes to limit\n"
  8204. "the cut depth in each pass. Will\n"
  8205. "cut multiple times until Cut Z is\n"
  8206. "reached.\n"
  8207. "To the right, input the depth of \n"
  8208. "each pass (positive value)."
  8209. msgstr ""
  8210. "Foloseşte multiple treceri, rute, pentru\n"
  8211. "a limita adâncimea de tăiere pentru fiecare\n"
  8212. "trecere. Se va taie de multiple ori pana când\n"
  8213. "este atinsa valoarea param. >Z tăiere<.\n"
  8214. "In dreapta, introdu adâncimea de tăiere\n"
  8215. "pentru fiecare trecere (valoare pozitivă)."
  8216. #: flatcamGUI/ObjectUI.py:1090
  8217. msgid "Depth of each pass (positive)."
  8218. msgstr ""
  8219. "Adâncimea pentru fiecare trecere.\n"
  8220. "Valoare pozitivă, in unitatile curente."
  8221. #: flatcamGUI/ObjectUI.py:1121
  8222. msgid ""
  8223. "Include tool-change sequence\n"
  8224. "in the Machine Code (Pause for tool change)."
  8225. msgstr ""
  8226. "Include o secventa de schimb unealtă in \n"
  8227. "codul masina CNC. O pauza pentru schimbul\n"
  8228. "uneltei (M6)."
  8229. #: flatcamGUI/ObjectUI.py:1147
  8230. msgid ""
  8231. "This is the height (Z) at which the CNC\n"
  8232. "will go as the last move."
  8233. msgstr ""
  8234. "Aceasta este înălţimea Z, la care CNC-ul \n"
  8235. "va fi parcat la finalul de lucru."
  8236. #: flatcamGUI/ObjectUI.py:1168
  8237. msgid "Feed Rate Z (Plunge):"
  8238. msgstr "Feedrate Z (Plonjare):"
  8239. #: flatcamGUI/ObjectUI.py:1171
  8240. msgid ""
  8241. "Cutting speed in the Z\n"
  8242. "plane in units per minute"
  8243. msgstr ""
  8244. "Viteza de tăiere in planul Z.\n"
  8245. "In unitati pe minut."
  8246. #: flatcamGUI/ObjectUI.py:1180
  8247. msgid "Feed Rate Rapids:"
  8248. msgstr "Feedrate rapizi:"
  8249. #: flatcamGUI/ObjectUI.py:1183
  8250. msgid ""
  8251. "Cutting speed in the XY\n"
  8252. "plane in units per minute\n"
  8253. "(in units per minute).\n"
  8254. "This is for the rapid move G00.\n"
  8255. "It is useful only for Marlin,\n"
  8256. "ignore for any other cases."
  8257. msgstr ""
  8258. "Viteza de găurire, in unitati pe minut.\n"
  8259. "Corespunde comenzii G0 și este utila doar pentru\n"
  8260. "printerul 3D Marlin, implicit când se foloseşte fişierul\n"
  8261. "postprocesor: Marlin. Ignora aceasta parametru in rest."
  8262. #: flatcamGUI/ObjectUI.py:1199
  8263. msgid "Cut over 1st pt"
  8264. msgstr "Re-tăiere 1-ul pt."
  8265. #: flatcamGUI/ObjectUI.py:1214
  8266. msgid ""
  8267. "Speed of the spindle in RPM (optional).\n"
  8268. "If LASER postprocessor is used,\n"
  8269. "this value is the power of laser."
  8270. msgstr ""
  8271. "Viteza motorului in RPM (optional).\n"
  8272. "Daca postprocesorul Laser este folosit,\n"
  8273. "valoarea să este puterea laserului."
  8274. #: flatcamGUI/ObjectUI.py:1243
  8275. msgid "PostProcessor:"
  8276. msgstr "Postprocesor:"
  8277. #: flatcamGUI/ObjectUI.py:1246
  8278. msgid ""
  8279. "The Postprocessor file that dictates\n"
  8280. "the Machine Code (like GCode, RML, HPGL) output."
  8281. msgstr ""
  8282. "Fişierul postprocesor care controlează generarea\n"
  8283. "codului masina CNC (GCode, RML, HPGL) care \n"
  8284. "mai apoi este salvat."
  8285. #: flatcamGUI/ObjectUI.py:1284
  8286. msgid ""
  8287. "Add at least one tool in the tool-table.\n"
  8288. "Click the header to select all, or Ctrl + LMB\n"
  8289. "for custom selection of tools."
  8290. msgstr ""
  8291. "Adaugă cel puțin o unealtă in Tabela de Unelte.\n"
  8292. "Click pe header pentru selectarea tuturora asu CTRL + LMB click\n"
  8293. "pentru o selecţie personalizata de unelte."
  8294. #: flatcamGUI/ObjectUI.py:1291
  8295. msgid "Generate"
  8296. msgstr "Generează"
  8297. #: flatcamGUI/ObjectUI.py:1294
  8298. msgid "Generate the CNC Job object."
  8299. msgstr "Generează un obiect CNCJob."
  8300. #: flatcamGUI/ObjectUI.py:1302
  8301. msgid "<b>Paint Area:</b>"
  8302. msgstr "<b>Unealta Paint</b>"
  8303. #: flatcamGUI/ObjectUI.py:1317
  8304. msgid "Launch Paint Tool in Tools Tab."
  8305. msgstr ""
  8306. "Lansează unealta FlatCAM numita Paint și\n"
  8307. "o instalează in Tab-ul Unealta."
  8308. #: flatcamGUI/ObjectUI.py:1334
  8309. msgid "CNC Job Object"
  8310. msgstr "Obiect CNCJob"
  8311. #: flatcamGUI/ObjectUI.py:1353
  8312. msgid "<b>Plot kind:</b>"
  8313. msgstr "<b>Afișare:</b>"
  8314. #: flatcamGUI/ObjectUI.py:1369
  8315. msgid "<b>Display Annotation:</b>"
  8316. msgstr "<b>Afișare notatii:</b>"
  8317. #: flatcamGUI/ObjectUI.py:1388
  8318. msgid "<b>Travelled dist.:</b>"
  8319. msgstr "<b>Distanta:</b>"
  8320. #: flatcamGUI/ObjectUI.py:1391 flatcamGUI/ObjectUI.py:1398
  8321. msgid ""
  8322. "This is the total travelled distance on X-Y plane.\n"
  8323. "In current units."
  8324. msgstr ""
  8325. "Aceasta este distanţa totala parcursa in planul X-Y.\n"
  8326. "In unitatile curente."
  8327. #: flatcamGUI/ObjectUI.py:1429
  8328. msgid "<b>CNC Tools Table</b>"
  8329. msgstr "<b>Tabela Unelte CNC</b>"
  8330. #: flatcamGUI/ObjectUI.py:1432
  8331. msgid ""
  8332. "Tools in this CNCJob object used for cutting.\n"
  8333. "The tool diameter is used for plotting on canvas.\n"
  8334. "The 'Offset' entry will set an offset for the cut.\n"
  8335. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8336. "'Type' entry is only informative and it allow to know the \n"
  8337. "intent of using the current tool. \n"
  8338. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8339. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8340. "ball(B), or V-Shaped(V)."
  8341. msgstr ""
  8342. "Unelete folosite in acest obiect CNCJob pentru tăiere.\n"
  8343. "Diametrul uneltei este folosit pentru afișarea pe canvas.\n"
  8344. "Coloanele sunt:\n"
  8345. "- 'Ofset' -> poate fi in interior, in exterior, pe cale sau personalizat.\n"
  8346. "- 'Tipul' -> este doar informativ și poate fi: Grosier, Finisaj, Izolaţie\n"
  8347. "- 'Tipul uneltei' -> poate fi circular cu 1 ... 4 dinti, tip bila sau V-"
  8348. "Shape\n"
  8349. "(cu forma in V)."
  8350. #: flatcamGUI/ObjectUI.py:1466
  8351. msgid "P"
  8352. msgstr "P"
  8353. #: flatcamGUI/ObjectUI.py:1472
  8354. msgid "Update Plot"
  8355. msgstr "Actualiz. afișare"
  8356. #: flatcamGUI/ObjectUI.py:1474
  8357. msgid "Update the plot."
  8358. msgstr "Actualizează afișarea obiectelor."
  8359. #: flatcamGUI/ObjectUI.py:1481
  8360. msgid "<b>Export CNC Code:</b>"
  8361. msgstr "<b>Exporta codul masina CNC:</b>"
  8362. #: flatcamGUI/ObjectUI.py:1489
  8363. msgid "Prepend to CNC Code:"
  8364. msgstr "Adaugă la inceput in codul G-Code:"
  8365. #: flatcamGUI/ObjectUI.py:1492
  8366. msgid ""
  8367. "Type here any G-Code commands you would\n"
  8368. "like to add to the beginning of the generated file."
  8369. msgstr ""
  8370. "Plasează aici acele comenzi GCode care se dorește să fie\n"
  8371. "adaugate la inceputul codului masina CNC."
  8372. #: flatcamGUI/ObjectUI.py:1502
  8373. msgid "Append to CNC Code:"
  8374. msgstr "Adaugă la sfârşit in codul G-Code:"
  8375. #: flatcamGUI/ObjectUI.py:1526
  8376. msgid ""
  8377. "Type here any G-Code commands you would\n"
  8378. "like to be executed when Toolchange event is encountered.\n"
  8379. "This will constitute a Custom Toolchange GCode,\n"
  8380. "or a Toolchange Macro.\n"
  8381. "The FlatCAM variables are surrounded by '%' symbol.\n"
  8382. "\n"
  8383. "WARNING: it can be used only with a postprocessor file\n"
  8384. "that has 'toolchange_custom' in it's name and this is built\n"
  8385. "having as template the 'Toolchange Custom' posprocessor file."
  8386. msgstr ""
  8387. "Plasează aici acele comenzi G-Code care se dorește să fie executate\n"
  8388. "atunci când evenimentul de tip Schimb Unealtă este intalnit.\n"
  8389. "Aceasta va constitui un Macro pentru schimbare unealtă.\n"
  8390. "Variabilele FlatCAM folosite aici sunt inconjurate de simbolul %.\n"
  8391. "\n"
  8392. "ATENTIE:\n"
  8393. "poate fi folosit doar cu un fişier postprocesor care contine "
  8394. "'toolchange_custom'\n"
  8395. "in numele sau."
  8396. #: flatcamGUI/ObjectUI.py:1574
  8397. msgid "z_cut = depth where to cut"
  8398. msgstr "z_cut = adâncimea de tăiere"
  8399. #: flatcamGUI/ObjectUI.py:1575
  8400. msgid "z_move = height where to travel"
  8401. msgstr "z_move = Înălţimea deplasare"
  8402. #: flatcamGUI/ObjectUI.py:1593
  8403. msgid "View CNC Code"
  8404. msgstr "Vizualiz. codul CNC"
  8405. #: flatcamGUI/ObjectUI.py:1596
  8406. msgid ""
  8407. "Opens TAB to view/modify/print G-Code\n"
  8408. "file."
  8409. msgstr ""
  8410. "Deschide un nou tab pentru a vizualiza, modifica\n"
  8411. "sau tipari codul G-Code."
  8412. #: flatcamGUI/ObjectUI.py:1602
  8413. msgid "Save CNC Code"
  8414. msgstr "Salvează codul CNC"
  8415. #: flatcamGUI/ObjectUI.py:1605
  8416. msgid ""
  8417. "Opens dialog to save G-Code\n"
  8418. "file."
  8419. msgstr ""
  8420. "Deshide o fereastra dialog pentru salvarea codului\n"
  8421. "G-Code intr-un fişier."
  8422. #: flatcamTools/ToolCalculators.py:24
  8423. msgid "Calculators"
  8424. msgstr "Calculatoare"
  8425. #: flatcamTools/ToolCalculators.py:25
  8426. msgid "V-Shape Tool Calculator"
  8427. msgstr "Calculator Unealta V-Shape"
  8428. #: flatcamTools/ToolCalculators.py:26
  8429. msgid "Units Calculator"
  8430. msgstr "Calculator Unitati"
  8431. #: flatcamTools/ToolCalculators.py:27
  8432. msgid "ElectroPlating Calculator"
  8433. msgstr "Calculator ElectroPlacare"
  8434. #: flatcamTools/ToolCalculators.py:68
  8435. msgid "Here you enter the value to be converted from INCH to MM"
  8436. msgstr "Valorile pentru conversie din INCH in MM"
  8437. #: flatcamTools/ToolCalculators.py:73
  8438. msgid "Here you enter the value to be converted from MM to INCH"
  8439. msgstr "Valorile pentru conversie din MM in INCH"
  8440. #: flatcamTools/ToolCalculators.py:98
  8441. msgid ""
  8442. "This is the diameter of the tool tip.\n"
  8443. "The manufacturer specifies it."
  8444. msgstr ""
  8445. "Acesta este diametrul uneltei la vârf.\n"
  8446. "Producatorul il specifica in foaia de catalog."
  8447. #: flatcamTools/ToolCalculators.py:101
  8448. msgid "Tip Angle:"
  8449. msgstr "V-Unghi:"
  8450. #: flatcamTools/ToolCalculators.py:105
  8451. msgid ""
  8452. "This is the angle of the tip of the tool.\n"
  8453. "It is specified by manufacturer."
  8454. msgstr ""
  8455. "Acesta este unghiul uneltei la vârf.\n"
  8456. "Producatorul il specifica in foaia de catalog."
  8457. #: flatcamTools/ToolCalculators.py:112
  8458. msgid ""
  8459. "This is the depth to cut into the material.\n"
  8460. "In the CNCJob is the CutZ parameter."
  8461. msgstr ""
  8462. "Acest param. este adâncimea de tăiere in material.\n"
  8463. "In obiectul CNCJob este parametrul >Z tăiere<."
  8464. #: flatcamTools/ToolCalculators.py:115
  8465. msgid "Tool Diameter:"
  8466. msgstr "Dia unealtă:"
  8467. #: flatcamTools/ToolCalculators.py:119
  8468. msgid ""
  8469. "This is the tool diameter to be entered into\n"
  8470. "FlatCAM Gerber section.\n"
  8471. "In the CNCJob section it is called >Tool dia<."
  8472. msgstr ""
  8473. "Acesta este diametrul uneltei care trebuie introdus in\n"
  8474. "sectiunea FlatCAM Gerber.\n"
  8475. "In sectiunea CNCJob este numit >Dia unealtă<."
  8476. #: flatcamTools/ToolCalculators.py:131 flatcamTools/ToolCalculators.py:214
  8477. msgid "Calculate"
  8478. msgstr "Calculează"
  8479. #: flatcamTools/ToolCalculators.py:134
  8480. msgid ""
  8481. "Calculate either the Cut Z or the effective tool diameter,\n"
  8482. " depending on which is desired and which is known. "
  8483. msgstr ""
  8484. "Calculează ori valorea >Z tăiere< ori valoarea efectiva a diametrului "
  8485. "uneltei,\n"
  8486. "depinzand de care dintre acestea este cunoscuta."
  8487. #: flatcamTools/ToolCalculators.py:190
  8488. msgid "Current Value:"
  8489. msgstr "Intensitate:"
  8490. #: flatcamTools/ToolCalculators.py:194
  8491. msgid ""
  8492. "This is the current intensity value\n"
  8493. "to be set on the Power Supply. In Amps."
  8494. msgstr ""
  8495. "Intensitatea curentului electric care se va seta\n"
  8496. "in sursa de alimentare. In Amperi."
  8497. #: flatcamTools/ToolCalculators.py:198
  8498. msgid "Time:"
  8499. msgstr "Durata:"
  8500. #: flatcamTools/ToolCalculators.py:202
  8501. msgid ""
  8502. "This is the calculated time required for the procedure.\n"
  8503. "In minutes."
  8504. msgstr ""
  8505. "TImpul necesar (calculat) pentru\n"
  8506. "efectuarea procedurii. In minute."
  8507. #: flatcamTools/ToolCalculators.py:217
  8508. msgid ""
  8509. "Calculate the current intensity value and the procedure time,\n"
  8510. " depending on the parameters above"
  8511. msgstr ""
  8512. "Calculează intensitatea curentului cat și durata procedurii\n"
  8513. "in funcţie de parametrii de mai sus."
  8514. #: flatcamTools/ToolCutOut.py:17
  8515. msgid "Cutout PCB"
  8516. msgstr "Decupare PCB"
  8517. #: flatcamTools/ToolCutOut.py:53
  8518. msgid "Obj Type:"
  8519. msgstr "Tip obiect:"
  8520. #: flatcamTools/ToolCutOut.py:55
  8521. msgid ""
  8522. "Specify the type of object to be cutout.\n"
  8523. "It can be of type: Gerber or Geometry.\n"
  8524. "What is selected here will dictate the kind\n"
  8525. "of objects that will populate the 'Object' combobox."
  8526. msgstr ""
  8527. "Specifica obiectul care va fi decupat.\n"
  8528. "Poate fi de tip: Gerber sau Geometrie.\n"
  8529. "Ce se va selecta aici va controla tipul de \n"
  8530. "obiecte care vor aparea in combobox-ul\n"
  8531. "numit >Obiect<."
  8532. #: flatcamTools/ToolCutOut.py:69 flatcamTools/ToolPanelize.py:71
  8533. msgid "Object:"
  8534. msgstr "Obiect:"
  8535. #: flatcamTools/ToolCutOut.py:71
  8536. msgid "Object to be cutout. "
  8537. msgstr "Obiectul FlatCAM care va fi decupat."
  8538. #: flatcamTools/ToolCutOut.py:79
  8539. msgid ""
  8540. "Diameter of the tool used to cutout\n"
  8541. "the PCB shape out of the surrounding material."
  8542. msgstr ""
  8543. "Diametrul uneltei folosita pt decuparea\n"
  8544. "PCB-ului din materialului inconjurator."
  8545. #: flatcamTools/ToolCutOut.py:88
  8546. msgid ""
  8547. "Margin over bounds. A positive value here\n"
  8548. "will make the cutout of the PCB further from\n"
  8549. "the actual PCB border"
  8550. msgstr ""
  8551. "Marginea (zona de siguranţă). O val. pozitivă\n"
  8552. "va face decuparea distanțat cu aceasta valoare \n"
  8553. "fata de PCB-ul efectiv."
  8554. #: flatcamTools/ToolCutOut.py:98
  8555. msgid ""
  8556. "The size of the bridge gaps in the cutout\n"
  8557. "used to keep the board connected to\n"
  8558. "the surrounding material (the one \n"
  8559. "from which the PCB is cutout)."
  8560. msgstr ""
  8561. "Dimenisunea punţilor in decupaj care servesc\n"
  8562. "in a mentine ataşat PCB-ul la materialul de unde \n"
  8563. "este decupat."
  8564. #: flatcamTools/ToolCutOut.py:117
  8565. msgid ""
  8566. "Create a convex shape surrounding the entire PCB.\n"
  8567. "Used only if the source object type is Gerber."
  8568. msgstr ""
  8569. "Generează un obiect tip Geometrie care va inconjura\n"
  8570. "tot PCB-ul. Forma sa este convexa.\n"
  8571. "Se foloseste doar daca obiectul sursă este de tip Gerber."
  8572. #: flatcamTools/ToolCutOut.py:123
  8573. msgid "A. Automatic Bridge Gaps"
  8574. msgstr "A. Punţi realiz. automat"
  8575. #: flatcamTools/ToolCutOut.py:125
  8576. msgid "This section handle creation of automatic bridge gaps."
  8577. msgstr ""
  8578. "Aceasta sectiune va permite crearea in mod automat\n"
  8579. "a pana la 8 punţi."
  8580. #: flatcamTools/ToolCutOut.py:136
  8581. msgid ""
  8582. "Number of gaps used for the Automatic cutout.\n"
  8583. "There can be maximum 8 bridges/gaps.\n"
  8584. "The choices are:\n"
  8585. "- lr - left + right\n"
  8586. "- tb - top + bottom\n"
  8587. "- 4 - left + right +top + bottom\n"
  8588. "- 2lr - 2*left + 2*right\n"
  8589. "- 2tb - 2*top + 2*bottom\n"
  8590. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  8591. msgstr ""
  8592. "Numărul de punţi folosite in decupare.\n"
  8593. "Pot fi un număr maxim de 8 punţi aranjate in felul\n"
  8594. "următor:\n"
  8595. "- lr = stânga -dreapta\n"
  8596. "- tb = sus - jos\n"
  8597. "- 4 = stânga -dreapta - sus - jos\n"
  8598. "- 2lr = 2* stânga - 2* dreapta\n"
  8599. "- 2tb = 2* sus - 2* jos\n"
  8600. "- 8 = 2* stânga - 2* dreapta - 2* sus - 2* jos"
  8601. #: flatcamTools/ToolCutOut.py:159
  8602. msgid "FreeForm:"
  8603. msgstr "Forma libera:"
  8604. #: flatcamTools/ToolCutOut.py:161
  8605. msgid ""
  8606. "The cutout shape can be of ny shape.\n"
  8607. "Useful when the PCB has a non-rectangular shape."
  8608. msgstr ""
  8609. "Decupajul poate avea orice forma.\n"
  8610. "Folositor când PCB-ul are o forma neregulata."
  8611. #: flatcamTools/ToolCutOut.py:170
  8612. msgid ""
  8613. "Cutout the selected object.\n"
  8614. "The cutout shape can be of any shape.\n"
  8615. "Useful when the PCB has a non-rectangular shape."
  8616. msgstr ""
  8617. "Decupează obiectul selectat.\n"
  8618. "Forma decupajului poate avea orice forma.\n"
  8619. "Folositor când PCB-ul are o forma neregulata."
  8620. #: flatcamTools/ToolCutOut.py:179
  8621. msgid "Rectangular:"
  8622. msgstr "Patrulater:"
  8623. #: flatcamTools/ToolCutOut.py:181
  8624. msgid ""
  8625. "The resulting cutout shape is\n"
  8626. "always a rectangle shape and it will be\n"
  8627. "the bounding box of the Object."
  8628. msgstr ""
  8629. "Forma decupajului va fi mereu de forma\n"
  8630. "patratica și va fi forma înconjurătoare a\n"
  8631. "obiectului FlatCAM decupat."
  8632. #: flatcamTools/ToolCutOut.py:190
  8633. msgid ""
  8634. "Cutout the selected object.\n"
  8635. "The resulting cutout shape is\n"
  8636. "always a rectangle shape and it will be\n"
  8637. "the bounding box of the Object."
  8638. msgstr ""
  8639. "Decupează obiectul selectat.\n"
  8640. "Forma decupajului este tot timpul dreptunghiulara.."
  8641. #: flatcamTools/ToolCutOut.py:198
  8642. msgid "B. Manual Bridge Gaps"
  8643. msgstr "B. Punţi realiz. manual"
  8644. #: flatcamTools/ToolCutOut.py:200
  8645. msgid ""
  8646. "This section handle creation of manual bridge gaps.\n"
  8647. "This is done by mouse clicking on the perimeter of the\n"
  8648. "Geometry object that is used as a cutout object. "
  8649. msgstr ""
  8650. "Permite realizarea de punţi de sustinere in mod manual.\n"
  8651. "Se apasa butonul corepsunzator și apoi click cu mouse-ul\n"
  8652. "pe perimetrul formei de decupaj. Daca se face simultan cu\n"
  8653. "apasarea tastei CTRL, operatia se va repeta automat pana când\n"
  8654. "se va apasa tasta 'Escape'."
  8655. #: flatcamTools/ToolCutOut.py:216
  8656. msgid "Geo Obj:"
  8657. msgstr "Obiect Geo:"
  8658. #: flatcamTools/ToolCutOut.py:218
  8659. msgid "Geometry object used to create the manual cutout."
  8660. msgstr "Obiect tip Geometrie folosit pentru crearea decupajului manual."
  8661. #: flatcamTools/ToolCutOut.py:229
  8662. msgid "Manual Geo:"
  8663. msgstr "Geo manual:"
  8664. #: flatcamTools/ToolCutOut.py:231 flatcamTools/ToolCutOut.py:241
  8665. msgid ""
  8666. "If the object to be cutout is a Gerber\n"
  8667. "first create a Geometry that surrounds it,\n"
  8668. "to be used as the cutout, if one doesn't exist yet.\n"
  8669. "Select the source Gerber file in the top object combobox."
  8670. msgstr ""
  8671. "Daca obiectul care se decupează este un obiect Gerber,\n"
  8672. "atunci mai intai crează un obiect Geometrie care il inconjoara\n"
  8673. "urmărindu-i forma.\n"
  8674. "Selectează obiectul sursa Gerber in combobox-ul de mai sus,\n"
  8675. "numit >Obiect<."
  8676. #: flatcamTools/ToolCutOut.py:251
  8677. msgid "Manual Add Bridge Gaps:"
  8678. msgstr "Adaugă punţi manual:"
  8679. #: flatcamTools/ToolCutOut.py:253
  8680. msgid ""
  8681. "Use the left mouse button (LMB) click\n"
  8682. "to create a bridge gap to separate the PCB from\n"
  8683. "the surrounding material."
  8684. msgstr ""
  8685. "Folosind click LMB se crează punţi de sustinere a PCB-ului\n"
  8686. "de materialul din care este decupat."
  8687. #: flatcamTools/ToolCutOut.py:260
  8688. msgid "Generate Gap"
  8689. msgstr "Generează Punte"
  8690. #: flatcamTools/ToolCutOut.py:262
  8691. msgid ""
  8692. "Use the left mouse button (LMB) click\n"
  8693. "to create a bridge gap to separate the PCB from\n"
  8694. "the surrounding material.\n"
  8695. "The LMB click has to be done on the perimeter of\n"
  8696. "the Geometry object used as a cutout geometry."
  8697. msgstr ""
  8698. "Permite realizarea de punţi de sustinere in mod manual.\n"
  8699. "Se apasa butonul corepsunzator și apoi click cu mouse-ul\n"
  8700. "pe perimetrul formei de decupaj. Daca se face simultan cu\n"
  8701. "apasarea tastei CTRL, operatia se va repeta automat pana când\n"
  8702. "se va apasa tasta 'Escape'."
  8703. #: flatcamTools/ToolCutOut.py:341 flatcamTools/ToolCutOut.py:505
  8704. #: flatcamTools/ToolNonCopperClear.py:666 flatcamTools/ToolPaint.py:764
  8705. #: flatcamTools/ToolPanelize.py:352 flatcamTools/ToolPanelize.py:366
  8706. #: flatcamTools/ToolSub.py:237 flatcamTools/ToolSub.py:249
  8707. #: flatcamTools/ToolSub.py:428 flatcamTools/ToolSub.py:440
  8708. #, python-format
  8709. msgid "[ERROR_NOTCL] Could not retrieve object: %s"
  8710. msgstr "[ERROR_NOTCL] Nu s-a putut incărca obiectul: %s"
  8711. #: flatcamTools/ToolCutOut.py:345
  8712. msgid ""
  8713. "[ERROR_NOTCL] There is no object selected for Cutout.\n"
  8714. "Select one and try again."
  8715. msgstr ""
  8716. "[ERROR_NOTCL] Nu este nici-un obiect selectat pentru decupaj.\n"
  8717. "Selectează unul și încearcă din nou."
  8718. #: flatcamTools/ToolCutOut.py:360
  8719. msgid ""
  8720. "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  8721. "number."
  8722. msgstr ""
  8723. "[WARNING_NOTCL] Diametrul uneltei este zero. Schimbă-l intr-o val. pozitivă "
  8724. "Reala."
  8725. #: flatcamTools/ToolCutOut.py:370 flatcamTools/ToolCutOut.py:533
  8726. #: flatcamTools/ToolCutOut.py:777
  8727. msgid ""
  8728. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  8729. msgstr ""
  8730. "[WARNING_NOTCL] Valoarea marginii lipseste sau este in format gresit. Adaugă "
  8731. "din nou și reîncearcă."
  8732. #: flatcamTools/ToolCutOut.py:381 flatcamTools/ToolCutOut.py:544
  8733. #: flatcamTools/ToolCutOut.py:672
  8734. msgid ""
  8735. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  8736. msgstr ""
  8737. "[WARNING_NOTCL] Valoarea dimensiunii punte lipseste sau este in format "
  8738. "gresit. Adaugă din nou și reîncearcă."
  8739. #: flatcamTools/ToolCutOut.py:388 flatcamTools/ToolCutOut.py:551
  8740. msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  8741. msgstr ""
  8742. "[WARNING_NOTCL] Numărul de punţi lipseste sau este in format gresit. Adaugă "
  8743. "din nou și reîncearcă."
  8744. #: flatcamTools/ToolCutOut.py:392 flatcamTools/ToolCutOut.py:555
  8745. msgid ""
  8746. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  8747. "or 8. Fill in a correct value and retry. "
  8748. msgstr ""
  8749. "[WARNING_NOTCL] Valoarea punţilor poate fi numai una dintre: 'lr', 'tb', "
  8750. "'2lr', '2tb', 4 or 8. Adaugă o valoare permisa și reîncearcă."
  8751. #: flatcamTools/ToolCutOut.py:397 flatcamTools/ToolCutOut.py:560
  8752. msgid ""
  8753. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  8754. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  8755. "Geometry,\n"
  8756. "and after that perform Cutout."
  8757. msgstr ""
  8758. "[ERROR] Operatia de decupaj nu se poate efectua cu un obiect Geometrie tip "
  8759. "MultiGeo.\n"
  8760. "Se poate insa converti MultiGeo in tip SingleGeo și apoi se poate efectua "
  8761. "decupajul."
  8762. #: flatcamTools/ToolCutOut.py:489 flatcamTools/ToolCutOut.py:642
  8763. msgid "[success] Any form CutOut operation finished."
  8764. msgstr "[success] Operatia de decupaj cu forma libera s-a terminat."
  8765. #: flatcamTools/ToolCutOut.py:509 flatcamTools/ToolPaint.py:768
  8766. #: flatcamTools/ToolPanelize.py:358
  8767. #, python-format
  8768. msgid "[ERROR_NOTCL] Object not found: %s"
  8769. msgstr "[ERROR_NOTCL] Obiectul nu a fost gasit: %s"
  8770. #: flatcamTools/ToolCutOut.py:523 flatcamTools/ToolCutOut.py:662
  8771. #: flatcamTools/ToolCutOut.py:767
  8772. msgid ""
  8773. "[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  8774. "number."
  8775. msgstr ""
  8776. "[ERROR_NOTCL] Diametrul uneltei este zero. Schimbă intr-o valoare pozitivă "
  8777. "Reala."
  8778. #: flatcamTools/ToolCutOut.py:647
  8779. msgid ""
  8780. "Click on the selected geometry object perimeter to create a bridge gap ..."
  8781. msgstr ""
  8782. "Click pe perimetrul obiectului tip Geometrie selectat\n"
  8783. "pentru a crea o punte separatoare."
  8784. #: flatcamTools/ToolCutOut.py:688
  8785. msgid "Making manual bridge gap..."
  8786. msgstr "Se generează o punte separatoare in mod manual..."
  8787. #: flatcamTools/ToolCutOut.py:711
  8788. #, python-format
  8789. msgid "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
  8790. msgstr "[ERROR_NOTCL] Nu s-a putut incărca obiectul Geometrie: %s"
  8791. #: flatcamTools/ToolCutOut.py:715
  8792. #, python-format
  8793. msgid "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
  8794. msgstr ""
  8795. "[ERROR_NOTCL] Obiectul Geometrie pentru decupaj manual nu este gasit: %s"
  8796. #: flatcamTools/ToolCutOut.py:725
  8797. msgid "[success] Added manual Bridge Gap."
  8798. msgstr "[success] O punte a fost adăugată in mod manual."
  8799. #: flatcamTools/ToolCutOut.py:742
  8800. #, python-format
  8801. msgid "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
  8802. msgstr "[ERROR_NOTCL] Nu s-a putut incărca obiectul Gerber: %s"
  8803. #: flatcamTools/ToolCutOut.py:746
  8804. msgid ""
  8805. "[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
  8806. "Select one and try again."
  8807. msgstr ""
  8808. "[ERROR_NOTCL] Nu exista obiect selectat pt operatia de decupare.\n"
  8809. "Selecteaza unul si incearcă din nou."
  8810. #: flatcamTools/ToolCutOut.py:751
  8811. msgid ""
  8812. "[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
  8813. "Select a Gerber file and try again."
  8814. msgstr ""
  8815. "[ERROR_NOTCL] Obiectul selectat trebuie să fie de tip Gerber.\n"
  8816. "Selecteaza un obiect Gerber si incearcă din nou."
  8817. #: flatcamTools/ToolDblSided.py:18
  8818. msgid "2-Sided PCB"
  8819. msgstr "2-fețe PCB"
  8820. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  8821. #: flatcamTools/ToolDblSided.py:100
  8822. msgid "Mirror"
  8823. msgstr "Oglindește"
  8824. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  8825. #: flatcamTools/ToolDblSided.py:102
  8826. msgid ""
  8827. "Mirrors (flips) the specified object around \n"
  8828. "the specified axis. Does not create a new \n"
  8829. "object, but modifies it."
  8830. msgstr ""
  8831. "Oglindește obiectul specificat pe axa specificata.\n"
  8832. "Nu crează un obiect nou ci il modifica."
  8833. #: flatcamTools/ToolDblSided.py:73
  8834. msgid "Excellon Object to be mirrored."
  8835. msgstr "Obiectul Excellon care va fi oglindit."
  8836. #: flatcamTools/ToolDblSided.py:97
  8837. msgid "Geometry Obj to be mirrored."
  8838. msgstr "Obiectul Geometrie care va fi oglindit."
  8839. #: flatcamTools/ToolDblSided.py:135
  8840. msgid ""
  8841. "The axis should pass through a <b>point</b> or cut\n"
  8842. " a specified <b>box</b> (in a FlatCAM object) through \n"
  8843. "the center."
  8844. msgstr ""
  8845. "Axa de referinţă ar trebui să treacă printr-un <b>punct</b> ori să strabata\n"
  8846. " o <b>forma</b> (obiect FlatCAM) prin mijloc."
  8847. #: flatcamTools/ToolDblSided.py:152
  8848. msgid "Point/Box Reference:"
  8849. msgstr "Referința Punct/ Container:"
  8850. #: flatcamTools/ToolDblSided.py:154
  8851. msgid ""
  8852. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  8853. "the mirroring axis passes.\n"
  8854. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  8855. "Geo).\n"
  8856. "Through the center of this object pass the mirroring axis selected above."
  8857. msgstr ""
  8858. "Daca 'Punct' este selectat mai sus, atunci va stoca coordonatele (x,y) prin "
  8859. "care\n"
  8860. "axa de oglindire trece.\n"
  8861. "Daca 'Container' este selectat mai sus atunci va fi disponibila aici o lista "
  8862. "de obiecte\n"
  8863. "FlatCAM: Gerber, Excellon sau Geometrie. Prin mijocul geometric al acestor "
  8864. "obiecte\n"
  8865. "va trece axa de oglindire selectată mai sus."
  8866. #: flatcamTools/ToolDblSided.py:162
  8867. msgid ""
  8868. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  8869. "axis \n"
  8870. " selected in 'MIRROR AXIS' pass.\n"
  8871. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  8872. "and left mouse button click on canvas or you can enter the coords manually."
  8873. msgstr ""
  8874. "Adaugă coordonatele in formatul <b>(x, y)</b> ale punctului prin care trece\n"
  8875. "axa de oglindire selectată mai sus.\n"
  8876. "Coordonatele (x,y) pot fi obtinute prin combinatia tasta SHIFT + click mouse "
  8877. "pe\n"
  8878. "canvas sau le puteti introduce manual."
  8879. #: flatcamTools/ToolDblSided.py:182
  8880. msgid "Gerber Reference Box Object"
  8881. msgstr "Obiectul container al Gerber de referinţă"
  8882. #: flatcamTools/ToolDblSided.py:183
  8883. msgid "Excellon Reference Box Object"
  8884. msgstr "Obiectul container al Excellon de referinţă"
  8885. #: flatcamTools/ToolDblSided.py:184
  8886. msgid "Geometry Reference Box Object"
  8887. msgstr "Obiectul container al Geo de referinţă"
  8888. #: flatcamTools/ToolDblSided.py:193
  8889. msgid "Alignment Drill Coordinates:"
  8890. msgstr "Dia. găuri de aliniere"
  8891. #: flatcamTools/ToolDblSided.py:195
  8892. msgid ""
  8893. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  8894. "each set of (x, y) coordinates\n"
  8895. "entered here, a pair of drills will be created:\n"
  8896. "\n"
  8897. "- one drill at the coordinates from the field\n"
  8898. "- one drill in mirror position over the axis selected above in the 'Mirror "
  8899. "Axis'."
  8900. msgstr ""
  8901. "Găuri de aliniere in formatul unei liste: (x1, y1), (x2, y2) samd.\n"
  8902. "Pentru fiecare punct din lista de mai sus (cu coord. (x,y) )\n"
  8903. "un alt punct va fi creat in oglinda.\n"
  8904. "- un punct cu coord. specificate\n"
  8905. "- un punct cu coord. in poziţia oglindita pe axa selectată mai sus"
  8906. #: flatcamTools/ToolDblSided.py:210
  8907. msgid ""
  8908. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  8909. "on one side of the mirror axis.\n"
  8910. "\n"
  8911. "The coordinates set can be obtained:\n"
  8912. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  8913. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  8914. "field.\n"
  8915. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  8916. "field and click Paste.\n"
  8917. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  8918. msgstr ""
  8919. "Adăugă coordonatele pt găurile de aliniere in formatul: (x1,y1), (x2,y2) "
  8920. "samd\n"
  8921. "\n"
  8922. "Coordonatele pot fi obtinute prin urmatoarele metoda:\n"
  8923. "- apasare tasta SHIFT + click mouse pe canvas. Apoi apasa butonul 'Adaugă'.\n"
  8924. "- apasare tasta SHIFT + click mouse pe canvas. Apoi CTRL + V combo in câmpul "
  8925. "de editare\n"
  8926. "- apasare tasta SHIFT + click mouse pe canvas. Apoi click dreapta și Paste "
  8927. "in câmpul de edit.\n"
  8928. "- se intorduc manual in formatul (x1,y1), (x2,y2) ..."
  8929. #: flatcamTools/ToolDblSided.py:224
  8930. msgid "Alignment Drill Diameter"
  8931. msgstr "Dia. găuri de aliniere"
  8932. #: flatcamTools/ToolDblSided.py:247
  8933. msgid "Create Excellon Object"
  8934. msgstr "Crează un obiect Excellon."
  8935. #: flatcamTools/ToolDblSided.py:249
  8936. msgid ""
  8937. "Creates an Excellon Object containing the\n"
  8938. "specified alignment holes and their mirror\n"
  8939. "images."
  8940. msgstr ""
  8941. "Crează un obiect Excellon care contine găurile\n"
  8942. "de aliniere specificate cat și cele in oglinda."
  8943. #: flatcamTools/ToolDblSided.py:255
  8944. msgid "Reset"
  8945. msgstr "Reset"
  8946. #: flatcamTools/ToolDblSided.py:257
  8947. msgid "Resets all the fields."
  8948. msgstr "Resetează toate câmpurile cu informatii."
  8949. #: flatcamTools/ToolDblSided.py:302
  8950. msgid "2-Sided Tool"
  8951. msgstr "Unealta 2-fețe"
  8952. #: flatcamTools/ToolDblSided.py:327
  8953. msgid ""
  8954. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  8955. "missing. Add them and retry."
  8956. msgstr ""
  8957. "[WARNING_NOTCL] Referința 'Punct' este selectată dar coordonatele sale "
  8958. "lipsesc. Adăugă-le is încearcă din nou."
  8959. #: flatcamTools/ToolDblSided.py:346
  8960. msgid ""
  8961. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  8962. msgstr ""
  8963. "[WARNING_NOTCL] Nici-un obiect container nu este incărcat. Încarcă unul și "
  8964. "încearcă din nou."
  8965. #: flatcamTools/ToolDblSided.py:368
  8966. msgid ""
  8967. "[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and "
  8968. "retry."
  8969. msgstr ""
  8970. "[WARNING_NOTCL] Val. pt dia burghiu lipseste sau este in format gresit. "
  8971. "Adaugă una și încearcă din nou."
  8972. #: flatcamTools/ToolDblSided.py:375
  8973. msgid ""
  8974. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  8975. "and retry."
  8976. msgstr ""
  8977. "[WARNING_NOTCL] Nu exista coord. pentru găurile de aliniere. Adaugă-le și "
  8978. "încearcă din nou."
  8979. #: flatcamTools/ToolDblSided.py:397
  8980. msgid "[success] Excellon object with alignment drills created..."
  8981. msgstr ""
  8982. "[success] Obiectul Excellon conținând găurile de aliniere a fost creat ..."
  8983. #: flatcamTools/ToolDblSided.py:406
  8984. msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
  8985. msgstr "[WARNING_NOTCL] Nu este nici-un obiect Gerber incărcat ..."
  8986. #: flatcamTools/ToolDblSided.py:410 flatcamTools/ToolDblSided.py:453
  8987. #: flatcamTools/ToolDblSided.py:497
  8988. msgid ""
  8989. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  8990. msgstr ""
  8991. "[ERROR_NOTCL]Doar obiectele de tip Geometrie, Excellon și Gerber pot fi "
  8992. "oglindite ..."
  8993. #: flatcamTools/ToolDblSided.py:420
  8994. msgid ""
  8995. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  8996. "mirroring reference."
  8997. msgstr ""
  8998. "[WARNING_NOTCL] Coord. 'Punct'-ului lipsesc. Se folosesc coord. punctului "
  8999. "Origine (0,0) ca ref. pt oglindire."
  9000. #: flatcamTools/ToolDblSided.py:430 flatcamTools/ToolDblSided.py:474
  9001. #: flatcamTools/ToolDblSided.py:511
  9002. msgid "[WARNING_NOTCL] There is no Box object loaded ..."
  9003. msgstr "[WARNING_NOTCL] Nu este incărcat nici-un obiect container ..."
  9004. #: flatcamTools/ToolDblSided.py:440
  9005. #, python-format
  9006. msgid "[success] Gerber %s was mirrored..."
  9007. msgstr "[success]Obiectul Gerberr %s a fost oglindit..."
  9008. #: flatcamTools/ToolDblSided.py:449
  9009. msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
  9010. msgstr "[WARNING_NOTCL] Nici-un obiect tip Excellon nu este incărcat ..."
  9011. #: flatcamTools/ToolDblSided.py:464
  9012. msgid ""
  9013. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  9014. "coords and try again ..."
  9015. msgstr ""
  9016. "[WARNING_NOTCL] Nu exista coord. in câmpul 'Punct'. Adaugă coord. și "
  9017. "încearcă din nou..."
  9018. #: flatcamTools/ToolDblSided.py:484
  9019. #, python-format
  9020. msgid "[success] Excellon %s was mirrored..."
  9021. msgstr "[success] Obiectul Excellon %s a fost oglindit..."
  9022. #: flatcamTools/ToolDblSided.py:493
  9023. msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
  9024. msgstr "[WARNING_NOTCL] Nici-un obiect tip Geometrie nu este incărcat ..."
  9025. #: flatcamTools/ToolDblSided.py:521
  9026. #, python-format
  9027. msgid "[success] Geometry %s was mirrored..."
  9028. msgstr "[success] Obiectul Geometrie %s a fost oglindit..."
  9029. #: flatcamTools/ToolFilm.py:25
  9030. msgid "Film PCB"
  9031. msgstr "Film PCB"
  9032. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  9033. #: flatcamTools/ToolPanelize.py:56
  9034. msgid "Object Type:"
  9035. msgstr "Tip Obiect:"
  9036. #: flatcamTools/ToolFilm.py:58
  9037. msgid ""
  9038. "Specify the type of object for which to create the film.\n"
  9039. "The object can be of type: Gerber or Geometry.\n"
  9040. "The selection here decide the type of objects that will be\n"
  9041. "in the Film Object combobox."
  9042. msgstr ""
  9043. "Specificati tipul de obiect pt care se va crea filmul.\n"
  9044. "Obiectul poate avea tipul: Gerber sau Geometrie.\n"
  9045. "Selectia facuta aici controlează ce obiecte vor fi \n"
  9046. "gasite in combobox-ul >Obiect Film<."
  9047. #: flatcamTools/ToolFilm.py:71
  9048. msgid "Film Object:"
  9049. msgstr "Obiect Film:"
  9050. #: flatcamTools/ToolFilm.py:73
  9051. msgid "Object for which to create the film."
  9052. msgstr "Obiectul pt care se crează filmul."
  9053. #: flatcamTools/ToolFilm.py:89 flatcamTools/ToolPanelize.py:111
  9054. msgid "Box Type:"
  9055. msgstr "Tip container:"
  9056. #: flatcamTools/ToolFilm.py:91
  9057. msgid ""
  9058. "Specify the type of object to be used as an container for\n"
  9059. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  9060. "the type of objects that will be\n"
  9061. "in the Box Object combobox."
  9062. msgstr ""
  9063. "Specificati tipul obiectului care să fie folosit ca și container\n"
  9064. "pt crearea filmului. Poate fi de tipul Geometrie sau Gerber.\n"
  9065. "Selectia facuta aici controlează ce obiecte vor fi \n"
  9066. "gasite in combobox-ul >Container<."
  9067. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:126
  9068. msgid "Box Object:"
  9069. msgstr "Container:"
  9070. #: flatcamTools/ToolFilm.py:106
  9071. msgid ""
  9072. "The actual object that is used a container for the\n"
  9073. " selected object for which we create the film.\n"
  9074. "Usually it is the PCB outline but it can be also the\n"
  9075. "same object for which the film is created."
  9076. msgstr ""
  9077. "Obiectul care este folosit ca și container pentru crearea filmului.\n"
  9078. "De obicei este conturul PCB dar se poate folosi și obiectul pt care\n"
  9079. "se crează filmul."
  9080. #: flatcamTools/ToolFilm.py:157
  9081. msgid "Save Film"
  9082. msgstr "Salveaa filmul"
  9083. #: flatcamTools/ToolFilm.py:159
  9084. msgid ""
  9085. "Create a Film for the selected object, within\n"
  9086. "the specified box. Does not create a new \n"
  9087. " FlatCAM object, but directly save it in SVG format\n"
  9088. "which can be opened with Inkscape."
  9089. msgstr ""
  9090. "Crează un film pt obiectul selectat, in cadrul obiectului\n"
  9091. "container selectat. Nu crează un obiect nou FlatCAM ci\n"
  9092. "salvează pe HDD un fişier in format SVG care poate fi \n"
  9093. "deschis și prelucrat mai departe cu Inkscape."
  9094. #: flatcamTools/ToolFilm.py:225
  9095. msgid ""
  9096. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  9097. msgstr ""
  9098. "[ERROR_NOTCL] Nici-un obiect FlaCAM nu este selectat. Incărca un obiect pt "
  9099. "Film și încearcă din nou."
  9100. #: flatcamTools/ToolFilm.py:231
  9101. msgid ""
  9102. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  9103. msgstr ""
  9104. "[ERROR_NOTCL] Nici-un obiect FlaCAM nu este selectat. Încarcă un obiect "
  9105. "container și încearcă din nou."
  9106. #: flatcamTools/ToolFilm.py:255
  9107. msgid "Generating Film ..."
  9108. msgstr "Se generează Film-ul ..."
  9109. #: flatcamTools/ToolFilm.py:260 flatcamTools/ToolFilm.py:264
  9110. msgid "Export SVG positive"
  9111. msgstr "Exporta SVG pozitiv"
  9112. #: flatcamTools/ToolFilm.py:269
  9113. msgid "[WARNING_NOTCL] Export SVG positive cancelled."
  9114. msgstr "[WARNING_NOTCL] Exportul unui fişier SVG pozitiv este anulat."
  9115. #: flatcamTools/ToolFilm.py:276 flatcamTools/ToolFilm.py:280
  9116. msgid "Export SVG negative"
  9117. msgstr "Exporta SVG negativ"
  9118. #: flatcamTools/ToolFilm.py:285
  9119. msgid "[WARNING_NOTCL] Export SVG negative cancelled."
  9120. msgstr "[WARNING_NOTCL] Exportul unui fişier SVG negativ este anulat."
  9121. #: flatcamTools/ToolImage.py:25
  9122. msgid "Image as Object"
  9123. msgstr "Imagine ca Obiect"
  9124. #: flatcamTools/ToolImage.py:31
  9125. msgid "Image to PCB"
  9126. msgstr "Imagine -> PCB"
  9127. #: flatcamTools/ToolImage.py:55
  9128. msgid ""
  9129. "Specify the type of object to create from the image.\n"
  9130. "It can be of type: Gerber or Geometry."
  9131. msgstr ""
  9132. "Specifica tipul de obiect care se vrea a fi creat din imagine.\n"
  9133. "Tipul sau poate să fie ori Gerber ori Geometrie."
  9134. #: flatcamTools/ToolImage.py:63
  9135. msgid "DPI value:"
  9136. msgstr "Val. DPI:"
  9137. #: flatcamTools/ToolImage.py:65
  9138. msgid "Specify a DPI value for the image."
  9139. msgstr "Specifica o valoare DPI pt imagine."
  9140. #: flatcamTools/ToolImage.py:72
  9141. msgid "Level of detail"
  9142. msgstr "Nivel Detaliu"
  9143. #: flatcamTools/ToolImage.py:81
  9144. msgid "Image type"
  9145. msgstr "Tip imagine"
  9146. #: flatcamTools/ToolImage.py:83
  9147. msgid ""
  9148. "Choose a method for the image interpretation.\n"
  9149. "B/W means a black & white image. Color means a colored image."
  9150. msgstr ""
  9151. "Alege o metoda de interpretare a imaginii.\n"
  9152. "B/W = imagine alb-negru\n"
  9153. "Color = imagine in culori"
  9154. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  9155. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  9156. msgid "Mask value"
  9157. msgstr "Val. masca"
  9158. #: flatcamTools/ToolImage.py:92
  9159. msgid ""
  9160. "Mask for monochrome image.\n"
  9161. "Takes values between [0 ... 255].\n"
  9162. "Decides the level of details to include\n"
  9163. "in the resulting geometry.\n"
  9164. "0 means no detail and 255 means everything \n"
  9165. "(which is totally black)."
  9166. msgstr ""
  9167. "Masca pt imaginile monocrome.\n"
  9168. "Ia valori in intervalul [0 ... 255]\n"
  9169. "Decide nivelul de detalii care să fie\n"
  9170. "incluse in obiectul rezultat.\n"
  9171. "0 = nici-un detaliu\n"
  9172. "255 = include totul (ceeace ce inseamna\n"
  9173. "negru complet)."
  9174. #: flatcamTools/ToolImage.py:105
  9175. msgid ""
  9176. "Mask for RED color.\n"
  9177. "Takes values between [0 ... 255].\n"
  9178. "Decides the level of details to include\n"
  9179. "in the resulting geometry."
  9180. msgstr ""
  9181. "Masca pt culoarea ROSU.\n"
  9182. "Ia valori in intervalul [0 ... 255].\n"
  9183. "Decide nivelul de detalii care să fie\n"
  9184. "incluse in obiectul rezultat."
  9185. #: flatcamTools/ToolImage.py:116
  9186. msgid ""
  9187. "Mask for GREEN color.\n"
  9188. "Takes values between [0 ... 255].\n"
  9189. "Decides the level of details to include\n"
  9190. "in the resulting geometry."
  9191. msgstr ""
  9192. "Masca pt culoarea VERDE.\n"
  9193. "Ia valori in intervalul [0 ... 255].\n"
  9194. "Decide nivelul de detalii care să fie\n"
  9195. "incluse in obiectul rezultat."
  9196. #: flatcamTools/ToolImage.py:127
  9197. msgid ""
  9198. "Mask for BLUE color.\n"
  9199. "Takes values between [0 ... 255].\n"
  9200. "Decides the level of details to include\n"
  9201. "in the resulting geometry."
  9202. msgstr ""
  9203. "Masca pt culoarea ALBASTRU.\n"
  9204. "Ia valori in intervalul [0 ... 255].\n"
  9205. "Decide nivelul de detalii care să fie\n"
  9206. "incluse in obiectul rezultat."
  9207. #: flatcamTools/ToolImage.py:139
  9208. msgid "Import image"
  9209. msgstr "Importa imagine"
  9210. #: flatcamTools/ToolImage.py:141
  9211. msgid "Open a image of raster type and then import it in FlatCAM."
  9212. msgstr "Deschide o imagine tip raster și importa aceasta in FlatCAM."
  9213. #: flatcamTools/ToolImage.py:170
  9214. msgid "Image Tool"
  9215. msgstr "Unealta Imagine"
  9216. #: flatcamTools/ToolImage.py:200 flatcamTools/ToolImage.py:203
  9217. msgid "Import IMAGE"
  9218. msgstr "Importa Imagine"
  9219. #: flatcamTools/ToolMeasurement.py:26
  9220. msgid "Measurement"
  9221. msgstr "Masuratoare"
  9222. #: flatcamTools/ToolMeasurement.py:44
  9223. msgid "Units:"
  9224. msgstr "Unităti:"
  9225. #: flatcamTools/ToolMeasurement.py:45
  9226. msgid "Those are the units in which the distance is measured."
  9227. msgstr "Unitatile de masura in care se masoara distanța."
  9228. #: flatcamTools/ToolMeasurement.py:49
  9229. msgid "Start"
  9230. msgstr "Start"
  9231. #: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:52
  9232. msgid "Coords"
  9233. msgstr "Coordonate:"
  9234. #: flatcamTools/ToolMeasurement.py:50 flatcamTools/ToolMeasurement.py:66
  9235. msgid "This is measuring Start point coordinates."
  9236. msgstr "Coordonatele punctului de Start."
  9237. #: flatcamTools/ToolMeasurement.py:52
  9238. msgid "Stop"
  9239. msgstr "Stop"
  9240. #: flatcamTools/ToolMeasurement.py:53 flatcamTools/ToolMeasurement.py:70
  9241. msgid "This is the measuring Stop point coordinates."
  9242. msgstr "Coordonatele punctului de Stop."
  9243. #: flatcamTools/ToolMeasurement.py:55
  9244. msgid "Dx:"
  9245. msgstr "Dx:"
  9246. #: flatcamTools/ToolMeasurement.py:56 flatcamTools/ToolMeasurement.py:74
  9247. msgid "This is the distance measured over the X axis."
  9248. msgstr "Distanta masurata pe axa X."
  9249. #: flatcamTools/ToolMeasurement.py:58
  9250. msgid "Dy:"
  9251. msgstr "Dy:"
  9252. #: flatcamTools/ToolMeasurement.py:59 flatcamTools/ToolMeasurement.py:79
  9253. msgid "This is the distance measured over the Y axis."
  9254. msgstr "Distanta masurata pe axa Y."
  9255. #: flatcamTools/ToolMeasurement.py:61
  9256. msgid "DISTANCE"
  9257. msgstr "DISTANTA:"
  9258. #: flatcamTools/ToolMeasurement.py:62 flatcamTools/ToolMeasurement.py:84
  9259. msgid "This is the point to point Euclidian distance."
  9260. msgstr "Distanta euclidiana de la punct la punct."
  9261. #: flatcamTools/ToolMeasurement.py:86
  9262. msgid "Measure"
  9263. msgstr "Masoara:"
  9264. #: flatcamTools/ToolMeasurement.py:132
  9265. msgid "Meas. Tool"
  9266. msgstr "Unealta Masur."
  9267. #: flatcamTools/ToolMeasurement.py:177
  9268. msgid "MEASURING: Click on the Start point ..."
  9269. msgstr "Masoara: Click pe punctul de Start ..."
  9270. #: flatcamTools/ToolMeasurement.py:270
  9271. msgid "MEASURING: Click on the Destination point ..."
  9272. msgstr "Masoara: Click pe punctul Destinaţie..."
  9273. #: flatcamTools/ToolMeasurement.py:278
  9274. #, python-brace-format
  9275. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  9276. msgstr "Masoara: Rrezultat D(x) = {d_x} | D(y) = {d_y} | Distanta = {d_z}"
  9277. #: flatcamTools/ToolMove.py:81
  9278. msgid "MOVE: Click on the Start point ..."
  9279. msgstr "MUTARE: Click pe punctul de Start ..."
  9280. #: flatcamTools/ToolMove.py:88
  9281. msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  9282. msgstr ""
  9283. "[WARNING_NOTCL] Actiunea de Mutare a fost anulată. Nu sunt obiecte care să "
  9284. "fie mutate ..."
  9285. #: flatcamTools/ToolMove.py:110
  9286. msgid "MOVE: Click on the Destination point ..."
  9287. msgstr "MUTARE: Click pe punctul Destinaţie..."
  9288. #: flatcamTools/ToolMove.py:128
  9289. msgid "Moving ..."
  9290. msgstr "In mișcare ..."
  9291. #: flatcamTools/ToolMove.py:135
  9292. msgid "[WARNING_NOTCL] No object(s) selected."
  9293. msgstr "[WARNING_NOTCL] Nu sunt obiecte selectate."
  9294. #: flatcamTools/ToolMove.py:158
  9295. #, python-format
  9296. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  9297. msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  9298. #: flatcamTools/ToolMove.py:164
  9299. #, python-format
  9300. msgid "[success] %s object was moved ..."
  9301. msgstr "[success] Obiectul %s a fost mutat ..."
  9302. #: flatcamTools/ToolMove.py:174
  9303. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  9304. msgstr ""
  9305. "[ERROR_NOTCL] ToolMove.on_left_click() --> Eroare când se face click cu "
  9306. "butonul mouse stânga."
  9307. #: flatcamTools/ToolMove.py:202
  9308. msgid "[WARNING_NOTCL] Move action cancelled."
  9309. msgstr "[WARNING_NOTCL] Actiunea de mutare a fost anulată."
  9310. #: flatcamTools/ToolMove.py:214
  9311. msgid "[WARNING_NOTCL] Object(s) not selected"
  9312. msgstr "[WARNING_NOTCL] Obiectele nu sunt selectate."
  9313. #: flatcamTools/ToolNonCopperClear.py:26
  9314. msgid "Non-Copper Clearing"
  9315. msgstr "Curățăre Non-Cu"
  9316. #: flatcamTools/ToolNonCopperClear.py:64
  9317. msgid "Gerber object to be cleared of excess copper. "
  9318. msgstr "Obiectul Gerber care să fie curățat de cuprul in exces."
  9319. #: flatcamTools/ToolNonCopperClear.py:74
  9320. msgid ""
  9321. "Tools pool from which the algorithm\n"
  9322. "will pick the ones used for copper clearing."
  9323. msgstr ""
  9324. "Un număr de unelte din care algoritmul va alege\n"
  9325. "pe acelea care vor fi folosite pentru curățarea de Cu."
  9326. #: flatcamTools/ToolNonCopperClear.py:89
  9327. msgid ""
  9328. "This is the Tool Number.\n"
  9329. "Non copper clearing will start with the tool with the biggest \n"
  9330. "diameter, continuing until there are no more tools.\n"
  9331. "Only tools that create NCC clearing geometry will still be present\n"
  9332. "in the resulting geometry. This is because with some tools\n"
  9333. "this function will not be able to create painting geometry."
  9334. msgstr ""
  9335. "Numărul uneltei.\n"
  9336. "Curățarea de cupru va incepe cu unealta cu diametrul cel mai mare\n"
  9337. "continuand ulterior cu cele cu dia mai mic pana numai sunt unelte\n"
  9338. "sau s-a terminat procesul.\n"
  9339. "Doar uneltele care efectiv au creat geometrie vor fi prezente in obiectul\n"
  9340. "final. Aceasta deaorece unele unelte nu vor putea genera geometrie."
  9341. #: flatcamTools/ToolNonCopperClear.py:101 flatcamTools/ToolPaint.py:98
  9342. msgid ""
  9343. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  9344. "informative only. Being circular, <BR>the cut width in material is exactly "
  9345. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  9346. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  9347. "parameter in the resulting geometry UI form and enable two additional UI "
  9348. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  9349. "those two values will adjust the Z-Cut parameter such as the cut width into "
  9350. "material will be equal with the value in the Tool Diameter column of this "
  9351. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  9352. "the Operation Type in the resulting geometry as Isolation."
  9353. msgstr ""
  9354. "Tipul uneltei (TU) poate fi::<BR>- <B>Circular</B> cu 1 ... 4 dinti -> doar "
  9355. "informativ. prin forma sa circulara, <BR>lăţimea de tăiere este tot una cu "
  9356. "diametrul sau<BR>- <B>Bila</B> -> informativ și face referire la frezele cu "
  9357. "cap rotund.<BR>- <B>V-Shape</B> -> va dezactiva parametrul >Z tăiere< "
  9358. "deoarece acesta este acum calculat și va afisa 2 noi parametri in UI: V_dia "
  9359. "și V_unghi. Ajustarea acestor parametri va modifica param. calculat >Z "
  9360. "tăiere< a.i lăţimea de tăiere in material va fi egală cu valoarea >Dia "
  9361. "unealtă< din coloana tabelei de Unelte.<BR>Alegerea tipului <B>V-Shape</B> "
  9362. "va selecta automat Tipul Operaţiei ca fiind Izolare."
  9363. #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:117
  9364. msgid "Tool Dia"
  9365. msgstr "Dia Unealtă"
  9366. #: flatcamTools/ToolNonCopperClear.py:122
  9367. msgid "Diameter for the new tool to add in the Tool Table"
  9368. msgstr "Diametrul pentru noua unealtă care să fie adăugată in Tabela de Unelte"
  9369. #: flatcamTools/ToolNonCopperClear.py:148 flatcamTools/ToolPaint.py:145
  9370. #: flatcamTools/ToolSolderPaste.py:123
  9371. msgid ""
  9372. "Delete a selection of tools in the Tool Table\n"
  9373. "by first selecting a row(s) in the Tool Table."
  9374. msgstr ""
  9375. "Șterge o selecţie de unelte in Tabela de Unelte,\n"
  9376. "efectuata prin selectia liniilot din Tabela de Unelte."
  9377. #: flatcamTools/ToolNonCopperClear.py:199
  9378. msgid "Standard"
  9379. msgstr "Standard"
  9380. #: flatcamTools/ToolNonCopperClear.py:200
  9381. msgid "Seed-based"
  9382. msgstr "Punct-samanta"
  9383. #: flatcamTools/ToolNonCopperClear.py:201
  9384. msgid "Straight lines"
  9385. msgstr "Linii drepte"
  9386. #: flatcamTools/ToolNonCopperClear.py:226
  9387. msgid ""
  9388. "If checked, use 'rest machining'.\n"
  9389. "Basically it will clear copper outside PCB features,\n"
  9390. "using the biggest tool and continue with the next tools,\n"
  9391. "from bigger to smaller, to clear areas of copper that\n"
  9392. "could not be cleared by previous tool, until there is\n"
  9393. "no more copper to clear or there are no more tools.\n"
  9394. "If not checked, use the standard algorithm."
  9395. msgstr ""
  9396. "Daca este bifat foloseşte strategia de curățare tip 'rest'.\n"
  9397. "Curățarea de cupru va incepe cu unealta cu diametrul cel mai mare\n"
  9398. "continuand ulterior cu cele cu dia mai mic pana numai sunt unelte\n"
  9399. "sau s-a terminat procesul.\n"
  9400. "Doar uneltele care efectiv au creat geometrie vor fi prezente in obiectul\n"
  9401. "final. Aceasta deaorece unele unelte nu vor putea genera geometrie.\n"
  9402. "Daca nu este bifat, foloseşte algoritmul standard."
  9403. #: flatcamTools/ToolNonCopperClear.py:238
  9404. msgid "Generate Geometry"
  9405. msgstr "Genereza Geometrie"
  9406. #: flatcamTools/ToolNonCopperClear.py:485 flatcamTools/ToolPaint.py:544
  9407. #: flatcamTools/ToolSolderPaste.py:761
  9408. msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  9409. msgstr ""
  9410. "[WARNING_NOTCL] Introduce diametrul unei unelte pt a fi adăugată, in format "
  9411. "Real."
  9412. #: flatcamTools/ToolNonCopperClear.py:513 flatcamTools/ToolPaint.py:568
  9413. msgid "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
  9414. msgstr ""
  9415. "[WARNING_NOTCL] Adăugarea unei unelte noi este anulată. Unealta există deja "
  9416. "in Tabela de Unelte."
  9417. #: flatcamTools/ToolNonCopperClear.py:518 flatcamTools/ToolPaint.py:573
  9418. msgid "[success] New tool added to Tool Table."
  9419. msgstr "[success] O noua unealtă a fost adăugată in Tabela de Unelte."
  9420. #: flatcamTools/ToolNonCopperClear.py:560 flatcamTools/ToolPaint.py:616
  9421. msgid "[success] Tool from Tool Table was edited."
  9422. msgstr "[success] O unealtă din Tabela de Unelte a fost editata."
  9423. #: flatcamTools/ToolNonCopperClear.py:571 flatcamTools/ToolPaint.py:627
  9424. #: flatcamTools/ToolSolderPaste.py:847
  9425. msgid ""
  9426. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  9427. "Table."
  9428. msgstr ""
  9429. "[WARNING_NOTCL] Editare eșuata. Noua valoare pt diametrul uneltei este deja "
  9430. "in Tabela de Unelte."
  9431. #: flatcamTools/ToolNonCopperClear.py:610 flatcamTools/ToolPaint.py:724
  9432. msgid "[WARNING_NOTCL] Delete failed. Select a tool to delete."
  9433. msgstr "[WARNING_NOTCL] Ștergere eșuata. Selectează o unealtă pt ștergere."
  9434. #: flatcamTools/ToolNonCopperClear.py:615 flatcamTools/ToolPaint.py:729
  9435. msgid "[success] Tool(s) deleted from Tool Table."
  9436. msgstr "[success] Au fost șterse unelte din Tabela de Unelte."
  9437. #: flatcamTools/ToolNonCopperClear.py:633 flatcamTools/ToolPaint.py:748
  9438. msgid ""
  9439. "[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  9440. msgstr ""
  9441. "[ERROR_NOTCL] Valoarea de suprapunere trrebuie sa ia valori intre 0 "
  9442. "(inclusiv) si 1 (exclusiv)."
  9443. #: flatcamTools/ToolNonCopperClear.py:673
  9444. msgid "[ERROR_NOTCL] No Gerber file available."
  9445. msgstr "[ERROR_NOTCL] Nici-un fisier Gerber nu este disponibil."
  9446. #: flatcamTools/ToolNonCopperClear.py:711
  9447. #: flatcamTools/ToolNonCopperClear.py:833
  9448. msgid "Clearing Non-Copper areas."
  9449. msgstr "Se curăță PCB-ul de cuprul in exces."
  9450. #: flatcamTools/ToolNonCopperClear.py:729
  9451. #, python-format
  9452. msgid "[success] Non-Copper Clearing with ToolDia = %s started."
  9453. msgstr "[success] Curățarea de Cupru in exces cu Dia Unealtă = %s a inceput."
  9454. #: flatcamTools/ToolNonCopperClear.py:798
  9455. #, python-format
  9456. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  9457. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  9458. #: flatcamTools/ToolNonCopperClear.py:803
  9459. msgid "[success] NCC Tool finished."
  9460. msgstr "[success] Unealta NCC s-a terminat."
  9461. #: flatcamTools/ToolNonCopperClear.py:805
  9462. msgid ""
  9463. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  9464. "cleared. Check the result."
  9465. msgstr ""
  9466. "[WARNING_NOTCL] Unealta NCC a terminat lucrul dar unele zone PCB nu au putut "
  9467. "fi curățate de Cu. Verifică rezultatul."
  9468. #: flatcamTools/ToolNonCopperClear.py:851
  9469. #, python-format
  9470. msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  9471. msgstr "[success] Curățarea de Cupru tip Rest cu dia unealtă = %s a inceput.."
  9472. #: flatcamTools/ToolNonCopperClear.py:949
  9473. #, python-format
  9474. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  9475. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  9476. #: flatcamTools/ToolNonCopperClear.py:957
  9477. msgid ""
  9478. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  9479. "settings."
  9480. msgstr ""
  9481. "[ERROR_NOTCL] Unealta NCC a termiant lucrul dar nu a putut curăța de Cu "
  9482. "obiectul cu setările curente."
  9483. #: flatcamTools/ToolPDF.py:38
  9484. msgid "PDF Import Tool"
  9485. msgstr "Unealta import PDF"
  9486. #: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156
  9487. msgid "Open PDF"
  9488. msgstr "Încarcă PDF"
  9489. #: flatcamTools/ToolPDF.py:159
  9490. msgid "[WARNING_NOTCL] Open PDF cancelled."
  9491. msgstr "[WARNING_NOTCL] Incărcarea fişier PDF anulată."
  9492. #: flatcamTools/ToolPDF.py:186
  9493. msgid "Parsing PDF file ..."
  9494. msgstr "Se parsează fisierul PDF ..."
  9495. #: flatcamTools/ToolPDF.py:265 flatcamTools/ToolPDF.py:338
  9496. #, python-format
  9497. msgid "Rendering PDF layer #%d ..."
  9498. msgstr "Se generează layer-ul PDF #%d ..."
  9499. #: flatcamTools/ToolPDF.py:269 flatcamTools/ToolPDF.py:342
  9500. msgid "[ERROR_NOTCL] Open PDF file failed."
  9501. msgstr "[ERROR_NOTCL] Deschiderea unui fişier PDF a eșuat."
  9502. #: flatcamTools/ToolPDF.py:274 flatcamTools/ToolPDF.py:347
  9503. #, python-format
  9504. msgid "[success] Rendered: %s"
  9505. msgstr "[success] Analizat: %s"
  9506. #: flatcamTools/ToolPaint.py:24
  9507. msgid "Paint Area"
  9508. msgstr "Unealta Paint"
  9509. #: flatcamTools/ToolPaint.py:60
  9510. msgid "Geometry:"
  9511. msgstr "Geometrie:"
  9512. #: flatcamTools/ToolPaint.py:62
  9513. msgid "Geometry object to be painted. "
  9514. msgstr "Obiectul tip Geometrie care să fie 'pictat'"
  9515. #: flatcamTools/ToolPaint.py:71
  9516. msgid ""
  9517. "Tools pool from which the algorithm\n"
  9518. "will pick the ones used for painting."
  9519. msgstr ""
  9520. "O suma de unelte din care algoritmul va alege pe acelea\n"
  9521. "care vor fi folosite pentru 'pictare'."
  9522. #: flatcamTools/ToolPaint.py:86
  9523. msgid ""
  9524. "This is the Tool Number.\n"
  9525. "Painting will start with the tool with the biggest diameter,\n"
  9526. "continuing until there are no more tools.\n"
  9527. "Only tools that create painting geometry will still be present\n"
  9528. "in the resulting geometry. This is because with some tools\n"
  9529. "this function will not be able to create painting geometry."
  9530. msgstr ""
  9531. "Numărul uneltei.\n"
  9532. "'Pictarea' va incepe cu unealta cu diametrul cel mai mare\n"
  9533. "continuand ulterior cu cele cu dia mai mic pana numai sunt unelte\n"
  9534. "sau s-a terminat procesul.\n"
  9535. "Doar uneltele care efectiv au creat geometrie vor fi prezente in obiectul\n"
  9536. "final. Aceasta deaorece unele unelte nu vor putea genera geometrie."
  9537. #: flatcamTools/ToolPaint.py:119
  9538. msgid "Diameter for the new tool."
  9539. msgstr "Diametrul pt noua unealtă."
  9540. #: flatcamTools/ToolPaint.py:224
  9541. msgid ""
  9542. "If checked, use 'rest machining'.\n"
  9543. "Basically it will clear copper outside PCB features,\n"
  9544. "using the biggest tool and continue with the next tools,\n"
  9545. "from bigger to smaller, to clear areas of copper that\n"
  9546. "could not be cleared by previous tool, until there is\n"
  9547. "no more copper to clear or there are no more tools.\n"
  9548. "\n"
  9549. "If not checked, use the standard algorithm."
  9550. msgstr ""
  9551. "Daca este bifat, foloste 'rest machining'.\n"
  9552. "Mai exact, se va curăța cuprul din afara traseelor,\n"
  9553. "folosind mai intai unealta cu diametrul cel mai mare\n"
  9554. "apoi folosindu-se progresiv unelte cu diametrul tot\n"
  9555. "mai mic, din cele disponibile in tabela de unelte, pt a\n"
  9556. "curăța zonele care nu s-au putut curăța cu unealta\n"
  9557. "precedenta.\n"
  9558. "Daca nu este bifat, foloseşte algoritmul standard."
  9559. #: flatcamTools/ToolPaint.py:239
  9560. msgid ""
  9561. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  9562. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  9563. "polygons."
  9564. msgstr ""
  9565. "Cum să se selecteze poligoanele de 'pictat.<BR>Opțiuni:<BR>- <B>Unic</B>: "
  9566. "click mouse pe poligonul de 'pictat'.<BR>- <B>Toate</B>: 'pictează' toate "
  9567. "poligoanele."
  9568. #: flatcamTools/ToolPaint.py:254
  9569. msgid "Create Paint Geometry"
  9570. msgstr "Crează un obiect Geometrie tip 'Paint'"
  9571. #: flatcamTools/ToolPaint.py:256
  9572. msgid ""
  9573. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  9574. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  9575. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  9576. "created."
  9577. msgstr ""
  9578. "Dupa ce se apasa pe acest buton<BR>fa click pe poligonul care trebuie "
  9579. "'pictat' daca <B>Unic</B> este selectat.<BR>Daca <B>Toate</B> este "
  9580. "selectat, operatia de 'pictare' va incepe imediat dupa click.<BR>Un nou "
  9581. "obiect Geometrie va fi creat."
  9582. #: flatcamTools/ToolPaint.py:733
  9583. msgid "geometry_on_paint_button"
  9584. msgstr "geometry_on_paint_button"
  9585. #: flatcamTools/ToolPaint.py:752 flatcamTools/ToolPaint.py:787
  9586. msgid "[WARNING_NOTCL] Click inside the desired polygon."
  9587. msgstr ""
  9588. "[WARNING_NOTCL] Click in interiorul poligonului care se dorește să fie "
  9589. "'pictat'."
  9590. #: flatcamTools/ToolPaint.py:774
  9591. msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  9592. msgstr "[ERROR_NOTCL] Nu se poate face 'pictare' pe geometrii MultiGeo ..."
  9593. #: flatcamTools/ToolPaint.py:796 flatcamTools/ToolPaint.py:1003
  9594. msgid "Painting polygon..."
  9595. msgstr "Se 'pictează' un poligon..."
  9596. #: flatcamTools/ToolPaint.py:851
  9597. msgid "[WARNING] No polygon found."
  9598. msgstr "[WARNING] Nu s-a gasit nici-un poligon."
  9599. #: flatcamTools/ToolPaint.py:854
  9600. msgid "Painting polygon."
  9601. msgstr "Se 'pictează' un poligon."
  9602. #: flatcamTools/ToolPaint.py:896
  9603. msgid "[ERROR_NOTCL] Geometry could not be painted completely"
  9604. msgstr "[ERROR_NOTCL] Geometria nu a putut să fie 'pictata' complet."
  9605. #: flatcamTools/ToolPaint.py:922
  9606. #, python-format
  9607. msgid ""
  9608. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  9609. "different strategy of paint\n"
  9610. "%s"
  9611. msgstr ""
  9612. "[ERROR] Nu s-a putut face operatia de 'pictare'. Incearcă o combinaţie "
  9613. "diferita de parametri. Sau o strategie diferita de 'pictare'.\n"
  9614. "%s"
  9615. #: flatcamTools/ToolPaint.py:964
  9616. #, python-format
  9617. msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  9618. msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  9619. #: flatcamTools/ToolPaint.py:970 flatcamTools/ToolPaint.py:1263
  9620. msgid "Polygon Paint started ..."
  9621. msgstr "Paint pt poligon a inceput ..."
  9622. #: flatcamTools/ToolPaint.py:1119 flatcamTools/ToolPaint.py:1208
  9623. #, python-format
  9624. msgid ""
  9625. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  9626. "Or a different Method of paint\n"
  9627. "%s"
  9628. msgstr ""
  9629. "[ERROR] Nu s-a putut efectua op. 'Paint' pt toate poligoanele. Incearcă o "
  9630. "combinaţie diferita de parametri. Sau încearcă o alta metoda de 'pictat'\n"
  9631. "%s"
  9632. #: flatcamTools/ToolPaint.py:1143
  9633. msgid ""
  9634. "[ERROR] There is no Painting Geometry in the file.\n"
  9635. "Usually it means that the tool diameter is too big for the painted "
  9636. "geometry.\n"
  9637. "Change the painting parameters and try again."
  9638. msgstr ""
  9639. "[ERROR] Nu exista nici-o Geometrie rezultata din 'pictare' in acest fişier.\n"
  9640. "De obicei inseamna că diametrul uneltei este prea mare pentru elemetele "
  9641. "geometrice.\n"
  9642. "Schimbă parametrii de 'pictare' și încearcă din nou."
  9643. #: flatcamTools/ToolPaint.py:1152
  9644. msgid "[success] Paint All Done."
  9645. msgstr "[success] 'Paint' pt toate poligoanele a fost efectuata."
  9646. #: flatcamTools/ToolPaint.py:1238
  9647. msgid ""
  9648. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  9649. "Usually it means that the tool diameter is too big for the painted "
  9650. "geometry.\n"
  9651. "Change the painting parameters and try again."
  9652. msgstr ""
  9653. "[ERROR_NOTCL] Nu exista o geometrie 'pictata' in acest fişier.\n"
  9654. "De obicei aceasta inseamna că diametrul uneltei este prea mare \n"
  9655. "pt a fi folosit in obiectul Geometrie de 'pictat'.\n"
  9656. "Schimbă parametrii de 'pictat' și încearcă din nou."
  9657. #: flatcamTools/ToolPaint.py:1247
  9658. msgid "[success] Paint All with Rest-Machining done."
  9659. msgstr ""
  9660. "[success] 'Paint' pentru toate poligoanele cu strategia Rest a fost "
  9661. "efectuata."
  9662. #: flatcamTools/ToolPanelize.py:25
  9663. msgid "Panelize PCB"
  9664. msgstr "Panelizează PCB"
  9665. #: flatcamTools/ToolPanelize.py:58
  9666. msgid ""
  9667. "Specify the type of object to be panelized\n"
  9668. "It can be of type: Gerber, Excellon or Geometry.\n"
  9669. "The selection here decide the type of objects that will be\n"
  9670. "in the Object combobox."
  9671. msgstr ""
  9672. "Specifica tipul de obiect care va fi panelizat.\n"
  9673. "Poate fi de tipul: Gerber, Excellon sau Geometrie.\n"
  9674. "Selectia facuta aici va dicta tipul de obiecte care se vor\n"
  9675. "regasi in combobox-ul >Obiect<."
  9676. #: flatcamTools/ToolPanelize.py:73
  9677. msgid ""
  9678. "Object to be panelized. This means that it will\n"
  9679. "be duplicated in an array of rows and columns."
  9680. msgstr ""
  9681. "Obiectul care va fi panelizat.\n"
  9682. "Acesta va fi multiplicat intr-o arie\n"
  9683. "de linii și coloane."
  9684. #: flatcamTools/ToolPanelize.py:86
  9685. msgid "<b>Penelization Reference:</b>"
  9686. msgstr "<b>Referintă panelizare:</b>"
  9687. #: flatcamTools/ToolPanelize.py:88
  9688. msgid ""
  9689. "Choose the reference for panelization:\n"
  9690. "- Object = the bounding box of a different object\n"
  9691. "- Bounding Box = the bounding box of the object to be panelized\n"
  9692. "\n"
  9693. "The reference is useful when doing panelization for more than one\n"
  9694. "object. The spacings (really offsets) will be applied in reference\n"
  9695. "to this reference object therefore maintaining the panelized\n"
  9696. "objects in sync."
  9697. msgstr ""
  9698. "Alege referinta pt panelizare:\n"
  9699. "- Obiect = forma inconjurătoare a unui alt obiect\n"
  9700. "- Forma inconjurătoare = forma inconjurătoare a obiectului care tb "
  9701. "panelizat\n"
  9702. "\n"
  9703. "Referinta este utila cand se face panelizarea pt mai mult de un obiect. "
  9704. "Spatierile\n"
  9705. "(mai degraba ofsetări) vor fi aplicate avand ca referintă acest obiect de "
  9706. "referintă,\n"
  9707. "prin urmare mentinand obiectele paenlizate in sincronizare unul cu altul."
  9708. #: flatcamTools/ToolPanelize.py:113
  9709. msgid ""
  9710. "Specify the type of object to be used as an container for\n"
  9711. "panelization. It can be: Gerber or Geometry type.\n"
  9712. "The selection here decide the type of objects that will be\n"
  9713. "in the Box Object combobox."
  9714. msgstr ""
  9715. "Tipul de obiect care va fi folosit ca și container pt panelizare.\n"
  9716. "Poate fi de tiul: Gerber sau Geometrie.\n"
  9717. "Selectia facuta aici va dicta tipul de obiecte care se vor\n"
  9718. "regasi in combobox-ul >Container<."
  9719. #: flatcamTools/ToolPanelize.py:128
  9720. msgid ""
  9721. "The actual object that is used a container for the\n"
  9722. " selected object that is to be panelized."
  9723. msgstr ""
  9724. "Obiectul care este folosit ca și container \n"
  9725. "pt obiectul care va fi panelizat."
  9726. #: flatcamTools/ToolPanelize.py:134
  9727. msgid "<b>Panel Data:</b>"
  9728. msgstr "<b>Date panel</b>"
  9729. #: flatcamTools/ToolPanelize.py:136
  9730. msgid ""
  9731. "This informations will shape the resulting panel.\n"
  9732. "The number of rows and columns will set how many\n"
  9733. "duplicates of the original geometry will be generated.\n"
  9734. "\n"
  9735. "The spacings will set the distance between any two\n"
  9736. "elements of the panel array."
  9737. msgstr ""
  9738. "Aceste informatii vor determina forma panelului rezultant.\n"
  9739. "Numărul de linii si de coloane va determina cat de multe \n"
  9740. "copii ale geometriei obiectului original vor fi create.\n"
  9741. "\n"
  9742. "Spatierile sunt de fapt distante intre oricare două elemente ale \n"
  9743. "ariei panelului."
  9744. #: flatcamTools/ToolPanelize.py:183
  9745. msgid "<b>Panel Type:</b>"
  9746. msgstr "<b>Tip panel:</b>"
  9747. #: flatcamTools/ToolPanelize.py:185
  9748. msgid ""
  9749. "Choose the type of object for the panel object:\n"
  9750. "- Geometry\n"
  9751. "- Gerber"
  9752. msgstr ""
  9753. "Alege tipul de obiect care va fi creat pt obiectul panelizat:\n"
  9754. "- Geometrie\n"
  9755. "-Gerber"
  9756. #: flatcamTools/ToolPanelize.py:193
  9757. msgid "Constrain panel within:"
  9758. msgstr "Mentine panelul in:"
  9759. #: flatcamTools/ToolPanelize.py:227
  9760. msgid "Panelize Object"
  9761. msgstr "Panelizează obiectul"
  9762. #: flatcamTools/ToolPanelize.py:229
  9763. msgid ""
  9764. "Panelize the specified object around the specified box.\n"
  9765. "In other words it creates multiple copies of the source object,\n"
  9766. "arranged in a 2D array of rows and columns."
  9767. msgstr ""
  9768. "Se panelizează obiectul conform containerului selectat.\n"
  9769. "Cu alte cuvinte se crează copii multiple ale obiectului sursa,\n"
  9770. "aranjate intr-o arie 2D de linii și coloane."
  9771. #: flatcamTools/ToolPanelize.py:370
  9772. #, python-format
  9773. msgid "[WARNING_NOTCL]No object Box. Using instead %s"
  9774. msgstr ""
  9775. "[WARNING_NOTCL] Nu este disponibil nici-un container Box pentru obiect. Se "
  9776. "foloseşte %s"
  9777. #: flatcamTools/ToolPanelize.py:453
  9778. msgid ""
  9779. "[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive "
  9780. "integer."
  9781. msgstr ""
  9782. "[ERROR_NOTCL] Val. coloane sau linii este zero. Schimbă aceasta val. intr-un "
  9783. "număr pozitiv intreg."
  9784. #: flatcamTools/ToolPanelize.py:478 flatcamTools/ToolPanelize.py:635
  9785. msgid "Generating panel ... Please wait."
  9786. msgstr "Se generează panelul ... Va rugam asteptati!"
  9787. #: flatcamTools/ToolPanelize.py:628
  9788. msgid "[success] Panel done..."
  9789. msgstr "[success] Panel executat ..."
  9790. #: flatcamTools/ToolPanelize.py:631
  9791. #, python-brace-format
  9792. msgid ""
  9793. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  9794. "{row} rows"
  9795. msgstr ""
  9796. "[WARNING] Prea mare pt aria desemnata. Panelul final are {col} coloane și "
  9797. "{row} linii"
  9798. #: flatcamTools/ToolPanelize.py:640
  9799. msgid "[success] Panel created successfully."
  9800. msgstr "[success] Panel creat cu succes."
  9801. #: flatcamTools/ToolPcbWizard.py:32
  9802. msgid "PcbWizard Import Tool"
  9803. msgstr "Unealta import PcbWizard"
  9804. #: flatcamTools/ToolPcbWizard.py:40
  9805. msgid "Import 2-file Excellon"
  9806. msgstr "Importa un Excellon bi-fisier"
  9807. #: flatcamTools/ToolPcbWizard.py:57
  9808. msgid "Excellon file:"
  9809. msgstr "Fisier Excellon:"
  9810. #: flatcamTools/ToolPcbWizard.py:59
  9811. msgid ""
  9812. "Load the Excellon file.\n"
  9813. "Usually it has a .DRL extension"
  9814. msgstr ""
  9815. "Incarcă fisierul Excellon.\n"
  9816. "De obicei are extensia .DRL."
  9817. #: flatcamTools/ToolPcbWizard.py:66
  9818. msgid "INF file:"
  9819. msgstr "Fisierul INF:"
  9820. #: flatcamTools/ToolPcbWizard.py:68
  9821. msgid "Load the INF file."
  9822. msgstr "Incarca fisierul INF."
  9823. #: flatcamTools/ToolPcbWizard.py:81
  9824. msgid "Tool Number"
  9825. msgstr "Număr unealtă:"
  9826. #: flatcamTools/ToolPcbWizard.py:83
  9827. msgid "Tool diameter in file units."
  9828. msgstr "Dimaetrul uneltei in unitătile fisierului."
  9829. #: flatcamTools/ToolPcbWizard.py:97
  9830. msgid "Int. digits:"
  9831. msgstr "Parte intreagă:"
  9832. #: flatcamTools/ToolPcbWizard.py:99
  9833. msgid "The number of digits for the integral part of the coordinates."
  9834. msgstr ""
  9835. "Acest număr reprezinta numărul de digiti din partea\n"
  9836. "intreagă a coordonatelor."
  9837. #: flatcamTools/ToolPcbWizard.py:106
  9838. msgid "Frac. digits:"
  9839. msgstr "Parte zecimală:"
  9840. #: flatcamTools/ToolPcbWizard.py:108
  9841. msgid "The number of digits for the fractional part of the coordinates."
  9842. msgstr ""
  9843. "Acest număr reprezinta numărul de digiti din partea\n"
  9844. "zecimala a coordonatelor."
  9845. #: flatcamTools/ToolPcbWizard.py:116
  9846. msgid "Zeros supp.:"
  9847. msgstr "Supresie Zerouri:"
  9848. #: flatcamTools/ToolPcbWizard.py:118
  9849. msgid ""
  9850. "The type of zeros suppression used.\n"
  9851. "Can be of type:\n"
  9852. "- LZ = leading zeros are kept\n"
  9853. "- TZ = trailing zeros are kept\n"
  9854. "- No Suppression = no zero suppression"
  9855. msgstr ""
  9856. "Tipul de supresie de zerouri care\n"
  9857. "este folosit.\n"
  9858. "Poate fi:\n"
  9859. "- LZ = zerourile din fată sunt păstrate\n"
  9860. "- TZ = zerourile de la coadă sunt păstrate\n"
  9861. "- Fără Supresie = nu se face supresie de zerouri"
  9862. #: flatcamTools/ToolPcbWizard.py:129
  9863. msgid "Units"
  9864. msgstr "Unităti"
  9865. #: flatcamTools/ToolPcbWizard.py:131
  9866. msgid ""
  9867. "The type of units that the coordinates and tool\n"
  9868. "diameters are using. Can be INCH or MM."
  9869. msgstr ""
  9870. "Tipul de unităti folosite pt coordonate si\n"
  9871. "pentru diametrul uneltelor. Poate fi INCH sau MM."
  9872. #: flatcamTools/ToolPcbWizard.py:138
  9873. msgid "Import Excellon"
  9874. msgstr "Importă Excellon"
  9875. #: flatcamTools/ToolPcbWizard.py:140
  9876. msgid ""
  9877. "Import in FlatCAM an Excellon file\n"
  9878. "that store it's information's in 2 files.\n"
  9879. "One usually has .DRL extension while\n"
  9880. "the other has .INF extension."
  9881. msgstr ""
  9882. "Importă in FlatCAM un fisier Excellon\n"
  9883. "care isi stochează informatia in 2 fisiere.\n"
  9884. "Unul are de obicei extensia .DRL in timp\n"
  9885. "ce celălalt are extensia .INF."
  9886. #: flatcamTools/ToolPcbWizard.py:194
  9887. msgid "PCBWizard Tool"
  9888. msgstr "Unealta PCBWizard"
  9889. #: flatcamTools/ToolPcbWizard.py:288 flatcamTools/ToolPcbWizard.py:292
  9890. msgid "Load PcbWizard Excellon file"
  9891. msgstr "Incarcă un fisier Excellon tip PCBWizard"
  9892. #: flatcamTools/ToolPcbWizard.py:312 flatcamTools/ToolPcbWizard.py:316
  9893. msgid "Load PcbWizard INF file"
  9894. msgstr "Incarcă un fisier INF tip PCBWizard"
  9895. #: flatcamTools/ToolPcbWizard.py:363
  9896. msgid ""
  9897. "[ERROR] The INF file does not contain the tool table.\n"
  9898. "Try to open the Excellon file from File -> Open -> Excellon\n"
  9899. "and edit the drill diameters manually."
  9900. msgstr ""
  9901. "[ERROR] Fisierul INF nu contine tabela de unelte.\n"
  9902. "Incearcă să deschizi fisierul Excellon din Fisier -> Deschide -> \n"
  9903. "Excellon si să editezi manual diametrele uneltelor."
  9904. #: flatcamTools/ToolPcbWizard.py:383
  9905. msgid "[success] PcbWizard .INF file loaded."
  9906. msgstr "[success] Fisierul .INF tip PCBWizard a fost incărcat."
  9907. #: flatcamTools/ToolPcbWizard.py:387
  9908. msgid "[success] Main PcbWizard Excellon file loaded."
  9909. msgstr "[success] Fişierul Excellon tip PCBWizard a fost incărcat."
  9910. #: flatcamTools/ToolPcbWizard.py:424
  9911. #, python-format
  9912. msgid "[ERROR_NOTCL] Cannot parse file: %s"
  9913. msgstr "[ERROR_NOTCL] Fişierul %s nu se poate parsa."
  9914. #: flatcamTools/ToolPcbWizard.py:447
  9915. msgid "Importing Excellon."
  9916. msgstr "Excellon in curs de import."
  9917. #: flatcamTools/ToolPcbWizard.py:454
  9918. msgid "[ERROR_NOTCL] Import Excellon file failed."
  9919. msgstr "[ERROR_NOTCL] Fişierul Excellon nu a putut fi importat."
  9920. #: flatcamTools/ToolPcbWizard.py:461
  9921. #, python-format
  9922. msgid "[success] Imported: %s"
  9923. msgstr "[success] Importat: %s"
  9924. #: flatcamTools/ToolPcbWizard.py:464
  9925. msgid "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
  9926. msgstr ""
  9927. "[WARNING_NOTCL] Fuziunea fisiere Excellon este in curs. Vă rugăm "
  9928. "aşteptați ..."
  9929. #: flatcamTools/ToolPcbWizard.py:466
  9930. msgid "[ERROR_NOTCL] The imported Excellon file is None."
  9931. msgstr "[ERROR_NOTCL] Fişierul Excellon importat este gol."
  9932. #: flatcamTools/ToolProperties.py:103
  9933. msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  9934. msgstr ""
  9935. "[ERROR_NOTCL] Unealta Proprietati nu a fost afișată. Nici-un obiect nu este "
  9936. "selectat."
  9937. #: flatcamTools/ToolProperties.py:110
  9938. msgid "[success] Object Properties are displayed."
  9939. msgstr "[success] Proprietatile obiectului sunt afisate in Tab-ul Unealta."
  9940. #: flatcamTools/ToolProperties.py:111
  9941. msgid "Properties Tool"
  9942. msgstr "Unealta Proprietati"
  9943. #: flatcamTools/ToolShell.py:69
  9944. msgid "...proccessing..."
  9945. msgstr "...in procesare..."
  9946. #: flatcamTools/ToolShell.py:71
  9947. #, python-format
  9948. msgid "...proccessing... [%s]"
  9949. msgstr "...in procesare... [%s]"
  9950. #: flatcamTools/ToolSolderPaste.py:37
  9951. msgid "Solder Paste Tool"
  9952. msgstr "Unealta DispensorPF"
  9953. #: flatcamTools/ToolSolderPaste.py:65
  9954. msgid "Gerber Solder paste object. "
  9955. msgstr "Obiect Gerber cu masca pt dispensarea de pastă de fludor."
  9956. #: flatcamTools/ToolSolderPaste.py:72
  9957. msgid ""
  9958. "Tools pool from which the algorithm\n"
  9959. "will pick the ones used for dispensing solder paste."
  9960. msgstr ""
  9961. "Un număr de unelte (nozzle) din care algoritmul va alege pe acelea\n"
  9962. "care vor fi folosite pentru dispensarea pastei de fludor."
  9963. #: flatcamTools/ToolSolderPaste.py:87
  9964. msgid ""
  9965. "This is the Tool Number.\n"
  9966. "The solder dispensing will start with the tool with the biggest \n"
  9967. "diameter, continuing until there are no more Nozzle tools.\n"
  9968. "If there are no longer tools but there are still pads not covered\n"
  9969. " with solder paste, the app will issue a warning message box."
  9970. msgstr ""
  9971. "Numărul Uneltei.\n"
  9972. "Dispensarea de pastă de fludor va incepe cu unealta care are dia\n"
  9973. "cel mai mare și va continua pana numai sunt unelte Nozzle disponibile\n"
  9974. "sau procesul s-a terminat.\n"
  9975. "Daca numai sunt unelte dar mai sunt inca paduri neacoperite de pastă de \n"
  9976. "fludor, aplicaţia va afisa un mesaj de avertizare in Status Bar."
  9977. #: flatcamTools/ToolSolderPaste.py:94
  9978. msgid ""
  9979. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  9980. "is the width of the solder paste dispensed."
  9981. msgstr ""
  9982. "Diametrul uneltei Nozzle. Valoarea sa (in unitati de maura curente)\n"
  9983. "este lăţimea cantiatii de pastă de fludor dispensata."
  9984. #: flatcamTools/ToolSolderPaste.py:101
  9985. msgid "New Nozzle Tool"
  9986. msgstr "Unealtă noua"
  9987. #: flatcamTools/ToolSolderPaste.py:117
  9988. msgid ""
  9989. "Add a new nozzle tool to the Tool Table\n"
  9990. "with the diameter specified above."
  9991. msgstr ""
  9992. "Adaugă o unealtă nou tip Nozzle in Tabela de Unelte\n"
  9993. "cu diametrul specificat mai sus,"
  9994. #: flatcamTools/ToolSolderPaste.py:129
  9995. msgid "Generate solder paste dispensing geometry."
  9996. msgstr "Generează un obiect Geometrie pt dispensarea de pastă de fludor."
  9997. #: flatcamTools/ToolSolderPaste.py:142
  9998. msgid "STEP 1:"
  9999. msgstr "PAS 1:"
  10000. #: flatcamTools/ToolSolderPaste.py:144
  10001. msgid ""
  10002. "First step is to select a number of nozzle tools for usage\n"
  10003. "and then optionally modify the GCode parameters bellow."
  10004. msgstr ""
  10005. "Primul pas este să se efectueza o selecţie de unelte Nozzl pt \n"
  10006. "utilizare și apoi in mod optional, să se modifice parametrii\n"
  10007. "GCode de mai jos."
  10008. #: flatcamTools/ToolSolderPaste.py:147
  10009. msgid ""
  10010. "Select tools.\n"
  10011. "Modify parameters."
  10012. msgstr ""
  10013. "Selectează unelte.\n"
  10014. "Modifica parametri."
  10015. #: flatcamTools/ToolSolderPaste.py:236
  10016. msgid ""
  10017. "Feedrate (speed) while moving up vertically\n"
  10018. " to Dispense position (on Z plane)."
  10019. msgstr ""
  10020. "Viteza de deplasare la mișcarea pe verticala spre\n"
  10021. "poziţia de dispensare (in planul Z)."
  10022. #: flatcamTools/ToolSolderPaste.py:290
  10023. msgid "Generate GCode"
  10024. msgstr "Genereaa GCode"
  10025. #: flatcamTools/ToolSolderPaste.py:292
  10026. msgid ""
  10027. "Generate GCode for Solder Paste dispensing\n"
  10028. "on PCB pads."
  10029. msgstr ""
  10030. "Generează GCode pt dispensarea\n"
  10031. "de pastă de fludor pe padurile PCB."
  10032. #: flatcamTools/ToolSolderPaste.py:308
  10033. msgid "STEP 2:"
  10034. msgstr "PAS 2:"
  10035. #: flatcamTools/ToolSolderPaste.py:310
  10036. msgid ""
  10037. "Second step is to create a solder paste dispensing\n"
  10038. "geometry out of an Solder Paste Mask Gerber file."
  10039. msgstr ""
  10040. "Al 2-lea pas este să se creeze un obiect Geometrie pt dispensarea\n"
  10041. "de pastă de fludor, dintr-un fişier Gerber cu datele mastii de plasare\n"
  10042. "a pastei de fludor."
  10043. #: flatcamTools/ToolSolderPaste.py:326
  10044. msgid "Geo Result:"
  10045. msgstr "Rezultat Geo:"
  10046. #: flatcamTools/ToolSolderPaste.py:328
  10047. msgid ""
  10048. "Geometry Solder Paste object.\n"
  10049. "The name of the object has to end in:\n"
  10050. "'_solderpaste' as a protection."
  10051. msgstr ""
  10052. "Obiect Geometrie pt dispensare pastă de fludor.\n"
  10053. "Numele obiectului trebuie să se termine obligatoriu\n"
  10054. "in: '_solderpaste'."
  10055. #: flatcamTools/ToolSolderPaste.py:337
  10056. msgid "STEP 3:"
  10057. msgstr "PAS 3:"
  10058. #: flatcamTools/ToolSolderPaste.py:339
  10059. msgid ""
  10060. "Third step is to select a solder paste dispensing geometry,\n"
  10061. "and then generate a CNCJob object.\n"
  10062. "\n"
  10063. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  10064. "first you need to generate a geometry with those new params,\n"
  10065. "and only after that you can generate an updated CNCJob."
  10066. msgstr ""
  10067. "Al 3-lea pas este selectia unei geometrii de dispensare a pastei de fludor\n"
  10068. "urmata de generarea unui obiect tip CNCJob.\n"
  10069. "\n"
  10070. "ATENTIE: daca se dorește crearea un ui obiect CNCJob cu param. noi,\n"
  10071. "mai intai trebuie generat obiectul Geometrie cu acei parametri noi și abia\n"
  10072. "apoi se poate genera un obiect CNCJob actualizat."
  10073. #: flatcamTools/ToolSolderPaste.py:359
  10074. msgid "CNC Result:"
  10075. msgstr "Rezultat CNC:"
  10076. #: flatcamTools/ToolSolderPaste.py:361
  10077. msgid ""
  10078. "CNCJob Solder paste object.\n"
  10079. "In order to enable the GCode save section,\n"
  10080. "the name of the object has to end in:\n"
  10081. "'_solderpaste' as a protection."
  10082. msgstr ""
  10083. "Obiect CNCJob pt dispensare pastă de fludor.\n"
  10084. "Pt a activa sectiunea de Salvare GCode,\n"
  10085. "numele obiectului trebuie să se termine obligatoriu in:\n"
  10086. "'_solderpaste'."
  10087. #: flatcamTools/ToolSolderPaste.py:371
  10088. msgid "View GCode"
  10089. msgstr "Vizualiz. GCode"
  10090. #: flatcamTools/ToolSolderPaste.py:373
  10091. msgid ""
  10092. "View the generated GCode for Solder Paste dispensing\n"
  10093. "on PCB pads."
  10094. msgstr ""
  10095. "Vizualizează codul GCode generat pt dispensarea de \n"
  10096. "pastă de fludor pe padurile PCB-ului."
  10097. #: flatcamTools/ToolSolderPaste.py:377
  10098. msgid "Save GCode"
  10099. msgstr "Salvează GCode"
  10100. #: flatcamTools/ToolSolderPaste.py:379
  10101. msgid ""
  10102. "Save the generated GCode for Solder Paste dispensing\n"
  10103. "on PCB pads, to a file."
  10104. msgstr ""
  10105. "Salvează codul GCode generat pt dispensare pastă de fludor\n"
  10106. "pe padurile unui PCB, intr-un fişier pe HDD."
  10107. #: flatcamTools/ToolSolderPaste.py:383
  10108. msgid "STEP 4:"
  10109. msgstr "PAS 4:"
  10110. #: flatcamTools/ToolSolderPaste.py:385
  10111. msgid ""
  10112. "Fourth step (and last) is to select a CNCJob made from \n"
  10113. "a solder paste dispensing geometry, and then view/save it's GCode."
  10114. msgstr ""
  10115. "Al 4-lea pas (ultimul) este să se selecteze un obiect CNCJob realizat\n"
  10116. "dintr-un obiect Geometrie pt dispensarea de pastă de fludor, apoi \n"
  10117. "avand posibilitatea de a vizualiza continutul acestuia sau de a-l salva\n"
  10118. "intr-un fişier GCode pe HDD."
  10119. #: flatcamTools/ToolSolderPaste.py:413
  10120. msgid "Delete Object"
  10121. msgstr "Șterge Obiectul"
  10122. #: flatcamTools/ToolSolderPaste.py:789
  10123. msgid ""
  10124. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  10125. msgstr ""
  10126. "[WARNING_NOTCL] Adăugarea unei unelte Nozzle a fost anulată. Unealta exista "
  10127. "deja in Tabela de Unelte."
  10128. #: flatcamTools/ToolSolderPaste.py:794
  10129. msgid "[success] New Nozzle tool added to Tool Table."
  10130. msgstr "[success] A fost adăugată o noua unealtă Nozzle in Tabela de Unelte."
  10131. #: flatcamTools/ToolSolderPaste.py:836
  10132. msgid "[success] Nozzle tool from Tool Table was edited."
  10133. msgstr "[success] Unealta Nozzle din Tabela de Unelte a fost editata."
  10134. #: flatcamTools/ToolSolderPaste.py:892
  10135. msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  10136. msgstr ""
  10137. "[WARNING_NOTCL] Ștergerea a eșuat. Selectează o unealtă Nozzle pt a o șterge."
  10138. #: flatcamTools/ToolSolderPaste.py:897
  10139. msgid "[success] Nozzle tool(s) deleted from Tool Table."
  10140. msgstr "[success] Uneltele (nozzle) au fost șterse din Tabela de Unelte."
  10141. #: flatcamTools/ToolSolderPaste.py:952
  10142. msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  10143. msgstr ""
  10144. "[WARNING_NOTCL] Nu este incărcat un obiect Gerber cu informatia mastii pt "
  10145. "pastă de fludor."
  10146. #: flatcamTools/ToolSolderPaste.py:969
  10147. msgid "Creating Solder Paste dispensing geometry."
  10148. msgstr "Se creează Geometrie pt dispensare pastă de fludor."
  10149. #: flatcamTools/ToolSolderPaste.py:981
  10150. msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
  10151. msgstr "[WARNING_NOTCL] Nu sunt unelte Nozzle in Tabela de Unelte."
  10152. #: flatcamTools/ToolSolderPaste.py:1110
  10153. msgid "[success] Solder Paste geometry generated successfully..."
  10154. msgstr ""
  10155. "[success] Obiectul Geometrie pt dispens. de pastă de fludor a fost generat "
  10156. "cu succes ..."
  10157. #: flatcamTools/ToolSolderPaste.py:1116
  10158. msgid ""
  10159. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  10160. "diameters..."
  10161. msgstr ""
  10162. "[WARNING_NOTCL] Cel puțin unele pad-uri nu au pastă de fludor datorita "
  10163. "diametrelor uneltelor (nozzle) ne adecvate."
  10164. #: flatcamTools/ToolSolderPaste.py:1130
  10165. msgid "Generating Solder Paste dispensing geometry..."
  10166. msgstr "Se generează Geometria de dispensare a pastei de fludor ..."
  10167. #: flatcamTools/ToolSolderPaste.py:1150
  10168. msgid "[WARNING_NOTCL] There is no Geometry object available."
  10169. msgstr "[WARNING_NOTCL] Nu exista obiect Geometrie disponibil."
  10170. #: flatcamTools/ToolSolderPaste.py:1154
  10171. msgid ""
  10172. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  10173. "geometry."
  10174. msgstr ""
  10175. "[WARNING_NOTCL] Acest obiect Geometrie nu poate fi procesat Nu este o "
  10176. "Geometrie tip solder_paste_tool."
  10177. #: flatcamTools/ToolSolderPaste.py:1259
  10178. #, python-format
  10179. msgid "[success] ToolSolderPaste CNCjob created: %s"
  10180. msgstr "[success] Obiectul CNCJob tip solder_paste_tool a fost creat: %s"
  10181. #: flatcamTools/ToolSolderPaste.py:1291 flatcamTools/ToolSolderPaste.py:1295
  10182. #: flatcamTools/ToolSolderPaste.py:1346
  10183. msgid ""
  10184. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  10185. "solder_paste_tool CNCJob object."
  10186. msgstr ""
  10187. "[WARNING_NOTCL] Acest obiect CNCJob nu poate fi procesat. Nu este un obiect "
  10188. "CNCJob tip 'solder_paste_tool'"
  10189. #: flatcamTools/ToolSolderPaste.py:1318
  10190. msgid "[ERROR_NOTCL] No Gcode in the object..."
  10191. msgstr "[ERROR_NOTCL] Nu exista cod GCode in acest obiect ..."
  10192. #: flatcamTools/ToolSolderPaste.py:1327
  10193. #, python-format
  10194. msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  10195. msgstr "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  10196. #: flatcamTools/ToolSolderPaste.py:1356
  10197. msgid "Export GCode ..."
  10198. msgstr "Exporta GCode ..."
  10199. #: flatcamTools/ToolSolderPaste.py:1396
  10200. #, python-format
  10201. msgid "[success] Solder paste dispenser GCode file saved to: %s"
  10202. msgstr ""
  10203. "[success] Fişierul GCode pt dispensare pastă de fludor este salvat in: %s"
  10204. #: flatcamTools/ToolSub.py:55
  10205. msgid "<b>Gerber Objects</b>"
  10206. msgstr "<b>Obiect Gerber</b>"
  10207. #: flatcamTools/ToolSub.py:64 flatcamTools/ToolSub.py:110
  10208. msgid "Target:"
  10209. msgstr "Tintă:"
  10210. #: flatcamTools/ToolSub.py:66
  10211. msgid ""
  10212. "Gerber object from which to substract\n"
  10213. "the substractor Gerber object."
  10214. msgstr ""
  10215. "Obiectul Gerber din care se scade \n"
  10216. "obiectul Gerber substractor."
  10217. #: flatcamTools/ToolSub.py:78 flatcamTools/ToolSub.py:124
  10218. msgid "Substractor:"
  10219. msgstr "Substractor:"
  10220. #: flatcamTools/ToolSub.py:80
  10221. msgid ""
  10222. "Gerber object that will be substracted\n"
  10223. "from the target Gerber object."
  10224. msgstr ""
  10225. "Obiectul Gerber care se scade din \n"
  10226. "obiectul Gerber tintă."
  10227. #: flatcamTools/ToolSub.py:87
  10228. msgid "Substract Gerber"
  10229. msgstr "Execută"
  10230. #: flatcamTools/ToolSub.py:89
  10231. msgid ""
  10232. "Will remove the area occupied by the substractor\n"
  10233. "Gerber from the Target Gerber.\n"
  10234. "Can be used to remove the overlapping silkscreen\n"
  10235. "over the soldermask."
  10236. msgstr ""
  10237. "Va indepărta aria ocupată de obiectul \n"
  10238. "Gerber substractor din obiectul Gerber tintă.\n"
  10239. "Poate fi utilizat pt. a indepărta silkscreen-ul\n"
  10240. "care se suprapune peste soldermask."
  10241. #: flatcamTools/ToolSub.py:101
  10242. msgid "<b>Geometry Objects</b>"
  10243. msgstr "<b>Obiecte Geometrie</b>"
  10244. #: flatcamTools/ToolSub.py:112
  10245. msgid ""
  10246. "Geometry object from which to substract\n"
  10247. "the substractor Geometry object."
  10248. msgstr ""
  10249. "Obiectul Geometrie din care se scade \n"
  10250. "obiectul Geometrie substractor."
  10251. #: flatcamTools/ToolSub.py:126
  10252. msgid ""
  10253. "Geometry object that will be substracted\n"
  10254. "from the target Geometry object."
  10255. msgstr ""
  10256. "Obiectul Geometrie care se va scădea \n"
  10257. "din obiectul Geometrie tintă."
  10258. #: flatcamTools/ToolSub.py:133
  10259. msgid "Substract Geometry"
  10260. msgstr "Execută"
  10261. #: flatcamTools/ToolSub.py:135
  10262. msgid ""
  10263. "Will remove the area occupied by the substractor\n"
  10264. "Geometry from the Target Geometry."
  10265. msgstr ""
  10266. "Va indepărta aria ocupată de obiectul Geometrie \n"
  10267. "substractor din obiectul Geometrie tintă."
  10268. #: flatcamTools/ToolSub.py:215
  10269. msgid "Sub Tool"
  10270. msgstr "Unealta Scădere"
  10271. #: flatcamTools/ToolSub.py:230 flatcamTools/ToolSub.py:421
  10272. msgid "[ERROR_NOTCL] No Target object loaded."
  10273. msgstr "[ERROR_NOTCL] Nu este incărcat obiect Tintă."
  10274. #: flatcamTools/ToolSub.py:242 flatcamTools/ToolSub.py:433
  10275. msgid "[ERROR_NOTCL] No Substractor object loaded."
  10276. msgstr "[ERROR_NOTCL] Nu este incărcat obiect Substractor (scăzător)."
  10277. #: flatcamTools/ToolSub.py:294
  10278. #, python-format
  10279. msgid "Parsing aperture %s geometry ..."
  10280. msgstr "Se analizează geo pt. apertura: %s..."
  10281. #: flatcamTools/ToolSub.py:396 flatcamTools/ToolSub.py:539
  10282. msgid "Generating new object ..."
  10283. msgstr "Se generează un obiect nou ..."
  10284. #: flatcamTools/ToolSub.py:399 flatcamTools/ToolSub.py:542
  10285. msgid "[ERROR_NOTCL] Generating new object failed."
  10286. msgstr "[ERROR_NOTCL] Generarea unui nou obiect a eșuat."
  10287. #: flatcamTools/ToolSub.py:403 flatcamTools/ToolSub.py:547
  10288. #, python-format
  10289. msgid "[success] Created: %s"
  10290. msgstr "[success] Creat: %s"
  10291. #: flatcamTools/ToolSub.py:444
  10292. msgid ""
  10293. "[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo."
  10294. msgstr ""
  10295. "[ERROR_NOTCL] Momentan, obiectul substractor Geometrie nu poate fi de tip "
  10296. "Multigeo."
  10297. #: flatcamTools/ToolSub.py:489
  10298. msgid "Parsing solid_geometry ..."
  10299. msgstr "Analizează geometria solidă..."
  10300. #: flatcamTools/ToolSub.py:491
  10301. #, python-format
  10302. msgid "Parsing tool %s geometry ..."
  10303. msgstr "Analizează geo a uneltei %s ..."
  10304. #: flatcamTools/ToolTransform.py:23
  10305. msgid "Object Transform"
  10306. msgstr "Transformare Obiect"
  10307. #: flatcamTools/ToolTransform.py:84
  10308. msgid ""
  10309. "Rotate the selected object(s).\n"
  10310. "The point of reference is the middle of\n"
  10311. "the bounding box for all selected objects."
  10312. msgstr ""
  10313. "Roteste obiectele selectate.\n"
  10314. "Punctul de referinţă este mijlocul \n"
  10315. "formei înconjurătoare pt toate obiectele."
  10316. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  10317. msgid ""
  10318. "Skew/shear the selected object(s).\n"
  10319. "The point of reference is the middle of\n"
  10320. "the bounding box for all selected objects."
  10321. msgstr ""
  10322. "Deformează obiectele selectate.\n"
  10323. "Punctul de referinţă este mijlocul \n"
  10324. "formei înconjurătoare pt toate obiectele."
  10325. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  10326. msgid ""
  10327. "Scale the selected object(s).\n"
  10328. "The point of reference depends on \n"
  10329. "the Scale reference checkbox state."
  10330. msgstr ""
  10331. "Scalează obiectele selectate.\n"
  10332. "Punctul de referinţă depinde de\n"
  10333. "starea checkbox-ului >Referința Scalare<."
  10334. #: flatcamTools/ToolTransform.py:202
  10335. msgid ""
  10336. "Scale the selected object(s)\n"
  10337. "using the Scale Factor X for both axis."
  10338. msgstr ""
  10339. "Scalează obiectele selectate\n"
  10340. "folosind Factor X de scalare pentru\n"
  10341. "ambele axe."
  10342. #: flatcamTools/ToolTransform.py:250 flatcamTools/ToolTransform.py:267
  10343. msgid ""
  10344. "Offset the selected object(s).\n"
  10345. "The point of reference is the middle of\n"
  10346. "the bounding box for all selected objects.\n"
  10347. msgstr ""
  10348. "Deplasează obiectele selectate.\n"
  10349. "Punctul de referinţă este mijlocul formei înconjurătoare\n"
  10350. "pentru toate obiectele selectate.\n"
  10351. #: flatcamTools/ToolTransform.py:297 flatcamTools/ToolTransform.py:305
  10352. msgid ""
  10353. "Flip the selected object(s) over the X axis.\n"
  10354. "Does not create a new object.\n"
  10355. " "
  10356. msgstr ""
  10357. "Oglindește obiectele selectate pe axa X.\n"
  10358. "Nu crează un obiect nou."
  10359. #: flatcamTools/ToolTransform.py:637
  10360. msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  10361. msgstr ""
  10362. "[WARNING_NOTCL] Nici-un obiect nu este selectat. Selectează un obiect pentru "
  10363. "a fi Rotit!"
  10364. #: flatcamTools/ToolTransform.py:665
  10365. msgid "CNCJob objects can't be rotated."
  10366. msgstr "Obiectele tip CNCJob nu pot fi Rotite."
  10367. #: flatcamTools/ToolTransform.py:673
  10368. msgid "[success] Rotate done ..."
  10369. msgstr "[success] Rotaţie executată ..."
  10370. #: flatcamTools/ToolTransform.py:688
  10371. msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  10372. msgstr ""
  10373. "[WARNING_NOTCL] Nici-un obiect nu este selectat. Selectează un obiect pentru "
  10374. "a fi Oglindit!"
  10375. #: flatcamTools/ToolTransform.py:723
  10376. msgid "CNCJob objects can't be mirrored/flipped."
  10377. msgstr "Obiectele tip CNCJob nu pot fi Oglindite."
  10378. #: flatcamTools/ToolTransform.py:757
  10379. msgid ""
  10380. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  10381. msgstr ""
  10382. "[WARNING_NOTCL] Nici-un obiect nu este selectat. Selectează un obiect pentru "
  10383. "a fi Deformat!"
  10384. #: flatcamTools/ToolTransform.py:779
  10385. msgid "CNCJob objects can't be skewed."
  10386. msgstr "Obiectele tip CNCJob nu pot fi deformate."
  10387. #: flatcamTools/ToolTransform.py:806
  10388. msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  10389. msgstr ""
  10390. "[WARNING_NOTCL] Nici-un obiect nu este selectat. Selectează un obiect pentru "
  10391. "a fi Scalat!"
  10392. #: flatcamTools/ToolTransform.py:839
  10393. msgid "CNCJob objects can't be scaled."
  10394. msgstr "Obiectele tip CNCJob nu pot fi scalate."
  10395. #: flatcamTools/ToolTransform.py:858
  10396. msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  10397. msgstr ""
  10398. "[WARNING_NOTCL] Nici-un obiect nu este selectat. Selectează un obiect pentru "
  10399. "a fi Deplasat!"
  10400. #: flatcamTools/ToolTransform.py:867
  10401. msgid "CNCJob objects can't be offseted."
  10402. msgstr "Obiectele tip CNCJob nu pot fi deplasate."
  10403. #~ msgid "Disable"
  10404. #~ msgstr "Dezactivează"
  10405. #~ msgid "[WARNING_NOTCL] Move cancelled. No shape selected."
  10406. #~ msgstr "[WARNING_NOTCL] Mutare anulata. Nici-o forma nu este selectată."
  10407. #~ msgid "Click on the Destination point..."
  10408. #~ msgstr "Click pe punctul de Destinaţie ..."
  10409. #~ msgid "Copy as &Geom"
  10410. #~ msgstr "Copiază ca &Geo"
  10411. #~ msgid "Ap. Scale Factor:"
  10412. #~ msgstr "Factor scalare ap.:"
  10413. #~ msgid ""
  10414. #~ "Change the size of the selected apertures.\n"
  10415. #~ "Factor by which to multiply\n"
  10416. #~ "geometric features of this object."
  10417. #~ msgstr ""
  10418. #~ "Schimbă dimensiunea aperturilor selectate.\n"
  10419. #~ "Factor cu care se multiplica geometriile\n"
  10420. #~ "acestui obiect."
  10421. #~ msgid "Ap. Buffer Factor:"
  10422. #~ msgstr "Factor bufer ap.:"
  10423. #~ msgid ""
  10424. #~ "Change the size of the selected apertures.\n"
  10425. #~ "Factor by which to expand/shrink\n"
  10426. #~ "geometric features of this object."
  10427. #~ msgstr ""
  10428. #~ "Schimbă dimensiunea aperturilor selectate.\n"
  10429. #~ "Valoare cu care se mareste/micsorează\n"
  10430. #~ "geometriile acestui obiect."
  10431. #~ msgid "[WARNING]No object Box. Using instead %s"
  10432. #~ msgstr "[WARNING] Nu exista container. Se foloseşte in schimb %s"
  10433. #~ msgid "Path"
  10434. #~ msgstr "Pe cale"
  10435. #~ msgid "In"
  10436. #~ msgstr "În"
  10437. #~ msgid "Out"
  10438. #~ msgstr "Afară"
  10439. #~ msgid "Custom"
  10440. #~ msgstr "Personalizat"
  10441. #~ msgid "Angle"
  10442. #~ msgstr "Unghi"
  10443. #~ msgid "Copy Drill(s)"
  10444. #~ msgstr "Copiaza Găurire"
  10445. #~ msgid "MMB"
  10446. #~ msgstr "MMB"
  10447. #~ msgid "RMB"
  10448. #~ msgstr "RMB"
  10449. #~ msgid "CTRL"
  10450. #~ msgstr "CTRL"
  10451. #~ msgid "SHIFT"
  10452. #~ msgstr "SHIFT"
  10453. #~ msgid "Climb"
  10454. #~ msgstr "Urcare"
  10455. #~ msgid "Conv."
  10456. #~ msgstr "Conv."
  10457. #~ msgid "LZ"
  10458. #~ msgstr "LZ"
  10459. #~ msgid "TZ"
  10460. #~ msgstr "TZ"
  10461. #~ msgid "INCH"
  10462. #~ msgstr "Inch"
  10463. #~ msgid "MM"
  10464. #~ msgstr "MM"
  10465. #~ msgid "MH"
  10466. #~ msgstr "MH"
  10467. #~ msgid "Both"
  10468. #~ msgstr "Ambele"
  10469. #~ msgid "Decimal"
  10470. #~ msgstr "Cu dec."
  10471. #~ msgid "No-Decimal"
  10472. #~ msgstr "Fără dec."
  10473. #~ msgid "Travel"
  10474. #~ msgstr "Voiaj"
  10475. #~ msgid "X"
  10476. #~ msgstr "X"
  10477. #~ msgid "Y"
  10478. #~ msgstr "Y"
  10479. #~ msgid "Point"
  10480. #~ msgstr "Punct"
  10481. #~ msgid "Box"
  10482. #~ msgstr "Forma"
  10483. #~ msgid "Single"
  10484. #~ msgstr "Unic"
  10485. #~ msgid "Pos"
  10486. #~ msgstr "Pozitiv"
  10487. #~ msgid "Neg"
  10488. #~ msgstr "Negativ"
  10489. #~ msgid "Gerber"
  10490. #~ msgstr "Gerber"
  10491. #~ msgid "Geo"
  10492. #~ msgstr "Geo"
  10493. #~ msgid "Solid "
  10494. #~ msgstr "Solid"
  10495. #~ msgid "M-Color "
  10496. #~ msgstr "M-Color "
  10497. #~ msgid "Done."
  10498. #~ msgstr "Executat."
  10499. #~ msgid "Click on CENTER ..."
  10500. #~ msgstr "Click in Centru ..."
  10501. #~ msgid "[success] Done. Region completed."
  10502. #~ msgstr "[success] Executat. Adăugarea unei Regiuni terminată."
  10503. #~ msgid "Add an aperture to the aperture list"
  10504. #~ msgstr "Adaugă o apertură in lista de aperturi"
  10505. #~ msgid "Go"
  10506. #~ msgstr "Fă!"
  10507. #~ msgid "Del Aperture:"
  10508. #~ msgstr "Șterge apertura:"
  10509. #~ msgid ""
  10510. #~ "Delete a aperture in the aperture list.\n"
  10511. #~ "It will delete also the associated geometry."
  10512. #~ msgstr ""
  10513. #~ "Sterge o apertură in lista de aperturi.\n"
  10514. #~ "Va sterge si geometriile asociate."
  10515. #~ msgid ""
  10516. #~ "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  10517. #~ msgstr ""
  10518. #~ "[ERROR_NOTCL] Factorul de scalare a aperturii lipseste sau este in format "
  10519. #~ "gresit."
  10520. #~ msgid "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  10521. #~ msgstr "[ERROR_NOTCL] Valoarea pt bufer apertura lipseste "
  10522. #~ msgid ""
  10523. #~ "<b>Editor Shortcut list</b><br>\n"
  10524. #~ " <br>\n"
  10525. #~ " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  10526. #~ "strong><br>\n"
  10527. #~ " \n"
  10528. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  10529. #~ "\"width:283px\">\n"
  10530. #~ " <tbody>\n"
  10531. #~ " <tr height=\"20\">\n"
  10532. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  10533. #~ "strong></td>\n"
  10534. #~ " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  10535. #~ " </tr>\n"
  10536. #~ " <tr height=\"20\">\n"
  10537. #~ " <td height=\"20\"><strong>B</strong></td>\n"
  10538. #~ " <td>&nbsp;Buffer Tool</td>\n"
  10539. #~ " </tr>\n"
  10540. #~ " <tr height=\"20\">\n"
  10541. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  10542. #~ " <td>&nbsp;Copy Geo Item</td>\n"
  10543. #~ " </tr>\n"
  10544. #~ " <tr height=\"20\">\n"
  10545. #~ " <td height=\"20\"><strong>E</strong></td>\n"
  10546. #~ " <td>&nbsp;Polygon Intersection Tool</td>\n"
  10547. #~ " </tr>\n"
  10548. #~ " <tr height=\"20\">\n"
  10549. #~ " <td height=\"20\"><strong>I</strong></td>\n"
  10550. #~ " <td>&nbsp;Paint Tool</td>\n"
  10551. #~ " </tr>\n"
  10552. #~ " <tr height=\"20\">\n"
  10553. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  10554. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  10555. #~ " </tr>\n"
  10556. #~ " <tr height=\"20\">\n"
  10557. #~ " <td height=\"20\"><strong>K</strong></td>\n"
  10558. #~ " <td>&nbsp;Toggle Corner Snap</td>\n"
  10559. #~ " </tr>\n"
  10560. #~ " <tr height=\"20\">\n"
  10561. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  10562. #~ " <td>&nbsp;Move Geo Item</td>\n"
  10563. #~ " </tr>\n"
  10564. #~ " <tr height=\"20\">\n"
  10565. #~ " <td height=\"20\"><strong>N</strong></td>\n"
  10566. #~ " <td>&nbsp;Draw a Polygon</td>\n"
  10567. #~ " </tr>\n"
  10568. #~ " <tr height=\"20\">\n"
  10569. #~ " <td height=\"20\"><strong>O</strong></td>\n"
  10570. #~ " <td>&nbsp;Draw a Circle</td>\n"
  10571. #~ " </tr>\n"
  10572. #~ " <tr height=\"20\">\n"
  10573. #~ " <td height=\"20\"><strong>P</strong></td>\n"
  10574. #~ " <td>&nbsp;Draw a Path</td>\n"
  10575. #~ " </tr>\n"
  10576. #~ " <tr height=\"20\">\n"
  10577. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  10578. #~ " <td>&nbsp;Draw Rectangle</td>\n"
  10579. #~ " </tr>\n"
  10580. #~ " <tr height=\"20\">\n"
  10581. #~ " <td height=\"20\"><strong>S</strong></td>\n"
  10582. #~ " <td>&nbsp;Polygon Substraction Tool</td>\n"
  10583. #~ " </tr>\n"
  10584. #~ " <tr height=\"20\">\n"
  10585. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  10586. #~ " <td>&nbsp;Add Text Tool</td>\n"
  10587. #~ " </tr>\n"
  10588. #~ " <tr height=\"20\">\n"
  10589. #~ " <td height=\"20\"><strong>U</strong></td>\n"
  10590. #~ " <td>&nbsp;Polygon Union Tool</td>\n"
  10591. #~ " </tr>\n"
  10592. #~ " <tr height=\"20\">\n"
  10593. #~ " <td height=\"20\"><strong>X</strong></td>\n"
  10594. #~ " <td>&nbsp;Flip shape on X axis</td>\n"
  10595. #~ " </tr>\n"
  10596. #~ " <tr height=\"20\">\n"
  10597. #~ " <td height=\"20\"><strong>Y</strong></td>\n"
  10598. #~ " <td>&nbsp;Flip shape on Y axis</td>\n"
  10599. #~ " </tr>\n"
  10600. #~ " <tr height=\"20\">\n"
  10601. #~ " <td height=\"20\">&nbsp;</td>\n"
  10602. #~ " <td>&nbsp;</td>\n"
  10603. #~ " </tr>\n"
  10604. #~ " <tr height=\"20\">\n"
  10605. #~ " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  10606. #~ " <td>&nbsp;Skew shape on X axis</td>\n"
  10607. #~ " </tr>\n"
  10608. #~ " <tr height=\"20\">\n"
  10609. #~ " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  10610. #~ " <td>&nbsp;Skew shape on Y axis</td>\n"
  10611. #~ " </tr>\n"
  10612. #~ " <tr height=\"20\">\n"
  10613. #~ " <td height=\"20\">&nbsp;</td>\n"
  10614. #~ " <td>&nbsp;</td>\n"
  10615. #~ " </tr>\n"
  10616. #~ " <tr height=\"20\">\n"
  10617. #~ " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  10618. #~ " <td>&nbsp;Editor Transformation Tool</td>\n"
  10619. #~ " </tr>\n"
  10620. #~ " <tr height=\"20\">\n"
  10621. #~ " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  10622. #~ " <td>&nbsp;Offset shape on X axis</td>\n"
  10623. #~ " </tr>\n"
  10624. #~ " <tr height=\"20\">\n"
  10625. #~ " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  10626. #~ " <td>&nbsp;Offset shape on Y axis</td>\n"
  10627. #~ " </tr>\n"
  10628. #~ " <tr height=\"20\">\n"
  10629. #~ " <td height=\"20\">&nbsp;</td>\n"
  10630. #~ " <td>&nbsp;</td>\n"
  10631. #~ " </tr>\n"
  10632. #~ " <tr height=\"20\">\n"
  10633. #~ " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  10634. #~ " <td>&nbsp;Measurement Tool</td>\n"
  10635. #~ " </tr>\n"
  10636. #~ " <tr height=\"20\">\n"
  10637. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  10638. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  10639. #~ " </tr>\n"
  10640. #~ " <tr height=\"20\">\n"
  10641. #~ " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  10642. #~ " <td>&nbsp;Polygon Cut Tool</td>\n"
  10643. #~ " </tr>\n"
  10644. #~ " <tr height=\"20\">\n"
  10645. #~ " <td height=\"20\">&nbsp;</td>\n"
  10646. #~ " <td>&nbsp;</td>\n"
  10647. #~ " </tr>\n"
  10648. #~ " <tr height=\"20\">\n"
  10649. #~ " <td height=\"20\"><strong>Space</strong></td>\n"
  10650. #~ " <td>&nbsp;Rotate Geometry</td>\n"
  10651. #~ " </tr>\n"
  10652. #~ " <tr height=\"20\">\n"
  10653. #~ " <td height=\"20\"><strong>ENTER</strong></td>\n"
  10654. #~ " <td>&nbsp;Finish drawing for certain tools</td>\n"
  10655. #~ " </tr>\n"
  10656. #~ " <tr height=\"20\">\n"
  10657. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  10658. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  10659. #~ " </tr>\n"
  10660. #~ " <tr height=\"20\">\n"
  10661. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10662. #~ " <td>&nbsp;Delete Shape</td>\n"
  10663. #~ " </tr>\n"
  10664. #~ " </tbody>\n"
  10665. #~ " </table>\n"
  10666. #~ " <br>\n"
  10667. #~ " <br>\n"
  10668. #~ " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  10669. #~ "strong><br>\n"
  10670. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  10671. #~ "\"width:283px\">\n"
  10672. #~ " <tbody>\n"
  10673. #~ " <tr height=\"20\">\n"
  10674. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  10675. #~ "strong></td>\n"
  10676. #~ " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  10677. #~ " </tr>\n"
  10678. #~ " <tr height=\"20\">\n"
  10679. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  10680. #~ " <td>&nbsp;Copy Drill(s)</td>\n"
  10681. #~ " </tr>\n"
  10682. #~ " <tr height=\"20\">\n"
  10683. #~ " <td height=\"20\"><strong>D</strong></td>\n"
  10684. #~ " <td>&nbsp;Add Drill</td>\n"
  10685. #~ " </tr>\n"
  10686. #~ " <tr height=\"20\">\n"
  10687. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  10688. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  10689. #~ " </tr>\n"
  10690. #~ " <tr height=\"20\">\n"
  10691. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  10692. #~ " <td>&nbsp;Move Drill(s)</td>\n"
  10693. #~ " </tr>\n"
  10694. #~ " <tr height=\"20\">\n"
  10695. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  10696. #~ " <td>&nbsp;Resize Drill(s)</td>\n"
  10697. #~ " </tr>\n"
  10698. #~ " <tr height=\"20\">\n"
  10699. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  10700. #~ " <td>&nbsp;Add a new Tool</td>\n"
  10701. #~ " </tr>\n"
  10702. #~ " <tr height=\"20\">\n"
  10703. #~ " <td height=\"20\">&nbsp;</td>\n"
  10704. #~ " <td>&nbsp;</td>\n"
  10705. #~ " </tr>\n"
  10706. #~ " <tr height=\"20\">\n"
  10707. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10708. #~ " <td>&nbsp;Delete Drill(s)</td>\n"
  10709. #~ " </tr>\n"
  10710. #~ " <tr height=\"20\">\n"
  10711. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10712. #~ " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  10713. #~ " </tr>\n"
  10714. #~ " <tr height=\"20\">\n"
  10715. #~ " <td height=\"20\">&nbsp;</td>\n"
  10716. #~ " <td>&nbsp;</td>\n"
  10717. #~ " </tr>\n"
  10718. #~ " <tr height=\"20\">\n"
  10719. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  10720. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  10721. #~ " </tr>\n"
  10722. #~ " <tr height=\"20\">\n"
  10723. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  10724. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  10725. #~ " </tr>\n"
  10726. #~ " </tbody>\n"
  10727. #~ " </table>\n"
  10728. #~ " "
  10729. #~ msgstr ""
  10730. #~ "<b>Editor Shortcut list</b><br>\n"
  10731. #~ " <br>\n"
  10732. #~ " <strong><span style=\"color:#0000ff\">EDITORUL DE GEOMETRII</"
  10733. #~ "span></strong><br>\n"
  10734. #~ " \n"
  10735. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  10736. #~ "\"width:283px\">\n"
  10737. #~ " <tbody>\n"
  10738. #~ " <tr height=\"20\">\n"
  10739. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  10740. #~ "strong></td>\n"
  10741. #~ " <td width=\"194\">&nbsp;Desenează un Arc</td>\n"
  10742. #~ " </tr>\n"
  10743. #~ " <tr height=\"20\">\n"
  10744. #~ " <td height=\"20\"><strong>B</strong></td>\n"
  10745. #~ " <td>&nbsp;Unealta Bufer</td>\n"
  10746. #~ " </tr>\n"
  10747. #~ " <tr height=\"20\">\n"
  10748. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  10749. #~ " <td>&nbsp;Copiaza o geometrie</td>\n"
  10750. #~ " </tr>\n"
  10751. #~ " <tr height=\"20\">\n"
  10752. #~ " <td height=\"20\"><strong>E</strong></td>\n"
  10753. #~ " <td>&nbsp;Unealta Intersecţie Poligoane</td>\n"
  10754. #~ " </tr>\n"
  10755. #~ " <tr height=\"20\">\n"
  10756. #~ " <td height=\"20\"><strong>I</strong></td>\n"
  10757. #~ " <td>&nbsp;Unealta Paint</td>\n"
  10758. #~ " </tr>\n"
  10759. #~ " <tr height=\"20\">\n"
  10760. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  10761. #~ " <td>&nbsp;Sari la Locaţie (x, y)</td>\n"
  10762. #~ " </tr>\n"
  10763. #~ " <tr height=\"20\">\n"
  10764. #~ " <td height=\"20\"><strong>K</strong></td>\n"
  10765. #~ " <td>&nbsp;Comuta lipire colt</td>\n"
  10766. #~ " </tr>\n"
  10767. #~ " <tr height=\"20\">\n"
  10768. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  10769. #~ " <td>&nbsp;Muta forma geometrică</td>\n"
  10770. #~ " </tr>\n"
  10771. #~ " <tr height=\"20\">\n"
  10772. #~ " <td height=\"20\"><strong>N</strong></td>\n"
  10773. #~ " <td>&nbsp;Desenează un Poligon</td>\n"
  10774. #~ " </tr>\n"
  10775. #~ " <tr height=\"20\">\n"
  10776. #~ " <td height=\"20\"><strong>O</strong></td>\n"
  10777. #~ " <td>&nbsp;Desenează un Cerc</td>\n"
  10778. #~ " </tr>\n"
  10779. #~ " <tr height=\"20\">\n"
  10780. #~ " <td height=\"20\"><strong>P</strong></td>\n"
  10781. #~ " <td>&nbsp;Desenează o Cale</td>\n"
  10782. #~ " </tr>\n"
  10783. #~ " <tr height=\"20\">\n"
  10784. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  10785. #~ " <td>&nbsp;Desenează un Patrulater</td>\n"
  10786. #~ " </tr>\n"
  10787. #~ " <tr height=\"20\">\n"
  10788. #~ " <td height=\"20\"><strong>S</strong></td>\n"
  10789. #~ " <td>&nbsp;Unealta Substracţie Poligoane</td>\n"
  10790. #~ " </tr>\n"
  10791. #~ " <tr height=\"20\">\n"
  10792. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  10793. #~ " <td>&nbsp;Unealta de adaugare Text</td>\n"
  10794. #~ " </tr>\n"
  10795. #~ " <tr height=\"20\">\n"
  10796. #~ " <td height=\"20\"><strong>U</strong></td>\n"
  10797. #~ " <td>&nbsp;Unealta de Uniune Poligoane</td>\n"
  10798. #~ " </tr>\n"
  10799. #~ " <tr height=\"20\">\n"
  10800. #~ " <td height=\"20\"><strong>X</strong></td>\n"
  10801. #~ " <td>&nbsp;Oglindește forma geo pe axa X</td>\n"
  10802. #~ " </tr>\n"
  10803. #~ " <tr height=\"20\">\n"
  10804. #~ " <td height=\"20\"><strong>Y</strong></td>\n"
  10805. #~ " <td>&nbsp;Oglindește forma geo pe axa Y</td>\n"
  10806. #~ " </tr>\n"
  10807. #~ " <tr height=\"20\">\n"
  10808. #~ " <td height=\"20\">&nbsp;</td>\n"
  10809. #~ " <td>&nbsp;</td>\n"
  10810. #~ " </tr>\n"
  10811. #~ " <tr height=\"20\">\n"
  10812. #~ " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  10813. #~ " <td>&nbsp;Deformează forma geo pe axa X/td>\n"
  10814. #~ " </tr>\n"
  10815. #~ " <tr height=\"20\">\n"
  10816. #~ " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  10817. #~ " <td>&nbsp;Deformează forma geo pe axa Y</td>\n"
  10818. #~ " </tr>\n"
  10819. #~ " <tr height=\"20\">\n"
  10820. #~ " <td height=\"20\">&nbsp;</td>\n"
  10821. #~ " <td>&nbsp;</td>\n"
  10822. #~ " </tr>\n"
  10823. #~ " <tr height=\"20\">\n"
  10824. #~ " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  10825. #~ " <td>&nbsp;Unealta de Trasformări din Editor</td>\n"
  10826. #~ " </tr>\n"
  10827. #~ " <tr height=\"20\">\n"
  10828. #~ " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  10829. #~ " <td>&nbsp;Deplasează forma geo pe axa X</td>\n"
  10830. #~ " </tr>\n"
  10831. #~ " <tr height=\"20\">\n"
  10832. #~ " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  10833. #~ " <td>&nbsp;Deplasează forma geo pe axa Y</td>\n"
  10834. #~ " </tr>\n"
  10835. #~ " <tr height=\"20\">\n"
  10836. #~ " <td height=\"20\">&nbsp;</td>\n"
  10837. #~ " <td>&nbsp;</td>\n"
  10838. #~ " </tr>\n"
  10839. #~ " <tr height=\"20\">\n"
  10840. #~ " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  10841. #~ " <td>&nbsp;Unealta de Masurare</td>\n"
  10842. #~ " </tr>\n"
  10843. #~ " <tr height=\"20\">\n"
  10844. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  10845. #~ " <td>&nbsp;Salvează obiectul și ieși din Editor</"
  10846. #~ "td>\n"
  10847. #~ " </tr>\n"
  10848. #~ " <tr height=\"20\">\n"
  10849. #~ " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  10850. #~ " <td>&nbsp;Unealta de tăiere Poligoane</td>\n"
  10851. #~ " </tr>\n"
  10852. #~ " <tr height=\"20\">\n"
  10853. #~ " <td height=\"20\">&nbsp;</td>\n"
  10854. #~ " <td>&nbsp;</td>\n"
  10855. #~ " </tr>\n"
  10856. #~ " <tr height=\"20\">\n"
  10857. #~ " <td height=\"20\"><strong>Space</strong></td>\n"
  10858. #~ " <td>&nbsp;Roteste forma geometrică</td>\n"
  10859. #~ " </tr>\n"
  10860. #~ " <tr height=\"20\">\n"
  10861. #~ " <td height=\"20\"><strong>ENTER</strong></td>\n"
  10862. #~ " <td>&nbsp;Termina desenatul pentru anumite "
  10863. #~ "unelte</td>\n"
  10864. #~ " </tr>\n"
  10865. #~ " <tr height=\"20\">\n"
  10866. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  10867. #~ " <td>&nbsp;Renunta și intoarce-te la Select</td>\n"
  10868. #~ " </tr>\n"
  10869. #~ " <tr height=\"20\">\n"
  10870. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10871. #~ " <td>&nbsp;Șterge forma geometrică</td>\n"
  10872. #~ " </tr>\n"
  10873. #~ " </tbody>\n"
  10874. #~ " </table>\n"
  10875. #~ " <br>\n"
  10876. #~ " <br>\n"
  10877. #~ " <strong><span style=\"color:#ff0000\">EDITORUL EXCELLON</"
  10878. #~ "span></strong><br>\n"
  10879. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  10880. #~ "\"width:283px\">\n"
  10881. #~ " <tbody>\n"
  10882. #~ " <tr height=\"20\">\n"
  10883. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  10884. #~ "strong></td>\n"
  10885. #~ " <td width=\"194\">&nbsp;Adaugă o arie de găuriri</"
  10886. #~ "td>\n"
  10887. #~ " </tr>\n"
  10888. #~ " <tr height=\"20\">\n"
  10889. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  10890. #~ " <td>&nbsp;Copiaza Găuriri</td>\n"
  10891. #~ " </tr>\n"
  10892. #~ " <tr height=\"20\">\n"
  10893. #~ " <td height=\"20\"><strong>D</strong></td>\n"
  10894. #~ " <td>&nbsp;Adaugă găurire</td>\n"
  10895. #~ " </tr>\n"
  10896. #~ " <tr height=\"20\">\n"
  10897. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  10898. #~ " <td>&nbsp;Sari la Locaţie (x, y)</td>\n"
  10899. #~ " </tr>\n"
  10900. #~ " <tr height=\"20\">\n"
  10901. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  10902. #~ " <td>&nbsp;Muta Găuriri</td>\n"
  10903. #~ " </tr>\n"
  10904. #~ " <tr height=\"20\">\n"
  10905. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  10906. #~ " <td>&nbsp;Redimensionează găuriri</td>\n"
  10907. #~ " </tr>\n"
  10908. #~ " <tr height=\"20\">\n"
  10909. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  10910. #~ " <td>&nbsp;Adaugă o noua Unealta</td>\n"
  10911. #~ " </tr>\n"
  10912. #~ " <tr height=\"20\">\n"
  10913. #~ " <td height=\"20\">&nbsp;</td>\n"
  10914. #~ " <td>&nbsp;</td>\n"
  10915. #~ " </tr>\n"
  10916. #~ " <tr height=\"20\">\n"
  10917. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10918. #~ " <td>&nbsp;Șterge Găuriri</td>\n"
  10919. #~ " </tr>\n"
  10920. #~ " <tr height=\"20\">\n"
  10921. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10922. #~ " <td>&nbsp;Alternatic: Șterge Unelte</td>\n"
  10923. #~ " </tr>\n"
  10924. #~ " <tr height=\"20\">\n"
  10925. #~ " <td height=\"20\">&nbsp;</td>\n"
  10926. #~ " <td>&nbsp;</td>\n"
  10927. #~ " </tr>\n"
  10928. #~ " <tr height=\"20\">\n"
  10929. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  10930. #~ " <td>&nbsp;Renunta și intoarce-te la Select</td>\n"
  10931. #~ " </tr>\n"
  10932. #~ " <tr height=\"20\">\n"
  10933. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  10934. #~ " <td>&nbsp;Salvează obiectul și ieși din Editor</"
  10935. #~ "td>\n"
  10936. #~ " </tr>\n"
  10937. #~ " </tbody>\n"
  10938. #~ " </table>\n"
  10939. #~ " "
  10940. #~ msgid "Save && Close Edit"
  10941. #~ msgstr "Salvează && Inchide Edit"
  10942. #~ msgid "[success] GUI settings deleted ..."
  10943. #~ msgstr "[success] Setarile GUI au fost șterse ..."
  10944. #~ msgid "Scale Factor:"
  10945. #~ msgstr "Factor scalare:"
  10946. #~ msgid "Perform scaling operation on the selected apertures."
  10947. #~ msgstr "Efectuează operatia de scalare pt aperturile selectate."
  10948. #~ msgid "Buffer Factor:"
  10949. #~ msgstr "Factor bufer:"
  10950. #~ msgid "Perform buffer operation on the selected apertures."
  10951. #~ msgstr "Efectuează operatia de bufer pt aperturile selectate."
  10952. #~ msgid "<b>Generate new Gerber Object:</b>"
  10953. #~ msgstr "<b>Crează un nou obiect Gerber::</b>"
  10954. #~ msgid "Will generate a new Gerber object from the changed apertures."
  10955. #~ msgstr "Va crea un nou obiect tip Gerber din aperturile modificate."
  10956. #~ msgid ""
  10957. #~ "Will generate a new Gerber object from the changed apertures.\n"
  10958. #~ "This new object can then be isolated etc."
  10959. #~ msgstr ""
  10960. #~ "Va genera un nou obiect Gerber din aperturile modificate.\n"
  10961. #~ "Acest nou obiect poate fi izolat etc."
  10962. #~ msgid "[ERROR_NOTCL]Could not load defaults file."
  10963. #~ msgstr ""
  10964. #~ "[ERROR_NOTCL] Nu a fost posibila incarcarea fişierului cu valori default."
  10965. #~ msgid "[ERROR_NOTCL] Failed to parse project file: %s"
  10966. #~ msgstr "[ERROR_NOTCL] Esec in incarcarea fişierului de configurare: %s"
  10967. #~ msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
  10968. #~ msgstr "[ERROR_NOTCL] Valoare in format incorect, foloseşte un număr."
  10969. #~ msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  10970. #~ msgstr "[ERROR_NOTCL] Anulat. Fişier gol, nu are geometrie ..."
  10971. #~ msgid "[WARNING_NOTCL]Export Machine Code cancelled ..."
  10972. #~ msgstr "[WARNING_NOTCL] Exportul de cod CNC a fost anulat ..."
  10973. #~ msgid "[success]Flip on the Y axis done ..."
  10974. #~ msgstr "[success] Oglindire pe axa Y executată ..."
  10975. #~ msgid "[success]Flip on the X axis done ..."
  10976. #~ msgstr "[success] Oglindire pe axa X executată ..."
  10977. #~ msgid "[success]Skew on the %s axis done ..."
  10978. #~ msgstr "[success] Oglindire pe axa %s executată ..."
  10979. #~ msgid "[success]Offset on the %s axis done ..."
  10980. #~ msgstr "[success] Deplasarea de axa %s executată."
  10981. #~ msgid ""
  10982. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  10983. #~ "Example:\n"
  10984. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  10985. #~ "\n"
  10986. #~ "Adjust the value starting with lower values\n"
  10987. #~ "and increasing it if areas that should be painted are still \n"
  10988. #~ "not painted.\n"
  10989. #~ "Lower values = faster processing, faster execution on PCB.\n"
  10990. #~ "Higher values = slow processing and slow execution on CNC\n"
  10991. #~ "due of too many paths."
  10992. #~ msgstr ""
  10993. #~ "Cat de mult (fractie) din diametrul uneltei sa se suprapuna la fiecare "
  10994. #~ "trecere a uneltei.\n"
  10995. #~ "Exemplu:\n"
  10996. #~ "O valoare aici de 0.25 inseamna 25\\% din diametrul uneltei de mai sus.\n"
  10997. #~ "\n"
  10998. #~ "Ajusteaza valoarea incepand de la valori mici si pe urma creste daca "
  10999. #~ "ariile care ar trebui\n"
  11000. #~ " >pictate< inca nu sunt procesate.\n"
  11001. #~ "Valori scazute = procesare rapida,executie rapida a PCB-ului.\n"
  11002. #~ "Valori mari= procesare lenta cat si o executie la fel de lenta a PCB-"
  11003. #~ "ului,\n"
  11004. #~ "datorita numarului mai mare de treceri-taiere."
  11005. #, fuzzy
  11006. #~| msgid "z_toolchange = Z coord for Toolchange"
  11007. #~ msgid "z_cut = Z coord for Toolchange"
  11008. #~ msgstr "z_toolchange = Z coord for Toolchange"
  11009. #, fuzzy
  11010. #~| msgid "z_toolchange = Z coord for Toolchange"
  11011. #~ msgid "z_move = Z coord for Toolchange"
  11012. #~ msgstr "z_toolchange = Z coord for Toolchange"
  11013. #~ msgid "%s/Project_%s"
  11014. #~ msgstr "%s/Proiect_%s"
  11015. #~ msgid "tool_tab"
  11016. #~ msgstr "tool_tab"