From 17a93b8c7d350587085c8e7914d0731f50fe0eb8 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Wed, 22 May 2019 18:37:33 +0300 Subject: [PATCH] - fixed some selection issues in the new tool Eraser in Geometry Editor - updated the translation files --- README.md | 4 +- camlib.py | 5 +- flatcamEditors/FlatCAMGeoEditor.py | 22 +- locale/de/LC_MESSAGES/strings.mo | Bin 301667 -> 302108 bytes locale/de/LC_MESSAGES/strings.po | 2161 ++++++++++++++------------- locale/en/LC_MESSAGES/strings.mo | Bin 281307 -> 281713 bytes locale/en/LC_MESSAGES/strings.po | 2235 ++++++++++++++-------------- locale/ro/LC_MESSAGES/strings.mo | Bin 300006 -> 300482 bytes locale/ro/LC_MESSAGES/strings.po | 2197 +++++++++++++-------------- locale_template/strings.pot | 2159 ++++++++++++++------------- 10 files changed, 4423 insertions(+), 4360 deletions(-) diff --git a/README.md b/README.md index c6448c8a..01990737 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,9 @@ CAD program, and create G-Code for Isolation routing. 22.05.2019 - Geo Editor - added a new editor tool, Eraser -- PEP8 cleanup of the Geo Editor +- some PEP8 cleanup of the Geo Editor +- fixed some selection issues in the new tool Eraser in Geometry Editor +- updated the translation files 21.05.2019 diff --git a/camlib.py b/camlib.py index 052db845..a2b1051a 100644 --- a/camlib.py +++ b/camlib.py @@ -7738,7 +7738,10 @@ class FlatCAMRTree(object): def remove_obj(self, objid, obj): # Use all ptids to delete from index for i, pt in enumerate(self.get_points(obj)): - self.rti.delete(self.obj2points[objid][i], (pt[0], pt[1], pt[0], pt[1])) + try: + self.rti.delete(self.obj2points[objid][i], (pt[0], pt[1], pt[0], pt[1])) + except IndexError: + pass def nearest(self, pt): """ diff --git a/flatcamEditors/FlatCAMGeoEditor.py b/flatcamEditors/FlatCAMGeoEditor.py index ef7ed6b7..cc5f76e3 100644 --- a/flatcamEditors/FlatCAMGeoEditor.py +++ b/flatcamEditors/FlatCAMGeoEditor.py @@ -2810,16 +2810,19 @@ class FCEraser(FCShapeTool): def click(self, point): if len(self.draw_app.get_selected()) == 0: - for obj_shape in self.storage.get_objects(): try: __, closest_shape = self.storage.nearest(point) self.draw_app.selected.append(closest_shape) except StopIteration: + if len(self.draw_app.selected) > 0: + self.draw_app.app.inform.emit(_("Click to pick-up the erase shape...")) return "" if len(self.draw_app.get_selected()) == 0: return "Nothing to ersase." + else: + self.draw_app.app.inform.emit(_("Click to pick-up the erase shape...")) if self.origin is None: self.set_origin(point) @@ -3594,13 +3597,15 @@ class FlatCAMGeoEditor(QtCore.QObject): self.app.ui.rel_position_label.setText("Dx: %.4f   Dy: " "%.4f    " % (dx, dy)) - # ## Utility geometry (animated) - geo = self.active_tool.utility_geometry(data=(x, y)) - - if isinstance(geo, DrawToolShape) and geo.geo is not None: - # Remove any previous utility shape - self.tool_shape.clear(update=True) - self.draw_utility_geometry(geo=geo) + if event.button == 1 and event.is_dragging == 1 and isinstance(self.active_tool, FCEraser): + pass + else: + # ## Utility geometry (animated) + geo = self.active_tool.utility_geometry(data=(x, y)) + if isinstance(geo, DrawToolShape) and geo.geo is not None: + # Remove any previous utility shape + self.tool_shape.clear(update=True) + self.draw_utility_geometry(geo=geo) # ## Selection area on canvas section ### dx = pos[0] - self.pos[0] @@ -3687,6 +3692,7 @@ class FlatCAMGeoEditor(QtCore.QObject): self.active_tool.click_release((self.pos[0], self.pos[1])) # self.app.inform.emit(msg) self.replot() + except Exception as e: log.warning("Error: %s" % str(e)) return diff --git a/locale/de/LC_MESSAGES/strings.mo b/locale/de/LC_MESSAGES/strings.mo index 7db1e63b6b6c916e634f9c81acc072f3619e59df..38fec665f89cbff3d14c529eeacd151dbdc39bb4 100644 GIT binary patch delta 39000 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 i}`(# delta 38654 zcmZAA1#}h1!-wHb?#105lHd*ruEE{iA-KEC#ogV#xLeRt+@(0hU5Yyt+VB1C4FALV z_MGiAzO%D4vo|+D=kJXBU|U?@?YQ0<4u@YP$4QQ9@;OeuD2|h*i&7nDGP$8R1v^J} zoC}zWc=3gflN!S?9*#t^ow*nbm*HH0$JvVDR9@mZ(XblEz(z;W&YRb2-j! z3?zQ*x@q`7Yofm#Ck5%*Q5UR)s@D>Af&Lg1r=mt~33kuPv&YoL(?|Dn>s3J2YmVw@ z-{^imcgQD_po*)kyKRBfsFApby3i|3iV zy>a}U>==UTKyx1fEtj5{7Du3lY%PZ2IqZeOas8YkxEf31Q&fku#xo;P8a3%^VP0&2 z9-M}n?X!?o?JPn~!qryaHUhe{{Wjq=s^C@Bti6Zo;7e4Gf1sXqtoUXqQ=%>qf~r># zH6o=@^=hD&Uvt!jJD}R_jg<2_!%V=Lf~v3xRd6G!W4looJcerMip{@cp%wAQs01c*c)Mkn7opnQfGWS&rk}RyH*EYFhLHaykoEtb zK$ajg)B&l@v&@a!D2n12tcBW|E2lA&tqtlzT~KpmkWC+lT9(sLk8U|?PV7R>kt3*) zIEU_BO2hc8!W|OS<2P0(t*ICrb)n>_k;sI)(`u-CO;I~$S6q$LP!}$o&W;$We3*@Q zMRjNhYSm2e5zw=off+FwW@BRM)E!S6o{F} z%-W2o$x{T^V|iSIUr>{0SzdDoYfv2uM=u^l<)1=b@B*rxTc|sJhFV3Runv0j`MIAb z8s=mD>zVbl35!wj-);OMYRLWbn}(90Mj##PPRgN1tO@E7^u@ER72a_&K5Y z5H~VO(-!n|8WO);i1nY7KyYC{rzy5Ty=IT#9P}13L$wf>5Z{HGj17t!w_zLNF+%Ou zjCqM~#9(}aT0KdN@i_q7p)UM8>d`0j6*tdj9%@6`fSGW=jXy^X^*>k^qn0r5iW;bA zUk5ehO;L}aJr=@ls10qS&EJoDBqvdm?+SK9-*W;(2sA2bdVB{pB5_NZ{h%aPB>n^^ zVy@C=_8&rZ-~*}yKTwY(av5VvOr`P|h&55=d!ah&L+bgQkpwhJrl2OtLK|O)8j)Sr zlc+nmf$8uG*29=(&5*W1ZA?c{J6qIprhG=!+ch_;1NkvO7RMxd2m=V{SpvHm!pE8QyrV3ChIoLjHgifpHUsiP|?rngjujM&coT7 z1kVX*2!~ZNBQO!Q?&qUMW;tqoZ$`I+sAcyMi{mrY4P>coCSeoIPJFiYIBLYcpeA3c zDt=C39DqJ8r`-fJS#F_v{1SEHlvT~M%8apz2cup-C9IWD9j{{zLp|G$7y)~rhP)rD z!^2RIcr>d0nN?Z;s<4a%HM|D3gKe_~j-uB0MbwbJM9qOh)yzTzou?}D1u{ZS({1@$PF*!V8g$egh8 zzfc!=ZquXIG;=5!#w0yIGPq7z)Q!*f)iPV}B8*GIHq?cVS+Alx_5{_yJDcuT+suVH zs1eJ8>PQjP5LZEUw2@8kiMo-IsO!u}wd>nRKpVnt>sizmdLMIRhB~If#;A%NP#5yq z^vS5nx)3#TD^QPeqjeW*M?HiZY5%&$^vLS+ITcO7X@_cPG^*#5F#uPgCd&!bon1lQ z@k7*zd_vt>gnFi2GE_%1pjJUatb*+^5AH#Y@H>pH_3vNbG#n50*)0$?iSnQ>P#kqf z)leO2fElojjZZ<{`9f5=m8cGGMh)>HRK2sPXMO{_;eAY~^E>Ul2$>X{GK z(~+nPO+&5Y1*k`}3{`$Ds@yiz2pzz@c;2Q*Zff!qpl%=t>til_h?6iA_GrfX*ScKP z%sj)rs4e#bX2v(D$(cONm;(cdm&9z?616`}$3WbG8uIg~j^04s=|dZTWAneF=8U(w z&rF7-&CR6Cgqq#OQ5~y+nk-#x`e0NCr(kp3h#Km6E&QBv*bp_zR$xxNg&N6NElr1# zpy~&qZY*C4>QnA^RJ&(w{HBe6 zL_JbZYm@JbLO>N0VPQ;zwJ;2u;ZD>tO4`QEk@BdyP!028J?m6dJEt%dui+#nW0JPU z)$Pn%G=B#_rvUkvk^R8u#O}yzkc8Z*o}EPv*(DpljsFsVhz)7*K_@?l3Gak<;ZAXW zS3jpF`P;ksIr}kccQXf0q8{C4RL36K^mnMq{sR+g{d;?u3dv9v(xG0nc~BLrp*EDp zsL9n8*W&=2pQ$HzNIWlU$d93(?PXMZ&uscv98Ek@FZ1)pWGtuke_jDh+S`mk3)B#| zLv^4V>H~xiH7SRop7CPT?B0dy;1NuP*HHDppgQ36F|Xg)s5?(!SpL1vkyL_Nc-I2H?{hU}POHd@Ws7HAdwTix? z=FESnN9h@2Oo%F<5p_LZ0Rrkk8PrBo$7ZxbJ-hDckK<6YdLp*QrKpZZ9cqR=F(zO+ zronWi7Z_%iXEV$~yx(y1)ACBx@;-%(oX@#TKs|Csm>$JJeNae=Ij{t(fgacxm!Nh^ zXQX+C2~k6u5;Y=et=X)3Q5OtFz23`Pn_xGs{~iRoknsd{M|DRTTcPf}2YRtL>SZ$k zH8L|%Z?_Go3;cl^$&;wb_ZO<%dsMs8Mw=T=f|{h6q}G2P0_u5jTc85!*)&8o*cR1b zUmKr_+CrDw_$^ciUZU!K#{B3VV>(y_)lOB^BW{YBu`~Jt3Cts)A>D`S=|$vGI`>c& z9-ta{XXE~3&E$%Mx^M#2q)UaG)oD?8n8U^kp*mIuH5qH7My~Z(*1slIUt4ejs^V>9AjlLhx`qW0? zH^KbS7zHa5&wzRx_C#HHE2@DLsQ33n%#QvO&EyNljKuTfYHW^rO~>FBD66CPg;}V% zbRP9cFZ&2+2w$P@=!?}e*^ER?EX1=&ipsAu#SCE>YBu*o&Hk~d{3)o_G~ed0NBsnJ z5H)$PqelEa>c)JLrkbHhfg1A6sApc##>?Ayebl3Ai|&O{&vGp4!V6GCx(Zc)2kIFg zL5=WL8^2@o-y$7h{!cRv#7A`?6{>;ksApdUH9{3^ycX(?!>nylAGx}qUOFpL^$ywm z^Qg&r6*UsKZ2AX`rtAMhKoufQH$9Gz>PR}wfO%}Z32K>k#;n)})sYpb5m=8Jft}bD zk78%cH^X#bm30GZB)4HKt^Yr4#(7i^ub@WYC29ltj=E6%nPw=HSyNjxqb5}ds$M=+ zN6Mf^t`@4DCa5{k+on%JpL#ye7FdA+#D7OkqC2P|eS?}b(Pxf%P}qK>uml7yh8jgrpNF( zW|`fwrkQI#Q?|tx1?tYL zEig7ljbM9gFVwRgVx3@}gL;I&q3W+g?FYMj1WFTlhh;GTLi5pT2+0-C)^*V@TvosU{hYf!Ux7izBTM-AOM)Ev2nDt90CY~P|f{4Z)1#a?Ij`ao1W z1yJQfF@e^96#}cUC2I1;TyK6rNREYwH$o)%m>Jh!P`R`C8_Z9U>{I|3IHAD%vn}*Y&hA=m(q2lO|Wl=+40kv^7Kn;C! zWXU@naSQQC;eHOEH=W&Bi+GV;d|0J{>39Rb@9}e*kbdoVGw1T{XZ<%M;oE-myWcv0 zn7#W9s)3>h%rcvSTL1TP8kRX|9>EQ)Nc>-{f)x(=IgM~0X2q{q4AUPr?~=Ayj`&mz z#+yC@Ap~L_F$pCwBk^813m0P@%y-o6V3RQ}cX$ca!6(PeFCq#bH;-^8Rwn%&s$Q`Z zCVviwDjoH8T*yiDY1-F~KsOTp#4cF!l%F#gx1&Bp<~eOT)&*M8C{IrFjpI0g}aiSe0#PVDo3&Quc8{%MA4Cw?OS4bS4+3+9gg zxM+TMi*?C-G#ic@iGw(oa+fdrInS}n74vm`gR7=P8!#Q|*R9SqzA>R*dd$uIb2?sk zd*Uqn%glkDH_Xp|*>0LGb(ht9%RHJYsGY1YmcS)g0Uu#i%z4|qjD})1;>WC?uo&^Q zcg);qjoGyRXAsZ^bQp_bzPqM@K3JRhKCFrH?-|=-b>hEc9*lF}&zX;9@ftqDy~=;U z$9V3v|3g3L5b=SJ%ncTM%xWP$9DUo!X!q1CpH$DxA2zvw$tY0nxw$~gzs+)-kJ>ty zqSpU<8{dQaU~v@n+3+rEpZJLSlakOS~%f!;>!PLEIUS@Hu*-#r?1NA@D87iu+Sd&eVSBWi=1E4O_g z%=*m!(QFK((Y-@dgLhCD_#2bsTTFv7Kbd$4Dqhvbd!j~QDyqZtQ6snx^=S5BLOgHt zeNPCe!e`W@@cV2!6cIIKO|UiYLA|6>f8qCl+|g;wNxZ=~)4>TCoA@-;yI?u$2G-j2 za8w75;|jcmo%Q*D_&DmVn;ZH?SDKL^YKCUq5Fp=EZ{e0Q+F7|I9a|voRVY z@eMnY9?{R=ZKnt70wYmd?Nroq{nMJp-`@!!-WxM&{m)ha4`O@B z1V%*mcR&5U!L-ElMe%pH*2dU`Azq5w!~LWAyFXH8#M#8>;Cc*>Zbt4ds$Aq4{_g8H zJ8E?_!ay8~dZf!ybEs-epTGMlw|h)~_r1LgQ<32p%ikG-fv65HL#^MKvHji8?PW19 z@gZ0McVT7xfNHoz9Dn!EhO|Ph^Rd<&n3Z^zxMoD_`)pt&YRI;r-T{v>7p9A6hOhzZ z5lqBNxEsSTa(sXHi;DKBcfo4Rhj&pOOp?H)SHnWYM`I2=f{W4ji9j|2vl5yM9Yu}6 zSImM*5}8L*8rAa-sMRnRm45}*QBPuX1Nkt!%3&FtkD3DyF%%OeF&(Ij#kKy&5Kx8F zs2+dE3YaUYzxz>XFqS5M5~<+CNoLB`MBUMN)T%jw8kx6P4vQu?BQpk7?-*(Xqoyz; zk_QWG{dXjwjJ22vuVQ)hPiY#eg!-s83)Rt=s5?%P%HREyQ`J!&-h~x0LV)Q|b!$IV z`%6)i^Q?`3#3o$d2@Et148b7cXHd`R4eA3%V36rZOVp5VM148+8B=5K)aK6Xp)Rx% zOW{S-jU-9q?|uo@0yQ$LF%;jUPaVjW*5BRBx1lD_V{C${()qjJV*9WP@$IM&BoWe^ z5ow5uZ^5k?C4(uq4?~H^$Y_>dWz0alJEp?74%T|Lmj~1-k^BN765ZEt&Xn)a1OD%ZymM z-2Uz#>mBGLpdIf6*2ScGOb@$b4dQ>HMkrfe^XwX;w%`@0j-N-Znt1vAooZMCyW#>Y zi?Q;X^t!0>YfzK-C8~X2Pyw?y_d>1HDX3+27*)`(pj|Ggct_NZw-oiLZlUVMDr82m zIO?s}4b`#Ds2%VbYMB-&Y&N(sWHtDlr35qrCs51pHEOaXEn+TE0+rtrwNcHpo$mZ_(N8PYPSWj7DGL+3GSHN_}t+UbaTmn_EWT;KVNfSz5}Ql?=a>drQz z?%8gYU39=Br{l zI1crQw^#9*2A`6k*JtdiX110=Rh*5wv)ibxHC;7xq3Wn1Ux<1X7jZDgs&011$*2wN zG1kP;8fFg6K&_gOs7aXKSJPa$hjp#>KI#HVYMDt@8S4;Viu!`#8|seh);9UeQFrtO z)#1!_%p>fMiXT9|GosWr%dZS-&iO_W=u6|)k8&#o|PGPOf( zOdC*TK1?mpQp(f!5R7bC%F7zG)FnLqc!NRC^n^?!8^21R#bPdyL{eK~#hEp~( zughYnJ8Xs8`9@ne*!)YV4t+&!#Q|aFLJcs0_$btktg;?Mwe#2-y}7x8VDu@YJ^}S; zFskBW)GXa^eT%x|)Gf?VSFrX+Ez7m2M|aNp(i*L$8KI1rjQrB58x6xWIHD!%KY+j* z64cNsOo*>hLl?1?8QNfL1Jq<3jvD%{s7H0)#{aSTiCdeID1+*F8`KAz$*4(s0(FCt z+W1T$e;d(KcH*+8@<|n-(>JCSuMsh!DWFDY8 z99-P*5}+Jpo%|G4W;hv?_BZY+ia{(JZ@Ki=WP_e9Y;-`I{i)g zey9#C#>lwU#`oe1e(`%5w`5iMxCq4mV;#`cS^}m{c8rp^G*=f|Hc!pfp@i0eJ zF$PA(q!pMFMsKRAb!Plsfh%neR zoB~y$Flw3Aw)U|3Q&A(h1vL`aP#wI7+6kYc?)VF;1CfT9>%>Q&E}V%#3@nN9usUi) zTA}j$qB=AU^-R~IM(P-<+(Xne{*3Bq+@U5vGpc-9)Cjde-N0~Exuru{{|$KW?jb=J zO0>%q%!#^SHPk9-i<Y#3* z*Gq;vHi2oj;BxC;)KFbQb>JSVqUV(v(jZg^gE0=4M~z%V8}DKrimEpq)$y%1{VZx9 zx$7gKo_<8#QS#Sjh(b_9R1MX^b{K&DQFl5Yb>TJEy{Of37BwPok)_WMk!Hv2@XmZH zo`Ovh+BjZDrpJvlnm~@}BlYoZev@LMY#y_A&Aj&5*GC`#JnkfZj+*VCQSXNM{vIbI<@2F00tsOr zQ?L!zBi<9WbDgtZM|I!vy2}sMPf8J_sP+b0C!xwM zLAD!bGp1$)o<{PShNDL@1%gmJRxoCzKxNcy9}v}y(0o(}S6jEEM(}`*A44tUi#Glo zwIzQ-ZOQ-Hc*JO?!?AoekOI}i%%~wMh?;ceQJ;hwpe{Vh=1;>6#FyeVJcSza<gUYs1bUPYR4~z#~Fsc7z7Ftn1WirXE6(YxABZIO?n;F+iwK+!^zkcqs8*L zU&Ri@NW>GyHaC(I^~kcJ=2A&ihbvM{@wj63-CN z)j9Lw!P#umO;Bh~wq(z@5LnZ=x{pLZ<)~cxVdZ^jl5_8}H)X1zy&4oWucXkT3 zQ$9z{0Z*XGkA@o2gs5`Cs12x^wPzsfU+Z`d37Y+zQP1iCp2EpNrXvkgn+~=?l^crc z=u}ik=GpWWsM)>)wR%pWX8lbZgwIjeYn#SA!XasVCSfTF>e+78(A`Fj$XC<_H!!LQhXc+IRH^YcB15|5J2bf`QwBR&cn;WKQ9WwN`= zjxRDj=CxcdhnXCWFcSqjqdxh}Mcw&IER5l(XZsN~nSP+&da-hvN01uJ6VHa4BYjaD z*?1eDhnfo;P&ate$nSrGJ??8WYKXZ|5j;qN0az1@=JL3|vzd;e#6xqN3l2eTEaOp+ zY$oc_Y(~91PGClSjhX{V@|Zc39(98`(Ea>h*bVU4YEcCnq3*D~jSsZ(aj2bf0ctXx z#PL`zuUU3iFpzlRe5Rcys6D?UYBlx11~?eC-`vDHTL1qM(B!L=-;6+iRDoT%Q3X*O z#`pqe1P-Fszo($bX^MqWVF_!0GT%2deX{?;r9h7n(k+t5>(^{*k^NkBt# z(0UFN5Wk5U%6F&@DRB`q2Z~`e;^nXa&cmE|1q)*2qQ;V#jrd^fh#RpsrU*6ZJwjRk zT4u{g&<3*)wQgUb`?^F;nux{BGY>+gXGN9Eg_>lgP?NK!wIOPMXo1=vI-(|PAJiNf zk7{RmF`t=4Ye~>E-;Qed7;5%k!?ySo)j;*)=25l6mBh#51q?1>@*|WqTXquEh~-Dk zi7-ru!%_RjTFiQP*o*#%$TX9t5<AeaVPf&TOTlQ3Y?K8hVAgfTz4kPl%ed=}?n6 z#9G)|1}l?Z4RhgQ>t)PLJZc5W`pZK=lP3%{gzZqzZY*jjx1vVo2QPHHBi?(hCUUzWedDO4b>OaD#%*JSOhg`s#xn| zXC_litV#Oisvf5c@l4gszA&%4$NeK+FHs#IT*Gu=Dr$#ai0a_F8mxb9cxQe2fCwrJPa%1Jk$lAqGowu1Jm)AsL9tC z^@t|g_yQZ>f_kI}Z2ECzr1<`iKoK&YVSCKb(BuATm+2TnJVql^u^8%3%3=kqW?g_9 zp=VeN|G`N92da9vDSQC$N$=xpO!nd^Efvse;hUWmbW(}w;2^bfZAWqqUOdG48Z#sPwU^) z!3HM^^!=0q6kQS`!RIMU{K>1aM53_<1R>}1w;F;x9JsPs0t5c^`ZS3)5zq+ubuo7y3H2;vBZKIq#X!u6nyeL24Yx%tv%Xje$D{7_giZew)$T*o zvww~nk+-Nx_-_~1zZy=_)qILAirVo;p&r3v%!sQ|%j_bC;=ib6RkWM=AW;sL-v`s- zG8;dMT81C7A9}i*jtoMrjuG8i|Jv~;lQ0^O;25mj!{dJYbq%i(Z`#vT$luG{aYb9Z?q=it6EH z8()H%iEl(b!y7jLDFzY$ih9<``4yfgLlS?3+RC-XYYt67jYK%A+#l$E|M!xB zo~8d_kNX>r7?_iIVbosV8MRDjp`LA`A?8`3ikoXep zuZB|%HP2+8bq%s{IlEAkYA&}pZ`}A&>p`XwXV;ghWHk$!8fQ5BpmK>{{TTw)HCganky4f_2ywkTx;{c*z_19 z%!N~+^0T0}_P!%n|GJa)BrkO_-gu3&rI0y@2AKZglExD$f^7&9VRunY}tDsMJ z)Qo^;XIs>Jc@(C?6{wxXMLmK! zGg$xH8rPGcz4`=dXq=hmBT@p?(B?snOjXpgZI8NxAvg)Ap?=g#J3R zV+Znc&NIt;A#NxB4cp_U`KDvZeGBXzq9#jKR8JeDMxqUN!-1$Czp*+C&1#5^s+S%$ z`EsK=S{yaoYoQ)-D{Ch#O1u}=Lf;Mol?g;&WD*)+0pgo6AHKjb>;q{Rdz`_)Nk(OtCOLQU=`R?h}A*HYm` z(zD@suJ7z4pbM4XXl#i3S+5gnGLAzvG!r$HTTsvX4^+p_pytX$)U*F;jlRj$ONH7m z3Zm*2N0qOFzC8q55YV#<*ldO}3sxjP05$1OSg&Iy;?J-rLmPjK`O$6cRx{)$unYMS zwwXuO3y%=byWM;%{sWH_Ke$6bdU0dntpCmgYV0)2>=5ds(OXmxJMS_MN8RZh)U4iQ z;|EZW;u`96z+IdF81>olvrYew8ae;nW`ts+ZY=d~pGgQIK_gHawfw51K7utw?Tk%O zLpRVm7WvCf&Mf?c^kI8F&Tqs^?lU9!{C7SV&_IFxyd&6yFB~wx;)#C5E{kNXFO|3p2ivM0=H@t!oxHValEy+8KCQwFM8a+|N9d4lgz41=0~$f zsF6r|+2gFkNjMh^T`^uoZN=TLnj2Y#nuOQ!AeO&o(qmjVKPwi&%-l#vT(9*%=Pz@I zWp1#($(V?GMw@PW++R*Fy=B(xN7P0#{5C&YQEo3DCGOnyIN#wIHo(L8%!LB(n;$f) zSO=iKf?bW3F~LKYr;k93M;>PZ6$d{yzv)Q%#N+-s{gYUo^!QKBGjEOAh)=?*_`5aM zGc)8(u?*>FP+NF{=Vk<}Vmaa?FbL0K2);w#SOV$(Hov>sjG83hu^twG!EY#VKGw$% zSR1RnG+!jFzzxJ-V@hsh;VUx|`(D!y@!fAc&OP#-cV?2`#}xhy{dc{DYs13sN-Q>qZZ9GA!^bk}>O4#(;s1CHY4#4!pr(i4G zg;_A*huJYJq0-0u2&^LT9@UZg|C&#$Yf&G?4q*bkkGiujs0+vX&ummds19X8)h~o9 zUjb7w)Xh+jbcmnVc}V;i>JhH}Wb^sbHj zNA$X1RwYBdoI+7AtA?nKw?=hzBg7^=7 ztMxxDy4U>yp=S)Q`;wSoorik4thR1OJ;Pnr$Ecx<7t@q$hZ?zVsL3_l#wVa2%_3CC zHlQBS0Zgp-|5XB&@D1vMMPhl~4~wNSl=yetiG^c(-Oqxba4aLyHjdYwJ0Iej3onT0 zbzf2&QO|rYYDE3x8|z>I@pY)z_!;ym@P$AIOr5~%zGNz*Hl)Z2z3vYZD^MLwmB^%b z#CF7^B{p}`3-t)bqh7NMP|I#DYEC^u=AQEvRqi`#(#A-_zkjTuNs+`n%PgoN%7Yrh za;PD%j@i(MnnW8gI-as#Lp}RPsGaYPHFHw0`}w~W_9cBV>e+w8k%}ktnP(U&xtUar zu{s%3@CZZv5VI0rlhW({skmzxPP}R=ulolTA_thEyo&0mf1oL!9n%nRgn>8|&*5^^ zTee4#*Zr<(v5$a02%N_NEScKt{=>s9u_y8WFcf>HG48-(#6P3%G=EyJ`^Rv4pdRI8 z%!P5%d7b818ue0IgL|``HE$+L}su1_8gCwh#yAgh|igm#p~|%7g1YgysTdL^M66q zh5Mpb!-`YHE(^*lyHnN>jvixHsza#5-J!<%_cZ)uX?Qdfndvr4IGF-(ZBHhUgyZU68q$ zc_d>{@yDnUC|TU={yRYXQLAWX2{T8cmNcuO9%@+*M=it6s7HGdwXAcLV*S@8(72RY zR^h0ge?{GC^U`Lrg=0toan7AWU+KNWYwro``{ZZOnW z-s^tzF&5Rp0i1^kE10*}77QSM8MQ@!!cBf`#T8A*&R1gc68Ba%R;pqyG_xwJh;&ai zbHQTOz2=|o!}YWiwT77!zMTX#B)4%W7Od%Y|E$LEn1gthT3+`Tj*U>0>5z@TLoLs` zwao=5;soOVU{xGb$LoF!{|hziE7UcUd=hphehQOo{THlf)^}ahvYLT~@sTxkeY1?3 zp*ETos3CocS~Y1Kn2~6P^@z_vJ-XM}0ZTMABew}P!q-vHK3gNn`fEran1r#YEp#8| z#HXkYDQRP~Wfr#%L~X4*QFA4E6R-OxpGI2$MBQ=nrpBgNi}-Tvg5Pi*wr|Fx*ZNN! zX68T@%td^pjqkC(Lv<`;bF+ihL~XGXPz_(lj+niL`NXsUHR~g`^g6>a1PkF#>ql%u zJh&C>zdeC@1oXa+)Y{xxG1O51W_^Jn#6#McXWQDk6SZGNX=_HR9Cjt%74?iCpdLky zcBZ2%tv^tooNBaZ{c9-Kv^QI4%nqhvSJZ63hq}|K9nD5k+qxRn@ONy6RXdrH z9_sDbsIz(2vr&)uDAvcXs1d5!h4r7Bz>qGc;BTl|eG#>zMd@mmNp95aZ(!qNQ4Maw zPWS*dg4Mg38ySz<8DFDDxN>*1ns%dJLVu$sVH#f#v-4HQkt9q(RZQH|>;6KaH)=9n zwee)V%&hN^dQFGpBK(GWrgM9nt=iMaygS-h@1QzdyRXR~gIYztS2mEYpSgp^s1cZr zP4F!C#cch}TW%HVEf;Hm*;u+^b>bIMBav>PnT#{AC2`Lna|3Nrb80>620!3>t^XQ4 zf*vIJ4K`bFFVx1f6E$m}p@ufy5OblXsQqCpY7V@`P%Jgn%$bp>*X~9vg�G78qtG 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 n{xLU&zX|YEP8(jnv}aShortcut Key List" msgstr " Liste der Tastenkombinationen " @@ -1275,7 +1275,7 @@ msgstr "Schlitz insgesamt" #: flatcamTools/ToolNonCopperClear.py:627 #: flatcamTools/ToolNonCopperClear.py:644 flatcamTools/ToolPaint.py:538 #: flatcamTools/ToolPaint.py:608 flatcamTools/ToolPaint.py:743 -#: flatcamTools/ToolPaint.py:840 flatcamTools/ToolPaint.py:995 +#: flatcamTools/ToolPaint.py:844 flatcamTools/ToolPaint.py:999 #: flatcamTools/ToolPanelize.py:385 flatcamTools/ToolPanelize.py:397 #: flatcamTools/ToolPanelize.py:410 flatcamTools/ToolPanelize.py:423 #: flatcamTools/ToolPanelize.py:435 flatcamTools/ToolPanelize.py:446 @@ -1344,8 +1344,8 @@ msgstr "" msgid "Generating CNC Code" msgstr "CNC-Code generieren" -#: FlatCAMObj.py:2674 FlatCAMObj.py:5021 camlib.py:5165 camlib.py:5624 -#: camlib.py:5887 +#: FlatCAMObj.py:2674 FlatCAMObj.py:5021 camlib.py:5166 camlib.py:5625 +#: camlib.py:5888 msgid "" "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the " "format (x, y) \n" @@ -1367,8 +1367,8 @@ msgstr "Rau" msgid "Finish" msgstr "Oberfläche" -#: FlatCAMObj.py:3300 flatcamGUI/FlatCAMGUI.py:531 flatcamGUI/FlatCAMGUI.py:724 -#: flatcamGUI/FlatCAMGUI.py:1615 flatcamGUI/FlatCAMGUI.py:1946 +#: FlatCAMObj.py:3300 flatcamGUI/FlatCAMGUI.py:531 flatcamGUI/FlatCAMGUI.py:727 +#: flatcamGUI/FlatCAMGUI.py:1618 flatcamGUI/FlatCAMGUI.py:1953 #: flatcamGUI/ObjectUI.py:999 msgid "Copy" msgstr "Kopieren" @@ -1625,7 +1625,7 @@ msgstr "[success] Gerber drehen fertig." msgid "[ERROR_NOTCL] This is GCODE mark: %s" msgstr "[ERROR_NOTCL] Dies ist die GCODE-Marke: %s" -#: camlib.py:3989 +#: camlib.py:3990 #, python-format msgid "" "[WARNING] No tool diameter info's. See shell.\n" @@ -1642,7 +1642,7 @@ msgstr "" "Der Benutzer muss das resultierende Excellon-Objekt bearbeiten und die " "Durchmesser ändern, um die tatsächlichen Durchmesser widerzuspiegeln." -#: camlib.py:4454 +#: camlib.py:4455 #, python-brace-format msgid "" "[ERROR] Excellon Parser error.\n" @@ -1651,7 +1651,7 @@ msgstr "" "[ERROR] Fehler beim Excellon-Parser.\n" "Parsing fehlgeschlagen. Zeile {l_nr}: {line}\n" -#: camlib.py:4531 +#: camlib.py:4532 msgid "" "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of " "not having a tool associated.\n" @@ -1661,12 +1661,12 @@ msgstr "" "da kein Werkzeug zugeordnet wurde.\n" "Überprüfen Sie den resultierenden GCode." -#: camlib.py:5074 +#: camlib.py:5075 #, python-format msgid "[ERROR] There is no such parameter: %s" msgstr "[ERROR] Es gibt keinen solchen Parameter: %s" -#: camlib.py:5144 +#: camlib.py:5145 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "drill into material.\n" @@ -1681,7 +1681,7 @@ msgstr "" "einen negativen Wert. \n" "Überprüfen Sie den resultierenden CNC-Code (Gcode usw.)." -#: camlib.py:5151 camlib.py:5647 camlib.py:5910 +#: camlib.py:5152 camlib.py:5648 camlib.py:5911 #, python-format msgid "" "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file" @@ -1689,15 +1689,15 @@ msgstr "" "[WARNING] Der Parameter Cut Z ist Null. Es wird kein Schnitt ausgeführt, da " "die %s Datei übersprungen wird" -#: camlib.py:5380 camlib.py:5477 camlib.py:5535 +#: camlib.py:5381 camlib.py:5478 camlib.py:5536 msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..." msgstr "[ERROR_NOTCL] Die geladene Excellon-Datei hat keine Bohrer ..." -#: camlib.py:5482 +#: camlib.py:5483 msgid "[ERROR_NOTCL] Wrong optimization type selected." msgstr "[ERROR_NOTCL] Falscher Optimierungstyp ausgewählt." -#: camlib.py:5635 camlib.py:5898 +#: camlib.py:5636 camlib.py:5899 msgid "" "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad " "combinations of other parameters." @@ -1705,7 +1705,7 @@ msgstr "" "[ERROR_NOTCL] Der Parameter Cut_Z ist None oder Null. Höchstwahrscheinlich " "eine schlechte Kombination anderer Parameter." -#: camlib.py:5640 camlib.py:5903 +#: camlib.py:5641 camlib.py:5904 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "cut into material.\n" @@ -1720,11 +1720,11 @@ msgstr "" "einen negativen Wert. \n" "Überprüfen Sie den resultierenden CNC-Code (Gcode usw.)." -#: camlib.py:5652 camlib.py:5915 +#: camlib.py:5653 camlib.py:5916 msgid "[ERROR_NOTCL] Travel Z parameter is None or zero." msgstr "[ERROR_NOTCL] Der Parameter für den Travel Z ist Kein oder Null." -#: camlib.py:5656 camlib.py:5919 +#: camlib.py:5657 camlib.py:5920 msgid "" "[WARNING] The Travel Z parameter has negative value. It is the height value " "to travel between cuts.\n" @@ -1738,7 +1738,7 @@ msgstr "" "einen Tippfehler handelt, konvertiert die App den Wert in einen positiven " "Wert. Überprüfen Sie den resultierenden CNC-Code (Gcode usw.)." -#: camlib.py:5663 camlib.py:5926 +#: camlib.py:5664 camlib.py:5927 #, python-format msgid "" "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file" @@ -1746,12 +1746,12 @@ msgstr "" "[WARNING] Der Parameter Z-Weg ist Null. Dies ist gefährlich, da die %s Datei " "übersprungen wird" -#: camlib.py:5793 +#: camlib.py:5794 #, python-format msgid "[ERROR]Expected a Geometry, got %s" msgstr "[ERROR] Eine Geometrie erwartet,%s erhalten" -#: camlib.py:5799 +#: camlib.py:5800 msgid "" "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without " "solid_geometry." @@ -1759,7 +1759,7 @@ msgstr "" "[ERROR_NOTCL] Der Versuch, einen CNC-Auftrag aus einem Geometrieobjekt ohne " "solid_geometry zu generieren." -#: camlib.py:5838 +#: camlib.py:5839 msgid "" "[ERROR_NOTCL] The Tool Offset value is too negative to use for the " "current_geometry.\n" @@ -1769,7 +1769,7 @@ msgstr "" "current_geometry zu verwenden.\n" "Erhöhen Sie den Wert (im Modul) und versuchen Sie es erneut." -#: camlib.py:6052 +#: camlib.py:6053 msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry." msgstr "" "[ERROR_NOTCL] In der SolderPaste-Geometrie sind keine Werkzeugdaten " @@ -1785,8 +1785,8 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:447 #: flatcamEditors/FlatCAMExcEditor.py:472 #: flatcamEditors/FlatCAMGrbEditor.py:451 -#: flatcamEditors/FlatCAMGrbEditor.py:1759 -#: flatcamEditors/FlatCAMGrbEditor.py:1787 +#: flatcamEditors/FlatCAMGrbEditor.py:1762 +#: flatcamEditors/FlatCAMGrbEditor.py:1790 msgid "Click on target location ..." msgstr "Klicken Sie auf den Zielort ..." @@ -1848,7 +1848,7 @@ msgstr "" "[WARNING_NOTCL] Abgebrochen. Keine Bohrer zur Größenänderung ausgewählt ..." #: flatcamEditors/FlatCAMExcEditor.py:449 -#: flatcamEditors/FlatCAMGrbEditor.py:1761 +#: flatcamEditors/FlatCAMGrbEditor.py:1764 msgid "Click on reference location ..." msgstr "Klicken Sie auf die Referenzposition ..." @@ -1865,7 +1865,7 @@ msgid "Excellon Editor" msgstr "Excellon Editor" #: flatcamEditors/FlatCAMExcEditor.py:765 -#: flatcamEditors/FlatCAMGrbEditor.py:2108 +#: flatcamEditors/FlatCAMGrbEditor.py:2250 msgid "Name:" msgstr "Name:" @@ -1950,7 +1950,7 @@ msgstr "Größe ändern" msgid "Resize drill(s)" msgstr "Bohrer verkleinern" -#: flatcamEditors/FlatCAMExcEditor.py:889 flatcamGUI/FlatCAMGUI.py:1612 +#: flatcamEditors/FlatCAMExcEditor.py:889 flatcamGUI/FlatCAMGUI.py:1615 msgid "Add Drill Array" msgstr "Bohrer-Array hinzufügen" @@ -1968,12 +1968,12 @@ msgstr "" "Es kann lineares X (Y) oder rund sein" #: flatcamEditors/FlatCAMExcEditor.py:900 -#: flatcamEditors/FlatCAMGrbEditor.py:2341 +#: flatcamEditors/FlatCAMGrbEditor.py:2483 msgid "Linear" msgstr "Linear" #: flatcamEditors/FlatCAMExcEditor.py:901 -#: flatcamEditors/FlatCAMGrbEditor.py:2342 +#: flatcamEditors/FlatCAMGrbEditor.py:2484 msgid "Circular" msgstr "Kreisförmig" @@ -1987,13 +1987,13 @@ msgstr "Geben Sie an, wie viele Drills im Array enthalten sein sollen." #: flatcamEditors/FlatCAMExcEditor.py:927 #: flatcamEditors/FlatCAMExcEditor.py:972 -#: flatcamEditors/FlatCAMGrbEditor.py:2368 -#: flatcamEditors/FlatCAMGrbEditor.py:2413 +#: flatcamEditors/FlatCAMGrbEditor.py:2510 +#: flatcamEditors/FlatCAMGrbEditor.py:2555 msgid "Direction:" msgstr "Richtung:" #: flatcamEditors/FlatCAMExcEditor.py:929 -#: flatcamEditors/FlatCAMGrbEditor.py:2370 +#: flatcamEditors/FlatCAMGrbEditor.py:2512 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -2006,26 +2006,26 @@ msgstr "" "- 'Winkel' - ein benutzerdefinierter Winkel für die Neigung des Arrays" #: flatcamEditors/FlatCAMExcEditor.py:942 -#: flatcamEditors/FlatCAMGrbEditor.py:2383 +#: flatcamEditors/FlatCAMGrbEditor.py:2525 msgid "Pitch:" msgstr "Abstand:" #: flatcamEditors/FlatCAMExcEditor.py:944 -#: flatcamEditors/FlatCAMGrbEditor.py:2385 +#: flatcamEditors/FlatCAMGrbEditor.py:2527 msgid "Pitch = Distance between elements of the array." msgstr "Abstand = Abstand zwischen Elementen des Arrays." #: flatcamEditors/FlatCAMExcEditor.py:951 #: flatcamEditors/FlatCAMExcEditor.py:987 -#: flatcamEditors/FlatCAMGeoEditor.py:666 -#: flatcamEditors/FlatCAMGrbEditor.py:2392 -#: flatcamEditors/FlatCAMGrbEditor.py:2428 -#: flatcamEditors/FlatCAMGrbEditor.py:4414 flatcamTools/ToolTransform.py:68 +#: flatcamEditors/FlatCAMGeoEditor.py:665 +#: flatcamEditors/FlatCAMGrbEditor.py:2534 +#: flatcamEditors/FlatCAMGrbEditor.py:2570 +#: flatcamEditors/FlatCAMGrbEditor.py:4558 flatcamTools/ToolTransform.py:68 msgid "Angle:" msgstr "Winkel:" #: flatcamEditors/FlatCAMExcEditor.py:953 -#: flatcamEditors/FlatCAMGrbEditor.py:2394 +#: flatcamEditors/FlatCAMGrbEditor.py:2536 msgid "" "Angle at which the linear array is placed.\n" "The precision is of max 2 decimals.\n" @@ -2038,7 +2038,7 @@ msgstr "" "Maximalwert ist: 360.00 Grad." #: flatcamEditors/FlatCAMExcEditor.py:974 -#: flatcamEditors/FlatCAMGrbEditor.py:2415 +#: flatcamEditors/FlatCAMGrbEditor.py:2557 msgid "" "Direction for circular array.Can be CW = clockwise or CCW = counter " "clockwise." @@ -2047,7 +2047,7 @@ msgstr "" "Gegenuhrzeigersinn sein." #: flatcamEditors/FlatCAMExcEditor.py:989 -#: flatcamEditors/FlatCAMGrbEditor.py:2430 +#: flatcamEditors/FlatCAMGrbEditor.py:2572 msgid "Angle at which each element in circular array is placed." msgstr "" "Winkel, um den jedes Element in einer kreisförmigen Anordnung platziert wird." @@ -2062,7 +2062,7 @@ msgstr "" "Speichern und korrigieren Sie Excellon, wenn Sie dieses Tool hinzufügen " "möchten." -#: flatcamEditors/FlatCAMExcEditor.py:1461 flatcamGUI/FlatCAMGUI.py:2995 +#: flatcamEditors/FlatCAMExcEditor.py:1461 flatcamGUI/FlatCAMGUI.py:3002 #, python-brace-format msgid "[success] Added new tool with dia: {dia} {units}" msgstr "[success] Neues Werkzeug mit Durchmesser hinzugefügt: {dia} {units}" @@ -2101,17 +2101,17 @@ msgid "[success] Done. Drill(s) deleted." msgstr "[success] Erledigt. Bohrer gelöscht." #: flatcamEditors/FlatCAMExcEditor.py:2675 -#: flatcamEditors/FlatCAMGrbEditor.py:4174 +#: flatcamEditors/FlatCAMGrbEditor.py:4318 msgid "Click on the circular array Center position" msgstr "Klicken Sie auf die kreisförmige Anordnung in der Mitte" #: flatcamEditors/FlatCAMGeoEditor.py:80 -#: flatcamEditors/FlatCAMGrbEditor.py:2258 +#: flatcamEditors/FlatCAMGrbEditor.py:2400 msgid "Buffer distance:" msgstr "Pufferabstand:" #: flatcamEditors/FlatCAMGeoEditor.py:81 -#: flatcamEditors/FlatCAMGrbEditor.py:2259 +#: flatcamEditors/FlatCAMGrbEditor.py:2401 msgid "Buffer corner:" msgstr "Pufferecke:" @@ -2131,17 +2131,17 @@ msgstr "" "der Ecke treffen, direkt verbindet" #: flatcamEditors/FlatCAMGeoEditor.py:89 -#: flatcamEditors/FlatCAMGrbEditor.py:2267 +#: flatcamEditors/FlatCAMGrbEditor.py:2409 msgid "Round" msgstr "Runden" #: flatcamEditors/FlatCAMGeoEditor.py:90 -#: flatcamEditors/FlatCAMGrbEditor.py:2268 +#: flatcamEditors/FlatCAMGrbEditor.py:2410 msgid "Square" msgstr "Quadrat" #: flatcamEditors/FlatCAMGeoEditor.py:91 -#: flatcamEditors/FlatCAMGrbEditor.py:2269 +#: flatcamEditors/FlatCAMGrbEditor.py:2411 msgid "Beveled" msgstr "Abgeschrägt" @@ -2158,17 +2158,17 @@ msgid "Full Buffer" msgstr "Voller Puffer" #: flatcamEditors/FlatCAMGeoEditor.py:127 -#: flatcamEditors/FlatCAMGeoEditor.py:2696 +#: flatcamEditors/FlatCAMGeoEditor.py:2682 msgid "Buffer Tool" msgstr "Pufferwerkzeug" #: flatcamEditors/FlatCAMGeoEditor.py:138 #: flatcamEditors/FlatCAMGeoEditor.py:155 #: flatcamEditors/FlatCAMGeoEditor.py:172 -#: flatcamEditors/FlatCAMGeoEditor.py:2714 -#: flatcamEditors/FlatCAMGeoEditor.py:2740 -#: flatcamEditors/FlatCAMGeoEditor.py:2766 -#: flatcamEditors/FlatCAMGrbEditor.py:4226 +#: flatcamEditors/FlatCAMGeoEditor.py:2700 +#: flatcamEditors/FlatCAMGeoEditor.py:2726 +#: flatcamEditors/FlatCAMGeoEditor.py:2752 +#: flatcamEditors/FlatCAMGrbEditor.py:4370 msgid "" "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and " "retry." @@ -2180,17 +2180,17 @@ msgstr "" msgid "Text Tool" msgstr "Textwerkzeug" -#: flatcamEditors/FlatCAMGeoEditor.py:401 flatcamGUI/FlatCAMGUI.py:805 +#: flatcamEditors/FlatCAMGeoEditor.py:401 flatcamGUI/FlatCAMGUI.py:808 msgid "Tool" msgstr "Werkzeug" -#: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:4051 -#: flatcamGUI/FlatCAMGUI.py:5448 flatcamGUI/FlatCAMGUI.py:5724 -#: flatcamGUI/FlatCAMGUI.py:5864 flatcamGUI/ObjectUI.py:260 +#: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:4058 +#: flatcamGUI/FlatCAMGUI.py:5455 flatcamGUI/FlatCAMGUI.py:5731 +#: flatcamGUI/FlatCAMGUI.py:5871 flatcamGUI/ObjectUI.py:260 msgid "Tool dia:" msgstr "Werkzeugdurchmesser:" -#: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:5866 +#: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:5873 msgid "" "Diameter of the tool to\n" "be used in the operation." @@ -2198,8 +2198,8 @@ msgstr "" "Durchmesser des Werkzeugs bis\n" "in der Operation verwendet werden." -#: flatcamEditors/FlatCAMGeoEditor.py:443 flatcamGUI/FlatCAMGUI.py:5630 -#: flatcamGUI/FlatCAMGUI.py:5875 flatcamTools/ToolNonCopperClear.py:165 +#: flatcamEditors/FlatCAMGeoEditor.py:443 flatcamGUI/FlatCAMGUI.py:5637 +#: flatcamGUI/FlatCAMGUI.py:5882 flatcamTools/ToolNonCopperClear.py:165 #: flatcamTools/ToolPaint.py:160 msgid "Overlap Rate:" msgstr "Überlappungsrate:" @@ -2233,14 +2233,14 @@ msgstr "" "Höhere Werte = langsame Bearbeitung und langsame Ausführung auf CNC\n" "wegen zu vieler Wege." -#: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5646 -#: flatcamGUI/FlatCAMGUI.py:5732 flatcamGUI/FlatCAMGUI.py:5885 +#: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5653 +#: flatcamGUI/FlatCAMGUI.py:5739 flatcamGUI/FlatCAMGUI.py:5892 #: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:181 #: flatcamTools/ToolPaint.py:177 msgid "Margin:" msgstr "Marge:" -#: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:5887 +#: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:5894 #: flatcamTools/ToolPaint.py:179 msgid "" "Distance by which to avoid\n" @@ -2251,13 +2251,13 @@ msgstr "" "die Kanten des Polygons bis\n" "gemalt werden." -#: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5655 -#: flatcamGUI/FlatCAMGUI.py:5896 flatcamTools/ToolNonCopperClear.py:190 +#: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5662 +#: flatcamGUI/FlatCAMGUI.py:5903 flatcamTools/ToolNonCopperClear.py:190 #: flatcamTools/ToolPaint.py:188 msgid "Method:" msgstr "Methode:" -#: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:5898 +#: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:5905 msgid "" "Algorithm to paint the polygon:
Standard: Fixed step inwards." "
Seed-based: Outwards from seed." @@ -2265,14 +2265,14 @@ msgstr "" "Algorithmus zum Malen des Polygons:
Standard: Feststehender " "Schritt nach innen.
Samenbasiert: Aus dem Samen heraus." -#: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5671 -#: flatcamGUI/FlatCAMGUI.py:5911 flatcamTools/ToolNonCopperClear.py:206 +#: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5678 +#: flatcamGUI/FlatCAMGUI.py:5918 flatcamTools/ToolNonCopperClear.py:206 #: flatcamTools/ToolPaint.py:204 msgid "Connect:" msgstr "Verbinden:" -#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/FlatCAMGUI.py:5673 -#: flatcamGUI/FlatCAMGUI.py:5913 flatcamTools/ToolNonCopperClear.py:208 +#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/FlatCAMGUI.py:5680 +#: flatcamGUI/FlatCAMGUI.py:5920 flatcamTools/ToolNonCopperClear.py:208 #: flatcamTools/ToolPaint.py:206 msgid "" "Draw lines between resulting\n" @@ -2281,14 +2281,14 @@ msgstr "" "Zeichnen Sie Linien zwischen den Ergebnissen\n" "Segmente, um Werkzeuglifte zu minimieren." -#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5680 -#: flatcamGUI/FlatCAMGUI.py:5921 flatcamTools/ToolNonCopperClear.py:215 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5687 +#: flatcamGUI/FlatCAMGUI.py:5928 flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolPaint.py:213 msgid "Contour:" msgstr "Kontur:" -#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/FlatCAMGUI.py:5682 -#: flatcamGUI/FlatCAMGUI.py:5923 flatcamTools/ToolNonCopperClear.py:217 +#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/FlatCAMGUI.py:5689 +#: flatcamGUI/FlatCAMGUI.py:5930 flatcamTools/ToolNonCopperClear.py:217 #: flatcamTools/ToolPaint.py:215 msgid "" "Cut around the perimeter of the polygon\n" @@ -2297,21 +2297,21 @@ msgstr "" "Schneiden Sie um den Umfang des Polygons herum\n" "Ecken und Kanten schneiden." -#: flatcamEditors/FlatCAMGeoEditor.py:510 +#: flatcamEditors/FlatCAMGeoEditor.py:509 msgid "Paint" msgstr "Malen" -#: flatcamEditors/FlatCAMGeoEditor.py:528 flatcamGUI/FlatCAMGUI.py:648 -#: flatcamGUI/FlatCAMGUI.py:1865 flatcamGUI/ObjectUI.py:1314 +#: flatcamEditors/FlatCAMGeoEditor.py:527 flatcamGUI/FlatCAMGUI.py:648 +#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/ObjectUI.py:1314 #: flatcamTools/ToolPaint.py:341 msgid "Paint Tool" msgstr "Werkzeug Malen" -#: flatcamEditors/FlatCAMGeoEditor.py:564 +#: flatcamEditors/FlatCAMGeoEditor.py:563 msgid "[WARNING_NOTCL] Paint cancelled. No shape selected." msgstr "[WARNING_NOTCL] Farbe abgebrochen. Keine Form ausgewählt" -#: flatcamEditors/FlatCAMGeoEditor.py:575 flatcamTools/ToolCutOut.py:355 +#: flatcamEditors/FlatCAMGeoEditor.py:574 flatcamTools/ToolCutOut.py:355 #: flatcamTools/ToolCutOut.py:512 flatcamTools/ToolCutOut.py:651 #: flatcamTools/ToolCutOut.py:756 flatcamTools/ToolDblSided.py:363 msgid "" @@ -2321,14 +2321,14 @@ msgstr "" "[WARNING_NOTCL] Werkzeugdurchmesserwert fehlt oder falsches Format. Fügen " "Sie es hinzu und versuchen Sie es erneut." -#: flatcamEditors/FlatCAMGeoEditor.py:586 +#: flatcamEditors/FlatCAMGeoEditor.py:585 msgid "" "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry." msgstr "" "[WARNING_NOTCL] Überlappungswert fehlt oder falsches Format. Fügen Sie es " "hinzu und versuchen Sie es erneut." -#: flatcamEditors/FlatCAMGeoEditor.py:598 +#: flatcamEditors/FlatCAMGeoEditor.py:597 msgid "" "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and " "retry." @@ -2336,63 +2336,63 @@ msgstr "" "[WARNING_NOTCL] Randabstandswert fehlt oder falsches Format. Fügen Sie es " "hinzu und versuchen Sie es erneut." -#: flatcamEditors/FlatCAMGeoEditor.py:607 -#: flatcamEditors/FlatCAMGeoEditor.py:2721 -#: flatcamEditors/FlatCAMGeoEditor.py:2747 -#: flatcamEditors/FlatCAMGeoEditor.py:2773 +#: flatcamEditors/FlatCAMGeoEditor.py:606 +#: flatcamEditors/FlatCAMGeoEditor.py:2707 +#: flatcamEditors/FlatCAMGeoEditor.py:2733 +#: flatcamEditors/FlatCAMGeoEditor.py:2759 #: flatcamTools/ToolNonCopperClear.py:813 flatcamTools/ToolProperties.py:104 msgid "Tools" msgstr "Werkzeuge" -#: flatcamEditors/FlatCAMGeoEditor.py:618 -#: flatcamEditors/FlatCAMGeoEditor.py:991 -#: flatcamEditors/FlatCAMGrbEditor.py:4365 -#: flatcamEditors/FlatCAMGrbEditor.py:4750 flatcamGUI/FlatCAMGUI.py:659 -#: flatcamGUI/FlatCAMGUI.py:1878 flatcamTools/ToolTransform.py:398 +#: flatcamEditors/FlatCAMGeoEditor.py:617 +#: flatcamEditors/FlatCAMGeoEditor.py:990 +#: flatcamEditors/FlatCAMGrbEditor.py:4509 +#: flatcamEditors/FlatCAMGrbEditor.py:4894 flatcamGUI/FlatCAMGUI.py:659 +#: flatcamGUI/FlatCAMGUI.py:1881 flatcamTools/ToolTransform.py:398 msgid "Transform Tool" msgstr "Werkzeug Umwandeln" -#: flatcamEditors/FlatCAMGeoEditor.py:619 -#: flatcamEditors/FlatCAMGeoEditor.py:680 -#: flatcamEditors/FlatCAMGrbEditor.py:4366 -#: flatcamEditors/FlatCAMGrbEditor.py:4428 flatcamTools/ToolTransform.py:24 +#: flatcamEditors/FlatCAMGeoEditor.py:618 +#: flatcamEditors/FlatCAMGeoEditor.py:679 +#: flatcamEditors/FlatCAMGrbEditor.py:4510 +#: flatcamEditors/FlatCAMGrbEditor.py:4572 flatcamTools/ToolTransform.py:24 #: flatcamTools/ToolTransform.py:82 msgid "Rotate" msgstr "Drehen" -#: flatcamEditors/FlatCAMGeoEditor.py:620 -#: flatcamEditors/FlatCAMGrbEditor.py:4367 flatcamTools/ToolTransform.py:25 +#: flatcamEditors/FlatCAMGeoEditor.py:619 +#: flatcamEditors/FlatCAMGrbEditor.py:4511 flatcamTools/ToolTransform.py:25 msgid "Skew/Shear" msgstr "Neigung/Schere" -#: flatcamEditors/FlatCAMGeoEditor.py:621 -#: flatcamEditors/FlatCAMGrbEditor.py:2313 -#: flatcamEditors/FlatCAMGrbEditor.py:4368 flatcamGUI/FlatCAMGUI.py:722 -#: flatcamGUI/FlatCAMGUI.py:1944 flatcamGUI/ObjectUI.py:100 +#: flatcamEditors/FlatCAMGeoEditor.py:620 +#: flatcamEditors/FlatCAMGrbEditor.py:2455 +#: flatcamEditors/FlatCAMGrbEditor.py:4512 flatcamGUI/FlatCAMGUI.py:723 +#: flatcamGUI/FlatCAMGUI.py:1949 flatcamGUI/ObjectUI.py:100 #: flatcamTools/ToolTransform.py:26 msgid "Scale" msgstr "Skalieren" -#: flatcamEditors/FlatCAMGeoEditor.py:622 -#: flatcamEditors/FlatCAMGrbEditor.py:4369 flatcamTools/ToolTransform.py:27 +#: flatcamEditors/FlatCAMGeoEditor.py:621 +#: flatcamEditors/FlatCAMGrbEditor.py:4513 flatcamTools/ToolTransform.py:27 msgid "Mirror (Flip)" msgstr "Spiegeln (Flip)" -#: flatcamEditors/FlatCAMGeoEditor.py:623 -#: flatcamEditors/FlatCAMGrbEditor.py:4370 flatcamGUI/ObjectUI.py:127 +#: flatcamEditors/FlatCAMGeoEditor.py:622 +#: flatcamEditors/FlatCAMGrbEditor.py:4514 flatcamGUI/ObjectUI.py:127 #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1452 #: flatcamTools/ToolTransform.py:28 msgid "Offset" msgstr "Versatz" -#: flatcamEditors/FlatCAMGeoEditor.py:634 -#: flatcamEditors/FlatCAMGrbEditor.py:4382 +#: flatcamEditors/FlatCAMGeoEditor.py:633 +#: flatcamEditors/FlatCAMGrbEditor.py:4526 #, python-format msgid "Editor %s" msgstr "Editor %s" -#: flatcamEditors/FlatCAMGeoEditor.py:668 -#: flatcamEditors/FlatCAMGrbEditor.py:4416 flatcamTools/ToolTransform.py:70 +#: flatcamEditors/FlatCAMGeoEditor.py:667 +#: flatcamEditors/FlatCAMGrbEditor.py:4560 flatcamTools/ToolTransform.py:70 msgid "" "Angle for Rotation action, in degrees.\n" "Float number between -360 and 359.\n" @@ -2404,8 +2404,8 @@ msgstr "" "Positive Zahlen für CW-Bewegung.\n" "Negative Zahlen für CCW-Bewegung." -#: flatcamEditors/FlatCAMGeoEditor.py:682 -#: flatcamEditors/FlatCAMGrbEditor.py:4430 +#: flatcamEditors/FlatCAMGeoEditor.py:681 +#: flatcamEditors/FlatCAMGrbEditor.py:4574 msgid "" "Rotate the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2415,15 +2415,15 @@ msgstr "" "Der Bezugspunkt ist die Mitte von\n" "der Begrenzungsrahmen für alle ausgewählten Formen." -#: flatcamEditors/FlatCAMGeoEditor.py:705 -#: flatcamEditors/FlatCAMGrbEditor.py:4453 flatcamTools/ToolTransform.py:107 +#: flatcamEditors/FlatCAMGeoEditor.py:704 +#: flatcamEditors/FlatCAMGrbEditor.py:4597 flatcamTools/ToolTransform.py:107 msgid "Angle X:" msgstr "Winkel X:" -#: flatcamEditors/FlatCAMGeoEditor.py:707 -#: flatcamEditors/FlatCAMGeoEditor.py:725 -#: flatcamEditors/FlatCAMGrbEditor.py:4455 -#: flatcamEditors/FlatCAMGrbEditor.py:4473 flatcamTools/ToolTransform.py:109 +#: flatcamEditors/FlatCAMGeoEditor.py:706 +#: flatcamEditors/FlatCAMGeoEditor.py:724 +#: flatcamEditors/FlatCAMGrbEditor.py:4599 +#: flatcamEditors/FlatCAMGrbEditor.py:4617 flatcamTools/ToolTransform.py:109 #: flatcamTools/ToolTransform.py:127 msgid "" "Angle for Skew action, in degrees.\n" @@ -2432,15 +2432,15 @@ msgstr "" "Winkel für die Schräglage in Grad.\n" "Float-Nummer zwischen -360 und 359." -#: flatcamEditors/FlatCAMGeoEditor.py:716 -#: flatcamEditors/FlatCAMGrbEditor.py:4464 flatcamTools/ToolTransform.py:118 +#: flatcamEditors/FlatCAMGeoEditor.py:715 +#: flatcamEditors/FlatCAMGrbEditor.py:4608 flatcamTools/ToolTransform.py:118 msgid "Skew X" msgstr "Neigung X" -#: flatcamEditors/FlatCAMGeoEditor.py:718 -#: flatcamEditors/FlatCAMGeoEditor.py:736 -#: flatcamEditors/FlatCAMGrbEditor.py:4466 -#: flatcamEditors/FlatCAMGrbEditor.py:4484 +#: flatcamEditors/FlatCAMGeoEditor.py:717 +#: flatcamEditors/FlatCAMGeoEditor.py:735 +#: flatcamEditors/FlatCAMGrbEditor.py:4610 +#: flatcamEditors/FlatCAMGrbEditor.py:4628 msgid "" "Skew/shear the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2450,35 +2450,35 @@ msgstr "" "Der Bezugspunkt ist die Mitte von\n" "der Begrenzungsrahmen für alle ausgewählten Formen." -#: flatcamEditors/FlatCAMGeoEditor.py:723 -#: flatcamEditors/FlatCAMGrbEditor.py:4471 flatcamTools/ToolTransform.py:125 +#: flatcamEditors/FlatCAMGeoEditor.py:722 +#: flatcamEditors/FlatCAMGrbEditor.py:4615 flatcamTools/ToolTransform.py:125 msgid "Angle Y:" msgstr "Winkel Y:" -#: flatcamEditors/FlatCAMGeoEditor.py:734 -#: flatcamEditors/FlatCAMGrbEditor.py:4482 flatcamTools/ToolTransform.py:136 +#: flatcamEditors/FlatCAMGeoEditor.py:733 +#: flatcamEditors/FlatCAMGrbEditor.py:4626 flatcamTools/ToolTransform.py:136 msgid "Skew Y" msgstr "Neigung Y" -#: flatcamEditors/FlatCAMGeoEditor.py:762 -#: flatcamEditors/FlatCAMGrbEditor.py:4510 flatcamTools/ToolTransform.py:164 +#: flatcamEditors/FlatCAMGeoEditor.py:761 +#: flatcamEditors/FlatCAMGrbEditor.py:4654 flatcamTools/ToolTransform.py:164 msgid "Factor X:" msgstr "Faktor X:" -#: flatcamEditors/FlatCAMGeoEditor.py:764 -#: flatcamEditors/FlatCAMGrbEditor.py:4512 flatcamTools/ToolTransform.py:166 +#: flatcamEditors/FlatCAMGeoEditor.py:763 +#: flatcamEditors/FlatCAMGrbEditor.py:4656 flatcamTools/ToolTransform.py:166 msgid "Factor for Scale action over X axis." msgstr "Faktor für die Skalierungsaktion über der X-Achse." -#: flatcamEditors/FlatCAMGeoEditor.py:772 -#: flatcamEditors/FlatCAMGrbEditor.py:4520 flatcamTools/ToolTransform.py:174 +#: flatcamEditors/FlatCAMGeoEditor.py:771 +#: flatcamEditors/FlatCAMGrbEditor.py:4664 flatcamTools/ToolTransform.py:174 msgid "Scale X" msgstr "Maßstab X" -#: flatcamEditors/FlatCAMGeoEditor.py:774 -#: flatcamEditors/FlatCAMGeoEditor.py:791 -#: flatcamEditors/FlatCAMGrbEditor.py:4522 -#: flatcamEditors/FlatCAMGrbEditor.py:4539 +#: flatcamEditors/FlatCAMGeoEditor.py:773 +#: flatcamEditors/FlatCAMGeoEditor.py:790 +#: flatcamEditors/FlatCAMGrbEditor.py:4666 +#: flatcamEditors/FlatCAMGrbEditor.py:4683 msgid "" "Scale the selected shape(s).\n" "The point of reference depends on \n" @@ -2488,29 +2488,29 @@ msgstr "" "Der Bezugspunkt hängt von ab\n" "das Kontrollkästchen Skalenreferenz." -#: flatcamEditors/FlatCAMGeoEditor.py:779 -#: flatcamEditors/FlatCAMGrbEditor.py:4527 flatcamTools/ToolTransform.py:181 +#: flatcamEditors/FlatCAMGeoEditor.py:778 +#: flatcamEditors/FlatCAMGrbEditor.py:4671 flatcamTools/ToolTransform.py:181 msgid "Factor Y:" msgstr "Faktor Y:" -#: flatcamEditors/FlatCAMGeoEditor.py:781 -#: flatcamEditors/FlatCAMGrbEditor.py:4529 flatcamTools/ToolTransform.py:183 +#: flatcamEditors/FlatCAMGeoEditor.py:780 +#: flatcamEditors/FlatCAMGrbEditor.py:4673 flatcamTools/ToolTransform.py:183 msgid "Factor for Scale action over Y axis." msgstr "Faktor für die Skalierungsaktion über der Y-Achse." -#: flatcamEditors/FlatCAMGeoEditor.py:789 -#: flatcamEditors/FlatCAMGrbEditor.py:4537 flatcamTools/ToolTransform.py:191 +#: flatcamEditors/FlatCAMGeoEditor.py:788 +#: flatcamEditors/FlatCAMGrbEditor.py:4681 flatcamTools/ToolTransform.py:191 msgid "Scale Y" msgstr "Maßstab Y" -#: flatcamEditors/FlatCAMGeoEditor.py:798 -#: flatcamEditors/FlatCAMGrbEditor.py:4546 flatcamGUI/FlatCAMGUI.py:6270 +#: flatcamEditors/FlatCAMGeoEditor.py:797 +#: flatcamEditors/FlatCAMGrbEditor.py:4690 flatcamGUI/FlatCAMGUI.py:6277 #: flatcamTools/ToolTransform.py:200 msgid "Link" msgstr "Verknüpfung" -#: flatcamEditors/FlatCAMGeoEditor.py:800 -#: flatcamEditors/FlatCAMGrbEditor.py:4548 +#: flatcamEditors/FlatCAMGeoEditor.py:799 +#: flatcamEditors/FlatCAMGrbEditor.py:4692 msgid "" "Scale the selected shape(s)\n" "using the Scale Factor X for both axis." @@ -2518,14 +2518,14 @@ msgstr "" "Skalieren der ausgewählten Form (en)\n" "Verwenden des Skalierungsfaktors X für beide Achsen." -#: flatcamEditors/FlatCAMGeoEditor.py:806 -#: flatcamEditors/FlatCAMGrbEditor.py:4554 flatcamGUI/FlatCAMGUI.py:6278 +#: flatcamEditors/FlatCAMGeoEditor.py:805 +#: flatcamEditors/FlatCAMGrbEditor.py:4698 flatcamGUI/FlatCAMGUI.py:6285 #: flatcamTools/ToolTransform.py:208 msgid "Scale Reference" msgstr "Skalenreferenz" -#: flatcamEditors/FlatCAMGeoEditor.py:808 -#: flatcamEditors/FlatCAMGrbEditor.py:4556 +#: flatcamEditors/FlatCAMGeoEditor.py:807 +#: flatcamEditors/FlatCAMGrbEditor.py:4700 msgid "" "Scale the selected shape(s)\n" "using the origin reference when checked,\n" @@ -2537,25 +2537,25 @@ msgstr "" "und die Mitte der größten Begrenzungsbox\n" "der ausgewählten Formen, wenn nicht markiert." -#: flatcamEditors/FlatCAMGeoEditor.py:836 -#: flatcamEditors/FlatCAMGrbEditor.py:4585 flatcamTools/ToolTransform.py:238 +#: flatcamEditors/FlatCAMGeoEditor.py:835 +#: flatcamEditors/FlatCAMGrbEditor.py:4729 flatcamTools/ToolTransform.py:238 msgid "Value X:" msgstr "Wert X:" -#: flatcamEditors/FlatCAMGeoEditor.py:838 -#: flatcamEditors/FlatCAMGrbEditor.py:4587 flatcamTools/ToolTransform.py:240 +#: flatcamEditors/FlatCAMGeoEditor.py:837 +#: flatcamEditors/FlatCAMGrbEditor.py:4731 flatcamTools/ToolTransform.py:240 msgid "Value for Offset action on X axis." msgstr "Wert für die Offset-Aktion auf der X-Achse." -#: flatcamEditors/FlatCAMGeoEditor.py:846 -#: flatcamEditors/FlatCAMGrbEditor.py:4595 flatcamTools/ToolTransform.py:248 +#: flatcamEditors/FlatCAMGeoEditor.py:845 +#: flatcamEditors/FlatCAMGrbEditor.py:4739 flatcamTools/ToolTransform.py:248 msgid "Offset X" msgstr "Versatz X" -#: flatcamEditors/FlatCAMGeoEditor.py:848 -#: flatcamEditors/FlatCAMGeoEditor.py:866 -#: flatcamEditors/FlatCAMGrbEditor.py:4597 -#: flatcamEditors/FlatCAMGrbEditor.py:4615 +#: flatcamEditors/FlatCAMGeoEditor.py:847 +#: flatcamEditors/FlatCAMGeoEditor.py:865 +#: flatcamEditors/FlatCAMGrbEditor.py:4741 +#: flatcamEditors/FlatCAMGrbEditor.py:4759 msgid "" "Offset the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2565,30 +2565,30 @@ msgstr "" "Der Bezugspunkt ist die Mitte von\n" "der Begrenzungsrahmen für alle ausgewählten Formen.\n" -#: flatcamEditors/FlatCAMGeoEditor.py:854 -#: flatcamEditors/FlatCAMGrbEditor.py:4603 flatcamTools/ToolTransform.py:255 +#: flatcamEditors/FlatCAMGeoEditor.py:853 +#: flatcamEditors/FlatCAMGrbEditor.py:4747 flatcamTools/ToolTransform.py:255 msgid "Value Y:" msgstr "Wert Y:" -#: flatcamEditors/FlatCAMGeoEditor.py:856 -#: flatcamEditors/FlatCAMGrbEditor.py:4605 flatcamTools/ToolTransform.py:257 +#: flatcamEditors/FlatCAMGeoEditor.py:855 +#: flatcamEditors/FlatCAMGrbEditor.py:4749 flatcamTools/ToolTransform.py:257 msgid "Value for Offset action on Y axis." msgstr "Wert für die Offset-Aktion auf der Y-Achse." -#: flatcamEditors/FlatCAMGeoEditor.py:864 -#: flatcamEditors/FlatCAMGrbEditor.py:4613 flatcamTools/ToolTransform.py:265 +#: flatcamEditors/FlatCAMGeoEditor.py:863 +#: flatcamEditors/FlatCAMGrbEditor.py:4757 flatcamTools/ToolTransform.py:265 msgid "Offset Y" msgstr "Versatz Y" -#: flatcamEditors/FlatCAMGeoEditor.py:895 -#: flatcamEditors/FlatCAMGrbEditor.py:4644 flatcamTools/ToolTransform.py:295 +#: flatcamEditors/FlatCAMGeoEditor.py:894 +#: flatcamEditors/FlatCAMGrbEditor.py:4788 flatcamTools/ToolTransform.py:295 msgid "Flip on X" msgstr "Flip auf X" -#: flatcamEditors/FlatCAMGeoEditor.py:897 -#: flatcamEditors/FlatCAMGeoEditor.py:905 -#: flatcamEditors/FlatCAMGrbEditor.py:4646 -#: flatcamEditors/FlatCAMGrbEditor.py:4654 +#: flatcamEditors/FlatCAMGeoEditor.py:896 +#: flatcamEditors/FlatCAMGeoEditor.py:904 +#: flatcamEditors/FlatCAMGrbEditor.py:4790 +#: flatcamEditors/FlatCAMGrbEditor.py:4798 msgid "" "Flip the selected shape(s) over the X axis.\n" "Does not create a new shape." @@ -2596,18 +2596,18 @@ msgstr "" "Kippen Sie die ausgewählte Form (en) über die X-Achse.\n" "Erzeugt keine neue Form." -#: flatcamEditors/FlatCAMGeoEditor.py:903 -#: flatcamEditors/FlatCAMGrbEditor.py:4652 flatcamTools/ToolTransform.py:303 +#: flatcamEditors/FlatCAMGeoEditor.py:902 +#: flatcamEditors/FlatCAMGrbEditor.py:4796 flatcamTools/ToolTransform.py:303 msgid "Flip on Y" msgstr "Flip auf Y" -#: flatcamEditors/FlatCAMGeoEditor.py:912 -#: flatcamEditors/FlatCAMGrbEditor.py:4661 flatcamTools/ToolTransform.py:312 +#: flatcamEditors/FlatCAMGeoEditor.py:911 +#: flatcamEditors/FlatCAMGrbEditor.py:4805 flatcamTools/ToolTransform.py:312 msgid "Ref Pt" msgstr "Ref. Pt" -#: flatcamEditors/FlatCAMGeoEditor.py:914 -#: flatcamEditors/FlatCAMGrbEditor.py:4663 +#: flatcamEditors/FlatCAMGeoEditor.py:913 +#: flatcamEditors/FlatCAMGrbEditor.py:4807 msgid "" "Flip the selected shape(s)\n" "around the point in Point Entry Field.\n" @@ -2630,13 +2630,13 @@ msgstr "" "Oder geben Sie die Koordinaten im Format (x, y) in ein\n" "Punkt-Eingabefeld und klicken Sie auf X (Y) drehen" -#: flatcamEditors/FlatCAMGeoEditor.py:926 -#: flatcamEditors/FlatCAMGrbEditor.py:4675 flatcamTools/ToolTransform.py:325 +#: flatcamEditors/FlatCAMGeoEditor.py:925 +#: flatcamEditors/FlatCAMGrbEditor.py:4819 flatcamTools/ToolTransform.py:325 msgid "Point:" msgstr "Punkt:" -#: flatcamEditors/FlatCAMGeoEditor.py:928 -#: flatcamEditors/FlatCAMGrbEditor.py:4677 +#: flatcamEditors/FlatCAMGeoEditor.py:927 +#: flatcamEditors/FlatCAMGrbEditor.py:4821 msgid "" "Coordinates in format (x, y) used as reference for mirroring.\n" "The 'x' in (x, y) will be used when using Flip on X and\n" @@ -2647,8 +2647,8 @@ msgstr "" "Das 'x' in (x, y) wird verwendet, wenn Sie bei X und\n" "Das 'y' in (x, y) wird verwendet, wenn Flip auf Y verwendet wird." -#: flatcamEditors/FlatCAMGeoEditor.py:940 -#: flatcamEditors/FlatCAMGrbEditor.py:4689 flatcamTools/ToolTransform.py:339 +#: flatcamEditors/FlatCAMGeoEditor.py:939 +#: flatcamEditors/FlatCAMGrbEditor.py:4833 flatcamTools/ToolTransform.py:339 msgid "" "The point coordinates can be captured by\n" "left click on canvas together with pressing\n" @@ -2659,396 +2659,396 @@ msgstr "" "Shift Taste. Klicken Sie dann auf die Schaltfläche Hinzufügen, um sie " "einzufügen." -#: flatcamEditors/FlatCAMGeoEditor.py:1055 -#: flatcamEditors/FlatCAMGrbEditor.py:4814 +#: flatcamEditors/FlatCAMGeoEditor.py:1054 +#: flatcamEditors/FlatCAMGrbEditor.py:4958 msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected." msgstr "[WARNING_NOTCL] Transformation abgebrochen Keine Form ausgewählt" -#: flatcamEditors/FlatCAMGeoEditor.py:1076 -#: flatcamEditors/FlatCAMGrbEditor.py:4834 flatcamTools/ToolTransform.py:468 +#: flatcamEditors/FlatCAMGeoEditor.py:1075 +#: flatcamEditors/FlatCAMGrbEditor.py:4978 flatcamTools/ToolTransform.py:468 msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number." msgstr "" "[ERROR_NOTCL] Falsches Werteformat für Drehen eingegeben, verwenden Sie eine " "Zahl." -#: flatcamEditors/FlatCAMGeoEditor.py:1113 -#: flatcamEditors/FlatCAMGrbEditor.py:4877 flatcamTools/ToolTransform.py:502 +#: flatcamEditors/FlatCAMGeoEditor.py:1112 +#: flatcamEditors/FlatCAMGrbEditor.py:5021 flatcamTools/ToolTransform.py:502 msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number." msgstr "" "[ERROR_NOTCL] Falsches Werteformat für Skew X eingegeben, verwenden Sie eine " "Zahl." -#: flatcamEditors/FlatCAMGeoEditor.py:1134 -#: flatcamEditors/FlatCAMGrbEditor.py:4904 flatcamTools/ToolTransform.py:520 +#: flatcamEditors/FlatCAMGeoEditor.py:1133 +#: flatcamEditors/FlatCAMGrbEditor.py:5048 flatcamTools/ToolTransform.py:520 msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number." msgstr "" "[ERROR_NOTCL] Falsches Werteformat für Skew Y eingegeben, verwenden Sie eine " "Zahl." -#: flatcamEditors/FlatCAMGeoEditor.py:1155 -#: flatcamEditors/FlatCAMGrbEditor.py:4931 flatcamTools/ToolTransform.py:538 +#: flatcamEditors/FlatCAMGeoEditor.py:1154 +#: flatcamEditors/FlatCAMGrbEditor.py:5075 flatcamTools/ToolTransform.py:538 msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number." msgstr "" "[ERROR_NOTCL] Falsches Wertformat für Waage X eingegeben, verwenden Sie eine " "Zahl." -#: flatcamEditors/FlatCAMGeoEditor.py:1192 -#: flatcamEditors/FlatCAMGrbEditor.py:4972 flatcamTools/ToolTransform.py:572 +#: flatcamEditors/FlatCAMGeoEditor.py:1191 +#: flatcamEditors/FlatCAMGrbEditor.py:5116 flatcamTools/ToolTransform.py:572 msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number." msgstr "" "[ERROR_NOTCL] Falsches Werteformat für Skala Y eingegeben, verwenden Sie " "eine Zahl." -#: flatcamEditors/FlatCAMGeoEditor.py:1224 -#: flatcamEditors/FlatCAMGrbEditor.py:5010 flatcamTools/ToolTransform.py:601 +#: flatcamEditors/FlatCAMGeoEditor.py:1223 +#: flatcamEditors/FlatCAMGrbEditor.py:5154 flatcamTools/ToolTransform.py:601 msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number." msgstr "" "[ERROR_NOTCL] Falsches Wertformat für Offset X eingegeben, verwenden Sie " "eine Zahl." -#: flatcamEditors/FlatCAMGeoEditor.py:1245 -#: flatcamEditors/FlatCAMGrbEditor.py:5036 flatcamTools/ToolTransform.py:619 +#: flatcamEditors/FlatCAMGeoEditor.py:1244 +#: flatcamEditors/FlatCAMGrbEditor.py:5180 flatcamTools/ToolTransform.py:619 msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number." msgstr "" "[ERROR_NOTCL] Falsches Wertformat für Offset Y eingegeben, verwenden Sie " "eine Zahl." -#: flatcamEditors/FlatCAMGeoEditor.py:1263 -#: flatcamEditors/FlatCAMGrbEditor.py:5059 +#: flatcamEditors/FlatCAMGeoEditor.py:1262 +#: flatcamEditors/FlatCAMGrbEditor.py:5203 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!" msgstr "" "[WARNING_NOTCL] Keine Form ausgewählt Bitte wählen Sie eine Form zum Drehen " "aus!" -#: flatcamEditors/FlatCAMGeoEditor.py:1266 -#: flatcamEditors/FlatCAMGrbEditor.py:5062 flatcamTools/ToolTransform.py:640 +#: flatcamEditors/FlatCAMGeoEditor.py:1265 +#: flatcamEditors/FlatCAMGrbEditor.py:5206 flatcamTools/ToolTransform.py:640 msgid "Appying Rotate" msgstr "Anwenden Drehen" -#: flatcamEditors/FlatCAMGeoEditor.py:1294 -#: flatcamEditors/FlatCAMGrbEditor.py:5093 +#: flatcamEditors/FlatCAMGeoEditor.py:1293 +#: flatcamEditors/FlatCAMGrbEditor.py:5237 msgid "[success] Done. Rotate completed." msgstr "[success] Erledigt. Drehen abgeschlossen." -#: flatcamEditors/FlatCAMGeoEditor.py:1310 -#: flatcamEditors/FlatCAMGrbEditor.py:5112 +#: flatcamEditors/FlatCAMGeoEditor.py:1309 +#: flatcamEditors/FlatCAMGrbEditor.py:5256 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!" msgstr "" "[WARNING_NOTCL] Keine Form ausgewählt Bitte wähle eine Form zum Umdrehen!" -#: flatcamEditors/FlatCAMGeoEditor.py:1313 -#: flatcamEditors/FlatCAMGrbEditor.py:5115 flatcamTools/ToolTransform.py:691 +#: flatcamEditors/FlatCAMGeoEditor.py:1312 +#: flatcamEditors/FlatCAMGrbEditor.py:5259 flatcamTools/ToolTransform.py:691 msgid "Applying Flip" msgstr "Flip anwenden" -#: flatcamEditors/FlatCAMGeoEditor.py:1343 -#: flatcamEditors/FlatCAMGrbEditor.py:5152 flatcamTools/ToolTransform.py:733 +#: flatcamEditors/FlatCAMGeoEditor.py:1342 +#: flatcamEditors/FlatCAMGrbEditor.py:5296 flatcamTools/ToolTransform.py:733 msgid "[success] Flip on the Y axis done ..." msgstr "[success] Flip auf der Y-Achse erledigt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1346 -#: flatcamEditors/FlatCAMGrbEditor.py:5160 flatcamTools/ToolTransform.py:742 +#: flatcamEditors/FlatCAMGeoEditor.py:1345 +#: flatcamEditors/FlatCAMGrbEditor.py:5304 flatcamTools/ToolTransform.py:742 msgid "[success] Flip on the X axis done ..." msgstr "[success] Flip auf der X-Achse erledigt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1365 -#: flatcamEditors/FlatCAMGrbEditor.py:5180 +#: flatcamEditors/FlatCAMGeoEditor.py:1364 +#: flatcamEditors/FlatCAMGrbEditor.py:5324 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!" msgstr "" "[WARNING_NOTCL] Keine Form ausgewählt. Bitte wählen Sie eine Form zum " "Scheren / Schrägstellen!" -#: flatcamEditors/FlatCAMGeoEditor.py:1368 -#: flatcamEditors/FlatCAMGrbEditor.py:5183 flatcamTools/ToolTransform.py:760 +#: flatcamEditors/FlatCAMGeoEditor.py:1367 +#: flatcamEditors/FlatCAMGrbEditor.py:5327 flatcamTools/ToolTransform.py:760 msgid "Applying Skew" msgstr "Anwenden von Skew" -#: flatcamEditors/FlatCAMGeoEditor.py:1393 -#: flatcamEditors/FlatCAMGrbEditor.py:5216 flatcamTools/ToolTransform.py:791 +#: flatcamEditors/FlatCAMGeoEditor.py:1392 +#: flatcamEditors/FlatCAMGrbEditor.py:5360 flatcamTools/ToolTransform.py:791 #, python-format msgid "[success] Skew on the %s axis done ..." msgstr "[success] Neigung auf der %s Achse abgeschlossen ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1397 -#: flatcamEditors/FlatCAMGrbEditor.py:5220 flatcamTools/ToolTransform.py:795 +#: flatcamEditors/FlatCAMGeoEditor.py:1396 +#: flatcamEditors/FlatCAMGrbEditor.py:5364 flatcamTools/ToolTransform.py:795 #, python-format msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed." msgstr "" "[ERROR_NOTCL] Aufgrund von %s wurde die Neigung-Aktion nicht ausgeführt." -#: flatcamEditors/FlatCAMGeoEditor.py:1408 -#: flatcamEditors/FlatCAMGrbEditor.py:5239 +#: flatcamEditors/FlatCAMGeoEditor.py:1407 +#: flatcamEditors/FlatCAMGrbEditor.py:5383 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!" msgstr "" "[WARNING_NOTCL] Keine Form ausgewählt. Bitte wählen Sie eine zu skalierende " "Form!" -#: flatcamEditors/FlatCAMGeoEditor.py:1411 -#: flatcamEditors/FlatCAMGrbEditor.py:5242 flatcamTools/ToolTransform.py:809 +#: flatcamEditors/FlatCAMGeoEditor.py:1410 +#: flatcamEditors/FlatCAMGrbEditor.py:5386 flatcamTools/ToolTransform.py:809 msgid "Applying Scale" msgstr "Maßstab anwenden" -#: flatcamEditors/FlatCAMGeoEditor.py:1444 -#: flatcamEditors/FlatCAMGrbEditor.py:5278 flatcamTools/ToolTransform.py:848 +#: flatcamEditors/FlatCAMGeoEditor.py:1443 +#: flatcamEditors/FlatCAMGrbEditor.py:5422 flatcamTools/ToolTransform.py:848 #, python-format msgid "[success] Scale on the %s axis done ..." msgstr "[success] Skalieren auf der %s Achse fertig ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1447 -#: flatcamEditors/FlatCAMGrbEditor.py:5281 flatcamTools/ToolTransform.py:851 +#: flatcamEditors/FlatCAMGeoEditor.py:1446 +#: flatcamEditors/FlatCAMGrbEditor.py:5425 flatcamTools/ToolTransform.py:851 #, python-format msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed." msgstr "" "[ERROR_NOTCL] Aufgrund von %s wurde die Skalieren Aktion nicht ausgeführt." -#: flatcamEditors/FlatCAMGeoEditor.py:1456 -#: flatcamEditors/FlatCAMGrbEditor.py:5294 +#: flatcamEditors/FlatCAMGeoEditor.py:1455 +#: flatcamEditors/FlatCAMGrbEditor.py:5438 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!" msgstr "" "[WARNING_NOTCL] Keine Form ausgewählt. Bitte wählen Sie eine Form zum " "Versetzen!" -#: flatcamEditors/FlatCAMGeoEditor.py:1459 -#: flatcamEditors/FlatCAMGrbEditor.py:5297 flatcamTools/ToolTransform.py:861 +#: flatcamEditors/FlatCAMGeoEditor.py:1458 +#: flatcamEditors/FlatCAMGrbEditor.py:5441 flatcamTools/ToolTransform.py:861 msgid "Applying Offset" msgstr "Offsetdruck anwenden" -#: flatcamEditors/FlatCAMGeoEditor.py:1483 -#: flatcamEditors/FlatCAMGrbEditor.py:5318 flatcamTools/ToolTransform.py:880 +#: flatcamEditors/FlatCAMGeoEditor.py:1469 +#: flatcamEditors/FlatCAMGrbEditor.py:5462 flatcamTools/ToolTransform.py:880 #, python-format msgid "[success] Offset on the %s axis done ..." msgstr "[success] Offsetdruck auf der %s Achse fertiggestellt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1487 -#: flatcamEditors/FlatCAMGrbEditor.py:5322 flatcamTools/ToolTransform.py:884 +#: flatcamEditors/FlatCAMGeoEditor.py:1473 +#: flatcamEditors/FlatCAMGrbEditor.py:5466 flatcamTools/ToolTransform.py:884 #, python-format msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed." msgstr "" "[ERROR_NOTCL] Aufgrund von %s wurde die Offsetdruck Aktion nicht ausgeführt." -#: flatcamEditors/FlatCAMGeoEditor.py:1491 -#: flatcamEditors/FlatCAMGrbEditor.py:5326 +#: flatcamEditors/FlatCAMGeoEditor.py:1477 +#: flatcamEditors/FlatCAMGrbEditor.py:5470 msgid "Rotate ..." msgstr "Drehen ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1492 -#: flatcamEditors/FlatCAMGeoEditor.py:1549 -#: flatcamEditors/FlatCAMGeoEditor.py:1566 -#: flatcamEditors/FlatCAMGrbEditor.py:5327 -#: flatcamEditors/FlatCAMGrbEditor.py:5384 -#: flatcamEditors/FlatCAMGrbEditor.py:5401 +#: flatcamEditors/FlatCAMGeoEditor.py:1478 +#: flatcamEditors/FlatCAMGeoEditor.py:1535 +#: flatcamEditors/FlatCAMGeoEditor.py:1552 +#: flatcamEditors/FlatCAMGrbEditor.py:5471 +#: flatcamEditors/FlatCAMGrbEditor.py:5528 +#: flatcamEditors/FlatCAMGrbEditor.py:5545 msgid "Enter an Angle Value (degrees):" msgstr "Geben Sie einen Winkelwert (Grad) ein:" -#: flatcamEditors/FlatCAMGeoEditor.py:1501 -#: flatcamEditors/FlatCAMGrbEditor.py:5336 +#: flatcamEditors/FlatCAMGeoEditor.py:1487 +#: flatcamEditors/FlatCAMGrbEditor.py:5480 msgid "[success] Geometry shape rotate done..." msgstr "[success] Geometrieform drehen fertig ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1506 -#: flatcamEditors/FlatCAMGrbEditor.py:5341 +#: flatcamEditors/FlatCAMGeoEditor.py:1492 +#: flatcamEditors/FlatCAMGrbEditor.py:5485 msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..." msgstr "[WARNING_NOTCL] Geometrieform drehen abgebrochen ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1512 -#: flatcamEditors/FlatCAMGrbEditor.py:5347 +#: flatcamEditors/FlatCAMGeoEditor.py:1498 +#: flatcamEditors/FlatCAMGrbEditor.py:5491 msgid "Offset on X axis ..." msgstr "Versatz auf der X-Achse ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1513 -#: flatcamEditors/FlatCAMGeoEditor.py:1532 -#: flatcamEditors/FlatCAMGrbEditor.py:5348 -#: flatcamEditors/FlatCAMGrbEditor.py:5367 +#: flatcamEditors/FlatCAMGeoEditor.py:1499 +#: flatcamEditors/FlatCAMGeoEditor.py:1518 +#: flatcamEditors/FlatCAMGrbEditor.py:5492 +#: flatcamEditors/FlatCAMGrbEditor.py:5511 #, python-format msgid "Enter a distance Value (%s):" msgstr "Geben Sie einen Abstand ein (%s):" -#: flatcamEditors/FlatCAMGeoEditor.py:1522 -#: flatcamEditors/FlatCAMGrbEditor.py:5357 +#: flatcamEditors/FlatCAMGeoEditor.py:1508 +#: flatcamEditors/FlatCAMGrbEditor.py:5501 msgid "[success] Geometry shape offset on X axis done..." msgstr "[success] Geometrieformversatz auf der X-Achse erfolgt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1526 -#: flatcamEditors/FlatCAMGrbEditor.py:5361 +#: flatcamEditors/FlatCAMGeoEditor.py:1512 +#: flatcamEditors/FlatCAMGrbEditor.py:5505 msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..." msgstr "[WARNING_NOTCL] Geometrieformversatz X abgebrochen ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1531 -#: flatcamEditors/FlatCAMGrbEditor.py:5366 +#: flatcamEditors/FlatCAMGeoEditor.py:1517 +#: flatcamEditors/FlatCAMGrbEditor.py:5510 msgid "Offset on Y axis ..." msgstr "Versatz auf der Y-Achse ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1541 -#: flatcamEditors/FlatCAMGrbEditor.py:5376 +#: flatcamEditors/FlatCAMGeoEditor.py:1527 +#: flatcamEditors/FlatCAMGrbEditor.py:5520 msgid "[success] Geometry shape offset on Y axis done..." msgstr "[success] Geometrieformversatz auf Y-Achse erfolgt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1545 -#: flatcamEditors/FlatCAMGrbEditor.py:5380 +#: flatcamEditors/FlatCAMGeoEditor.py:1531 +#: flatcamEditors/FlatCAMGrbEditor.py:5524 msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..." msgstr "[WARNING_NOTCL] Geometrieformversatz Y abgebrochen ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1548 -#: flatcamEditors/FlatCAMGrbEditor.py:5383 +#: flatcamEditors/FlatCAMGeoEditor.py:1534 +#: flatcamEditors/FlatCAMGrbEditor.py:5527 msgid "Skew on X axis ..." msgstr "Neigung auf der X-Achse ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1558 -#: flatcamEditors/FlatCAMGrbEditor.py:5393 +#: flatcamEditors/FlatCAMGeoEditor.py:1544 +#: flatcamEditors/FlatCAMGrbEditor.py:5537 msgid "[success] Geometry shape skew on X axis done..." msgstr "[success] Geometrieformversatz auf X-Achse ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1562 -#: flatcamEditors/FlatCAMGrbEditor.py:5397 +#: flatcamEditors/FlatCAMGeoEditor.py:1548 +#: flatcamEditors/FlatCAMGrbEditor.py:5541 msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..." msgstr "[WARNING_NOTCL] Geometrieformversatz X abgebrochen ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1565 -#: flatcamEditors/FlatCAMGrbEditor.py:5400 +#: flatcamEditors/FlatCAMGeoEditor.py:1551 +#: flatcamEditors/FlatCAMGrbEditor.py:5544 msgid "Skew on Y axis ..." msgstr "Neigung auf der Y-Achse ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1575 -#: flatcamEditors/FlatCAMGrbEditor.py:5410 +#: flatcamEditors/FlatCAMGeoEditor.py:1561 +#: flatcamEditors/FlatCAMGrbEditor.py:5554 msgid "[success] Geometry shape skew on Y axis done..." msgstr "[success] Geometrieformversatz auf Y-Achse erfolgt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1579 -#: flatcamEditors/FlatCAMGrbEditor.py:5414 +#: flatcamEditors/FlatCAMGeoEditor.py:1565 +#: flatcamEditors/FlatCAMGrbEditor.py:5558 msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..." msgstr "[WARNING_NOTCL] Geometrieformversatz Y abgebrochen ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1943 -#: flatcamEditors/FlatCAMGeoEditor.py:1994 -#: flatcamEditors/FlatCAMGrbEditor.py:1351 -#: flatcamEditors/FlatCAMGrbEditor.py:1420 +#: flatcamEditors/FlatCAMGeoEditor.py:1929 +#: flatcamEditors/FlatCAMGeoEditor.py:1980 +#: flatcamEditors/FlatCAMGrbEditor.py:1354 +#: flatcamEditors/FlatCAMGrbEditor.py:1423 msgid "Click on Center point ..." msgstr "Klicken Sie auf Mittelpunkt." -#: flatcamEditors/FlatCAMGeoEditor.py:1950 -#: flatcamEditors/FlatCAMGrbEditor.py:1359 +#: flatcamEditors/FlatCAMGeoEditor.py:1936 +#: flatcamEditors/FlatCAMGrbEditor.py:1362 msgid "Click on Perimeter point to complete ..." msgstr "Klicken Sie auf Umfangspunkt, um den Vorgang abzuschließen." -#: flatcamEditors/FlatCAMGeoEditor.py:1979 +#: flatcamEditors/FlatCAMGeoEditor.py:1965 msgid "[success] Done. Adding Circle completed." msgstr "[success] Erledigt. Hinzufügen des Kreises abgeschlossen." -#: flatcamEditors/FlatCAMGeoEditor.py:2014 -#: flatcamEditors/FlatCAMGrbEditor.py:1445 +#: flatcamEditors/FlatCAMGeoEditor.py:2000 +#: flatcamEditors/FlatCAMGrbEditor.py:1448 msgid "Click on Start point ..." msgstr "Klicken Sie auf Startpunkt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2016 -#: flatcamEditors/FlatCAMGrbEditor.py:1447 +#: flatcamEditors/FlatCAMGeoEditor.py:2002 +#: flatcamEditors/FlatCAMGrbEditor.py:1450 msgid "Click on Point3 ..." msgstr "Klicken Sie auf Punkt3 ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2018 -#: flatcamEditors/FlatCAMGrbEditor.py:1449 +#: flatcamEditors/FlatCAMGeoEditor.py:2004 +#: flatcamEditors/FlatCAMGrbEditor.py:1452 msgid "Click on Stop point ..." msgstr "Klicken Sie auf Haltepunkt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2023 -#: flatcamEditors/FlatCAMGrbEditor.py:1454 +#: flatcamEditors/FlatCAMGeoEditor.py:2009 +#: flatcamEditors/FlatCAMGrbEditor.py:1457 msgid "Click on Stop point to complete ..." msgstr "Klicken Sie auf Stopp, um den Vorgang abzuschließen." -#: flatcamEditors/FlatCAMGeoEditor.py:2025 -#: flatcamEditors/FlatCAMGrbEditor.py:1456 +#: flatcamEditors/FlatCAMGeoEditor.py:2011 +#: flatcamEditors/FlatCAMGrbEditor.py:1459 msgid "Click on Point2 to complete ..." msgstr "Klicken Sie auf Punkt2, um den Vorgang abzuschließen." -#: flatcamEditors/FlatCAMGeoEditor.py:2027 -#: flatcamEditors/FlatCAMGrbEditor.py:1458 +#: flatcamEditors/FlatCAMGeoEditor.py:2013 +#: flatcamEditors/FlatCAMGrbEditor.py:1461 msgid "Click on Center point to complete ..." msgstr "Klicken Sie auf Mittelpunkt, um den Vorgang abzuschließen." -#: flatcamEditors/FlatCAMGeoEditor.py:2039 -#: flatcamEditors/FlatCAMGrbEditor.py:1470 +#: flatcamEditors/FlatCAMGeoEditor.py:2025 +#: flatcamEditors/FlatCAMGrbEditor.py:1473 #, python-format msgid "Direction: %s" msgstr "Richtung: %s" -#: flatcamEditors/FlatCAMGeoEditor.py:2049 -#: flatcamEditors/FlatCAMGrbEditor.py:1480 +#: flatcamEditors/FlatCAMGeoEditor.py:2035 +#: flatcamEditors/FlatCAMGrbEditor.py:1483 msgid "Mode: Start -> Stop -> Center. Click on Start point ..." msgstr "Modus: Start -> Stopp -> Zentrieren. Klicken Sie auf Startpunkt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2052 -#: flatcamEditors/FlatCAMGrbEditor.py:1483 +#: flatcamEditors/FlatCAMGeoEditor.py:2038 +#: flatcamEditors/FlatCAMGrbEditor.py:1486 msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..." msgstr "Modus: Punkt 1 -> Punkt 3 -> Punkt 2. Klicken Sie auf Punkt1 ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2055 -#: flatcamEditors/FlatCAMGrbEditor.py:1486 +#: flatcamEditors/FlatCAMGeoEditor.py:2041 +#: flatcamEditors/FlatCAMGrbEditor.py:1489 msgid "Mode: Center -> Start -> Stop. Click on Center point ..." msgstr "Modus: Mitte -> Start -> Stopp. Klicken Sie auf Mittelpunkt." -#: flatcamEditors/FlatCAMGeoEditor.py:2193 +#: flatcamEditors/FlatCAMGeoEditor.py:2179 msgid "[success] Done. Arc completed." msgstr "[success] Erledigt. Bogen abgeschlossen" -#: flatcamEditors/FlatCAMGeoEditor.py:2212 -#: flatcamEditors/FlatCAMGeoEditor.py:2265 -#: flatcamEditors/FlatCAMGeoEditor.py:2640 +#: flatcamEditors/FlatCAMGeoEditor.py:2198 +#: flatcamEditors/FlatCAMGeoEditor.py:2251 +#: flatcamEditors/FlatCAMGeoEditor.py:2626 msgid "Click on 1st corner ..." msgstr "Klicken Sie auf die 1. Ecke ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2218 +#: flatcamEditors/FlatCAMGeoEditor.py:2204 msgid "Click on opposite corner to complete ..." msgstr "" "Klicken Sie auf die gegenüberliegende Ecke, um den Vorgang abzuschließen." -#: flatcamEditors/FlatCAMGeoEditor.py:2246 +#: flatcamEditors/FlatCAMGeoEditor.py:2232 msgid "[success] Done. Rectangle completed." msgstr "[success] Erledigt. Rechteck fertiggestellt." -#: flatcamEditors/FlatCAMGeoEditor.py:2272 +#: flatcamEditors/FlatCAMGeoEditor.py:2258 msgid "Click on next Point or click right mouse button to complete ..." msgstr "" "Klicken Sie auf den nächsten Punkt oder klicken Sie mit der rechten " "Maustaste, um den Vorgang abzuschließen." -#: flatcamEditors/FlatCAMGeoEditor.py:2300 +#: flatcamEditors/FlatCAMGeoEditor.py:2286 msgid "[success] Done. Polygon completed." msgstr "[success] Erledigt. Polygon abgeschlossen" -#: flatcamEditors/FlatCAMGeoEditor.py:2310 -#: flatcamEditors/FlatCAMGeoEditor.py:2356 -#: flatcamEditors/FlatCAMGrbEditor.py:1055 -#: flatcamEditors/FlatCAMGrbEditor.py:1249 +#: flatcamEditors/FlatCAMGeoEditor.py:2296 +#: flatcamEditors/FlatCAMGeoEditor.py:2342 +#: flatcamEditors/FlatCAMGrbEditor.py:1058 +#: flatcamEditors/FlatCAMGrbEditor.py:1252 msgid "Backtracked one point ..." msgstr "Einen Punkt zurückverfolgt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2338 +#: flatcamEditors/FlatCAMGeoEditor.py:2324 msgid "[success] Done. Path completed." msgstr "[success] Erledigt. Pfad abgeschlossen" -#: flatcamEditors/FlatCAMGeoEditor.py:2461 +#: flatcamEditors/FlatCAMGeoEditor.py:2447 msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..." msgstr "" "[WARNING_NOTCL] Bewegen: Keine Form ausgewählt. Wähle eine Form zum Bewegen " "aus ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2463 -#: flatcamEditors/FlatCAMGeoEditor.py:2475 +#: flatcamEditors/FlatCAMGeoEditor.py:2449 +#: flatcamEditors/FlatCAMGeoEditor.py:2461 msgid " MOVE: Click on reference point ..." msgstr " Bewegen: Referenzpunkt anklicken ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2466 +#: flatcamEditors/FlatCAMGeoEditor.py:2452 msgid " Click on destination point ..." msgstr " Klicken Sie auf den Zielpunkt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2500 +#: flatcamEditors/FlatCAMGeoEditor.py:2486 msgid "[success] Done. Geometry(s) Move completed." msgstr "[success] Erledigt. Geometrie(n) Bewegung abgeschlossen." -#: flatcamEditors/FlatCAMGeoEditor.py:2620 +#: flatcamEditors/FlatCAMGeoEditor.py:2606 msgid "[success] Done. Geometry(s) Copy completed." msgstr "[success] Erledigt. Geometrie(n) Kopieren abgeschlossen." -#: flatcamEditors/FlatCAMGeoEditor.py:2654 +#: flatcamEditors/FlatCAMGeoEditor.py:2640 #, python-format msgid "" "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are " @@ -3057,62 +3057,84 @@ msgstr "" "[ERROR] Schrift wird nicht unterstützt. Es werden nur Regular, Bold, Italic " "und BoldItalic unterstützt. Error: %s" -#: flatcamEditors/FlatCAMGeoEditor.py:2664 +#: flatcamEditors/FlatCAMGeoEditor.py:2650 msgid "[success] Done. Adding Text completed." msgstr "[success] Erledigt. Hinzufügen von Text abgeschlossen" -#: flatcamEditors/FlatCAMGeoEditor.py:2692 +#: flatcamEditors/FlatCAMGeoEditor.py:2678 msgid "Create buffer geometry ..." msgstr "Puffergeometrie erstellen ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2703 -#: flatcamEditors/FlatCAMGeoEditor.py:2729 -#: flatcamEditors/FlatCAMGeoEditor.py:2755 +#: flatcamEditors/FlatCAMGeoEditor.py:2689 +#: flatcamEditors/FlatCAMGeoEditor.py:2715 +#: flatcamEditors/FlatCAMGeoEditor.py:2741 msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected." msgstr "[WARNING_NOTCL] Puffer abgebrochen. Keine Form ausgewählt." -#: flatcamEditors/FlatCAMGeoEditor.py:2725 -#: flatcamEditors/FlatCAMGrbEditor.py:4276 +#: flatcamEditors/FlatCAMGeoEditor.py:2711 +#: flatcamEditors/FlatCAMGrbEditor.py:4420 msgid "[success] Done. Buffer Tool completed." msgstr "[success] Erledigt. Pufferwerkzeug abgeschlossen." -#: flatcamEditors/FlatCAMGeoEditor.py:2751 +#: flatcamEditors/FlatCAMGeoEditor.py:2737 msgid "[success] Done. Buffer Int Tool completed." msgstr "[success] Erledigt. Innenpufferwerkzeug abgeschlossen." -#: flatcamEditors/FlatCAMGeoEditor.py:2777 +#: flatcamEditors/FlatCAMGeoEditor.py:2763 msgid "[success] Done. Buffer Ext Tool completed." msgstr "[success] Erledigt. Außenpufferwerkzeug abgeschlossen." -#: flatcamEditors/FlatCAMGeoEditor.py:2810 +#: flatcamEditors/FlatCAMGeoEditor.py:2798 +#: flatcamEditors/FlatCAMGrbEditor.py:1969 +msgid "Select a shape to act as deletion area ..." +msgstr "Wählen Sie eine Form als Löschbereich aus ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:2800 +#: flatcamEditors/FlatCAMGeoEditor.py:2819 +#: flatcamEditors/FlatCAMGeoEditor.py:2825 +#: flatcamEditors/FlatCAMGrbEditor.py:1971 +msgid "Click to pick-up the erase shape..." +msgstr "Klicken Sie, um die Löschform aufzunehmen ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:2829 +#: flatcamEditors/FlatCAMGrbEditor.py:2028 +msgid "Click to erase ..." +msgstr "Klicken zum Löschen ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:2858 +#: flatcamEditors/FlatCAMGrbEditor.py:2059 +msgid "[success] Done. Eraser tool action completed." +msgstr "[success] Erledigt. Radiergummi-Aktion abgeschlossen." + +#: flatcamEditors/FlatCAMGeoEditor.py:2901 msgid "Create Paint geometry ..." msgstr "Malen geometrie erstellen ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2824 -#: flatcamEditors/FlatCAMGrbEditor.py:2059 +#: flatcamEditors/FlatCAMGeoEditor.py:2915 +#: flatcamEditors/FlatCAMGrbEditor.py:2201 msgid "Shape transformations ..." msgstr "Formtransformationen ..." -#: flatcamEditors/FlatCAMGeoEditor.py:3327 +#: flatcamEditors/FlatCAMGeoEditor.py:3419 #, python-brace-format msgid "[WARNING] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}" msgstr "" "[WARNING] Bearbeiten von MultiGeo-Geometrie, Werkzeug: {tool} mit " "Durchmesser: {dia}" -#: flatcamEditors/FlatCAMGeoEditor.py:3703 +#: flatcamEditors/FlatCAMGeoEditor.py:3796 msgid "[WARNING_NOTCL] Copy cancelled. No shape selected." msgstr "[WARNING_NOTCL] Kopieren abgebrochen Keine Form ausgewählt" -#: flatcamEditors/FlatCAMGeoEditor.py:3710 flatcamGUI/FlatCAMGUI.py:2725 -#: flatcamGUI/FlatCAMGUI.py:2771 flatcamGUI/FlatCAMGUI.py:2789 -#: flatcamGUI/FlatCAMGUI.py:2920 flatcamGUI/FlatCAMGUI.py:2932 -#: flatcamGUI/FlatCAMGUI.py:2966 +#: flatcamEditors/FlatCAMGeoEditor.py:3803 flatcamGUI/FlatCAMGUI.py:2732 +#: flatcamGUI/FlatCAMGUI.py:2778 flatcamGUI/FlatCAMGUI.py:2796 +#: flatcamGUI/FlatCAMGUI.py:2927 flatcamGUI/FlatCAMGUI.py:2939 +#: flatcamGUI/FlatCAMGUI.py:2973 msgid "Click on target point." msgstr "Klicken Sie auf den Zielpunkt." -#: flatcamEditors/FlatCAMGeoEditor.py:3953 -#: flatcamEditors/FlatCAMGeoEditor.py:3987 +#: flatcamEditors/FlatCAMGeoEditor.py:4047 +#: flatcamEditors/FlatCAMGeoEditor.py:4082 msgid "" "[WARNING_NOTCL] A selection of at least 2 geo items is required to do " "Intersection." @@ -3120,9 +3142,9 @@ msgstr "" "[WARNING_NOTCL] Eine Auswahl von mindestens 2 Geo-Elementen ist " "erforderlich, um die Kreuzung durchzuführen." -#: flatcamEditors/FlatCAMGeoEditor.py:4071 -#: flatcamEditors/FlatCAMGeoEditor.py:4108 -#: flatcamEditors/FlatCAMGeoEditor.py:4184 +#: flatcamEditors/FlatCAMGeoEditor.py:4166 +#: flatcamEditors/FlatCAMGeoEditor.py:4204 +#: flatcamEditors/FlatCAMGeoEditor.py:4280 msgid "" "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to " "generate an 'inside' shape" @@ -3130,54 +3152,54 @@ msgstr "" "[ERROR_NOTCL] Negativer Pufferwert wird nicht akzeptiert. Verwenden Sie den " "Pufferinnenraum, um eine Innenform zu erzeugen" -#: flatcamEditors/FlatCAMGeoEditor.py:4079 -#: flatcamEditors/FlatCAMGeoEditor.py:4117 -#: flatcamEditors/FlatCAMGeoEditor.py:4192 +#: flatcamEditors/FlatCAMGeoEditor.py:4175 +#: flatcamEditors/FlatCAMGeoEditor.py:4213 +#: flatcamEditors/FlatCAMGeoEditor.py:4288 msgid "[WARNING_NOTCL] Nothing selected for buffering." msgstr "[WARNING_NOTCL] Nichts ist für die Pufferung ausgewählt." -#: flatcamEditors/FlatCAMGeoEditor.py:4083 -#: flatcamEditors/FlatCAMGeoEditor.py:4121 -#: flatcamEditors/FlatCAMGeoEditor.py:4196 +#: flatcamEditors/FlatCAMGeoEditor.py:4179 +#: flatcamEditors/FlatCAMGeoEditor.py:4217 +#: flatcamEditors/FlatCAMGeoEditor.py:4292 msgid "[WARNING_NOTCL] Invalid distance for buffering." msgstr "[WARNING_NOTCL] Ungültige Entfernung für die Pufferung" -#: flatcamEditors/FlatCAMGeoEditor.py:4093 -#: flatcamEditors/FlatCAMGeoEditor.py:4205 +#: flatcamEditors/FlatCAMGeoEditor.py:4189 +#: flatcamEditors/FlatCAMGeoEditor.py:4301 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value." msgstr "" "[ERROR_NOTCL] Fehlgeschlagen, das Ergebnis ist leer. Wählen Sie einen " "anderen Pufferwert." -#: flatcamEditors/FlatCAMGeoEditor.py:4101 +#: flatcamEditors/FlatCAMGeoEditor.py:4197 msgid "[success] Full buffer geometry created." msgstr "[success] Volle Puffergeometrie erstellt." -#: flatcamEditors/FlatCAMGeoEditor.py:4131 +#: flatcamEditors/FlatCAMGeoEditor.py:4227 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value." msgstr "" "[ERROR_NOTCL] Fehlgeschlagen, das Ergebnis ist leer. Wählen Sie einen " "kleineren Pufferwert." -#: flatcamEditors/FlatCAMGeoEditor.py:4146 +#: flatcamEditors/FlatCAMGeoEditor.py:4242 msgid "[success] Interior buffer geometry created." msgstr "[success] Innere Puffergeometrie erstellt." -#: flatcamEditors/FlatCAMGeoEditor.py:4217 +#: flatcamEditors/FlatCAMGeoEditor.py:4313 msgid "[success] Exterior buffer geometry created." msgstr "[success] Außenpuffergeometrie erstellt." -#: flatcamEditors/FlatCAMGeoEditor.py:4281 +#: flatcamEditors/FlatCAMGeoEditor.py:4377 msgid "[WARNING_NOTCL] Nothing selected for painting." msgstr "[WARNING_NOTCL] Nichts zum Malen ausgewählt." -#: flatcamEditors/FlatCAMGeoEditor.py:4287 +#: flatcamEditors/FlatCAMGeoEditor.py:4383 msgid "[WARNING] Invalid value for {}" msgstr "[WARNING] Ungültiger Wert für {}" -#: flatcamEditors/FlatCAMGeoEditor.py:4293 +#: flatcamEditors/FlatCAMGeoEditor.py:4389 msgid "" "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 " "(100%)." @@ -3185,7 +3207,7 @@ msgstr "" "[ERROR_NOTCL] Kann nicht Malen machen. Der Überlappungswert muss unter 1,00 " "(100%) liegen." -#: flatcamEditors/FlatCAMGeoEditor.py:4352 +#: flatcamEditors/FlatCAMGeoEditor.py:4448 #, python-format msgid "" "[ERROR] Could not do Paint. Try a different combination of parameters. Or a " @@ -3196,7 +3218,7 @@ msgstr "" "Kombination von Parametern. Oder eine andere Methode von Malen\n" "%s" -#: flatcamEditors/FlatCAMGeoEditor.py:4363 +#: flatcamEditors/FlatCAMGeoEditor.py:4459 msgid "[success] Paint done." msgstr "[success] Malen Sie fertig." @@ -3219,7 +3241,7 @@ msgid "Click to place ..." msgstr "Zum Platzieren klicken ..." #: flatcamEditors/FlatCAMGrbEditor.py:357 -#: flatcamEditors/FlatCAMGrbEditor.py:660 +#: flatcamEditors/FlatCAMGrbEditor.py:662 msgid "" "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'." msgstr "" @@ -3241,23 +3263,23 @@ msgstr "" msgid "Click on the Pad Circular Array Start position" msgstr "Klicken Sie auf die Startposition des Pad-Kreis-Arrays" -#: flatcamEditors/FlatCAMGrbEditor.py:685 +#: flatcamEditors/FlatCAMGrbEditor.py:687 msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle." msgstr "[WARNING_NOTCL] Zu viele Pad für den ausgewählten Abstandswinkel." -#: flatcamEditors/FlatCAMGrbEditor.py:707 +#: flatcamEditors/FlatCAMGrbEditor.py:709 msgid "[success] Done. Pad Array added." msgstr "[success] Erledigt. Pad Array hinzugefügt." -#: flatcamEditors/FlatCAMGrbEditor.py:728 +#: flatcamEditors/FlatCAMGrbEditor.py:730 msgid "Select shape(s) and then click ..." msgstr "Wählen Sie die Form (en) aus und klicken Sie dann auf ..." -#: flatcamEditors/FlatCAMGrbEditor.py:739 +#: flatcamEditors/FlatCAMGrbEditor.py:741 msgid "[ERROR_NOTCL] Failed. Nothing selected." msgstr "[ERROR_NOTCL] ist fehlgeschlagen. Nichts ausgewählt." -#: flatcamEditors/FlatCAMGrbEditor.py:754 +#: flatcamEditors/FlatCAMGrbEditor.py:756 msgid "" "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the " "same aperture." @@ -3265,145 +3287,145 @@ msgstr "" "[WARNING_NOTCL] Gescheitert. Poligonize funktioniert nur bei Geometrien, die " "zur selben Apertur gehören." -#: flatcamEditors/FlatCAMGrbEditor.py:807 +#: flatcamEditors/FlatCAMGrbEditor.py:809 msgid "[success] Done. Poligonize completed." msgstr "[Erfolg] Fertig. Poligonize abgeschlossen." -#: flatcamEditors/FlatCAMGrbEditor.py:857 -#: flatcamEditors/FlatCAMGrbEditor.py:1072 -#: flatcamEditors/FlatCAMGrbEditor.py:1096 +#: flatcamEditors/FlatCAMGrbEditor.py:860 +#: flatcamEditors/FlatCAMGrbEditor.py:1075 +#: flatcamEditors/FlatCAMGrbEditor.py:1099 msgid "Corner Mode 1: 45 degrees ..." msgstr "Eckmodus 1: 45 Grad ..." -#: flatcamEditors/FlatCAMGrbEditor.py:859 +#: flatcamEditors/FlatCAMGrbEditor.py:862 msgid "Click on 1st point ..." msgstr "Klicken Sie auf den 1. Punkt ..." -#: flatcamEditors/FlatCAMGrbEditor.py:869 -#: flatcamEditors/FlatCAMGrbEditor.py:1167 +#: flatcamEditors/FlatCAMGrbEditor.py:872 +#: flatcamEditors/FlatCAMGrbEditor.py:1170 msgid "Click on next Point or click Right mouse button to complete ..." msgstr "" "Klicken Sie auf den nächsten Punkt oder klicken Sie mit der rechten " "Maustaste, um den Vorgang abzuschließen." -#: flatcamEditors/FlatCAMGrbEditor.py:1060 -#: flatcamEditors/FlatCAMGrbEditor.py:1093 +#: flatcamEditors/FlatCAMGrbEditor.py:1063 +#: flatcamEditors/FlatCAMGrbEditor.py:1096 msgid "Corner Mode 2: Reverse 45 degrees ..." msgstr "Eckmodus 2: 45 Grad umkehren ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1063 -#: flatcamEditors/FlatCAMGrbEditor.py:1090 +#: flatcamEditors/FlatCAMGrbEditor.py:1066 +#: flatcamEditors/FlatCAMGrbEditor.py:1093 msgid "Corner Mode 3: 90 degrees ..." msgstr "Eckmodus 3: 90 Grad ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1066 -#: flatcamEditors/FlatCAMGrbEditor.py:1087 +#: flatcamEditors/FlatCAMGrbEditor.py:1069 +#: flatcamEditors/FlatCAMGrbEditor.py:1090 msgid "Corner Mode 4: Reverse 90 degrees ..." msgstr "Eckmodus 4: Um 90 Grad umkehren ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1069 -#: flatcamEditors/FlatCAMGrbEditor.py:1084 +#: flatcamEditors/FlatCAMGrbEditor.py:1072 +#: flatcamEditors/FlatCAMGrbEditor.py:1087 msgid "Corner Mode 5: Free angle ..." msgstr "Eckmodus 5: Freiwinkel ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1123 -#: flatcamEditors/FlatCAMGrbEditor.py:1281 -#: flatcamEditors/FlatCAMGrbEditor.py:1320 +#: flatcamEditors/FlatCAMGrbEditor.py:1126 +#: flatcamEditors/FlatCAMGrbEditor.py:1284 +#: flatcamEditors/FlatCAMGrbEditor.py:1323 msgid "Track Mode 1: 45 degrees ..." msgstr "Spurmodus 1: 45 Grad ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1261 -#: flatcamEditors/FlatCAMGrbEditor.py:1315 +#: flatcamEditors/FlatCAMGrbEditor.py:1264 +#: flatcamEditors/FlatCAMGrbEditor.py:1318 msgid "Track Mode 2: Reverse 45 degrees ..." msgstr "Spurmodus 2: 45 Grad umkehren ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1266 -#: flatcamEditors/FlatCAMGrbEditor.py:1310 +#: flatcamEditors/FlatCAMGrbEditor.py:1269 +#: flatcamEditors/FlatCAMGrbEditor.py:1313 msgid "Track Mode 3: 90 degrees ..." msgstr "Spurmodus 3: 90 Grad ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1271 -#: flatcamEditors/FlatCAMGrbEditor.py:1305 +#: flatcamEditors/FlatCAMGrbEditor.py:1274 +#: flatcamEditors/FlatCAMGrbEditor.py:1308 msgid "Track Mode 4: Reverse 90 degrees ..." msgstr "Spurmodus 4: Um 90 Grad umkehren ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1276 -#: flatcamEditors/FlatCAMGrbEditor.py:1300 +#: flatcamEditors/FlatCAMGrbEditor.py:1279 +#: flatcamEditors/FlatCAMGrbEditor.py:1303 msgid "Track Mode 5: Free angle ..." msgstr "Spurmodus 5: Freiwinkel ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1666 +#: flatcamEditors/FlatCAMGrbEditor.py:1669 msgid "Scale the selected Gerber apertures ..." msgstr "Skalieren Sie die ausgewählten Gerber-Öffnungen ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1708 +#: flatcamEditors/FlatCAMGrbEditor.py:1711 msgid "Buffer the selected apertures ..." msgstr "Die ausgewählten Öffnungen puffern ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1752 +#: flatcamEditors/FlatCAMGrbEditor.py:1755 msgid "[WARNING_NOTCL] Nothing selected to move ..." msgstr "[WARNING_NOTCL] Nichts zum Bewegen ausgewählt ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1875 +#: flatcamEditors/FlatCAMGrbEditor.py:1878 msgid "[success] Done. Apertures Move completed." msgstr "[success] Erledigt. Öffnungsbewegung abgeschlossen." -#: flatcamEditors/FlatCAMGrbEditor.py:1951 +#: flatcamEditors/FlatCAMGrbEditor.py:1954 msgid "[success] Done. Apertures copied." msgstr "[success] Erledigt. Blende kopiert." -#: flatcamEditors/FlatCAMGrbEditor.py:2101 flatcamGUI/FlatCAMGUI.py:1604 -#: flatcamGUI/FlatCAMGUI.py:4322 +#: flatcamEditors/FlatCAMGrbEditor.py:2243 flatcamGUI/FlatCAMGUI.py:1607 +#: flatcamGUI/FlatCAMGUI.py:4329 msgid "Gerber Editor" msgstr "Gerber-Editor" -#: flatcamEditors/FlatCAMGrbEditor.py:2120 flatcamGUI/ObjectUI.py:192 +#: flatcamEditors/FlatCAMGrbEditor.py:2262 flatcamGUI/ObjectUI.py:192 msgid "Apertures:" msgstr " Blenden: " -#: flatcamEditors/FlatCAMGrbEditor.py:2122 flatcamGUI/ObjectUI.py:194 +#: flatcamEditors/FlatCAMGrbEditor.py:2264 flatcamGUI/ObjectUI.py:194 msgid "Apertures Table for the Gerber Object." msgstr "Blendentabelle für das Gerberobjekt." -#: flatcamEditors/FlatCAMGrbEditor.py:2133 -#: flatcamEditors/FlatCAMGrbEditor.py:3442 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:2275 +#: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228 msgid "Code" msgstr "Code" -#: flatcamEditors/FlatCAMGrbEditor.py:2133 -#: flatcamEditors/FlatCAMGrbEditor.py:3442 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:2275 +#: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228 #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1452 msgid "Type" msgstr "Typ" -#: flatcamEditors/FlatCAMGrbEditor.py:2133 -#: flatcamEditors/FlatCAMGrbEditor.py:3442 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:2275 +#: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228 msgid "Size" msgstr "Größe" -#: flatcamEditors/FlatCAMGrbEditor.py:2133 -#: flatcamEditors/FlatCAMGrbEditor.py:3442 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:2275 +#: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228 msgid "Dim" msgstr "Maße" -#: flatcamEditors/FlatCAMGrbEditor.py:2137 flatcamGUI/ObjectUI.py:232 +#: flatcamEditors/FlatCAMGrbEditor.py:2279 flatcamGUI/ObjectUI.py:232 msgid "Index" msgstr "Index" -#: flatcamEditors/FlatCAMGrbEditor.py:2139 flatcamGUI/ObjectUI.py:234 +#: flatcamEditors/FlatCAMGrbEditor.py:2281 flatcamGUI/ObjectUI.py:234 msgid "Aperture Code" msgstr "Öffnungscode" -#: flatcamEditors/FlatCAMGrbEditor.py:2141 flatcamGUI/ObjectUI.py:236 +#: flatcamEditors/FlatCAMGrbEditor.py:2283 flatcamGUI/ObjectUI.py:236 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "Öffnungsart: kreisförmig, rechteckig, Makros usw" -#: flatcamEditors/FlatCAMGrbEditor.py:2143 -#: flatcamEditors/FlatCAMGrbEditor.py:2176 flatcamGUI/ObjectUI.py:238 +#: flatcamEditors/FlatCAMGrbEditor.py:2285 +#: flatcamEditors/FlatCAMGrbEditor.py:2318 flatcamGUI/ObjectUI.py:238 msgid "Aperture Size:" msgstr "Öffnungsgröße:" -#: flatcamEditors/FlatCAMGrbEditor.py:2145 flatcamGUI/ObjectUI.py:240 +#: flatcamEditors/FlatCAMGrbEditor.py:2287 flatcamGUI/ObjectUI.py:240 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" @@ -3413,15 +3435,15 @@ msgstr "" "  - (Breite, Höhe) für R, O-Typ.\n" "  - (dia, nVertices) für P-Typ" -#: flatcamEditors/FlatCAMGrbEditor.py:2166 +#: flatcamEditors/FlatCAMGrbEditor.py:2308 msgid "Aperture Code:" msgstr "Öffnungscode:" -#: flatcamEditors/FlatCAMGrbEditor.py:2168 +#: flatcamEditors/FlatCAMGrbEditor.py:2310 msgid "Code for the new aperture" msgstr "Code für die neue Blende" -#: flatcamEditors/FlatCAMGrbEditor.py:2178 +#: flatcamEditors/FlatCAMGrbEditor.py:2320 msgid "" "Size for the new aperture.\n" "If aperture type is 'R' or 'O' then\n" @@ -3435,11 +3457,11 @@ msgstr "" "berechnet als:\n" "Quadrat (Breite ** 2 + Höhe ** 2)" -#: flatcamEditors/FlatCAMGrbEditor.py:2190 +#: flatcamEditors/FlatCAMGrbEditor.py:2332 msgid "Aperture Type:" msgstr "Blendentyp:" -#: flatcamEditors/FlatCAMGrbEditor.py:2192 +#: flatcamEditors/FlatCAMGrbEditor.py:2334 msgid "" "Select the type of new aperture. Can be:\n" "C = circular\n" @@ -3451,11 +3473,11 @@ msgstr "" "R = rechteckig\n" "O = länglich" -#: flatcamEditors/FlatCAMGrbEditor.py:2203 +#: flatcamEditors/FlatCAMGrbEditor.py:2345 msgid "Aperture Dim:" msgstr "Öffnungsmaße:" -#: flatcamEditors/FlatCAMGrbEditor.py:2205 +#: flatcamEditors/FlatCAMGrbEditor.py:2347 msgid "" "Dimensions for the new aperture.\n" "Active only for rectangular apertures (type R).\n" @@ -3465,31 +3487,31 @@ msgstr "" "Aktiv nur für rechteckige Öffnungen (Typ R).\n" "Das Format ist (Breite, Höhe)" -#: flatcamEditors/FlatCAMGrbEditor.py:2214 +#: flatcamEditors/FlatCAMGrbEditor.py:2356 msgid "Add/Delete Aperture:" msgstr "Blende hinzufügen / löschen:" -#: flatcamEditors/FlatCAMGrbEditor.py:2216 +#: flatcamEditors/FlatCAMGrbEditor.py:2358 msgid "Add/Delete an aperture in the aperture table" msgstr "Eine Blende in der Blendentabelle hinzufügen / löschen" -#: flatcamEditors/FlatCAMGrbEditor.py:2225 +#: flatcamEditors/FlatCAMGrbEditor.py:2367 msgid "Add a new aperture to the aperture list." msgstr "Fügen Sie der Blendenliste eine neue Blende hinzu." -#: flatcamEditors/FlatCAMGrbEditor.py:2230 +#: flatcamEditors/FlatCAMGrbEditor.py:2372 msgid "Delete a aperture in the aperture list" msgstr "Löschen Sie eine Blende in der Blendenliste" -#: flatcamEditors/FlatCAMGrbEditor.py:2246 +#: flatcamEditors/FlatCAMGrbEditor.py:2388 msgid "Buffer Aperture:" msgstr "Pufferblende:" -#: flatcamEditors/FlatCAMGrbEditor.py:2248 +#: flatcamEditors/FlatCAMGrbEditor.py:2390 msgid "Buffer a aperture in the aperture list" msgstr "Puffern Sie eine Blende in der Blendenliste" -#: flatcamEditors/FlatCAMGrbEditor.py:2261 +#: flatcamEditors/FlatCAMGrbEditor.py:2403 msgid "" "There are 3 types of corners:\n" " - 'Round': the corner is rounded.\n" @@ -3503,24 +3525,24 @@ msgstr "" "  - 'Abgeschrägt:' Die Ecke ist eine Linie, die die Features, die sich in " "der Ecke treffen, direkt verbindet" -#: flatcamEditors/FlatCAMGrbEditor.py:2276 flatcamGUI/FlatCAMGUI.py:721 -#: flatcamGUI/FlatCAMGUI.py:1943 +#: flatcamEditors/FlatCAMGrbEditor.py:2418 flatcamGUI/FlatCAMGUI.py:722 +#: flatcamGUI/FlatCAMGUI.py:1948 msgid "Buffer" msgstr "Puffer" -#: flatcamEditors/FlatCAMGrbEditor.py:2290 +#: flatcamEditors/FlatCAMGrbEditor.py:2432 msgid "Scale Aperture:" msgstr "Skalenöffnung:" -#: flatcamEditors/FlatCAMGrbEditor.py:2292 +#: flatcamEditors/FlatCAMGrbEditor.py:2434 msgid "Scale a aperture in the aperture list" msgstr "Skalieren Sie eine Blende in der Blendenliste" -#: flatcamEditors/FlatCAMGrbEditor.py:2300 +#: flatcamEditors/FlatCAMGrbEditor.py:2442 msgid "Scale factor:" msgstr "Skalierungsfaktor:" -#: flatcamEditors/FlatCAMGrbEditor.py:2302 +#: flatcamEditors/FlatCAMGrbEditor.py:2444 msgid "" "The factor by which to scale the selected aperture.\n" "Values can be between 0.0000 and 999.9999" @@ -3528,16 +3550,16 @@ msgstr "" "Der Faktor, um den die ausgewählte Blende skaliert werden soll.\n" "Die Werte können zwischen 0,0000 und 999,9999 liegen" -#: flatcamEditors/FlatCAMGrbEditor.py:2330 flatcamGUI/FlatCAMGUI.py:711 -#: flatcamGUI/FlatCAMGUI.py:1933 +#: flatcamEditors/FlatCAMGrbEditor.py:2472 flatcamGUI/FlatCAMGUI.py:712 +#: flatcamGUI/FlatCAMGUI.py:1938 msgid "Add Pad Array" msgstr "Pad-Array hinzufügen" -#: flatcamEditors/FlatCAMGrbEditor.py:2332 +#: flatcamEditors/FlatCAMGrbEditor.py:2474 msgid "Add an array of pads (linear or circular array)" msgstr "Hinzufügen eines Arrays von Pads (lineares oder kreisförmiges Array)" -#: flatcamEditors/FlatCAMGrbEditor.py:2338 +#: flatcamEditors/FlatCAMGrbEditor.py:2480 msgid "" "Select the type of pads array to create.\n" "It can be Linear X(Y) or Circular" @@ -3545,16 +3567,16 @@ msgstr "" "Wählen Sie den zu erstellenden Pad-Array-Typ aus.\n" "Es kann lineares X (Y) oder rund sein" -#: flatcamEditors/FlatCAMGrbEditor.py:2349 +#: flatcamEditors/FlatCAMGrbEditor.py:2491 msgid "Nr of pads:" msgstr "Anzahl der Pads:" -#: flatcamEditors/FlatCAMGrbEditor.py:2351 +#: flatcamEditors/FlatCAMGrbEditor.py:2493 msgid "Specify how many pads to be in the array." msgstr "Geben Sie an, wie viele Pads sich im Array befinden sollen." -#: flatcamEditors/FlatCAMGrbEditor.py:2826 -#: flatcamEditors/FlatCAMGrbEditor.py:2830 +#: flatcamEditors/FlatCAMGrbEditor.py:2970 +#: flatcamEditors/FlatCAMGrbEditor.py:2974 msgid "" "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and " "retry." @@ -3562,7 +3584,7 @@ msgstr "" "[WARNING_NOTCL] Blendencodewert fehlt oder falsches Format. Fügen Sie es " "hinzu und versuchen Sie es erneut." -#: flatcamEditors/FlatCAMGrbEditor.py:2866 +#: flatcamEditors/FlatCAMGrbEditor.py:3010 msgid "" "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it " "in format (width, height) and retry." @@ -3570,7 +3592,7 @@ msgstr "" "[WARNING_NOTCL] Wert für Blendenmaße fehlt oder falsches Format. Fügen Sie " "es im Format (Breite, Höhe) hinzu und versuchen Sie es erneut." -#: flatcamEditors/FlatCAMGrbEditor.py:2878 +#: flatcamEditors/FlatCAMGrbEditor.py:3022 msgid "" "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and " "retry." @@ -3578,35 +3600,35 @@ msgstr "" "[WARNING_NOTCL] Blendengrößenwert fehlt oder falsches Format. Fügen Sie es " "hinzu und versuchen Sie es erneut." -#: flatcamEditors/FlatCAMGrbEditor.py:2889 +#: flatcamEditors/FlatCAMGrbEditor.py:3033 msgid "[WARNING_NOTCL] Aperture already in the aperture table." msgstr "[WARNING_NOTCL] Blende bereits in der Blendentabelle." -#: flatcamEditors/FlatCAMGrbEditor.py:2896 +#: flatcamEditors/FlatCAMGrbEditor.py:3040 #, python-brace-format msgid "[success] Added new aperture with code: {apid}" msgstr "[success] Neue Blende mit Code hinzugefügt: {apid}" -#: flatcamEditors/FlatCAMGrbEditor.py:2924 +#: flatcamEditors/FlatCAMGrbEditor.py:3068 msgid "[WARNING_NOTCL] Select an aperture in Aperture Table" msgstr "[WARNING_NOTCL] Wählen Sie in Blende Table eine Blende aus" -#: flatcamEditors/FlatCAMGrbEditor.py:2930 +#: flatcamEditors/FlatCAMGrbEditor.py:3074 #, python-format msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s" msgstr "[WARNING_NOTCL] Wählen Sie in Blende Table eine Blende aus --> %s" -#: flatcamEditors/FlatCAMGrbEditor.py:2953 +#: flatcamEditors/FlatCAMGrbEditor.py:3097 #, python-brace-format msgid "[success] Deleted aperture with code: {del_dia}" msgstr "[success] Blende mit Code gelöscht: {del_dia}" -#: flatcamEditors/FlatCAMGrbEditor.py:3373 +#: flatcamEditors/FlatCAMGrbEditor.py:3517 #, python-format msgid "Adding aperture: %s geo ..." msgstr "Blende hinzufügen:%s geo ..." -#: flatcamEditors/FlatCAMGrbEditor.py:3552 +#: flatcamEditors/FlatCAMGrbEditor.py:3696 msgid "" "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber " "creation." @@ -3614,32 +3636,32 @@ msgstr "" "[ERROR_NOTCL] Die Datei enthält keine Aperture-Definitionen. Abbruch der " "Gerber-Erstellung." -#: flatcamEditors/FlatCAMGrbEditor.py:3555 +#: flatcamEditors/FlatCAMGrbEditor.py:3699 msgid "[ERROR] An internal error has occurred. See shell.\n" msgstr "[ERROR] Ein interner Fehler ist aufgetreten. Siehe Shell.\n" -#: flatcamEditors/FlatCAMGrbEditor.py:3560 +#: flatcamEditors/FlatCAMGrbEditor.py:3704 msgid "Creating Gerber." msgstr "Gerber erstellen." -#: flatcamEditors/FlatCAMGrbEditor.py:3568 +#: flatcamEditors/FlatCAMGrbEditor.py:3712 msgid "[success] Gerber editing finished." msgstr "[success] Gerber-Bearbeitung ist beendet." -#: flatcamEditors/FlatCAMGrbEditor.py:3584 +#: flatcamEditors/FlatCAMGrbEditor.py:3728 msgid "[WARNING_NOTCL] Cancelled. No aperture is selected" msgstr "[WARNING_NOTCL] Abgebrochen. Es ist keine Blende ausgewählt" -#: flatcamEditors/FlatCAMGrbEditor.py:4104 +#: flatcamEditors/FlatCAMGrbEditor.py:4248 msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected." msgstr "" "[ERROR_NOTCL] ist fehlgeschlagen. Es ist keine Blendengeometrie ausgewählt." -#: flatcamEditors/FlatCAMGrbEditor.py:4112 +#: flatcamEditors/FlatCAMGrbEditor.py:4256 msgid "[success] Done. Apertures geometry deleted." msgstr "[success] Fertig. Blendengeometrie gelöscht." -#: flatcamEditors/FlatCAMGrbEditor.py:4261 +#: flatcamEditors/FlatCAMGrbEditor.py:4405 msgid "" "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try " "again." @@ -3647,7 +3669,7 @@ msgstr "" "[WARNING_NOTCL] Keine Blende zum Puffern Wählen Sie mindestens eine Blende " "und versuchen Sie es erneut." -#: flatcamEditors/FlatCAMGrbEditor.py:4290 +#: flatcamEditors/FlatCAMGrbEditor.py:4434 msgid "" "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and " "retry." @@ -3655,7 +3677,7 @@ msgstr "" "[WARNING_NOTCL] Der Skalierungsfaktor ist nicht vorhanden oder das Format " "ist falsch. Fügen Sie es hinzu und versuchen Sie es erneut." -#: flatcamEditors/FlatCAMGrbEditor.py:4320 +#: flatcamEditors/FlatCAMGrbEditor.py:4464 msgid "" "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try " "again." @@ -3663,7 +3685,7 @@ msgstr "" "[WARNING_NOTCL] Keine zu skalierende Blende Wählen Sie mindestens eine " "Blende und versuchen Sie es erneut." -#: flatcamEditors/FlatCAMGrbEditor.py:4336 +#: flatcamEditors/FlatCAMGrbEditor.py:4480 msgid "[success] Done. Scale Tool completed." msgstr "[success] Erledigt. Skalierungswerkzeug abgeschlossen." @@ -4246,11 +4268,11 @@ msgstr "CNC generieren" msgid "View Source" msgstr "Quelltext anzeigen" -#: flatcamGUI/FlatCAMGUI.py:530 flatcamGUI/FlatCAMGUI.py:1617 +#: flatcamGUI/FlatCAMGUI.py:530 flatcamGUI/FlatCAMGUI.py:1620 msgid "Edit" msgstr "Bearbeiten" -#: flatcamGUI/FlatCAMGUI.py:536 flatcamGUI/FlatCAMGUI.py:1623 +#: flatcamGUI/FlatCAMGUI.py:536 flatcamGUI/FlatCAMGUI.py:1626 #: flatcamTools/ToolProperties.py:25 msgid "Properties" msgstr "Eigenschaften" @@ -4291,15 +4313,15 @@ msgstr "Gerber Editor-Symbolleiste" msgid "Grid Toolbar" msgstr "Raster-Symbolleiste" -#: flatcamGUI/FlatCAMGUI.py:616 flatcamGUI/FlatCAMGUI.py:1834 +#: flatcamGUI/FlatCAMGUI.py:616 flatcamGUI/FlatCAMGUI.py:1837 msgid "Open project" msgstr "Offenes Projekt" -#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1835 +#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1838 msgid "Save project" msgstr "Projekt speichern" -#: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1838 +#: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1841 msgid "New Blank Geometry" msgstr "Neue leere Geometrie" @@ -4307,220 +4329,225 @@ msgstr "Neue leere Geometrie" msgid "New Blank Gerber" msgstr "Neue leere Gerber" -#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1839 +#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1842 msgid "New Blank Excellon" msgstr "Neuer unbelegter Excellon" -#: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1841 +#: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1844 msgid "Editor" msgstr "Editor" -#: flatcamGUI/FlatCAMGUI.py:626 flatcamGUI/FlatCAMGUI.py:1843 +#: flatcamGUI/FlatCAMGUI.py:626 flatcamGUI/FlatCAMGUI.py:1846 msgid "Save Object and close the Editor" msgstr "Speichern Sie das Objekt und schließen Sie den Editor" -#: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1847 +#: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1850 msgid "&Delete" msgstr "&Löschen" -#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1850 +#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1853 msgid "&Replot" msgstr "&Replotieren" -#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1851 +#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1854 msgid "&Clear plot" msgstr "&Plot klar löschen" -#: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1852 +#: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1855 msgid "Zoom In" msgstr "Hineinzoomen" -#: flatcamGUI/FlatCAMGUI.py:636 flatcamGUI/FlatCAMGUI.py:1853 +#: flatcamGUI/FlatCAMGUI.py:636 flatcamGUI/FlatCAMGUI.py:1856 msgid "Zoom Out" msgstr "Rauszoomen" -#: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1592 -#: flatcamGUI/FlatCAMGUI.py:1854 +#: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1595 +#: flatcamGUI/FlatCAMGUI.py:1857 msgid "Zoom Fit" msgstr "Passenzoomen" -#: flatcamGUI/FlatCAMGUI.py:642 flatcamGUI/FlatCAMGUI.py:1859 +#: flatcamGUI/FlatCAMGUI.py:642 flatcamGUI/FlatCAMGUI.py:1862 msgid "&Command Line" msgstr "Befehlszeile" -#: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1862 +#: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1865 msgid "2Sided Tool" msgstr "2Seitiges Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1863 +#: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1866 msgid "&Cutout Tool" msgstr "Ausschnittwerkzeug" -#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1864 +#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1867 #: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:285 msgid "NCC Tool" msgstr "NCC Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:651 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:651 flatcamGUI/FlatCAMGUI.py:1871 msgid "Panel Tool" msgstr "Platte Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:1872 #: flatcamTools/ToolFilm.py:204 msgid "Film Tool" msgstr "Filmwerkzeug" -#: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1871 +#: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1874 msgid "SolderPaste Tool" msgstr "Lötpaste-Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1875 #: flatcamTools/ToolSub.py:26 msgid "Substract Tool" msgstr "Abziehen Werkzeug " -#: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1877 +#: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1880 msgid "Calculators Tool" msgstr "Rechnerwerkzeug" #: flatcamGUI/FlatCAMGUI.py:662 flatcamGUI/FlatCAMGUI.py:676 -#: flatcamGUI/FlatCAMGUI.py:709 flatcamGUI/FlatCAMGUI.py:1881 -#: flatcamGUI/FlatCAMGUI.py:1931 +#: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:1884 +#: flatcamGUI/FlatCAMGUI.py:1936 msgid "Select" msgstr "Wählen" -#: flatcamGUI/FlatCAMGUI.py:663 flatcamGUI/FlatCAMGUI.py:1882 +#: flatcamGUI/FlatCAMGUI.py:663 flatcamGUI/FlatCAMGUI.py:1885 msgid "Add Drill Hole" msgstr "Bohrloch hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1884 +#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1887 msgid "Add Drill Hole Array" msgstr "Bohrlochfeld hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:1885 +#: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:1888 msgid "Resize Drill" msgstr "Bohrergröße ändern" -#: flatcamGUI/FlatCAMGUI.py:669 flatcamGUI/FlatCAMGUI.py:1888 +#: flatcamGUI/FlatCAMGUI.py:669 flatcamGUI/FlatCAMGUI.py:1891 msgid "Copy Drill" msgstr "Bohrer kopieren" -#: flatcamGUI/FlatCAMGUI.py:670 flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:670 flatcamGUI/FlatCAMGUI.py:1893 msgid "Delete Drill" msgstr "Bohrer löschen" -#: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1893 +#: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1896 msgid "Move Drill" msgstr "Bohrer bewegen" -#: flatcamGUI/FlatCAMGUI.py:677 flatcamGUI/FlatCAMGUI.py:1897 +#: flatcamGUI/FlatCAMGUI.py:677 flatcamGUI/FlatCAMGUI.py:1900 msgid "Add Circle" msgstr "Kreis hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1898 +#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1901 msgid "Add Arc" msgstr "Bogen hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1900 +#: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1903 msgid "Add Rectangle" msgstr "Rechteck hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1903 +#: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1906 msgid "Add Path" msgstr "Pfad hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:684 flatcamGUI/FlatCAMGUI.py:1905 +#: flatcamGUI/FlatCAMGUI.py:684 flatcamGUI/FlatCAMGUI.py:1908 msgid "Add Polygon" msgstr "Polygon hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:1910 msgid "Add Text" msgstr "Text hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:687 flatcamGUI/FlatCAMGUI.py:1909 +#: flatcamGUI/FlatCAMGUI.py:687 flatcamGUI/FlatCAMGUI.py:1912 msgid "Add Buffer" msgstr "Puffer hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:688 flatcamGUI/FlatCAMGUI.py:1910 +#: flatcamGUI/FlatCAMGUI.py:688 flatcamGUI/FlatCAMGUI.py:1913 msgid "Paint Shape" msgstr "Malen Form" -#: flatcamGUI/FlatCAMGUI.py:691 flatcamGUI/FlatCAMGUI.py:1913 +#: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:724 +#: flatcamGUI/FlatCAMGUI.py:1914 flatcamGUI/FlatCAMGUI.py:1950 +msgid "Eraser" +msgstr "Radiergummi" + +#: flatcamGUI/FlatCAMGUI.py:692 flatcamGUI/FlatCAMGUI.py:1918 msgid "Polygon Union" msgstr "Polygon-Vereinigung" -#: flatcamGUI/FlatCAMGUI.py:693 flatcamGUI/FlatCAMGUI.py:1915 +#: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:1920 msgid "Polygon Intersection" msgstr "Polygonschnitt" -#: flatcamGUI/FlatCAMGUI.py:695 flatcamGUI/FlatCAMGUI.py:1917 +#: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:1922 msgid "Polygon Subtraction" msgstr "Polygon-Subtraktion" -#: flatcamGUI/FlatCAMGUI.py:698 flatcamGUI/FlatCAMGUI.py:1920 +#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:1925 msgid "Cut Path" msgstr "Pfad ausschneiden" -#: flatcamGUI/FlatCAMGUI.py:699 +#: flatcamGUI/FlatCAMGUI.py:700 msgid "Copy Shape(s)" msgstr "Form kopieren" -#: flatcamGUI/FlatCAMGUI.py:702 +#: flatcamGUI/FlatCAMGUI.py:703 msgid "Delete Shape '-'" msgstr "Form löschen" -#: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:728 -#: flatcamGUI/FlatCAMGUI.py:1925 flatcamGUI/FlatCAMGUI.py:1950 +#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:731 +#: flatcamGUI/FlatCAMGUI.py:1930 flatcamGUI/FlatCAMGUI.py:1957 msgid "Transformations" msgstr "Transformationen" -#: flatcamGUI/FlatCAMGUI.py:706 +#: flatcamGUI/FlatCAMGUI.py:707 msgid "Move Objects " msgstr "Objekte verschieben " -#: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:1932 +#: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:1937 msgid "Add Pad" msgstr "Pad hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:712 flatcamGUI/FlatCAMGUI.py:1934 +#: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1939 msgid "Add Track" msgstr "Track hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1935 +#: flatcamGUI/FlatCAMGUI.py:714 flatcamGUI/FlatCAMGUI.py:1940 msgid "Add Region" msgstr "Region hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:715 flatcamGUI/FlatCAMGUI.py:1937 +#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:1942 msgid "Poligonize" msgstr "Polygonisieren" -#: flatcamGUI/FlatCAMGUI.py:717 flatcamGUI/FlatCAMGUI.py:1939 +#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1944 msgid "SemiDisc" msgstr "Halbscheibe" -#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1940 +#: flatcamGUI/FlatCAMGUI.py:719 flatcamGUI/FlatCAMGUI.py:1945 msgid "Disc" msgstr "Scheibe" -#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1602 -#: flatcamGUI/FlatCAMGUI.py:1622 flatcamGUI/FlatCAMGUI.py:1952 +#: flatcamGUI/FlatCAMGUI.py:733 flatcamGUI/FlatCAMGUI.py:1605 +#: flatcamGUI/FlatCAMGUI.py:1625 flatcamGUI/FlatCAMGUI.py:1959 #: flatcamTools/ToolMove.py:26 msgid "Move" msgstr "Bewegung" -#: flatcamGUI/FlatCAMGUI.py:736 flatcamGUI/FlatCAMGUI.py:1958 +#: flatcamGUI/FlatCAMGUI.py:739 flatcamGUI/FlatCAMGUI.py:1965 msgid "Snap to grid" msgstr "Am Raster ausrichten" -#: flatcamGUI/FlatCAMGUI.py:739 flatcamGUI/FlatCAMGUI.py:1961 +#: flatcamGUI/FlatCAMGUI.py:742 flatcamGUI/FlatCAMGUI.py:1968 msgid "Grid X snapping distance" msgstr "Raster X Fangdistanz" -#: flatcamGUI/FlatCAMGUI.py:744 flatcamGUI/FlatCAMGUI.py:1966 +#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/FlatCAMGUI.py:1973 msgid "Grid Y snapping distance" msgstr "Raster Y Fangdistanz" -#: flatcamGUI/FlatCAMGUI.py:750 flatcamGUI/FlatCAMGUI.py:1972 +#: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:1979 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." @@ -4528,64 +4555,64 @@ msgstr "" "Wenn aktiv, Wert auf Grid_X\n" "wird in den Wert von Grid_Y kopiert." -#: flatcamGUI/FlatCAMGUI.py:756 flatcamGUI/FlatCAMGUI.py:1978 +#: flatcamGUI/FlatCAMGUI.py:759 flatcamGUI/FlatCAMGUI.py:1985 msgid "Snap to corner" msgstr "In der Ecke ausrichten" -#: flatcamGUI/FlatCAMGUI.py:760 flatcamGUI/FlatCAMGUI.py:1982 -#: flatcamGUI/FlatCAMGUI.py:3339 +#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:1989 +#: flatcamGUI/FlatCAMGUI.py:3346 msgid "Max. magnet distance" msgstr "Max. Magnetabstand" -#: flatcamGUI/FlatCAMGUI.py:788 flatcamGUI/FlatCAMGUI.py:1586 +#: flatcamGUI/FlatCAMGUI.py:791 flatcamGUI/FlatCAMGUI.py:1589 msgid "Project" msgstr "Projekt" -#: flatcamGUI/FlatCAMGUI.py:798 +#: flatcamGUI/FlatCAMGUI.py:801 msgid "Selected" msgstr "Ausgewählt" -#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:825 +#: flatcamGUI/FlatCAMGUI.py:820 flatcamGUI/FlatCAMGUI.py:828 msgid "Plot Area" msgstr "Grundstücksfläche" -#: flatcamGUI/FlatCAMGUI.py:849 +#: flatcamGUI/FlatCAMGUI.py:852 msgid "General" msgstr "Allgemeines" -#: flatcamGUI/FlatCAMGUI.py:858 +#: flatcamGUI/FlatCAMGUI.py:861 msgid "APP. DEFAULTS" msgstr "Anwendungsvorgaben" -#: flatcamGUI/FlatCAMGUI.py:859 +#: flatcamGUI/FlatCAMGUI.py:862 msgid "PROJ. OPTIONS " msgstr "Projektoptionen" -#: flatcamGUI/FlatCAMGUI.py:870 +#: flatcamGUI/FlatCAMGUI.py:873 msgid "GERBER" msgstr "GERBER" -#: flatcamGUI/FlatCAMGUI.py:879 +#: flatcamGUI/FlatCAMGUI.py:882 msgid "EXCELLON" msgstr "EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:888 +#: flatcamGUI/FlatCAMGUI.py:891 msgid "GEOMETRY" msgstr "GEOMETRY" -#: flatcamGUI/FlatCAMGUI.py:898 +#: flatcamGUI/FlatCAMGUI.py:901 msgid "CNC-JOB" msgstr "CNC-Auftrag" -#: flatcamGUI/FlatCAMGUI.py:907 +#: flatcamGUI/FlatCAMGUI.py:910 msgid "TOOLS" msgstr "WERKZEUGE" -#: flatcamGUI/FlatCAMGUI.py:924 +#: flatcamGUI/FlatCAMGUI.py:927 msgid "Import Preferences" msgstr "Importeinstellungen" -#: flatcamGUI/FlatCAMGUI.py:927 +#: flatcamGUI/FlatCAMGUI.py:930 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -4600,11 +4627,11 @@ msgstr "" "FlatCAM speichert automatisch eine 'factory_defaults'-Datei\n" "beim ersten Start. Löschen Sie diese Datei nicht." -#: flatcamGUI/FlatCAMGUI.py:934 +#: flatcamGUI/FlatCAMGUI.py:937 msgid "Export Preferences" msgstr "Voreinstell. export." -#: flatcamGUI/FlatCAMGUI.py:937 +#: flatcamGUI/FlatCAMGUI.py:940 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." @@ -4613,20 +4640,20 @@ msgstr "" "Datei\n" "das ist auf der Festplatte gespeichert." -#: flatcamGUI/FlatCAMGUI.py:942 +#: flatcamGUI/FlatCAMGUI.py:945 msgid "Open Pref Folder" msgstr "Öffnen Sie \"Einstell.\"" -#: flatcamGUI/FlatCAMGUI.py:945 +#: flatcamGUI/FlatCAMGUI.py:948 msgid "Open the folder where FlatCAM save the preferences files." msgstr "" "Öffnen Sie den Ordner, in dem FlatCAM die Voreinstellungsdateien speichert." -#: flatcamGUI/FlatCAMGUI.py:953 +#: flatcamGUI/FlatCAMGUI.py:956 msgid "Save Preferences" msgstr "Voreinstell. speech." -#: flatcamGUI/FlatCAMGUI.py:956 +#: flatcamGUI/FlatCAMGUI.py:959 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." @@ -4634,7 +4661,7 @@ msgstr "" "Speichern Sie die aktuellen Einstellungen in der Datei 'current_defaults'\n" "Dies ist die Datei, in der die Arbeitseinstellungen gespeichert sind." -#: flatcamGUI/FlatCAMGUI.py:982 +#: flatcamGUI/FlatCAMGUI.py:985 msgid "" "General Shortcut list
\n" " Editor Shortcut list
\n" "
\n" @@ -5833,99 +5860,99 @@ msgstr "" "
\n" " " -#: flatcamGUI/FlatCAMGUI.py:1579 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Disable" msgstr "Deaktivieren" -#: flatcamGUI/FlatCAMGUI.py:1581 +#: flatcamGUI/FlatCAMGUI.py:1584 msgid "New" msgstr "Neu" -#: flatcamGUI/FlatCAMGUI.py:1582 +#: flatcamGUI/FlatCAMGUI.py:1585 msgid "Geometry" msgstr "Geometrie" -#: flatcamGUI/FlatCAMGUI.py:1584 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Excellon" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1589 +#: flatcamGUI/FlatCAMGUI.py:1592 msgid "Grids" msgstr "Raster" -#: flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "View" msgstr "Aussicht" -#: flatcamGUI/FlatCAMGUI.py:1593 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Clear Plot" msgstr "Plot klar löschen" -#: flatcamGUI/FlatCAMGUI.py:1594 +#: flatcamGUI/FlatCAMGUI.py:1597 msgid "Replot" msgstr "Replotieren" -#: flatcamGUI/FlatCAMGUI.py:1597 +#: flatcamGUI/FlatCAMGUI.py:1600 msgid "Geo Editor" msgstr "Geo-Editor" -#: flatcamGUI/FlatCAMGUI.py:1598 +#: flatcamGUI/FlatCAMGUI.py:1601 msgid "Line" msgstr "Linie" -#: flatcamGUI/FlatCAMGUI.py:1599 +#: flatcamGUI/FlatCAMGUI.py:1602 msgid "Rectangle" msgstr "Rechteck" -#: flatcamGUI/FlatCAMGUI.py:1600 +#: flatcamGUI/FlatCAMGUI.py:1603 msgid "Cut" msgstr "Schnitt" -#: flatcamGUI/FlatCAMGUI.py:1605 +#: flatcamGUI/FlatCAMGUI.py:1608 msgid "Pad" msgstr "Pad" -#: flatcamGUI/FlatCAMGUI.py:1606 +#: flatcamGUI/FlatCAMGUI.py:1609 msgid "Pad Array" msgstr "Pad-Array" -#: flatcamGUI/FlatCAMGUI.py:1607 +#: flatcamGUI/FlatCAMGUI.py:1610 msgid "Track" msgstr "Track" -#: flatcamGUI/FlatCAMGUI.py:1608 +#: flatcamGUI/FlatCAMGUI.py:1611 msgid "Region" msgstr "Region" -#: flatcamGUI/FlatCAMGUI.py:1610 +#: flatcamGUI/FlatCAMGUI.py:1613 msgid "Exc Editor" msgstr "Exc-Editor" -#: flatcamGUI/FlatCAMGUI.py:1611 +#: flatcamGUI/FlatCAMGUI.py:1614 msgid "Add Drill" msgstr "Bohrer hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:1643 +#: flatcamGUI/FlatCAMGUI.py:1646 msgid "Print Preview" msgstr "Druckvorschau" -#: flatcamGUI/FlatCAMGUI.py:1644 +#: flatcamGUI/FlatCAMGUI.py:1647 msgid "Print Code" msgstr "Code drucken" -#: flatcamGUI/FlatCAMGUI.py:1645 +#: flatcamGUI/FlatCAMGUI.py:1648 msgid "Find in Code" msgstr "Im Code suchen" -#: flatcamGUI/FlatCAMGUI.py:1650 +#: flatcamGUI/FlatCAMGUI.py:1653 msgid "Replace With" msgstr "Ersetzen mit" -#: flatcamGUI/FlatCAMGUI.py:1654 +#: flatcamGUI/FlatCAMGUI.py:1657 msgid "All" msgstr "Alles" -#: flatcamGUI/FlatCAMGUI.py:1656 +#: flatcamGUI/FlatCAMGUI.py:1659 msgid "" "When checked it will replace all instances in the 'Find' box\n" "with the text in the 'Replace' box.." @@ -5934,15 +5961,15 @@ msgstr "" "ersetzt\n" "mit dem Text im Feld \"Ersetzen\" .." -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1662 msgid "Open Code" msgstr "Code öffnen" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1663 msgid "Save Code" msgstr "Code speichern" -#: flatcamGUI/FlatCAMGUI.py:1695 +#: flatcamGUI/FlatCAMGUI.py:1698 msgid "" "Relative neasurement.\n" "Reference is last click position" @@ -5950,7 +5977,7 @@ msgstr "" "Relative Messung\n" "Referenz ist Position des letzten Klicks" -#: flatcamGUI/FlatCAMGUI.py:1701 +#: flatcamGUI/FlatCAMGUI.py:1704 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" @@ -5958,23 +5985,23 @@ msgstr "" "Absolute Messung.\n" "Referenz ist (X = 0, Y = 0)" -#: flatcamGUI/FlatCAMGUI.py:1896 +#: flatcamGUI/FlatCAMGUI.py:1899 msgid "Select 'Esc'" msgstr "Wählen" -#: flatcamGUI/FlatCAMGUI.py:1921 +#: flatcamGUI/FlatCAMGUI.py:1926 msgid "Copy Objects" msgstr "Objekte kopieren" -#: flatcamGUI/FlatCAMGUI.py:1923 +#: flatcamGUI/FlatCAMGUI.py:1928 msgid "Delete Shape" msgstr "Form löschen" -#: flatcamGUI/FlatCAMGUI.py:1928 +#: flatcamGUI/FlatCAMGUI.py:1933 msgid "Move Objects" msgstr "Objekte verschieben" -#: flatcamGUI/FlatCAMGUI.py:2358 +#: flatcamGUI/FlatCAMGUI.py:2365 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -5986,17 +6013,17 @@ msgstr "" "aus dem ersten Artikel. Zum Schluss drücken Sie die Taste ~ X ~ oder\n" "die Symbolleisten-Schaltfläche." -#: flatcamGUI/FlatCAMGUI.py:2365 flatcamGUI/FlatCAMGUI.py:2502 -#: flatcamGUI/FlatCAMGUI.py:2561 flatcamGUI/FlatCAMGUI.py:2581 +#: flatcamGUI/FlatCAMGUI.py:2372 flatcamGUI/FlatCAMGUI.py:2509 +#: flatcamGUI/FlatCAMGUI.py:2568 flatcamGUI/FlatCAMGUI.py:2588 msgid "Warning" msgstr "Warnung" -#: flatcamGUI/FlatCAMGUI.py:2432 flatcamGUI/FlatCAMGUI.py:2631 -#: flatcamGUI/FlatCAMGUI.py:2842 +#: flatcamGUI/FlatCAMGUI.py:2439 flatcamGUI/FlatCAMGUI.py:2638 +#: flatcamGUI/FlatCAMGUI.py:2849 msgid "[WARNING_NOTCL] Cancelled." msgstr "[WARNING_NOTCL] Abgebrochen." -#: flatcamGUI/FlatCAMGUI.py:2497 +#: flatcamGUI/FlatCAMGUI.py:2504 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." @@ -6004,7 +6031,7 @@ msgstr "" "Bitte wählen Sie Geometrieelemente aus\n" "auf dem das Verschneidungswerkzeug ausgeführt werden soll." -#: flatcamGUI/FlatCAMGUI.py:2556 +#: flatcamGUI/FlatCAMGUI.py:2563 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." @@ -6012,7 +6039,7 @@ msgstr "" "Bitte wählen Sie Geometrieelemente aus\n" "auf dem das Subtraktionswerkzeug ausgeführt werden soll." -#: flatcamGUI/FlatCAMGUI.py:2576 +#: flatcamGUI/FlatCAMGUI.py:2583 msgid "" "Please select geometry items \n" "on which to perform union." @@ -6020,55 +6047,55 @@ msgstr "" "Bitte wählen Sie Geometrieelemente aus\n" "auf dem die Polygonverbindung ausgeführt werden soll." -#: flatcamGUI/FlatCAMGUI.py:2647 flatcamGUI/FlatCAMGUI.py:2859 +#: flatcamGUI/FlatCAMGUI.py:2654 flatcamGUI/FlatCAMGUI.py:2866 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete." msgstr "[WARNING_NOTCL] Abgebrochen. Nichts zum Löschen ausgewählt." -#: flatcamGUI/FlatCAMGUI.py:2731 flatcamGUI/FlatCAMGUI.py:2926 +#: flatcamGUI/FlatCAMGUI.py:2738 flatcamGUI/FlatCAMGUI.py:2933 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy." msgstr "[WARNING_NOTCL] Abgebrochen. Nichts zum Kopieren ausgewählt." -#: flatcamGUI/FlatCAMGUI.py:2777 flatcamGUI/FlatCAMGUI.py:2972 +#: flatcamGUI/FlatCAMGUI.py:2784 flatcamGUI/FlatCAMGUI.py:2979 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move." msgstr "[WARNING_NOTCL] Abgebrochen. Nichts ausgewählt, um sich zu bewegen." -#: flatcamGUI/FlatCAMGUI.py:2986 +#: flatcamGUI/FlatCAMGUI.py:2993 msgid "New Tool ..." msgstr "Neues Werkzeug ..." -#: flatcamGUI/FlatCAMGUI.py:2987 +#: flatcamGUI/FlatCAMGUI.py:2994 msgid "Enter a Tool Diameter:" msgstr "Geben Sie einen Werkzeugdurchmesser ein:" -#: flatcamGUI/FlatCAMGUI.py:3029 +#: flatcamGUI/FlatCAMGUI.py:3036 msgid "Measurement Tool exit..." msgstr "Messwerkzeug beenden ..." -#: flatcamGUI/FlatCAMGUI.py:3324 +#: flatcamGUI/FlatCAMGUI.py:3331 msgid "Grid X value:" msgstr "Raster X-Wert:" -#: flatcamGUI/FlatCAMGUI.py:3326 +#: flatcamGUI/FlatCAMGUI.py:3333 msgid "This is the Grid snap value on X axis." msgstr "Dies ist der Rasterfangwert auf der X-Achse." -#: flatcamGUI/FlatCAMGUI.py:3331 +#: flatcamGUI/FlatCAMGUI.py:3338 msgid "Grid Y value:" msgstr "Raster Y-Wert:" -#: flatcamGUI/FlatCAMGUI.py:3333 +#: flatcamGUI/FlatCAMGUI.py:3340 msgid "This is the Grid snap value on Y axis." msgstr "Dies ist der Rasterfangwert auf der Y-Achse." -#: flatcamGUI/FlatCAMGUI.py:3338 +#: flatcamGUI/FlatCAMGUI.py:3345 msgid "Snap Max:" msgstr "Maximalwert:" -#: flatcamGUI/FlatCAMGUI.py:3343 +#: flatcamGUI/FlatCAMGUI.py:3350 msgid "Workspace:" msgstr "Arbeitsplatz:" -#: flatcamGUI/FlatCAMGUI.py:3345 +#: flatcamGUI/FlatCAMGUI.py:3352 msgid "" "Draw a delimiting rectangle on canvas.\n" "The purpose is to illustrate the limits for our work." @@ -6076,11 +6103,11 @@ msgstr "" "Zeichnen Sie ein begrenzendes Rechteck auf die Leinwand.\n" "Ziel ist es, die Grenzen unserer Arbeit aufzuzeigen." -#: flatcamGUI/FlatCAMGUI.py:3348 +#: flatcamGUI/FlatCAMGUI.py:3355 msgid "Wk. format:" msgstr "Arbeitsbereichformat:" -#: flatcamGUI/FlatCAMGUI.py:3350 +#: flatcamGUI/FlatCAMGUI.py:3357 msgid "" "Select the type of rectangle to be used on canvas,\n" "as valid workspace." @@ -6088,11 +6115,11 @@ msgstr "" "Wählen Sie den Typ des Rechtecks für die Leinwand aus.\n" "als gültiger Arbeitsbereich." -#: flatcamGUI/FlatCAMGUI.py:3363 +#: flatcamGUI/FlatCAMGUI.py:3370 msgid "Plot Fill:" msgstr "Plot füllen:" -#: flatcamGUI/FlatCAMGUI.py:3365 +#: flatcamGUI/FlatCAMGUI.py:3372 msgid "" "Set the fill color for plotted objects.\n" "First 6 digits are the color and the last 2\n" @@ -6102,28 +6129,28 @@ msgstr "" "Die ersten 6 Ziffern sind die Farbe und die letzten 2\n" "Ziffern sind für Alpha (Transparenz)." -#: flatcamGUI/FlatCAMGUI.py:3379 flatcamGUI/FlatCAMGUI.py:3429 -#: flatcamGUI/FlatCAMGUI.py:3479 +#: flatcamGUI/FlatCAMGUI.py:3386 flatcamGUI/FlatCAMGUI.py:3436 +#: flatcamGUI/FlatCAMGUI.py:3486 msgid "Alpha Level:" msgstr "Alpha-Ebene:" -#: flatcamGUI/FlatCAMGUI.py:3381 +#: flatcamGUI/FlatCAMGUI.py:3388 msgid "Set the fill transparency for plotted objects." msgstr "Legen Sie die Füllungstransparenz für geplottete Objekte fest." -#: flatcamGUI/FlatCAMGUI.py:3398 +#: flatcamGUI/FlatCAMGUI.py:3405 msgid "Plot Line:" msgstr "Handlungsstrang:" -#: flatcamGUI/FlatCAMGUI.py:3400 +#: flatcamGUI/FlatCAMGUI.py:3407 msgid "Set the line color for plotted objects." msgstr "Legen Sie die Linienfarbe für geplottete Objekte fest." -#: flatcamGUI/FlatCAMGUI.py:3412 +#: flatcamGUI/FlatCAMGUI.py:3419 msgid "Sel. Fill:" msgstr "Ausgewählte Füllung:" -#: flatcamGUI/FlatCAMGUI.py:3414 +#: flatcamGUI/FlatCAMGUI.py:3421 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from left to right.\n" @@ -6135,26 +6162,26 @@ msgstr "" "Die ersten 6 Ziffern sind die Farbe und die letzten 2\n" "Ziffern sind für Alpha (Transparenz)." -#: flatcamGUI/FlatCAMGUI.py:3431 +#: flatcamGUI/FlatCAMGUI.py:3438 msgid "Set the fill transparency for the 'left to right' selection box." msgstr "" "Legen Sie die Füllungstransparenz für das Auswahlfeld \"von links nach rechts" "\" fest." -#: flatcamGUI/FlatCAMGUI.py:3448 +#: flatcamGUI/FlatCAMGUI.py:3455 msgid "Sel. Line:" msgstr "Auswahlzeile:" -#: flatcamGUI/FlatCAMGUI.py:3450 +#: flatcamGUI/FlatCAMGUI.py:3457 msgid "Set the line color for the 'left to right' selection box." msgstr "" "Legen Sie die Linienfarbe für das Auswahlfeld \"von links nach rechts\" fest." -#: flatcamGUI/FlatCAMGUI.py:3462 +#: flatcamGUI/FlatCAMGUI.py:3469 msgid "Sel2. Fill:" msgstr "Auswahl2 Füllung:" -#: flatcamGUI/FlatCAMGUI.py:3464 +#: flatcamGUI/FlatCAMGUI.py:3471 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from right to left.\n" @@ -6166,49 +6193,49 @@ msgstr "" "Die ersten 6 Ziffern sind die Farbe und die letzten 2\n" "Ziffern sind für Alpha (Transparenz)." -#: flatcamGUI/FlatCAMGUI.py:3481 +#: flatcamGUI/FlatCAMGUI.py:3488 msgid "Set the fill transparency for selection 'right to left' box." msgstr "" "Legen Sie die Füllungstransparenz für die Auswahl von rechts nach links fest." -#: flatcamGUI/FlatCAMGUI.py:3498 +#: flatcamGUI/FlatCAMGUI.py:3505 msgid "Sel2. Line:" msgstr "Auswahl 2 Zeile:" -#: flatcamGUI/FlatCAMGUI.py:3500 +#: flatcamGUI/FlatCAMGUI.py:3507 msgid "Set the line color for the 'right to left' selection box." msgstr "" "Legen Sie die Linienfarbe für das Auswahlfeld 'von rechts nach links' fest." -#: flatcamGUI/FlatCAMGUI.py:3512 +#: flatcamGUI/FlatCAMGUI.py:3519 msgid "Editor Draw:" msgstr "Editor zeichnen:" -#: flatcamGUI/FlatCAMGUI.py:3514 +#: flatcamGUI/FlatCAMGUI.py:3521 msgid "Set the color for the shape." msgstr "Legen Sie die Farbe für die Form fest." -#: flatcamGUI/FlatCAMGUI.py:3526 +#: flatcamGUI/FlatCAMGUI.py:3533 msgid "Editor Draw Sel.:" msgstr "Editor Draw Sel.:" -#: flatcamGUI/FlatCAMGUI.py:3528 +#: flatcamGUI/FlatCAMGUI.py:3535 msgid "Set the color of the shape when selected." msgstr "Legt die Farbe der Form fest, wenn sie ausgewählt wird." -#: flatcamGUI/FlatCAMGUI.py:3540 +#: flatcamGUI/FlatCAMGUI.py:3547 msgid "Project Items:" msgstr "Projektelemente:" -#: flatcamGUI/FlatCAMGUI.py:3542 +#: flatcamGUI/FlatCAMGUI.py:3549 msgid "Set the color of the items in Project Tab Tree." msgstr "Legen Sie die Farbe der Elemente im Projektregisterbaum fest." -#: flatcamGUI/FlatCAMGUI.py:3553 +#: flatcamGUI/FlatCAMGUI.py:3560 msgid "Proj. Dis. Items:" msgstr "Proj. Deakt. Elemente" -#: flatcamGUI/FlatCAMGUI.py:3555 +#: flatcamGUI/FlatCAMGUI.py:3562 msgid "" "Set the color of the items in Project Tab Tree,\n" "for the case when the items are disabled." @@ -6216,15 +6243,15 @@ msgstr "" "Legen Sie die Farbe der Elemente in der Projektregisterkarte fest.\n" "für den Fall, wenn die Elemente deaktiviert sind." -#: flatcamGUI/FlatCAMGUI.py:3606 +#: flatcamGUI/FlatCAMGUI.py:3613 msgid "GUI Settings" msgstr "GUI-Einstellungen" -#: flatcamGUI/FlatCAMGUI.py:3613 +#: flatcamGUI/FlatCAMGUI.py:3620 msgid "Layout:" msgstr "Layout:" -#: flatcamGUI/FlatCAMGUI.py:3615 +#: flatcamGUI/FlatCAMGUI.py:3622 msgid "" "Select an layout for FlatCAM.\n" "It is applied immediately." @@ -6232,11 +6259,11 @@ msgstr "" "Wählen Sie ein Layout für FlatCAM.\n" "Es wird sofort angewendet." -#: flatcamGUI/FlatCAMGUI.py:3631 +#: flatcamGUI/FlatCAMGUI.py:3638 msgid "Style:" msgstr "Stil:" -#: flatcamGUI/FlatCAMGUI.py:3633 +#: flatcamGUI/FlatCAMGUI.py:3640 msgid "" "Select an style for FlatCAM.\n" "It will be applied at the next app start." @@ -6244,11 +6271,11 @@ msgstr "" "Wählen Sie einen Stil für FlatCAM.\n" "Es wird beim nächsten Start der App angewendet." -#: flatcamGUI/FlatCAMGUI.py:3644 +#: flatcamGUI/FlatCAMGUI.py:3651 msgid "HDPI Support:" msgstr "HDPI-Unterstützung:" -#: flatcamGUI/FlatCAMGUI.py:3646 +#: flatcamGUI/FlatCAMGUI.py:3653 msgid "" "Enable High DPI support for FlatCAM.\n" "It will be applied at the next app start." @@ -6256,11 +6283,11 @@ msgstr "" "Aktivieren Sie die High DPI-Unterstützung für FlatCAM.\n" "Es wird beim nächsten Start der App angewendet." -#: flatcamGUI/FlatCAMGUI.py:3659 +#: flatcamGUI/FlatCAMGUI.py:3666 msgid "Clear GUI Settings:" msgstr "GUI-Einstellungen löschen:" -#: flatcamGUI/FlatCAMGUI.py:3661 +#: flatcamGUI/FlatCAMGUI.py:3668 msgid "" "Clear the GUI settings for FlatCAM,\n" "such as: layout, gui state, style, hdpi support etc." @@ -6268,15 +6295,15 @@ msgstr "" "Löschen Sie die GUI-Einstellungen für FlatCAM.\n" "wie zum Beispiel: Layout, GUI-Status, Stil, HDPI-Unterstützung usw." -#: flatcamGUI/FlatCAMGUI.py:3664 +#: flatcamGUI/FlatCAMGUI.py:3671 msgid "Clear" msgstr "Klären" -#: flatcamGUI/FlatCAMGUI.py:3668 +#: flatcamGUI/FlatCAMGUI.py:3675 msgid "Hover Shape:" msgstr "Schwebeflug-Form:" -#: flatcamGUI/FlatCAMGUI.py:3670 +#: flatcamGUI/FlatCAMGUI.py:3677 msgid "" "Enable display of a hover shape for FlatCAM objects.\n" "It is displayed whenever the mouse cursor is hovering\n" @@ -6286,11 +6313,11 @@ msgstr "" "Es wird angezeigt, wenn sich der Mauszeiger in der Maus befindet\n" "über jede Art von nicht ausgewähltem Objekt." -#: flatcamGUI/FlatCAMGUI.py:3677 +#: flatcamGUI/FlatCAMGUI.py:3684 msgid "Sel. Shape:" msgstr "Auswahlform:" -#: flatcamGUI/FlatCAMGUI.py:3679 +#: flatcamGUI/FlatCAMGUI.py:3686 msgid "" "Enable the display of a selection shape for FlatCAM objects.\n" "It is displayed whenever the mouse selects an object\n" @@ -6302,23 +6329,23 @@ msgstr "" "entweder durch Klicken oder Ziehen der Maus von links nach rechts oder\n" "rechts nach links." -#: flatcamGUI/FlatCAMGUI.py:3721 +#: flatcamGUI/FlatCAMGUI.py:3728 msgid "Are you sure you want to delete the GUI Settings? \n" msgstr "Möchten Sie die GUI-Einstellungen wirklich löschen?\n" -#: flatcamGUI/FlatCAMGUI.py:3724 +#: flatcamGUI/FlatCAMGUI.py:3731 msgid "Clear GUI Settings" msgstr "Löschen Sie die GUI-Einstellungen" -#: flatcamGUI/FlatCAMGUI.py:3745 +#: flatcamGUI/FlatCAMGUI.py:3752 msgid "App Preferences" msgstr "App-Einstellungen" -#: flatcamGUI/FlatCAMGUI.py:3751 +#: flatcamGUI/FlatCAMGUI.py:3758 msgid "Units:" msgstr "Einheiten:" -#: flatcamGUI/FlatCAMGUI.py:3752 +#: flatcamGUI/FlatCAMGUI.py:3759 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" @@ -6328,11 +6355,11 @@ msgstr "" "Was hier ausgewählt wird, wird jedes Mal eingestellt\n" "FLatCAM wird gestartet." -#: flatcamGUI/FlatCAMGUI.py:3759 +#: flatcamGUI/FlatCAMGUI.py:3766 msgid "APP. LEVEL:" msgstr "Bewerbungsebene:" -#: flatcamGUI/FlatCAMGUI.py:3760 +#: flatcamGUI/FlatCAMGUI.py:3767 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -6348,19 +6375,19 @@ msgstr "" "Die Auswahl hier beeinflusst die Parameter in\n" "Die Registerkarte Ausgewählt für alle Arten von FlatCAM-Objekten." -#: flatcamGUI/FlatCAMGUI.py:3769 +#: flatcamGUI/FlatCAMGUI.py:3776 msgid "Languages:" msgstr "Sprachen:" -#: flatcamGUI/FlatCAMGUI.py:3770 +#: flatcamGUI/FlatCAMGUI.py:3777 msgid "Set the language used throughout FlatCAM." msgstr "Stellen Sie die Sprache ein, die in FlatCAM verwendet wird." -#: flatcamGUI/FlatCAMGUI.py:3773 +#: flatcamGUI/FlatCAMGUI.py:3780 msgid "Apply Language" msgstr "Sprache anwend." -#: flatcamGUI/FlatCAMGUI.py:3774 +#: flatcamGUI/FlatCAMGUI.py:3781 msgid "" "Set the language used throughout FlatCAM.\n" "The app will restart after click.Windows: When FlatCAM is installed in " @@ -6379,11 +6406,11 @@ msgstr "" "Sicherheitsfunktionen. In diesem Fall wird die Sprache sein\n" "Beim nächsten Start der App angewendet." -#: flatcamGUI/FlatCAMGUI.py:3783 +#: flatcamGUI/FlatCAMGUI.py:3790 msgid "Shell at StartUp:" msgstr "Shell beim Start:" -#: flatcamGUI/FlatCAMGUI.py:3785 flatcamGUI/FlatCAMGUI.py:3790 +#: flatcamGUI/FlatCAMGUI.py:3792 flatcamGUI/FlatCAMGUI.py:3797 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." @@ -6391,11 +6418,11 @@ msgstr "" "Aktivieren Sie dieses Kontrollkästchen, wenn die Shell gewünscht wird\n" "automatisch beim Start starten" -#: flatcamGUI/FlatCAMGUI.py:3795 +#: flatcamGUI/FlatCAMGUI.py:3802 msgid "Version Check:" msgstr "Versionsprüfung:" -#: flatcamGUI/FlatCAMGUI.py:3797 flatcamGUI/FlatCAMGUI.py:3802 +#: flatcamGUI/FlatCAMGUI.py:3804 flatcamGUI/FlatCAMGUI.py:3809 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." @@ -6404,11 +6431,11 @@ msgstr "" "wenn Sie das Kontrollkästchen aktivieren möchten\n" "für eine neue Version automatisch beim Start." -#: flatcamGUI/FlatCAMGUI.py:3807 +#: flatcamGUI/FlatCAMGUI.py:3814 msgid "Send Stats:" msgstr "Statistiken senden:" -#: flatcamGUI/FlatCAMGUI.py:3809 flatcamGUI/FlatCAMGUI.py:3814 +#: flatcamGUI/FlatCAMGUI.py:3816 flatcamGUI/FlatCAMGUI.py:3821 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." @@ -6417,11 +6444,11 @@ msgstr "" "zustimmen\n" "wird beim Start automatisch aktualisiert, um FlatCAM zu verbessern." -#: flatcamGUI/FlatCAMGUI.py:3821 +#: flatcamGUI/FlatCAMGUI.py:3828 msgid "Pan Button:" msgstr "Pan-Taste:" -#: flatcamGUI/FlatCAMGUI.py:3822 +#: flatcamGUI/FlatCAMGUI.py:3829 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" @@ -6431,19 +6458,19 @@ msgstr "" "- MMB -> Mittlere Maustaste\n" "- RMB -> Rechte Maustaste" -#: flatcamGUI/FlatCAMGUI.py:3829 +#: flatcamGUI/FlatCAMGUI.py:3836 msgid "Multiple Sel:" msgstr "Mehrfachauswahl:" -#: flatcamGUI/FlatCAMGUI.py:3830 +#: flatcamGUI/FlatCAMGUI.py:3837 msgid "Select the key used for multiple selection." msgstr "Wählen Sie den Schlüssel für die Mehrfachauswahl aus." -#: flatcamGUI/FlatCAMGUI.py:3835 +#: flatcamGUI/FlatCAMGUI.py:3842 msgid "Project at StartUp:" msgstr "Projekt beim Start:" -#: flatcamGUI/FlatCAMGUI.py:3837 flatcamGUI/FlatCAMGUI.py:3842 +#: flatcamGUI/FlatCAMGUI.py:3844 flatcamGUI/FlatCAMGUI.py:3849 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." @@ -6453,11 +6480,11 @@ msgstr "" "angezeigt werden soll\n" "beim Start automatisch angezeigt werden." -#: flatcamGUI/FlatCAMGUI.py:3847 +#: flatcamGUI/FlatCAMGUI.py:3854 msgid "Project AutoHide:" msgstr "Projekt autoausblenden:" -#: flatcamGUI/FlatCAMGUI.py:3849 flatcamGUI/FlatCAMGUI.py:3855 +#: flatcamGUI/FlatCAMGUI.py:3856 flatcamGUI/FlatCAMGUI.py:3862 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "hide automatically when there are no objects loaded and\n" @@ -6469,11 +6496,11 @@ msgstr "" "keine Objekte geladen sind und anzeigen, wenn ein \n" "neues Objekt erstellt wird." -#: flatcamGUI/FlatCAMGUI.py:3861 +#: flatcamGUI/FlatCAMGUI.py:3868 msgid "Enable ToolTips:" msgstr " QuickInfos aktivieren: " -#: flatcamGUI/FlatCAMGUI.py:3863 flatcamGUI/FlatCAMGUI.py:3868 +#: flatcamGUI/FlatCAMGUI.py:3870 flatcamGUI/FlatCAMGUI.py:3875 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." @@ -6482,11 +6509,11 @@ msgstr "" "sollen\n" "wenn Sie mit der Maus über Elemente in der App fahren." -#: flatcamGUI/FlatCAMGUI.py:3871 +#: flatcamGUI/FlatCAMGUI.py:3878 msgid "Workers number:" msgstr "Arbeiter Nummer:" -#: flatcamGUI/FlatCAMGUI.py:3873 flatcamGUI/FlatCAMGUI.py:3882 +#: flatcamGUI/FlatCAMGUI.py:3880 flatcamGUI/FlatCAMGUI.py:3889 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -6502,7 +6529,7 @@ msgstr "" "Der Standardwert ist 2.\n" "Nach dem Ändern wird es beim nächsten Start der App angewendet." -#: flatcamGUI/FlatCAMGUI.py:3894 flatcamGUI/FlatCAMGUI.py:3903 +#: flatcamGUI/FlatCAMGUI.py:3901 flatcamGUI/FlatCAMGUI.py:3910 msgid "" "This value can counter the effect of the Circle Steps\n" "parameter. Default value is 0.01.\n" @@ -6518,11 +6545,11 @@ msgstr "" "Performance. Ein höherer Wert bietet mehr\n" "Leistung auf Kosten des Detaillierungsgrades." -#: flatcamGUI/FlatCAMGUI.py:3939 +#: flatcamGUI/FlatCAMGUI.py:3946 msgid "\"Open\" behavior" msgstr "\"Offen\" -Verhalten" -#: flatcamGUI/FlatCAMGUI.py:3941 +#: flatcamGUI/FlatCAMGUI.py:3948 msgid "" "When checked the path for the last saved file is used when saving files,\n" "and the path for the last opened file is used when opening files.\n" @@ -6539,11 +6566,11 @@ msgstr "" "Dateien zuletzt verwendet: entweder der Pfad\n" "Pfad zum Speichern von Dateien oder Pfad zum Öffnen von Dateien." -#: flatcamGUI/FlatCAMGUI.py:3950 +#: flatcamGUI/FlatCAMGUI.py:3957 msgid "Save Compressed Project" msgstr "Speichern Sie das komprimierte Projekt" -#: flatcamGUI/FlatCAMGUI.py:3952 +#: flatcamGUI/FlatCAMGUI.py:3959 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." @@ -6553,11 +6580,11 @@ msgstr "" "Wenn diese Option aktiviert ist, wird ein komprimiertes FlatCAM-Projekt " "gespeichert." -#: flatcamGUI/FlatCAMGUI.py:3963 +#: flatcamGUI/FlatCAMGUI.py:3970 msgid "Compression Level:" msgstr "Kompressionsstufe:" -#: flatcamGUI/FlatCAMGUI.py:3965 +#: flatcamGUI/FlatCAMGUI.py:3972 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" @@ -6567,47 +6594,47 @@ msgstr "" "ein FlatCAM-Projekt. Ein höherer Wert bedeutet eine bessere Komprimierung\n" "erfordern jedoch mehr RAM-Auslastung und mehr Verarbeitungszeit." -#: flatcamGUI/FlatCAMGUI.py:3991 flatcamGUI/FlatCAMGUI.py:4360 -#: flatcamGUI/FlatCAMGUI.py:5030 flatcamGUI/FlatCAMGUI.py:5402 +#: flatcamGUI/FlatCAMGUI.py:3998 flatcamGUI/FlatCAMGUI.py:4367 +#: flatcamGUI/FlatCAMGUI.py:5037 flatcamGUI/FlatCAMGUI.py:5409 #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:505 #: flatcamGUI/ObjectUI.py:833 flatcamGUI/ObjectUI.py:1350 msgid "Plot Options:" msgstr " Diagrammoptionen: " -#: flatcamGUI/FlatCAMGUI.py:3998 flatcamGUI/FlatCAMGUI.py:4372 +#: flatcamGUI/FlatCAMGUI.py:4005 flatcamGUI/FlatCAMGUI.py:4379 #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:506 msgid "Solid" msgstr "Solide" -#: flatcamGUI/FlatCAMGUI.py:4000 flatcamGUI/ObjectUI.py:158 +#: flatcamGUI/FlatCAMGUI.py:4007 flatcamGUI/ObjectUI.py:158 msgid "Solid color polygons." msgstr "Einfarbige Polygone." -#: flatcamGUI/FlatCAMGUI.py:4005 flatcamGUI/ObjectUI.py:164 +#: flatcamGUI/FlatCAMGUI.py:4012 flatcamGUI/ObjectUI.py:164 msgid "M-Color" msgstr "M-farbig" -#: flatcamGUI/FlatCAMGUI.py:4007 flatcamGUI/ObjectUI.py:166 +#: flatcamGUI/FlatCAMGUI.py:4014 flatcamGUI/ObjectUI.py:166 msgid "Draw polygons in different colors." msgstr "Zeichnen Sie Polygone in verschiedenen Farben." -#: flatcamGUI/FlatCAMGUI.py:4012 flatcamGUI/FlatCAMGUI.py:4366 -#: flatcamGUI/FlatCAMGUI.py:5034 flatcamGUI/ObjectUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:4019 flatcamGUI/FlatCAMGUI.py:4373 +#: flatcamGUI/FlatCAMGUI.py:5041 flatcamGUI/ObjectUI.py:172 msgid "Plot" msgstr "Zeichn" -#: flatcamGUI/FlatCAMGUI.py:4014 flatcamGUI/FlatCAMGUI.py:5036 +#: flatcamGUI/FlatCAMGUI.py:4021 flatcamGUI/FlatCAMGUI.py:5043 #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:546 #: flatcamGUI/ObjectUI.py:879 flatcamGUI/ObjectUI.py:1437 msgid "Plot (show) this object." msgstr "Plotten (zeigen) dieses Objekt." -#: flatcamGUI/FlatCAMGUI.py:4019 flatcamGUI/FlatCAMGUI.py:5043 -#: flatcamGUI/FlatCAMGUI.py:5438 +#: flatcamGUI/FlatCAMGUI.py:4026 flatcamGUI/FlatCAMGUI.py:5050 +#: flatcamGUI/FlatCAMGUI.py:5445 msgid "Circle Steps:" msgstr "Kreisschritte:" -#: flatcamGUI/FlatCAMGUI.py:4021 +#: flatcamGUI/FlatCAMGUI.py:4028 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." @@ -6615,15 +6642,15 @@ msgstr "" "Die Anzahl der Kreisschritte für Gerber\n" "lineare Approximation mit kreisförmiger Apertur." -#: flatcamGUI/FlatCAMGUI.py:4036 +#: flatcamGUI/FlatCAMGUI.py:4043 msgid "Gerber Options" msgstr "Gerber-Optionen" -#: flatcamGUI/FlatCAMGUI.py:4040 flatcamGUI/ObjectUI.py:251 +#: flatcamGUI/FlatCAMGUI.py:4047 flatcamGUI/ObjectUI.py:251 msgid "Isolation Routing:" msgstr " Isolierungsrouting: " -#: flatcamGUI/FlatCAMGUI.py:4042 flatcamGUI/ObjectUI.py:253 +#: flatcamGUI/FlatCAMGUI.py:4049 flatcamGUI/ObjectUI.py:253 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -6632,17 +6659,17 @@ msgstr "" "Werkzeugwege zum Schneiden von \n" "äußeren Polygonen." -#: flatcamGUI/FlatCAMGUI.py:4053 flatcamGUI/FlatCAMGUI.py:4753 -#: flatcamGUI/FlatCAMGUI.py:5726 flatcamGUI/ObjectUI.py:788 +#: flatcamGUI/FlatCAMGUI.py:4060 flatcamGUI/FlatCAMGUI.py:4760 +#: flatcamGUI/FlatCAMGUI.py:5733 flatcamGUI/ObjectUI.py:788 #: flatcamGUI/ObjectUI.py:804 msgid "Diameter of the cutting tool." msgstr "Durchmesser des Schneidewerkzeugs." -#: flatcamGUI/FlatCAMGUI.py:4060 +#: flatcamGUI/FlatCAMGUI.py:4067 msgid "Width (# passes):" msgstr "Breite (# passt):" -#: flatcamGUI/FlatCAMGUI.py:4062 flatcamGUI/ObjectUI.py:275 +#: flatcamGUI/FlatCAMGUI.py:4069 flatcamGUI/ObjectUI.py:275 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -6650,11 +6677,11 @@ msgstr "" "Breite der Isolationslücke in\n" "Anzahl (Ganzzahl) der Werkzeugbreiten." -#: flatcamGUI/FlatCAMGUI.py:4070 flatcamGUI/ObjectUI.py:283 +#: flatcamGUI/FlatCAMGUI.py:4077 flatcamGUI/ObjectUI.py:283 msgid "Pass overlap:" msgstr "Passüberlappung:" -#: flatcamGUI/FlatCAMGUI.py:4072 flatcamGUI/ObjectUI.py:285 +#: flatcamGUI/FlatCAMGUI.py:4079 flatcamGUI/ObjectUI.py:285 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -6668,11 +6695,11 @@ msgstr "" "Ein Wert von 0,25 bedeutet hier eine Überlappung von 25% \n" "vom oben angegebenen Werkzeugdurchmesser." -#: flatcamGUI/FlatCAMGUI.py:4080 flatcamGUI/ObjectUI.py:295 +#: flatcamGUI/FlatCAMGUI.py:4087 flatcamGUI/ObjectUI.py:295 msgid "Milling Type:" msgstr "Fräsart:" -#: flatcamGUI/FlatCAMGUI.py:4082 flatcamGUI/ObjectUI.py:297 +#: flatcamGUI/FlatCAMGUI.py:4089 flatcamGUI/ObjectUI.py:297 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -6683,19 +6710,19 @@ msgstr "" "Werkzeugverbrauchs\n" "- konventionell / nützlich, wenn kein Spielausgleich vorliegt" -#: flatcamGUI/FlatCAMGUI.py:4092 +#: flatcamGUI/FlatCAMGUI.py:4099 msgid "Combine Passes" msgstr "Kombinieren Sie Pässe" -#: flatcamGUI/FlatCAMGUI.py:4094 flatcamGUI/ObjectUI.py:309 +#: flatcamGUI/FlatCAMGUI.py:4101 flatcamGUI/ObjectUI.py:309 msgid "Combine all passes into one object" msgstr "Kombinieren Sie alle Durchgänge in einem Objekt" -#: flatcamGUI/FlatCAMGUI.py:4099 +#: flatcamGUI/FlatCAMGUI.py:4106 msgid "Clear non-copper:" msgstr " Nicht-Kupfer löschen: " -#: flatcamGUI/FlatCAMGUI.py:4101 flatcamGUI/FlatCAMGUI.py:5614 +#: flatcamGUI/FlatCAMGUI.py:4108 flatcamGUI/FlatCAMGUI.py:5621 #: flatcamGUI/ObjectUI.py:386 msgid "" "Create a Geometry object with\n" @@ -6704,12 +6731,12 @@ msgstr "" "Erstellen Sie ein Geometrieobjekt mit\n" "Werkzeugwege, um alle Nicht-Kupfer-Bereiche zu schneiden." -#: flatcamGUI/FlatCAMGUI.py:4110 flatcamGUI/FlatCAMGUI.py:4136 +#: flatcamGUI/FlatCAMGUI.py:4117 flatcamGUI/FlatCAMGUI.py:4143 #: flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464 msgid "Boundary Margin:" msgstr "Grenzmarge:" -#: flatcamGUI/FlatCAMGUI.py:4112 flatcamGUI/ObjectUI.py:432 +#: flatcamGUI/FlatCAMGUI.py:4119 flatcamGUI/ObjectUI.py:432 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -6721,11 +6748,11 @@ msgstr "" "Objekte mit diesem Minimum\n" "Entfernung." -#: flatcamGUI/FlatCAMGUI.py:4122 flatcamGUI/FlatCAMGUI.py:4145 +#: flatcamGUI/FlatCAMGUI.py:4129 flatcamGUI/FlatCAMGUI.py:4152 msgid "Rounded corners" msgstr "Abgerundete Ecken" -#: flatcamGUI/FlatCAMGUI.py:4124 +#: flatcamGUI/FlatCAMGUI.py:4131 msgid "" "Creates a Geometry objects with polygons\n" "covering the copper-free areas of the PCB." @@ -6733,11 +6760,11 @@ msgstr "" "Erzeugt ein Geometrieobjekt mit Polygonen\n" "bedeckt die kupferfreien Bereiche der Leiterplatte." -#: flatcamGUI/FlatCAMGUI.py:4130 flatcamGUI/ObjectUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:4137 flatcamGUI/ObjectUI.py:454 msgid "Bounding Box:" msgstr " Begrenzungsbox: " -#: flatcamGUI/FlatCAMGUI.py:4138 flatcamGUI/ObjectUI.py:466 +#: flatcamGUI/FlatCAMGUI.py:4145 flatcamGUI/ObjectUI.py:466 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -6745,7 +6772,7 @@ msgstr "" "Abstand der Kanten der Box\n" "zum nächsten Polygon." -#: flatcamGUI/FlatCAMGUI.py:4147 flatcamGUI/ObjectUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:4154 flatcamGUI/ObjectUI.py:476 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -6757,15 +6784,15 @@ msgstr "" "ihr Radius ist gleich\n" "der Abstand." -#: flatcamGUI/FlatCAMGUI.py:4161 +#: flatcamGUI/FlatCAMGUI.py:4168 msgid "Gerber Adv. Options" msgstr "Erweiterte Optionen von Gerber" -#: flatcamGUI/FlatCAMGUI.py:4165 +#: flatcamGUI/FlatCAMGUI.py:4172 msgid "Advanced Param.:" msgstr "Erweiterte Parameter:" -#: flatcamGUI/FlatCAMGUI.py:4167 +#: flatcamGUI/FlatCAMGUI.py:4174 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" @@ -6775,11 +6802,11 @@ msgstr "" "Diese Parameter sind nur für verfügbar\n" "Fortgeschrittene Anwendungsebene." -#: flatcamGUI/FlatCAMGUI.py:4177 flatcamGUI/ObjectUI.py:314 +#: flatcamGUI/FlatCAMGUI.py:4184 flatcamGUI/ObjectUI.py:314 msgid "\"Follow\"" msgstr "\"Folgen\"" -#: flatcamGUI/FlatCAMGUI.py:4179 flatcamGUI/ObjectUI.py:316 +#: flatcamGUI/FlatCAMGUI.py:4186 flatcamGUI/ObjectUI.py:316 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -6789,11 +6816,11 @@ msgstr "" "Dies bedeutet, dass es durchschneiden wird\n" "die Mitte der Spur" -#: flatcamGUI/FlatCAMGUI.py:4187 +#: flatcamGUI/FlatCAMGUI.py:4194 msgid "Table Show/Hide" msgstr "Tabelle anzeigen / ausblenden" -#: flatcamGUI/FlatCAMGUI.py:4189 +#: flatcamGUI/FlatCAMGUI.py:4196 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" @@ -6803,15 +6830,15 @@ msgstr "" "Beim Ausblenden werden auch alle Markierungsformen gelöscht\n" "das sind auf leinwand gezeichnet." -#: flatcamGUI/FlatCAMGUI.py:4228 +#: flatcamGUI/FlatCAMGUI.py:4235 msgid "Gerber Export" msgstr "Gerber Export" -#: flatcamGUI/FlatCAMGUI.py:4231 flatcamGUI/FlatCAMGUI.py:4902 +#: flatcamGUI/FlatCAMGUI.py:4238 flatcamGUI/FlatCAMGUI.py:4909 msgid "Export Options:" msgstr "Exportoptionen:" -#: flatcamGUI/FlatCAMGUI.py:4233 +#: flatcamGUI/FlatCAMGUI.py:4240 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Gerber menu entry." @@ -6819,19 +6846,19 @@ msgstr "" "Die hier eingestellten Parameter werden in der exportierten Datei verwendet\n" "bei Verwendung des Menüeintrags Datei -> Exportieren -> Gerber exportieren." -#: flatcamGUI/FlatCAMGUI.py:4242 flatcamGUI/FlatCAMGUI.py:4913 +#: flatcamGUI/FlatCAMGUI.py:4249 flatcamGUI/FlatCAMGUI.py:4920 msgid "Units:" msgstr "Einheiten:" -#: flatcamGUI/FlatCAMGUI.py:4244 flatcamGUI/FlatCAMGUI.py:4250 +#: flatcamGUI/FlatCAMGUI.py:4251 flatcamGUI/FlatCAMGUI.py:4257 msgid "The units used in the Gerber file." msgstr "Die in der Gerber-Datei verwendeten Einheiten." -#: flatcamGUI/FlatCAMGUI.py:4256 flatcamGUI/FlatCAMGUI.py:4927 +#: flatcamGUI/FlatCAMGUI.py:4263 flatcamGUI/FlatCAMGUI.py:4934 msgid "Int/Decimals:" msgstr "Ganzzahl / Dezimalzahl:" -#: flatcamGUI/FlatCAMGUI.py:4258 +#: flatcamGUI/FlatCAMGUI.py:4265 msgid "" "The number of digits in the whole part of the number\n" "and in the fractional part of the number." @@ -6839,7 +6866,7 @@ msgstr "" "Die Anzahl der Ziffern im gesamten Teil der Nummer\n" "und im Bruchteil der Zahl." -#: flatcamGUI/FlatCAMGUI.py:4269 +#: flatcamGUI/FlatCAMGUI.py:4276 msgid "" "This numbers signify the number of digits in\n" "the whole part of Gerber coordinates." @@ -6847,7 +6874,7 @@ msgstr "" "Diese Zahlen geben die Anzahl der Ziffern in an\n" "der ganze Teil von Gerber koordiniert." -#: flatcamGUI/FlatCAMGUI.py:4283 +#: flatcamGUI/FlatCAMGUI.py:4290 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Gerber coordinates." @@ -6855,11 +6882,11 @@ msgstr "" "Diese Zahlen geben die Anzahl der Ziffern in an\n" "Der Dezimalteil der Gerber-Koordinaten." -#: flatcamGUI/FlatCAMGUI.py:4292 flatcamGUI/FlatCAMGUI.py:4988 +#: flatcamGUI/FlatCAMGUI.py:4299 flatcamGUI/FlatCAMGUI.py:4995 msgid "Zeros:" msgstr "Nullen:" -#: flatcamGUI/FlatCAMGUI.py:4295 flatcamGUI/FlatCAMGUI.py:4305 +#: flatcamGUI/FlatCAMGUI.py:4302 flatcamGUI/FlatCAMGUI.py:4312 msgid "" "This sets the type of Gerber zeros.\n" "If LZ then Leading Zeros are removed and\n" @@ -6873,23 +6900,23 @@ msgstr "" "Wenn TZ aktiviert ist, werden nachfolgende Nullen entfernt\n" "und führende Nullen werden beibehalten." -#: flatcamGUI/FlatCAMGUI.py:4325 flatcamGUI/FlatCAMGUI.py:5368 -#: flatcamGUI/FlatCAMGUI.py:5612 flatcamGUI/FlatCAMGUI.py:5713 -#: flatcamGUI/FlatCAMGUI.py:5792 flatcamGUI/FlatCAMGUI.py:5851 -#: flatcamGUI/FlatCAMGUI.py:5954 flatcamGUI/FlatCAMGUI.py:6015 -#: flatcamGUI/FlatCAMGUI.py:6214 flatcamGUI/FlatCAMGUI.py:6341 +#: flatcamGUI/FlatCAMGUI.py:4332 flatcamGUI/FlatCAMGUI.py:5375 +#: flatcamGUI/FlatCAMGUI.py:5619 flatcamGUI/FlatCAMGUI.py:5720 +#: flatcamGUI/FlatCAMGUI.py:5799 flatcamGUI/FlatCAMGUI.py:5858 +#: flatcamGUI/FlatCAMGUI.py:5961 flatcamGUI/FlatCAMGUI.py:6022 +#: flatcamGUI/FlatCAMGUI.py:6221 flatcamGUI/FlatCAMGUI.py:6348 msgid "Parameters:" msgstr "Parameter:" -#: flatcamGUI/FlatCAMGUI.py:4327 +#: flatcamGUI/FlatCAMGUI.py:4334 msgid "A list of Gerber Editor parameters." msgstr "Eine Liste der Gerber-Editor-Parameter." -#: flatcamGUI/FlatCAMGUI.py:4335 flatcamGUI/FlatCAMGUI.py:5378 +#: flatcamGUI/FlatCAMGUI.py:4342 flatcamGUI/FlatCAMGUI.py:5385 msgid "Selection limit:" msgstr "Auswahllimit:" -#: flatcamGUI/FlatCAMGUI.py:4337 +#: flatcamGUI/FlatCAMGUI.py:4344 msgid "" "Set the number of selected Gerber geometry\n" "items above which the utility geometry\n" @@ -6903,15 +6930,15 @@ msgstr "" "Erhöht die Leistung beim Bewegen von a\n" "große Anzahl von geometrischen Elementen." -#: flatcamGUI/FlatCAMGUI.py:4357 +#: flatcamGUI/FlatCAMGUI.py:4364 msgid "Excellon General" msgstr "Excellon Allgemeines" -#: flatcamGUI/FlatCAMGUI.py:4379 +#: flatcamGUI/FlatCAMGUI.py:4386 msgid "Excellon Format:" msgstr "Excellon-Format:" -#: flatcamGUI/FlatCAMGUI.py:4381 +#: flatcamGUI/FlatCAMGUI.py:4388 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -6953,16 +6980,16 @@ msgstr "" "Sprint-Layout 2: 4 ZOLL LZ\n" "KiCAD 3: 5 ZOLL TZ" -#: flatcamGUI/FlatCAMGUI.py:4406 +#: flatcamGUI/FlatCAMGUI.py:4413 msgid "INCH:" msgstr "ZOLL:" -#: flatcamGUI/FlatCAMGUI.py:4409 +#: flatcamGUI/FlatCAMGUI.py:4416 msgid "Default values for INCH are 2:4" msgstr "Die Standardwerte für ZOLL sind 2: 4" -#: flatcamGUI/FlatCAMGUI.py:4417 flatcamGUI/FlatCAMGUI.py:4450 -#: flatcamGUI/FlatCAMGUI.py:4942 +#: flatcamGUI/FlatCAMGUI.py:4424 flatcamGUI/FlatCAMGUI.py:4457 +#: flatcamGUI/FlatCAMGUI.py:4949 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -6970,8 +6997,8 @@ msgstr "" "Diese Zahlen geben die Anzahl der Ziffern in an\n" "der gesamte Teil der Excellon-Koordinaten." -#: flatcamGUI/FlatCAMGUI.py:4431 flatcamGUI/FlatCAMGUI.py:4464 -#: flatcamGUI/FlatCAMGUI.py:4956 +#: flatcamGUI/FlatCAMGUI.py:4438 flatcamGUI/FlatCAMGUI.py:4471 +#: flatcamGUI/FlatCAMGUI.py:4963 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -6979,19 +7006,19 @@ msgstr "" "Diese Zahlen geben die Anzahl der Ziffern in an\n" "der Dezimalteil der Excellon-Koordinaten." -#: flatcamGUI/FlatCAMGUI.py:4439 +#: flatcamGUI/FlatCAMGUI.py:4446 msgid "METRIC:" msgstr "METRISCH:" -#: flatcamGUI/FlatCAMGUI.py:4442 +#: flatcamGUI/FlatCAMGUI.py:4449 msgid "Default values for METRIC are 3:3" msgstr "Die Standardwerte für METRISCH sind 3: 3" -#: flatcamGUI/FlatCAMGUI.py:4473 +#: flatcamGUI/FlatCAMGUI.py:4480 msgid "Default Zeros:" msgstr "Standard Nullen:" -#: flatcamGUI/FlatCAMGUI.py:4476 flatcamGUI/FlatCAMGUI.py:4991 +#: flatcamGUI/FlatCAMGUI.py:4483 flatcamGUI/FlatCAMGUI.py:4998 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -7005,7 +7032,7 @@ msgstr "" "Wenn TZ aktiviert ist, werden nachfolgende Nullen beibehalten\n" "und führende Nullen werden entfernt." -#: flatcamGUI/FlatCAMGUI.py:4487 +#: flatcamGUI/FlatCAMGUI.py:4494 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -7021,11 +7048,11 @@ msgstr "" "Wenn TZ aktiviert ist, werden nachfolgende Nullen beibehalten\n" "und führende Nullen werden entfernt." -#: flatcamGUI/FlatCAMGUI.py:4501 +#: flatcamGUI/FlatCAMGUI.py:4508 msgid "Default Units:" msgstr "Standard einheiten:" -#: flatcamGUI/FlatCAMGUI.py:4504 +#: flatcamGUI/FlatCAMGUI.py:4511 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -7037,7 +7064,7 @@ msgstr "" "wird verwendet. Einige Excellon-Dateien haben keinen Header\n" "Daher wird dieser Parameter verwendet." -#: flatcamGUI/FlatCAMGUI.py:4515 +#: flatcamGUI/FlatCAMGUI.py:4522 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" @@ -7047,15 +7074,15 @@ msgstr "" "Einige Excellon-Dateien haben keinen Header\n" "Daher wird dieser Parameter verwendet." -#: flatcamGUI/FlatCAMGUI.py:4531 +#: flatcamGUI/FlatCAMGUI.py:4538 msgid "Excellon Optimization:" msgstr "Optimierung der Excellons:" -#: flatcamGUI/FlatCAMGUI.py:4538 +#: flatcamGUI/FlatCAMGUI.py:4545 msgid "Algorithm: " msgstr "Algorithmus:" -#: flatcamGUI/FlatCAMGUI.py:4541 flatcamGUI/FlatCAMGUI.py:4554 +#: flatcamGUI/FlatCAMGUI.py:4548 flatcamGUI/FlatCAMGUI.py:4561 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n" @@ -7079,11 +7106,11 @@ msgstr "" "Wenn DEAKTIVIERT, arbeitet FlatCAM im 32-Bit-Modus und verwendet es\n" "Traveling Salesman-Algorithmus zur Pfadoptimierung." -#: flatcamGUI/FlatCAMGUI.py:4566 +#: flatcamGUI/FlatCAMGUI.py:4573 msgid "Optimization Time: " msgstr "Optimierungszeit:" -#: flatcamGUI/FlatCAMGUI.py:4569 +#: flatcamGUI/FlatCAMGUI.py:4576 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -7095,15 +7122,15 @@ msgstr "" "Pfadoptimierung. Diese maximale Dauer wird hier eingestellt.\n" "In Sekunden." -#: flatcamGUI/FlatCAMGUI.py:4611 +#: flatcamGUI/FlatCAMGUI.py:4618 msgid "Excellon Options" msgstr "Excellon-Optionen" -#: flatcamGUI/FlatCAMGUI.py:4614 flatcamGUI/ObjectUI.py:584 +#: flatcamGUI/FlatCAMGUI.py:4621 flatcamGUI/ObjectUI.py:584 msgid "Create CNC Job" msgstr "CNC-Job erstellen" -#: flatcamGUI/FlatCAMGUI.py:4616 +#: flatcamGUI/FlatCAMGUI.py:4623 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." @@ -7111,13 +7138,13 @@ msgstr "" "Parameter, die zum Erstellen eines CNC-Auftragsobjekts verwendet werden\n" "für dieses Bohrobjekt." -#: flatcamGUI/FlatCAMGUI.py:4624 flatcamGUI/FlatCAMGUI.py:5094 -#: flatcamGUI/FlatCAMGUI.py:6150 flatcamGUI/ObjectUI.py:595 +#: flatcamGUI/FlatCAMGUI.py:4631 flatcamGUI/FlatCAMGUI.py:5101 +#: flatcamGUI/FlatCAMGUI.py:6157 flatcamGUI/ObjectUI.py:595 #: flatcamGUI/ObjectUI.py:1062 flatcamTools/ToolCalculators.py:108 msgid "Cut Z:" msgstr "Schnitt Z:" -#: flatcamGUI/FlatCAMGUI.py:4626 flatcamGUI/ObjectUI.py:597 +#: flatcamGUI/FlatCAMGUI.py:4633 flatcamGUI/ObjectUI.py:597 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -7125,12 +7152,12 @@ msgstr "" "Bohrtiefe (negativ)\n" "unter der Kupferoberfläche." -#: flatcamGUI/FlatCAMGUI.py:4633 flatcamGUI/FlatCAMGUI.py:5127 +#: flatcamGUI/FlatCAMGUI.py:4640 flatcamGUI/FlatCAMGUI.py:5134 #: flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1098 msgid "Travel Z:" msgstr "Reise Z:" -#: flatcamGUI/FlatCAMGUI.py:4635 flatcamGUI/ObjectUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:4642 flatcamGUI/ObjectUI.py:607 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -7138,11 +7165,11 @@ msgstr "" "Werkzeughöhe auf Reisen\n" "über die XY-Ebene." -#: flatcamGUI/FlatCAMGUI.py:4643 flatcamGUI/FlatCAMGUI.py:5137 +#: flatcamGUI/FlatCAMGUI.py:4650 flatcamGUI/FlatCAMGUI.py:5144 msgid "Tool change:" msgstr "Werkzeugwechsel:" -#: flatcamGUI/FlatCAMGUI.py:4645 flatcamGUI/FlatCAMGUI.py:5139 +#: flatcamGUI/FlatCAMGUI.py:4652 flatcamGUI/FlatCAMGUI.py:5146 #: flatcamGUI/ObjectUI.py:617 msgid "" "Include tool-change sequence\n" @@ -7151,19 +7178,19 @@ msgstr "" "Werkzeugwechselfolge einbeziehen\n" "im G-Code (Pause für Werkzeugwechsel)." -#: flatcamGUI/FlatCAMGUI.py:4652 flatcamGUI/FlatCAMGUI.py:5147 +#: flatcamGUI/FlatCAMGUI.py:4659 flatcamGUI/FlatCAMGUI.py:5154 msgid "Toolchange Z:" msgstr "Werkzeugwechsel Z:" -#: flatcamGUI/FlatCAMGUI.py:4654 flatcamGUI/FlatCAMGUI.py:5149 +#: flatcamGUI/FlatCAMGUI.py:4661 flatcamGUI/FlatCAMGUI.py:5156 msgid "Toolchange Z position." msgstr "Toolchange Z position." -#: flatcamGUI/FlatCAMGUI.py:4660 +#: flatcamGUI/FlatCAMGUI.py:4667 msgid "Feedrate:" msgstr "Vorschubgeschwindigkeit:" -#: flatcamGUI/FlatCAMGUI.py:4662 +#: flatcamGUI/FlatCAMGUI.py:4669 msgid "" "Tool speed while drilling\n" "(in units per minute)." @@ -7171,11 +7198,11 @@ msgstr "" "Werkzeuggeschwindigkeit beim Bohren\n" "(in Einheiten pro Minute)." -#: flatcamGUI/FlatCAMGUI.py:4670 +#: flatcamGUI/FlatCAMGUI.py:4677 msgid "Spindle Speed:" msgstr "Spulengeschwindigkeit:" -#: flatcamGUI/FlatCAMGUI.py:4672 flatcamGUI/FlatCAMGUI.py:5179 +#: flatcamGUI/FlatCAMGUI.py:4679 flatcamGUI/FlatCAMGUI.py:5186 #: flatcamGUI/ObjectUI.py:684 msgid "" "Speed of the spindle\n" @@ -7184,11 +7211,11 @@ msgstr "" "Geschwindigkeit der Spindel\n" "in RPM (optional)" -#: flatcamGUI/FlatCAMGUI.py:4680 flatcamGUI/FlatCAMGUI.py:5187 +#: flatcamGUI/FlatCAMGUI.py:4687 flatcamGUI/FlatCAMGUI.py:5194 msgid "Spindle dir.:" msgstr "Spindelrichtung:" -#: flatcamGUI/FlatCAMGUI.py:4682 flatcamGUI/FlatCAMGUI.py:5189 +#: flatcamGUI/FlatCAMGUI.py:4689 flatcamGUI/FlatCAMGUI.py:5196 msgid "" "This sets the direction that the spindle is rotating.\n" "It can be either:\n" @@ -7200,12 +7227,12 @@ msgstr "" "- CW = im Uhrzeigersinn oder\n" "- CCW = gegen den Uhrzeigersinn" -#: flatcamGUI/FlatCAMGUI.py:4694 flatcamGUI/FlatCAMGUI.py:5201 +#: flatcamGUI/FlatCAMGUI.py:4701 flatcamGUI/FlatCAMGUI.py:5208 #: flatcamGUI/ObjectUI.py:692 flatcamGUI/ObjectUI.py:1224 msgid "Dwell:" msgstr "Wohnen:" -#: flatcamGUI/FlatCAMGUI.py:4696 flatcamGUI/FlatCAMGUI.py:5203 +#: flatcamGUI/FlatCAMGUI.py:4703 flatcamGUI/FlatCAMGUI.py:5210 #: flatcamGUI/ObjectUI.py:694 flatcamGUI/ObjectUI.py:1227 msgid "" "Pause to allow the spindle to reach its\n" @@ -7214,21 +7241,21 @@ msgstr "" "Pause, damit die Spindel ihre erreichen kann\n" "Geschwindigkeit vor dem Schneiden." -#: flatcamGUI/FlatCAMGUI.py:4699 flatcamGUI/FlatCAMGUI.py:5206 +#: flatcamGUI/FlatCAMGUI.py:4706 flatcamGUI/FlatCAMGUI.py:5213 msgid "Duration:" msgstr "Dauer:" -#: flatcamGUI/FlatCAMGUI.py:4701 flatcamGUI/FlatCAMGUI.py:5208 +#: flatcamGUI/FlatCAMGUI.py:4708 flatcamGUI/FlatCAMGUI.py:5215 #: flatcamGUI/ObjectUI.py:699 flatcamGUI/ObjectUI.py:1234 msgid "Number of milliseconds for spindle to dwell." msgstr "Anzahl der Millisekunden, die die Spindel halten soll." -#: flatcamGUI/FlatCAMGUI.py:4713 flatcamGUI/FlatCAMGUI.py:5218 +#: flatcamGUI/FlatCAMGUI.py:4720 flatcamGUI/FlatCAMGUI.py:5225 #: flatcamGUI/ObjectUI.py:707 msgid "Postprocessor:" msgstr "Postprozessor:" -#: flatcamGUI/FlatCAMGUI.py:4715 +#: flatcamGUI/FlatCAMGUI.py:4722 msgid "" "The postprocessor file that dictates\n" "gcode output." @@ -7236,11 +7263,11 @@ msgstr "" "Die Postprozessor-Datei, die diktiert\n" "gcode ausgabe." -#: flatcamGUI/FlatCAMGUI.py:4725 +#: flatcamGUI/FlatCAMGUI.py:4732 msgid "Gcode: " msgstr "Gcode:" -#: flatcamGUI/FlatCAMGUI.py:4727 +#: flatcamGUI/FlatCAMGUI.py:4734 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -7253,23 +7280,23 @@ msgstr "" "angezeigt\n" "in Bohrer umgewandelt." -#: flatcamGUI/FlatCAMGUI.py:4743 flatcamGUI/ObjectUI.py:772 +#: flatcamGUI/FlatCAMGUI.py:4750 flatcamGUI/ObjectUI.py:772 msgid "Mill Holes" msgstr " Löcher bohren " -#: flatcamGUI/FlatCAMGUI.py:4745 flatcamGUI/ObjectUI.py:774 +#: flatcamGUI/FlatCAMGUI.py:4752 flatcamGUI/ObjectUI.py:774 msgid "Create Geometry for milling holes." msgstr "Erstellen Sie Geometrie zum Fräsen von Löchern." -#: flatcamGUI/FlatCAMGUI.py:4751 +#: flatcamGUI/FlatCAMGUI.py:4758 msgid "Drill Tool dia:" msgstr "Bohrwerkzeug Durchmesser:" -#: flatcamGUI/FlatCAMGUI.py:4758 +#: flatcamGUI/FlatCAMGUI.py:4765 msgid "Slot Tool dia:" msgstr "Schlitzwerkzeug Durchmesser:" -#: flatcamGUI/FlatCAMGUI.py:4760 +#: flatcamGUI/FlatCAMGUI.py:4767 msgid "" "Diameter of the cutting tool\n" "when milling slots." @@ -7277,19 +7304,19 @@ msgstr "" "Durchmesser des Schneidewerkzeugs\n" "beim Fräsen von Schlitzen." -#: flatcamGUI/FlatCAMGUI.py:4772 +#: flatcamGUI/FlatCAMGUI.py:4779 msgid "Defaults" msgstr "Standardwerte" -#: flatcamGUI/FlatCAMGUI.py:4785 +#: flatcamGUI/FlatCAMGUI.py:4792 msgid "Excellon Adv. Options" msgstr "Excellon erweiterte Optionen" -#: flatcamGUI/FlatCAMGUI.py:4791 flatcamGUI/FlatCAMGUI.py:5241 +#: flatcamGUI/FlatCAMGUI.py:4798 flatcamGUI/FlatCAMGUI.py:5248 msgid "Advanced Options:" msgstr "Erweiterte Optionen:" -#: flatcamGUI/FlatCAMGUI.py:4793 +#: flatcamGUI/FlatCAMGUI.py:4800 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object that are shown when App Level is Advanced." @@ -7298,11 +7325,11 @@ msgstr "" "für dieses Drill-Objekt, das angezeigt wird, wenn die App-Ebene Erweitert " "ist." -#: flatcamGUI/FlatCAMGUI.py:4801 +#: flatcamGUI/FlatCAMGUI.py:4808 msgid "Offset Z:" msgstr "Versatz Z:" -#: flatcamGUI/FlatCAMGUI.py:4803 flatcamGUI/ObjectUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:4810 flatcamGUI/ObjectUI.py:574 msgid "" "Some drill bits (the larger ones) need to drill deeper\n" "to create the desired exit hole diameter due of the tip shape.\n" @@ -7313,20 +7340,20 @@ msgstr "" "erzeugen.\n" "Der Wert hier kann den Parameter Cut Z ausgleichen." -#: flatcamGUI/FlatCAMGUI.py:4810 flatcamGUI/FlatCAMGUI.py:5252 +#: flatcamGUI/FlatCAMGUI.py:4817 flatcamGUI/FlatCAMGUI.py:5259 msgid "Toolchange X,Y:" msgstr "Werkzeugwechsel X, Y:" -#: flatcamGUI/FlatCAMGUI.py:4812 flatcamGUI/FlatCAMGUI.py:5254 +#: flatcamGUI/FlatCAMGUI.py:4819 flatcamGUI/FlatCAMGUI.py:5261 msgid "Toolchange X,Y position." msgstr "Werkzeugwechsel X, Y Position." -#: flatcamGUI/FlatCAMGUI.py:4818 flatcamGUI/FlatCAMGUI.py:5261 +#: flatcamGUI/FlatCAMGUI.py:4825 flatcamGUI/FlatCAMGUI.py:5268 #: flatcamGUI/ObjectUI.py:634 msgid "Start move Z:" msgstr "Startbewegung Z:" -#: flatcamGUI/FlatCAMGUI.py:4820 +#: flatcamGUI/FlatCAMGUI.py:4827 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -7334,12 +7361,12 @@ msgstr "" "Höhe des Werkzeugs gleich nach dem Start.\n" "Löschen Sie den Wert, wenn Sie diese Funktion nicht benötigen." -#: flatcamGUI/FlatCAMGUI.py:4827 flatcamGUI/FlatCAMGUI.py:5271 +#: flatcamGUI/FlatCAMGUI.py:4834 flatcamGUI/FlatCAMGUI.py:5278 #: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1144 msgid "End move Z:" msgstr "Bewegung beenden Z:" -#: flatcamGUI/FlatCAMGUI.py:4829 flatcamGUI/FlatCAMGUI.py:5273 +#: flatcamGUI/FlatCAMGUI.py:4836 flatcamGUI/FlatCAMGUI.py:5280 msgid "" "Height of the tool after\n" "the last move at the end of the job." @@ -7347,12 +7374,12 @@ msgstr "" "Höhe des Werkzeugs nach\n" "die letzte Bewegung am Ende des Jobs." -#: flatcamGUI/FlatCAMGUI.py:4836 flatcamGUI/FlatCAMGUI.py:5281 +#: flatcamGUI/FlatCAMGUI.py:4843 flatcamGUI/FlatCAMGUI.py:5288 #: flatcamGUI/ObjectUI.py:665 msgid "Feedrate Rapids:" msgstr "Vorschubgeschwindigkeit:" -#: flatcamGUI/FlatCAMGUI.py:4838 flatcamGUI/ObjectUI.py:667 +#: flatcamGUI/FlatCAMGUI.py:4845 flatcamGUI/ObjectUI.py:667 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7366,12 +7393,12 @@ msgstr "" "Es ist nur für Marlin nützlich,\n" "für andere Fälle ignorieren." -#: flatcamGUI/FlatCAMGUI.py:4849 flatcamGUI/FlatCAMGUI.py:5305 +#: flatcamGUI/FlatCAMGUI.py:4856 flatcamGUI/FlatCAMGUI.py:5312 #: flatcamGUI/ObjectUI.py:718 flatcamGUI/ObjectUI.py:1256 msgid "Probe Z depth:" msgstr "Sonde Z Tiefe:" -#: flatcamGUI/FlatCAMGUI.py:4851 flatcamGUI/FlatCAMGUI.py:5307 +#: flatcamGUI/FlatCAMGUI.py:4858 flatcamGUI/FlatCAMGUI.py:5314 #: flatcamGUI/ObjectUI.py:720 flatcamGUI/ObjectUI.py:1259 msgid "" "The maximum depth that the probe is allowed\n" @@ -7380,21 +7407,21 @@ msgstr "" "Die maximale Tiefe, in der die Sonde zulässig ist\n" "zu untersuchen. Negativer Wert in aktuellen Einheiten." -#: flatcamGUI/FlatCAMGUI.py:4859 flatcamGUI/FlatCAMGUI.py:5315 +#: flatcamGUI/FlatCAMGUI.py:4866 flatcamGUI/FlatCAMGUI.py:5322 #: flatcamGUI/ObjectUI.py:730 flatcamGUI/ObjectUI.py:1270 msgid "Feedrate Probe:" msgstr "Vorschubsonde:" -#: flatcamGUI/FlatCAMGUI.py:4861 flatcamGUI/FlatCAMGUI.py:5317 +#: flatcamGUI/FlatCAMGUI.py:4868 flatcamGUI/FlatCAMGUI.py:5324 #: flatcamGUI/ObjectUI.py:732 flatcamGUI/ObjectUI.py:1273 msgid "The feedrate used while the probe is probing." msgstr "Der Vorschub während der Sondenmessung." -#: flatcamGUI/FlatCAMGUI.py:4867 flatcamGUI/FlatCAMGUI.py:5324 +#: flatcamGUI/FlatCAMGUI.py:4874 flatcamGUI/FlatCAMGUI.py:5331 msgid "Fast Plunge:" msgstr "Schneller Sprung:" -#: flatcamGUI/FlatCAMGUI.py:4869 flatcamGUI/FlatCAMGUI.py:5326 +#: flatcamGUI/FlatCAMGUI.py:4876 flatcamGUI/FlatCAMGUI.py:5333 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -7406,11 +7433,11 @@ msgstr "" "Das bedeutet die schnellste verfügbare Geschwindigkeit.\n" "WARNUNG: Die Verschiebung erfolgt bei Toolchange X, Y-Koordinaten." -#: flatcamGUI/FlatCAMGUI.py:4878 +#: flatcamGUI/FlatCAMGUI.py:4885 msgid "Fast Retract:" msgstr "Schneller Rückzug:" -#: flatcamGUI/FlatCAMGUI.py:4880 +#: flatcamGUI/FlatCAMGUI.py:4887 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -7426,11 +7453,11 @@ msgstr "" "  - Wenn Sie den Weg von Z-Schnitt (Schnitttiefe) nach Z_Move prüfen\n" "(Fahrhöhe) erfolgt so schnell wie möglich (G0) in einem Zug." -#: flatcamGUI/FlatCAMGUI.py:4899 +#: flatcamGUI/FlatCAMGUI.py:4906 msgid "Excellon Export" msgstr "Excellon Export" -#: flatcamGUI/FlatCAMGUI.py:4904 +#: flatcamGUI/FlatCAMGUI.py:4911 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -7439,11 +7466,11 @@ msgstr "" "bei Verwendung des Menüeintrags Datei -> Exportieren -> Exportieren von " "Excellon." -#: flatcamGUI/FlatCAMGUI.py:4915 flatcamGUI/FlatCAMGUI.py:4921 +#: flatcamGUI/FlatCAMGUI.py:4922 flatcamGUI/FlatCAMGUI.py:4928 msgid "The units used in the Excellon file." msgstr "Die in der Excellon-Datei verwendeten Einheiten." -#: flatcamGUI/FlatCAMGUI.py:4929 +#: flatcamGUI/FlatCAMGUI.py:4936 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -7455,11 +7482,11 @@ msgstr "" "Hier legen wir das verwendete Format fest\n" "Koordinaten verwenden keine Periode." -#: flatcamGUI/FlatCAMGUI.py:4965 +#: flatcamGUI/FlatCAMGUI.py:4972 msgid "Format:" msgstr "Format:" -#: flatcamGUI/FlatCAMGUI.py:4967 flatcamGUI/FlatCAMGUI.py:4977 +#: flatcamGUI/FlatCAMGUI.py:4974 flatcamGUI/FlatCAMGUI.py:4984 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -7476,7 +7503,7 @@ msgstr "" "Es muss auch angegeben werden, wenn LZ = führende Nullen beibehalten werden\n" "oder TZ = nachfolgende Nullen bleiben erhalten." -#: flatcamGUI/FlatCAMGUI.py:5001 +#: flatcamGUI/FlatCAMGUI.py:5008 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -7490,11 +7517,11 @@ msgstr "" "Wenn TZ aktiviert ist, werden nachfolgende Nullen beibehalten\n" "und führende Nullen werden entfernt." -#: flatcamGUI/FlatCAMGUI.py:5027 +#: flatcamGUI/FlatCAMGUI.py:5034 msgid "Geometry General" msgstr "Geometrie Allgemein" -#: flatcamGUI/FlatCAMGUI.py:5045 +#: flatcamGUI/FlatCAMGUI.py:5052 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -7502,15 +7529,15 @@ msgstr "" "Die Anzahl der Kreisschritte für die Geometrie\n" "Kreis- und Bogenformen lineare Annäherung." -#: flatcamGUI/FlatCAMGUI.py:5053 +#: flatcamGUI/FlatCAMGUI.py:5060 msgid "Tools" msgstr "Werkzeuge" -#: flatcamGUI/FlatCAMGUI.py:5060 +#: flatcamGUI/FlatCAMGUI.py:5067 msgid "Tool dia: " msgstr "Werkzeugdurchmesser:" -#: flatcamGUI/FlatCAMGUI.py:5062 +#: flatcamGUI/FlatCAMGUI.py:5069 msgid "" "The diameter of the cutting\n" "tool.." @@ -7518,15 +7545,15 @@ msgstr "" "Der Durchmesser des Schnitts\n" "Werkzeug.." -#: flatcamGUI/FlatCAMGUI.py:5077 +#: flatcamGUI/FlatCAMGUI.py:5084 msgid "Geometry Options" msgstr "Geometrieoptionen" -#: flatcamGUI/FlatCAMGUI.py:5082 +#: flatcamGUI/FlatCAMGUI.py:5089 msgid "Create CNC Job:" msgstr "CNC-Auftrag erstellen:" -#: flatcamGUI/FlatCAMGUI.py:5084 +#: flatcamGUI/FlatCAMGUI.py:5091 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -7536,7 +7563,7 @@ msgstr "" "die Konturen davon nachzeichnen\n" "Geometrieobjekt." -#: flatcamGUI/FlatCAMGUI.py:5096 flatcamGUI/ObjectUI.py:1065 +#: flatcamGUI/FlatCAMGUI.py:5103 flatcamGUI/ObjectUI.py:1065 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -7544,19 +7571,19 @@ msgstr "" "Schnitttiefe (negativ)\n" "unter der Kupferoberfläche." -#: flatcamGUI/FlatCAMGUI.py:5104 +#: flatcamGUI/FlatCAMGUI.py:5111 msgid "Multidepth" msgstr "Mehrere tiefe" -#: flatcamGUI/FlatCAMGUI.py:5106 +#: flatcamGUI/FlatCAMGUI.py:5113 msgid "Multidepth usage: True or False." msgstr "Mehrere Tiefe-Nutzung: Richtig oder Falsch." -#: flatcamGUI/FlatCAMGUI.py:5111 +#: flatcamGUI/FlatCAMGUI.py:5118 msgid "Depth/Pass:" msgstr "Tiefe / Pass:" -#: flatcamGUI/FlatCAMGUI.py:5113 +#: flatcamGUI/FlatCAMGUI.py:5120 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -7570,7 +7597,7 @@ msgstr "" "es ist ein Bruch aus der Tiefe\n" "was einen negativen Wert hat." -#: flatcamGUI/FlatCAMGUI.py:5129 flatcamGUI/ObjectUI.py:1101 +#: flatcamGUI/FlatCAMGUI.py:5136 flatcamGUI/ObjectUI.py:1101 msgid "" "Height of the tool when\n" "moving without cutting." @@ -7578,11 +7605,11 @@ msgstr "" "Höhe des Werkzeugs, wenn\n" "bewegen ohne zu schneiden" -#: flatcamGUI/FlatCAMGUI.py:5156 flatcamGUI/ObjectUI.py:1156 +#: flatcamGUI/FlatCAMGUI.py:5163 flatcamGUI/ObjectUI.py:1156 msgid "Feed Rate X-Y:" msgstr "Vorschubrate X-Y:" -#: flatcamGUI/FlatCAMGUI.py:5158 flatcamGUI/ObjectUI.py:1159 +#: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/ObjectUI.py:1159 msgid "" "Cutting speed in the XY\n" "plane in units per minute" @@ -7590,11 +7617,11 @@ msgstr "" "Schnittgeschwindigkeit im XY\n" "Flugzeug in Einheiten pro Minute" -#: flatcamGUI/FlatCAMGUI.py:5166 +#: flatcamGUI/FlatCAMGUI.py:5173 msgid "Feed Rate Z:" msgstr "Vorschubrate Z:" -#: flatcamGUI/FlatCAMGUI.py:5168 +#: flatcamGUI/FlatCAMGUI.py:5175 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -7604,12 +7631,12 @@ msgstr "" "Flugzeug in Einheiten pro Minute.\n" "Es heißt auch Sturz." -#: flatcamGUI/FlatCAMGUI.py:5177 flatcamGUI/ObjectUI.py:682 +#: flatcamGUI/FlatCAMGUI.py:5184 flatcamGUI/ObjectUI.py:682 #: flatcamGUI/ObjectUI.py:1211 msgid "Spindle speed:" msgstr "Spulengeschwindigkeit:" -#: flatcamGUI/FlatCAMGUI.py:5220 +#: flatcamGUI/FlatCAMGUI.py:5227 msgid "" "The postprocessor file that dictates\n" "Machine Code output." @@ -7617,11 +7644,11 @@ msgstr "" "Die Postprozessor-Datei, die diktiert\n" "Maschinencode-Ausgabe." -#: flatcamGUI/FlatCAMGUI.py:5236 +#: flatcamGUI/FlatCAMGUI.py:5243 msgid "Geometry Adv. Options" msgstr "Geometrie Erw. Optionen" -#: flatcamGUI/FlatCAMGUI.py:5243 +#: flatcamGUI/FlatCAMGUI.py:5250 msgid "" "Parameters to create a CNC Job object\n" "tracing the contours of a Geometry object." @@ -7629,7 +7656,7 @@ msgstr "" "Parameter zum Erstellen eines CNC-Auftragsobjekts\n" "Verfolgung der Konturen eines Geometrieobjekts." -#: flatcamGUI/FlatCAMGUI.py:5263 +#: flatcamGUI/FlatCAMGUI.py:5270 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -7637,7 +7664,7 @@ msgstr "" "Höhe des Werkzeugs unmittelbar nach Beginn der Arbeit.\n" "Löschen Sie den Wert, wenn Sie diese Funktion nicht benötigen." -#: flatcamGUI/FlatCAMGUI.py:5283 +#: flatcamGUI/FlatCAMGUI.py:5290 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -7651,11 +7678,11 @@ msgstr "" "Es ist nur für Marlin nützlich,\n" "für andere Fälle ignorieren." -#: flatcamGUI/FlatCAMGUI.py:5295 +#: flatcamGUI/FlatCAMGUI.py:5302 msgid "Re-cut 1st pt." msgstr "1. Punkt erneut schneiden" -#: flatcamGUI/FlatCAMGUI.py:5297 flatcamGUI/ObjectUI.py:1202 +#: flatcamGUI/FlatCAMGUI.py:5304 flatcamGUI/ObjectUI.py:1202 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -7667,11 +7694,11 @@ msgstr "" "Beim letzten Schnitt treffen wir einen\n" "verlängerter Schnitt über dem ersten Schnittabschnitt." -#: flatcamGUI/FlatCAMGUI.py:5336 +#: flatcamGUI/FlatCAMGUI.py:5343 msgid "Seg. X size:" msgstr "Seg. X Größe:" -#: flatcamGUI/FlatCAMGUI.py:5338 +#: flatcamGUI/FlatCAMGUI.py:5345 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -7681,11 +7708,11 @@ msgstr "" "Nützlich für die automatische Nivellierung.\n" "Ein Wert von 0 bedeutet keine Segmentierung auf der X-Achse." -#: flatcamGUI/FlatCAMGUI.py:5347 +#: flatcamGUI/FlatCAMGUI.py:5354 msgid "Seg. Y size:" msgstr "Seg. Y Größe:" -#: flatcamGUI/FlatCAMGUI.py:5349 +#: flatcamGUI/FlatCAMGUI.py:5356 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -7695,15 +7722,15 @@ msgstr "" "Nützlich für die automatische Nivellierung.\n" "Ein Wert von 0 bedeutet keine Segmentierung auf der Y-Achse." -#: flatcamGUI/FlatCAMGUI.py:5365 +#: flatcamGUI/FlatCAMGUI.py:5372 msgid "Geometry Editor" msgstr "Geo-Editor" -#: flatcamGUI/FlatCAMGUI.py:5370 +#: flatcamGUI/FlatCAMGUI.py:5377 msgid "A list of Geometry Editor parameters." msgstr "Eine Liste der Geometry Editor-Parameter." -#: flatcamGUI/FlatCAMGUI.py:5380 +#: flatcamGUI/FlatCAMGUI.py:5387 msgid "" "Set the number of selected geometry\n" "items above which the utility geometry\n" @@ -7717,20 +7744,20 @@ msgstr "" "Erhöht die Leistung beim Bewegen von a\n" "große Anzahl von geometrischen Elementen." -#: flatcamGUI/FlatCAMGUI.py:5399 +#: flatcamGUI/FlatCAMGUI.py:5406 msgid "CNC Job General" msgstr "CNC-Job Allgemein" -#: flatcamGUI/FlatCAMGUI.py:5412 flatcamGUI/ObjectUI.py:544 +#: flatcamGUI/FlatCAMGUI.py:5419 flatcamGUI/ObjectUI.py:544 #: flatcamGUI/ObjectUI.py:877 flatcamGUI/ObjectUI.py:1434 msgid "Plot Object" msgstr "Plotobjekt" -#: flatcamGUI/FlatCAMGUI.py:5419 +#: flatcamGUI/FlatCAMGUI.py:5426 msgid "Plot kind:" msgstr "Darstellungsart:" -#: flatcamGUI/FlatCAMGUI.py:5421 flatcamGUI/ObjectUI.py:1356 +#: flatcamGUI/FlatCAMGUI.py:5428 flatcamGUI/ObjectUI.py:1356 msgid "" "This selects the kind of geometries on the canvas to plot.\n" "Those can be either of type 'Travel' which means the moves\n" @@ -7743,7 +7770,7 @@ msgstr "" "über dem Werkstück oder es kann vom Typ 'Ausschneiden' sein,\n" "was bedeutet, dass die Bewegungen, die in das Material geschnitten werden." -#: flatcamGUI/FlatCAMGUI.py:5440 +#: flatcamGUI/FlatCAMGUI.py:5447 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -7751,7 +7778,7 @@ msgstr "" "Die Anzahl der Kreisschritte für GCode\n" "Kreis- und Bogenformen lineare Annäherung." -#: flatcamGUI/FlatCAMGUI.py:5450 +#: flatcamGUI/FlatCAMGUI.py:5457 msgid "" "Diameter of the tool to be\n" "rendered in the plot." @@ -7759,11 +7786,11 @@ msgstr "" "Durchmesser des Werkzeugs sein\n" "in der Handlung gerendert." -#: flatcamGUI/FlatCAMGUI.py:5458 +#: flatcamGUI/FlatCAMGUI.py:5465 msgid "Coords dec.:" msgstr "Koordinate Dezimalzahlen:" -#: flatcamGUI/FlatCAMGUI.py:5460 +#: flatcamGUI/FlatCAMGUI.py:5467 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -7771,11 +7798,11 @@ msgstr "" "Die Anzahl der Dezimalstellen, für die verwendet werden soll\n" "die X-, Y-, Z-Koordinaten im CNC-Code (GCODE usw.)" -#: flatcamGUI/FlatCAMGUI.py:5468 +#: flatcamGUI/FlatCAMGUI.py:5475 msgid "Feedrate dec.:" msgstr "Vorschub-Nachkommastellen:" -#: flatcamGUI/FlatCAMGUI.py:5470 +#: flatcamGUI/FlatCAMGUI.py:5477 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -7783,15 +7810,15 @@ msgstr "" "Die Anzahl der Dezimalstellen, für die verwendet werden soll\n" "der Vorschubparameter im CNC-Code (GCODE usw.)" -#: flatcamGUI/FlatCAMGUI.py:5485 +#: flatcamGUI/FlatCAMGUI.py:5492 msgid "CNC Job Options" msgstr "CNC-Auftragsoptionen" -#: flatcamGUI/FlatCAMGUI.py:5488 flatcamGUI/FlatCAMGUI.py:5529 +#: flatcamGUI/FlatCAMGUI.py:5495 flatcamGUI/FlatCAMGUI.py:5536 msgid "Export G-Code:" msgstr "G-Code exportieren:" -#: flatcamGUI/FlatCAMGUI.py:5490 flatcamGUI/FlatCAMGUI.py:5531 +#: flatcamGUI/FlatCAMGUI.py:5497 flatcamGUI/FlatCAMGUI.py:5538 #: flatcamGUI/ObjectUI.py:1470 msgid "" "Export and save G-Code to\n" @@ -7800,11 +7827,11 @@ msgstr "" "Exportieren und speichern Sie den G-Code nach\n" "Machen Sie dieses Objekt in eine Datei." -#: flatcamGUI/FlatCAMGUI.py:5496 +#: flatcamGUI/FlatCAMGUI.py:5503 msgid "Prepend to G-Code:" msgstr "Voranstellen an G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5498 +#: flatcamGUI/FlatCAMGUI.py:5505 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." @@ -7812,11 +7839,11 @@ msgstr "" "Geben Sie hier alle G-Code-Befehle ein\n" "gerne am Anfang der G-Code-Datei hinzufügen." -#: flatcamGUI/FlatCAMGUI.py:5507 +#: flatcamGUI/FlatCAMGUI.py:5514 msgid "Append to G-Code:" msgstr "An G-Code anhängen:" -#: flatcamGUI/FlatCAMGUI.py:5509 flatcamGUI/ObjectUI.py:1492 +#: flatcamGUI/FlatCAMGUI.py:5516 flatcamGUI/ObjectUI.py:1492 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" @@ -7826,15 +7853,15 @@ msgstr "" "gerne an die generierte Datei anhängen.\n" "I.e .: M2 (Programmende)" -#: flatcamGUI/FlatCAMGUI.py:5526 +#: flatcamGUI/FlatCAMGUI.py:5533 msgid "CNC Job Adv. Options" msgstr "Erw. CNC-Joboptionen" -#: flatcamGUI/FlatCAMGUI.py:5537 flatcamGUI/ObjectUI.py:1510 +#: flatcamGUI/FlatCAMGUI.py:5544 flatcamGUI/ObjectUI.py:1510 msgid "Toolchange G-Code:" msgstr "Werkzeugwechsel G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5539 +#: flatcamGUI/FlatCAMGUI.py:5546 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -7846,11 +7873,11 @@ msgstr "" "Dies stellt einen benutzerdefinierten Werkzeugwechsel-GCode dar.\n" "oder ein Werkzeugwechsel-Makro." -#: flatcamGUI/FlatCAMGUI.py:5553 flatcamGUI/ObjectUI.py:1532 +#: flatcamGUI/FlatCAMGUI.py:5560 flatcamGUI/ObjectUI.py:1532 msgid "Use Toolchange Macro" msgstr "Benutze das Werkzeugwechselmakro" -#: flatcamGUI/FlatCAMGUI.py:5555 flatcamGUI/ObjectUI.py:1535 +#: flatcamGUI/FlatCAMGUI.py:5562 flatcamGUI/ObjectUI.py:1535 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -7858,7 +7885,7 @@ msgstr "" "Aktivieren Sie dieses Kontrollkästchen, wenn Sie verwenden möchten\n" "ein benutzerdefiniertes Werkzeug ändert GCode (Makro)." -#: flatcamGUI/FlatCAMGUI.py:5567 flatcamGUI/ObjectUI.py:1544 +#: flatcamGUI/FlatCAMGUI.py:5574 flatcamGUI/ObjectUI.py:1544 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -7868,73 +7895,73 @@ msgstr "" "im Werkzeugwechselereignis.\n" "Sie müssen mit dem \"%\" -Symbol umgeben sein" -#: flatcamGUI/FlatCAMGUI.py:5574 flatcamGUI/ObjectUI.py:1551 +#: flatcamGUI/FlatCAMGUI.py:5581 flatcamGUI/ObjectUI.py:1551 msgid "Parameters" msgstr "Parameters" -#: flatcamGUI/FlatCAMGUI.py:5577 flatcamGUI/ObjectUI.py:1554 +#: flatcamGUI/FlatCAMGUI.py:5584 flatcamGUI/ObjectUI.py:1554 msgid "FlatCAM CNC parameters" msgstr "FlatCAM CNC-Parameter" -#: flatcamGUI/FlatCAMGUI.py:5578 flatcamGUI/ObjectUI.py:1555 +#: flatcamGUI/FlatCAMGUI.py:5585 flatcamGUI/ObjectUI.py:1555 msgid "tool = tool number" msgstr "tool = Werkzeugnummer" -#: flatcamGUI/FlatCAMGUI.py:5579 flatcamGUI/ObjectUI.py:1556 +#: flatcamGUI/FlatCAMGUI.py:5586 flatcamGUI/ObjectUI.py:1556 msgid "tooldia = tool diameter" msgstr "tooldia = Werkzeugdurchmesser" -#: flatcamGUI/FlatCAMGUI.py:5580 flatcamGUI/ObjectUI.py:1557 +#: flatcamGUI/FlatCAMGUI.py:5587 flatcamGUI/ObjectUI.py:1557 msgid "t_drills = for Excellon, total number of drills" msgstr "t_drills = für Excellon die Gesamtzahl der Bohrer" -#: flatcamGUI/FlatCAMGUI.py:5581 flatcamGUI/ObjectUI.py:1558 +#: flatcamGUI/FlatCAMGUI.py:5588 flatcamGUI/ObjectUI.py:1558 msgid "x_toolchange = X coord for Toolchange" msgstr "x_toolchange = X-Koord für Werkzeugwechsel" -#: flatcamGUI/FlatCAMGUI.py:5582 flatcamGUI/ObjectUI.py:1559 +#: flatcamGUI/FlatCAMGUI.py:5589 flatcamGUI/ObjectUI.py:1559 msgid "y_toolchange = Y coord for Toolchange" msgstr "y_toolchange = Y-Koord für Werkzeugwechsel" -#: flatcamGUI/FlatCAMGUI.py:5583 flatcamGUI/ObjectUI.py:1560 +#: flatcamGUI/FlatCAMGUI.py:5590 flatcamGUI/ObjectUI.py:1560 msgid "z_toolchange = Z coord for Toolchange" msgstr "z_toolchange = Z-Koord für Werkzeugwechsel" -#: flatcamGUI/FlatCAMGUI.py:5584 +#: flatcamGUI/FlatCAMGUI.py:5591 msgid "z_cut = Z depth for the cut" msgstr "z_cut = Z Tiefe für den Schnitt" -#: flatcamGUI/FlatCAMGUI.py:5585 +#: flatcamGUI/FlatCAMGUI.py:5592 msgid "z_move = Z height for travel" msgstr "z_move = Z Höhe für die Reise" -#: flatcamGUI/FlatCAMGUI.py:5586 flatcamGUI/ObjectUI.py:1563 +#: flatcamGUI/FlatCAMGUI.py:5593 flatcamGUI/ObjectUI.py:1563 msgid "z_depthpercut = the step value for multidepth cut" msgstr "z_depthpercut =der Schrittwert für den mehrstufigen Schnitt" -#: flatcamGUI/FlatCAMGUI.py:5587 flatcamGUI/ObjectUI.py:1564 +#: flatcamGUI/FlatCAMGUI.py:5594 flatcamGUI/ObjectUI.py:1564 msgid "spindlesspeed = the value for the spindle speed" msgstr "spindlesspeed =der Wert für die Spindeldrehzahl" -#: flatcamGUI/FlatCAMGUI.py:5588 flatcamGUI/ObjectUI.py:1565 +#: flatcamGUI/FlatCAMGUI.py:5595 flatcamGUI/ObjectUI.py:1565 msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" msgstr "" "dwelltime = Zeit zum Verweilen, damit die Spindel ihre eingestellte Drehzahl " "erreicht" -#: flatcamGUI/FlatCAMGUI.py:5609 +#: flatcamGUI/FlatCAMGUI.py:5616 msgid "NCC Tool Options" msgstr "NCC-Tooloptionen" -#: flatcamGUI/FlatCAMGUI.py:5622 flatcamGUI/FlatCAMGUI.py:6352 +#: flatcamGUI/FlatCAMGUI.py:5629 flatcamGUI/FlatCAMGUI.py:6359 msgid "Tools dia:" msgstr "Werkzeug durchmesser:" -#: flatcamGUI/FlatCAMGUI.py:5624 +#: flatcamGUI/FlatCAMGUI.py:5631 msgid "Diameters of the cutting tools, separated by ','" msgstr "Durchmesser der Schneidwerkzeuge, getrennt durch ','" -#: flatcamGUI/FlatCAMGUI.py:5632 flatcamTools/ToolNonCopperClear.py:167 +#: flatcamGUI/FlatCAMGUI.py:5639 flatcamTools/ToolNonCopperClear.py:167 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -7963,11 +7990,11 @@ msgstr "" "Höhere Werte = langsame Bearbeitung und langsame Ausführung auf der CNC\n" "wegen zu vieler Wege." -#: flatcamGUI/FlatCAMGUI.py:5648 flatcamTools/ToolNonCopperClear.py:183 +#: flatcamGUI/FlatCAMGUI.py:5655 flatcamTools/ToolNonCopperClear.py:183 msgid "Bounding box margin." msgstr "Begrenzungsrahmenrand." -#: flatcamGUI/FlatCAMGUI.py:5657 flatcamTools/ToolNonCopperClear.py:192 +#: flatcamGUI/FlatCAMGUI.py:5664 flatcamTools/ToolNonCopperClear.py:192 #: flatcamTools/ToolPaint.py:190 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -7978,12 +8005,12 @@ msgstr "" "Schritt nach innen. Seed-based : Ausgehend vom Saatgut.
" "Line-based: Parallele Linien." -#: flatcamGUI/FlatCAMGUI.py:5689 flatcamTools/ToolNonCopperClear.py:224 +#: flatcamGUI/FlatCAMGUI.py:5696 flatcamTools/ToolNonCopperClear.py:224 #: flatcamTools/ToolPaint.py:222 msgid "Rest M.:" msgstr "Rest M.:" -#: flatcamGUI/FlatCAMGUI.py:5691 +#: flatcamGUI/FlatCAMGUI.py:5698 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -7999,11 +8026,11 @@ msgstr "" "konnte nicht mit dem vorherigen Tool gelöscht werden.\n" "Wenn nicht aktiviert, verwenden Sie den Standardalgorithmus." -#: flatcamGUI/FlatCAMGUI.py:5710 +#: flatcamGUI/FlatCAMGUI.py:5717 msgid "Cutout Tool Options" msgstr "Ausschnittwerkzeug-Optionen" -#: flatcamGUI/FlatCAMGUI.py:5715 flatcamGUI/ObjectUI.py:402 +#: flatcamGUI/FlatCAMGUI.py:5722 flatcamGUI/ObjectUI.py:402 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -8013,7 +8040,7 @@ msgstr "" "die PCB und trennen Sie es von\n" "das ursprüngliche Brett." -#: flatcamGUI/FlatCAMGUI.py:5734 +#: flatcamGUI/FlatCAMGUI.py:5741 msgid "" "Distance from objects at which\n" "to draw the cutout." @@ -8021,11 +8048,11 @@ msgstr "" "Entfernung von Objekten bei denen\n" "den Ausschnitt zeichnen." -#: flatcamGUI/FlatCAMGUI.py:5741 flatcamTools/ToolCutOut.py:96 +#: flatcamGUI/FlatCAMGUI.py:5748 flatcamTools/ToolCutOut.py:96 msgid "Gap size:" msgstr "Spaltgröße:" -#: flatcamGUI/FlatCAMGUI.py:5743 +#: flatcamGUI/FlatCAMGUI.py:5750 msgid "" "Size of the gaps in the toolpath\n" "that will remain to hold the\n" @@ -8035,11 +8062,11 @@ msgstr "" "das wird bleiben, um das zu halten\n" "Board an Ort und Stelle." -#: flatcamGUI/FlatCAMGUI.py:5751 flatcamTools/ToolCutOut.py:134 +#: flatcamGUI/FlatCAMGUI.py:5758 flatcamTools/ToolCutOut.py:134 msgid "Gaps:" msgstr "Spalt:" -#: flatcamGUI/FlatCAMGUI.py:5753 +#: flatcamGUI/FlatCAMGUI.py:5760 msgid "" "Number of bridge gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -8061,19 +8088,19 @@ msgstr "" "- 2 tb \t- 2 * oben + 2 * unten\n" "- 8 \t- 2 * links + 2 * rechts + 2 * oben + 2 * unten" -#: flatcamGUI/FlatCAMGUI.py:5774 flatcamTools/ToolCutOut.py:115 +#: flatcamGUI/FlatCAMGUI.py:5781 flatcamTools/ToolCutOut.py:115 msgid "Convex Sh.:" msgstr "Konvexe Form .:" -#: flatcamGUI/FlatCAMGUI.py:5776 +#: flatcamGUI/FlatCAMGUI.py:5783 msgid "Create a convex shape surrounding the entire PCB." msgstr "Erstellen Sie eine konvexe Form, die die gesamte Leiterplatte umgibt." -#: flatcamGUI/FlatCAMGUI.py:5789 +#: flatcamGUI/FlatCAMGUI.py:5796 msgid "2Sided Tool Options" msgstr "2Seitige Werkzeugoptionen" -#: flatcamGUI/FlatCAMGUI.py:5794 +#: flatcamGUI/FlatCAMGUI.py:5801 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -8081,28 +8108,28 @@ msgstr "" "Ein Werkzeug, das beim Erstellen eines doppelseitigen Dokuments hilft\n" "PCB mit Ausrichtungslöchern." -#: flatcamGUI/FlatCAMGUI.py:5804 flatcamTools/ToolDblSided.py:235 +#: flatcamGUI/FlatCAMGUI.py:5811 flatcamTools/ToolDblSided.py:235 msgid "Drill diam.:" msgstr "Bohrdurchmesser:" -#: flatcamGUI/FlatCAMGUI.py:5806 flatcamTools/ToolDblSided.py:226 +#: flatcamGUI/FlatCAMGUI.py:5813 flatcamTools/ToolDblSided.py:226 #: flatcamTools/ToolDblSided.py:237 msgid "Diameter of the drill for the alignment holes." msgstr "Durchmesser des Bohrers für die Ausrichtungslöcher." -#: flatcamGUI/FlatCAMGUI.py:5815 flatcamTools/ToolDblSided.py:120 +#: flatcamGUI/FlatCAMGUI.py:5822 flatcamTools/ToolDblSided.py:120 msgid "Mirror Axis:" msgstr "Spiegelachse:" -#: flatcamGUI/FlatCAMGUI.py:5817 flatcamTools/ToolDblSided.py:122 +#: flatcamGUI/FlatCAMGUI.py:5824 flatcamTools/ToolDblSided.py:122 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Vertikal spiegeln (X) oder horizontal (Y)." -#: flatcamGUI/FlatCAMGUI.py:5828 flatcamTools/ToolDblSided.py:133 +#: flatcamGUI/FlatCAMGUI.py:5835 flatcamTools/ToolDblSided.py:133 msgid "Axis Ref:" msgstr "Achsenreferenz:" -#: flatcamGUI/FlatCAMGUI.py:5830 +#: flatcamGUI/FlatCAMGUI.py:5837 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a Geometry object) in \n" @@ -8112,11 +8139,11 @@ msgstr "" "ein angegebenes Feld (in einem Geometrieobjekt) in\n" "die Mitte." -#: flatcamGUI/FlatCAMGUI.py:5846 +#: flatcamGUI/FlatCAMGUI.py:5853 msgid "Paint Tool Options" msgstr "Paint werkzeug-Optionen" -#: flatcamGUI/FlatCAMGUI.py:5853 flatcamGUI/ObjectUI.py:1305 +#: flatcamGUI/FlatCAMGUI.py:5860 flatcamGUI/ObjectUI.py:1305 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -8128,7 +8155,7 @@ msgstr "" "alles Kupfer). Du wirst gefragt\n" "Klicken Sie auf das gewünschte Polygon." -#: flatcamGUI/FlatCAMGUI.py:5877 +#: flatcamGUI/FlatCAMGUI.py:5884 msgid "" "How much (fraction) of the tool\n" "width to overlap each tool pass." @@ -8136,19 +8163,19 @@ msgstr "" "Wie viel (Bruchteil) des Werkzeugs\n" "Breite, um jeden Werkzeugdurchgang zu überlappen." -#: flatcamGUI/FlatCAMGUI.py:5931 flatcamTools/ToolPaint.py:237 +#: flatcamGUI/FlatCAMGUI.py:5938 flatcamTools/ToolPaint.py:237 msgid "Selection:" msgstr "Auswahl:" -#: flatcamGUI/FlatCAMGUI.py:5933 +#: flatcamGUI/FlatCAMGUI.py:5940 msgid "How to select the polygons to paint." msgstr "So wählen Sie die Polygone zum Malen aus." -#: flatcamGUI/FlatCAMGUI.py:5951 +#: flatcamGUI/FlatCAMGUI.py:5958 msgid "Film Tool Options" msgstr "Filmwerkzeugoptionen" -#: flatcamGUI/FlatCAMGUI.py:5956 +#: flatcamGUI/FlatCAMGUI.py:5963 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -8158,11 +8185,11 @@ msgstr "" "FlatCAM-Objekt\n" "Die Datei wird im SVG-Format gespeichert." -#: flatcamGUI/FlatCAMGUI.py:5967 flatcamTools/ToolFilm.py:116 +#: flatcamGUI/FlatCAMGUI.py:5974 flatcamTools/ToolFilm.py:116 msgid "Film Type:" msgstr "Filmtyp:" -#: flatcamGUI/FlatCAMGUI.py:5969 flatcamTools/ToolFilm.py:118 +#: flatcamGUI/FlatCAMGUI.py:5976 flatcamTools/ToolFilm.py:118 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -8178,11 +8205,11 @@ msgstr "" "mit weiß auf einer schwarzen leinwand.\n" "Das Filmformat ist SVG." -#: flatcamGUI/FlatCAMGUI.py:5980 flatcamTools/ToolFilm.py:130 +#: flatcamGUI/FlatCAMGUI.py:5987 flatcamTools/ToolFilm.py:130 msgid "Border:" msgstr "Rand:" -#: flatcamGUI/FlatCAMGUI.py:5982 flatcamTools/ToolFilm.py:132 +#: flatcamGUI/FlatCAMGUI.py:5989 flatcamTools/ToolFilm.py:132 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -8202,11 +8229,11 @@ msgstr "" "weiße Farbe wie der Rest und die mit der verwechseln kann\n" "Umgebung, wenn nicht für diese Grenze." -#: flatcamGUI/FlatCAMGUI.py:5995 flatcamTools/ToolFilm.py:144 +#: flatcamGUI/FlatCAMGUI.py:6002 flatcamTools/ToolFilm.py:144 msgid "Scale Stroke:" msgstr "Skalierungshub:" -#: flatcamGUI/FlatCAMGUI.py:5997 flatcamTools/ToolFilm.py:146 +#: flatcamGUI/FlatCAMGUI.py:6004 flatcamTools/ToolFilm.py:146 msgid "" "Scale the line stroke thickness of each feature in the SVG file.\n" "It means that the line that envelope each SVG feature will be thicker or " @@ -8218,11 +8245,11 @@ msgstr "" "dünner ist.\n" "Daher können die Feinheiten von diesem Parameter stärker beeinflusst werden." -#: flatcamGUI/FlatCAMGUI.py:6012 +#: flatcamGUI/FlatCAMGUI.py:6019 msgid "Panelize Tool Options" msgstr "Panelize Werkzeugoptionen" -#: flatcamGUI/FlatCAMGUI.py:6017 +#: flatcamGUI/FlatCAMGUI.py:6024 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -8232,11 +8259,11 @@ msgstr "" "Jedes Element ist eine Kopie des Quellobjekts\n" "in einem X-Abstand, Y-Abstand voneinander." -#: flatcamGUI/FlatCAMGUI.py:6028 flatcamTools/ToolPanelize.py:147 +#: flatcamGUI/FlatCAMGUI.py:6035 flatcamTools/ToolPanelize.py:147 msgid "Spacing cols:" msgstr "Abstandspalten:" -#: flatcamGUI/FlatCAMGUI.py:6030 flatcamTools/ToolPanelize.py:149 +#: flatcamGUI/FlatCAMGUI.py:6037 flatcamTools/ToolPanelize.py:149 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -8244,11 +8271,11 @@ msgstr "" "Abstand zwischen den Spalten des gewünschten Bereichs.\n" "In aktuellen Einheiten." -#: flatcamGUI/FlatCAMGUI.py:6038 flatcamTools/ToolPanelize.py:156 +#: flatcamGUI/FlatCAMGUI.py:6045 flatcamTools/ToolPanelize.py:156 msgid "Spacing rows:" msgstr "Abstand Reihen:" -#: flatcamGUI/FlatCAMGUI.py:6040 flatcamTools/ToolPanelize.py:158 +#: flatcamGUI/FlatCAMGUI.py:6047 flatcamTools/ToolPanelize.py:158 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -8256,27 +8283,27 @@ msgstr "" "Abstand zwischen den Reihen des gewünschten Feldes.\n" "In aktuellen Einheiten." -#: flatcamGUI/FlatCAMGUI.py:6048 flatcamTools/ToolPanelize.py:165 +#: flatcamGUI/FlatCAMGUI.py:6055 flatcamTools/ToolPanelize.py:165 msgid "Columns:" msgstr "Säulen:" -#: flatcamGUI/FlatCAMGUI.py:6050 flatcamTools/ToolPanelize.py:167 +#: flatcamGUI/FlatCAMGUI.py:6057 flatcamTools/ToolPanelize.py:167 msgid "Number of columns of the desired panel" msgstr "Anzahl der Spalten des gewünschten Bereichs" -#: flatcamGUI/FlatCAMGUI.py:6057 flatcamTools/ToolPanelize.py:173 +#: flatcamGUI/FlatCAMGUI.py:6064 flatcamTools/ToolPanelize.py:173 msgid "Rows:" msgstr "Reihen:" -#: flatcamGUI/FlatCAMGUI.py:6059 flatcamTools/ToolPanelize.py:175 +#: flatcamGUI/FlatCAMGUI.py:6066 flatcamTools/ToolPanelize.py:175 msgid "Number of rows of the desired panel" msgstr "Anzahl der Zeilen des gewünschten Panels" -#: flatcamGUI/FlatCAMGUI.py:6067 +#: flatcamGUI/FlatCAMGUI.py:6074 msgid "Panel Type:" msgstr "Panel-Typ:" -#: flatcamGUI/FlatCAMGUI.py:6069 +#: flatcamGUI/FlatCAMGUI.py:6076 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -8286,11 +8313,11 @@ msgstr "" "- Gerber\n" "- Geometrie" -#: flatcamGUI/FlatCAMGUI.py:6078 +#: flatcamGUI/FlatCAMGUI.py:6085 msgid "Constrain within:" msgstr "Beschränkung innerhalb:" -#: flatcamGUI/FlatCAMGUI.py:6080 flatcamTools/ToolPanelize.py:195 +#: flatcamGUI/FlatCAMGUI.py:6087 flatcamTools/ToolPanelize.py:195 msgid "" "Area define by DX and DY within to constrain the panel.\n" "DX and DY values are in current units.\n" @@ -8304,11 +8331,11 @@ msgstr "" "Das letzte Panel enthält so viele Spalten und Zeilen wie\n" "Sie passen vollständig in den ausgewählten Bereich." -#: flatcamGUI/FlatCAMGUI.py:6089 flatcamTools/ToolPanelize.py:204 +#: flatcamGUI/FlatCAMGUI.py:6096 flatcamTools/ToolPanelize.py:204 msgid "Width (DX):" msgstr "Breite (DX):" -#: flatcamGUI/FlatCAMGUI.py:6091 flatcamTools/ToolPanelize.py:206 +#: flatcamGUI/FlatCAMGUI.py:6098 flatcamTools/ToolPanelize.py:206 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -8316,11 +8343,11 @@ msgstr "" "Die Breite (DX), in die das Panel passen muss.\n" "In aktuellen Einheiten." -#: flatcamGUI/FlatCAMGUI.py:6098 flatcamTools/ToolPanelize.py:212 +#: flatcamGUI/FlatCAMGUI.py:6105 flatcamTools/ToolPanelize.py:212 msgid "Height (DY):" msgstr "Höhe (DY):" -#: flatcamGUI/FlatCAMGUI.py:6100 flatcamTools/ToolPanelize.py:214 +#: flatcamGUI/FlatCAMGUI.py:6107 flatcamTools/ToolPanelize.py:214 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -8328,15 +8355,15 @@ msgstr "" "Die Höhe (DY), in die die Platte passen muss.\n" "In aktuellen Einheiten." -#: flatcamGUI/FlatCAMGUI.py:6114 +#: flatcamGUI/FlatCAMGUI.py:6121 msgid "Calculators Tool Options" msgstr "Rechner-Tool-Optionen" -#: flatcamGUI/FlatCAMGUI.py:6117 +#: flatcamGUI/FlatCAMGUI.py:6124 msgid "V-Shape Tool Calculator:" msgstr " V-Shape-Werkzeug Rechner: " -#: flatcamGUI/FlatCAMGUI.py:6119 +#: flatcamGUI/FlatCAMGUI.py:6126 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -8347,11 +8374,11 @@ msgstr "" "mit dem Spitzendurchmesser, Spitzenwinkel und\n" "Schnitttiefe als Parameter." -#: flatcamGUI/FlatCAMGUI.py:6130 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/FlatCAMGUI.py:6137 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter:" msgstr "Spitzendurchmesser" -#: flatcamGUI/FlatCAMGUI.py:6132 +#: flatcamGUI/FlatCAMGUI.py:6139 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -8359,11 +8386,11 @@ msgstr "" "Dies ist der Werkzeugspitzendurchmesser.\n" "Es wird vom Hersteller angegeben." -#: flatcamGUI/FlatCAMGUI.py:6140 +#: flatcamGUI/FlatCAMGUI.py:6147 msgid "Tip angle:" msgstr "Spitzenwinkel:" -#: flatcamGUI/FlatCAMGUI.py:6142 +#: flatcamGUI/FlatCAMGUI.py:6149 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -8371,7 +8398,7 @@ msgstr "" "Dies ist der Winkel an der Spitze des Werkzeugs.\n" "Es wird vom Hersteller angegeben." -#: flatcamGUI/FlatCAMGUI.py:6152 +#: flatcamGUI/FlatCAMGUI.py:6159 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." @@ -8379,11 +8406,11 @@ msgstr "" "Dies ist die Tiefe zum Schneiden in Material.\n" "Im CNCJob-Objekt ist dies der Parameter CutZ." -#: flatcamGUI/FlatCAMGUI.py:6159 +#: flatcamGUI/FlatCAMGUI.py:6166 msgid "ElectroPlating Calculator:" msgstr " Galvano-Rechner: " -#: flatcamGUI/FlatCAMGUI.py:6161 flatcamTools/ToolCalculators.py:152 +#: flatcamGUI/FlatCAMGUI.py:6168 flatcamTools/ToolCalculators.py:152 msgid "" "This calculator is useful for those who plate the via/pad/drill holes,\n" "using a method like grahite ink or calcium hypophosphite ink or palladium " @@ -8394,27 +8421,27 @@ msgstr "" "unter Verwendung einer Methode wie Grahit-Tinte oder Calcium-Hypophosphit-" "Tinte oder Palladiumchlorid." -#: flatcamGUI/FlatCAMGUI.py:6171 flatcamTools/ToolCalculators.py:161 +#: flatcamGUI/FlatCAMGUI.py:6178 flatcamTools/ToolCalculators.py:161 msgid "Board Length:" msgstr "PCB Länge:" -#: flatcamGUI/FlatCAMGUI.py:6173 flatcamTools/ToolCalculators.py:165 +#: flatcamGUI/FlatCAMGUI.py:6180 flatcamTools/ToolCalculators.py:165 msgid "This is the board length. In centimeters." msgstr "Dies ist die Boardlänge. In Zentimeter" -#: flatcamGUI/FlatCAMGUI.py:6179 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/FlatCAMGUI.py:6186 flatcamTools/ToolCalculators.py:167 msgid "Board Width:" msgstr "PCB Breite:" -#: flatcamGUI/FlatCAMGUI.py:6181 flatcamTools/ToolCalculators.py:171 +#: flatcamGUI/FlatCAMGUI.py:6188 flatcamTools/ToolCalculators.py:171 msgid "This is the board width.In centimeters." msgstr "Dies ist die Breite der Platte in Zentimetern." -#: flatcamGUI/FlatCAMGUI.py:6186 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/FlatCAMGUI.py:6193 flatcamTools/ToolCalculators.py:173 msgid "Current Density:" msgstr "Stromdichte:" -#: flatcamGUI/FlatCAMGUI.py:6189 flatcamTools/ToolCalculators.py:177 +#: flatcamGUI/FlatCAMGUI.py:6196 flatcamTools/ToolCalculators.py:177 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -8422,11 +8449,11 @@ msgstr "" "Stromdichte durch die Platine.\n" "In Ampere pro Quadratfuß ASF." -#: flatcamGUI/FlatCAMGUI.py:6195 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/FlatCAMGUI.py:6202 flatcamTools/ToolCalculators.py:181 msgid "Copper Growth:" msgstr "Kupferwachstum:" -#: flatcamGUI/FlatCAMGUI.py:6198 flatcamTools/ToolCalculators.py:185 +#: flatcamGUI/FlatCAMGUI.py:6205 flatcamTools/ToolCalculators.py:185 msgid "" "How thick the copper growth is intended to be.\n" "In microns." @@ -8434,11 +8461,11 @@ msgstr "" "Wie dick soll das Kupferwachstum sein.\n" "In Mikrometern" -#: flatcamGUI/FlatCAMGUI.py:6211 +#: flatcamGUI/FlatCAMGUI.py:6218 msgid "Transform Tool Options" msgstr "Umwandlungswerkzeug-Optionen" -#: flatcamGUI/FlatCAMGUI.py:6216 +#: flatcamGUI/FlatCAMGUI.py:6223 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -8446,47 +8473,47 @@ msgstr "" "Verschiedene Transformationen, die angewendet werden können\n" "auf einem FlatCAM-Objekt." -#: flatcamGUI/FlatCAMGUI.py:6226 +#: flatcamGUI/FlatCAMGUI.py:6233 msgid "Rotate Angle:" msgstr "Winkel drehen:" -#: flatcamGUI/FlatCAMGUI.py:6228 +#: flatcamGUI/FlatCAMGUI.py:6235 msgid "Angle for rotation. In degrees." msgstr "Drehwinkel. In grad." -#: flatcamGUI/FlatCAMGUI.py:6235 +#: flatcamGUI/FlatCAMGUI.py:6242 msgid "Skew_X angle:" msgstr "Neigungswinkel X:" -#: flatcamGUI/FlatCAMGUI.py:6237 +#: flatcamGUI/FlatCAMGUI.py:6244 msgid "Angle for Skew/Shear on X axis. In degrees." msgstr "Winkel für Neigung / Scherung auf der X-Achse. In grad." -#: flatcamGUI/FlatCAMGUI.py:6244 +#: flatcamGUI/FlatCAMGUI.py:6251 msgid "Skew_Y angle:" msgstr "Neigungswinkel Y:" -#: flatcamGUI/FlatCAMGUI.py:6246 +#: flatcamGUI/FlatCAMGUI.py:6253 msgid "Angle for Skew/Shear on Y axis. In degrees." msgstr "Winkel für Neigung / Scherung auf der Y-Achse. In grad." -#: flatcamGUI/FlatCAMGUI.py:6253 +#: flatcamGUI/FlatCAMGUI.py:6260 msgid "Scale_X factor:" msgstr "Skalierung des X-Faktors:" -#: flatcamGUI/FlatCAMGUI.py:6255 +#: flatcamGUI/FlatCAMGUI.py:6262 msgid "Factor for scaling on X axis." msgstr "Faktor für die Skalierung auf der X-Achse." -#: flatcamGUI/FlatCAMGUI.py:6262 +#: flatcamGUI/FlatCAMGUI.py:6269 msgid "Scale_Y factor:" msgstr "Skalierung des Y-Faktors:" -#: flatcamGUI/FlatCAMGUI.py:6264 +#: flatcamGUI/FlatCAMGUI.py:6271 msgid "Factor for scaling on Y axis." msgstr "Faktor für die Skalierung auf der Y-Achse." -#: flatcamGUI/FlatCAMGUI.py:6272 +#: flatcamGUI/FlatCAMGUI.py:6279 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -8494,7 +8521,7 @@ msgstr "" "Skalieren Sie die ausgewählten Objekte\n" "Verwenden des Skalierungsfaktors X für beide Achsen." -#: flatcamGUI/FlatCAMGUI.py:6280 flatcamTools/ToolTransform.py:210 +#: flatcamGUI/FlatCAMGUI.py:6287 flatcamTools/ToolTransform.py:210 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -8506,27 +8533,27 @@ msgstr "" "und die Mitte der größten Begrenzungsbox\n" "der ausgewählten Objekte, wenn sie nicht markiert sind." -#: flatcamGUI/FlatCAMGUI.py:6289 +#: flatcamGUI/FlatCAMGUI.py:6296 msgid "Offset_X val:" msgstr "Offset X Wert:" -#: flatcamGUI/FlatCAMGUI.py:6291 +#: flatcamGUI/FlatCAMGUI.py:6298 msgid "Distance to offset on X axis. In current units." msgstr "Abstand zum Offset auf der X-Achse. In aktuellen Einheiten." -#: flatcamGUI/FlatCAMGUI.py:6298 +#: flatcamGUI/FlatCAMGUI.py:6305 msgid "Offset_Y val:" msgstr "Offset Y-Wert:" -#: flatcamGUI/FlatCAMGUI.py:6300 +#: flatcamGUI/FlatCAMGUI.py:6307 msgid "Distance to offset on Y axis. In current units." msgstr "Abstand zum Offset auf der Y-Achse. In aktuellen Einheiten." -#: flatcamGUI/FlatCAMGUI.py:6306 +#: flatcamGUI/FlatCAMGUI.py:6313 msgid "Mirror Reference" msgstr "Spiegelreferenz" -#: flatcamGUI/FlatCAMGUI.py:6308 flatcamTools/ToolTransform.py:314 +#: flatcamGUI/FlatCAMGUI.py:6315 flatcamTools/ToolTransform.py:314 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -8549,11 +8576,11 @@ msgstr "" "Oder geben Sie die Koordinaten im Format (x, y) in ein\n" "Punkt-Eingabefeld und klicken Sie auf X (Y) drehen" -#: flatcamGUI/FlatCAMGUI.py:6319 +#: flatcamGUI/FlatCAMGUI.py:6326 msgid " Mirror Ref. Point:" msgstr "Spiegelref. Punkt:" -#: flatcamGUI/FlatCAMGUI.py:6321 flatcamTools/ToolTransform.py:327 +#: flatcamGUI/FlatCAMGUI.py:6328 flatcamTools/ToolTransform.py:327 msgid "" "Coordinates in format (x, y) used as reference for mirroring.\n" "The 'x' in (x, y) will be used when using Flip on X and\n" @@ -8564,11 +8591,11 @@ msgstr "" "Das 'x' in (x, y) wird verwendet, wenn Sie bei X und\n" "Das 'y' in (x, y) wird verwendet, wenn Flip auf Y und verwendet wird" -#: flatcamGUI/FlatCAMGUI.py:6338 +#: flatcamGUI/FlatCAMGUI.py:6345 msgid "SolderPaste Tool Options" msgstr "Lötpaste-Werkzeug-Optionen" -#: flatcamGUI/FlatCAMGUI.py:6343 +#: flatcamGUI/FlatCAMGUI.py:6350 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -8576,49 +8603,49 @@ msgstr "" "Ein Werkzeug zum Erstellen von GCode für die Ausgabe\n" "Lotpaste auf eine Leiterplatte." -#: flatcamGUI/FlatCAMGUI.py:6354 +#: flatcamGUI/FlatCAMGUI.py:6361 msgid "Diameters of nozzle tools, separated by ','" msgstr "Durchmesser der Düsenwerkzeuge, getrennt durch ','" -#: flatcamGUI/FlatCAMGUI.py:6361 +#: flatcamGUI/FlatCAMGUI.py:6368 msgid "New Nozzle Dia:" msgstr " Neuer Düsendurchmesser: " -#: flatcamGUI/FlatCAMGUI.py:6363 flatcamTools/ToolSolderPaste.py:103 +#: flatcamGUI/FlatCAMGUI.py:6370 flatcamTools/ToolSolderPaste.py:103 msgid "Diameter for the new Nozzle tool to add in the Tool Table" msgstr "" "Durchmesser für das neue Düsenwerkzeug, das in die Werkzeugtabelle eingefügt " "werden soll" -#: flatcamGUI/FlatCAMGUI.py:6371 flatcamTools/ToolSolderPaste.py:166 +#: flatcamGUI/FlatCAMGUI.py:6378 flatcamTools/ToolSolderPaste.py:166 msgid "Z Dispense Start:" msgstr "Z Dosierbeginn:" -#: flatcamGUI/FlatCAMGUI.py:6373 flatcamTools/ToolSolderPaste.py:168 +#: flatcamGUI/FlatCAMGUI.py:6380 flatcamTools/ToolSolderPaste.py:168 msgid "The height (Z) when solder paste dispensing starts." msgstr "Die Höhe (Z) bei der Lotpastendosierung." -#: flatcamGUI/FlatCAMGUI.py:6380 flatcamTools/ToolSolderPaste.py:174 +#: flatcamGUI/FlatCAMGUI.py:6387 flatcamTools/ToolSolderPaste.py:174 msgid "Z Dispense:" msgstr "Z-Abgabe:" -#: flatcamGUI/FlatCAMGUI.py:6382 flatcamTools/ToolSolderPaste.py:176 +#: flatcamGUI/FlatCAMGUI.py:6389 flatcamTools/ToolSolderPaste.py:176 msgid "The height (Z) when doing solder paste dispensing." msgstr "Die Höhe (Z) bei der Lotpastendosierung." -#: flatcamGUI/FlatCAMGUI.py:6389 flatcamTools/ToolSolderPaste.py:183 +#: flatcamGUI/FlatCAMGUI.py:6396 flatcamTools/ToolSolderPaste.py:183 msgid "Z Dispense Stop:" msgstr "Z Abgabestopp:" -#: flatcamGUI/FlatCAMGUI.py:6391 flatcamTools/ToolSolderPaste.py:185 +#: flatcamGUI/FlatCAMGUI.py:6398 flatcamTools/ToolSolderPaste.py:185 msgid "The height (Z) when solder paste dispensing stops." msgstr "Die Höhe (Z) bei der Lotpastendosierung stoppt." -#: flatcamGUI/FlatCAMGUI.py:6398 flatcamTools/ToolSolderPaste.py:191 +#: flatcamGUI/FlatCAMGUI.py:6405 flatcamTools/ToolSolderPaste.py:191 msgid "Z Travel:" msgstr "Z Reise:" -#: flatcamGUI/FlatCAMGUI.py:6400 flatcamTools/ToolSolderPaste.py:193 +#: flatcamGUI/FlatCAMGUI.py:6407 flatcamTools/ToolSolderPaste.py:193 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -8626,19 +8653,19 @@ msgstr "" "Die Höhe (Z) für den Weg zwischen Pads\n" "(ohne Lotpaste zu dosieren)." -#: flatcamGUI/FlatCAMGUI.py:6408 flatcamTools/ToolSolderPaste.py:200 +#: flatcamGUI/FlatCAMGUI.py:6415 flatcamTools/ToolSolderPaste.py:200 msgid "Z Toolchange:" msgstr "Z Werkzeugwechsel:" -#: flatcamGUI/FlatCAMGUI.py:6410 flatcamTools/ToolSolderPaste.py:202 +#: flatcamGUI/FlatCAMGUI.py:6417 flatcamTools/ToolSolderPaste.py:202 msgid "The height (Z) for tool (nozzle) change." msgstr "Die Höhe (Z) für Werkzeug (Düse) ändert sich." -#: flatcamGUI/FlatCAMGUI.py:6417 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/FlatCAMGUI.py:6424 flatcamTools/ToolSolderPaste.py:208 msgid "XY Toolchange:" msgstr "XY-Werkzeugwechsel:" -#: flatcamGUI/FlatCAMGUI.py:6419 flatcamTools/ToolSolderPaste.py:210 +#: flatcamGUI/FlatCAMGUI.py:6426 flatcamTools/ToolSolderPaste.py:210 msgid "" "The X,Y location for tool (nozzle) change.\n" "The format is (x, y) where x and y are real numbers." @@ -8646,19 +8673,19 @@ msgstr "" "Die X, Y-Position für Werkzeug (Düse) ändert sich.\n" "Das Format ist (x, y), wobei x und y reelle Zahlen sind." -#: flatcamGUI/FlatCAMGUI.py:6427 flatcamTools/ToolSolderPaste.py:217 +#: flatcamGUI/FlatCAMGUI.py:6434 flatcamTools/ToolSolderPaste.py:217 msgid "Feedrate X-Y:" msgstr "Vorschub X-Y:" -#: flatcamGUI/FlatCAMGUI.py:6429 flatcamTools/ToolSolderPaste.py:219 +#: flatcamGUI/FlatCAMGUI.py:6436 flatcamTools/ToolSolderPaste.py:219 msgid "Feedrate (speed) while moving on the X-Y plane." msgstr "Vorschub (Geschwindigkeit) während der Bewegung auf der X-Y-Ebene." -#: flatcamGUI/FlatCAMGUI.py:6436 flatcamTools/ToolSolderPaste.py:225 +#: flatcamGUI/FlatCAMGUI.py:6443 flatcamTools/ToolSolderPaste.py:225 msgid "Feedrate Z:" msgstr "Vorschub Z:" -#: flatcamGUI/FlatCAMGUI.py:6438 flatcamTools/ToolSolderPaste.py:227 +#: flatcamGUI/FlatCAMGUI.py:6445 flatcamTools/ToolSolderPaste.py:227 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." @@ -8666,11 +8693,11 @@ msgstr "" "Vorschub (Geschwindigkeit) bei vertikaler Bewegung\n" "(auf der Z-Ebene)." -#: flatcamGUI/FlatCAMGUI.py:6446 flatcamTools/ToolSolderPaste.py:234 +#: flatcamGUI/FlatCAMGUI.py:6453 flatcamTools/ToolSolderPaste.py:234 msgid "Feedrate Z Dispense:" msgstr "Vorschub Z Dosierung:" -#: flatcamGUI/FlatCAMGUI.py:6448 flatcamTools/ToolSolderPaste.py:236 +#: flatcamGUI/FlatCAMGUI.py:6455 flatcamTools/ToolSolderPaste.py:236 msgid "" "Feedrate (speed) while moving up vertically\n" " to Dispense position (on Z plane)." @@ -8678,11 +8705,11 @@ msgstr "" "Vorschub (Geschwindigkeit) bei vertikaler Bewegung\n" "  zur Ausgabeposition (auf der Z-Ebene)." -#: flatcamGUI/FlatCAMGUI.py:6456 flatcamTools/ToolSolderPaste.py:243 +#: flatcamGUI/FlatCAMGUI.py:6463 flatcamTools/ToolSolderPaste.py:243 msgid "Spindle Speed FWD:" msgstr "Spindeldrehzahl FWD:" -#: flatcamGUI/FlatCAMGUI.py:6458 flatcamTools/ToolSolderPaste.py:245 +#: flatcamGUI/FlatCAMGUI.py:6465 flatcamTools/ToolSolderPaste.py:245 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -8690,19 +8717,19 @@ msgstr "" "Die Spendergeschwindigkeit beim Schieben der Lötpaste\n" "durch die Spenderdüse." -#: flatcamGUI/FlatCAMGUI.py:6466 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/FlatCAMGUI.py:6473 flatcamTools/ToolSolderPaste.py:252 msgid "Dwell FWD:" msgstr "Verweilzeit FWD:" -#: flatcamGUI/FlatCAMGUI.py:6468 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/FlatCAMGUI.py:6475 flatcamTools/ToolSolderPaste.py:254 msgid "Pause after solder dispensing." msgstr "Pause nach dem Löten." -#: flatcamGUI/FlatCAMGUI.py:6475 flatcamTools/ToolSolderPaste.py:260 +#: flatcamGUI/FlatCAMGUI.py:6482 flatcamTools/ToolSolderPaste.py:260 msgid "Spindle Speed REV:" msgstr "Spindeldrehzahl REV:" -#: flatcamGUI/FlatCAMGUI.py:6477 flatcamTools/ToolSolderPaste.py:262 +#: flatcamGUI/FlatCAMGUI.py:6484 flatcamTools/ToolSolderPaste.py:262 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -8710,11 +8737,11 @@ msgstr "" "Die Spendergeschwindigkeit beim Einfahren der Lötpaste\n" "durch die Spenderdüse." -#: flatcamGUI/FlatCAMGUI.py:6485 flatcamTools/ToolSolderPaste.py:269 +#: flatcamGUI/FlatCAMGUI.py:6492 flatcamTools/ToolSolderPaste.py:269 msgid "Dwell REV:" msgstr "Verweilen REV:" -#: flatcamGUI/FlatCAMGUI.py:6487 flatcamTools/ToolSolderPaste.py:271 +#: flatcamGUI/FlatCAMGUI.py:6494 flatcamTools/ToolSolderPaste.py:271 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -8722,23 +8749,23 @@ msgstr "" "Pause nachdem Lotpastendispenser eingefahren wurde,\n" "das Druckgleichgewicht zu ermöglichen." -#: flatcamGUI/FlatCAMGUI.py:6494 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/FlatCAMGUI.py:6501 flatcamTools/ToolSolderPaste.py:277 msgid "PostProcessors:" msgstr "Postprozessoren:" -#: flatcamGUI/FlatCAMGUI.py:6496 flatcamTools/ToolSolderPaste.py:279 +#: flatcamGUI/FlatCAMGUI.py:6503 flatcamTools/ToolSolderPaste.py:279 msgid "Files that control the GCode generation." msgstr "Dateien, die die GCode-Generierung steuern." -#: flatcamGUI/FlatCAMGUI.py:6526 flatcamGUI/FlatCAMGUI.py:6532 +#: flatcamGUI/FlatCAMGUI.py:6533 flatcamGUI/FlatCAMGUI.py:6539 msgid "Idle." msgstr "Untätig" -#: flatcamGUI/FlatCAMGUI.py:6556 +#: flatcamGUI/FlatCAMGUI.py:6563 msgid "Application started ..." msgstr "Bewerbung gestartet ..." -#: flatcamGUI/FlatCAMGUI.py:6557 +#: flatcamGUI/FlatCAMGUI.py:6564 msgid "Hello!" msgstr "Hello!" @@ -11067,23 +11094,23 @@ msgstr "[WARNING_NOTCL] Klicken Sie in das gewünschte Polygon." msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..." msgstr "[ERROR_NOTCL] \"Paint\" für MultiGeo-Geometrien nicht möglich ..." -#: flatcamTools/ToolPaint.py:796 flatcamTools/ToolPaint.py:999 +#: flatcamTools/ToolPaint.py:796 flatcamTools/ToolPaint.py:1003 msgid "Painting polygon..." msgstr "Polygon malen ..." -#: flatcamTools/ToolPaint.py:847 +#: flatcamTools/ToolPaint.py:851 msgid "[WARNING] No polygon found." msgstr "[WARNING] Kein Polygon gefunden." -#: flatcamTools/ToolPaint.py:850 +#: flatcamTools/ToolPaint.py:854 msgid "Painting polygon." msgstr "Polygon malen." -#: flatcamTools/ToolPaint.py:892 +#: flatcamTools/ToolPaint.py:896 msgid "[ERROR_NOTCL] Geometry could not be painted completely" msgstr "[ERROR_NOTCL] Geometrie konnte nicht vollständig gezeichnet werden" -#: flatcamTools/ToolPaint.py:918 +#: flatcamTools/ToolPaint.py:922 #, python-format msgid "" "[ERROR] Could not do Paint. Try a different combination of parameters. Or a " @@ -11094,16 +11121,16 @@ msgstr "" "Kombination von Parametern. Oder eine andere Farbstrategie\n" "%s" -#: flatcamTools/ToolPaint.py:960 +#: flatcamTools/ToolPaint.py:964 #, python-format msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s" msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s" -#: flatcamTools/ToolPaint.py:966 flatcamTools/ToolPaint.py:1259 +#: flatcamTools/ToolPaint.py:970 flatcamTools/ToolPaint.py:1263 msgid "Polygon Paint started ..." msgstr "Polygonfarbe gestartet ..." -#: flatcamTools/ToolPaint.py:1115 flatcamTools/ToolPaint.py:1204 +#: flatcamTools/ToolPaint.py:1119 flatcamTools/ToolPaint.py:1208 #, python-format msgid "" "[ERROR] Could not do Paint All. Try a different combination of parameters. " @@ -11114,7 +11141,7 @@ msgstr "" "Parametern. Oder eine andere Farbmethode\n" "%s" -#: flatcamTools/ToolPaint.py:1139 +#: flatcamTools/ToolPaint.py:1143 msgid "" "[ERROR] There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -11126,11 +11153,11 @@ msgstr "" "Geometrie zu groß ist.\n" "Ändern Sie die Malparameter und versuchen Sie es erneut." -#: flatcamTools/ToolPaint.py:1148 +#: flatcamTools/ToolPaint.py:1152 msgid "[success] Paint All Done." msgstr "[success] 'Paint' Sie alles fertig." -#: flatcamTools/ToolPaint.py:1234 +#: flatcamTools/ToolPaint.py:1238 msgid "" "[ERROR_NOTCL] There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -11142,7 +11169,7 @@ msgstr "" "Geometrie zu groß ist.\n" "Ändern Sie die Malparameter und versuchen Sie es erneut." -#: flatcamTools/ToolPaint.py:1243 +#: flatcamTools/ToolPaint.py:1247 msgid "[success] Paint All with Rest-Machining done." msgstr "[success] Paint All with Rest-Machining erledigt." diff --git a/locale/en/LC_MESSAGES/strings.mo b/locale/en/LC_MESSAGES/strings.mo index 89c040c9063f38f047bcecb947fdc97585f6bc50..c3a054ecfdbc5c58b925641fac4a7239c8a5c128 100644 GIT binary patch delta 38966 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 I_fEz9A2oFzj{pDw delta 38631 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 diff --git a/locale/en/LC_MESSAGES/strings.po b/locale/en/LC_MESSAGES/strings.po index d38038aa..fc05dd8d 100644 --- a/locale/en/LC_MESSAGES/strings.po +++ b/locale/en/LC_MESSAGES/strings.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-05-20 01:44+0300\n" -"PO-Revision-Date: 2019-05-20 01:46+0300\n" +"POT-Creation-Date: 2019-05-22 18:30+0300\n" +"PO-Revision-Date: 2019-05-22 18:30+0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" @@ -62,17 +62,17 @@ msgstr "[WARNING_NOTCL] Editor is activated ..." msgid "Do you want to save the edited object?" msgstr "Do you want to save the edited object?" -#: FlatCAMApp.py:2255 flatcamGUI/FlatCAMGUI.py:1618 +#: FlatCAMApp.py:2255 flatcamGUI/FlatCAMGUI.py:1621 msgid "Close Editor" msgstr "Close Editor" #: FlatCAMApp.py:2258 FlatCAMApp.py:3349 FlatCAMApp.py:5799 -#: FlatCAMTranslation.py:89 flatcamGUI/FlatCAMGUI.py:3726 +#: FlatCAMTranslation.py:89 flatcamGUI/FlatCAMGUI.py:3733 msgid "Yes" msgstr "Yes" #: FlatCAMApp.py:2259 FlatCAMApp.py:3350 FlatCAMApp.py:5800 -#: FlatCAMTranslation.py:90 flatcamGUI/FlatCAMGUI.py:3727 +#: FlatCAMTranslation.py:90 flatcamGUI/FlatCAMGUI.py:3734 msgid "No" msgstr "No" @@ -139,7 +139,7 @@ msgstr "[ERROR_NOTCL] Failed to write defaults to file." msgid "[ERROR_NOTCL] Failed to open recent files file for writing." msgstr "[ERROR_NOTCL] Failed to open recent files file for writing." -#: FlatCAMApp.py:2930 camlib.py:4453 +#: FlatCAMApp.py:2930 camlib.py:4454 msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n" msgstr "[ERROR_NOTCL] An internal error has ocurred. See shell.\n" @@ -208,7 +208,7 @@ msgstr "[ERROR_NOTCL] Failed to write factory defaults to file." msgid "Factory defaults saved." msgstr "Factory defaults saved." -#: FlatCAMApp.py:3339 flatcamGUI/FlatCAMGUI.py:3103 +#: FlatCAMApp.py:3339 flatcamGUI/FlatCAMGUI.py:3110 msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..." msgstr "[WARNING_NOTCL] Application is saving the project. Please wait ..." @@ -310,7 +310,7 @@ msgstr "" "format." #: FlatCAMApp.py:4488 FlatCAMApp.py:4521 FlatCAMApp.py:4532 FlatCAMApp.py:4543 -#: flatcamGUI/FlatCAMGUI.py:2998 +#: flatcamGUI/FlatCAMGUI.py:3005 msgid "[WARNING_NOTCL] Adding Tool cancelled ..." msgstr "[WARNING_NOTCL] Adding Tool cancelled ..." @@ -352,20 +352,19 @@ msgstr "Wrong coordinates. Enter coordinates in format: X,Y" #: FlatCAMApp.py:4661 flatcamEditors/FlatCAMExcEditor.py:2285 #: flatcamEditors/FlatCAMExcEditor.py:2292 -#: flatcamEditors/FlatCAMGeoEditor.py:3555 -#: flatcamEditors/FlatCAMGeoEditor.py:3569 -#: flatcamEditors/FlatCAMGrbEditor.py:1037 -#: flatcamEditors/FlatCAMGrbEditor.py:1138 -#: flatcamEditors/FlatCAMGrbEditor.py:1399 -#: flatcamEditors/FlatCAMGrbEditor.py:1649 -#: flatcamEditors/FlatCAMGrbEditor.py:3784 -#: flatcamEditors/FlatCAMGrbEditor.py:3798 flatcamGUI/FlatCAMGUI.py:2412 -#: flatcamGUI/FlatCAMGUI.py:2424 +#: flatcamEditors/FlatCAMGeoEditor.py:3648 +#: flatcamEditors/FlatCAMGeoEditor.py:3662 +#: flatcamEditors/FlatCAMGrbEditor.py:1040 +#: flatcamEditors/FlatCAMGrbEditor.py:1141 +#: flatcamEditors/FlatCAMGrbEditor.py:1402 +#: flatcamEditors/FlatCAMGrbEditor.py:1652 +#: flatcamEditors/FlatCAMGrbEditor.py:3928 +#: flatcamEditors/FlatCAMGrbEditor.py:3942 flatcamGUI/FlatCAMGUI.py:2419 +#: flatcamGUI/FlatCAMGUI.py:2431 msgid "[success] Done." msgstr "[success] Done." #: FlatCAMApp.py:4794 FlatCAMApp.py:4863 -#| msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!" msgid "[WARNING_NOTCL] No object is selected. Select an object and try again." msgstr "[WARNING_NOTCL] No object is selected. Select an object and try again." @@ -386,8 +385,8 @@ msgid "[success] Flip on Y axis done." msgstr "[success] Flip on Y axis done." #: FlatCAMApp.py:4971 FlatCAMApp.py:5011 -#: flatcamEditors/FlatCAMGeoEditor.py:1356 -#: flatcamEditors/FlatCAMGrbEditor.py:5165 flatcamTools/ToolTransform.py:748 +#: flatcamEditors/FlatCAMGeoEditor.py:1355 +#: flatcamEditors/FlatCAMGrbEditor.py:5309 flatcamTools/ToolTransform.py:748 #, python-format msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed." msgstr "[ERROR_NOTCL] Due of %s, Flip action was not executed." @@ -416,8 +415,8 @@ msgstr "Enter the Angle value:" msgid "[success] Rotation done." msgstr "[success] Rotation done." -#: FlatCAMApp.py:5059 flatcamEditors/FlatCAMGeoEditor.py:1299 -#: flatcamEditors/FlatCAMGrbEditor.py:5096 flatcamTools/ToolTransform.py:677 +#: FlatCAMApp.py:5059 flatcamEditors/FlatCAMGeoEditor.py:1298 +#: flatcamEditors/FlatCAMGrbEditor.py:5240 flatcamTools/ToolTransform.py:677 #, python-format msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed." msgstr "[ERROR_NOTCL] Due of %s, rotation movement was not executed." @@ -438,9 +437,9 @@ msgstr "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis." msgid "[success] Skew on Y axis done." msgstr "[success] Skew on Y axis done." -#: FlatCAMApp.py:5197 flatcamEditors/FlatCAMGeoEditor.py:938 -#: flatcamEditors/FlatCAMGrbEditor.py:2223 -#: flatcamEditors/FlatCAMGrbEditor.py:4687 flatcamGUI/ObjectUI.py:991 +#: FlatCAMApp.py:5197 flatcamEditors/FlatCAMGeoEditor.py:937 +#: flatcamEditors/FlatCAMGrbEditor.py:2365 +#: flatcamEditors/FlatCAMGrbEditor.py:4831 flatcamGUI/ObjectUI.py:991 #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208 #: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131 #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:479 @@ -449,9 +448,9 @@ msgid "Add" msgstr "Add" #: FlatCAMApp.py:5198 FlatCAMObj.py:3302 -#: flatcamEditors/FlatCAMGrbEditor.py:2228 flatcamGUI/FlatCAMGUI.py:532 -#: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:1616 -#: flatcamGUI/FlatCAMGUI.py:1948 flatcamGUI/ObjectUI.py:1007 +#: flatcamEditors/FlatCAMGrbEditor.py:2370 flatcamGUI/FlatCAMGUI.py:532 +#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:1619 +#: flatcamGUI/FlatCAMGUI.py:1955 flatcamGUI/ObjectUI.py:1007 #: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143 #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:481 msgid "Delete" @@ -529,7 +528,7 @@ msgid "[success] New Project created..." msgstr "[success] New Project created..." #: FlatCAMApp.py:5923 FlatCAMApp.py:5926 flatcamGUI/FlatCAMGUI.py:613 -#: flatcamGUI/FlatCAMGUI.py:1831 +#: flatcamGUI/FlatCAMGUI.py:1834 msgid "Open Gerber" msgstr "Open Gerber" @@ -538,7 +537,7 @@ msgid "[WARNING_NOTCL] Open Gerber cancelled." msgstr "[WARNING_NOTCL] Open Gerber cancelled." #: FlatCAMApp.py:5952 FlatCAMApp.py:5955 flatcamGUI/FlatCAMGUI.py:614 -#: flatcamGUI/FlatCAMGUI.py:1832 +#: flatcamGUI/FlatCAMGUI.py:1835 msgid "Open Excellon" msgstr "Open Excellon" @@ -662,21 +661,16 @@ msgid "[WARNING_NOTCL] Export Excellon cancelled." msgstr "[WARNING_NOTCL] Export Excellon cancelled." #: FlatCAMApp.py:6267 -#| msgid "" -#| "[WARNING_NOTCL] No object selected. Please select an Gerber object to " -#| "export." msgid "" "[WARNING_NOTCL] No object selected. Please Select an Gerber object to export." msgstr "" "[WARNING_NOTCL] No object selected. Please Select an Gerber object to export." #: FlatCAMApp.py:6280 FlatCAMApp.py:6284 -#| msgid "Export SVG" msgid "Export Gerber" msgstr "Export Gerber" #: FlatCAMApp.py:6289 -#| msgid "[WARNING_NOTCL] Export SVG cancelled." msgid "[WARNING_NOTCL] Export Gerber cancelled." msgstr "[WARNING_NOTCL] Export Gerber cancelled." @@ -855,17 +849,14 @@ msgstr "[ERROR_NOTCL] Could not export Excellon file." #: FlatCAMApp.py:7199 #, python-format -#| msgid "[success] SVG file exported to %s" msgid "[success] Gerber file exported to %s" msgstr "[success] Gerber file exported to %s" #: FlatCAMApp.py:7206 -#| msgid "Exporting SVG" msgid "Exporting Gerber" msgstr "Exporting Gerber" #: FlatCAMApp.py:7211 FlatCAMApp.py:7218 -#| msgid "[ERROR_NOTCL] Could not export Excellon file." msgid "[ERROR_NOTCL] Could not export Gerber file." msgstr "[ERROR_NOTCL] Could not export Gerber file." @@ -1031,7 +1022,7 @@ msgstr "[ERROR_NOTCL] Failed to load recent item list." msgid "[ERROR_NOTCL] Failed to parse recent item list." msgstr "[ERROR_NOTCL] Failed to parse recent item list." -#: FlatCAMApp.py:8110 flatcamGUI/FlatCAMGUI.py:970 +#: FlatCAMApp.py:8110 flatcamGUI/FlatCAMGUI.py:973 msgid "Shortcut Key List" msgstr "Shortcut Key List" @@ -1239,7 +1230,7 @@ msgstr "Total Slots" #: flatcamTools/ToolNonCopperClear.py:627 #: flatcamTools/ToolNonCopperClear.py:644 flatcamTools/ToolPaint.py:538 #: flatcamTools/ToolPaint.py:608 flatcamTools/ToolPaint.py:743 -#: flatcamTools/ToolPaint.py:840 flatcamTools/ToolPaint.py:995 +#: flatcamTools/ToolPaint.py:844 flatcamTools/ToolPaint.py:999 #: flatcamTools/ToolPanelize.py:385 flatcamTools/ToolPanelize.py:397 #: flatcamTools/ToolPanelize.py:410 flatcamTools/ToolPanelize.py:423 #: flatcamTools/ToolPanelize.py:435 flatcamTools/ToolPanelize.py:446 @@ -1305,8 +1296,8 @@ msgstr "" msgid "Generating CNC Code" msgstr "Generating CNC Code" -#: FlatCAMObj.py:2674 FlatCAMObj.py:5021 camlib.py:5165 camlib.py:5624 -#: camlib.py:5887 +#: FlatCAMObj.py:2674 FlatCAMObj.py:5021 camlib.py:5166 camlib.py:5625 +#: camlib.py:5888 msgid "" "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the " "format (x, y) \n" @@ -1328,8 +1319,8 @@ msgstr "Rough" msgid "Finish" msgstr "Finish" -#: FlatCAMObj.py:3300 flatcamGUI/FlatCAMGUI.py:531 flatcamGUI/FlatCAMGUI.py:724 -#: flatcamGUI/FlatCAMGUI.py:1615 flatcamGUI/FlatCAMGUI.py:1946 +#: FlatCAMObj.py:3300 flatcamGUI/FlatCAMGUI.py:531 flatcamGUI/FlatCAMGUI.py:727 +#: flatcamGUI/FlatCAMGUI.py:1618 flatcamGUI/FlatCAMGUI.py:1953 #: flatcamGUI/ObjectUI.py:999 msgid "Copy" msgstr "Copy" @@ -1552,17 +1543,14 @@ msgid "[success] Gerber Offset done." msgstr "[success] Gerber Offset done." #: camlib.py:3512 -#| msgid "[success] Gerber Scale done." msgid "[success] Gerber Mirror done." msgstr "[success] Gerber Mirror done." #: camlib.py:3558 -#| msgid "[success] Gerber Scale done." msgid "[success] Gerber Skew done." msgstr "[success] Gerber Skew done." #: camlib.py:3596 -#| msgid "[success] Gerber Scale done." msgid "[success] Gerber Rotate done." msgstr "[success] Gerber Rotate done." @@ -1571,7 +1559,7 @@ msgstr "[success] Gerber Rotate done." msgid "[ERROR_NOTCL] This is GCODE mark: %s" msgstr "[ERROR_NOTCL] This is GCODE mark: %s" -#: camlib.py:3989 +#: camlib.py:3990 #, python-format msgid "" "[WARNING] No tool diameter info's. See shell.\n" @@ -1588,7 +1576,7 @@ msgstr "" "The user needs to edit the resulting Excellon object and change the " "diameters to reflect the real diameters." -#: camlib.py:4454 +#: camlib.py:4455 #, python-brace-format msgid "" "[ERROR] Excellon Parser error.\n" @@ -1597,7 +1585,7 @@ msgstr "" "[ERROR] Excellon Parser error.\n" "Parsing Failed. Line {l_nr}: {line}\n" -#: camlib.py:4531 +#: camlib.py:4532 msgid "" "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of " "not having a tool associated.\n" @@ -1607,12 +1595,12 @@ msgstr "" "not having a tool associated.\n" "Check the resulting GCode." -#: camlib.py:5074 +#: camlib.py:5075 #, python-format msgid "[ERROR] There is no such parameter: %s" msgstr "[ERROR] There is no such parameter: %s" -#: camlib.py:5144 +#: camlib.py:5145 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "drill into material.\n" @@ -1626,22 +1614,22 @@ msgstr "" "therefore the app will convert the value to negative. Check the resulting " "CNC code (Gcode etc)." -#: camlib.py:5151 camlib.py:5647 camlib.py:5910 +#: camlib.py:5152 camlib.py:5648 camlib.py:5911 #, python-format msgid "" "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file" msgstr "" "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file" -#: camlib.py:5380 camlib.py:5477 camlib.py:5535 +#: camlib.py:5381 camlib.py:5478 camlib.py:5536 msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..." msgstr "[ERROR_NOTCL] The loaded Excellon file has no drills ..." -#: camlib.py:5482 +#: camlib.py:5483 msgid "[ERROR_NOTCL] Wrong optimization type selected." msgstr "[ERROR_NOTCL] Wrong optimization type selected." -#: camlib.py:5635 camlib.py:5898 +#: camlib.py:5636 camlib.py:5899 msgid "" "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad " "combinations of other parameters." @@ -1649,7 +1637,7 @@ msgstr "" "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad " "combinations of other parameters." -#: camlib.py:5640 camlib.py:5903 +#: camlib.py:5641 camlib.py:5904 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "cut into material.\n" @@ -1663,11 +1651,11 @@ msgstr "" "therefore the app will convert the value to negative.Check the resulting CNC " "code (Gcode etc)." -#: camlib.py:5652 camlib.py:5915 +#: camlib.py:5653 camlib.py:5916 msgid "[ERROR_NOTCL] Travel Z parameter is None or zero." msgstr "[ERROR_NOTCL] Travel Z parameter is None or zero." -#: camlib.py:5656 camlib.py:5919 +#: camlib.py:5657 camlib.py:5920 msgid "" "[WARNING] The Travel Z parameter has negative value. It is the height value " "to travel between cuts.\n" @@ -1681,19 +1669,19 @@ msgstr "" "therefore the app will convert the value to positive.Check the resulting CNC " "code (Gcode etc)." -#: camlib.py:5663 camlib.py:5926 +#: camlib.py:5664 camlib.py:5927 #, python-format msgid "" "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file" msgstr "" "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file" -#: camlib.py:5793 +#: camlib.py:5794 #, python-format msgid "[ERROR]Expected a Geometry, got %s" msgstr "[ERROR]Expected a Geometry, got %s" -#: camlib.py:5799 +#: camlib.py:5800 msgid "" "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without " "solid_geometry." @@ -1701,7 +1689,7 @@ msgstr "" "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without " "solid_geometry." -#: camlib.py:5838 +#: camlib.py:5839 msgid "" "[ERROR_NOTCL] The Tool Offset value is too negative to use for the " "current_geometry.\n" @@ -1711,7 +1699,7 @@ msgstr "" "current_geometry.\n" "Raise the value (in module) and try again." -#: camlib.py:6052 +#: camlib.py:6053 msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry." msgstr "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry." @@ -1723,8 +1711,8 @@ msgstr "[WARNING_NOTCL] To add a drill first select a tool" #: flatcamEditors/FlatCAMExcEditor.py:447 #: flatcamEditors/FlatCAMExcEditor.py:472 #: flatcamEditors/FlatCAMGrbEditor.py:451 -#: flatcamEditors/FlatCAMGrbEditor.py:1759 -#: flatcamEditors/FlatCAMGrbEditor.py:1787 +#: flatcamEditors/FlatCAMGrbEditor.py:1762 +#: flatcamEditors/FlatCAMGrbEditor.py:1790 msgid "Click on target location ..." msgstr "Click on target location ..." @@ -1782,7 +1770,7 @@ msgid "[WARNING_NOTCL] Cancelled. No drills selected for resize ..." msgstr "[WARNING_NOTCL] Cancelled. No drills selected for resize ..." #: flatcamEditors/FlatCAMExcEditor.py:449 -#: flatcamEditors/FlatCAMGrbEditor.py:1761 +#: flatcamEditors/FlatCAMGrbEditor.py:1764 msgid "Click on reference location ..." msgstr "Click on reference location ..." @@ -1799,7 +1787,7 @@ msgid "Excellon Editor" msgstr "Excellon Editor" #: flatcamEditors/FlatCAMExcEditor.py:765 -#: flatcamEditors/FlatCAMGrbEditor.py:2108 +#: flatcamEditors/FlatCAMGrbEditor.py:2250 msgid "Name:" msgstr "Name:" @@ -1884,7 +1872,7 @@ msgstr "Resize" msgid "Resize drill(s)" msgstr "Resize drill(s)" -#: flatcamEditors/FlatCAMExcEditor.py:889 flatcamGUI/FlatCAMGUI.py:1612 +#: flatcamEditors/FlatCAMExcEditor.py:889 flatcamGUI/FlatCAMGUI.py:1615 msgid "Add Drill Array" msgstr "Add Drill Array" @@ -1901,12 +1889,12 @@ msgstr "" "It can be Linear X(Y) or Circular" #: flatcamEditors/FlatCAMExcEditor.py:900 -#: flatcamEditors/FlatCAMGrbEditor.py:2341 +#: flatcamEditors/FlatCAMGrbEditor.py:2483 msgid "Linear" msgstr "Linear" #: flatcamEditors/FlatCAMExcEditor.py:901 -#: flatcamEditors/FlatCAMGrbEditor.py:2342 +#: flatcamEditors/FlatCAMGrbEditor.py:2484 msgid "Circular" msgstr "Circular" @@ -1920,13 +1908,13 @@ msgstr "Specify how many drills to be in the array." #: flatcamEditors/FlatCAMExcEditor.py:927 #: flatcamEditors/FlatCAMExcEditor.py:972 -#: flatcamEditors/FlatCAMGrbEditor.py:2368 -#: flatcamEditors/FlatCAMGrbEditor.py:2413 +#: flatcamEditors/FlatCAMGrbEditor.py:2510 +#: flatcamEditors/FlatCAMGrbEditor.py:2555 msgid "Direction:" msgstr "Direction:" #: flatcamEditors/FlatCAMExcEditor.py:929 -#: flatcamEditors/FlatCAMGrbEditor.py:2370 +#: flatcamEditors/FlatCAMGrbEditor.py:2512 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -1939,26 +1927,26 @@ msgstr "" "- 'Angle' - a custom angle for the array inclination" #: flatcamEditors/FlatCAMExcEditor.py:942 -#: flatcamEditors/FlatCAMGrbEditor.py:2383 +#: flatcamEditors/FlatCAMGrbEditor.py:2525 msgid "Pitch:" msgstr "Pitch:" #: flatcamEditors/FlatCAMExcEditor.py:944 -#: flatcamEditors/FlatCAMGrbEditor.py:2385 +#: flatcamEditors/FlatCAMGrbEditor.py:2527 msgid "Pitch = Distance between elements of the array." msgstr "Pitch = Distance between elements of the array." #: flatcamEditors/FlatCAMExcEditor.py:951 #: flatcamEditors/FlatCAMExcEditor.py:987 -#: flatcamEditors/FlatCAMGeoEditor.py:666 -#: flatcamEditors/FlatCAMGrbEditor.py:2392 -#: flatcamEditors/FlatCAMGrbEditor.py:2428 -#: flatcamEditors/FlatCAMGrbEditor.py:4414 flatcamTools/ToolTransform.py:68 +#: flatcamEditors/FlatCAMGeoEditor.py:665 +#: flatcamEditors/FlatCAMGrbEditor.py:2534 +#: flatcamEditors/FlatCAMGrbEditor.py:2570 +#: flatcamEditors/FlatCAMGrbEditor.py:4558 flatcamTools/ToolTransform.py:68 msgid "Angle:" msgstr "Angle:" #: flatcamEditors/FlatCAMExcEditor.py:953 -#: flatcamEditors/FlatCAMGrbEditor.py:2394 +#: flatcamEditors/FlatCAMGrbEditor.py:2536 msgid "" "Angle at which the linear array is placed.\n" "The precision is of max 2 decimals.\n" @@ -1971,7 +1959,7 @@ msgstr "" "Max value is: 360.00 degrees." #: flatcamEditors/FlatCAMExcEditor.py:974 -#: flatcamEditors/FlatCAMGrbEditor.py:2415 +#: flatcamEditors/FlatCAMGrbEditor.py:2557 msgid "" "Direction for circular array.Can be CW = clockwise or CCW = counter " "clockwise." @@ -1980,7 +1968,7 @@ msgstr "" "clockwise." #: flatcamEditors/FlatCAMExcEditor.py:989 -#: flatcamEditors/FlatCAMGrbEditor.py:2430 +#: flatcamEditors/FlatCAMGrbEditor.py:2572 msgid "Angle at which each element in circular array is placed." msgstr "Angle at which each element in circular array is placed." @@ -1992,7 +1980,7 @@ msgstr "" "[WARNING_NOTCL] Tool already in the original or actual tool list.\n" "Save and reedit Excellon if you need to add this tool. " -#: flatcamEditors/FlatCAMExcEditor.py:1461 flatcamGUI/FlatCAMGUI.py:2995 +#: flatcamEditors/FlatCAMExcEditor.py:1461 flatcamGUI/FlatCAMGUI.py:3002 #, python-brace-format msgid "[success] Added new tool with dia: {dia} {units}" msgstr "[success] Added new tool with dia: {dia} {units}" @@ -2031,17 +2019,17 @@ msgid "[success] Done. Drill(s) deleted." msgstr "[success] Done. Drill(s) deleted." #: flatcamEditors/FlatCAMExcEditor.py:2675 -#: flatcamEditors/FlatCAMGrbEditor.py:4174 +#: flatcamEditors/FlatCAMGrbEditor.py:4318 msgid "Click on the circular array Center position" msgstr "Click on the circular array Center position" #: flatcamEditors/FlatCAMGeoEditor.py:80 -#: flatcamEditors/FlatCAMGrbEditor.py:2258 +#: flatcamEditors/FlatCAMGrbEditor.py:2400 msgid "Buffer distance:" msgstr "Buffer distance:" #: flatcamEditors/FlatCAMGeoEditor.py:81 -#: flatcamEditors/FlatCAMGrbEditor.py:2259 +#: flatcamEditors/FlatCAMGrbEditor.py:2401 msgid "Buffer corner:" msgstr "Buffer corner:" @@ -2060,17 +2048,17 @@ msgstr "" "meeting in the corner" #: flatcamEditors/FlatCAMGeoEditor.py:89 -#: flatcamEditors/FlatCAMGrbEditor.py:2267 +#: flatcamEditors/FlatCAMGrbEditor.py:2409 msgid "Round" msgstr "Round" #: flatcamEditors/FlatCAMGeoEditor.py:90 -#: flatcamEditors/FlatCAMGrbEditor.py:2268 +#: flatcamEditors/FlatCAMGrbEditor.py:2410 msgid "Square" msgstr "Square" #: flatcamEditors/FlatCAMGeoEditor.py:91 -#: flatcamEditors/FlatCAMGrbEditor.py:2269 +#: flatcamEditors/FlatCAMGrbEditor.py:2411 msgid "Beveled" msgstr "Beveled" @@ -2087,17 +2075,17 @@ msgid "Full Buffer" msgstr "Full Buffer" #: flatcamEditors/FlatCAMGeoEditor.py:127 -#: flatcamEditors/FlatCAMGeoEditor.py:2696 +#: flatcamEditors/FlatCAMGeoEditor.py:2682 msgid "Buffer Tool" msgstr "Buffer Tool" #: flatcamEditors/FlatCAMGeoEditor.py:138 #: flatcamEditors/FlatCAMGeoEditor.py:155 #: flatcamEditors/FlatCAMGeoEditor.py:172 -#: flatcamEditors/FlatCAMGeoEditor.py:2714 -#: flatcamEditors/FlatCAMGeoEditor.py:2740 -#: flatcamEditors/FlatCAMGeoEditor.py:2766 -#: flatcamEditors/FlatCAMGrbEditor.py:4226 +#: flatcamEditors/FlatCAMGeoEditor.py:2700 +#: flatcamEditors/FlatCAMGeoEditor.py:2726 +#: flatcamEditors/FlatCAMGeoEditor.py:2752 +#: flatcamEditors/FlatCAMGrbEditor.py:4370 msgid "" "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and " "retry." @@ -2109,17 +2097,17 @@ msgstr "" msgid "Text Tool" msgstr "Text Tool" -#: flatcamEditors/FlatCAMGeoEditor.py:401 flatcamGUI/FlatCAMGUI.py:805 +#: flatcamEditors/FlatCAMGeoEditor.py:401 flatcamGUI/FlatCAMGUI.py:808 msgid "Tool" msgstr "Tool" -#: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:4051 -#: flatcamGUI/FlatCAMGUI.py:5448 flatcamGUI/FlatCAMGUI.py:5724 -#: flatcamGUI/FlatCAMGUI.py:5864 flatcamGUI/ObjectUI.py:260 +#: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:4058 +#: flatcamGUI/FlatCAMGUI.py:5455 flatcamGUI/FlatCAMGUI.py:5731 +#: flatcamGUI/FlatCAMGUI.py:5871 flatcamGUI/ObjectUI.py:260 msgid "Tool dia:" msgstr "Tool dia:" -#: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:5866 +#: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:5873 msgid "" "Diameter of the tool to\n" "be used in the operation." @@ -2127,8 +2115,8 @@ msgstr "" "Diameter of the tool to\n" "be used in the operation." -#: flatcamEditors/FlatCAMGeoEditor.py:443 flatcamGUI/FlatCAMGUI.py:5630 -#: flatcamGUI/FlatCAMGUI.py:5875 flatcamTools/ToolNonCopperClear.py:165 +#: flatcamEditors/FlatCAMGeoEditor.py:443 flatcamGUI/FlatCAMGUI.py:5637 +#: flatcamGUI/FlatCAMGUI.py:5882 flatcamTools/ToolNonCopperClear.py:165 #: flatcamTools/ToolPaint.py:160 msgid "Overlap Rate:" msgstr "Overlap Rate:" @@ -2158,14 +2146,14 @@ msgstr "" "Higher values = slow processing and slow execution on CNC\n" "due of too many paths." -#: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5646 -#: flatcamGUI/FlatCAMGUI.py:5732 flatcamGUI/FlatCAMGUI.py:5885 +#: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5653 +#: flatcamGUI/FlatCAMGUI.py:5739 flatcamGUI/FlatCAMGUI.py:5892 #: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:181 #: flatcamTools/ToolPaint.py:177 msgid "Margin:" msgstr "Margin:" -#: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:5887 +#: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:5894 #: flatcamTools/ToolPaint.py:179 msgid "" "Distance by which to avoid\n" @@ -2176,13 +2164,13 @@ msgstr "" "the edges of the polygon to\n" "be painted." -#: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5655 -#: flatcamGUI/FlatCAMGUI.py:5896 flatcamTools/ToolNonCopperClear.py:190 +#: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5662 +#: flatcamGUI/FlatCAMGUI.py:5903 flatcamTools/ToolNonCopperClear.py:190 #: flatcamTools/ToolPaint.py:188 msgid "Method:" msgstr "Method:" -#: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:5898 +#: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:5905 msgid "" "Algorithm to paint the polygon:
Standard: Fixed step inwards." "
Seed-based: Outwards from seed." @@ -2190,14 +2178,14 @@ msgstr "" "Algorithm to paint the polygon:
Standard: Fixed step inwards." "
Seed-based: Outwards from seed." -#: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5671 -#: flatcamGUI/FlatCAMGUI.py:5911 flatcamTools/ToolNonCopperClear.py:206 +#: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5678 +#: flatcamGUI/FlatCAMGUI.py:5918 flatcamTools/ToolNonCopperClear.py:206 #: flatcamTools/ToolPaint.py:204 msgid "Connect:" msgstr "Connect:" -#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/FlatCAMGUI.py:5673 -#: flatcamGUI/FlatCAMGUI.py:5913 flatcamTools/ToolNonCopperClear.py:208 +#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/FlatCAMGUI.py:5680 +#: flatcamGUI/FlatCAMGUI.py:5920 flatcamTools/ToolNonCopperClear.py:208 #: flatcamTools/ToolPaint.py:206 msgid "" "Draw lines between resulting\n" @@ -2206,14 +2194,14 @@ msgstr "" "Draw lines between resulting\n" "segments to minimize tool lifts." -#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5680 -#: flatcamGUI/FlatCAMGUI.py:5921 flatcamTools/ToolNonCopperClear.py:215 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5687 +#: flatcamGUI/FlatCAMGUI.py:5928 flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolPaint.py:213 msgid "Contour:" msgstr "Contour:" -#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/FlatCAMGUI.py:5682 -#: flatcamGUI/FlatCAMGUI.py:5923 flatcamTools/ToolNonCopperClear.py:217 +#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/FlatCAMGUI.py:5689 +#: flatcamGUI/FlatCAMGUI.py:5930 flatcamTools/ToolNonCopperClear.py:217 #: flatcamTools/ToolPaint.py:215 msgid "" "Cut around the perimeter of the polygon\n" @@ -2222,21 +2210,21 @@ msgstr "" "Cut around the perimeter of the polygon\n" "to trim rough edges." -#: flatcamEditors/FlatCAMGeoEditor.py:510 +#: flatcamEditors/FlatCAMGeoEditor.py:509 msgid "Paint" msgstr "Paint" -#: flatcamEditors/FlatCAMGeoEditor.py:528 flatcamGUI/FlatCAMGUI.py:648 -#: flatcamGUI/FlatCAMGUI.py:1865 flatcamGUI/ObjectUI.py:1314 +#: flatcamEditors/FlatCAMGeoEditor.py:527 flatcamGUI/FlatCAMGUI.py:648 +#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/ObjectUI.py:1314 #: flatcamTools/ToolPaint.py:341 msgid "Paint Tool" msgstr "Paint Tool" -#: flatcamEditors/FlatCAMGeoEditor.py:564 +#: flatcamEditors/FlatCAMGeoEditor.py:563 msgid "[WARNING_NOTCL] Paint cancelled. No shape selected." msgstr "[WARNING_NOTCL] Paint cancelled. No shape selected." -#: flatcamEditors/FlatCAMGeoEditor.py:575 flatcamTools/ToolCutOut.py:355 +#: flatcamEditors/FlatCAMGeoEditor.py:574 flatcamTools/ToolCutOut.py:355 #: flatcamTools/ToolCutOut.py:512 flatcamTools/ToolCutOut.py:651 #: flatcamTools/ToolCutOut.py:756 flatcamTools/ToolDblSided.py:363 msgid "" @@ -2246,13 +2234,13 @@ msgstr "" "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and " "retry." -#: flatcamEditors/FlatCAMGeoEditor.py:586 +#: flatcamEditors/FlatCAMGeoEditor.py:585 msgid "" "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry." msgstr "" "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry." -#: flatcamEditors/FlatCAMGeoEditor.py:598 +#: flatcamEditors/FlatCAMGeoEditor.py:597 msgid "" "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and " "retry." @@ -2260,63 +2248,63 @@ msgstr "" "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and " "retry." -#: flatcamEditors/FlatCAMGeoEditor.py:607 -#: flatcamEditors/FlatCAMGeoEditor.py:2721 -#: flatcamEditors/FlatCAMGeoEditor.py:2747 -#: flatcamEditors/FlatCAMGeoEditor.py:2773 +#: flatcamEditors/FlatCAMGeoEditor.py:606 +#: flatcamEditors/FlatCAMGeoEditor.py:2707 +#: flatcamEditors/FlatCAMGeoEditor.py:2733 +#: flatcamEditors/FlatCAMGeoEditor.py:2759 #: flatcamTools/ToolNonCopperClear.py:813 flatcamTools/ToolProperties.py:104 msgid "Tools" msgstr "Tools" -#: flatcamEditors/FlatCAMGeoEditor.py:618 -#: flatcamEditors/FlatCAMGeoEditor.py:991 -#: flatcamEditors/FlatCAMGrbEditor.py:4365 -#: flatcamEditors/FlatCAMGrbEditor.py:4750 flatcamGUI/FlatCAMGUI.py:659 -#: flatcamGUI/FlatCAMGUI.py:1878 flatcamTools/ToolTransform.py:398 +#: flatcamEditors/FlatCAMGeoEditor.py:617 +#: flatcamEditors/FlatCAMGeoEditor.py:990 +#: flatcamEditors/FlatCAMGrbEditor.py:4509 +#: flatcamEditors/FlatCAMGrbEditor.py:4894 flatcamGUI/FlatCAMGUI.py:659 +#: flatcamGUI/FlatCAMGUI.py:1881 flatcamTools/ToolTransform.py:398 msgid "Transform Tool" msgstr "Transform Tool" -#: flatcamEditors/FlatCAMGeoEditor.py:619 -#: flatcamEditors/FlatCAMGeoEditor.py:680 -#: flatcamEditors/FlatCAMGrbEditor.py:4366 -#: flatcamEditors/FlatCAMGrbEditor.py:4428 flatcamTools/ToolTransform.py:24 +#: flatcamEditors/FlatCAMGeoEditor.py:618 +#: flatcamEditors/FlatCAMGeoEditor.py:679 +#: flatcamEditors/FlatCAMGrbEditor.py:4510 +#: flatcamEditors/FlatCAMGrbEditor.py:4572 flatcamTools/ToolTransform.py:24 #: flatcamTools/ToolTransform.py:82 msgid "Rotate" msgstr "Rotate" -#: flatcamEditors/FlatCAMGeoEditor.py:620 -#: flatcamEditors/FlatCAMGrbEditor.py:4367 flatcamTools/ToolTransform.py:25 +#: flatcamEditors/FlatCAMGeoEditor.py:619 +#: flatcamEditors/FlatCAMGrbEditor.py:4511 flatcamTools/ToolTransform.py:25 msgid "Skew/Shear" msgstr "Skew/Shear" -#: flatcamEditors/FlatCAMGeoEditor.py:621 -#: flatcamEditors/FlatCAMGrbEditor.py:2313 -#: flatcamEditors/FlatCAMGrbEditor.py:4368 flatcamGUI/FlatCAMGUI.py:722 -#: flatcamGUI/FlatCAMGUI.py:1944 flatcamGUI/ObjectUI.py:100 +#: flatcamEditors/FlatCAMGeoEditor.py:620 +#: flatcamEditors/FlatCAMGrbEditor.py:2455 +#: flatcamEditors/FlatCAMGrbEditor.py:4512 flatcamGUI/FlatCAMGUI.py:723 +#: flatcamGUI/FlatCAMGUI.py:1949 flatcamGUI/ObjectUI.py:100 #: flatcamTools/ToolTransform.py:26 msgid "Scale" msgstr "Scale" -#: flatcamEditors/FlatCAMGeoEditor.py:622 -#: flatcamEditors/FlatCAMGrbEditor.py:4369 flatcamTools/ToolTransform.py:27 +#: flatcamEditors/FlatCAMGeoEditor.py:621 +#: flatcamEditors/FlatCAMGrbEditor.py:4513 flatcamTools/ToolTransform.py:27 msgid "Mirror (Flip)" msgstr "Mirror (Flip)" -#: flatcamEditors/FlatCAMGeoEditor.py:623 -#: flatcamEditors/FlatCAMGrbEditor.py:4370 flatcamGUI/ObjectUI.py:127 +#: flatcamEditors/FlatCAMGeoEditor.py:622 +#: flatcamEditors/FlatCAMGrbEditor.py:4514 flatcamGUI/ObjectUI.py:127 #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1452 #: flatcamTools/ToolTransform.py:28 msgid "Offset" msgstr "Offset" -#: flatcamEditors/FlatCAMGeoEditor.py:634 -#: flatcamEditors/FlatCAMGrbEditor.py:4382 +#: flatcamEditors/FlatCAMGeoEditor.py:633 +#: flatcamEditors/FlatCAMGrbEditor.py:4526 #, python-format msgid "Editor %s" msgstr "Editor %s" -#: flatcamEditors/FlatCAMGeoEditor.py:668 -#: flatcamEditors/FlatCAMGrbEditor.py:4416 flatcamTools/ToolTransform.py:70 +#: flatcamEditors/FlatCAMGeoEditor.py:667 +#: flatcamEditors/FlatCAMGrbEditor.py:4560 flatcamTools/ToolTransform.py:70 msgid "" "Angle for Rotation action, in degrees.\n" "Float number between -360 and 359.\n" @@ -2328,8 +2316,8 @@ msgstr "" "Positive numbers for CW motion.\n" "Negative numbers for CCW motion." -#: flatcamEditors/FlatCAMGeoEditor.py:682 -#: flatcamEditors/FlatCAMGrbEditor.py:4430 +#: flatcamEditors/FlatCAMGeoEditor.py:681 +#: flatcamEditors/FlatCAMGrbEditor.py:4574 msgid "" "Rotate the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2339,15 +2327,15 @@ msgstr "" "The point of reference is the middle of\n" "the bounding box for all selected shapes." -#: flatcamEditors/FlatCAMGeoEditor.py:705 -#: flatcamEditors/FlatCAMGrbEditor.py:4453 flatcamTools/ToolTransform.py:107 +#: flatcamEditors/FlatCAMGeoEditor.py:704 +#: flatcamEditors/FlatCAMGrbEditor.py:4597 flatcamTools/ToolTransform.py:107 msgid "Angle X:" msgstr "Angle X:" -#: flatcamEditors/FlatCAMGeoEditor.py:707 -#: flatcamEditors/FlatCAMGeoEditor.py:725 -#: flatcamEditors/FlatCAMGrbEditor.py:4455 -#: flatcamEditors/FlatCAMGrbEditor.py:4473 flatcamTools/ToolTransform.py:109 +#: flatcamEditors/FlatCAMGeoEditor.py:706 +#: flatcamEditors/FlatCAMGeoEditor.py:724 +#: flatcamEditors/FlatCAMGrbEditor.py:4599 +#: flatcamEditors/FlatCAMGrbEditor.py:4617 flatcamTools/ToolTransform.py:109 #: flatcamTools/ToolTransform.py:127 msgid "" "Angle for Skew action, in degrees.\n" @@ -2356,15 +2344,15 @@ msgstr "" "Angle for Skew action, in degrees.\n" "Float number between -360 and 359." -#: flatcamEditors/FlatCAMGeoEditor.py:716 -#: flatcamEditors/FlatCAMGrbEditor.py:4464 flatcamTools/ToolTransform.py:118 +#: flatcamEditors/FlatCAMGeoEditor.py:715 +#: flatcamEditors/FlatCAMGrbEditor.py:4608 flatcamTools/ToolTransform.py:118 msgid "Skew X" msgstr "Skew X" -#: flatcamEditors/FlatCAMGeoEditor.py:718 -#: flatcamEditors/FlatCAMGeoEditor.py:736 -#: flatcamEditors/FlatCAMGrbEditor.py:4466 -#: flatcamEditors/FlatCAMGrbEditor.py:4484 +#: flatcamEditors/FlatCAMGeoEditor.py:717 +#: flatcamEditors/FlatCAMGeoEditor.py:735 +#: flatcamEditors/FlatCAMGrbEditor.py:4610 +#: flatcamEditors/FlatCAMGrbEditor.py:4628 msgid "" "Skew/shear the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2374,35 +2362,35 @@ msgstr "" "The point of reference is the middle of\n" "the bounding box for all selected shapes." -#: flatcamEditors/FlatCAMGeoEditor.py:723 -#: flatcamEditors/FlatCAMGrbEditor.py:4471 flatcamTools/ToolTransform.py:125 +#: flatcamEditors/FlatCAMGeoEditor.py:722 +#: flatcamEditors/FlatCAMGrbEditor.py:4615 flatcamTools/ToolTransform.py:125 msgid "Angle Y:" msgstr "Angle Y:" -#: flatcamEditors/FlatCAMGeoEditor.py:734 -#: flatcamEditors/FlatCAMGrbEditor.py:4482 flatcamTools/ToolTransform.py:136 +#: flatcamEditors/FlatCAMGeoEditor.py:733 +#: flatcamEditors/FlatCAMGrbEditor.py:4626 flatcamTools/ToolTransform.py:136 msgid "Skew Y" msgstr "Skew Y" -#: flatcamEditors/FlatCAMGeoEditor.py:762 -#: flatcamEditors/FlatCAMGrbEditor.py:4510 flatcamTools/ToolTransform.py:164 +#: flatcamEditors/FlatCAMGeoEditor.py:761 +#: flatcamEditors/FlatCAMGrbEditor.py:4654 flatcamTools/ToolTransform.py:164 msgid "Factor X:" msgstr "Factor X:" -#: flatcamEditors/FlatCAMGeoEditor.py:764 -#: flatcamEditors/FlatCAMGrbEditor.py:4512 flatcamTools/ToolTransform.py:166 +#: flatcamEditors/FlatCAMGeoEditor.py:763 +#: flatcamEditors/FlatCAMGrbEditor.py:4656 flatcamTools/ToolTransform.py:166 msgid "Factor for Scale action over X axis." msgstr "Factor for Scale action over X axis." -#: flatcamEditors/FlatCAMGeoEditor.py:772 -#: flatcamEditors/FlatCAMGrbEditor.py:4520 flatcamTools/ToolTransform.py:174 +#: flatcamEditors/FlatCAMGeoEditor.py:771 +#: flatcamEditors/FlatCAMGrbEditor.py:4664 flatcamTools/ToolTransform.py:174 msgid "Scale X" msgstr "Scale X" -#: flatcamEditors/FlatCAMGeoEditor.py:774 -#: flatcamEditors/FlatCAMGeoEditor.py:791 -#: flatcamEditors/FlatCAMGrbEditor.py:4522 -#: flatcamEditors/FlatCAMGrbEditor.py:4539 +#: flatcamEditors/FlatCAMGeoEditor.py:773 +#: flatcamEditors/FlatCAMGeoEditor.py:790 +#: flatcamEditors/FlatCAMGrbEditor.py:4666 +#: flatcamEditors/FlatCAMGrbEditor.py:4683 msgid "" "Scale the selected shape(s).\n" "The point of reference depends on \n" @@ -2412,29 +2400,29 @@ msgstr "" "The point of reference depends on \n" "the Scale reference checkbox state." -#: flatcamEditors/FlatCAMGeoEditor.py:779 -#: flatcamEditors/FlatCAMGrbEditor.py:4527 flatcamTools/ToolTransform.py:181 +#: flatcamEditors/FlatCAMGeoEditor.py:778 +#: flatcamEditors/FlatCAMGrbEditor.py:4671 flatcamTools/ToolTransform.py:181 msgid "Factor Y:" msgstr "Factor Y:" -#: flatcamEditors/FlatCAMGeoEditor.py:781 -#: flatcamEditors/FlatCAMGrbEditor.py:4529 flatcamTools/ToolTransform.py:183 +#: flatcamEditors/FlatCAMGeoEditor.py:780 +#: flatcamEditors/FlatCAMGrbEditor.py:4673 flatcamTools/ToolTransform.py:183 msgid "Factor for Scale action over Y axis." msgstr "Factor for Scale action over Y axis." -#: flatcamEditors/FlatCAMGeoEditor.py:789 -#: flatcamEditors/FlatCAMGrbEditor.py:4537 flatcamTools/ToolTransform.py:191 +#: flatcamEditors/FlatCAMGeoEditor.py:788 +#: flatcamEditors/FlatCAMGrbEditor.py:4681 flatcamTools/ToolTransform.py:191 msgid "Scale Y" msgstr "Scale Y" -#: flatcamEditors/FlatCAMGeoEditor.py:798 -#: flatcamEditors/FlatCAMGrbEditor.py:4546 flatcamGUI/FlatCAMGUI.py:6270 +#: flatcamEditors/FlatCAMGeoEditor.py:797 +#: flatcamEditors/FlatCAMGrbEditor.py:4690 flatcamGUI/FlatCAMGUI.py:6277 #: flatcamTools/ToolTransform.py:200 msgid "Link" msgstr "Link" -#: flatcamEditors/FlatCAMGeoEditor.py:800 -#: flatcamEditors/FlatCAMGrbEditor.py:4548 +#: flatcamEditors/FlatCAMGeoEditor.py:799 +#: flatcamEditors/FlatCAMGrbEditor.py:4692 msgid "" "Scale the selected shape(s)\n" "using the Scale Factor X for both axis." @@ -2442,14 +2430,14 @@ msgstr "" "Scale the selected shape(s)\n" "using the Scale Factor X for both axis." -#: flatcamEditors/FlatCAMGeoEditor.py:806 -#: flatcamEditors/FlatCAMGrbEditor.py:4554 flatcamGUI/FlatCAMGUI.py:6278 +#: flatcamEditors/FlatCAMGeoEditor.py:805 +#: flatcamEditors/FlatCAMGrbEditor.py:4698 flatcamGUI/FlatCAMGUI.py:6285 #: flatcamTools/ToolTransform.py:208 msgid "Scale Reference" msgstr "Scale Reference" -#: flatcamEditors/FlatCAMGeoEditor.py:808 -#: flatcamEditors/FlatCAMGrbEditor.py:4556 +#: flatcamEditors/FlatCAMGeoEditor.py:807 +#: flatcamEditors/FlatCAMGrbEditor.py:4700 msgid "" "Scale the selected shape(s)\n" "using the origin reference when checked,\n" @@ -2461,25 +2449,25 @@ msgstr "" "and the center of the biggest bounding box\n" "of the selected shapes when unchecked." -#: flatcamEditors/FlatCAMGeoEditor.py:836 -#: flatcamEditors/FlatCAMGrbEditor.py:4585 flatcamTools/ToolTransform.py:238 +#: flatcamEditors/FlatCAMGeoEditor.py:835 +#: flatcamEditors/FlatCAMGrbEditor.py:4729 flatcamTools/ToolTransform.py:238 msgid "Value X:" msgstr "Value X:" -#: flatcamEditors/FlatCAMGeoEditor.py:838 -#: flatcamEditors/FlatCAMGrbEditor.py:4587 flatcamTools/ToolTransform.py:240 +#: flatcamEditors/FlatCAMGeoEditor.py:837 +#: flatcamEditors/FlatCAMGrbEditor.py:4731 flatcamTools/ToolTransform.py:240 msgid "Value for Offset action on X axis." msgstr "Value for Offset action on X axis." -#: flatcamEditors/FlatCAMGeoEditor.py:846 -#: flatcamEditors/FlatCAMGrbEditor.py:4595 flatcamTools/ToolTransform.py:248 +#: flatcamEditors/FlatCAMGeoEditor.py:845 +#: flatcamEditors/FlatCAMGrbEditor.py:4739 flatcamTools/ToolTransform.py:248 msgid "Offset X" msgstr "Offset X" -#: flatcamEditors/FlatCAMGeoEditor.py:848 -#: flatcamEditors/FlatCAMGeoEditor.py:866 -#: flatcamEditors/FlatCAMGrbEditor.py:4597 -#: flatcamEditors/FlatCAMGrbEditor.py:4615 +#: flatcamEditors/FlatCAMGeoEditor.py:847 +#: flatcamEditors/FlatCAMGeoEditor.py:865 +#: flatcamEditors/FlatCAMGrbEditor.py:4741 +#: flatcamEditors/FlatCAMGrbEditor.py:4759 msgid "" "Offset the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2489,30 +2477,30 @@ msgstr "" "The point of reference is the middle of\n" "the bounding box for all selected shapes.\n" -#: flatcamEditors/FlatCAMGeoEditor.py:854 -#: flatcamEditors/FlatCAMGrbEditor.py:4603 flatcamTools/ToolTransform.py:255 +#: flatcamEditors/FlatCAMGeoEditor.py:853 +#: flatcamEditors/FlatCAMGrbEditor.py:4747 flatcamTools/ToolTransform.py:255 msgid "Value Y:" msgstr "Value Y:" -#: flatcamEditors/FlatCAMGeoEditor.py:856 -#: flatcamEditors/FlatCAMGrbEditor.py:4605 flatcamTools/ToolTransform.py:257 +#: flatcamEditors/FlatCAMGeoEditor.py:855 +#: flatcamEditors/FlatCAMGrbEditor.py:4749 flatcamTools/ToolTransform.py:257 msgid "Value for Offset action on Y axis." msgstr "Value for Offset action on Y axis." -#: flatcamEditors/FlatCAMGeoEditor.py:864 -#: flatcamEditors/FlatCAMGrbEditor.py:4613 flatcamTools/ToolTransform.py:265 +#: flatcamEditors/FlatCAMGeoEditor.py:863 +#: flatcamEditors/FlatCAMGrbEditor.py:4757 flatcamTools/ToolTransform.py:265 msgid "Offset Y" msgstr "Offset Y" -#: flatcamEditors/FlatCAMGeoEditor.py:895 -#: flatcamEditors/FlatCAMGrbEditor.py:4644 flatcamTools/ToolTransform.py:295 +#: flatcamEditors/FlatCAMGeoEditor.py:894 +#: flatcamEditors/FlatCAMGrbEditor.py:4788 flatcamTools/ToolTransform.py:295 msgid "Flip on X" msgstr "Flip on X" -#: flatcamEditors/FlatCAMGeoEditor.py:897 -#: flatcamEditors/FlatCAMGeoEditor.py:905 -#: flatcamEditors/FlatCAMGrbEditor.py:4646 -#: flatcamEditors/FlatCAMGrbEditor.py:4654 +#: flatcamEditors/FlatCAMGeoEditor.py:896 +#: flatcamEditors/FlatCAMGeoEditor.py:904 +#: flatcamEditors/FlatCAMGrbEditor.py:4790 +#: flatcamEditors/FlatCAMGrbEditor.py:4798 msgid "" "Flip the selected shape(s) over the X axis.\n" "Does not create a new shape." @@ -2520,18 +2508,18 @@ msgstr "" "Flip the selected shape(s) over the X axis.\n" "Does not create a new shape." -#: flatcamEditors/FlatCAMGeoEditor.py:903 -#: flatcamEditors/FlatCAMGrbEditor.py:4652 flatcamTools/ToolTransform.py:303 +#: flatcamEditors/FlatCAMGeoEditor.py:902 +#: flatcamEditors/FlatCAMGrbEditor.py:4796 flatcamTools/ToolTransform.py:303 msgid "Flip on Y" msgstr "Flip on Y" -#: flatcamEditors/FlatCAMGeoEditor.py:912 -#: flatcamEditors/FlatCAMGrbEditor.py:4661 flatcamTools/ToolTransform.py:312 +#: flatcamEditors/FlatCAMGeoEditor.py:911 +#: flatcamEditors/FlatCAMGrbEditor.py:4805 flatcamTools/ToolTransform.py:312 msgid "Ref Pt" msgstr "Ref Pt" -#: flatcamEditors/FlatCAMGeoEditor.py:914 -#: flatcamEditors/FlatCAMGrbEditor.py:4663 +#: flatcamEditors/FlatCAMGeoEditor.py:913 +#: flatcamEditors/FlatCAMGrbEditor.py:4807 msgid "" "Flip the selected shape(s)\n" "around the point in Point Entry Field.\n" @@ -2553,13 +2541,13 @@ msgstr "" "Or enter the coords in format (x, y) in the\n" "Point Entry field and click Flip on X(Y)" -#: flatcamEditors/FlatCAMGeoEditor.py:926 -#: flatcamEditors/FlatCAMGrbEditor.py:4675 flatcamTools/ToolTransform.py:325 +#: flatcamEditors/FlatCAMGeoEditor.py:925 +#: flatcamEditors/FlatCAMGrbEditor.py:4819 flatcamTools/ToolTransform.py:325 msgid "Point:" msgstr "Point:" -#: flatcamEditors/FlatCAMGeoEditor.py:928 -#: flatcamEditors/FlatCAMGrbEditor.py:4677 +#: flatcamEditors/FlatCAMGeoEditor.py:927 +#: flatcamEditors/FlatCAMGrbEditor.py:4821 msgid "" "Coordinates in format (x, y) used as reference for mirroring.\n" "The 'x' in (x, y) will be used when using Flip on X and\n" @@ -2569,8 +2557,8 @@ msgstr "" "The 'x' in (x, y) will be used when using Flip on X and\n" "the 'y' in (x, y) will be used when using Flip on Y." -#: flatcamEditors/FlatCAMGeoEditor.py:940 -#: flatcamEditors/FlatCAMGrbEditor.py:4689 flatcamTools/ToolTransform.py:339 +#: flatcamEditors/FlatCAMGeoEditor.py:939 +#: flatcamEditors/FlatCAMGrbEditor.py:4833 flatcamTools/ToolTransform.py:339 msgid "" "The point coordinates can be captured by\n" "left click on canvas together with pressing\n" @@ -2580,371 +2568,366 @@ msgstr "" "left click on canvas together with pressing\n" "SHIFT key. Then click Add button to insert." -#: flatcamEditors/FlatCAMGeoEditor.py:1055 -#: flatcamEditors/FlatCAMGrbEditor.py:4814 +#: flatcamEditors/FlatCAMGeoEditor.py:1054 +#: flatcamEditors/FlatCAMGrbEditor.py:4958 msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected." msgstr "[WARNING_NOTCL] Transformation cancelled. No shape selected." -#: flatcamEditors/FlatCAMGeoEditor.py:1076 -#: flatcamEditors/FlatCAMGrbEditor.py:4834 flatcamTools/ToolTransform.py:468 +#: flatcamEditors/FlatCAMGeoEditor.py:1075 +#: flatcamEditors/FlatCAMGrbEditor.py:4978 flatcamTools/ToolTransform.py:468 msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number." msgstr "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number." -#: flatcamEditors/FlatCAMGeoEditor.py:1113 -#: flatcamEditors/FlatCAMGrbEditor.py:4877 flatcamTools/ToolTransform.py:502 +#: flatcamEditors/FlatCAMGeoEditor.py:1112 +#: flatcamEditors/FlatCAMGrbEditor.py:5021 flatcamTools/ToolTransform.py:502 msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number." msgstr "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number." -#: flatcamEditors/FlatCAMGeoEditor.py:1134 -#: flatcamEditors/FlatCAMGrbEditor.py:4904 flatcamTools/ToolTransform.py:520 +#: flatcamEditors/FlatCAMGeoEditor.py:1133 +#: flatcamEditors/FlatCAMGrbEditor.py:5048 flatcamTools/ToolTransform.py:520 msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number." msgstr "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number." -#: flatcamEditors/FlatCAMGeoEditor.py:1155 -#: flatcamEditors/FlatCAMGrbEditor.py:4931 flatcamTools/ToolTransform.py:538 +#: flatcamEditors/FlatCAMGeoEditor.py:1154 +#: flatcamEditors/FlatCAMGrbEditor.py:5075 flatcamTools/ToolTransform.py:538 msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number." msgstr "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number." -#: flatcamEditors/FlatCAMGeoEditor.py:1192 -#: flatcamEditors/FlatCAMGrbEditor.py:4972 flatcamTools/ToolTransform.py:572 +#: flatcamEditors/FlatCAMGeoEditor.py:1191 +#: flatcamEditors/FlatCAMGrbEditor.py:5116 flatcamTools/ToolTransform.py:572 msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number." msgstr "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number." -#: flatcamEditors/FlatCAMGeoEditor.py:1224 -#: flatcamEditors/FlatCAMGrbEditor.py:5010 flatcamTools/ToolTransform.py:601 +#: flatcamEditors/FlatCAMGeoEditor.py:1223 +#: flatcamEditors/FlatCAMGrbEditor.py:5154 flatcamTools/ToolTransform.py:601 msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number." msgstr "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number." -#: flatcamEditors/FlatCAMGeoEditor.py:1245 -#: flatcamEditors/FlatCAMGrbEditor.py:5036 flatcamTools/ToolTransform.py:619 +#: flatcamEditors/FlatCAMGeoEditor.py:1244 +#: flatcamEditors/FlatCAMGrbEditor.py:5180 flatcamTools/ToolTransform.py:619 msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number." msgstr "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number." -#: flatcamEditors/FlatCAMGeoEditor.py:1263 -#: flatcamEditors/FlatCAMGrbEditor.py:5059 +#: flatcamEditors/FlatCAMGeoEditor.py:1262 +#: flatcamEditors/FlatCAMGrbEditor.py:5203 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!" msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!" -#: flatcamEditors/FlatCAMGeoEditor.py:1266 -#: flatcamEditors/FlatCAMGrbEditor.py:5062 flatcamTools/ToolTransform.py:640 +#: flatcamEditors/FlatCAMGeoEditor.py:1265 +#: flatcamEditors/FlatCAMGrbEditor.py:5206 flatcamTools/ToolTransform.py:640 msgid "Appying Rotate" msgstr "Appying Rotate" -#: flatcamEditors/FlatCAMGeoEditor.py:1294 -#: flatcamEditors/FlatCAMGrbEditor.py:5093 +#: flatcamEditors/FlatCAMGeoEditor.py:1293 +#: flatcamEditors/FlatCAMGrbEditor.py:5237 msgid "[success] Done. Rotate completed." msgstr "[success] Done. Rotate completed." -#: flatcamEditors/FlatCAMGeoEditor.py:1310 -#: flatcamEditors/FlatCAMGrbEditor.py:5112 +#: flatcamEditors/FlatCAMGeoEditor.py:1309 +#: flatcamEditors/FlatCAMGrbEditor.py:5256 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!" msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!" -#: flatcamEditors/FlatCAMGeoEditor.py:1313 -#: flatcamEditors/FlatCAMGrbEditor.py:5115 flatcamTools/ToolTransform.py:691 +#: flatcamEditors/FlatCAMGeoEditor.py:1312 +#: flatcamEditors/FlatCAMGrbEditor.py:5259 flatcamTools/ToolTransform.py:691 msgid "Applying Flip" msgstr "Applying Flip" -#: flatcamEditors/FlatCAMGeoEditor.py:1343 -#: flatcamEditors/FlatCAMGrbEditor.py:5152 flatcamTools/ToolTransform.py:733 +#: flatcamEditors/FlatCAMGeoEditor.py:1342 +#: flatcamEditors/FlatCAMGrbEditor.py:5296 flatcamTools/ToolTransform.py:733 msgid "[success] Flip on the Y axis done ..." msgstr "[success] Flip on the Y axis done ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1346 -#: flatcamEditors/FlatCAMGrbEditor.py:5160 flatcamTools/ToolTransform.py:742 +#: flatcamEditors/FlatCAMGeoEditor.py:1345 +#: flatcamEditors/FlatCAMGrbEditor.py:5304 flatcamTools/ToolTransform.py:742 msgid "[success] Flip on the X axis done ..." msgstr "[success] Flip on the X axis done ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1365 -#: flatcamEditors/FlatCAMGrbEditor.py:5180 +#: flatcamEditors/FlatCAMGeoEditor.py:1364 +#: flatcamEditors/FlatCAMGrbEditor.py:5324 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!" msgstr "" "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!" -#: flatcamEditors/FlatCAMGeoEditor.py:1368 -#: flatcamEditors/FlatCAMGrbEditor.py:5183 flatcamTools/ToolTransform.py:760 +#: flatcamEditors/FlatCAMGeoEditor.py:1367 +#: flatcamEditors/FlatCAMGrbEditor.py:5327 flatcamTools/ToolTransform.py:760 msgid "Applying Skew" msgstr "Applying Skew" -#: flatcamEditors/FlatCAMGeoEditor.py:1393 -#: flatcamEditors/FlatCAMGrbEditor.py:5216 flatcamTools/ToolTransform.py:791 +#: flatcamEditors/FlatCAMGeoEditor.py:1392 +#: flatcamEditors/FlatCAMGrbEditor.py:5360 flatcamTools/ToolTransform.py:791 #, python-format msgid "[success] Skew on the %s axis done ..." msgstr "[success] Skew on the %s axis done ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1397 -#: flatcamEditors/FlatCAMGrbEditor.py:5220 flatcamTools/ToolTransform.py:795 +#: flatcamEditors/FlatCAMGeoEditor.py:1396 +#: flatcamEditors/FlatCAMGrbEditor.py:5364 flatcamTools/ToolTransform.py:795 #, python-format msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed." msgstr "[ERROR_NOTCL] Due of %s, Skew action was not executed." -#: flatcamEditors/FlatCAMGeoEditor.py:1408 -#: flatcamEditors/FlatCAMGrbEditor.py:5239 +#: flatcamEditors/FlatCAMGeoEditor.py:1407 +#: flatcamEditors/FlatCAMGrbEditor.py:5383 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!" msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!" -#: flatcamEditors/FlatCAMGeoEditor.py:1411 -#: flatcamEditors/FlatCAMGrbEditor.py:5242 flatcamTools/ToolTransform.py:809 +#: flatcamEditors/FlatCAMGeoEditor.py:1410 +#: flatcamEditors/FlatCAMGrbEditor.py:5386 flatcamTools/ToolTransform.py:809 msgid "Applying Scale" msgstr "Applying Scale" -#: flatcamEditors/FlatCAMGeoEditor.py:1444 -#: flatcamEditors/FlatCAMGrbEditor.py:5278 flatcamTools/ToolTransform.py:848 +#: flatcamEditors/FlatCAMGeoEditor.py:1443 +#: flatcamEditors/FlatCAMGrbEditor.py:5422 flatcamTools/ToolTransform.py:848 #, python-format msgid "[success] Scale on the %s axis done ..." msgstr "[success] Scale on the %s axis done ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1447 -#: flatcamEditors/FlatCAMGrbEditor.py:5281 flatcamTools/ToolTransform.py:851 +#: flatcamEditors/FlatCAMGeoEditor.py:1446 +#: flatcamEditors/FlatCAMGrbEditor.py:5425 flatcamTools/ToolTransform.py:851 #, python-format msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed." msgstr "[ERROR_NOTCL] Due of %s, Scale action was not executed." -#: flatcamEditors/FlatCAMGeoEditor.py:1456 -#: flatcamEditors/FlatCAMGrbEditor.py:5294 +#: flatcamEditors/FlatCAMGeoEditor.py:1455 +#: flatcamEditors/FlatCAMGrbEditor.py:5438 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!" msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!" -#: flatcamEditors/FlatCAMGeoEditor.py:1459 -#: flatcamEditors/FlatCAMGrbEditor.py:5297 flatcamTools/ToolTransform.py:861 +#: flatcamEditors/FlatCAMGeoEditor.py:1458 +#: flatcamEditors/FlatCAMGrbEditor.py:5441 flatcamTools/ToolTransform.py:861 msgid "Applying Offset" msgstr "Applying Offset" -#: flatcamEditors/FlatCAMGeoEditor.py:1483 -#: flatcamEditors/FlatCAMGrbEditor.py:5318 flatcamTools/ToolTransform.py:880 +#: flatcamEditors/FlatCAMGeoEditor.py:1469 +#: flatcamEditors/FlatCAMGrbEditor.py:5462 flatcamTools/ToolTransform.py:880 #, python-format msgid "[success] Offset on the %s axis done ..." msgstr "[success] Offset on the %s axis done ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1487 -#: flatcamEditors/FlatCAMGrbEditor.py:5322 flatcamTools/ToolTransform.py:884 +#: flatcamEditors/FlatCAMGeoEditor.py:1473 +#: flatcamEditors/FlatCAMGrbEditor.py:5466 flatcamTools/ToolTransform.py:884 #, python-format msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed." msgstr "[ERROR_NOTCL] Due of %s, Offset action was not executed." -#: flatcamEditors/FlatCAMGeoEditor.py:1491 -#: flatcamEditors/FlatCAMGrbEditor.py:5326 +#: flatcamEditors/FlatCAMGeoEditor.py:1477 +#: flatcamEditors/FlatCAMGrbEditor.py:5470 msgid "Rotate ..." msgstr "Rotate ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1492 -#: flatcamEditors/FlatCAMGeoEditor.py:1549 -#: flatcamEditors/FlatCAMGeoEditor.py:1566 -#: flatcamEditors/FlatCAMGrbEditor.py:5327 -#: flatcamEditors/FlatCAMGrbEditor.py:5384 -#: flatcamEditors/FlatCAMGrbEditor.py:5401 +#: flatcamEditors/FlatCAMGeoEditor.py:1478 +#: flatcamEditors/FlatCAMGeoEditor.py:1535 +#: flatcamEditors/FlatCAMGeoEditor.py:1552 +#: flatcamEditors/FlatCAMGrbEditor.py:5471 +#: flatcamEditors/FlatCAMGrbEditor.py:5528 +#: flatcamEditors/FlatCAMGrbEditor.py:5545 msgid "Enter an Angle Value (degrees):" msgstr "Enter an Angle Value (degrees):" -#: flatcamEditors/FlatCAMGeoEditor.py:1501 -#: flatcamEditors/FlatCAMGrbEditor.py:5336 +#: flatcamEditors/FlatCAMGeoEditor.py:1487 +#: flatcamEditors/FlatCAMGrbEditor.py:5480 msgid "[success] Geometry shape rotate done..." msgstr "[success] Geometry shape rotate done..." -#: flatcamEditors/FlatCAMGeoEditor.py:1506 -#: flatcamEditors/FlatCAMGrbEditor.py:5341 +#: flatcamEditors/FlatCAMGeoEditor.py:1492 +#: flatcamEditors/FlatCAMGrbEditor.py:5485 msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..." msgstr "[WARNING_NOTCL] Geometry shape rotate cancelled..." -#: flatcamEditors/FlatCAMGeoEditor.py:1512 -#: flatcamEditors/FlatCAMGrbEditor.py:5347 +#: flatcamEditors/FlatCAMGeoEditor.py:1498 +#: flatcamEditors/FlatCAMGrbEditor.py:5491 msgid "Offset on X axis ..." msgstr "Offset on X axis ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1513 -#: flatcamEditors/FlatCAMGeoEditor.py:1532 -#: flatcamEditors/FlatCAMGrbEditor.py:5348 -#: flatcamEditors/FlatCAMGrbEditor.py:5367 +#: flatcamEditors/FlatCAMGeoEditor.py:1499 +#: flatcamEditors/FlatCAMGeoEditor.py:1518 +#: flatcamEditors/FlatCAMGrbEditor.py:5492 +#: flatcamEditors/FlatCAMGrbEditor.py:5511 #, python-format msgid "Enter a distance Value (%s):" msgstr "Enter a distance Value (%s):" -#: flatcamEditors/FlatCAMGeoEditor.py:1522 -#: flatcamEditors/FlatCAMGrbEditor.py:5357 +#: flatcamEditors/FlatCAMGeoEditor.py:1508 +#: flatcamEditors/FlatCAMGrbEditor.py:5501 msgid "[success] Geometry shape offset on X axis done..." msgstr "[success] Geometry shape offset on X axis done..." -#: flatcamEditors/FlatCAMGeoEditor.py:1526 -#: flatcamEditors/FlatCAMGrbEditor.py:5361 +#: flatcamEditors/FlatCAMGeoEditor.py:1512 +#: flatcamEditors/FlatCAMGrbEditor.py:5505 msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..." msgstr "[WARNING_NOTCL] Geometry shape offset X cancelled..." -#: flatcamEditors/FlatCAMGeoEditor.py:1531 -#: flatcamEditors/FlatCAMGrbEditor.py:5366 +#: flatcamEditors/FlatCAMGeoEditor.py:1517 +#: flatcamEditors/FlatCAMGrbEditor.py:5510 msgid "Offset on Y axis ..." msgstr "Offset on Y axis ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1541 -#: flatcamEditors/FlatCAMGrbEditor.py:5376 +#: flatcamEditors/FlatCAMGeoEditor.py:1527 +#: flatcamEditors/FlatCAMGrbEditor.py:5520 msgid "[success] Geometry shape offset on Y axis done..." msgstr "[success] Geometry shape offset on Y axis done..." -#: flatcamEditors/FlatCAMGeoEditor.py:1545 -#: flatcamEditors/FlatCAMGrbEditor.py:5380 +#: flatcamEditors/FlatCAMGeoEditor.py:1531 +#: flatcamEditors/FlatCAMGrbEditor.py:5524 msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..." msgstr "[WARNING_NOTCL] Geometry shape offset Y cancelled..." -#: flatcamEditors/FlatCAMGeoEditor.py:1548 -#: flatcamEditors/FlatCAMGrbEditor.py:5383 +#: flatcamEditors/FlatCAMGeoEditor.py:1534 +#: flatcamEditors/FlatCAMGrbEditor.py:5527 msgid "Skew on X axis ..." msgstr "Skew on X axis ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1558 -#: flatcamEditors/FlatCAMGrbEditor.py:5393 +#: flatcamEditors/FlatCAMGeoEditor.py:1544 +#: flatcamEditors/FlatCAMGrbEditor.py:5537 msgid "[success] Geometry shape skew on X axis done..." msgstr "[success] Geometry shape skew on X axis done..." -#: flatcamEditors/FlatCAMGeoEditor.py:1562 -#: flatcamEditors/FlatCAMGrbEditor.py:5397 +#: flatcamEditors/FlatCAMGeoEditor.py:1548 +#: flatcamEditors/FlatCAMGrbEditor.py:5541 msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..." msgstr "[WARNING_NOTCL] Geometry shape skew X cancelled..." -#: flatcamEditors/FlatCAMGeoEditor.py:1565 -#: flatcamEditors/FlatCAMGrbEditor.py:5400 +#: flatcamEditors/FlatCAMGeoEditor.py:1551 +#: flatcamEditors/FlatCAMGrbEditor.py:5544 msgid "Skew on Y axis ..." msgstr "Skew on Y axis ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1575 -#: flatcamEditors/FlatCAMGrbEditor.py:5410 +#: flatcamEditors/FlatCAMGeoEditor.py:1561 +#: flatcamEditors/FlatCAMGrbEditor.py:5554 msgid "[success] Geometry shape skew on Y axis done..." msgstr "[success] Geometry shape skew on Y axis done..." -#: flatcamEditors/FlatCAMGeoEditor.py:1579 -#: flatcamEditors/FlatCAMGrbEditor.py:5414 +#: flatcamEditors/FlatCAMGeoEditor.py:1565 +#: flatcamEditors/FlatCAMGrbEditor.py:5558 msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..." msgstr "[WARNING_NOTCL] Geometry shape skew Y cancelled..." -#: flatcamEditors/FlatCAMGeoEditor.py:1943 -#: flatcamEditors/FlatCAMGeoEditor.py:1994 -#: flatcamEditors/FlatCAMGrbEditor.py:1351 -#: flatcamEditors/FlatCAMGrbEditor.py:1420 +#: flatcamEditors/FlatCAMGeoEditor.py:1929 +#: flatcamEditors/FlatCAMGeoEditor.py:1980 +#: flatcamEditors/FlatCAMGrbEditor.py:1354 +#: flatcamEditors/FlatCAMGrbEditor.py:1423 msgid "Click on Center point ..." msgstr "Click on Center point ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1950 -#: flatcamEditors/FlatCAMGrbEditor.py:1359 +#: flatcamEditors/FlatCAMGeoEditor.py:1936 +#: flatcamEditors/FlatCAMGrbEditor.py:1362 msgid "Click on Perimeter point to complete ..." msgstr "Click on Perimeter point to complete ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1979 +#: flatcamEditors/FlatCAMGeoEditor.py:1965 msgid "[success] Done. Adding Circle completed." msgstr "[success] Done. Adding Circle completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2014 -#: flatcamEditors/FlatCAMGrbEditor.py:1445 +#: flatcamEditors/FlatCAMGeoEditor.py:2000 +#: flatcamEditors/FlatCAMGrbEditor.py:1448 msgid "Click on Start point ..." msgstr "Click on Start point ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2016 -#: flatcamEditors/FlatCAMGrbEditor.py:1447 +#: flatcamEditors/FlatCAMGeoEditor.py:2002 +#: flatcamEditors/FlatCAMGrbEditor.py:1450 msgid "Click on Point3 ..." msgstr "Click on Point3 ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2018 -#: flatcamEditors/FlatCAMGrbEditor.py:1449 +#: flatcamEditors/FlatCAMGeoEditor.py:2004 +#: flatcamEditors/FlatCAMGrbEditor.py:1452 msgid "Click on Stop point ..." msgstr "Click on Stop point ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2023 -#: flatcamEditors/FlatCAMGrbEditor.py:1454 +#: flatcamEditors/FlatCAMGeoEditor.py:2009 +#: flatcamEditors/FlatCAMGrbEditor.py:1457 msgid "Click on Stop point to complete ..." msgstr "Click on Stop point to complete ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2025 -#: flatcamEditors/FlatCAMGrbEditor.py:1456 +#: flatcamEditors/FlatCAMGeoEditor.py:2011 +#: flatcamEditors/FlatCAMGrbEditor.py:1459 msgid "Click on Point2 to complete ..." msgstr "Click on Point2 to complete ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2027 -#: flatcamEditors/FlatCAMGrbEditor.py:1458 +#: flatcamEditors/FlatCAMGeoEditor.py:2013 +#: flatcamEditors/FlatCAMGrbEditor.py:1461 msgid "Click on Center point to complete ..." msgstr "Click on Center point to complete ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2039 -#: flatcamEditors/FlatCAMGrbEditor.py:1470 +#: flatcamEditors/FlatCAMGeoEditor.py:2025 +#: flatcamEditors/FlatCAMGrbEditor.py:1473 #, python-format msgid "Direction: %s" msgstr "Direction: %s" -#: flatcamEditors/FlatCAMGeoEditor.py:2049 -#: flatcamEditors/FlatCAMGrbEditor.py:1480 +#: flatcamEditors/FlatCAMGeoEditor.py:2035 +#: flatcamEditors/FlatCAMGrbEditor.py:1483 msgid "Mode: Start -> Stop -> Center. Click on Start point ..." msgstr "Mode: Start -> Stop -> Center. Click on Start point ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2052 -#: flatcamEditors/FlatCAMGrbEditor.py:1483 +#: flatcamEditors/FlatCAMGeoEditor.py:2038 +#: flatcamEditors/FlatCAMGrbEditor.py:1486 msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..." msgstr "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2055 -#: flatcamEditors/FlatCAMGrbEditor.py:1486 +#: flatcamEditors/FlatCAMGeoEditor.py:2041 +#: flatcamEditors/FlatCAMGrbEditor.py:1489 msgid "Mode: Center -> Start -> Stop. Click on Center point ..." msgstr "Mode: Center -> Start -> Stop. Click on Center point ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2193 +#: flatcamEditors/FlatCAMGeoEditor.py:2179 msgid "[success] Done. Arc completed." msgstr "[success] Done. Arc completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2212 -#: flatcamEditors/FlatCAMGeoEditor.py:2265 -#: flatcamEditors/FlatCAMGeoEditor.py:2640 +#: flatcamEditors/FlatCAMGeoEditor.py:2198 +#: flatcamEditors/FlatCAMGeoEditor.py:2251 +#: flatcamEditors/FlatCAMGeoEditor.py:2626 msgid "Click on 1st corner ..." msgstr "Click on 1st corner ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2218 -#| msgid "Click on Stop point to complete ..." +#: flatcamEditors/FlatCAMGeoEditor.py:2204 msgid "Click on opposite corner to complete ..." msgstr "Click on opposite corner to complete ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2246 +#: flatcamEditors/FlatCAMGeoEditor.py:2232 msgid "[success] Done. Rectangle completed." msgstr "[success] Done. Rectangle completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2272 -#| msgid "Click on next Point or click Right mouse button to complete ..." +#: flatcamEditors/FlatCAMGeoEditor.py:2258 msgid "Click on next Point or click right mouse button to complete ..." msgstr "Click on next Point or click right mouse button to complete ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2300 +#: flatcamEditors/FlatCAMGeoEditor.py:2286 msgid "[success] Done. Polygon completed." msgstr "[success] Done. Polygon completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2310 -#: flatcamEditors/FlatCAMGeoEditor.py:2356 -#: flatcamEditors/FlatCAMGrbEditor.py:1055 -#: flatcamEditors/FlatCAMGrbEditor.py:1249 +#: flatcamEditors/FlatCAMGeoEditor.py:2296 +#: flatcamEditors/FlatCAMGeoEditor.py:2342 +#: flatcamEditors/FlatCAMGrbEditor.py:1058 +#: flatcamEditors/FlatCAMGrbEditor.py:1252 msgid "Backtracked one point ..." msgstr "Backtracked one point ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2338 +#: flatcamEditors/FlatCAMGeoEditor.py:2324 msgid "[success] Done. Path completed." msgstr "[success] Done. Path completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2461 -#| msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!" +#: flatcamEditors/FlatCAMGeoEditor.py:2447 msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..." msgstr "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2463 -#: flatcamEditors/FlatCAMGeoEditor.py:2475 -#| msgid "Click on reference point." +#: flatcamEditors/FlatCAMGeoEditor.py:2449 +#: flatcamEditors/FlatCAMGeoEditor.py:2461 msgid " MOVE: Click on reference point ..." msgstr " MOVE: Click on reference point ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2466 -#| msgid "Click on destination point." +#: flatcamEditors/FlatCAMGeoEditor.py:2452 msgid " Click on destination point ..." msgstr " Click on destination point ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2500 +#: flatcamEditors/FlatCAMGeoEditor.py:2486 msgid "[success] Done. Geometry(s) Move completed." msgstr "[success] Done. Geometry(s) Move completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2620 +#: flatcamEditors/FlatCAMGeoEditor.py:2606 msgid "[success] Done. Geometry(s) Copy completed." msgstr "[success] Done. Geometry(s) Copy completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2654 +#: flatcamEditors/FlatCAMGeoEditor.py:2640 #, python-format msgid "" "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are " @@ -2953,60 +2936,85 @@ msgstr "" "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are " "supported. Error: %s" -#: flatcamEditors/FlatCAMGeoEditor.py:2664 +#: flatcamEditors/FlatCAMGeoEditor.py:2650 msgid "[success] Done. Adding Text completed." msgstr "[success] Done. Adding Text completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2692 +#: flatcamEditors/FlatCAMGeoEditor.py:2678 msgid "Create buffer geometry ..." msgstr "Create buffer geometry ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2703 -#: flatcamEditors/FlatCAMGeoEditor.py:2729 -#: flatcamEditors/FlatCAMGeoEditor.py:2755 +#: flatcamEditors/FlatCAMGeoEditor.py:2689 +#: flatcamEditors/FlatCAMGeoEditor.py:2715 +#: flatcamEditors/FlatCAMGeoEditor.py:2741 msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected." msgstr "[WARNING_NOTCL] Buffer cancelled. No shape selected." -#: flatcamEditors/FlatCAMGeoEditor.py:2725 -#: flatcamEditors/FlatCAMGrbEditor.py:4276 +#: flatcamEditors/FlatCAMGeoEditor.py:2711 +#: flatcamEditors/FlatCAMGrbEditor.py:4420 msgid "[success] Done. Buffer Tool completed." msgstr "[success] Done. Buffer Tool completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2751 +#: flatcamEditors/FlatCAMGeoEditor.py:2737 msgid "[success] Done. Buffer Int Tool completed." msgstr "[success] Done. Buffer Int Tool completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2777 +#: flatcamEditors/FlatCAMGeoEditor.py:2763 msgid "[success] Done. Buffer Ext Tool completed." msgstr "[success] Done. Buffer Ext Tool completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2810 +#: flatcamEditors/FlatCAMGeoEditor.py:2798 +#: flatcamEditors/FlatCAMGrbEditor.py:1969 +msgid "Select a shape to act as deletion area ..." +msgstr "Select a shape to act as deletion area ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:2800 +#: flatcamEditors/FlatCAMGeoEditor.py:2819 +#: flatcamEditors/FlatCAMGeoEditor.py:2825 +#: flatcamEditors/FlatCAMGrbEditor.py:1971 +#| msgid "Click to set the origin ..." +msgid "Click to pick-up the erase shape..." +msgstr "Click to pick-up the erase shape..." + +#: flatcamEditors/FlatCAMGeoEditor.py:2829 +#: flatcamEditors/FlatCAMGrbEditor.py:2028 +#| msgid "Click to place ..." +msgid "Click to erase ..." +msgstr "Click to erase ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:2858 +#: flatcamEditors/FlatCAMGrbEditor.py:2059 +#| msgid "[success] Done. Scale Tool completed." +msgid "[success] Done. Eraser tool action completed." +msgstr "[success] Done. Eraser tool action completed." + +#: flatcamEditors/FlatCAMGeoEditor.py:2901 msgid "Create Paint geometry ..." msgstr "Create Paint geometry ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2824 -#: flatcamEditors/FlatCAMGrbEditor.py:2059 +#: flatcamEditors/FlatCAMGeoEditor.py:2915 +#: flatcamEditors/FlatCAMGrbEditor.py:2201 msgid "Shape transformations ..." msgstr "Shape transformations ..." -#: flatcamEditors/FlatCAMGeoEditor.py:3327 +#: flatcamEditors/FlatCAMGeoEditor.py:3419 #, python-brace-format msgid "[WARNING] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}" msgstr "[WARNING] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}" -#: flatcamEditors/FlatCAMGeoEditor.py:3703 +#: flatcamEditors/FlatCAMGeoEditor.py:3796 msgid "[WARNING_NOTCL] Copy cancelled. No shape selected." msgstr "[WARNING_NOTCL] Copy cancelled. No shape selected." -#: flatcamEditors/FlatCAMGeoEditor.py:3710 flatcamGUI/FlatCAMGUI.py:2725 -#: flatcamGUI/FlatCAMGUI.py:2771 flatcamGUI/FlatCAMGUI.py:2789 -#: flatcamGUI/FlatCAMGUI.py:2920 flatcamGUI/FlatCAMGUI.py:2932 -#: flatcamGUI/FlatCAMGUI.py:2966 +#: flatcamEditors/FlatCAMGeoEditor.py:3803 flatcamGUI/FlatCAMGUI.py:2732 +#: flatcamGUI/FlatCAMGUI.py:2778 flatcamGUI/FlatCAMGUI.py:2796 +#: flatcamGUI/FlatCAMGUI.py:2927 flatcamGUI/FlatCAMGUI.py:2939 +#: flatcamGUI/FlatCAMGUI.py:2973 msgid "Click on target point." msgstr "Click on target point." -#: flatcamEditors/FlatCAMGeoEditor.py:3953 -#: flatcamEditors/FlatCAMGeoEditor.py:3987 +#: flatcamEditors/FlatCAMGeoEditor.py:4047 +#: flatcamEditors/FlatCAMGeoEditor.py:4082 msgid "" "[WARNING_NOTCL] A selection of at least 2 geo items is required to do " "Intersection." @@ -3014,9 +3022,9 @@ msgstr "" "[WARNING_NOTCL] A selection of at least 2 geo items is required to do " "Intersection." -#: flatcamEditors/FlatCAMGeoEditor.py:4071 -#: flatcamEditors/FlatCAMGeoEditor.py:4108 -#: flatcamEditors/FlatCAMGeoEditor.py:4184 +#: flatcamEditors/FlatCAMGeoEditor.py:4166 +#: flatcamEditors/FlatCAMGeoEditor.py:4204 +#: flatcamEditors/FlatCAMGeoEditor.py:4280 msgid "" "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to " "generate an 'inside' shape" @@ -3024,52 +3032,52 @@ msgstr "" "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to " "generate an 'inside' shape" -#: flatcamEditors/FlatCAMGeoEditor.py:4079 -#: flatcamEditors/FlatCAMGeoEditor.py:4117 -#: flatcamEditors/FlatCAMGeoEditor.py:4192 +#: flatcamEditors/FlatCAMGeoEditor.py:4175 +#: flatcamEditors/FlatCAMGeoEditor.py:4213 +#: flatcamEditors/FlatCAMGeoEditor.py:4288 msgid "[WARNING_NOTCL] Nothing selected for buffering." msgstr "[WARNING_NOTCL] Nothing selected for buffering." -#: flatcamEditors/FlatCAMGeoEditor.py:4083 -#: flatcamEditors/FlatCAMGeoEditor.py:4121 -#: flatcamEditors/FlatCAMGeoEditor.py:4196 +#: flatcamEditors/FlatCAMGeoEditor.py:4179 +#: flatcamEditors/FlatCAMGeoEditor.py:4217 +#: flatcamEditors/FlatCAMGeoEditor.py:4292 msgid "[WARNING_NOTCL] Invalid distance for buffering." msgstr "[WARNING_NOTCL] Invalid distance for buffering." -#: flatcamEditors/FlatCAMGeoEditor.py:4093 -#: flatcamEditors/FlatCAMGeoEditor.py:4205 +#: flatcamEditors/FlatCAMGeoEditor.py:4189 +#: flatcamEditors/FlatCAMGeoEditor.py:4301 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value." msgstr "" "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value." -#: flatcamEditors/FlatCAMGeoEditor.py:4101 +#: flatcamEditors/FlatCAMGeoEditor.py:4197 msgid "[success] Full buffer geometry created." msgstr "[success] Full buffer geometry created." -#: flatcamEditors/FlatCAMGeoEditor.py:4131 +#: flatcamEditors/FlatCAMGeoEditor.py:4227 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value." msgstr "" "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value." -#: flatcamEditors/FlatCAMGeoEditor.py:4146 +#: flatcamEditors/FlatCAMGeoEditor.py:4242 msgid "[success] Interior buffer geometry created." msgstr "[success] Interior buffer geometry created." -#: flatcamEditors/FlatCAMGeoEditor.py:4217 +#: flatcamEditors/FlatCAMGeoEditor.py:4313 msgid "[success] Exterior buffer geometry created." msgstr "[success] Exterior buffer geometry created." -#: flatcamEditors/FlatCAMGeoEditor.py:4281 +#: flatcamEditors/FlatCAMGeoEditor.py:4377 msgid "[WARNING_NOTCL] Nothing selected for painting." msgstr "[WARNING_NOTCL] Nothing selected for painting." -#: flatcamEditors/FlatCAMGeoEditor.py:4287 +#: flatcamEditors/FlatCAMGeoEditor.py:4383 msgid "[WARNING] Invalid value for {}" msgstr "[WARNING] Invalid value for {}" -#: flatcamEditors/FlatCAMGeoEditor.py:4293 +#: flatcamEditors/FlatCAMGeoEditor.py:4389 msgid "" "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 " "(100%)." @@ -3077,7 +3085,7 @@ msgstr "" "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 " "(100%)." -#: flatcamEditors/FlatCAMGeoEditor.py:4352 +#: flatcamEditors/FlatCAMGeoEditor.py:4448 #, python-format msgid "" "[ERROR] Could not do Paint. Try a different combination of parameters. Or a " @@ -3088,7 +3096,7 @@ msgstr "" "different method of Paint\n" "%s" -#: flatcamEditors/FlatCAMGeoEditor.py:4363 +#: flatcamEditors/FlatCAMGeoEditor.py:4459 msgid "[success] Paint done." msgstr "[success] Paint done." @@ -3110,7 +3118,7 @@ msgid "Click to place ..." msgstr "Click to place ..." #: flatcamEditors/FlatCAMGrbEditor.py:357 -#: flatcamEditors/FlatCAMGrbEditor.py:660 +#: flatcamEditors/FlatCAMGrbEditor.py:662 msgid "" "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'." msgstr "" @@ -3130,23 +3138,23 @@ msgstr "" msgid "Click on the Pad Circular Array Start position" msgstr "Click on the Pad Circular Array Start position" -#: flatcamEditors/FlatCAMGrbEditor.py:685 +#: flatcamEditors/FlatCAMGrbEditor.py:687 msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle." msgstr "[WARNING_NOTCL] Too many Pads for the selected spacing angle." -#: flatcamEditors/FlatCAMGrbEditor.py:707 +#: flatcamEditors/FlatCAMGrbEditor.py:709 msgid "[success] Done. Pad Array added." msgstr "[success] Done. Pad Array added." -#: flatcamEditors/FlatCAMGrbEditor.py:728 +#: flatcamEditors/FlatCAMGrbEditor.py:730 msgid "Select shape(s) and then click ..." msgstr "Select shape(s) and then click ..." -#: flatcamEditors/FlatCAMGrbEditor.py:739 +#: flatcamEditors/FlatCAMGrbEditor.py:741 msgid "[ERROR_NOTCL] Failed. Nothing selected." msgstr "[ERROR_NOTCL] Failed. Nothing selected." -#: flatcamEditors/FlatCAMGrbEditor.py:754 +#: flatcamEditors/FlatCAMGrbEditor.py:756 msgid "" "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the " "same aperture." @@ -3154,144 +3162,143 @@ msgstr "" "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the " "same aperture." -#: flatcamEditors/FlatCAMGrbEditor.py:807 +#: flatcamEditors/FlatCAMGrbEditor.py:809 msgid "[success] Done. Poligonize completed." msgstr "[success] Done. Poligonize completed." -#: flatcamEditors/FlatCAMGrbEditor.py:857 -#: flatcamEditors/FlatCAMGrbEditor.py:1072 -#: flatcamEditors/FlatCAMGrbEditor.py:1096 +#: flatcamEditors/FlatCAMGrbEditor.py:860 +#: flatcamEditors/FlatCAMGrbEditor.py:1075 +#: flatcamEditors/FlatCAMGrbEditor.py:1099 msgid "Corner Mode 1: 45 degrees ..." msgstr "Corner Mode 1: 45 degrees ..." -#: flatcamEditors/FlatCAMGrbEditor.py:859 +#: flatcamEditors/FlatCAMGrbEditor.py:862 msgid "Click on 1st point ..." msgstr "Click on 1st point ..." -#: flatcamEditors/FlatCAMGrbEditor.py:869 -#: flatcamEditors/FlatCAMGrbEditor.py:1167 +#: flatcamEditors/FlatCAMGrbEditor.py:872 +#: flatcamEditors/FlatCAMGrbEditor.py:1170 msgid "Click on next Point or click Right mouse button to complete ..." msgstr "Click on next Point or click Right mouse button to complete ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1060 -#: flatcamEditors/FlatCAMGrbEditor.py:1093 +#: flatcamEditors/FlatCAMGrbEditor.py:1063 +#: flatcamEditors/FlatCAMGrbEditor.py:1096 msgid "Corner Mode 2: Reverse 45 degrees ..." msgstr "Corner Mode 2: Reverse 45 degrees ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1063 -#: flatcamEditors/FlatCAMGrbEditor.py:1090 +#: flatcamEditors/FlatCAMGrbEditor.py:1066 +#: flatcamEditors/FlatCAMGrbEditor.py:1093 msgid "Corner Mode 3: 90 degrees ..." msgstr "Corner Mode 3: 90 degrees ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1066 -#: flatcamEditors/FlatCAMGrbEditor.py:1087 +#: flatcamEditors/FlatCAMGrbEditor.py:1069 +#: flatcamEditors/FlatCAMGrbEditor.py:1090 msgid "Corner Mode 4: Reverse 90 degrees ..." msgstr "Corner Mode 4: Reverse 90 degrees ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1069 -#: flatcamEditors/FlatCAMGrbEditor.py:1084 +#: flatcamEditors/FlatCAMGrbEditor.py:1072 +#: flatcamEditors/FlatCAMGrbEditor.py:1087 msgid "Corner Mode 5: Free angle ..." msgstr "Corner Mode 5: Free angle ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1123 -#: flatcamEditors/FlatCAMGrbEditor.py:1281 -#: flatcamEditors/FlatCAMGrbEditor.py:1320 +#: flatcamEditors/FlatCAMGrbEditor.py:1126 +#: flatcamEditors/FlatCAMGrbEditor.py:1284 +#: flatcamEditors/FlatCAMGrbEditor.py:1323 msgid "Track Mode 1: 45 degrees ..." msgstr "Track Mode 1: 45 degrees ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1261 -#: flatcamEditors/FlatCAMGrbEditor.py:1315 +#: flatcamEditors/FlatCAMGrbEditor.py:1264 +#: flatcamEditors/FlatCAMGrbEditor.py:1318 msgid "Track Mode 2: Reverse 45 degrees ..." msgstr "Track Mode 2: Reverse 45 degrees ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1266 -#: flatcamEditors/FlatCAMGrbEditor.py:1310 +#: flatcamEditors/FlatCAMGrbEditor.py:1269 +#: flatcamEditors/FlatCAMGrbEditor.py:1313 msgid "Track Mode 3: 90 degrees ..." msgstr "Track Mode 3: 90 degrees ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1271 -#: flatcamEditors/FlatCAMGrbEditor.py:1305 +#: flatcamEditors/FlatCAMGrbEditor.py:1274 +#: flatcamEditors/FlatCAMGrbEditor.py:1308 msgid "Track Mode 4: Reverse 90 degrees ..." msgstr "Track Mode 4: Reverse 90 degrees ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1276 -#: flatcamEditors/FlatCAMGrbEditor.py:1300 +#: flatcamEditors/FlatCAMGrbEditor.py:1279 +#: flatcamEditors/FlatCAMGrbEditor.py:1303 msgid "Track Mode 5: Free angle ..." msgstr "Track Mode 5: Free angle ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1666 +#: flatcamEditors/FlatCAMGrbEditor.py:1669 msgid "Scale the selected Gerber apertures ..." msgstr "Scale the selected Gerber apertures ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1708 +#: flatcamEditors/FlatCAMGrbEditor.py:1711 msgid "Buffer the selected apertures ..." msgstr "Buffer the selected apertures ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1752 -#| msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move." +#: flatcamEditors/FlatCAMGrbEditor.py:1755 msgid "[WARNING_NOTCL] Nothing selected to move ..." msgstr "[WARNING_NOTCL] Nothing selected to move ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1875 +#: flatcamEditors/FlatCAMGrbEditor.py:1878 msgid "[success] Done. Apertures Move completed." msgstr "[success] Done. Apertures Move completed." -#: flatcamEditors/FlatCAMGrbEditor.py:1951 +#: flatcamEditors/FlatCAMGrbEditor.py:1954 msgid "[success] Done. Apertures copied." msgstr "[success] Done. Apertures copied." -#: flatcamEditors/FlatCAMGrbEditor.py:2101 flatcamGUI/FlatCAMGUI.py:1604 -#: flatcamGUI/FlatCAMGUI.py:4322 +#: flatcamEditors/FlatCAMGrbEditor.py:2243 flatcamGUI/FlatCAMGUI.py:1607 +#: flatcamGUI/FlatCAMGUI.py:4329 msgid "Gerber Editor" msgstr "Gerber Editor" -#: flatcamEditors/FlatCAMGrbEditor.py:2120 flatcamGUI/ObjectUI.py:192 +#: flatcamEditors/FlatCAMGrbEditor.py:2262 flatcamGUI/ObjectUI.py:192 msgid "Apertures:" msgstr "Apertures:" -#: flatcamEditors/FlatCAMGrbEditor.py:2122 flatcamGUI/ObjectUI.py:194 +#: flatcamEditors/FlatCAMGrbEditor.py:2264 flatcamGUI/ObjectUI.py:194 msgid "Apertures Table for the Gerber Object." msgstr "Apertures Table for the Gerber Object." -#: flatcamEditors/FlatCAMGrbEditor.py:2133 -#: flatcamEditors/FlatCAMGrbEditor.py:3442 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:2275 +#: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228 msgid "Code" msgstr "Code" -#: flatcamEditors/FlatCAMGrbEditor.py:2133 -#: flatcamEditors/FlatCAMGrbEditor.py:3442 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:2275 +#: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228 #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1452 msgid "Type" msgstr "Type" -#: flatcamEditors/FlatCAMGrbEditor.py:2133 -#: flatcamEditors/FlatCAMGrbEditor.py:3442 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:2275 +#: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228 msgid "Size" msgstr "Size" -#: flatcamEditors/FlatCAMGrbEditor.py:2133 -#: flatcamEditors/FlatCAMGrbEditor.py:3442 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:2275 +#: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228 msgid "Dim" msgstr "Dim" -#: flatcamEditors/FlatCAMGrbEditor.py:2137 flatcamGUI/ObjectUI.py:232 +#: flatcamEditors/FlatCAMGrbEditor.py:2279 flatcamGUI/ObjectUI.py:232 msgid "Index" msgstr "Index" -#: flatcamEditors/FlatCAMGrbEditor.py:2139 flatcamGUI/ObjectUI.py:234 +#: flatcamEditors/FlatCAMGrbEditor.py:2281 flatcamGUI/ObjectUI.py:234 msgid "Aperture Code" msgstr "Aperture Code" -#: flatcamEditors/FlatCAMGrbEditor.py:2141 flatcamGUI/ObjectUI.py:236 +#: flatcamEditors/FlatCAMGrbEditor.py:2283 flatcamGUI/ObjectUI.py:236 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "Type of aperture: circular, rectangle, macros etc" -#: flatcamEditors/FlatCAMGrbEditor.py:2143 -#: flatcamEditors/FlatCAMGrbEditor.py:2176 flatcamGUI/ObjectUI.py:238 +#: flatcamEditors/FlatCAMGrbEditor.py:2285 +#: flatcamEditors/FlatCAMGrbEditor.py:2318 flatcamGUI/ObjectUI.py:238 msgid "Aperture Size:" msgstr "Aperture Size:" -#: flatcamEditors/FlatCAMGrbEditor.py:2145 flatcamGUI/ObjectUI.py:240 +#: flatcamEditors/FlatCAMGrbEditor.py:2287 flatcamGUI/ObjectUI.py:240 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" @@ -3301,15 +3308,15 @@ msgstr "" " - (width, height) for R, O type.\n" " - (dia, nVertices) for P type" -#: flatcamEditors/FlatCAMGrbEditor.py:2166 +#: flatcamEditors/FlatCAMGrbEditor.py:2308 msgid "Aperture Code:" msgstr "Aperture Code:" -#: flatcamEditors/FlatCAMGrbEditor.py:2168 +#: flatcamEditors/FlatCAMGrbEditor.py:2310 msgid "Code for the new aperture" msgstr "Code for the new aperture" -#: flatcamEditors/FlatCAMGrbEditor.py:2178 +#: flatcamEditors/FlatCAMGrbEditor.py:2320 msgid "" "Size for the new aperture.\n" "If aperture type is 'R' or 'O' then\n" @@ -3323,11 +3330,11 @@ msgstr "" "calculated as:\n" "sqrt(width**2 + height**2)" -#: flatcamEditors/FlatCAMGrbEditor.py:2190 +#: flatcamEditors/FlatCAMGrbEditor.py:2332 msgid "Aperture Type:" msgstr "Aperture Type:" -#: flatcamEditors/FlatCAMGrbEditor.py:2192 +#: flatcamEditors/FlatCAMGrbEditor.py:2334 msgid "" "Select the type of new aperture. Can be:\n" "C = circular\n" @@ -3339,11 +3346,11 @@ msgstr "" "R = rectangular\n" "O = oblong" -#: flatcamEditors/FlatCAMGrbEditor.py:2203 +#: flatcamEditors/FlatCAMGrbEditor.py:2345 msgid "Aperture Dim:" msgstr "Aperture Dim:" -#: flatcamEditors/FlatCAMGrbEditor.py:2205 +#: flatcamEditors/FlatCAMGrbEditor.py:2347 msgid "" "Dimensions for the new aperture.\n" "Active only for rectangular apertures (type R).\n" @@ -3353,31 +3360,31 @@ msgstr "" "Active only for rectangular apertures (type R).\n" "The format is (width, height)" -#: flatcamEditors/FlatCAMGrbEditor.py:2214 +#: flatcamEditors/FlatCAMGrbEditor.py:2356 msgid "Add/Delete Aperture:" msgstr "Add/Delete Aperture:" -#: flatcamEditors/FlatCAMGrbEditor.py:2216 +#: flatcamEditors/FlatCAMGrbEditor.py:2358 msgid "Add/Delete an aperture in the aperture table" msgstr "Add/Delete an aperture in the aperture table" -#: flatcamEditors/FlatCAMGrbEditor.py:2225 +#: flatcamEditors/FlatCAMGrbEditor.py:2367 msgid "Add a new aperture to the aperture list." msgstr "Add a new aperture to the aperture list." -#: flatcamEditors/FlatCAMGrbEditor.py:2230 +#: flatcamEditors/FlatCAMGrbEditor.py:2372 msgid "Delete a aperture in the aperture list" msgstr "Delete a aperture in the aperture list" -#: flatcamEditors/FlatCAMGrbEditor.py:2246 +#: flatcamEditors/FlatCAMGrbEditor.py:2388 msgid "Buffer Aperture:" msgstr "Buffer Aperture:" -#: flatcamEditors/FlatCAMGrbEditor.py:2248 +#: flatcamEditors/FlatCAMGrbEditor.py:2390 msgid "Buffer a aperture in the aperture list" msgstr "Buffer a aperture in the aperture list" -#: flatcamEditors/FlatCAMGrbEditor.py:2261 +#: flatcamEditors/FlatCAMGrbEditor.py:2403 msgid "" "There are 3 types of corners:\n" " - 'Round': the corner is rounded.\n" @@ -3391,24 +3398,24 @@ msgstr "" " - 'Beveled:' the corner is a line that directly connects the features " "meeting in the corner" -#: flatcamEditors/FlatCAMGrbEditor.py:2276 flatcamGUI/FlatCAMGUI.py:721 -#: flatcamGUI/FlatCAMGUI.py:1943 +#: flatcamEditors/FlatCAMGrbEditor.py:2418 flatcamGUI/FlatCAMGUI.py:722 +#: flatcamGUI/FlatCAMGUI.py:1948 msgid "Buffer" msgstr "Buffer" -#: flatcamEditors/FlatCAMGrbEditor.py:2290 +#: flatcamEditors/FlatCAMGrbEditor.py:2432 msgid "Scale Aperture:" msgstr "Scale Aperture:" -#: flatcamEditors/FlatCAMGrbEditor.py:2292 +#: flatcamEditors/FlatCAMGrbEditor.py:2434 msgid "Scale a aperture in the aperture list" msgstr "Scale a aperture in the aperture list" -#: flatcamEditors/FlatCAMGrbEditor.py:2300 +#: flatcamEditors/FlatCAMGrbEditor.py:2442 msgid "Scale factor:" msgstr "Scale factor:" -#: flatcamEditors/FlatCAMGrbEditor.py:2302 +#: flatcamEditors/FlatCAMGrbEditor.py:2444 msgid "" "The factor by which to scale the selected aperture.\n" "Values can be between 0.0000 and 999.9999" @@ -3416,16 +3423,16 @@ msgstr "" "The factor by which to scale the selected aperture.\n" "Values can be between 0.0000 and 999.9999" -#: flatcamEditors/FlatCAMGrbEditor.py:2330 flatcamGUI/FlatCAMGUI.py:711 -#: flatcamGUI/FlatCAMGUI.py:1933 +#: flatcamEditors/FlatCAMGrbEditor.py:2472 flatcamGUI/FlatCAMGUI.py:712 +#: flatcamGUI/FlatCAMGUI.py:1938 msgid "Add Pad Array" msgstr "Add Pad Array" -#: flatcamEditors/FlatCAMGrbEditor.py:2332 +#: flatcamEditors/FlatCAMGrbEditor.py:2474 msgid "Add an array of pads (linear or circular array)" msgstr "Add an array of pads (linear or circular array)" -#: flatcamEditors/FlatCAMGrbEditor.py:2338 +#: flatcamEditors/FlatCAMGrbEditor.py:2480 msgid "" "Select the type of pads array to create.\n" "It can be Linear X(Y) or Circular" @@ -3433,16 +3440,16 @@ msgstr "" "Select the type of pads array to create.\n" "It can be Linear X(Y) or Circular" -#: flatcamEditors/FlatCAMGrbEditor.py:2349 +#: flatcamEditors/FlatCAMGrbEditor.py:2491 msgid "Nr of pads:" msgstr "Nr of pads:" -#: flatcamEditors/FlatCAMGrbEditor.py:2351 +#: flatcamEditors/FlatCAMGrbEditor.py:2493 msgid "Specify how many pads to be in the array." msgstr "Specify how many pads to be in the array." -#: flatcamEditors/FlatCAMGrbEditor.py:2826 -#: flatcamEditors/FlatCAMGrbEditor.py:2830 +#: flatcamEditors/FlatCAMGrbEditor.py:2970 +#: flatcamEditors/FlatCAMGrbEditor.py:2974 msgid "" "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and " "retry." @@ -3450,7 +3457,7 @@ msgstr "" "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and " "retry." -#: flatcamEditors/FlatCAMGrbEditor.py:2866 +#: flatcamEditors/FlatCAMGrbEditor.py:3010 msgid "" "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it " "in format (width, height) and retry." @@ -3458,7 +3465,7 @@ msgstr "" "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it " "in format (width, height) and retry." -#: flatcamEditors/FlatCAMGrbEditor.py:2878 +#: flatcamEditors/FlatCAMGrbEditor.py:3022 msgid "" "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and " "retry." @@ -3466,36 +3473,35 @@ msgstr "" "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and " "retry." -#: flatcamEditors/FlatCAMGrbEditor.py:2889 +#: flatcamEditors/FlatCAMGrbEditor.py:3033 msgid "[WARNING_NOTCL] Aperture already in the aperture table." msgstr "[WARNING_NOTCL] Aperture already in the aperture table." -#: flatcamEditors/FlatCAMGrbEditor.py:2896 +#: flatcamEditors/FlatCAMGrbEditor.py:3040 #, python-brace-format msgid "[success] Added new aperture with code: {apid}" msgstr "[success] Added new aperture with code: {apid}" -#: flatcamEditors/FlatCAMGrbEditor.py:2924 +#: flatcamEditors/FlatCAMGrbEditor.py:3068 msgid "[WARNING_NOTCL] Select an aperture in Aperture Table" msgstr "[WARNING_NOTCL] Select an aperture in Aperture Table" -#: flatcamEditors/FlatCAMGrbEditor.py:2930 +#: flatcamEditors/FlatCAMGrbEditor.py:3074 #, python-format -#| msgid "[WARNING_NOTCL] Select an aperture in Aperture Table" msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s" msgstr "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s" -#: flatcamEditors/FlatCAMGrbEditor.py:2953 +#: flatcamEditors/FlatCAMGrbEditor.py:3097 #, python-brace-format msgid "[success] Deleted aperture with code: {del_dia}" msgstr "[success] Deleted aperture with code: {del_dia}" -#: flatcamEditors/FlatCAMGrbEditor.py:3373 +#: flatcamEditors/FlatCAMGrbEditor.py:3517 #, python-format msgid "Adding aperture: %s geo ..." msgstr "Adding aperture: %s geo ..." -#: flatcamEditors/FlatCAMGrbEditor.py:3552 +#: flatcamEditors/FlatCAMGrbEditor.py:3696 msgid "" "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber " "creation." @@ -3503,32 +3509,31 @@ msgstr "" "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber " "creation." -#: flatcamEditors/FlatCAMGrbEditor.py:3555 -#| msgid "[ERROR] An internal error has ocurred. See shell.\n" +#: flatcamEditors/FlatCAMGrbEditor.py:3699 msgid "[ERROR] An internal error has occurred. See shell.\n" msgstr "[ERROR] An internal error has occurred. See shell.\n" -#: flatcamEditors/FlatCAMGrbEditor.py:3560 +#: flatcamEditors/FlatCAMGrbEditor.py:3704 msgid "Creating Gerber." msgstr "Creating Gerber." -#: flatcamEditors/FlatCAMGrbEditor.py:3568 +#: flatcamEditors/FlatCAMGrbEditor.py:3712 msgid "[success] Gerber editing finished." msgstr "[success] Gerber editing finished." -#: flatcamEditors/FlatCAMGrbEditor.py:3584 +#: flatcamEditors/FlatCAMGrbEditor.py:3728 msgid "[WARNING_NOTCL] Cancelled. No aperture is selected" msgstr "[WARNING_NOTCL] Cancelled. No aperture is selected" -#: flatcamEditors/FlatCAMGrbEditor.py:4104 +#: flatcamEditors/FlatCAMGrbEditor.py:4248 msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected." msgstr "[ERROR_NOTCL] Failed. No aperture geometry is selected." -#: flatcamEditors/FlatCAMGrbEditor.py:4112 +#: flatcamEditors/FlatCAMGrbEditor.py:4256 msgid "[success] Done. Apertures geometry deleted." msgstr "[success] Done. Apertures geometry deleted." -#: flatcamEditors/FlatCAMGrbEditor.py:4261 +#: flatcamEditors/FlatCAMGrbEditor.py:4405 msgid "" "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try " "again." @@ -3536,7 +3541,7 @@ msgstr "" "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try " "again." -#: flatcamEditors/FlatCAMGrbEditor.py:4290 +#: flatcamEditors/FlatCAMGrbEditor.py:4434 msgid "" "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and " "retry." @@ -3544,7 +3549,7 @@ msgstr "" "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and " "retry." -#: flatcamEditors/FlatCAMGrbEditor.py:4320 +#: flatcamEditors/FlatCAMGrbEditor.py:4464 msgid "" "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try " "again." @@ -3552,7 +3557,7 @@ msgstr "" "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try " "again." -#: flatcamEditors/FlatCAMGrbEditor.py:4336 +#: flatcamEditors/FlatCAMGrbEditor.py:4480 msgid "[success] Done. Scale Tool completed." msgstr "[success] Done. Scale Tool completed." @@ -3712,15 +3717,10 @@ msgstr "" "are set in Preferences -> Excellon Export." #: flatcamGUI/FlatCAMGUI.py:186 -#| msgid "Export &SVG ..." msgid "Export &Gerber ..." msgstr "Export &Gerber ..." #: flatcamGUI/FlatCAMGUI.py:189 -#| msgid "" -#| "Will export an Excellon Object as Excellon file,\n" -#| "the coordinates format, the file units and zeros\n" -#| "are set in Preferences -> Excellon Export." msgid "" "Will export an Gerber Object as Gerber file,\n" "the coordinates format, the file units and zeros\n" @@ -3830,17 +3830,14 @@ msgstr "" "to a single_geometry type." #: flatcamGUI/FlatCAMGUI.py:279 -#| msgid "Convert Single to MultiGeo" msgid "Convert Any to Geo" msgstr "Convert Any to Geo" #: flatcamGUI/FlatCAMGUI.py:281 -#| msgid "Convert Single to MultiGeo" msgid "Convert Any to Gerber" msgstr "Convert Any to Gerber" #: flatcamGUI/FlatCAMGUI.py:286 -#| msgid "&Copy Object\tCTRL+C" msgid "&Copy\tCTRL+C" msgstr "&Copy\tCTRL+C" @@ -4140,11 +4137,11 @@ msgstr "Generate CNC" msgid "View Source" msgstr "View Source" -#: flatcamGUI/FlatCAMGUI.py:530 flatcamGUI/FlatCAMGUI.py:1617 +#: flatcamGUI/FlatCAMGUI.py:530 flatcamGUI/FlatCAMGUI.py:1620 msgid "Edit" msgstr "Edit" -#: flatcamGUI/FlatCAMGUI.py:536 flatcamGUI/FlatCAMGUI.py:1623 +#: flatcamGUI/FlatCAMGUI.py:536 flatcamGUI/FlatCAMGUI.py:1626 #: flatcamTools/ToolProperties.py:25 msgid "Properties" msgstr "Properties" @@ -4185,15 +4182,15 @@ msgstr "Gerber Editor Toolbar" msgid "Grid Toolbar" msgstr "Grid Toolbar" -#: flatcamGUI/FlatCAMGUI.py:616 flatcamGUI/FlatCAMGUI.py:1834 +#: flatcamGUI/FlatCAMGUI.py:616 flatcamGUI/FlatCAMGUI.py:1837 msgid "Open project" msgstr "Open project" -#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1835 +#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1838 msgid "Save project" msgstr "Save project" -#: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1838 +#: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1841 msgid "New Blank Geometry" msgstr "New Blank Geometry" @@ -4201,220 +4198,225 @@ msgstr "New Blank Geometry" msgid "New Blank Gerber" msgstr "New Blank Gerber" -#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1839 +#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1842 msgid "New Blank Excellon" msgstr "New Blank Excellon" -#: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1841 +#: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1844 msgid "Editor" msgstr "Editor" -#: flatcamGUI/FlatCAMGUI.py:626 flatcamGUI/FlatCAMGUI.py:1843 +#: flatcamGUI/FlatCAMGUI.py:626 flatcamGUI/FlatCAMGUI.py:1846 msgid "Save Object and close the Editor" msgstr "Save Object and close the Editor" -#: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1847 +#: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1850 msgid "&Delete" msgstr "&Delete" -#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1850 +#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1853 msgid "&Replot" msgstr "&Replot" -#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1851 +#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1854 msgid "&Clear plot" msgstr "&Clear plot" -#: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1852 +#: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1855 msgid "Zoom In" msgstr "Zoom In" -#: flatcamGUI/FlatCAMGUI.py:636 flatcamGUI/FlatCAMGUI.py:1853 +#: flatcamGUI/FlatCAMGUI.py:636 flatcamGUI/FlatCAMGUI.py:1856 msgid "Zoom Out" msgstr "Zoom Out" -#: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1592 -#: flatcamGUI/FlatCAMGUI.py:1854 +#: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1595 +#: flatcamGUI/FlatCAMGUI.py:1857 msgid "Zoom Fit" msgstr "Zoom Fit" -#: flatcamGUI/FlatCAMGUI.py:642 flatcamGUI/FlatCAMGUI.py:1859 +#: flatcamGUI/FlatCAMGUI.py:642 flatcamGUI/FlatCAMGUI.py:1862 msgid "&Command Line" msgstr "&Command Line" -#: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1862 +#: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1865 msgid "2Sided Tool" msgstr "2Sided Tool" -#: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1863 +#: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1866 msgid "&Cutout Tool" msgstr "&Cutout Tool" -#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1864 +#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1867 #: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:285 msgid "NCC Tool" msgstr "NCC Tool" -#: flatcamGUI/FlatCAMGUI.py:651 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:651 flatcamGUI/FlatCAMGUI.py:1871 msgid "Panel Tool" msgstr "Panel Tool" -#: flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:1872 #: flatcamTools/ToolFilm.py:204 msgid "Film Tool" msgstr "Film Tool" -#: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1871 +#: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1874 msgid "SolderPaste Tool" msgstr "SolderPaste Tool" -#: flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1875 #: flatcamTools/ToolSub.py:26 msgid "Substract Tool" msgstr "Substract Tool" -#: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1877 +#: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1880 msgid "Calculators Tool" msgstr "Calculators Tool" #: flatcamGUI/FlatCAMGUI.py:662 flatcamGUI/FlatCAMGUI.py:676 -#: flatcamGUI/FlatCAMGUI.py:709 flatcamGUI/FlatCAMGUI.py:1881 -#: flatcamGUI/FlatCAMGUI.py:1931 +#: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:1884 +#: flatcamGUI/FlatCAMGUI.py:1936 msgid "Select" msgstr "Select" -#: flatcamGUI/FlatCAMGUI.py:663 flatcamGUI/FlatCAMGUI.py:1882 +#: flatcamGUI/FlatCAMGUI.py:663 flatcamGUI/FlatCAMGUI.py:1885 msgid "Add Drill Hole" msgstr "Add Drill Hole" -#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1884 +#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1887 msgid "Add Drill Hole Array" msgstr "Add Drill Hole Array" -#: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:1885 +#: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:1888 msgid "Resize Drill" msgstr "Resize Drill" -#: flatcamGUI/FlatCAMGUI.py:669 flatcamGUI/FlatCAMGUI.py:1888 +#: flatcamGUI/FlatCAMGUI.py:669 flatcamGUI/FlatCAMGUI.py:1891 msgid "Copy Drill" msgstr "Copy Drill" -#: flatcamGUI/FlatCAMGUI.py:670 flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:670 flatcamGUI/FlatCAMGUI.py:1893 msgid "Delete Drill" msgstr "Delete Drill" -#: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1893 +#: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1896 msgid "Move Drill" msgstr "Move Drill" -#: flatcamGUI/FlatCAMGUI.py:677 flatcamGUI/FlatCAMGUI.py:1897 +#: flatcamGUI/FlatCAMGUI.py:677 flatcamGUI/FlatCAMGUI.py:1900 msgid "Add Circle" msgstr "Add Circle" -#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1898 +#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1901 msgid "Add Arc" msgstr "Add Arc" -#: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1900 +#: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1903 msgid "Add Rectangle" msgstr "Add Rectangle" -#: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1903 +#: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1906 msgid "Add Path" msgstr "Add Path" -#: flatcamGUI/FlatCAMGUI.py:684 flatcamGUI/FlatCAMGUI.py:1905 +#: flatcamGUI/FlatCAMGUI.py:684 flatcamGUI/FlatCAMGUI.py:1908 msgid "Add Polygon" msgstr "Add Polygon" -#: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:1910 msgid "Add Text" msgstr "Add Text" -#: flatcamGUI/FlatCAMGUI.py:687 flatcamGUI/FlatCAMGUI.py:1909 +#: flatcamGUI/FlatCAMGUI.py:687 flatcamGUI/FlatCAMGUI.py:1912 msgid "Add Buffer" msgstr "Add Buffer" -#: flatcamGUI/FlatCAMGUI.py:688 flatcamGUI/FlatCAMGUI.py:1910 +#: flatcamGUI/FlatCAMGUI.py:688 flatcamGUI/FlatCAMGUI.py:1913 msgid "Paint Shape" msgstr "Paint Shape" -#: flatcamGUI/FlatCAMGUI.py:691 flatcamGUI/FlatCAMGUI.py:1913 +#: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:724 +#: flatcamGUI/FlatCAMGUI.py:1914 flatcamGUI/FlatCAMGUI.py:1950 +msgid "Eraser" +msgstr "Eraser" + +#: flatcamGUI/FlatCAMGUI.py:692 flatcamGUI/FlatCAMGUI.py:1918 msgid "Polygon Union" msgstr "Polygon Union" -#: flatcamGUI/FlatCAMGUI.py:693 flatcamGUI/FlatCAMGUI.py:1915 +#: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:1920 msgid "Polygon Intersection" msgstr "Polygon Intersection" -#: flatcamGUI/FlatCAMGUI.py:695 flatcamGUI/FlatCAMGUI.py:1917 +#: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:1922 msgid "Polygon Subtraction" msgstr "Polygon Subtraction" -#: flatcamGUI/FlatCAMGUI.py:698 flatcamGUI/FlatCAMGUI.py:1920 +#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:1925 msgid "Cut Path" msgstr "Cut Path" -#: flatcamGUI/FlatCAMGUI.py:699 +#: flatcamGUI/FlatCAMGUI.py:700 msgid "Copy Shape(s)" msgstr "Copy Shape(s)" -#: flatcamGUI/FlatCAMGUI.py:702 +#: flatcamGUI/FlatCAMGUI.py:703 msgid "Delete Shape '-'" msgstr "Delete Shape '-'" -#: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:728 -#: flatcamGUI/FlatCAMGUI.py:1925 flatcamGUI/FlatCAMGUI.py:1950 +#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:731 +#: flatcamGUI/FlatCAMGUI.py:1930 flatcamGUI/FlatCAMGUI.py:1957 msgid "Transformations" msgstr "Transformations" -#: flatcamGUI/FlatCAMGUI.py:706 +#: flatcamGUI/FlatCAMGUI.py:707 msgid "Move Objects " msgstr "Move Objects " -#: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:1932 +#: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:1937 msgid "Add Pad" msgstr "Add Pad" -#: flatcamGUI/FlatCAMGUI.py:712 flatcamGUI/FlatCAMGUI.py:1934 +#: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1939 msgid "Add Track" msgstr "Add Track" -#: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1935 +#: flatcamGUI/FlatCAMGUI.py:714 flatcamGUI/FlatCAMGUI.py:1940 msgid "Add Region" msgstr "Add Region" -#: flatcamGUI/FlatCAMGUI.py:715 flatcamGUI/FlatCAMGUI.py:1937 +#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:1942 msgid "Poligonize" msgstr "Poligonize" -#: flatcamGUI/FlatCAMGUI.py:717 flatcamGUI/FlatCAMGUI.py:1939 +#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1944 msgid "SemiDisc" msgstr "SemiDisc" -#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1940 +#: flatcamGUI/FlatCAMGUI.py:719 flatcamGUI/FlatCAMGUI.py:1945 msgid "Disc" msgstr "Disc" -#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1602 -#: flatcamGUI/FlatCAMGUI.py:1622 flatcamGUI/FlatCAMGUI.py:1952 +#: flatcamGUI/FlatCAMGUI.py:733 flatcamGUI/FlatCAMGUI.py:1605 +#: flatcamGUI/FlatCAMGUI.py:1625 flatcamGUI/FlatCAMGUI.py:1959 #: flatcamTools/ToolMove.py:26 msgid "Move" msgstr "Move" -#: flatcamGUI/FlatCAMGUI.py:736 flatcamGUI/FlatCAMGUI.py:1958 +#: flatcamGUI/FlatCAMGUI.py:739 flatcamGUI/FlatCAMGUI.py:1965 msgid "Snap to grid" msgstr "Snap to grid" -#: flatcamGUI/FlatCAMGUI.py:739 flatcamGUI/FlatCAMGUI.py:1961 +#: flatcamGUI/FlatCAMGUI.py:742 flatcamGUI/FlatCAMGUI.py:1968 msgid "Grid X snapping distance" msgstr "Grid X snapping distance" -#: flatcamGUI/FlatCAMGUI.py:744 flatcamGUI/FlatCAMGUI.py:1966 +#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/FlatCAMGUI.py:1973 msgid "Grid Y snapping distance" msgstr "Grid Y snapping distance" -#: flatcamGUI/FlatCAMGUI.py:750 flatcamGUI/FlatCAMGUI.py:1972 +#: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:1979 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." @@ -4422,64 +4424,64 @@ msgstr "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." -#: flatcamGUI/FlatCAMGUI.py:756 flatcamGUI/FlatCAMGUI.py:1978 +#: flatcamGUI/FlatCAMGUI.py:759 flatcamGUI/FlatCAMGUI.py:1985 msgid "Snap to corner" msgstr "Snap to corner" -#: flatcamGUI/FlatCAMGUI.py:760 flatcamGUI/FlatCAMGUI.py:1982 -#: flatcamGUI/FlatCAMGUI.py:3339 +#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:1989 +#: flatcamGUI/FlatCAMGUI.py:3346 msgid "Max. magnet distance" msgstr "Max. magnet distance" -#: flatcamGUI/FlatCAMGUI.py:788 flatcamGUI/FlatCAMGUI.py:1586 +#: flatcamGUI/FlatCAMGUI.py:791 flatcamGUI/FlatCAMGUI.py:1589 msgid "Project" msgstr "Project" -#: flatcamGUI/FlatCAMGUI.py:798 +#: flatcamGUI/FlatCAMGUI.py:801 msgid "Selected" msgstr "Selected" -#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:825 +#: flatcamGUI/FlatCAMGUI.py:820 flatcamGUI/FlatCAMGUI.py:828 msgid "Plot Area" msgstr "Plot Area" -#: flatcamGUI/FlatCAMGUI.py:849 +#: flatcamGUI/FlatCAMGUI.py:852 msgid "General" msgstr "General" -#: flatcamGUI/FlatCAMGUI.py:858 +#: flatcamGUI/FlatCAMGUI.py:861 msgid "APP. DEFAULTS" msgstr "APP. DEFAULTS" -#: flatcamGUI/FlatCAMGUI.py:859 +#: flatcamGUI/FlatCAMGUI.py:862 msgid "PROJ. OPTIONS " msgstr "PROJ. OPTIONS " -#: flatcamGUI/FlatCAMGUI.py:870 +#: flatcamGUI/FlatCAMGUI.py:873 msgid "GERBER" msgstr "GERBER" -#: flatcamGUI/FlatCAMGUI.py:879 +#: flatcamGUI/FlatCAMGUI.py:882 msgid "EXCELLON" msgstr "EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:888 +#: flatcamGUI/FlatCAMGUI.py:891 msgid "GEOMETRY" msgstr "GEOMETRY" -#: flatcamGUI/FlatCAMGUI.py:898 +#: flatcamGUI/FlatCAMGUI.py:901 msgid "CNC-JOB" msgstr "CNC-JOB" -#: flatcamGUI/FlatCAMGUI.py:907 +#: flatcamGUI/FlatCAMGUI.py:910 msgid "TOOLS" msgstr "TOOLS" -#: flatcamGUI/FlatCAMGUI.py:924 +#: flatcamGUI/FlatCAMGUI.py:927 msgid "Import Preferences" msgstr "Import Preferences" -#: flatcamGUI/FlatCAMGUI.py:927 +#: flatcamGUI/FlatCAMGUI.py:930 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -4493,11 +4495,11 @@ msgstr "" "FlatCAM automatically save a 'factory_defaults' file\n" "on the first start. Do not delete that file." -#: flatcamGUI/FlatCAMGUI.py:934 +#: flatcamGUI/FlatCAMGUI.py:937 msgid "Export Preferences" msgstr "Export Preferences" -#: flatcamGUI/FlatCAMGUI.py:937 +#: flatcamGUI/FlatCAMGUI.py:940 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." @@ -4505,19 +4507,19 @@ msgstr "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." -#: flatcamGUI/FlatCAMGUI.py:942 +#: flatcamGUI/FlatCAMGUI.py:945 msgid "Open Pref Folder" msgstr "Open Pref Folder" -#: flatcamGUI/FlatCAMGUI.py:945 +#: flatcamGUI/FlatCAMGUI.py:948 msgid "Open the folder where FlatCAM save the preferences files." msgstr "Open the folder where FlatCAM save the preferences files." -#: flatcamGUI/FlatCAMGUI.py:953 +#: flatcamGUI/FlatCAMGUI.py:956 msgid "Save Preferences" msgstr "Save Preferences" -#: flatcamGUI/FlatCAMGUI.py:956 +#: flatcamGUI/FlatCAMGUI.py:959 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." @@ -4525,7 +4527,7 @@ msgstr "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." -#: flatcamGUI/FlatCAMGUI.py:982 +#: flatcamGUI/FlatCAMGUI.py:985 msgid "" "General Shortcut list
\n" " Editor Shortcut list
\n" "
\n" @@ -5717,99 +5719,99 @@ msgstr "" "
\n" " " -#: flatcamGUI/FlatCAMGUI.py:1579 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Disable" msgstr "Disable" -#: flatcamGUI/FlatCAMGUI.py:1581 +#: flatcamGUI/FlatCAMGUI.py:1584 msgid "New" msgstr "New" -#: flatcamGUI/FlatCAMGUI.py:1582 +#: flatcamGUI/FlatCAMGUI.py:1585 msgid "Geometry" msgstr "Geometry" -#: flatcamGUI/FlatCAMGUI.py:1584 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Excellon" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1589 +#: flatcamGUI/FlatCAMGUI.py:1592 msgid "Grids" msgstr "Grids" -#: flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "View" msgstr "View" -#: flatcamGUI/FlatCAMGUI.py:1593 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Clear Plot" msgstr "Clear Plot" -#: flatcamGUI/FlatCAMGUI.py:1594 +#: flatcamGUI/FlatCAMGUI.py:1597 msgid "Replot" msgstr "Replot" -#: flatcamGUI/FlatCAMGUI.py:1597 +#: flatcamGUI/FlatCAMGUI.py:1600 msgid "Geo Editor" msgstr "Geo Editor" -#: flatcamGUI/FlatCAMGUI.py:1598 +#: flatcamGUI/FlatCAMGUI.py:1601 msgid "Line" msgstr "Line" -#: flatcamGUI/FlatCAMGUI.py:1599 +#: flatcamGUI/FlatCAMGUI.py:1602 msgid "Rectangle" msgstr "Rectangle" -#: flatcamGUI/FlatCAMGUI.py:1600 +#: flatcamGUI/FlatCAMGUI.py:1603 msgid "Cut" msgstr "Cut" -#: flatcamGUI/FlatCAMGUI.py:1605 +#: flatcamGUI/FlatCAMGUI.py:1608 msgid "Pad" msgstr "Pad" -#: flatcamGUI/FlatCAMGUI.py:1606 +#: flatcamGUI/FlatCAMGUI.py:1609 msgid "Pad Array" msgstr "Pad Array" -#: flatcamGUI/FlatCAMGUI.py:1607 +#: flatcamGUI/FlatCAMGUI.py:1610 msgid "Track" msgstr "Track" -#: flatcamGUI/FlatCAMGUI.py:1608 +#: flatcamGUI/FlatCAMGUI.py:1611 msgid "Region" msgstr "Region" -#: flatcamGUI/FlatCAMGUI.py:1610 +#: flatcamGUI/FlatCAMGUI.py:1613 msgid "Exc Editor" msgstr "Exc Editor" -#: flatcamGUI/FlatCAMGUI.py:1611 +#: flatcamGUI/FlatCAMGUI.py:1614 msgid "Add Drill" msgstr "Add Drill" -#: flatcamGUI/FlatCAMGUI.py:1643 +#: flatcamGUI/FlatCAMGUI.py:1646 msgid "Print Preview" msgstr "Print Preview" -#: flatcamGUI/FlatCAMGUI.py:1644 +#: flatcamGUI/FlatCAMGUI.py:1647 msgid "Print Code" msgstr "Print Code" -#: flatcamGUI/FlatCAMGUI.py:1645 +#: flatcamGUI/FlatCAMGUI.py:1648 msgid "Find in Code" msgstr "Find in Code" -#: flatcamGUI/FlatCAMGUI.py:1650 +#: flatcamGUI/FlatCAMGUI.py:1653 msgid "Replace With" msgstr "Replace With" -#: flatcamGUI/FlatCAMGUI.py:1654 +#: flatcamGUI/FlatCAMGUI.py:1657 msgid "All" msgstr "All" -#: flatcamGUI/FlatCAMGUI.py:1656 +#: flatcamGUI/FlatCAMGUI.py:1659 msgid "" "When checked it will replace all instances in the 'Find' box\n" "with the text in the 'Replace' box.." @@ -5817,15 +5819,15 @@ msgstr "" "When checked it will replace all instances in the 'Find' box\n" "with the text in the 'Replace' box.." -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1662 msgid "Open Code" msgstr "Open Code" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1663 msgid "Save Code" msgstr "Save Code" -#: flatcamGUI/FlatCAMGUI.py:1695 +#: flatcamGUI/FlatCAMGUI.py:1698 msgid "" "Relative neasurement.\n" "Reference is last click position" @@ -5833,7 +5835,7 @@ msgstr "" "Relative neasurement.\n" "Reference is last click position" -#: flatcamGUI/FlatCAMGUI.py:1701 +#: flatcamGUI/FlatCAMGUI.py:1704 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" @@ -5841,23 +5843,23 @@ msgstr "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" -#: flatcamGUI/FlatCAMGUI.py:1896 +#: flatcamGUI/FlatCAMGUI.py:1899 msgid "Select 'Esc'" msgstr "Select 'Esc'" -#: flatcamGUI/FlatCAMGUI.py:1921 +#: flatcamGUI/FlatCAMGUI.py:1926 msgid "Copy Objects" msgstr "Copy Objects" -#: flatcamGUI/FlatCAMGUI.py:1923 +#: flatcamGUI/FlatCAMGUI.py:1928 msgid "Delete Shape" msgstr "Delete Shape" -#: flatcamGUI/FlatCAMGUI.py:1928 +#: flatcamGUI/FlatCAMGUI.py:1933 msgid "Move Objects" msgstr "Move Objects" -#: flatcamGUI/FlatCAMGUI.py:2358 +#: flatcamGUI/FlatCAMGUI.py:2365 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -5869,17 +5871,17 @@ msgstr "" "out of the first item. In the end press ~X~ key or\n" "the toolbar button." -#: flatcamGUI/FlatCAMGUI.py:2365 flatcamGUI/FlatCAMGUI.py:2502 -#: flatcamGUI/FlatCAMGUI.py:2561 flatcamGUI/FlatCAMGUI.py:2581 +#: flatcamGUI/FlatCAMGUI.py:2372 flatcamGUI/FlatCAMGUI.py:2509 +#: flatcamGUI/FlatCAMGUI.py:2568 flatcamGUI/FlatCAMGUI.py:2588 msgid "Warning" msgstr "Warning" -#: flatcamGUI/FlatCAMGUI.py:2432 flatcamGUI/FlatCAMGUI.py:2631 -#: flatcamGUI/FlatCAMGUI.py:2842 +#: flatcamGUI/FlatCAMGUI.py:2439 flatcamGUI/FlatCAMGUI.py:2638 +#: flatcamGUI/FlatCAMGUI.py:2849 msgid "[WARNING_NOTCL] Cancelled." msgstr "[WARNING_NOTCL] Cancelled." -#: flatcamGUI/FlatCAMGUI.py:2497 +#: flatcamGUI/FlatCAMGUI.py:2504 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." @@ -5887,7 +5889,7 @@ msgstr "" "Please select geometry items \n" "on which to perform Intersection Tool." -#: flatcamGUI/FlatCAMGUI.py:2556 +#: flatcamGUI/FlatCAMGUI.py:2563 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." @@ -5895,7 +5897,7 @@ msgstr "" "Please select geometry items \n" "on which to perform Substraction Tool." -#: flatcamGUI/FlatCAMGUI.py:2576 +#: flatcamGUI/FlatCAMGUI.py:2583 msgid "" "Please select geometry items \n" "on which to perform union." @@ -5903,55 +5905,55 @@ msgstr "" "Please select geometry items \n" "on which to perform union." -#: flatcamGUI/FlatCAMGUI.py:2647 flatcamGUI/FlatCAMGUI.py:2859 +#: flatcamGUI/FlatCAMGUI.py:2654 flatcamGUI/FlatCAMGUI.py:2866 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete." msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to delete." -#: flatcamGUI/FlatCAMGUI.py:2731 flatcamGUI/FlatCAMGUI.py:2926 +#: flatcamGUI/FlatCAMGUI.py:2738 flatcamGUI/FlatCAMGUI.py:2933 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy." msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to copy." -#: flatcamGUI/FlatCAMGUI.py:2777 flatcamGUI/FlatCAMGUI.py:2972 +#: flatcamGUI/FlatCAMGUI.py:2784 flatcamGUI/FlatCAMGUI.py:2979 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move." msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to move." -#: flatcamGUI/FlatCAMGUI.py:2986 +#: flatcamGUI/FlatCAMGUI.py:2993 msgid "New Tool ..." msgstr "New Tool ..." -#: flatcamGUI/FlatCAMGUI.py:2987 +#: flatcamGUI/FlatCAMGUI.py:2994 msgid "Enter a Tool Diameter:" msgstr "Enter a Tool Diameter:" -#: flatcamGUI/FlatCAMGUI.py:3029 +#: flatcamGUI/FlatCAMGUI.py:3036 msgid "Measurement Tool exit..." msgstr "Measurement Tool exit..." -#: flatcamGUI/FlatCAMGUI.py:3324 +#: flatcamGUI/FlatCAMGUI.py:3331 msgid "Grid X value:" msgstr "Grid X value:" -#: flatcamGUI/FlatCAMGUI.py:3326 +#: flatcamGUI/FlatCAMGUI.py:3333 msgid "This is the Grid snap value on X axis." msgstr "This is the Grid snap value on X axis." -#: flatcamGUI/FlatCAMGUI.py:3331 +#: flatcamGUI/FlatCAMGUI.py:3338 msgid "Grid Y value:" msgstr "Grid Y value:" -#: flatcamGUI/FlatCAMGUI.py:3333 +#: flatcamGUI/FlatCAMGUI.py:3340 msgid "This is the Grid snap value on Y axis." msgstr "This is the Grid snap value on Y axis." -#: flatcamGUI/FlatCAMGUI.py:3338 +#: flatcamGUI/FlatCAMGUI.py:3345 msgid "Snap Max:" msgstr "Snap Max:" -#: flatcamGUI/FlatCAMGUI.py:3343 +#: flatcamGUI/FlatCAMGUI.py:3350 msgid "Workspace:" msgstr "Workspace:" -#: flatcamGUI/FlatCAMGUI.py:3345 +#: flatcamGUI/FlatCAMGUI.py:3352 msgid "" "Draw a delimiting rectangle on canvas.\n" "The purpose is to illustrate the limits for our work." @@ -5959,11 +5961,11 @@ msgstr "" "Draw a delimiting rectangle on canvas.\n" "The purpose is to illustrate the limits for our work." -#: flatcamGUI/FlatCAMGUI.py:3348 +#: flatcamGUI/FlatCAMGUI.py:3355 msgid "Wk. format:" msgstr "Wk. format:" -#: flatcamGUI/FlatCAMGUI.py:3350 +#: flatcamGUI/FlatCAMGUI.py:3357 msgid "" "Select the type of rectangle to be used on canvas,\n" "as valid workspace." @@ -5971,11 +5973,11 @@ msgstr "" "Select the type of rectangle to be used on canvas,\n" "as valid workspace." -#: flatcamGUI/FlatCAMGUI.py:3363 +#: flatcamGUI/FlatCAMGUI.py:3370 msgid "Plot Fill:" msgstr "Plot Fill:" -#: flatcamGUI/FlatCAMGUI.py:3365 +#: flatcamGUI/FlatCAMGUI.py:3372 msgid "" "Set the fill color for plotted objects.\n" "First 6 digits are the color and the last 2\n" @@ -5985,28 +5987,28 @@ msgstr "" "First 6 digits are the color and the last 2\n" "digits are for alpha (transparency) level." -#: flatcamGUI/FlatCAMGUI.py:3379 flatcamGUI/FlatCAMGUI.py:3429 -#: flatcamGUI/FlatCAMGUI.py:3479 +#: flatcamGUI/FlatCAMGUI.py:3386 flatcamGUI/FlatCAMGUI.py:3436 +#: flatcamGUI/FlatCAMGUI.py:3486 msgid "Alpha Level:" msgstr "Alpha Level:" -#: flatcamGUI/FlatCAMGUI.py:3381 +#: flatcamGUI/FlatCAMGUI.py:3388 msgid "Set the fill transparency for plotted objects." msgstr "Set the fill transparency for plotted objects." -#: flatcamGUI/FlatCAMGUI.py:3398 +#: flatcamGUI/FlatCAMGUI.py:3405 msgid "Plot Line:" msgstr "Plot Line:" -#: flatcamGUI/FlatCAMGUI.py:3400 +#: flatcamGUI/FlatCAMGUI.py:3407 msgid "Set the line color for plotted objects." msgstr "Set the line color for plotted objects." -#: flatcamGUI/FlatCAMGUI.py:3412 +#: flatcamGUI/FlatCAMGUI.py:3419 msgid "Sel. Fill:" msgstr "Sel. Fill:" -#: flatcamGUI/FlatCAMGUI.py:3414 +#: flatcamGUI/FlatCAMGUI.py:3421 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from left to right.\n" @@ -6018,23 +6020,23 @@ msgstr "" "First 6 digits are the color and the last 2\n" "digits are for alpha (transparency) level." -#: flatcamGUI/FlatCAMGUI.py:3431 +#: flatcamGUI/FlatCAMGUI.py:3438 msgid "Set the fill transparency for the 'left to right' selection box." msgstr "Set the fill transparency for the 'left to right' selection box." -#: flatcamGUI/FlatCAMGUI.py:3448 +#: flatcamGUI/FlatCAMGUI.py:3455 msgid "Sel. Line:" msgstr "Sel. Line:" -#: flatcamGUI/FlatCAMGUI.py:3450 +#: flatcamGUI/FlatCAMGUI.py:3457 msgid "Set the line color for the 'left to right' selection box." msgstr "Set the line color for the 'left to right' selection box." -#: flatcamGUI/FlatCAMGUI.py:3462 +#: flatcamGUI/FlatCAMGUI.py:3469 msgid "Sel2. Fill:" msgstr "Sel2. Fill:" -#: flatcamGUI/FlatCAMGUI.py:3464 +#: flatcamGUI/FlatCAMGUI.py:3471 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from right to left.\n" @@ -6046,47 +6048,47 @@ msgstr "" "First 6 digits are the color and the last 2\n" "digits are for alpha (transparency) level." -#: flatcamGUI/FlatCAMGUI.py:3481 +#: flatcamGUI/FlatCAMGUI.py:3488 msgid "Set the fill transparency for selection 'right to left' box." msgstr "Set the fill transparency for selection 'right to left' box." -#: flatcamGUI/FlatCAMGUI.py:3498 +#: flatcamGUI/FlatCAMGUI.py:3505 msgid "Sel2. Line:" msgstr "Sel2. Line:" -#: flatcamGUI/FlatCAMGUI.py:3500 +#: flatcamGUI/FlatCAMGUI.py:3507 msgid "Set the line color for the 'right to left' selection box." msgstr "Set the line color for the 'right to left' selection box." -#: flatcamGUI/FlatCAMGUI.py:3512 +#: flatcamGUI/FlatCAMGUI.py:3519 msgid "Editor Draw:" msgstr "Editor Draw:" -#: flatcamGUI/FlatCAMGUI.py:3514 +#: flatcamGUI/FlatCAMGUI.py:3521 msgid "Set the color for the shape." msgstr "Set the color for the shape." -#: flatcamGUI/FlatCAMGUI.py:3526 +#: flatcamGUI/FlatCAMGUI.py:3533 msgid "Editor Draw Sel.:" msgstr "Editor Draw Sel.:" -#: flatcamGUI/FlatCAMGUI.py:3528 +#: flatcamGUI/FlatCAMGUI.py:3535 msgid "Set the color of the shape when selected." msgstr "Set the color of the shape when selected." -#: flatcamGUI/FlatCAMGUI.py:3540 +#: flatcamGUI/FlatCAMGUI.py:3547 msgid "Project Items:" msgstr "Project Items:" -#: flatcamGUI/FlatCAMGUI.py:3542 +#: flatcamGUI/FlatCAMGUI.py:3549 msgid "Set the color of the items in Project Tab Tree." msgstr "Set the color of the items in Project Tab Tree." -#: flatcamGUI/FlatCAMGUI.py:3553 +#: flatcamGUI/FlatCAMGUI.py:3560 msgid "Proj. Dis. Items:" msgstr "Proj. Dis. Items:" -#: flatcamGUI/FlatCAMGUI.py:3555 +#: flatcamGUI/FlatCAMGUI.py:3562 msgid "" "Set the color of the items in Project Tab Tree,\n" "for the case when the items are disabled." @@ -6094,15 +6096,15 @@ msgstr "" "Set the color of the items in Project Tab Tree,\n" "for the case when the items are disabled." -#: flatcamGUI/FlatCAMGUI.py:3606 +#: flatcamGUI/FlatCAMGUI.py:3613 msgid "GUI Settings" msgstr "GUI Settings" -#: flatcamGUI/FlatCAMGUI.py:3613 +#: flatcamGUI/FlatCAMGUI.py:3620 msgid "Layout:" msgstr "Layout:" -#: flatcamGUI/FlatCAMGUI.py:3615 +#: flatcamGUI/FlatCAMGUI.py:3622 msgid "" "Select an layout for FlatCAM.\n" "It is applied immediately." @@ -6110,11 +6112,11 @@ msgstr "" "Select an layout for FlatCAM.\n" "It is applied immediately." -#: flatcamGUI/FlatCAMGUI.py:3631 +#: flatcamGUI/FlatCAMGUI.py:3638 msgid "Style:" msgstr "Style:" -#: flatcamGUI/FlatCAMGUI.py:3633 +#: flatcamGUI/FlatCAMGUI.py:3640 msgid "" "Select an style for FlatCAM.\n" "It will be applied at the next app start." @@ -6122,11 +6124,11 @@ msgstr "" "Select an style for FlatCAM.\n" "It will be applied at the next app start." -#: flatcamGUI/FlatCAMGUI.py:3644 +#: flatcamGUI/FlatCAMGUI.py:3651 msgid "HDPI Support:" msgstr "HDPI Support:" -#: flatcamGUI/FlatCAMGUI.py:3646 +#: flatcamGUI/FlatCAMGUI.py:3653 msgid "" "Enable High DPI support for FlatCAM.\n" "It will be applied at the next app start." @@ -6134,11 +6136,11 @@ msgstr "" "Enable High DPI support for FlatCAM.\n" "It will be applied at the next app start." -#: flatcamGUI/FlatCAMGUI.py:3659 +#: flatcamGUI/FlatCAMGUI.py:3666 msgid "Clear GUI Settings:" msgstr "Clear GUI Settings:" -#: flatcamGUI/FlatCAMGUI.py:3661 +#: flatcamGUI/FlatCAMGUI.py:3668 msgid "" "Clear the GUI settings for FlatCAM,\n" "such as: layout, gui state, style, hdpi support etc." @@ -6146,15 +6148,15 @@ msgstr "" "Clear the GUI settings for FlatCAM,\n" "such as: layout, gui state, style, hdpi support etc." -#: flatcamGUI/FlatCAMGUI.py:3664 +#: flatcamGUI/FlatCAMGUI.py:3671 msgid "Clear" msgstr "Clear" -#: flatcamGUI/FlatCAMGUI.py:3668 +#: flatcamGUI/FlatCAMGUI.py:3675 msgid "Hover Shape:" msgstr "Hover Shape:" -#: flatcamGUI/FlatCAMGUI.py:3670 +#: flatcamGUI/FlatCAMGUI.py:3677 msgid "" "Enable display of a hover shape for FlatCAM objects.\n" "It is displayed whenever the mouse cursor is hovering\n" @@ -6164,11 +6166,11 @@ msgstr "" "It is displayed whenever the mouse cursor is hovering\n" "over any kind of not-selected object." -#: flatcamGUI/FlatCAMGUI.py:3677 +#: flatcamGUI/FlatCAMGUI.py:3684 msgid "Sel. Shape:" msgstr "Sel. Shape:" -#: flatcamGUI/FlatCAMGUI.py:3679 +#: flatcamGUI/FlatCAMGUI.py:3686 msgid "" "Enable the display of a selection shape for FlatCAM objects.\n" "It is displayed whenever the mouse selects an object\n" @@ -6180,23 +6182,23 @@ msgstr "" "either by clicking or dragging mouse from left to right or\n" "right to left." -#: flatcamGUI/FlatCAMGUI.py:3721 +#: flatcamGUI/FlatCAMGUI.py:3728 msgid "Are you sure you want to delete the GUI Settings? \n" msgstr "Are you sure you want to delete the GUI Settings? \n" -#: flatcamGUI/FlatCAMGUI.py:3724 +#: flatcamGUI/FlatCAMGUI.py:3731 msgid "Clear GUI Settings" msgstr "Clear GUI Settings" -#: flatcamGUI/FlatCAMGUI.py:3745 +#: flatcamGUI/FlatCAMGUI.py:3752 msgid "App Preferences" msgstr "App Preferences" -#: flatcamGUI/FlatCAMGUI.py:3751 +#: flatcamGUI/FlatCAMGUI.py:3758 msgid "Units:" msgstr "Units:" -#: flatcamGUI/FlatCAMGUI.py:3752 +#: flatcamGUI/FlatCAMGUI.py:3759 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" @@ -6206,11 +6208,11 @@ msgstr "" "Whatever is selected here is set every time\n" "FLatCAM is started." -#: flatcamGUI/FlatCAMGUI.py:3759 +#: flatcamGUI/FlatCAMGUI.py:3766 msgid "APP. LEVEL:" msgstr "APP. LEVEL:" -#: flatcamGUI/FlatCAMGUI.py:3760 +#: flatcamGUI/FlatCAMGUI.py:3767 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -6226,19 +6228,19 @@ msgstr "" "The choice here will influence the parameters in\n" "the Selected Tab for all kinds of FlatCAM objects." -#: flatcamGUI/FlatCAMGUI.py:3769 +#: flatcamGUI/FlatCAMGUI.py:3776 msgid "Languages:" msgstr "Languages:" -#: flatcamGUI/FlatCAMGUI.py:3770 +#: flatcamGUI/FlatCAMGUI.py:3777 msgid "Set the language used throughout FlatCAM." msgstr "Set the language used throughout FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:3773 +#: flatcamGUI/FlatCAMGUI.py:3780 msgid "Apply Language" msgstr "Apply Language" -#: flatcamGUI/FlatCAMGUI.py:3774 +#: flatcamGUI/FlatCAMGUI.py:3781 msgid "" "Set the language used throughout FlatCAM.\n" "The app will restart after click.Windows: When FlatCAM is installed in " @@ -6256,11 +6258,11 @@ msgstr "" "security features. In this case the language will be\n" "applied at the next app start." -#: flatcamGUI/FlatCAMGUI.py:3783 +#: flatcamGUI/FlatCAMGUI.py:3790 msgid "Shell at StartUp:" msgstr "Shell at StartUp:" -#: flatcamGUI/FlatCAMGUI.py:3785 flatcamGUI/FlatCAMGUI.py:3790 +#: flatcamGUI/FlatCAMGUI.py:3792 flatcamGUI/FlatCAMGUI.py:3797 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." @@ -6268,11 +6270,11 @@ msgstr "" "Check this box if you want the shell to\n" "start automatically at startup." -#: flatcamGUI/FlatCAMGUI.py:3795 +#: flatcamGUI/FlatCAMGUI.py:3802 msgid "Version Check:" msgstr "Version Check:" -#: flatcamGUI/FlatCAMGUI.py:3797 flatcamGUI/FlatCAMGUI.py:3802 +#: flatcamGUI/FlatCAMGUI.py:3804 flatcamGUI/FlatCAMGUI.py:3809 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." @@ -6280,11 +6282,11 @@ msgstr "" "Check this box if you want to check\n" "for a new version automatically at startup." -#: flatcamGUI/FlatCAMGUI.py:3807 +#: flatcamGUI/FlatCAMGUI.py:3814 msgid "Send Stats:" msgstr "Send Stats:" -#: flatcamGUI/FlatCAMGUI.py:3809 flatcamGUI/FlatCAMGUI.py:3814 +#: flatcamGUI/FlatCAMGUI.py:3816 flatcamGUI/FlatCAMGUI.py:3821 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." @@ -6292,11 +6294,11 @@ msgstr "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:3821 +#: flatcamGUI/FlatCAMGUI.py:3828 msgid "Pan Button:" msgstr "Pan Button:" -#: flatcamGUI/FlatCAMGUI.py:3822 +#: flatcamGUI/FlatCAMGUI.py:3829 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" @@ -6306,19 +6308,19 @@ msgstr "" "- MMB --> Middle Mouse Button\n" "- RMB --> Right Mouse Button" -#: flatcamGUI/FlatCAMGUI.py:3829 +#: flatcamGUI/FlatCAMGUI.py:3836 msgid "Multiple Sel:" msgstr "Multiple Sel:" -#: flatcamGUI/FlatCAMGUI.py:3830 +#: flatcamGUI/FlatCAMGUI.py:3837 msgid "Select the key used for multiple selection." msgstr "Select the key used for multiple selection." -#: flatcamGUI/FlatCAMGUI.py:3835 +#: flatcamGUI/FlatCAMGUI.py:3842 msgid "Project at StartUp:" msgstr "Project at StartUp:" -#: flatcamGUI/FlatCAMGUI.py:3837 flatcamGUI/FlatCAMGUI.py:3842 +#: flatcamGUI/FlatCAMGUI.py:3844 flatcamGUI/FlatCAMGUI.py:3849 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." @@ -6326,11 +6328,11 @@ msgstr "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." -#: flatcamGUI/FlatCAMGUI.py:3847 +#: flatcamGUI/FlatCAMGUI.py:3854 msgid "Project AutoHide:" msgstr "Project AutoHide:" -#: flatcamGUI/FlatCAMGUI.py:3849 flatcamGUI/FlatCAMGUI.py:3855 +#: flatcamGUI/FlatCAMGUI.py:3856 flatcamGUI/FlatCAMGUI.py:3862 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "hide automatically when there are no objects loaded and\n" @@ -6340,11 +6342,11 @@ msgstr "" "hide automatically when there are no objects loaded and\n" "to show whenever a new object is created." -#: flatcamGUI/FlatCAMGUI.py:3861 +#: flatcamGUI/FlatCAMGUI.py:3868 msgid "Enable ToolTips:" msgstr "Enable ToolTips:" -#: flatcamGUI/FlatCAMGUI.py:3863 flatcamGUI/FlatCAMGUI.py:3868 +#: flatcamGUI/FlatCAMGUI.py:3870 flatcamGUI/FlatCAMGUI.py:3875 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." @@ -6352,11 +6354,11 @@ msgstr "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." -#: flatcamGUI/FlatCAMGUI.py:3871 +#: flatcamGUI/FlatCAMGUI.py:3878 msgid "Workers number:" msgstr "Workers number:" -#: flatcamGUI/FlatCAMGUI.py:3873 flatcamGUI/FlatCAMGUI.py:3882 +#: flatcamGUI/FlatCAMGUI.py:3880 flatcamGUI/FlatCAMGUI.py:3889 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -6372,7 +6374,7 @@ msgstr "" "Default value is 2.\n" "After change, it will be applied at next App start." -#: flatcamGUI/FlatCAMGUI.py:3894 flatcamGUI/FlatCAMGUI.py:3903 +#: flatcamGUI/FlatCAMGUI.py:3901 flatcamGUI/FlatCAMGUI.py:3910 msgid "" "This value can counter the effect of the Circle Steps\n" "parameter. Default value is 0.01.\n" @@ -6388,12 +6390,11 @@ msgstr "" "performance. Higher value will provide more\n" "performance at the expense of level of detail." -#: flatcamGUI/FlatCAMGUI.py:3939 -#| msgid "Open Gerber" +#: flatcamGUI/FlatCAMGUI.py:3946 msgid "\"Open\" behavior" msgstr "\"Open\" behavior" -#: flatcamGUI/FlatCAMGUI.py:3941 +#: flatcamGUI/FlatCAMGUI.py:3948 msgid "" "When checked the path for the last saved file is used when saving files,\n" "and the path for the last opened file is used when opening files.\n" @@ -6407,11 +6408,11 @@ msgstr "" "When unchecked the path for opening files is the one used last: either the\n" "path for saving files or the path for opening files." -#: flatcamGUI/FlatCAMGUI.py:3950 +#: flatcamGUI/FlatCAMGUI.py:3957 msgid "Save Compressed Project" msgstr "Save Compressed Project" -#: flatcamGUI/FlatCAMGUI.py:3952 +#: flatcamGUI/FlatCAMGUI.py:3959 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." @@ -6419,11 +6420,11 @@ msgstr "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." -#: flatcamGUI/FlatCAMGUI.py:3963 +#: flatcamGUI/FlatCAMGUI.py:3970 msgid "Compression Level:" msgstr "Compression Level:" -#: flatcamGUI/FlatCAMGUI.py:3965 +#: flatcamGUI/FlatCAMGUI.py:3972 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" @@ -6433,47 +6434,47 @@ msgstr "" "a FlatCAM project. Higher value means better compression\n" "but require more RAM usage and more processing time." -#: flatcamGUI/FlatCAMGUI.py:3991 flatcamGUI/FlatCAMGUI.py:4360 -#: flatcamGUI/FlatCAMGUI.py:5030 flatcamGUI/FlatCAMGUI.py:5402 +#: flatcamGUI/FlatCAMGUI.py:3998 flatcamGUI/FlatCAMGUI.py:4367 +#: flatcamGUI/FlatCAMGUI.py:5037 flatcamGUI/FlatCAMGUI.py:5409 #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:505 #: flatcamGUI/ObjectUI.py:833 flatcamGUI/ObjectUI.py:1350 msgid "Plot Options:" msgstr "Plot Options:" -#: flatcamGUI/FlatCAMGUI.py:3998 flatcamGUI/FlatCAMGUI.py:4372 +#: flatcamGUI/FlatCAMGUI.py:4005 flatcamGUI/FlatCAMGUI.py:4379 #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:506 msgid "Solid" msgstr "Solid" -#: flatcamGUI/FlatCAMGUI.py:4000 flatcamGUI/ObjectUI.py:158 +#: flatcamGUI/FlatCAMGUI.py:4007 flatcamGUI/ObjectUI.py:158 msgid "Solid color polygons." msgstr "Solid color polygons." -#: flatcamGUI/FlatCAMGUI.py:4005 flatcamGUI/ObjectUI.py:164 +#: flatcamGUI/FlatCAMGUI.py:4012 flatcamGUI/ObjectUI.py:164 msgid "M-Color" msgstr "M-Color" -#: flatcamGUI/FlatCAMGUI.py:4007 flatcamGUI/ObjectUI.py:166 +#: flatcamGUI/FlatCAMGUI.py:4014 flatcamGUI/ObjectUI.py:166 msgid "Draw polygons in different colors." msgstr "Draw polygons in different colors." -#: flatcamGUI/FlatCAMGUI.py:4012 flatcamGUI/FlatCAMGUI.py:4366 -#: flatcamGUI/FlatCAMGUI.py:5034 flatcamGUI/ObjectUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:4019 flatcamGUI/FlatCAMGUI.py:4373 +#: flatcamGUI/FlatCAMGUI.py:5041 flatcamGUI/ObjectUI.py:172 msgid "Plot" msgstr "Plot" -#: flatcamGUI/FlatCAMGUI.py:4014 flatcamGUI/FlatCAMGUI.py:5036 +#: flatcamGUI/FlatCAMGUI.py:4021 flatcamGUI/FlatCAMGUI.py:5043 #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:546 #: flatcamGUI/ObjectUI.py:879 flatcamGUI/ObjectUI.py:1437 msgid "Plot (show) this object." msgstr "Plot (show) this object." -#: flatcamGUI/FlatCAMGUI.py:4019 flatcamGUI/FlatCAMGUI.py:5043 -#: flatcamGUI/FlatCAMGUI.py:5438 +#: flatcamGUI/FlatCAMGUI.py:4026 flatcamGUI/FlatCAMGUI.py:5050 +#: flatcamGUI/FlatCAMGUI.py:5445 msgid "Circle Steps:" msgstr "Circle Steps:" -#: flatcamGUI/FlatCAMGUI.py:4021 +#: flatcamGUI/FlatCAMGUI.py:4028 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." @@ -6481,15 +6482,15 @@ msgstr "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." -#: flatcamGUI/FlatCAMGUI.py:4036 +#: flatcamGUI/FlatCAMGUI.py:4043 msgid "Gerber Options" msgstr "Gerber Options" -#: flatcamGUI/FlatCAMGUI.py:4040 flatcamGUI/ObjectUI.py:251 +#: flatcamGUI/FlatCAMGUI.py:4047 flatcamGUI/ObjectUI.py:251 msgid "Isolation Routing:" msgstr "Isolation Routing:" -#: flatcamGUI/FlatCAMGUI.py:4042 flatcamGUI/ObjectUI.py:253 +#: flatcamGUI/FlatCAMGUI.py:4049 flatcamGUI/ObjectUI.py:253 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -6497,17 +6498,17 @@ msgstr "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." -#: flatcamGUI/FlatCAMGUI.py:4053 flatcamGUI/FlatCAMGUI.py:4753 -#: flatcamGUI/FlatCAMGUI.py:5726 flatcamGUI/ObjectUI.py:788 +#: flatcamGUI/FlatCAMGUI.py:4060 flatcamGUI/FlatCAMGUI.py:4760 +#: flatcamGUI/FlatCAMGUI.py:5733 flatcamGUI/ObjectUI.py:788 #: flatcamGUI/ObjectUI.py:804 msgid "Diameter of the cutting tool." msgstr "Diameter of the cutting tool." -#: flatcamGUI/FlatCAMGUI.py:4060 +#: flatcamGUI/FlatCAMGUI.py:4067 msgid "Width (# passes):" msgstr "Width (# passes):" -#: flatcamGUI/FlatCAMGUI.py:4062 flatcamGUI/ObjectUI.py:275 +#: flatcamGUI/FlatCAMGUI.py:4069 flatcamGUI/ObjectUI.py:275 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -6515,11 +6516,11 @@ msgstr "" "Width of the isolation gap in\n" "number (integer) of tool widths." -#: flatcamGUI/FlatCAMGUI.py:4070 flatcamGUI/ObjectUI.py:283 +#: flatcamGUI/FlatCAMGUI.py:4077 flatcamGUI/ObjectUI.py:283 msgid "Pass overlap:" msgstr "Pass overlap:" -#: flatcamGUI/FlatCAMGUI.py:4072 flatcamGUI/ObjectUI.py:285 +#: flatcamGUI/FlatCAMGUI.py:4079 flatcamGUI/ObjectUI.py:285 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -6532,11 +6533,11 @@ msgstr "" "A value here of 0.25 means an overlap of 25%% from the tool diameter found " "above." -#: flatcamGUI/FlatCAMGUI.py:4080 flatcamGUI/ObjectUI.py:295 +#: flatcamGUI/FlatCAMGUI.py:4087 flatcamGUI/ObjectUI.py:295 msgid "Milling Type:" msgstr "Milling Type:" -#: flatcamGUI/FlatCAMGUI.py:4082 flatcamGUI/ObjectUI.py:297 +#: flatcamGUI/FlatCAMGUI.py:4089 flatcamGUI/ObjectUI.py:297 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -6546,19 +6547,19 @@ msgstr "" "- climb / best for precision milling and to reduce tool usage\n" "- conventional / useful when there is no backlash compensation" -#: flatcamGUI/FlatCAMGUI.py:4092 +#: flatcamGUI/FlatCAMGUI.py:4099 msgid "Combine Passes" msgstr "Combine Passes" -#: flatcamGUI/FlatCAMGUI.py:4094 flatcamGUI/ObjectUI.py:309 +#: flatcamGUI/FlatCAMGUI.py:4101 flatcamGUI/ObjectUI.py:309 msgid "Combine all passes into one object" msgstr "Combine all passes into one object" -#: flatcamGUI/FlatCAMGUI.py:4099 +#: flatcamGUI/FlatCAMGUI.py:4106 msgid "Clear non-copper:" msgstr "Clear non-copper:" -#: flatcamGUI/FlatCAMGUI.py:4101 flatcamGUI/FlatCAMGUI.py:5614 +#: flatcamGUI/FlatCAMGUI.py:4108 flatcamGUI/FlatCAMGUI.py:5621 #: flatcamGUI/ObjectUI.py:386 msgid "" "Create a Geometry object with\n" @@ -6567,12 +6568,12 @@ msgstr "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." -#: flatcamGUI/FlatCAMGUI.py:4110 flatcamGUI/FlatCAMGUI.py:4136 +#: flatcamGUI/FlatCAMGUI.py:4117 flatcamGUI/FlatCAMGUI.py:4143 #: flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464 msgid "Boundary Margin:" msgstr "Boundary Margin:" -#: flatcamGUI/FlatCAMGUI.py:4112 flatcamGUI/ObjectUI.py:432 +#: flatcamGUI/FlatCAMGUI.py:4119 flatcamGUI/ObjectUI.py:432 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -6584,11 +6585,11 @@ msgstr "" "objects with this minimum\n" "distance." -#: flatcamGUI/FlatCAMGUI.py:4122 flatcamGUI/FlatCAMGUI.py:4145 +#: flatcamGUI/FlatCAMGUI.py:4129 flatcamGUI/FlatCAMGUI.py:4152 msgid "Rounded corners" msgstr "Rounded corners" -#: flatcamGUI/FlatCAMGUI.py:4124 +#: flatcamGUI/FlatCAMGUI.py:4131 msgid "" "Creates a Geometry objects with polygons\n" "covering the copper-free areas of the PCB." @@ -6596,11 +6597,11 @@ msgstr "" "Creates a Geometry objects with polygons\n" "covering the copper-free areas of the PCB." -#: flatcamGUI/FlatCAMGUI.py:4130 flatcamGUI/ObjectUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:4137 flatcamGUI/ObjectUI.py:454 msgid "Bounding Box:" msgstr "Bounding Box:" -#: flatcamGUI/FlatCAMGUI.py:4138 flatcamGUI/ObjectUI.py:466 +#: flatcamGUI/FlatCAMGUI.py:4145 flatcamGUI/ObjectUI.py:466 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -6608,7 +6609,7 @@ msgstr "" "Distance of the edges of the box\n" "to the nearest polygon." -#: flatcamGUI/FlatCAMGUI.py:4147 flatcamGUI/ObjectUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:4154 flatcamGUI/ObjectUI.py:476 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -6620,15 +6621,15 @@ msgstr "" "their radius is equal to\n" "the margin." -#: flatcamGUI/FlatCAMGUI.py:4161 +#: flatcamGUI/FlatCAMGUI.py:4168 msgid "Gerber Adv. Options" msgstr "Gerber Adv. Options" -#: flatcamGUI/FlatCAMGUI.py:4165 +#: flatcamGUI/FlatCAMGUI.py:4172 msgid "Advanced Param.:" msgstr "Advanced Param.:" -#: flatcamGUI/FlatCAMGUI.py:4167 +#: flatcamGUI/FlatCAMGUI.py:4174 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" @@ -6638,11 +6639,11 @@ msgstr "" "Those parameters are available only for\n" "Advanced App. Level." -#: flatcamGUI/FlatCAMGUI.py:4177 flatcamGUI/ObjectUI.py:314 +#: flatcamGUI/FlatCAMGUI.py:4184 flatcamGUI/ObjectUI.py:314 msgid "\"Follow\"" msgstr "\"Follow\"" -#: flatcamGUI/FlatCAMGUI.py:4179 flatcamGUI/ObjectUI.py:316 +#: flatcamGUI/FlatCAMGUI.py:4186 flatcamGUI/ObjectUI.py:316 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -6652,11 +6653,11 @@ msgstr "" "This means that it will cut through\n" "the middle of the trace." -#: flatcamGUI/FlatCAMGUI.py:4187 +#: flatcamGUI/FlatCAMGUI.py:4194 msgid "Table Show/Hide" msgstr "Table Show/Hide" -#: flatcamGUI/FlatCAMGUI.py:4189 +#: flatcamGUI/FlatCAMGUI.py:4196 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" @@ -6666,19 +6667,15 @@ msgstr "" "Also, on hide, it will delete all mark shapes\n" "that are drawn on canvas." -#: flatcamGUI/FlatCAMGUI.py:4228 -#| msgid "Gerber Editor" +#: flatcamGUI/FlatCAMGUI.py:4235 msgid "Gerber Export" msgstr "Gerber Export" -#: flatcamGUI/FlatCAMGUI.py:4231 flatcamGUI/FlatCAMGUI.py:4902 +#: flatcamGUI/FlatCAMGUI.py:4238 flatcamGUI/FlatCAMGUI.py:4909 msgid "Export Options:" msgstr "Export Options:" -#: flatcamGUI/FlatCAMGUI.py:4233 -#| msgid "" -#| "The parameters set here are used in the file exported\n" -#| "when using the File -> Export -> Export Excellon menu entry." +#: flatcamGUI/FlatCAMGUI.py:4240 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Gerber menu entry." @@ -6686,21 +6683,19 @@ msgstr "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Gerber menu entry." -#: flatcamGUI/FlatCAMGUI.py:4242 flatcamGUI/FlatCAMGUI.py:4913 +#: flatcamGUI/FlatCAMGUI.py:4249 flatcamGUI/FlatCAMGUI.py:4920 msgid "Units:" msgstr "Units:" -#: flatcamGUI/FlatCAMGUI.py:4244 flatcamGUI/FlatCAMGUI.py:4250 -#| msgid "The units used in the Excellon file." +#: flatcamGUI/FlatCAMGUI.py:4251 flatcamGUI/FlatCAMGUI.py:4257 msgid "The units used in the Gerber file." msgstr "The units used in the Gerber file." -#: flatcamGUI/FlatCAMGUI.py:4256 flatcamGUI/FlatCAMGUI.py:4927 +#: flatcamGUI/FlatCAMGUI.py:4263 flatcamGUI/FlatCAMGUI.py:4934 msgid "Int/Decimals:" msgstr "Int/Decimals:" -#: flatcamGUI/FlatCAMGUI.py:4258 -#| msgid "The number of digits for the fractional part of the coordinates." +#: flatcamGUI/FlatCAMGUI.py:4265 msgid "" "The number of digits in the whole part of the number\n" "and in the fractional part of the number." @@ -6708,10 +6703,7 @@ msgstr "" "The number of digits in the whole part of the number\n" "and in the fractional part of the number." -#: flatcamGUI/FlatCAMGUI.py:4269 -#| msgid "" -#| "This numbers signify the number of digits in\n" -#| "the whole part of Excellon coordinates." +#: flatcamGUI/FlatCAMGUI.py:4276 msgid "" "This numbers signify the number of digits in\n" "the whole part of Gerber coordinates." @@ -6719,10 +6711,7 @@ msgstr "" "This numbers signify the number of digits in\n" "the whole part of Gerber coordinates." -#: flatcamGUI/FlatCAMGUI.py:4283 -#| msgid "" -#| "This numbers signify the number of digits in\n" -#| "the decimal part of Excellon coordinates." +#: flatcamGUI/FlatCAMGUI.py:4290 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Gerber coordinates." @@ -6730,17 +6719,11 @@ msgstr "" "This numbers signify the number of digits in\n" "the decimal part of Gerber coordinates." -#: flatcamGUI/FlatCAMGUI.py:4292 flatcamGUI/FlatCAMGUI.py:4988 +#: flatcamGUI/FlatCAMGUI.py:4299 flatcamGUI/FlatCAMGUI.py:4995 msgid "Zeros:" msgstr "Zeros:" -#: flatcamGUI/FlatCAMGUI.py:4295 flatcamGUI/FlatCAMGUI.py:4305 -#| msgid "" -#| "This sets the type of Excellon zeros.\n" -#| "If LZ then Leading Zeros are kept and\n" -#| "Trailing Zeros are removed.\n" -#| "If TZ is checked then Trailing Zeros are kept\n" -#| "and Leading Zeros are removed." +#: flatcamGUI/FlatCAMGUI.py:4302 flatcamGUI/FlatCAMGUI.py:4312 msgid "" "This sets the type of Gerber zeros.\n" "If LZ then Leading Zeros are removed and\n" @@ -6754,24 +6737,23 @@ msgstr "" "If TZ is checked then Trailing Zeros are removed\n" "and Leading Zeros are kept." -#: flatcamGUI/FlatCAMGUI.py:4325 flatcamGUI/FlatCAMGUI.py:5368 -#: flatcamGUI/FlatCAMGUI.py:5612 flatcamGUI/FlatCAMGUI.py:5713 -#: flatcamGUI/FlatCAMGUI.py:5792 flatcamGUI/FlatCAMGUI.py:5851 -#: flatcamGUI/FlatCAMGUI.py:5954 flatcamGUI/FlatCAMGUI.py:6015 -#: flatcamGUI/FlatCAMGUI.py:6214 flatcamGUI/FlatCAMGUI.py:6341 +#: flatcamGUI/FlatCAMGUI.py:4332 flatcamGUI/FlatCAMGUI.py:5375 +#: flatcamGUI/FlatCAMGUI.py:5619 flatcamGUI/FlatCAMGUI.py:5720 +#: flatcamGUI/FlatCAMGUI.py:5799 flatcamGUI/FlatCAMGUI.py:5858 +#: flatcamGUI/FlatCAMGUI.py:5961 flatcamGUI/FlatCAMGUI.py:6022 +#: flatcamGUI/FlatCAMGUI.py:6221 flatcamGUI/FlatCAMGUI.py:6348 msgid "Parameters:" msgstr "Parameters:" -#: flatcamGUI/FlatCAMGUI.py:4327 +#: flatcamGUI/FlatCAMGUI.py:4334 msgid "A list of Gerber Editor parameters." msgstr "A list of Gerber Editor parameters." -#: flatcamGUI/FlatCAMGUI.py:4335 flatcamGUI/FlatCAMGUI.py:5378 -#| msgid "Selection:" +#: flatcamGUI/FlatCAMGUI.py:4342 flatcamGUI/FlatCAMGUI.py:5385 msgid "Selection limit:" msgstr "Selection limit:" -#: flatcamGUI/FlatCAMGUI.py:4337 +#: flatcamGUI/FlatCAMGUI.py:4344 msgid "" "Set the number of selected Gerber geometry\n" "items above which the utility geometry\n" @@ -6785,15 +6767,15 @@ msgstr "" "Increases the performance when moving a\n" "large number of geometric elements." -#: flatcamGUI/FlatCAMGUI.py:4357 +#: flatcamGUI/FlatCAMGUI.py:4364 msgid "Excellon General" msgstr "Excellon General" -#: flatcamGUI/FlatCAMGUI.py:4379 +#: flatcamGUI/FlatCAMGUI.py:4386 msgid "Excellon Format:" msgstr "Excellon Format:" -#: flatcamGUI/FlatCAMGUI.py:4381 +#: flatcamGUI/FlatCAMGUI.py:4388 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -6835,16 +6817,16 @@ msgstr "" "Sprint Layout 2:4 INCH LZ\n" "KiCAD 3:5 INCH TZ" -#: flatcamGUI/FlatCAMGUI.py:4406 +#: flatcamGUI/FlatCAMGUI.py:4413 msgid "INCH:" msgstr "INCH:" -#: flatcamGUI/FlatCAMGUI.py:4409 +#: flatcamGUI/FlatCAMGUI.py:4416 msgid "Default values for INCH are 2:4" msgstr "Default values for INCH are 2:4" -#: flatcamGUI/FlatCAMGUI.py:4417 flatcamGUI/FlatCAMGUI.py:4450 -#: flatcamGUI/FlatCAMGUI.py:4942 +#: flatcamGUI/FlatCAMGUI.py:4424 flatcamGUI/FlatCAMGUI.py:4457 +#: flatcamGUI/FlatCAMGUI.py:4949 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -6852,8 +6834,8 @@ msgstr "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." -#: flatcamGUI/FlatCAMGUI.py:4431 flatcamGUI/FlatCAMGUI.py:4464 -#: flatcamGUI/FlatCAMGUI.py:4956 +#: flatcamGUI/FlatCAMGUI.py:4438 flatcamGUI/FlatCAMGUI.py:4471 +#: flatcamGUI/FlatCAMGUI.py:4963 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -6861,19 +6843,19 @@ msgstr "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." -#: flatcamGUI/FlatCAMGUI.py:4439 +#: flatcamGUI/FlatCAMGUI.py:4446 msgid "METRIC:" msgstr "METRIC:" -#: flatcamGUI/FlatCAMGUI.py:4442 +#: flatcamGUI/FlatCAMGUI.py:4449 msgid "Default values for METRIC are 3:3" msgstr "Default values for METRIC are 3:3" -#: flatcamGUI/FlatCAMGUI.py:4473 +#: flatcamGUI/FlatCAMGUI.py:4480 msgid "Default Zeros:" msgstr "Default Zeros:" -#: flatcamGUI/FlatCAMGUI.py:4476 flatcamGUI/FlatCAMGUI.py:4991 +#: flatcamGUI/FlatCAMGUI.py:4483 flatcamGUI/FlatCAMGUI.py:4998 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -6887,7 +6869,7 @@ msgstr "" "If TZ is checked then Trailing Zeros are kept\n" "and Leading Zeros are removed." -#: flatcamGUI/FlatCAMGUI.py:4487 +#: flatcamGUI/FlatCAMGUI.py:4494 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -6903,11 +6885,11 @@ msgstr "" "If TZ is checked then Trailing Zeros are kept\n" "and Leading Zeros are removed." -#: flatcamGUI/FlatCAMGUI.py:4501 +#: flatcamGUI/FlatCAMGUI.py:4508 msgid "Default Units:" msgstr "Default Units:" -#: flatcamGUI/FlatCAMGUI.py:4504 +#: flatcamGUI/FlatCAMGUI.py:4511 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -6919,7 +6901,7 @@ msgstr "" "will be used.Some Excellon files don't have an header\n" "therefore this parameter will be used." -#: flatcamGUI/FlatCAMGUI.py:4515 +#: flatcamGUI/FlatCAMGUI.py:4522 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" @@ -6929,15 +6911,15 @@ msgstr "" "Some Excellon files don't have an header\n" "therefore this parameter will be used." -#: flatcamGUI/FlatCAMGUI.py:4531 +#: flatcamGUI/FlatCAMGUI.py:4538 msgid "Excellon Optimization:" msgstr "Excellon Optimization:" -#: flatcamGUI/FlatCAMGUI.py:4538 +#: flatcamGUI/FlatCAMGUI.py:4545 msgid "Algorithm: " msgstr "Algorithm: " -#: flatcamGUI/FlatCAMGUI.py:4541 flatcamGUI/FlatCAMGUI.py:4554 +#: flatcamGUI/FlatCAMGUI.py:4548 flatcamGUI/FlatCAMGUI.py:4561 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n" @@ -6957,11 +6939,11 @@ msgstr "" "If DISABLED, then FlatCAM works in 32bit mode and it uses \n" "Travelling Salesman algorithm for path optimization." -#: flatcamGUI/FlatCAMGUI.py:4566 +#: flatcamGUI/FlatCAMGUI.py:4573 msgid "Optimization Time: " msgstr "Optimization Time: " -#: flatcamGUI/FlatCAMGUI.py:4569 +#: flatcamGUI/FlatCAMGUI.py:4576 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -6973,15 +6955,15 @@ msgstr "" "path optimization. This max duration is set here.\n" "In seconds." -#: flatcamGUI/FlatCAMGUI.py:4611 +#: flatcamGUI/FlatCAMGUI.py:4618 msgid "Excellon Options" msgstr "Excellon Options" -#: flatcamGUI/FlatCAMGUI.py:4614 flatcamGUI/ObjectUI.py:584 +#: flatcamGUI/FlatCAMGUI.py:4621 flatcamGUI/ObjectUI.py:584 msgid "Create CNC Job" msgstr "Create CNC Job" -#: flatcamGUI/FlatCAMGUI.py:4616 +#: flatcamGUI/FlatCAMGUI.py:4623 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." @@ -6989,13 +6971,13 @@ msgstr "" "Parameters used to create a CNC Job object\n" "for this drill object." -#: flatcamGUI/FlatCAMGUI.py:4624 flatcamGUI/FlatCAMGUI.py:5094 -#: flatcamGUI/FlatCAMGUI.py:6150 flatcamGUI/ObjectUI.py:595 +#: flatcamGUI/FlatCAMGUI.py:4631 flatcamGUI/FlatCAMGUI.py:5101 +#: flatcamGUI/FlatCAMGUI.py:6157 flatcamGUI/ObjectUI.py:595 #: flatcamGUI/ObjectUI.py:1062 flatcamTools/ToolCalculators.py:108 msgid "Cut Z:" msgstr "Cut Z:" -#: flatcamGUI/FlatCAMGUI.py:4626 flatcamGUI/ObjectUI.py:597 +#: flatcamGUI/FlatCAMGUI.py:4633 flatcamGUI/ObjectUI.py:597 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -7003,12 +6985,12 @@ msgstr "" "Drill depth (negative)\n" "below the copper surface." -#: flatcamGUI/FlatCAMGUI.py:4633 flatcamGUI/FlatCAMGUI.py:5127 +#: flatcamGUI/FlatCAMGUI.py:4640 flatcamGUI/FlatCAMGUI.py:5134 #: flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1098 msgid "Travel Z:" msgstr "Travel Z:" -#: flatcamGUI/FlatCAMGUI.py:4635 flatcamGUI/ObjectUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:4642 flatcamGUI/ObjectUI.py:607 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -7016,11 +6998,11 @@ msgstr "" "Tool height when travelling\n" "across the XY plane." -#: flatcamGUI/FlatCAMGUI.py:4643 flatcamGUI/FlatCAMGUI.py:5137 +#: flatcamGUI/FlatCAMGUI.py:4650 flatcamGUI/FlatCAMGUI.py:5144 msgid "Tool change:" msgstr "Tool change:" -#: flatcamGUI/FlatCAMGUI.py:4645 flatcamGUI/FlatCAMGUI.py:5139 +#: flatcamGUI/FlatCAMGUI.py:4652 flatcamGUI/FlatCAMGUI.py:5146 #: flatcamGUI/ObjectUI.py:617 msgid "" "Include tool-change sequence\n" @@ -7029,19 +7011,19 @@ msgstr "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." -#: flatcamGUI/FlatCAMGUI.py:4652 flatcamGUI/FlatCAMGUI.py:5147 +#: flatcamGUI/FlatCAMGUI.py:4659 flatcamGUI/FlatCAMGUI.py:5154 msgid "Toolchange Z:" msgstr "Toolchange Z:" -#: flatcamGUI/FlatCAMGUI.py:4654 flatcamGUI/FlatCAMGUI.py:5149 +#: flatcamGUI/FlatCAMGUI.py:4661 flatcamGUI/FlatCAMGUI.py:5156 msgid "Toolchange Z position." msgstr "Toolchange Z position." -#: flatcamGUI/FlatCAMGUI.py:4660 +#: flatcamGUI/FlatCAMGUI.py:4667 msgid "Feedrate:" msgstr "Feedrate:" -#: flatcamGUI/FlatCAMGUI.py:4662 +#: flatcamGUI/FlatCAMGUI.py:4669 msgid "" "Tool speed while drilling\n" "(in units per minute)." @@ -7049,11 +7031,11 @@ msgstr "" "Tool speed while drilling\n" "(in units per minute)." -#: flatcamGUI/FlatCAMGUI.py:4670 +#: flatcamGUI/FlatCAMGUI.py:4677 msgid "Spindle Speed:" msgstr "Spindle Speed:" -#: flatcamGUI/FlatCAMGUI.py:4672 flatcamGUI/FlatCAMGUI.py:5179 +#: flatcamGUI/FlatCAMGUI.py:4679 flatcamGUI/FlatCAMGUI.py:5186 #: flatcamGUI/ObjectUI.py:684 msgid "" "Speed of the spindle\n" @@ -7062,15 +7044,11 @@ msgstr "" "Speed of the spindle\n" "in RPM (optional)" -#: flatcamGUI/FlatCAMGUI.py:4680 flatcamGUI/FlatCAMGUI.py:5187 -#| msgid "Spindle Speed:" +#: flatcamGUI/FlatCAMGUI.py:4687 flatcamGUI/FlatCAMGUI.py:5194 msgid "Spindle dir.:" msgstr "Spindle dir.:" -#: flatcamGUI/FlatCAMGUI.py:4682 flatcamGUI/FlatCAMGUI.py:5189 -#| msgid "" -#| "Direction for circular array.Can be CW = clockwise or CCW = counter " -#| "clockwise." +#: flatcamGUI/FlatCAMGUI.py:4689 flatcamGUI/FlatCAMGUI.py:5196 msgid "" "This sets the direction that the spindle is rotating.\n" "It can be either:\n" @@ -7082,12 +7060,12 @@ msgstr "" "- CW = clockwise or\n" "- CCW = counter clockwise" -#: flatcamGUI/FlatCAMGUI.py:4694 flatcamGUI/FlatCAMGUI.py:5201 +#: flatcamGUI/FlatCAMGUI.py:4701 flatcamGUI/FlatCAMGUI.py:5208 #: flatcamGUI/ObjectUI.py:692 flatcamGUI/ObjectUI.py:1224 msgid "Dwell:" msgstr "Dwell:" -#: flatcamGUI/FlatCAMGUI.py:4696 flatcamGUI/FlatCAMGUI.py:5203 +#: flatcamGUI/FlatCAMGUI.py:4703 flatcamGUI/FlatCAMGUI.py:5210 #: flatcamGUI/ObjectUI.py:694 flatcamGUI/ObjectUI.py:1227 msgid "" "Pause to allow the spindle to reach its\n" @@ -7096,21 +7074,21 @@ msgstr "" "Pause to allow the spindle to reach its\n" "speed before cutting." -#: flatcamGUI/FlatCAMGUI.py:4699 flatcamGUI/FlatCAMGUI.py:5206 +#: flatcamGUI/FlatCAMGUI.py:4706 flatcamGUI/FlatCAMGUI.py:5213 msgid "Duration:" msgstr "Duration:" -#: flatcamGUI/FlatCAMGUI.py:4701 flatcamGUI/FlatCAMGUI.py:5208 +#: flatcamGUI/FlatCAMGUI.py:4708 flatcamGUI/FlatCAMGUI.py:5215 #: flatcamGUI/ObjectUI.py:699 flatcamGUI/ObjectUI.py:1234 msgid "Number of milliseconds for spindle to dwell." msgstr "Number of milliseconds for spindle to dwell." -#: flatcamGUI/FlatCAMGUI.py:4713 flatcamGUI/FlatCAMGUI.py:5218 +#: flatcamGUI/FlatCAMGUI.py:4720 flatcamGUI/FlatCAMGUI.py:5225 #: flatcamGUI/ObjectUI.py:707 msgid "Postprocessor:" msgstr "Postprocessor:" -#: flatcamGUI/FlatCAMGUI.py:4715 +#: flatcamGUI/FlatCAMGUI.py:4722 msgid "" "The postprocessor file that dictates\n" "gcode output." @@ -7118,11 +7096,11 @@ msgstr "" "The postprocessor file that dictates\n" "gcode output." -#: flatcamGUI/FlatCAMGUI.py:4725 +#: flatcamGUI/FlatCAMGUI.py:4732 msgid "Gcode: " msgstr "Gcode: " -#: flatcamGUI/FlatCAMGUI.py:4727 +#: flatcamGUI/FlatCAMGUI.py:4734 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -7134,23 +7112,23 @@ msgstr "" "When choosing 'Slots' or 'Both', slots will be\n" "converted to drills." -#: flatcamGUI/FlatCAMGUI.py:4743 flatcamGUI/ObjectUI.py:772 +#: flatcamGUI/FlatCAMGUI.py:4750 flatcamGUI/ObjectUI.py:772 msgid "Mill Holes" msgstr "Mill Holes" -#: flatcamGUI/FlatCAMGUI.py:4745 flatcamGUI/ObjectUI.py:774 +#: flatcamGUI/FlatCAMGUI.py:4752 flatcamGUI/ObjectUI.py:774 msgid "Create Geometry for milling holes." msgstr "Create Geometry for milling holes." -#: flatcamGUI/FlatCAMGUI.py:4751 +#: flatcamGUI/FlatCAMGUI.py:4758 msgid "Drill Tool dia:" msgstr "Drill Tool dia:" -#: flatcamGUI/FlatCAMGUI.py:4758 +#: flatcamGUI/FlatCAMGUI.py:4765 msgid "Slot Tool dia:" msgstr "Slot Tool dia:" -#: flatcamGUI/FlatCAMGUI.py:4760 +#: flatcamGUI/FlatCAMGUI.py:4767 msgid "" "Diameter of the cutting tool\n" "when milling slots." @@ -7158,19 +7136,19 @@ msgstr "" "Diameter of the cutting tool\n" "when milling slots." -#: flatcamGUI/FlatCAMGUI.py:4772 +#: flatcamGUI/FlatCAMGUI.py:4779 msgid "Defaults" msgstr "Defaults" -#: flatcamGUI/FlatCAMGUI.py:4785 +#: flatcamGUI/FlatCAMGUI.py:4792 msgid "Excellon Adv. Options" msgstr "Excellon Adv. Options" -#: flatcamGUI/FlatCAMGUI.py:4791 flatcamGUI/FlatCAMGUI.py:5241 +#: flatcamGUI/FlatCAMGUI.py:4798 flatcamGUI/FlatCAMGUI.py:5248 msgid "Advanced Options:" msgstr "Advanced Options:" -#: flatcamGUI/FlatCAMGUI.py:4793 +#: flatcamGUI/FlatCAMGUI.py:4800 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object that are shown when App Level is Advanced." @@ -7178,11 +7156,11 @@ msgstr "" "Parameters used to create a CNC Job object\n" "for this drill object that are shown when App Level is Advanced." -#: flatcamGUI/FlatCAMGUI.py:4801 +#: flatcamGUI/FlatCAMGUI.py:4808 msgid "Offset Z:" msgstr "Offset Z:" -#: flatcamGUI/FlatCAMGUI.py:4803 flatcamGUI/ObjectUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:4810 flatcamGUI/ObjectUI.py:574 msgid "" "Some drill bits (the larger ones) need to drill deeper\n" "to create the desired exit hole diameter due of the tip shape.\n" @@ -7192,20 +7170,20 @@ msgstr "" "to create the desired exit hole diameter due of the tip shape.\n" "The value here can compensate the Cut Z parameter." -#: flatcamGUI/FlatCAMGUI.py:4810 flatcamGUI/FlatCAMGUI.py:5252 +#: flatcamGUI/FlatCAMGUI.py:4817 flatcamGUI/FlatCAMGUI.py:5259 msgid "Toolchange X,Y:" msgstr "Toolchange X,Y:" -#: flatcamGUI/FlatCAMGUI.py:4812 flatcamGUI/FlatCAMGUI.py:5254 +#: flatcamGUI/FlatCAMGUI.py:4819 flatcamGUI/FlatCAMGUI.py:5261 msgid "Toolchange X,Y position." msgstr "Toolchange X,Y position." -#: flatcamGUI/FlatCAMGUI.py:4818 flatcamGUI/FlatCAMGUI.py:5261 +#: flatcamGUI/FlatCAMGUI.py:4825 flatcamGUI/FlatCAMGUI.py:5268 #: flatcamGUI/ObjectUI.py:634 msgid "Start move Z:" msgstr "Start move Z:" -#: flatcamGUI/FlatCAMGUI.py:4820 +#: flatcamGUI/FlatCAMGUI.py:4827 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -7213,12 +7191,12 @@ msgstr "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." -#: flatcamGUI/FlatCAMGUI.py:4827 flatcamGUI/FlatCAMGUI.py:5271 +#: flatcamGUI/FlatCAMGUI.py:4834 flatcamGUI/FlatCAMGUI.py:5278 #: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1144 msgid "End move Z:" msgstr "End move Z:" -#: flatcamGUI/FlatCAMGUI.py:4829 flatcamGUI/FlatCAMGUI.py:5273 +#: flatcamGUI/FlatCAMGUI.py:4836 flatcamGUI/FlatCAMGUI.py:5280 msgid "" "Height of the tool after\n" "the last move at the end of the job." @@ -7226,12 +7204,12 @@ msgstr "" "Height of the tool after\n" "the last move at the end of the job." -#: flatcamGUI/FlatCAMGUI.py:4836 flatcamGUI/FlatCAMGUI.py:5281 +#: flatcamGUI/FlatCAMGUI.py:4843 flatcamGUI/FlatCAMGUI.py:5288 #: flatcamGUI/ObjectUI.py:665 msgid "Feedrate Rapids:" msgstr "Feedrate Rapids:" -#: flatcamGUI/FlatCAMGUI.py:4838 flatcamGUI/ObjectUI.py:667 +#: flatcamGUI/FlatCAMGUI.py:4845 flatcamGUI/ObjectUI.py:667 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7245,12 +7223,12 @@ msgstr "" "It is useful only for Marlin,\n" "ignore for any other cases." -#: flatcamGUI/FlatCAMGUI.py:4849 flatcamGUI/FlatCAMGUI.py:5305 +#: flatcamGUI/FlatCAMGUI.py:4856 flatcamGUI/FlatCAMGUI.py:5312 #: flatcamGUI/ObjectUI.py:718 flatcamGUI/ObjectUI.py:1256 msgid "Probe Z depth:" msgstr "Probe Z depth:" -#: flatcamGUI/FlatCAMGUI.py:4851 flatcamGUI/FlatCAMGUI.py:5307 +#: flatcamGUI/FlatCAMGUI.py:4858 flatcamGUI/FlatCAMGUI.py:5314 #: flatcamGUI/ObjectUI.py:720 flatcamGUI/ObjectUI.py:1259 msgid "" "The maximum depth that the probe is allowed\n" @@ -7259,21 +7237,21 @@ msgstr "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." -#: flatcamGUI/FlatCAMGUI.py:4859 flatcamGUI/FlatCAMGUI.py:5315 +#: flatcamGUI/FlatCAMGUI.py:4866 flatcamGUI/FlatCAMGUI.py:5322 #: flatcamGUI/ObjectUI.py:730 flatcamGUI/ObjectUI.py:1270 msgid "Feedrate Probe:" msgstr "Feedrate Probe:" -#: flatcamGUI/FlatCAMGUI.py:4861 flatcamGUI/FlatCAMGUI.py:5317 +#: flatcamGUI/FlatCAMGUI.py:4868 flatcamGUI/FlatCAMGUI.py:5324 #: flatcamGUI/ObjectUI.py:732 flatcamGUI/ObjectUI.py:1273 msgid "The feedrate used while the probe is probing." msgstr "The feedrate used while the probe is probing." -#: flatcamGUI/FlatCAMGUI.py:4867 flatcamGUI/FlatCAMGUI.py:5324 +#: flatcamGUI/FlatCAMGUI.py:4874 flatcamGUI/FlatCAMGUI.py:5331 msgid "Fast Plunge:" msgstr "Fast Plunge:" -#: flatcamGUI/FlatCAMGUI.py:4869 flatcamGUI/FlatCAMGUI.py:5326 +#: flatcamGUI/FlatCAMGUI.py:4876 flatcamGUI/FlatCAMGUI.py:5333 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -7285,11 +7263,11 @@ msgstr "" "meaning the fastest speed available.\n" "WARNING: the move is done at Toolchange X,Y coords." -#: flatcamGUI/FlatCAMGUI.py:4878 +#: flatcamGUI/FlatCAMGUI.py:4885 msgid "Fast Retract:" msgstr "Fast Retract:" -#: flatcamGUI/FlatCAMGUI.py:4880 +#: flatcamGUI/FlatCAMGUI.py:4887 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -7305,11 +7283,11 @@ msgstr "" " - When checked the travel from Z cut (cut depth) to Z_move\n" "(travel height) is done as fast as possible (G0) in one move." -#: flatcamGUI/FlatCAMGUI.py:4899 +#: flatcamGUI/FlatCAMGUI.py:4906 msgid "Excellon Export" msgstr "Excellon Export" -#: flatcamGUI/FlatCAMGUI.py:4904 +#: flatcamGUI/FlatCAMGUI.py:4911 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -7317,11 +7295,11 @@ msgstr "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." -#: flatcamGUI/FlatCAMGUI.py:4915 flatcamGUI/FlatCAMGUI.py:4921 +#: flatcamGUI/FlatCAMGUI.py:4922 flatcamGUI/FlatCAMGUI.py:4928 msgid "The units used in the Excellon file." msgstr "The units used in the Excellon file." -#: flatcamGUI/FlatCAMGUI.py:4929 +#: flatcamGUI/FlatCAMGUI.py:4936 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -7333,11 +7311,11 @@ msgstr "" "Here we set the format used when the provided\n" "coordinates are not using period." -#: flatcamGUI/FlatCAMGUI.py:4965 +#: flatcamGUI/FlatCAMGUI.py:4972 msgid "Format:" msgstr "Format:" -#: flatcamGUI/FlatCAMGUI.py:4967 flatcamGUI/FlatCAMGUI.py:4977 +#: flatcamGUI/FlatCAMGUI.py:4974 flatcamGUI/FlatCAMGUI.py:4984 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -7353,7 +7331,7 @@ msgstr "" "Also it will have to be specified if LZ = leading zeros are kept\n" "or TZ = trailing zeros are kept." -#: flatcamGUI/FlatCAMGUI.py:5001 +#: flatcamGUI/FlatCAMGUI.py:5008 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -7367,11 +7345,11 @@ msgstr "" "If TZ is checked then Trailing Zeros are kept\n" "and Leading Zeros are removed." -#: flatcamGUI/FlatCAMGUI.py:5027 +#: flatcamGUI/FlatCAMGUI.py:5034 msgid "Geometry General" msgstr "Geometry General" -#: flatcamGUI/FlatCAMGUI.py:5045 +#: flatcamGUI/FlatCAMGUI.py:5052 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -7379,15 +7357,15 @@ msgstr "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." -#: flatcamGUI/FlatCAMGUI.py:5053 +#: flatcamGUI/FlatCAMGUI.py:5060 msgid "Tools" msgstr "Tools" -#: flatcamGUI/FlatCAMGUI.py:5060 +#: flatcamGUI/FlatCAMGUI.py:5067 msgid "Tool dia: " msgstr "Tool dia: " -#: flatcamGUI/FlatCAMGUI.py:5062 +#: flatcamGUI/FlatCAMGUI.py:5069 msgid "" "The diameter of the cutting\n" "tool.." @@ -7395,15 +7373,15 @@ msgstr "" "The diameter of the cutting\n" "tool.." -#: flatcamGUI/FlatCAMGUI.py:5077 +#: flatcamGUI/FlatCAMGUI.py:5084 msgid "Geometry Options" msgstr "Geometry Options" -#: flatcamGUI/FlatCAMGUI.py:5082 +#: flatcamGUI/FlatCAMGUI.py:5089 msgid "Create CNC Job:" msgstr "Create CNC Job:" -#: flatcamGUI/FlatCAMGUI.py:5084 +#: flatcamGUI/FlatCAMGUI.py:5091 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -7413,7 +7391,7 @@ msgstr "" "tracing the contours of this\n" "Geometry object." -#: flatcamGUI/FlatCAMGUI.py:5096 flatcamGUI/ObjectUI.py:1065 +#: flatcamGUI/FlatCAMGUI.py:5103 flatcamGUI/ObjectUI.py:1065 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -7421,19 +7399,19 @@ msgstr "" "Cutting depth (negative)\n" "below the copper surface." -#: flatcamGUI/FlatCAMGUI.py:5104 +#: flatcamGUI/FlatCAMGUI.py:5111 msgid "Multidepth" msgstr "Multidepth" -#: flatcamGUI/FlatCAMGUI.py:5106 +#: flatcamGUI/FlatCAMGUI.py:5113 msgid "Multidepth usage: True or False." msgstr "Multidepth usage: True or False." -#: flatcamGUI/FlatCAMGUI.py:5111 +#: flatcamGUI/FlatCAMGUI.py:5118 msgid "Depth/Pass:" msgstr "Depth/Pass:" -#: flatcamGUI/FlatCAMGUI.py:5113 +#: flatcamGUI/FlatCAMGUI.py:5120 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -7447,7 +7425,7 @@ msgstr "" "it is a fraction from the depth\n" "which has negative value." -#: flatcamGUI/FlatCAMGUI.py:5129 flatcamGUI/ObjectUI.py:1101 +#: flatcamGUI/FlatCAMGUI.py:5136 flatcamGUI/ObjectUI.py:1101 msgid "" "Height of the tool when\n" "moving without cutting." @@ -7455,11 +7433,11 @@ msgstr "" "Height of the tool when\n" "moving without cutting." -#: flatcamGUI/FlatCAMGUI.py:5156 flatcamGUI/ObjectUI.py:1156 +#: flatcamGUI/FlatCAMGUI.py:5163 flatcamGUI/ObjectUI.py:1156 msgid "Feed Rate X-Y:" msgstr "Feed Rate X-Y:" -#: flatcamGUI/FlatCAMGUI.py:5158 flatcamGUI/ObjectUI.py:1159 +#: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/ObjectUI.py:1159 msgid "" "Cutting speed in the XY\n" "plane in units per minute" @@ -7467,11 +7445,11 @@ msgstr "" "Cutting speed in the XY\n" "plane in units per minute" -#: flatcamGUI/FlatCAMGUI.py:5166 +#: flatcamGUI/FlatCAMGUI.py:5173 msgid "Feed Rate Z:" msgstr "Feed Rate Z:" -#: flatcamGUI/FlatCAMGUI.py:5168 +#: flatcamGUI/FlatCAMGUI.py:5175 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -7481,12 +7459,12 @@ msgstr "" "plane in units per minute.\n" "It is called also Plunge." -#: flatcamGUI/FlatCAMGUI.py:5177 flatcamGUI/ObjectUI.py:682 +#: flatcamGUI/FlatCAMGUI.py:5184 flatcamGUI/ObjectUI.py:682 #: flatcamGUI/ObjectUI.py:1211 msgid "Spindle speed:" msgstr "Spindle speed:" -#: flatcamGUI/FlatCAMGUI.py:5220 +#: flatcamGUI/FlatCAMGUI.py:5227 msgid "" "The postprocessor file that dictates\n" "Machine Code output." @@ -7494,11 +7472,11 @@ msgstr "" "The postprocessor file that dictates\n" "Machine Code output." -#: flatcamGUI/FlatCAMGUI.py:5236 +#: flatcamGUI/FlatCAMGUI.py:5243 msgid "Geometry Adv. Options" msgstr "Geometry Adv. Options" -#: flatcamGUI/FlatCAMGUI.py:5243 +#: flatcamGUI/FlatCAMGUI.py:5250 msgid "" "Parameters to create a CNC Job object\n" "tracing the contours of a Geometry object." @@ -7506,7 +7484,7 @@ msgstr "" "Parameters to create a CNC Job object\n" "tracing the contours of a Geometry object." -#: flatcamGUI/FlatCAMGUI.py:5263 +#: flatcamGUI/FlatCAMGUI.py:5270 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -7514,7 +7492,7 @@ msgstr "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." -#: flatcamGUI/FlatCAMGUI.py:5283 +#: flatcamGUI/FlatCAMGUI.py:5290 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -7528,11 +7506,11 @@ msgstr "" "It is useful only for Marlin,\n" "ignore for any other cases." -#: flatcamGUI/FlatCAMGUI.py:5295 +#: flatcamGUI/FlatCAMGUI.py:5302 msgid "Re-cut 1st pt." msgstr "Re-cut 1st pt." -#: flatcamGUI/FlatCAMGUI.py:5297 flatcamGUI/ObjectUI.py:1202 +#: flatcamGUI/FlatCAMGUI.py:5304 flatcamGUI/ObjectUI.py:1202 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -7544,11 +7522,11 @@ msgstr "" "meet with last cut, we generate an\n" "extended cut over the first cut section." -#: flatcamGUI/FlatCAMGUI.py:5336 +#: flatcamGUI/FlatCAMGUI.py:5343 msgid "Seg. X size:" msgstr "Seg. X size:" -#: flatcamGUI/FlatCAMGUI.py:5338 +#: flatcamGUI/FlatCAMGUI.py:5345 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -7558,11 +7536,11 @@ msgstr "" "Useful for auto-leveling.\n" "A value of 0 means no segmentation on the X axis." -#: flatcamGUI/FlatCAMGUI.py:5347 +#: flatcamGUI/FlatCAMGUI.py:5354 msgid "Seg. Y size:" msgstr "Seg. Y size:" -#: flatcamGUI/FlatCAMGUI.py:5349 +#: flatcamGUI/FlatCAMGUI.py:5356 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -7572,17 +7550,15 @@ msgstr "" "Useful for auto-leveling.\n" "A value of 0 means no segmentation on the Y axis." -#: flatcamGUI/FlatCAMGUI.py:5365 -#| msgid "Geo Editor" +#: flatcamGUI/FlatCAMGUI.py:5372 msgid "Geometry Editor" msgstr "Geometry Editor" -#: flatcamGUI/FlatCAMGUI.py:5370 -#| msgid "Geometry Editor Toolbar" +#: flatcamGUI/FlatCAMGUI.py:5377 msgid "A list of Geometry Editor parameters." msgstr "A list of Geometry Editor parameters." -#: flatcamGUI/FlatCAMGUI.py:5380 +#: flatcamGUI/FlatCAMGUI.py:5387 msgid "" "Set the number of selected geometry\n" "items above which the utility geometry\n" @@ -7596,20 +7572,20 @@ msgstr "" "Increases the performance when moving a\n" "large number of geometric elements." -#: flatcamGUI/FlatCAMGUI.py:5399 +#: flatcamGUI/FlatCAMGUI.py:5406 msgid "CNC Job General" msgstr "CNC Job General" -#: flatcamGUI/FlatCAMGUI.py:5412 flatcamGUI/ObjectUI.py:544 +#: flatcamGUI/FlatCAMGUI.py:5419 flatcamGUI/ObjectUI.py:544 #: flatcamGUI/ObjectUI.py:877 flatcamGUI/ObjectUI.py:1434 msgid "Plot Object" msgstr "Plot Object" -#: flatcamGUI/FlatCAMGUI.py:5419 +#: flatcamGUI/FlatCAMGUI.py:5426 msgid "Plot kind:" msgstr "Plot kind:" -#: flatcamGUI/FlatCAMGUI.py:5421 flatcamGUI/ObjectUI.py:1356 +#: flatcamGUI/FlatCAMGUI.py:5428 flatcamGUI/ObjectUI.py:1356 msgid "" "This selects the kind of geometries on the canvas to plot.\n" "Those can be either of type 'Travel' which means the moves\n" @@ -7621,7 +7597,7 @@ msgstr "" "above the work piece or it can be of type 'Cut',\n" "which means the moves that cut into the material." -#: flatcamGUI/FlatCAMGUI.py:5440 +#: flatcamGUI/FlatCAMGUI.py:5447 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -7629,7 +7605,7 @@ msgstr "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." -#: flatcamGUI/FlatCAMGUI.py:5450 +#: flatcamGUI/FlatCAMGUI.py:5457 msgid "" "Diameter of the tool to be\n" "rendered in the plot." @@ -7637,11 +7613,11 @@ msgstr "" "Diameter of the tool to be\n" "rendered in the plot." -#: flatcamGUI/FlatCAMGUI.py:5458 +#: flatcamGUI/FlatCAMGUI.py:5465 msgid "Coords dec.:" msgstr "Coords dec.:" -#: flatcamGUI/FlatCAMGUI.py:5460 +#: flatcamGUI/FlatCAMGUI.py:5467 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -7649,11 +7625,11 @@ msgstr "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" -#: flatcamGUI/FlatCAMGUI.py:5468 +#: flatcamGUI/FlatCAMGUI.py:5475 msgid "Feedrate dec.:" msgstr "Feedrate dec.:" -#: flatcamGUI/FlatCAMGUI.py:5470 +#: flatcamGUI/FlatCAMGUI.py:5477 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -7661,15 +7637,15 @@ msgstr "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" -#: flatcamGUI/FlatCAMGUI.py:5485 +#: flatcamGUI/FlatCAMGUI.py:5492 msgid "CNC Job Options" msgstr "CNC Job Options" -#: flatcamGUI/FlatCAMGUI.py:5488 flatcamGUI/FlatCAMGUI.py:5529 +#: flatcamGUI/FlatCAMGUI.py:5495 flatcamGUI/FlatCAMGUI.py:5536 msgid "Export G-Code:" msgstr "Export G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5490 flatcamGUI/FlatCAMGUI.py:5531 +#: flatcamGUI/FlatCAMGUI.py:5497 flatcamGUI/FlatCAMGUI.py:5538 #: flatcamGUI/ObjectUI.py:1470 msgid "" "Export and save G-Code to\n" @@ -7678,11 +7654,11 @@ msgstr "" "Export and save G-Code to\n" "make this object to a file." -#: flatcamGUI/FlatCAMGUI.py:5496 +#: flatcamGUI/FlatCAMGUI.py:5503 msgid "Prepend to G-Code:" msgstr "Prepend to G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5498 +#: flatcamGUI/FlatCAMGUI.py:5505 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." @@ -7690,11 +7666,11 @@ msgstr "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." -#: flatcamGUI/FlatCAMGUI.py:5507 +#: flatcamGUI/FlatCAMGUI.py:5514 msgid "Append to G-Code:" msgstr "Append to G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5509 flatcamGUI/ObjectUI.py:1492 +#: flatcamGUI/FlatCAMGUI.py:5516 flatcamGUI/ObjectUI.py:1492 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" @@ -7704,15 +7680,15 @@ msgstr "" "like to append to the generated file.\n" "I.e.: M2 (End of program)" -#: flatcamGUI/FlatCAMGUI.py:5526 +#: flatcamGUI/FlatCAMGUI.py:5533 msgid "CNC Job Adv. Options" msgstr "CNC Job Adv. Options" -#: flatcamGUI/FlatCAMGUI.py:5537 flatcamGUI/ObjectUI.py:1510 +#: flatcamGUI/FlatCAMGUI.py:5544 flatcamGUI/ObjectUI.py:1510 msgid "Toolchange G-Code:" msgstr "Toolchange G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5539 +#: flatcamGUI/FlatCAMGUI.py:5546 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -7724,11 +7700,11 @@ msgstr "" "This will constitute a Custom Toolchange GCode,\n" "or a Toolchange Macro." -#: flatcamGUI/FlatCAMGUI.py:5553 flatcamGUI/ObjectUI.py:1532 +#: flatcamGUI/FlatCAMGUI.py:5560 flatcamGUI/ObjectUI.py:1532 msgid "Use Toolchange Macro" msgstr "Use Toolchange Macro" -#: flatcamGUI/FlatCAMGUI.py:5555 flatcamGUI/ObjectUI.py:1535 +#: flatcamGUI/FlatCAMGUI.py:5562 flatcamGUI/ObjectUI.py:1535 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -7736,7 +7712,7 @@ msgstr "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." -#: flatcamGUI/FlatCAMGUI.py:5567 flatcamGUI/ObjectUI.py:1544 +#: flatcamGUI/FlatCAMGUI.py:5574 flatcamGUI/ObjectUI.py:1544 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -7746,71 +7722,71 @@ msgstr "" "in the Toolchange event.\n" "They have to be surrounded by the '%' symbol" -#: flatcamGUI/FlatCAMGUI.py:5574 flatcamGUI/ObjectUI.py:1551 +#: flatcamGUI/FlatCAMGUI.py:5581 flatcamGUI/ObjectUI.py:1551 msgid "Parameters" msgstr "Parameters" -#: flatcamGUI/FlatCAMGUI.py:5577 flatcamGUI/ObjectUI.py:1554 +#: flatcamGUI/FlatCAMGUI.py:5584 flatcamGUI/ObjectUI.py:1554 msgid "FlatCAM CNC parameters" msgstr "FlatCAM CNC parameters" -#: flatcamGUI/FlatCAMGUI.py:5578 flatcamGUI/ObjectUI.py:1555 +#: flatcamGUI/FlatCAMGUI.py:5585 flatcamGUI/ObjectUI.py:1555 msgid "tool = tool number" msgstr "tool = tool number" -#: flatcamGUI/FlatCAMGUI.py:5579 flatcamGUI/ObjectUI.py:1556 +#: flatcamGUI/FlatCAMGUI.py:5586 flatcamGUI/ObjectUI.py:1556 msgid "tooldia = tool diameter" msgstr "tooldia = tool diameter" -#: flatcamGUI/FlatCAMGUI.py:5580 flatcamGUI/ObjectUI.py:1557 +#: flatcamGUI/FlatCAMGUI.py:5587 flatcamGUI/ObjectUI.py:1557 msgid "t_drills = for Excellon, total number of drills" msgstr "t_drills = for Excellon, total number of drills" -#: flatcamGUI/FlatCAMGUI.py:5581 flatcamGUI/ObjectUI.py:1558 +#: flatcamGUI/FlatCAMGUI.py:5588 flatcamGUI/ObjectUI.py:1558 msgid "x_toolchange = X coord for Toolchange" msgstr "x_toolchange = X coord for Toolchange" -#: flatcamGUI/FlatCAMGUI.py:5582 flatcamGUI/ObjectUI.py:1559 +#: flatcamGUI/FlatCAMGUI.py:5589 flatcamGUI/ObjectUI.py:1559 msgid "y_toolchange = Y coord for Toolchange" msgstr "y_toolchange = Y coord for Toolchange" -#: flatcamGUI/FlatCAMGUI.py:5583 flatcamGUI/ObjectUI.py:1560 +#: flatcamGUI/FlatCAMGUI.py:5590 flatcamGUI/ObjectUI.py:1560 msgid "z_toolchange = Z coord for Toolchange" msgstr "z_toolchange = Z coord for Toolchange" -#: flatcamGUI/FlatCAMGUI.py:5584 +#: flatcamGUI/FlatCAMGUI.py:5591 msgid "z_cut = Z depth for the cut" msgstr "z_cut = Z depth for the cut" -#: flatcamGUI/FlatCAMGUI.py:5585 +#: flatcamGUI/FlatCAMGUI.py:5592 msgid "z_move = Z height for travel" msgstr "z_move = Z height for travel" -#: flatcamGUI/FlatCAMGUI.py:5586 flatcamGUI/ObjectUI.py:1563 +#: flatcamGUI/FlatCAMGUI.py:5593 flatcamGUI/ObjectUI.py:1563 msgid "z_depthpercut = the step value for multidepth cut" msgstr "z_depthpercut = the step value for multidepth cut" -#: flatcamGUI/FlatCAMGUI.py:5587 flatcamGUI/ObjectUI.py:1564 +#: flatcamGUI/FlatCAMGUI.py:5594 flatcamGUI/ObjectUI.py:1564 msgid "spindlesspeed = the value for the spindle speed" msgstr "spindlesspeed = the value for the spindle speed" -#: flatcamGUI/FlatCAMGUI.py:5588 flatcamGUI/ObjectUI.py:1565 +#: flatcamGUI/FlatCAMGUI.py:5595 flatcamGUI/ObjectUI.py:1565 msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" msgstr "dwelltime = time to dwell to allow the spindle to reach it's set RPM" -#: flatcamGUI/FlatCAMGUI.py:5609 +#: flatcamGUI/FlatCAMGUI.py:5616 msgid "NCC Tool Options" msgstr "NCC Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5622 flatcamGUI/FlatCAMGUI.py:6352 +#: flatcamGUI/FlatCAMGUI.py:5629 flatcamGUI/FlatCAMGUI.py:6359 msgid "Tools dia:" msgstr "Tools dia:" -#: flatcamGUI/FlatCAMGUI.py:5624 +#: flatcamGUI/FlatCAMGUI.py:5631 msgid "Diameters of the cutting tools, separated by ','" msgstr "Diameters of the cutting tools, separated by ','" -#: flatcamGUI/FlatCAMGUI.py:5632 flatcamTools/ToolNonCopperClear.py:167 +#: flatcamGUI/FlatCAMGUI.py:5639 flatcamTools/ToolNonCopperClear.py:167 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -7835,11 +7811,11 @@ msgstr "" "Higher values = slow processing and slow execution on CNC\n" "due of too many paths." -#: flatcamGUI/FlatCAMGUI.py:5648 flatcamTools/ToolNonCopperClear.py:183 +#: flatcamGUI/FlatCAMGUI.py:5655 flatcamTools/ToolNonCopperClear.py:183 msgid "Bounding box margin." msgstr "Bounding box margin." -#: flatcamGUI/FlatCAMGUI.py:5657 flatcamTools/ToolNonCopperClear.py:192 +#: flatcamGUI/FlatCAMGUI.py:5664 flatcamTools/ToolNonCopperClear.py:192 #: flatcamTools/ToolPaint.py:190 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -7850,12 +7826,12 @@ msgstr "" "
Seed-based: Outwards from seed.
Line-based: Parallel " "lines." -#: flatcamGUI/FlatCAMGUI.py:5689 flatcamTools/ToolNonCopperClear.py:224 +#: flatcamGUI/FlatCAMGUI.py:5696 flatcamTools/ToolNonCopperClear.py:224 #: flatcamTools/ToolPaint.py:222 msgid "Rest M.:" msgstr "Rest M.:" -#: flatcamGUI/FlatCAMGUI.py:5691 +#: flatcamGUI/FlatCAMGUI.py:5698 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -7871,11 +7847,11 @@ msgstr "" "could not be cleared by previous tool.\n" "If not checked, use the standard algorithm." -#: flatcamGUI/FlatCAMGUI.py:5710 +#: flatcamGUI/FlatCAMGUI.py:5717 msgid "Cutout Tool Options" msgstr "Cutout Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5715 flatcamGUI/ObjectUI.py:402 +#: flatcamGUI/FlatCAMGUI.py:5722 flatcamGUI/ObjectUI.py:402 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -7885,7 +7861,7 @@ msgstr "" "the PCB and separate it from\n" "the original board." -#: flatcamGUI/FlatCAMGUI.py:5734 +#: flatcamGUI/FlatCAMGUI.py:5741 msgid "" "Distance from objects at which\n" "to draw the cutout." @@ -7893,11 +7869,11 @@ msgstr "" "Distance from objects at which\n" "to draw the cutout." -#: flatcamGUI/FlatCAMGUI.py:5741 flatcamTools/ToolCutOut.py:96 +#: flatcamGUI/FlatCAMGUI.py:5748 flatcamTools/ToolCutOut.py:96 msgid "Gap size:" msgstr "Gap size:" -#: flatcamGUI/FlatCAMGUI.py:5743 +#: flatcamGUI/FlatCAMGUI.py:5750 msgid "" "Size of the gaps in the toolpath\n" "that will remain to hold the\n" @@ -7907,11 +7883,11 @@ msgstr "" "that will remain to hold the\n" "board in place." -#: flatcamGUI/FlatCAMGUI.py:5751 flatcamTools/ToolCutOut.py:134 +#: flatcamGUI/FlatCAMGUI.py:5758 flatcamTools/ToolCutOut.py:134 msgid "Gaps:" msgstr "Gaps:" -#: flatcamGUI/FlatCAMGUI.py:5753 +#: flatcamGUI/FlatCAMGUI.py:5760 msgid "" "Number of bridge gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -7933,19 +7909,19 @@ msgstr "" "- 2tb - 2*top + 2*bottom\n" "- 8 - 2*left + 2*right +2*top + 2*bottom" -#: flatcamGUI/FlatCAMGUI.py:5774 flatcamTools/ToolCutOut.py:115 +#: flatcamGUI/FlatCAMGUI.py:5781 flatcamTools/ToolCutOut.py:115 msgid "Convex Sh.:" msgstr "Convex Sh.:" -#: flatcamGUI/FlatCAMGUI.py:5776 +#: flatcamGUI/FlatCAMGUI.py:5783 msgid "Create a convex shape surrounding the entire PCB." msgstr "Create a convex shape surrounding the entire PCB." -#: flatcamGUI/FlatCAMGUI.py:5789 +#: flatcamGUI/FlatCAMGUI.py:5796 msgid "2Sided Tool Options" msgstr "2Sided Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5794 +#: flatcamGUI/FlatCAMGUI.py:5801 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -7953,28 +7929,28 @@ msgstr "" "A tool to help in creating a double sided\n" "PCB using alignment holes." -#: flatcamGUI/FlatCAMGUI.py:5804 flatcamTools/ToolDblSided.py:235 +#: flatcamGUI/FlatCAMGUI.py:5811 flatcamTools/ToolDblSided.py:235 msgid "Drill diam.:" msgstr "Drill diam.:" -#: flatcamGUI/FlatCAMGUI.py:5806 flatcamTools/ToolDblSided.py:226 +#: flatcamGUI/FlatCAMGUI.py:5813 flatcamTools/ToolDblSided.py:226 #: flatcamTools/ToolDblSided.py:237 msgid "Diameter of the drill for the alignment holes." msgstr "Diameter of the drill for the alignment holes." -#: flatcamGUI/FlatCAMGUI.py:5815 flatcamTools/ToolDblSided.py:120 +#: flatcamGUI/FlatCAMGUI.py:5822 flatcamTools/ToolDblSided.py:120 msgid "Mirror Axis:" msgstr "Mirror Axis:" -#: flatcamGUI/FlatCAMGUI.py:5817 flatcamTools/ToolDblSided.py:122 +#: flatcamGUI/FlatCAMGUI.py:5824 flatcamTools/ToolDblSided.py:122 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Mirror vertically (X) or horizontally (Y)." -#: flatcamGUI/FlatCAMGUI.py:5828 flatcamTools/ToolDblSided.py:133 +#: flatcamGUI/FlatCAMGUI.py:5835 flatcamTools/ToolDblSided.py:133 msgid "Axis Ref:" msgstr "Axis Ref:" -#: flatcamGUI/FlatCAMGUI.py:5830 +#: flatcamGUI/FlatCAMGUI.py:5837 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a Geometry object) in \n" @@ -7984,11 +7960,11 @@ msgstr "" " a specified box (in a Geometry object) in \n" "the middle." -#: flatcamGUI/FlatCAMGUI.py:5846 +#: flatcamGUI/FlatCAMGUI.py:5853 msgid "Paint Tool Options" msgstr "Paint Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5853 flatcamGUI/ObjectUI.py:1305 +#: flatcamGUI/FlatCAMGUI.py:5860 flatcamGUI/ObjectUI.py:1305 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -8000,7 +7976,7 @@ msgstr "" "all copper). You will be asked\n" "to click on the desired polygon." -#: flatcamGUI/FlatCAMGUI.py:5877 +#: flatcamGUI/FlatCAMGUI.py:5884 msgid "" "How much (fraction) of the tool\n" "width to overlap each tool pass." @@ -8008,19 +7984,19 @@ msgstr "" "How much (fraction) of the tool\n" "width to overlap each tool pass." -#: flatcamGUI/FlatCAMGUI.py:5931 flatcamTools/ToolPaint.py:237 +#: flatcamGUI/FlatCAMGUI.py:5938 flatcamTools/ToolPaint.py:237 msgid "Selection:" msgstr "Selection:" -#: flatcamGUI/FlatCAMGUI.py:5933 +#: flatcamGUI/FlatCAMGUI.py:5940 msgid "How to select the polygons to paint." msgstr "How to select the polygons to paint." -#: flatcamGUI/FlatCAMGUI.py:5951 +#: flatcamGUI/FlatCAMGUI.py:5958 msgid "Film Tool Options" msgstr "Film Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5956 +#: flatcamGUI/FlatCAMGUI.py:5963 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -8030,11 +8006,11 @@ msgstr "" "FlatCAM object.\n" "The file is saved in SVG format." -#: flatcamGUI/FlatCAMGUI.py:5967 flatcamTools/ToolFilm.py:116 +#: flatcamGUI/FlatCAMGUI.py:5974 flatcamTools/ToolFilm.py:116 msgid "Film Type:" msgstr "Film Type:" -#: flatcamGUI/FlatCAMGUI.py:5969 flatcamTools/ToolFilm.py:118 +#: flatcamGUI/FlatCAMGUI.py:5976 flatcamTools/ToolFilm.py:118 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -8050,11 +8026,11 @@ msgstr "" "with white on a black canvas.\n" "The Film format is SVG." -#: flatcamGUI/FlatCAMGUI.py:5980 flatcamTools/ToolFilm.py:130 +#: flatcamGUI/FlatCAMGUI.py:5987 flatcamTools/ToolFilm.py:130 msgid "Border:" msgstr "Border:" -#: flatcamGUI/FlatCAMGUI.py:5982 flatcamTools/ToolFilm.py:132 +#: flatcamGUI/FlatCAMGUI.py:5989 flatcamTools/ToolFilm.py:132 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -8074,11 +8050,11 @@ msgstr "" "white color like the rest and which may confound with the\n" "surroundings if not for this border." -#: flatcamGUI/FlatCAMGUI.py:5995 flatcamTools/ToolFilm.py:144 +#: flatcamGUI/FlatCAMGUI.py:6002 flatcamTools/ToolFilm.py:144 msgid "Scale Stroke:" msgstr "Scale Stroke:" -#: flatcamGUI/FlatCAMGUI.py:5997 flatcamTools/ToolFilm.py:146 +#: flatcamGUI/FlatCAMGUI.py:6004 flatcamTools/ToolFilm.py:146 msgid "" "Scale the line stroke thickness of each feature in the SVG file.\n" "It means that the line that envelope each SVG feature will be thicker or " @@ -8090,11 +8066,11 @@ msgstr "" "thinner,\n" "therefore the fine features may be more affected by this parameter." -#: flatcamGUI/FlatCAMGUI.py:6012 +#: flatcamGUI/FlatCAMGUI.py:6019 msgid "Panelize Tool Options" msgstr "Panelize Tool Options" -#: flatcamGUI/FlatCAMGUI.py:6017 +#: flatcamGUI/FlatCAMGUI.py:6024 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -8104,11 +8080,11 @@ msgstr "" "each element is a copy of the source object spaced\n" "at a X distance, Y distance of each other." -#: flatcamGUI/FlatCAMGUI.py:6028 flatcamTools/ToolPanelize.py:147 +#: flatcamGUI/FlatCAMGUI.py:6035 flatcamTools/ToolPanelize.py:147 msgid "Spacing cols:" msgstr "Spacing cols:" -#: flatcamGUI/FlatCAMGUI.py:6030 flatcamTools/ToolPanelize.py:149 +#: flatcamGUI/FlatCAMGUI.py:6037 flatcamTools/ToolPanelize.py:149 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -8116,11 +8092,11 @@ msgstr "" "Spacing between columns of the desired panel.\n" "In current units." -#: flatcamGUI/FlatCAMGUI.py:6038 flatcamTools/ToolPanelize.py:156 +#: flatcamGUI/FlatCAMGUI.py:6045 flatcamTools/ToolPanelize.py:156 msgid "Spacing rows:" msgstr "Spacing rows:" -#: flatcamGUI/FlatCAMGUI.py:6040 flatcamTools/ToolPanelize.py:158 +#: flatcamGUI/FlatCAMGUI.py:6047 flatcamTools/ToolPanelize.py:158 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -8128,27 +8104,27 @@ msgstr "" "Spacing between rows of the desired panel.\n" "In current units." -#: flatcamGUI/FlatCAMGUI.py:6048 flatcamTools/ToolPanelize.py:165 +#: flatcamGUI/FlatCAMGUI.py:6055 flatcamTools/ToolPanelize.py:165 msgid "Columns:" msgstr "Columns:" -#: flatcamGUI/FlatCAMGUI.py:6050 flatcamTools/ToolPanelize.py:167 +#: flatcamGUI/FlatCAMGUI.py:6057 flatcamTools/ToolPanelize.py:167 msgid "Number of columns of the desired panel" msgstr "Number of columns of the desired panel" -#: flatcamGUI/FlatCAMGUI.py:6057 flatcamTools/ToolPanelize.py:173 +#: flatcamGUI/FlatCAMGUI.py:6064 flatcamTools/ToolPanelize.py:173 msgid "Rows:" msgstr "Rows:" -#: flatcamGUI/FlatCAMGUI.py:6059 flatcamTools/ToolPanelize.py:175 +#: flatcamGUI/FlatCAMGUI.py:6066 flatcamTools/ToolPanelize.py:175 msgid "Number of rows of the desired panel" msgstr "Number of rows of the desired panel" -#: flatcamGUI/FlatCAMGUI.py:6067 +#: flatcamGUI/FlatCAMGUI.py:6074 msgid "Panel Type:" msgstr "Panel Type:" -#: flatcamGUI/FlatCAMGUI.py:6069 +#: flatcamGUI/FlatCAMGUI.py:6076 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -8158,11 +8134,11 @@ msgstr "" "- Gerber\n" "- Geometry" -#: flatcamGUI/FlatCAMGUI.py:6078 +#: flatcamGUI/FlatCAMGUI.py:6085 msgid "Constrain within:" msgstr "Constrain within:" -#: flatcamGUI/FlatCAMGUI.py:6080 flatcamTools/ToolPanelize.py:195 +#: flatcamGUI/FlatCAMGUI.py:6087 flatcamTools/ToolPanelize.py:195 msgid "" "Area define by DX and DY within to constrain the panel.\n" "DX and DY values are in current units.\n" @@ -8176,11 +8152,11 @@ msgstr "" "the final panel will have as many columns and rows as\n" "they fit completely within selected area." -#: flatcamGUI/FlatCAMGUI.py:6089 flatcamTools/ToolPanelize.py:204 +#: flatcamGUI/FlatCAMGUI.py:6096 flatcamTools/ToolPanelize.py:204 msgid "Width (DX):" msgstr "Width (DX):" -#: flatcamGUI/FlatCAMGUI.py:6091 flatcamTools/ToolPanelize.py:206 +#: flatcamGUI/FlatCAMGUI.py:6098 flatcamTools/ToolPanelize.py:206 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -8188,11 +8164,11 @@ msgstr "" "The width (DX) within which the panel must fit.\n" "In current units." -#: flatcamGUI/FlatCAMGUI.py:6098 flatcamTools/ToolPanelize.py:212 +#: flatcamGUI/FlatCAMGUI.py:6105 flatcamTools/ToolPanelize.py:212 msgid "Height (DY):" msgstr "Height (DY):" -#: flatcamGUI/FlatCAMGUI.py:6100 flatcamTools/ToolPanelize.py:214 +#: flatcamGUI/FlatCAMGUI.py:6107 flatcamTools/ToolPanelize.py:214 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -8200,15 +8176,15 @@ msgstr "" "The height (DY)within which the panel must fit.\n" "In current units." -#: flatcamGUI/FlatCAMGUI.py:6114 +#: flatcamGUI/FlatCAMGUI.py:6121 msgid "Calculators Tool Options" msgstr "Calculators Tool Options" -#: flatcamGUI/FlatCAMGUI.py:6117 +#: flatcamGUI/FlatCAMGUI.py:6124 msgid "V-Shape Tool Calculator:" msgstr "V-Shape Tool Calculator:" -#: flatcamGUI/FlatCAMGUI.py:6119 +#: flatcamGUI/FlatCAMGUI.py:6126 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -8218,11 +8194,11 @@ msgstr "" "having the tip diameter, tip angle and\n" "depth-of-cut as parameters." -#: flatcamGUI/FlatCAMGUI.py:6130 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/FlatCAMGUI.py:6137 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter:" msgstr "Tip Diameter:" -#: flatcamGUI/FlatCAMGUI.py:6132 +#: flatcamGUI/FlatCAMGUI.py:6139 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -8230,11 +8206,11 @@ msgstr "" "This is the tool tip diameter.\n" "It is specified by manufacturer." -#: flatcamGUI/FlatCAMGUI.py:6140 +#: flatcamGUI/FlatCAMGUI.py:6147 msgid "Tip angle:" msgstr "Tip angle:" -#: flatcamGUI/FlatCAMGUI.py:6142 +#: flatcamGUI/FlatCAMGUI.py:6149 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -8242,19 +8218,19 @@ msgstr "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." -#: flatcamGUI/FlatCAMGUI.py:6152 -msgid "" -"This is depth to cut into material.\n" -"In the CNCJob object it is the CutZ parameter." -msgstr "" -"This is depth to cut into material.\n" -"In the CNCJob object it is the CutZ parameter." - #: flatcamGUI/FlatCAMGUI.py:6159 +msgid "" +"This is depth to cut into material.\n" +"In the CNCJob object it is the CutZ parameter." +msgstr "" +"This is depth to cut into material.\n" +"In the CNCJob object it is the CutZ parameter." + +#: flatcamGUI/FlatCAMGUI.py:6166 msgid "ElectroPlating Calculator:" msgstr "ElectroPlating Calculator:" -#: flatcamGUI/FlatCAMGUI.py:6161 flatcamTools/ToolCalculators.py:152 +#: flatcamGUI/FlatCAMGUI.py:6168 flatcamTools/ToolCalculators.py:152 msgid "" "This calculator is useful for those who plate the via/pad/drill holes,\n" "using a method like grahite ink or calcium hypophosphite ink or palladium " @@ -8264,27 +8240,27 @@ msgstr "" "using a method like grahite ink or calcium hypophosphite ink or palladium " "chloride." -#: flatcamGUI/FlatCAMGUI.py:6171 flatcamTools/ToolCalculators.py:161 +#: flatcamGUI/FlatCAMGUI.py:6178 flatcamTools/ToolCalculators.py:161 msgid "Board Length:" msgstr "Board Length:" -#: flatcamGUI/FlatCAMGUI.py:6173 flatcamTools/ToolCalculators.py:165 +#: flatcamGUI/FlatCAMGUI.py:6180 flatcamTools/ToolCalculators.py:165 msgid "This is the board length. In centimeters." msgstr "This is the board length. In centimeters." -#: flatcamGUI/FlatCAMGUI.py:6179 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/FlatCAMGUI.py:6186 flatcamTools/ToolCalculators.py:167 msgid "Board Width:" msgstr "Board Width:" -#: flatcamGUI/FlatCAMGUI.py:6181 flatcamTools/ToolCalculators.py:171 +#: flatcamGUI/FlatCAMGUI.py:6188 flatcamTools/ToolCalculators.py:171 msgid "This is the board width.In centimeters." msgstr "This is the board width.In centimeters." -#: flatcamGUI/FlatCAMGUI.py:6186 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/FlatCAMGUI.py:6193 flatcamTools/ToolCalculators.py:173 msgid "Current Density:" msgstr "Current Density:" -#: flatcamGUI/FlatCAMGUI.py:6189 flatcamTools/ToolCalculators.py:177 +#: flatcamGUI/FlatCAMGUI.py:6196 flatcamTools/ToolCalculators.py:177 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -8292,11 +8268,11 @@ msgstr "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." -#: flatcamGUI/FlatCAMGUI.py:6195 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/FlatCAMGUI.py:6202 flatcamTools/ToolCalculators.py:181 msgid "Copper Growth:" msgstr "Copper Growth:" -#: flatcamGUI/FlatCAMGUI.py:6198 flatcamTools/ToolCalculators.py:185 +#: flatcamGUI/FlatCAMGUI.py:6205 flatcamTools/ToolCalculators.py:185 msgid "" "How thick the copper growth is intended to be.\n" "In microns." @@ -8304,11 +8280,11 @@ msgstr "" "How thick the copper growth is intended to be.\n" "In microns." -#: flatcamGUI/FlatCAMGUI.py:6211 +#: flatcamGUI/FlatCAMGUI.py:6218 msgid "Transform Tool Options" msgstr "Transform Tool Options" -#: flatcamGUI/FlatCAMGUI.py:6216 +#: flatcamGUI/FlatCAMGUI.py:6223 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -8316,47 +8292,47 @@ msgstr "" "Various transformations that can be applied\n" "on a FlatCAM object." -#: flatcamGUI/FlatCAMGUI.py:6226 +#: flatcamGUI/FlatCAMGUI.py:6233 msgid "Rotate Angle:" msgstr "Rotate Angle:" -#: flatcamGUI/FlatCAMGUI.py:6228 +#: flatcamGUI/FlatCAMGUI.py:6235 msgid "Angle for rotation. In degrees." msgstr "Angle for rotation. In degrees." -#: flatcamGUI/FlatCAMGUI.py:6235 +#: flatcamGUI/FlatCAMGUI.py:6242 msgid "Skew_X angle:" msgstr "Skew_X angle:" -#: flatcamGUI/FlatCAMGUI.py:6237 +#: flatcamGUI/FlatCAMGUI.py:6244 msgid "Angle for Skew/Shear on X axis. In degrees." msgstr "Angle for Skew/Shear on X axis. In degrees." -#: flatcamGUI/FlatCAMGUI.py:6244 +#: flatcamGUI/FlatCAMGUI.py:6251 msgid "Skew_Y angle:" msgstr "Skew_Y angle:" -#: flatcamGUI/FlatCAMGUI.py:6246 +#: flatcamGUI/FlatCAMGUI.py:6253 msgid "Angle for Skew/Shear on Y axis. In degrees." msgstr "Angle for Skew/Shear on Y axis. In degrees." -#: flatcamGUI/FlatCAMGUI.py:6253 +#: flatcamGUI/FlatCAMGUI.py:6260 msgid "Scale_X factor:" msgstr "Scale_X factor:" -#: flatcamGUI/FlatCAMGUI.py:6255 +#: flatcamGUI/FlatCAMGUI.py:6262 msgid "Factor for scaling on X axis." msgstr "Factor for scaling on X axis." -#: flatcamGUI/FlatCAMGUI.py:6262 +#: flatcamGUI/FlatCAMGUI.py:6269 msgid "Scale_Y factor:" msgstr "Scale_Y factor:" -#: flatcamGUI/FlatCAMGUI.py:6264 +#: flatcamGUI/FlatCAMGUI.py:6271 msgid "Factor for scaling on Y axis." msgstr "Factor for scaling on Y axis." -#: flatcamGUI/FlatCAMGUI.py:6272 +#: flatcamGUI/FlatCAMGUI.py:6279 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -8364,7 +8340,7 @@ msgstr "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." -#: flatcamGUI/FlatCAMGUI.py:6280 flatcamTools/ToolTransform.py:210 +#: flatcamGUI/FlatCAMGUI.py:6287 flatcamTools/ToolTransform.py:210 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -8376,27 +8352,27 @@ msgstr "" "and the center of the biggest bounding box\n" "of the selected objects when unchecked." -#: flatcamGUI/FlatCAMGUI.py:6289 +#: flatcamGUI/FlatCAMGUI.py:6296 msgid "Offset_X val:" msgstr "Offset_X val:" -#: flatcamGUI/FlatCAMGUI.py:6291 +#: flatcamGUI/FlatCAMGUI.py:6298 msgid "Distance to offset on X axis. In current units." msgstr "Distance to offset on X axis. In current units." -#: flatcamGUI/FlatCAMGUI.py:6298 +#: flatcamGUI/FlatCAMGUI.py:6305 msgid "Offset_Y val:" msgstr "Offset_Y val:" -#: flatcamGUI/FlatCAMGUI.py:6300 +#: flatcamGUI/FlatCAMGUI.py:6307 msgid "Distance to offset on Y axis. In current units." msgstr "Distance to offset on Y axis. In current units." -#: flatcamGUI/FlatCAMGUI.py:6306 +#: flatcamGUI/FlatCAMGUI.py:6313 msgid "Mirror Reference" msgstr "Mirror Reference" -#: flatcamGUI/FlatCAMGUI.py:6308 flatcamTools/ToolTransform.py:314 +#: flatcamGUI/FlatCAMGUI.py:6315 flatcamTools/ToolTransform.py:314 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -8418,11 +8394,11 @@ msgstr "" "Or enter the coords in format (x, y) in the\n" "Point Entry field and click Flip on X(Y)" -#: flatcamGUI/FlatCAMGUI.py:6319 +#: flatcamGUI/FlatCAMGUI.py:6326 msgid " Mirror Ref. Point:" msgstr " Mirror Ref. Point:" -#: flatcamGUI/FlatCAMGUI.py:6321 flatcamTools/ToolTransform.py:327 +#: flatcamGUI/FlatCAMGUI.py:6328 flatcamTools/ToolTransform.py:327 msgid "" "Coordinates in format (x, y) used as reference for mirroring.\n" "The 'x' in (x, y) will be used when using Flip on X and\n" @@ -8432,11 +8408,11 @@ msgstr "" "The 'x' in (x, y) will be used when using Flip on X and\n" "the 'y' in (x, y) will be used when using Flip on Y and" -#: flatcamGUI/FlatCAMGUI.py:6338 +#: flatcamGUI/FlatCAMGUI.py:6345 msgid "SolderPaste Tool Options" msgstr "SolderPaste Tool Options" -#: flatcamGUI/FlatCAMGUI.py:6343 +#: flatcamGUI/FlatCAMGUI.py:6350 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -8444,47 +8420,47 @@ msgstr "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." -#: flatcamGUI/FlatCAMGUI.py:6354 +#: flatcamGUI/FlatCAMGUI.py:6361 msgid "Diameters of nozzle tools, separated by ','" msgstr "Diameters of nozzle tools, separated by ','" -#: flatcamGUI/FlatCAMGUI.py:6361 +#: flatcamGUI/FlatCAMGUI.py:6368 msgid "New Nozzle Dia:" msgstr "New Nozzle Dia:" -#: flatcamGUI/FlatCAMGUI.py:6363 flatcamTools/ToolSolderPaste.py:103 +#: flatcamGUI/FlatCAMGUI.py:6370 flatcamTools/ToolSolderPaste.py:103 msgid "Diameter for the new Nozzle tool to add in the Tool Table" msgstr "Diameter for the new Nozzle tool to add in the Tool Table" -#: flatcamGUI/FlatCAMGUI.py:6371 flatcamTools/ToolSolderPaste.py:166 +#: flatcamGUI/FlatCAMGUI.py:6378 flatcamTools/ToolSolderPaste.py:166 msgid "Z Dispense Start:" msgstr "Z Dispense Start:" -#: flatcamGUI/FlatCAMGUI.py:6373 flatcamTools/ToolSolderPaste.py:168 +#: flatcamGUI/FlatCAMGUI.py:6380 flatcamTools/ToolSolderPaste.py:168 msgid "The height (Z) when solder paste dispensing starts." msgstr "The height (Z) when solder paste dispensing starts." -#: flatcamGUI/FlatCAMGUI.py:6380 flatcamTools/ToolSolderPaste.py:174 +#: flatcamGUI/FlatCAMGUI.py:6387 flatcamTools/ToolSolderPaste.py:174 msgid "Z Dispense:" msgstr "Z Dispense:" -#: flatcamGUI/FlatCAMGUI.py:6382 flatcamTools/ToolSolderPaste.py:176 +#: flatcamGUI/FlatCAMGUI.py:6389 flatcamTools/ToolSolderPaste.py:176 msgid "The height (Z) when doing solder paste dispensing." msgstr "The height (Z) when doing solder paste dispensing." -#: flatcamGUI/FlatCAMGUI.py:6389 flatcamTools/ToolSolderPaste.py:183 +#: flatcamGUI/FlatCAMGUI.py:6396 flatcamTools/ToolSolderPaste.py:183 msgid "Z Dispense Stop:" msgstr "Z Dispense Stop:" -#: flatcamGUI/FlatCAMGUI.py:6391 flatcamTools/ToolSolderPaste.py:185 +#: flatcamGUI/FlatCAMGUI.py:6398 flatcamTools/ToolSolderPaste.py:185 msgid "The height (Z) when solder paste dispensing stops." msgstr "The height (Z) when solder paste dispensing stops." -#: flatcamGUI/FlatCAMGUI.py:6398 flatcamTools/ToolSolderPaste.py:191 +#: flatcamGUI/FlatCAMGUI.py:6405 flatcamTools/ToolSolderPaste.py:191 msgid "Z Travel:" msgstr "Z Travel:" -#: flatcamGUI/FlatCAMGUI.py:6400 flatcamTools/ToolSolderPaste.py:193 +#: flatcamGUI/FlatCAMGUI.py:6407 flatcamTools/ToolSolderPaste.py:193 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -8492,19 +8468,19 @@ msgstr "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." -#: flatcamGUI/FlatCAMGUI.py:6408 flatcamTools/ToolSolderPaste.py:200 +#: flatcamGUI/FlatCAMGUI.py:6415 flatcamTools/ToolSolderPaste.py:200 msgid "Z Toolchange:" msgstr "Z Toolchange:" -#: flatcamGUI/FlatCAMGUI.py:6410 flatcamTools/ToolSolderPaste.py:202 +#: flatcamGUI/FlatCAMGUI.py:6417 flatcamTools/ToolSolderPaste.py:202 msgid "The height (Z) for tool (nozzle) change." msgstr "The height (Z) for tool (nozzle) change." -#: flatcamGUI/FlatCAMGUI.py:6417 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/FlatCAMGUI.py:6424 flatcamTools/ToolSolderPaste.py:208 msgid "XY Toolchange:" msgstr "XY Toolchange:" -#: flatcamGUI/FlatCAMGUI.py:6419 flatcamTools/ToolSolderPaste.py:210 +#: flatcamGUI/FlatCAMGUI.py:6426 flatcamTools/ToolSolderPaste.py:210 msgid "" "The X,Y location for tool (nozzle) change.\n" "The format is (x, y) where x and y are real numbers." @@ -8512,19 +8488,19 @@ msgstr "" "The X,Y location for tool (nozzle) change.\n" "The format is (x, y) where x and y are real numbers." -#: flatcamGUI/FlatCAMGUI.py:6427 flatcamTools/ToolSolderPaste.py:217 +#: flatcamGUI/FlatCAMGUI.py:6434 flatcamTools/ToolSolderPaste.py:217 msgid "Feedrate X-Y:" msgstr "Feedrate X-Y:" -#: flatcamGUI/FlatCAMGUI.py:6429 flatcamTools/ToolSolderPaste.py:219 +#: flatcamGUI/FlatCAMGUI.py:6436 flatcamTools/ToolSolderPaste.py:219 msgid "Feedrate (speed) while moving on the X-Y plane." msgstr "Feedrate (speed) while moving on the X-Y plane." -#: flatcamGUI/FlatCAMGUI.py:6436 flatcamTools/ToolSolderPaste.py:225 +#: flatcamGUI/FlatCAMGUI.py:6443 flatcamTools/ToolSolderPaste.py:225 msgid "Feedrate Z:" msgstr "Feedrate Z:" -#: flatcamGUI/FlatCAMGUI.py:6438 flatcamTools/ToolSolderPaste.py:227 +#: flatcamGUI/FlatCAMGUI.py:6445 flatcamTools/ToolSolderPaste.py:227 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." @@ -8532,11 +8508,11 @@ msgstr "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." -#: flatcamGUI/FlatCAMGUI.py:6446 flatcamTools/ToolSolderPaste.py:234 +#: flatcamGUI/FlatCAMGUI.py:6453 flatcamTools/ToolSolderPaste.py:234 msgid "Feedrate Z Dispense:" msgstr "Feedrate Z Dispense:" -#: flatcamGUI/FlatCAMGUI.py:6448 flatcamTools/ToolSolderPaste.py:236 +#: flatcamGUI/FlatCAMGUI.py:6455 flatcamTools/ToolSolderPaste.py:236 msgid "" "Feedrate (speed) while moving up vertically\n" " to Dispense position (on Z plane)." @@ -8544,11 +8520,11 @@ msgstr "" "Feedrate (speed) while moving up vertically\n" " to Dispense position (on Z plane)." -#: flatcamGUI/FlatCAMGUI.py:6456 flatcamTools/ToolSolderPaste.py:243 +#: flatcamGUI/FlatCAMGUI.py:6463 flatcamTools/ToolSolderPaste.py:243 msgid "Spindle Speed FWD:" msgstr "Spindle Speed FWD:" -#: flatcamGUI/FlatCAMGUI.py:6458 flatcamTools/ToolSolderPaste.py:245 +#: flatcamGUI/FlatCAMGUI.py:6465 flatcamTools/ToolSolderPaste.py:245 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -8556,19 +8532,19 @@ msgstr "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." -#: flatcamGUI/FlatCAMGUI.py:6466 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/FlatCAMGUI.py:6473 flatcamTools/ToolSolderPaste.py:252 msgid "Dwell FWD:" msgstr "Dwell FWD:" -#: flatcamGUI/FlatCAMGUI.py:6468 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/FlatCAMGUI.py:6475 flatcamTools/ToolSolderPaste.py:254 msgid "Pause after solder dispensing." msgstr "Pause after solder dispensing." -#: flatcamGUI/FlatCAMGUI.py:6475 flatcamTools/ToolSolderPaste.py:260 +#: flatcamGUI/FlatCAMGUI.py:6482 flatcamTools/ToolSolderPaste.py:260 msgid "Spindle Speed REV:" msgstr "Spindle Speed REV:" -#: flatcamGUI/FlatCAMGUI.py:6477 flatcamTools/ToolSolderPaste.py:262 +#: flatcamGUI/FlatCAMGUI.py:6484 flatcamTools/ToolSolderPaste.py:262 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -8576,11 +8552,11 @@ msgstr "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." -#: flatcamGUI/FlatCAMGUI.py:6485 flatcamTools/ToolSolderPaste.py:269 +#: flatcamGUI/FlatCAMGUI.py:6492 flatcamTools/ToolSolderPaste.py:269 msgid "Dwell REV:" msgstr "Dwell REV:" -#: flatcamGUI/FlatCAMGUI.py:6487 flatcamTools/ToolSolderPaste.py:271 +#: flatcamGUI/FlatCAMGUI.py:6494 flatcamTools/ToolSolderPaste.py:271 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -8588,23 +8564,23 @@ msgstr "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." -#: flatcamGUI/FlatCAMGUI.py:6494 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/FlatCAMGUI.py:6501 flatcamTools/ToolSolderPaste.py:277 msgid "PostProcessors:" msgstr "PostProcessors:" -#: flatcamGUI/FlatCAMGUI.py:6496 flatcamTools/ToolSolderPaste.py:279 +#: flatcamGUI/FlatCAMGUI.py:6503 flatcamTools/ToolSolderPaste.py:279 msgid "Files that control the GCode generation." msgstr "Files that control the GCode generation." -#: flatcamGUI/FlatCAMGUI.py:6526 flatcamGUI/FlatCAMGUI.py:6532 +#: flatcamGUI/FlatCAMGUI.py:6533 flatcamGUI/FlatCAMGUI.py:6539 msgid "Idle." msgstr "Idle." -#: flatcamGUI/FlatCAMGUI.py:6556 +#: flatcamGUI/FlatCAMGUI.py:6563 msgid "Application started ..." msgstr "Application started ..." -#: flatcamGUI/FlatCAMGUI.py:6557 +#: flatcamGUI/FlatCAMGUI.py:6564 msgid "Hello!" msgstr "Hello!" @@ -9710,7 +9686,6 @@ msgstr "" "from which the PCB is cutout)." #: flatcamTools/ToolCutOut.py:117 -#| msgid "Create a convex shape surrounding the entire PCB." msgid "" "Create a convex shape surrounding the entire PCB.\n" "Used only if the source object type is Gerber." @@ -10886,23 +10861,23 @@ msgstr "[WARNING_NOTCL] Click inside the desired polygon." msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..." msgstr "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..." -#: flatcamTools/ToolPaint.py:796 flatcamTools/ToolPaint.py:999 +#: flatcamTools/ToolPaint.py:796 flatcamTools/ToolPaint.py:1003 msgid "Painting polygon..." msgstr "Painting polygon..." -#: flatcamTools/ToolPaint.py:847 +#: flatcamTools/ToolPaint.py:851 msgid "[WARNING] No polygon found." msgstr "[WARNING] No polygon found." -#: flatcamTools/ToolPaint.py:850 +#: flatcamTools/ToolPaint.py:854 msgid "Painting polygon." msgstr "Painting polygon." -#: flatcamTools/ToolPaint.py:892 +#: flatcamTools/ToolPaint.py:896 msgid "[ERROR_NOTCL] Geometry could not be painted completely" msgstr "[ERROR_NOTCL] Geometry could not be painted completely" -#: flatcamTools/ToolPaint.py:918 +#: flatcamTools/ToolPaint.py:922 #, python-format msgid "" "[ERROR] Could not do Paint. Try a different combination of parameters. Or a " @@ -10913,16 +10888,16 @@ msgstr "" "different strategy of paint\n" "%s" -#: flatcamTools/ToolPaint.py:960 +#: flatcamTools/ToolPaint.py:964 #, python-format msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s" msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s" -#: flatcamTools/ToolPaint.py:966 flatcamTools/ToolPaint.py:1259 +#: flatcamTools/ToolPaint.py:970 flatcamTools/ToolPaint.py:1263 msgid "Polygon Paint started ..." msgstr "Polygon Paint started ..." -#: flatcamTools/ToolPaint.py:1115 flatcamTools/ToolPaint.py:1204 +#: flatcamTools/ToolPaint.py:1119 flatcamTools/ToolPaint.py:1208 #, python-format msgid "" "[ERROR] Could not do Paint All. Try a different combination of parameters. " @@ -10933,7 +10908,7 @@ msgstr "" "Or a different Method of paint\n" "%s" -#: flatcamTools/ToolPaint.py:1139 +#: flatcamTools/ToolPaint.py:1143 msgid "" "[ERROR] There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -10945,11 +10920,11 @@ msgstr "" "geometry.\n" "Change the painting parameters and try again." -#: flatcamTools/ToolPaint.py:1148 +#: flatcamTools/ToolPaint.py:1152 msgid "[success] Paint All Done." msgstr "[success] Paint All Done." -#: flatcamTools/ToolPaint.py:1234 +#: flatcamTools/ToolPaint.py:1238 msgid "" "[ERROR_NOTCL] There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -10961,7 +10936,7 @@ msgstr "" "geometry.\n" "Change the painting parameters and try again." -#: flatcamTools/ToolPaint.py:1243 +#: flatcamTools/ToolPaint.py:1247 msgid "[success] Paint All with Rest-Machining done." msgstr "[success] Paint All with Rest-Machining done." @@ -10990,7 +10965,6 @@ msgstr "" "be duplicated in an array of rows and columns." #: flatcamTools/ToolPanelize.py:86 -#| msgid "Generate Isolation Geometry:" msgid "Penelization Reference:" msgstr "Penelization Reference:" @@ -11035,7 +11009,6 @@ msgstr "" " selected object that is to be panelized." #: flatcamTools/ToolPanelize.py:134 -#| msgid "Tool Data" msgid "Panel Data:" msgstr "Panel Data:" @@ -11056,7 +11029,6 @@ msgstr "" "elements of the panel array." #: flatcamTools/ToolPanelize.py:183 -#| msgid "Panel Type:" msgid "Panel Type:" msgstr "Panel Type:" @@ -11090,7 +11062,6 @@ msgstr "" #: flatcamTools/ToolPanelize.py:370 #, python-format -#| msgid "[WARNING_NOTCL] No object Box. Using instead %s" msgid "[WARNING_NOTCL]No object Box. Using instead %s" msgstr "[WARNING_NOTCL]No object Box. Using instead %s" diff --git a/locale/ro/LC_MESSAGES/strings.mo b/locale/ro/LC_MESSAGES/strings.mo index 2ce363684b08fe12a26ece99f635c45adb880042..41177036e5e693370045c649ff36d2cc3ad53d70 100644 GIT binary patch delta 39257 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 E00dyOmH+?% delta 38909 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şiere recente< pentru a fi salvat " "a eșuat." -#: FlatCAMApp.py:2930 camlib.py:4453 +#: FlatCAMApp.py:2930 camlib.py:4454 msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n" msgstr "" "[ERROR_NOTCL] A apărut o eroare internă. Verifică in TCL Shell pt mai multe " @@ -220,7 +220,7 @@ msgstr "" msgid "Factory defaults saved." msgstr "Valori default de fabrică au fost salvate." -#: FlatCAMApp.py:3339 flatcamGUI/FlatCAMGUI.py:3103 +#: FlatCAMApp.py:3339 flatcamGUI/FlatCAMGUI.py:3110 msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..." msgstr "[WARNING_NOTCL] Aplicația salvează proiectul. Vă rugăm aşteptați ..." @@ -328,16 +328,16 @@ msgstr "" "format Real." #: FlatCAMApp.py:4488 FlatCAMApp.py:4521 FlatCAMApp.py:4532 FlatCAMApp.py:4543 -#: flatcamGUI/FlatCAMGUI.py:2998 +#: flatcamGUI/FlatCAMGUI.py:3005 msgid "[WARNING_NOTCL] Adding Tool cancelled ..." -msgstr "[WARNING_NOTCL] Adaugarea unei unelte anulata ..." +msgstr "[WARNING_NOTCL] Adăugarea unei unelte anulata ..." #: FlatCAMApp.py:4491 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." msgstr "" -"Adaugarea de unelte noi functionează doar in modul Avansat.\n" +"Adăugarea de unelte noi functionează doar in modul Avansat.\n" "Pentru aceasta mergi in Preferințe -> General - Activează Modul Avansat." #: FlatCAMApp.py:4604 @@ -370,15 +370,15 @@ msgstr "Coordonate gresite. Introduceți coordonatele in format X,Y." #: FlatCAMApp.py:4661 flatcamEditors/FlatCAMExcEditor.py:2285 #: flatcamEditors/FlatCAMExcEditor.py:2292 -#: flatcamEditors/FlatCAMGeoEditor.py:3555 -#: flatcamEditors/FlatCAMGeoEditor.py:3569 -#: flatcamEditors/FlatCAMGrbEditor.py:1037 -#: flatcamEditors/FlatCAMGrbEditor.py:1138 -#: flatcamEditors/FlatCAMGrbEditor.py:1399 -#: flatcamEditors/FlatCAMGrbEditor.py:1649 -#: flatcamEditors/FlatCAMGrbEditor.py:3784 -#: flatcamEditors/FlatCAMGrbEditor.py:3798 flatcamGUI/FlatCAMGUI.py:2412 -#: flatcamGUI/FlatCAMGUI.py:2424 +#: flatcamEditors/FlatCAMGeoEditor.py:3648 +#: flatcamEditors/FlatCAMGeoEditor.py:3662 +#: flatcamEditors/FlatCAMGrbEditor.py:1040 +#: flatcamEditors/FlatCAMGrbEditor.py:1141 +#: flatcamEditors/FlatCAMGrbEditor.py:1402 +#: flatcamEditors/FlatCAMGrbEditor.py:1652 +#: flatcamEditors/FlatCAMGrbEditor.py:3928 +#: flatcamEditors/FlatCAMGrbEditor.py:3942 flatcamGUI/FlatCAMGUI.py:2419 +#: flatcamGUI/FlatCAMGUI.py:2431 msgid "[success] Done." msgstr "[success] Executat." @@ -406,8 +406,8 @@ msgid "[success] Flip on Y axis done." msgstr "[success] Oglindire pe axa Y executată." #: FlatCAMApp.py:4971 FlatCAMApp.py:5011 -#: flatcamEditors/FlatCAMGeoEditor.py:1356 -#: flatcamEditors/FlatCAMGrbEditor.py:5165 flatcamTools/ToolTransform.py:748 +#: flatcamEditors/FlatCAMGeoEditor.py:1355 +#: flatcamEditors/FlatCAMGrbEditor.py:5309 flatcamTools/ToolTransform.py:748 #, python-format msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed." msgstr "[ERROR_NOTCL] Datorita %s, oglindirea a eșuat." @@ -437,8 +437,8 @@ msgstr "Introduceți valoaea Unghiului:" msgid "[success] Rotation done." msgstr "[success] Rotaţie executată." -#: FlatCAMApp.py:5059 flatcamEditors/FlatCAMGeoEditor.py:1299 -#: flatcamEditors/FlatCAMGrbEditor.py:5096 flatcamTools/ToolTransform.py:677 +#: FlatCAMApp.py:5059 flatcamEditors/FlatCAMGeoEditor.py:1298 +#: flatcamEditors/FlatCAMGrbEditor.py:5240 flatcamTools/ToolTransform.py:677 #, python-format msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed." msgstr "[ERROR_NOTCL] Datorita %s, Rotatia a eșuat." @@ -459,9 +459,9 @@ msgstr "[WARNING_NOTCL] Nici-un obiect selectat pentru Deformare pe axa Y." msgid "[success] Skew on Y axis done." msgstr "[success] Deformare pe axa Y executată." -#: FlatCAMApp.py:5197 flatcamEditors/FlatCAMGeoEditor.py:938 -#: flatcamEditors/FlatCAMGrbEditor.py:2223 -#: flatcamEditors/FlatCAMGrbEditor.py:4687 flatcamGUI/ObjectUI.py:991 +#: FlatCAMApp.py:5197 flatcamEditors/FlatCAMGeoEditor.py:937 +#: flatcamEditors/FlatCAMGrbEditor.py:2365 +#: flatcamEditors/FlatCAMGrbEditor.py:4831 flatcamGUI/ObjectUI.py:991 #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208 #: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131 #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:479 @@ -470,9 +470,9 @@ msgid "Add" msgstr "Adaugă" #: FlatCAMApp.py:5198 FlatCAMObj.py:3302 -#: flatcamEditors/FlatCAMGrbEditor.py:2228 flatcamGUI/FlatCAMGUI.py:532 -#: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:1616 -#: flatcamGUI/FlatCAMGUI.py:1948 flatcamGUI/ObjectUI.py:1007 +#: flatcamEditors/FlatCAMGrbEditor.py:2370 flatcamGUI/FlatCAMGUI.py:532 +#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:1619 +#: flatcamGUI/FlatCAMGUI.py:1955 flatcamGUI/ObjectUI.py:1007 #: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143 #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:481 msgid "Delete" @@ -503,7 +503,7 @@ msgstr "[WARNING_NOTCL] Grila exista deja." #: FlatCAMApp.py:5231 msgid "[WARNING_NOTCL] Adding New Grid cancelled ..." -msgstr "[WARNING_NOTCL] Adaugarea unei valori de Grila a fost anulata ..." +msgstr "[WARNING_NOTCL] Adăugarea unei valori de Grila a fost anulata ..." #: FlatCAMApp.py:5253 msgid "[ERROR_NOTCL] Grid Value does not exist ..." @@ -550,7 +550,7 @@ msgid "[success] New Project created..." msgstr "[success] Un nou Proiect a fost creat..." #: FlatCAMApp.py:5923 FlatCAMApp.py:5926 flatcamGUI/FlatCAMGUI.py:613 -#: flatcamGUI/FlatCAMGUI.py:1831 +#: flatcamGUI/FlatCAMGUI.py:1834 msgid "Open Gerber" msgstr "Încarcă Gerber" @@ -559,7 +559,7 @@ msgid "[WARNING_NOTCL] Open Gerber cancelled." msgstr "[WARNING_NOTCL] Incărcarea unui fişier Gerber este anulata." #: FlatCAMApp.py:5952 FlatCAMApp.py:5955 flatcamGUI/FlatCAMGUI.py:614 -#: flatcamGUI/FlatCAMGUI.py:1832 +#: flatcamGUI/FlatCAMGUI.py:1835 msgid "Open Excellon" msgstr "Încarcă Excellon" @@ -1059,7 +1059,7 @@ msgstr "[ERROR_NOTCL] Esec in incărcarea listei cu obiecte recente." msgid "[ERROR_NOTCL] Failed to parse recent item list." msgstr "[ERROR_NOTCL] Esec in parsarea listei cu obiecte recente." -#: FlatCAMApp.py:8110 flatcamGUI/FlatCAMGUI.py:970 +#: FlatCAMApp.py:8110 flatcamGUI/FlatCAMGUI.py:973 msgid "Shortcut Key List" msgstr "Lista cu taste Shortcut" @@ -1277,7 +1277,7 @@ msgstr "Nr. Tot. Sloturi" #: flatcamTools/ToolNonCopperClear.py:627 #: flatcamTools/ToolNonCopperClear.py:644 flatcamTools/ToolPaint.py:538 #: flatcamTools/ToolPaint.py:608 flatcamTools/ToolPaint.py:743 -#: flatcamTools/ToolPaint.py:840 flatcamTools/ToolPaint.py:995 +#: flatcamTools/ToolPaint.py:844 flatcamTools/ToolPaint.py:999 #: flatcamTools/ToolPanelize.py:385 flatcamTools/ToolPanelize.py:397 #: flatcamTools/ToolPanelize.py:410 flatcamTools/ToolPanelize.py:423 #: flatcamTools/ToolPanelize.py:435 flatcamTools/ToolPanelize.py:446 @@ -1345,8 +1345,8 @@ msgstr "" msgid "Generating CNC Code" msgstr "CNC Code in curs de generare" -#: FlatCAMObj.py:2674 FlatCAMObj.py:5021 camlib.py:5165 camlib.py:5624 -#: camlib.py:5887 +#: FlatCAMObj.py:2674 FlatCAMObj.py:5021 camlib.py:5166 camlib.py:5625 +#: camlib.py:5888 msgid "" "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the " "format (x, y) \n" @@ -1368,8 +1368,8 @@ msgstr "Grosier" msgid "Finish" msgstr "Finisare" -#: FlatCAMObj.py:3300 flatcamGUI/FlatCAMGUI.py:531 flatcamGUI/FlatCAMGUI.py:724 -#: flatcamGUI/FlatCAMGUI.py:1615 flatcamGUI/FlatCAMGUI.py:1946 +#: FlatCAMObj.py:3300 flatcamGUI/FlatCAMGUI.py:531 flatcamGUI/FlatCAMGUI.py:727 +#: flatcamGUI/FlatCAMGUI.py:1618 flatcamGUI/FlatCAMGUI.py:1953 #: flatcamGUI/ObjectUI.py:999 msgid "Copy" msgstr "Copiază" @@ -1619,7 +1619,7 @@ msgstr "[success] Rotatia Gerber efectuata." msgid "[ERROR_NOTCL] This is GCODE mark: %s" msgstr "[ERROR_NOTCL] Acesta este un marcaj Gerber: %s" -#: camlib.py:3989 +#: camlib.py:3990 #, python-format msgid "" "[WARNING] No tool diameter info's. See shell.\n" @@ -1635,7 +1635,7 @@ msgstr "" "Userul trebuie să editeze obictul Excellon rezultat si sa ajusteze " "diametrele a.i sa reflecte diametrele reale." -#: camlib.py:4454 +#: camlib.py:4455 #, python-brace-format msgid "" "[ERROR] Excellon Parser error.\n" @@ -1645,7 +1645,7 @@ msgstr "" "Parsare eșuata. Linia {l_nr}: {line}\n" "\n" -#: camlib.py:4531 +#: camlib.py:4532 msgid "" "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of " "not having a tool associated.\n" @@ -1655,12 +1655,12 @@ msgstr "" "deoarece nu are o unealtă asociata.\n" "Verifică codul G-Code rezultat." -#: camlib.py:5074 +#: camlib.py:5075 #, python-format msgid "[ERROR] There is no such parameter: %s" msgstr "[ERROR] Nu exista un asemenea parametru: %s" -#: camlib.py:5144 +#: camlib.py:5145 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "drill into material.\n" @@ -1673,7 +1673,7 @@ msgstr "" "Se presupune că este o eroare de tastare astfel ca aplicaţia va converti " "intr-o valoare negativă. Verifică codul masina (G-Code etc) rezultat." -#: camlib.py:5151 camlib.py:5647 camlib.py:5910 +#: camlib.py:5152 camlib.py:5648 camlib.py:5911 #, python-format msgid "" "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file" @@ -1681,15 +1681,15 @@ msgstr "" "[WARNING] Parametrul >Z tăiere< este nul. Nu va fi nici-o tăiere prin urmare " "nu procesam fişierul %s" -#: camlib.py:5380 camlib.py:5477 camlib.py:5535 +#: camlib.py:5381 camlib.py:5478 camlib.py:5536 msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..." msgstr "[ERROR_NOTCL] Fişierul Excellon incărcat nu are găuri ..." -#: camlib.py:5482 +#: camlib.py:5483 msgid "[ERROR_NOTCL] Wrong optimization type selected." msgstr "[ERROR_NOTCL] Un tip de optimizare incorrect a fost selectat." -#: camlib.py:5635 camlib.py:5898 +#: camlib.py:5636 camlib.py:5899 msgid "" "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad " "combinations of other parameters." @@ -1697,7 +1697,7 @@ msgstr "" "[ERROR_NOTCL] Parametrul >Z tăiere< este None sau zero. Cel mai probabil o " "combinaţie nefericita de parametri." -#: camlib.py:5640 camlib.py:5903 +#: camlib.py:5641 camlib.py:5904 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "cut into material.\n" @@ -1710,11 +1710,11 @@ msgstr "" "Se presupune că este o eroare de tastare astfel ca aplicaţia va converti " "intr-o valoare negativă. Verifică codul masina (G-Code etc) rezultat." -#: camlib.py:5652 camlib.py:5915 +#: camlib.py:5653 camlib.py:5916 msgid "[ERROR_NOTCL] Travel Z parameter is None or zero." msgstr "[ERROR_NOTCL] Parametrul >Z deplasare< este None sau zero." -#: camlib.py:5656 camlib.py:5919 +#: camlib.py:5657 camlib.py:5920 msgid "" "[WARNING] The Travel Z parameter has negative value. It is the height value " "to travel between cuts.\n" @@ -1728,7 +1728,7 @@ msgstr "" "Se presupune că este o eroare de tastare astfel ca aplicaţia va converti " "intr-o valoare pozitivă. Verifică codul masina (G-Code etc) rezultat." -#: camlib.py:5663 camlib.py:5926 +#: camlib.py:5664 camlib.py:5927 #, python-format msgid "" "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file" @@ -1736,12 +1736,12 @@ msgstr "" "[WARNING] Parametrul >Z deplasare< este zero. Aceasta este periculos, prin " "urmare fişierul %s nu se procesează." -#: camlib.py:5793 +#: camlib.py:5794 #, python-format msgid "[ERROR]Expected a Geometry, got %s" msgstr "[ERROR] Se astepta o Geometrie, am primit in schimb %s" -#: camlib.py:5799 +#: camlib.py:5800 msgid "" "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without " "solid_geometry." @@ -1749,7 +1749,7 @@ msgstr "" "[ERROR_NOTCL] Se încearcă generarea unui CNC Job dintr-un obiect Geometrie " "fără atributul solid_geometry." -#: camlib.py:5838 +#: camlib.py:5839 msgid "" "[ERROR_NOTCL] The Tool Offset value is too negative to use for the " "current_geometry.\n" @@ -1759,7 +1759,7 @@ msgstr "" "fi folosita. \n" "Mareste valoarea absoluta și încearcă din nou." -#: camlib.py:6052 +#: camlib.py:6053 msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry." msgstr "" "[ERROR_NOTCL] Nu exista date cu privier la unealtă in geometria SolderPaste." @@ -1774,8 +1774,8 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:447 #: flatcamEditors/FlatCAMExcEditor.py:472 #: flatcamEditors/FlatCAMGrbEditor.py:451 -#: flatcamEditors/FlatCAMGrbEditor.py:1759 -#: flatcamEditors/FlatCAMGrbEditor.py:1787 +#: flatcamEditors/FlatCAMGrbEditor.py:1762 +#: flatcamEditors/FlatCAMGrbEditor.py:1790 msgid "Click on target location ..." msgstr "Click pe locatia tinta ..." @@ -1830,7 +1830,7 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:423 msgid "[success] Done. Drill Resize completed." -msgstr "[success] Executat. Redimensionare găurire terminata." +msgstr "[success] Executat. Redimensionare găurire terminată." #: flatcamEditors/FlatCAMExcEditor.py:426 msgid "[WARNING_NOTCL] Cancelled. No drills selected for resize ..." @@ -1838,7 +1838,7 @@ msgstr "" "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentruredimensionare ..." #: flatcamEditors/FlatCAMExcEditor.py:449 -#: flatcamEditors/FlatCAMGrbEditor.py:1761 +#: flatcamEditors/FlatCAMGrbEditor.py:1764 msgid "Click on reference location ..." msgstr "Click pe locatia de referinţă ..." @@ -1855,7 +1855,7 @@ msgid "Excellon Editor" msgstr "Editor Excellon" #: flatcamEditors/FlatCAMExcEditor.py:765 -#: flatcamEditors/FlatCAMGrbEditor.py:2108 +#: flatcamEditors/FlatCAMGrbEditor.py:2250 msgid "Name:" msgstr "Nume:" @@ -1942,7 +1942,7 @@ msgstr "Redimensionează" msgid "Resize drill(s)" msgstr "Redimensionează op. de găurire." -#: flatcamEditors/FlatCAMExcEditor.py:889 flatcamGUI/FlatCAMGUI.py:1612 +#: flatcamEditors/FlatCAMExcEditor.py:889 flatcamGUI/FlatCAMGUI.py:1615 msgid "Add Drill Array" msgstr "Adaugă o arie de op. găurire" @@ -1959,12 +1959,12 @@ msgstr "" "Poate fi Liniar X(Y) sau Circular." #: flatcamEditors/FlatCAMExcEditor.py:900 -#: flatcamEditors/FlatCAMGrbEditor.py:2341 +#: flatcamEditors/FlatCAMGrbEditor.py:2483 msgid "Linear" msgstr "Liniar" #: flatcamEditors/FlatCAMExcEditor.py:901 -#: flatcamEditors/FlatCAMGrbEditor.py:2342 +#: flatcamEditors/FlatCAMGrbEditor.py:2484 msgid "Circular" msgstr "Circular" @@ -1978,13 +1978,13 @@ msgstr "Specifica cate operațiuni de găurire să fie incluse in arie." #: flatcamEditors/FlatCAMExcEditor.py:927 #: flatcamEditors/FlatCAMExcEditor.py:972 -#: flatcamEditors/FlatCAMGrbEditor.py:2368 -#: flatcamEditors/FlatCAMGrbEditor.py:2413 +#: flatcamEditors/FlatCAMGrbEditor.py:2510 +#: flatcamEditors/FlatCAMGrbEditor.py:2555 msgid "Direction:" msgstr "Direcţie:" #: flatcamEditors/FlatCAMExcEditor.py:929 -#: flatcamEditors/FlatCAMGrbEditor.py:2370 +#: flatcamEditors/FlatCAMGrbEditor.py:2512 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -1997,26 +1997,26 @@ msgstr "" "- 'Unghi' - un unghi particular pentru inclinatia ariei" #: flatcamEditors/FlatCAMExcEditor.py:942 -#: flatcamEditors/FlatCAMGrbEditor.py:2383 +#: flatcamEditors/FlatCAMGrbEditor.py:2525 msgid "Pitch:" msgstr "Pas:" #: flatcamEditors/FlatCAMExcEditor.py:944 -#: flatcamEditors/FlatCAMGrbEditor.py:2385 +#: flatcamEditors/FlatCAMGrbEditor.py:2527 msgid "Pitch = Distance between elements of the array." msgstr "Pas = Distanta între elementele ariei." #: flatcamEditors/FlatCAMExcEditor.py:951 #: flatcamEditors/FlatCAMExcEditor.py:987 -#: flatcamEditors/FlatCAMGeoEditor.py:666 -#: flatcamEditors/FlatCAMGrbEditor.py:2392 -#: flatcamEditors/FlatCAMGrbEditor.py:2428 -#: flatcamEditors/FlatCAMGrbEditor.py:4414 flatcamTools/ToolTransform.py:68 +#: flatcamEditors/FlatCAMGeoEditor.py:665 +#: flatcamEditors/FlatCAMGrbEditor.py:2534 +#: flatcamEditors/FlatCAMGrbEditor.py:2570 +#: flatcamEditors/FlatCAMGrbEditor.py:4558 flatcamTools/ToolTransform.py:68 msgid "Angle:" msgstr "Unghi:" #: flatcamEditors/FlatCAMExcEditor.py:953 -#: flatcamEditors/FlatCAMGrbEditor.py:2394 +#: flatcamEditors/FlatCAMGrbEditor.py:2536 msgid "" "Angle at which the linear array is placed.\n" "The precision is of max 2 decimals.\n" @@ -2029,7 +2029,7 @@ msgstr "" "Val maxima este: 360.00 grade." #: flatcamEditors/FlatCAMExcEditor.py:974 -#: flatcamEditors/FlatCAMGrbEditor.py:2415 +#: flatcamEditors/FlatCAMGrbEditor.py:2557 msgid "" "Direction for circular array.Can be CW = clockwise or CCW = counter " "clockwise." @@ -2038,7 +2038,7 @@ msgstr "" "sau CCW = invers acelor de ceasornic" #: flatcamEditors/FlatCAMExcEditor.py:989 -#: flatcamEditors/FlatCAMGrbEditor.py:2430 +#: flatcamEditors/FlatCAMGrbEditor.py:2572 msgid "Angle at which each element in circular array is placed." msgstr "" "Unghiul la care fiecare element al ariei circulare este plasat fata de " @@ -2053,7 +2053,7 @@ msgstr "" "Salvează și reeditează obiectul Excellon daca ai nevoie să adaugi aceasta " "unealtă." -#: flatcamEditors/FlatCAMExcEditor.py:1461 flatcamGUI/FlatCAMGUI.py:2995 +#: flatcamEditors/FlatCAMExcEditor.py:1461 flatcamGUI/FlatCAMGUI.py:3002 #, python-brace-format msgid "[success] Added new tool with dia: {dia} {units}" msgstr "[success] O noua unealtă este adăugată cu diametrul: {dia} {units}" @@ -2081,7 +2081,7 @@ msgstr "In curs de creere Excellon." #: flatcamEditors/FlatCAMExcEditor.py:2056 msgid "[success] Excellon editing finished." -msgstr "[success] Editarea Excellon a fost terminata." +msgstr "[success] Editarea Excellon a fost terminată." #: flatcamEditors/FlatCAMExcEditor.py:2073 msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected" @@ -2093,17 +2093,17 @@ msgid "[success] Done. Drill(s) deleted." msgstr "[success] Executat. Operatiile de găurire șterse." #: flatcamEditors/FlatCAMExcEditor.py:2675 -#: flatcamEditors/FlatCAMGrbEditor.py:4174 +#: flatcamEditors/FlatCAMGrbEditor.py:4318 msgid "Click on the circular array Center position" msgstr "Click pe punctul de Centru al ariei circulare." #: flatcamEditors/FlatCAMGeoEditor.py:80 -#: flatcamEditors/FlatCAMGrbEditor.py:2258 +#: flatcamEditors/FlatCAMGrbEditor.py:2400 msgid "Buffer distance:" msgstr "Distanta pt bufer:" #: flatcamEditors/FlatCAMGeoEditor.py:81 -#: flatcamEditors/FlatCAMGrbEditor.py:2259 +#: flatcamEditors/FlatCAMGrbEditor.py:2401 msgid "Buffer corner:" msgstr "Coltul pt bufer:" @@ -2122,17 +2122,17 @@ msgstr "" "care formează coltul" #: flatcamEditors/FlatCAMGeoEditor.py:89 -#: flatcamEditors/FlatCAMGrbEditor.py:2267 +#: flatcamEditors/FlatCAMGrbEditor.py:2409 msgid "Round" msgstr "Rotund" #: flatcamEditors/FlatCAMGeoEditor.py:90 -#: flatcamEditors/FlatCAMGrbEditor.py:2268 +#: flatcamEditors/FlatCAMGrbEditor.py:2410 msgid "Square" msgstr "Patrat" #: flatcamEditors/FlatCAMGeoEditor.py:91 -#: flatcamEditors/FlatCAMGrbEditor.py:2269 +#: flatcamEditors/FlatCAMGrbEditor.py:2411 msgid "Beveled" msgstr "Beveled" @@ -2149,17 +2149,17 @@ msgid "Full Buffer" msgstr "Bufer complet" #: flatcamEditors/FlatCAMGeoEditor.py:127 -#: flatcamEditors/FlatCAMGeoEditor.py:2696 +#: flatcamEditors/FlatCAMGeoEditor.py:2682 msgid "Buffer Tool" msgstr "Unealta Bufer" #: flatcamEditors/FlatCAMGeoEditor.py:138 #: flatcamEditors/FlatCAMGeoEditor.py:155 #: flatcamEditors/FlatCAMGeoEditor.py:172 -#: flatcamEditors/FlatCAMGeoEditor.py:2714 -#: flatcamEditors/FlatCAMGeoEditor.py:2740 -#: flatcamEditors/FlatCAMGeoEditor.py:2766 -#: flatcamEditors/FlatCAMGrbEditor.py:4226 +#: flatcamEditors/FlatCAMGeoEditor.py:2700 +#: flatcamEditors/FlatCAMGeoEditor.py:2726 +#: flatcamEditors/FlatCAMGeoEditor.py:2752 +#: flatcamEditors/FlatCAMGrbEditor.py:4370 msgid "" "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and " "retry." @@ -2171,17 +2171,17 @@ msgstr "" msgid "Text Tool" msgstr "Unealta Text" -#: flatcamEditors/FlatCAMGeoEditor.py:401 flatcamGUI/FlatCAMGUI.py:805 +#: flatcamEditors/FlatCAMGeoEditor.py:401 flatcamGUI/FlatCAMGUI.py:808 msgid "Tool" msgstr "Unealta" -#: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:4051 -#: flatcamGUI/FlatCAMGUI.py:5448 flatcamGUI/FlatCAMGUI.py:5724 -#: flatcamGUI/FlatCAMGUI.py:5864 flatcamGUI/ObjectUI.py:260 +#: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:4058 +#: flatcamGUI/FlatCAMGUI.py:5455 flatcamGUI/FlatCAMGUI.py:5731 +#: flatcamGUI/FlatCAMGUI.py:5871 flatcamGUI/ObjectUI.py:260 msgid "Tool dia:" msgstr "Dia unealtă:" -#: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:5866 +#: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:5873 msgid "" "Diameter of the tool to\n" "be used in the operation." @@ -2189,8 +2189,8 @@ msgstr "" "Diametrul uneltei care este utilizata in operaţie. \n" "Este și lăţimea de tăiere pentru uneltele cilindrice." -#: flatcamEditors/FlatCAMGeoEditor.py:443 flatcamGUI/FlatCAMGUI.py:5630 -#: flatcamGUI/FlatCAMGUI.py:5875 flatcamTools/ToolNonCopperClear.py:165 +#: flatcamEditors/FlatCAMGeoEditor.py:443 flatcamGUI/FlatCAMGUI.py:5637 +#: flatcamGUI/FlatCAMGUI.py:5882 flatcamTools/ToolNonCopperClear.py:165 #: flatcamTools/ToolPaint.py:160 msgid "Overlap Rate:" msgstr "Rata suprapunere:" @@ -2221,14 +2221,14 @@ msgstr "" "Valori mari= procesare lenta cat și o execuţie la fel de lenta a PCB-ului,\n" "datorita numărului mai mare de treceri-tăiere." -#: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5646 -#: flatcamGUI/FlatCAMGUI.py:5732 flatcamGUI/FlatCAMGUI.py:5885 +#: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5653 +#: flatcamGUI/FlatCAMGUI.py:5739 flatcamGUI/FlatCAMGUI.py:5892 #: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:181 #: flatcamTools/ToolPaint.py:177 msgid "Margin:" msgstr "Margine:" -#: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:5887 +#: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:5894 #: flatcamTools/ToolPaint.py:179 msgid "" "Distance by which to avoid\n" @@ -2239,13 +2239,13 @@ msgstr "" "poligonului care trebuie\n" "să fie >pictat<." -#: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5655 -#: flatcamGUI/FlatCAMGUI.py:5896 flatcamTools/ToolNonCopperClear.py:190 +#: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5662 +#: flatcamGUI/FlatCAMGUI.py:5903 flatcamTools/ToolNonCopperClear.py:190 #: flatcamTools/ToolPaint.py:188 msgid "Method:" msgstr "Metoda:" -#: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:5898 +#: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:5905 msgid "" "Algorithm to paint the polygon:
Standard: Fixed step inwards." "
Seed-based: Outwards from seed." @@ -2253,14 +2253,14 @@ msgstr "" "Algoritm pentru a picta poligonul
Standard: Pas fix spre interior." "
Samanta: Spre exterior pornind de la un punct-samanta." -#: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5671 -#: flatcamGUI/FlatCAMGUI.py:5911 flatcamTools/ToolNonCopperClear.py:206 +#: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5678 +#: flatcamGUI/FlatCAMGUI.py:5918 flatcamTools/ToolNonCopperClear.py:206 #: flatcamTools/ToolPaint.py:204 msgid "Connect:" msgstr "Conectează:" -#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/FlatCAMGUI.py:5673 -#: flatcamGUI/FlatCAMGUI.py:5913 flatcamTools/ToolNonCopperClear.py:208 +#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/FlatCAMGUI.py:5680 +#: flatcamGUI/FlatCAMGUI.py:5920 flatcamTools/ToolNonCopperClear.py:208 #: flatcamTools/ToolPaint.py:206 msgid "" "Draw lines between resulting\n" @@ -2270,14 +2270,14 @@ msgstr "" "rezultate pentru a minimiza miscarile\n" "de ridicare a uneltei." -#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5680 -#: flatcamGUI/FlatCAMGUI.py:5921 flatcamTools/ToolNonCopperClear.py:215 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5687 +#: flatcamGUI/FlatCAMGUI.py:5928 flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolPaint.py:213 msgid "Contour:" msgstr "Contur:" -#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/FlatCAMGUI.py:5682 -#: flatcamGUI/FlatCAMGUI.py:5923 flatcamTools/ToolNonCopperClear.py:217 +#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/FlatCAMGUI.py:5689 +#: flatcamGUI/FlatCAMGUI.py:5930 flatcamTools/ToolNonCopperClear.py:217 #: flatcamTools/ToolPaint.py:215 msgid "" "Cut around the perimeter of the polygon\n" @@ -2286,21 +2286,21 @@ msgstr "" "Taie de-a lungul perimetrului poligonului\n" "pentru a elimina bavurile." -#: flatcamEditors/FlatCAMGeoEditor.py:510 +#: flatcamEditors/FlatCAMGeoEditor.py:509 msgid "Paint" msgstr "Pictează" -#: flatcamEditors/FlatCAMGeoEditor.py:528 flatcamGUI/FlatCAMGUI.py:648 -#: flatcamGUI/FlatCAMGUI.py:1865 flatcamGUI/ObjectUI.py:1314 +#: flatcamEditors/FlatCAMGeoEditor.py:527 flatcamGUI/FlatCAMGUI.py:648 +#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/ObjectUI.py:1314 #: flatcamTools/ToolPaint.py:341 msgid "Paint Tool" msgstr "Unealta Paint" -#: flatcamEditors/FlatCAMGeoEditor.py:564 +#: flatcamEditors/FlatCAMGeoEditor.py:563 msgid "[WARNING_NOTCL] Paint cancelled. No shape selected." msgstr "[WARNING_NOTCL] Operaţie Paint anulata. Nici-o forma selectată." -#: flatcamEditors/FlatCAMGeoEditor.py:575 flatcamTools/ToolCutOut.py:355 +#: flatcamEditors/FlatCAMGeoEditor.py:574 flatcamTools/ToolCutOut.py:355 #: flatcamTools/ToolCutOut.py:512 flatcamTools/ToolCutOut.py:651 #: flatcamTools/ToolCutOut.py:756 flatcamTools/ToolDblSided.py:363 msgid "" @@ -2310,14 +2310,14 @@ msgstr "" "[WARNING_NOTCL] Diametrul uneltei lipseste sau este intr-un format " "incompatibil. Adaugă-l și reîncearcă." -#: flatcamEditors/FlatCAMGeoEditor.py:586 +#: flatcamEditors/FlatCAMGeoEditor.py:585 msgid "" "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry." msgstr "" "[WARNING_NOTCL] Valoarea de suprapunere a uneltei lipseste sau este intr-un " "format incompatibil. Adaugă-o și reîncearcă." -#: flatcamEditors/FlatCAMGeoEditor.py:598 +#: flatcamEditors/FlatCAMGeoEditor.py:597 msgid "" "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and " "retry." @@ -2325,63 +2325,63 @@ msgstr "" "[WARNING_NOTCL] Valoarea de margine lipseste sau este intr-un format " "incompatibil. Adaugă-o și reîncearcă." -#: flatcamEditors/FlatCAMGeoEditor.py:607 -#: flatcamEditors/FlatCAMGeoEditor.py:2721 -#: flatcamEditors/FlatCAMGeoEditor.py:2747 -#: flatcamEditors/FlatCAMGeoEditor.py:2773 +#: flatcamEditors/FlatCAMGeoEditor.py:606 +#: flatcamEditors/FlatCAMGeoEditor.py:2707 +#: flatcamEditors/FlatCAMGeoEditor.py:2733 +#: flatcamEditors/FlatCAMGeoEditor.py:2759 #: flatcamTools/ToolNonCopperClear.py:813 flatcamTools/ToolProperties.py:104 msgid "Tools" msgstr "Unelte" -#: flatcamEditors/FlatCAMGeoEditor.py:618 -#: flatcamEditors/FlatCAMGeoEditor.py:991 -#: flatcamEditors/FlatCAMGrbEditor.py:4365 -#: flatcamEditors/FlatCAMGrbEditor.py:4750 flatcamGUI/FlatCAMGUI.py:659 -#: flatcamGUI/FlatCAMGUI.py:1878 flatcamTools/ToolTransform.py:398 +#: flatcamEditors/FlatCAMGeoEditor.py:617 +#: flatcamEditors/FlatCAMGeoEditor.py:990 +#: flatcamEditors/FlatCAMGrbEditor.py:4509 +#: flatcamEditors/FlatCAMGrbEditor.py:4894 flatcamGUI/FlatCAMGUI.py:659 +#: flatcamGUI/FlatCAMGUI.py:1881 flatcamTools/ToolTransform.py:398 msgid "Transform Tool" msgstr "Unealta Transformare" -#: flatcamEditors/FlatCAMGeoEditor.py:619 -#: flatcamEditors/FlatCAMGeoEditor.py:680 -#: flatcamEditors/FlatCAMGrbEditor.py:4366 -#: flatcamEditors/FlatCAMGrbEditor.py:4428 flatcamTools/ToolTransform.py:24 +#: flatcamEditors/FlatCAMGeoEditor.py:618 +#: flatcamEditors/FlatCAMGeoEditor.py:679 +#: flatcamEditors/FlatCAMGrbEditor.py:4510 +#: flatcamEditors/FlatCAMGrbEditor.py:4572 flatcamTools/ToolTransform.py:24 #: flatcamTools/ToolTransform.py:82 msgid "Rotate" msgstr "Rotaţie" -#: flatcamEditors/FlatCAMGeoEditor.py:620 -#: flatcamEditors/FlatCAMGrbEditor.py:4367 flatcamTools/ToolTransform.py:25 +#: flatcamEditors/FlatCAMGeoEditor.py:619 +#: flatcamEditors/FlatCAMGrbEditor.py:4511 flatcamTools/ToolTransform.py:25 msgid "Skew/Shear" msgstr "Deformare" -#: flatcamEditors/FlatCAMGeoEditor.py:621 -#: flatcamEditors/FlatCAMGrbEditor.py:2313 -#: flatcamEditors/FlatCAMGrbEditor.py:4368 flatcamGUI/FlatCAMGUI.py:722 -#: flatcamGUI/FlatCAMGUI.py:1944 flatcamGUI/ObjectUI.py:100 +#: flatcamEditors/FlatCAMGeoEditor.py:620 +#: flatcamEditors/FlatCAMGrbEditor.py:2455 +#: flatcamEditors/FlatCAMGrbEditor.py:4512 flatcamGUI/FlatCAMGUI.py:723 +#: flatcamGUI/FlatCAMGUI.py:1949 flatcamGUI/ObjectUI.py:100 #: flatcamTools/ToolTransform.py:26 msgid "Scale" msgstr "Scalare" -#: flatcamEditors/FlatCAMGeoEditor.py:622 -#: flatcamEditors/FlatCAMGrbEditor.py:4369 flatcamTools/ToolTransform.py:27 +#: flatcamEditors/FlatCAMGeoEditor.py:621 +#: flatcamEditors/FlatCAMGrbEditor.py:4513 flatcamTools/ToolTransform.py:27 msgid "Mirror (Flip)" msgstr "Oglindire" -#: flatcamEditors/FlatCAMGeoEditor.py:623 -#: flatcamEditors/FlatCAMGrbEditor.py:4370 flatcamGUI/ObjectUI.py:127 +#: flatcamEditors/FlatCAMGeoEditor.py:622 +#: flatcamEditors/FlatCAMGrbEditor.py:4514 flatcamGUI/ObjectUI.py:127 #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1452 #: flatcamTools/ToolTransform.py:28 msgid "Offset" msgstr "Ofset" -#: flatcamEditors/FlatCAMGeoEditor.py:634 -#: flatcamEditors/FlatCAMGrbEditor.py:4382 +#: flatcamEditors/FlatCAMGeoEditor.py:633 +#: flatcamEditors/FlatCAMGrbEditor.py:4526 #, python-format msgid "Editor %s" msgstr "Editor %s" -#: flatcamEditors/FlatCAMGeoEditor.py:668 -#: flatcamEditors/FlatCAMGrbEditor.py:4416 flatcamTools/ToolTransform.py:70 +#: flatcamEditors/FlatCAMGeoEditor.py:667 +#: flatcamEditors/FlatCAMGrbEditor.py:4560 flatcamTools/ToolTransform.py:70 msgid "" "Angle for Rotation action, in degrees.\n" "Float number between -360 and 359.\n" @@ -2392,8 +2392,8 @@ msgstr "" "Numerele pozitive inseamna o mișcare in sens ace ceasornic.\n" "Numerele negative inseamna o mișcare in sens invers ace ceasornic." -#: flatcamEditors/FlatCAMGeoEditor.py:682 -#: flatcamEditors/FlatCAMGrbEditor.py:4430 +#: flatcamEditors/FlatCAMGeoEditor.py:681 +#: flatcamEditors/FlatCAMGrbEditor.py:4574 msgid "" "Rotate the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2404,15 +2404,15 @@ msgstr "" "formei înconjurătoare care cuprinde\n" "toate formele selectate." -#: flatcamEditors/FlatCAMGeoEditor.py:705 -#: flatcamEditors/FlatCAMGrbEditor.py:4453 flatcamTools/ToolTransform.py:107 +#: flatcamEditors/FlatCAMGeoEditor.py:704 +#: flatcamEditors/FlatCAMGrbEditor.py:4597 flatcamTools/ToolTransform.py:107 msgid "Angle X:" msgstr "Unghi X:" -#: flatcamEditors/FlatCAMGeoEditor.py:707 -#: flatcamEditors/FlatCAMGeoEditor.py:725 -#: flatcamEditors/FlatCAMGrbEditor.py:4455 -#: flatcamEditors/FlatCAMGrbEditor.py:4473 flatcamTools/ToolTransform.py:109 +#: flatcamEditors/FlatCAMGeoEditor.py:706 +#: flatcamEditors/FlatCAMGeoEditor.py:724 +#: flatcamEditors/FlatCAMGrbEditor.py:4599 +#: flatcamEditors/FlatCAMGrbEditor.py:4617 flatcamTools/ToolTransform.py:109 #: flatcamTools/ToolTransform.py:127 msgid "" "Angle for Skew action, in degrees.\n" @@ -2421,15 +2421,15 @@ msgstr "" "Valoarea unghiului de Deformare, in grade.\n" "Ia valori Reale între -360 and 359 grade." -#: flatcamEditors/FlatCAMGeoEditor.py:716 -#: flatcamEditors/FlatCAMGrbEditor.py:4464 flatcamTools/ToolTransform.py:118 +#: flatcamEditors/FlatCAMGeoEditor.py:715 +#: flatcamEditors/FlatCAMGrbEditor.py:4608 flatcamTools/ToolTransform.py:118 msgid "Skew X" msgstr "Deformare X" -#: flatcamEditors/FlatCAMGeoEditor.py:718 -#: flatcamEditors/FlatCAMGeoEditor.py:736 -#: flatcamEditors/FlatCAMGrbEditor.py:4466 -#: flatcamEditors/FlatCAMGrbEditor.py:4484 +#: flatcamEditors/FlatCAMGeoEditor.py:717 +#: flatcamEditors/FlatCAMGeoEditor.py:735 +#: flatcamEditors/FlatCAMGrbEditor.py:4610 +#: flatcamEditors/FlatCAMGrbEditor.py:4628 msgid "" "Skew/shear the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2440,35 +2440,35 @@ msgstr "" "formei înconjurătoare care cuprinde\n" "toate formele selectate." -#: flatcamEditors/FlatCAMGeoEditor.py:723 -#: flatcamEditors/FlatCAMGrbEditor.py:4471 flatcamTools/ToolTransform.py:125 +#: flatcamEditors/FlatCAMGeoEditor.py:722 +#: flatcamEditors/FlatCAMGrbEditor.py:4615 flatcamTools/ToolTransform.py:125 msgid "Angle Y:" msgstr "Unghi Y:" -#: flatcamEditors/FlatCAMGeoEditor.py:734 -#: flatcamEditors/FlatCAMGrbEditor.py:4482 flatcamTools/ToolTransform.py:136 +#: flatcamEditors/FlatCAMGeoEditor.py:733 +#: flatcamEditors/FlatCAMGrbEditor.py:4626 flatcamTools/ToolTransform.py:136 msgid "Skew Y" msgstr "Deformare Y" -#: flatcamEditors/FlatCAMGeoEditor.py:762 -#: flatcamEditors/FlatCAMGrbEditor.py:4510 flatcamTools/ToolTransform.py:164 +#: flatcamEditors/FlatCAMGeoEditor.py:761 +#: flatcamEditors/FlatCAMGrbEditor.py:4654 flatcamTools/ToolTransform.py:164 msgid "Factor X:" msgstr "Factor X:" -#: flatcamEditors/FlatCAMGeoEditor.py:764 -#: flatcamEditors/FlatCAMGrbEditor.py:4512 flatcamTools/ToolTransform.py:166 +#: flatcamEditors/FlatCAMGeoEditor.py:763 +#: flatcamEditors/FlatCAMGrbEditor.py:4656 flatcamTools/ToolTransform.py:166 msgid "Factor for Scale action over X axis." msgstr "Factor pentru scalarea pe axa X" -#: flatcamEditors/FlatCAMGeoEditor.py:772 -#: flatcamEditors/FlatCAMGrbEditor.py:4520 flatcamTools/ToolTransform.py:174 +#: flatcamEditors/FlatCAMGeoEditor.py:771 +#: flatcamEditors/FlatCAMGrbEditor.py:4664 flatcamTools/ToolTransform.py:174 msgid "Scale X" msgstr "Scalează X" -#: flatcamEditors/FlatCAMGeoEditor.py:774 -#: flatcamEditors/FlatCAMGeoEditor.py:791 -#: flatcamEditors/FlatCAMGrbEditor.py:4522 -#: flatcamEditors/FlatCAMGrbEditor.py:4539 +#: flatcamEditors/FlatCAMGeoEditor.py:773 +#: flatcamEditors/FlatCAMGeoEditor.py:790 +#: flatcamEditors/FlatCAMGrbEditor.py:4666 +#: flatcamEditors/FlatCAMGrbEditor.py:4683 msgid "" "Scale the selected shape(s).\n" "The point of reference depends on \n" @@ -2478,29 +2478,29 @@ msgstr "" "Punctul de referinţă depinde de \n" "starea checkbox-ului >Referința scalare<." -#: flatcamEditors/FlatCAMGeoEditor.py:779 -#: flatcamEditors/FlatCAMGrbEditor.py:4527 flatcamTools/ToolTransform.py:181 +#: flatcamEditors/FlatCAMGeoEditor.py:778 +#: flatcamEditors/FlatCAMGrbEditor.py:4671 flatcamTools/ToolTransform.py:181 msgid "Factor Y:" msgstr "Factor Y:" -#: flatcamEditors/FlatCAMGeoEditor.py:781 -#: flatcamEditors/FlatCAMGrbEditor.py:4529 flatcamTools/ToolTransform.py:183 +#: flatcamEditors/FlatCAMGeoEditor.py:780 +#: flatcamEditors/FlatCAMGrbEditor.py:4673 flatcamTools/ToolTransform.py:183 msgid "Factor for Scale action over Y axis." msgstr "Factor pentru scalarea pe axa Y." -#: flatcamEditors/FlatCAMGeoEditor.py:789 -#: flatcamEditors/FlatCAMGrbEditor.py:4537 flatcamTools/ToolTransform.py:191 +#: flatcamEditors/FlatCAMGeoEditor.py:788 +#: flatcamEditors/FlatCAMGrbEditor.py:4681 flatcamTools/ToolTransform.py:191 msgid "Scale Y" msgstr "Scalează Y" -#: flatcamEditors/FlatCAMGeoEditor.py:798 -#: flatcamEditors/FlatCAMGrbEditor.py:4546 flatcamGUI/FlatCAMGUI.py:6270 +#: flatcamEditors/FlatCAMGeoEditor.py:797 +#: flatcamEditors/FlatCAMGrbEditor.py:4690 flatcamGUI/FlatCAMGUI.py:6277 #: flatcamTools/ToolTransform.py:200 msgid "Link" msgstr "Legatura" -#: flatcamEditors/FlatCAMGeoEditor.py:800 -#: flatcamEditors/FlatCAMGrbEditor.py:4548 +#: flatcamEditors/FlatCAMGeoEditor.py:799 +#: flatcamEditors/FlatCAMGrbEditor.py:4692 msgid "" "Scale the selected shape(s)\n" "using the Scale Factor X for both axis." @@ -2508,14 +2508,14 @@ msgstr "" "Scalează formele selectate\n" "folsoind factorul: Factor X pentru ambele axe." -#: flatcamEditors/FlatCAMGeoEditor.py:806 -#: flatcamEditors/FlatCAMGrbEditor.py:4554 flatcamGUI/FlatCAMGUI.py:6278 +#: flatcamEditors/FlatCAMGeoEditor.py:805 +#: flatcamEditors/FlatCAMGrbEditor.py:4698 flatcamGUI/FlatCAMGUI.py:6285 #: flatcamTools/ToolTransform.py:208 msgid "Scale Reference" msgstr "Referința scalare" -#: flatcamEditors/FlatCAMGeoEditor.py:808 -#: flatcamEditors/FlatCAMGrbEditor.py:4556 +#: flatcamEditors/FlatCAMGeoEditor.py:807 +#: flatcamEditors/FlatCAMGrbEditor.py:4700 msgid "" "Scale the selected shape(s)\n" "using the origin reference when checked,\n" @@ -2528,25 +2528,25 @@ msgstr "" "toate formele selectate când nu este\n" "bifat și este originea când este bifat." -#: flatcamEditors/FlatCAMGeoEditor.py:836 -#: flatcamEditors/FlatCAMGrbEditor.py:4585 flatcamTools/ToolTransform.py:238 +#: flatcamEditors/FlatCAMGeoEditor.py:835 +#: flatcamEditors/FlatCAMGrbEditor.py:4729 flatcamTools/ToolTransform.py:238 msgid "Value X:" msgstr "Valoare X:" -#: flatcamEditors/FlatCAMGeoEditor.py:838 -#: flatcamEditors/FlatCAMGrbEditor.py:4587 flatcamTools/ToolTransform.py:240 +#: flatcamEditors/FlatCAMGeoEditor.py:837 +#: flatcamEditors/FlatCAMGrbEditor.py:4731 flatcamTools/ToolTransform.py:240 msgid "Value for Offset action on X axis." msgstr "Valoare pentru deplasarea pe axa X." -#: flatcamEditors/FlatCAMGeoEditor.py:846 -#: flatcamEditors/FlatCAMGrbEditor.py:4595 flatcamTools/ToolTransform.py:248 +#: flatcamEditors/FlatCAMGeoEditor.py:845 +#: flatcamEditors/FlatCAMGrbEditor.py:4739 flatcamTools/ToolTransform.py:248 msgid "Offset X" msgstr "Ofset pe X" -#: flatcamEditors/FlatCAMGeoEditor.py:848 -#: flatcamEditors/FlatCAMGeoEditor.py:866 -#: flatcamEditors/FlatCAMGrbEditor.py:4597 -#: flatcamEditors/FlatCAMGrbEditor.py:4615 +#: flatcamEditors/FlatCAMGeoEditor.py:847 +#: flatcamEditors/FlatCAMGeoEditor.py:865 +#: flatcamEditors/FlatCAMGrbEditor.py:4741 +#: flatcamEditors/FlatCAMGrbEditor.py:4759 msgid "" "Offset the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2557,30 +2557,30 @@ msgstr "" "formei înconjurătoare care cuprinde\n" "toate formele selectate.\n" -#: flatcamEditors/FlatCAMGeoEditor.py:854 -#: flatcamEditors/FlatCAMGrbEditor.py:4603 flatcamTools/ToolTransform.py:255 +#: flatcamEditors/FlatCAMGeoEditor.py:853 +#: flatcamEditors/FlatCAMGrbEditor.py:4747 flatcamTools/ToolTransform.py:255 msgid "Value Y:" msgstr "Valoare Y:" -#: flatcamEditors/FlatCAMGeoEditor.py:856 -#: flatcamEditors/FlatCAMGrbEditor.py:4605 flatcamTools/ToolTransform.py:257 +#: flatcamEditors/FlatCAMGeoEditor.py:855 +#: flatcamEditors/FlatCAMGrbEditor.py:4749 flatcamTools/ToolTransform.py:257 msgid "Value for Offset action on Y axis." msgstr "Valoare pentru deplasarea pe axa Y." -#: flatcamEditors/FlatCAMGeoEditor.py:864 -#: flatcamEditors/FlatCAMGrbEditor.py:4613 flatcamTools/ToolTransform.py:265 +#: flatcamEditors/FlatCAMGeoEditor.py:863 +#: flatcamEditors/FlatCAMGrbEditor.py:4757 flatcamTools/ToolTransform.py:265 msgid "Offset Y" msgstr "Ofset pe Y" -#: flatcamEditors/FlatCAMGeoEditor.py:895 -#: flatcamEditors/FlatCAMGrbEditor.py:4644 flatcamTools/ToolTransform.py:295 +#: flatcamEditors/FlatCAMGeoEditor.py:894 +#: flatcamEditors/FlatCAMGrbEditor.py:4788 flatcamTools/ToolTransform.py:295 msgid "Flip on X" msgstr "Oglindește pe X" -#: flatcamEditors/FlatCAMGeoEditor.py:897 -#: flatcamEditors/FlatCAMGeoEditor.py:905 -#: flatcamEditors/FlatCAMGrbEditor.py:4646 -#: flatcamEditors/FlatCAMGrbEditor.py:4654 +#: flatcamEditors/FlatCAMGeoEditor.py:896 +#: flatcamEditors/FlatCAMGeoEditor.py:904 +#: flatcamEditors/FlatCAMGrbEditor.py:4790 +#: flatcamEditors/FlatCAMGrbEditor.py:4798 msgid "" "Flip the selected shape(s) over the X axis.\n" "Does not create a new shape." @@ -2588,18 +2588,18 @@ msgstr "" "Oglindește formele selectate peste axa X\n" "Nu crează noi forme." -#: flatcamEditors/FlatCAMGeoEditor.py:903 -#: flatcamEditors/FlatCAMGrbEditor.py:4652 flatcamTools/ToolTransform.py:303 +#: flatcamEditors/FlatCAMGeoEditor.py:902 +#: flatcamEditors/FlatCAMGrbEditor.py:4796 flatcamTools/ToolTransform.py:303 msgid "Flip on Y" msgstr "Oglindește pe Y" -#: flatcamEditors/FlatCAMGeoEditor.py:912 -#: flatcamEditors/FlatCAMGrbEditor.py:4661 flatcamTools/ToolTransform.py:312 +#: flatcamEditors/FlatCAMGeoEditor.py:911 +#: flatcamEditors/FlatCAMGrbEditor.py:4805 flatcamTools/ToolTransform.py:312 msgid "Ref Pt" msgstr "Pt ref" -#: flatcamEditors/FlatCAMGeoEditor.py:914 -#: flatcamEditors/FlatCAMGrbEditor.py:4663 +#: flatcamEditors/FlatCAMGeoEditor.py:913 +#: flatcamEditors/FlatCAMGrbEditor.py:4807 msgid "" "Flip the selected shape(s)\n" "around the point in Point Entry Field.\n" @@ -2622,13 +2622,13 @@ msgstr "" "Alternativ se pot introduce manual in formatul (x, y). \n" "La final click pe >Oglindește pe X(Y)<." -#: flatcamEditors/FlatCAMGeoEditor.py:926 -#: flatcamEditors/FlatCAMGrbEditor.py:4675 flatcamTools/ToolTransform.py:325 +#: flatcamEditors/FlatCAMGeoEditor.py:925 +#: flatcamEditors/FlatCAMGrbEditor.py:4819 flatcamTools/ToolTransform.py:325 msgid "Point:" msgstr "Punct:" -#: flatcamEditors/FlatCAMGeoEditor.py:928 -#: flatcamEditors/FlatCAMGrbEditor.py:4677 +#: flatcamEditors/FlatCAMGeoEditor.py:927 +#: flatcamEditors/FlatCAMGrbEditor.py:4821 msgid "" "Coordinates in format (x, y) used as reference for mirroring.\n" "The 'x' in (x, y) will be used when using Flip on X and\n" @@ -2638,8 +2638,8 @@ msgstr "" "Valoarea 'x' in (x, y) va fi folosita când se face oglindire pe X\n" "și valoarea 'y' in (x, y) va fi folosita când se face oglindire pe Y." -#: flatcamEditors/FlatCAMGeoEditor.py:940 -#: flatcamEditors/FlatCAMGrbEditor.py:4689 flatcamTools/ToolTransform.py:339 +#: flatcamEditors/FlatCAMGeoEditor.py:939 +#: flatcamEditors/FlatCAMGrbEditor.py:4833 flatcamTools/ToolTransform.py:339 msgid "" "The point coordinates can be captured by\n" "left click on canvas together with pressing\n" @@ -2650,393 +2650,393 @@ msgstr "" "tasta SHIFT.\n" "La final, apasa butonul >Adaugă< pt a le insera." -#: flatcamEditors/FlatCAMGeoEditor.py:1055 -#: flatcamEditors/FlatCAMGrbEditor.py:4814 +#: flatcamEditors/FlatCAMGeoEditor.py:1054 +#: flatcamEditors/FlatCAMGrbEditor.py:4958 msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected." msgstr "[WARNING_NOTCL] Transformare anulata. Nici-o forma nu este selectată." -#: flatcamEditors/FlatCAMGeoEditor.py:1076 -#: flatcamEditors/FlatCAMGrbEditor.py:4834 flatcamTools/ToolTransform.py:468 +#: flatcamEditors/FlatCAMGeoEditor.py:1075 +#: flatcamEditors/FlatCAMGrbEditor.py:4978 flatcamTools/ToolTransform.py:468 msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number." msgstr "" "[ERROR_NOTCL] Valoare incorecta intodusa pentru Rotaţie, foloseşte un număr " "Real." -#: flatcamEditors/FlatCAMGeoEditor.py:1113 -#: flatcamEditors/FlatCAMGrbEditor.py:4877 flatcamTools/ToolTransform.py:502 +#: flatcamEditors/FlatCAMGeoEditor.py:1112 +#: flatcamEditors/FlatCAMGrbEditor.py:5021 flatcamTools/ToolTransform.py:502 msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number." msgstr "" "[ERROR_NOTCL] Valoare incorecta intodusa pentru Deformare X, foloseşte un " "număr Real." -#: flatcamEditors/FlatCAMGeoEditor.py:1134 -#: flatcamEditors/FlatCAMGrbEditor.py:4904 flatcamTools/ToolTransform.py:520 +#: flatcamEditors/FlatCAMGeoEditor.py:1133 +#: flatcamEditors/FlatCAMGrbEditor.py:5048 flatcamTools/ToolTransform.py:520 msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number." msgstr "" "[ERROR_NOTCL] Valoare incorecta intodusa pentru Deformare Y, foloseşte un " "număr Real." -#: flatcamEditors/FlatCAMGeoEditor.py:1155 -#: flatcamEditors/FlatCAMGrbEditor.py:4931 flatcamTools/ToolTransform.py:538 +#: flatcamEditors/FlatCAMGeoEditor.py:1154 +#: flatcamEditors/FlatCAMGrbEditor.py:5075 flatcamTools/ToolTransform.py:538 msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number." msgstr "" "[ERROR_NOTCL] Valoare incorecta intodusa pentru Scalare X, foloseşte un " "număr Real." -#: flatcamEditors/FlatCAMGeoEditor.py:1192 -#: flatcamEditors/FlatCAMGrbEditor.py:4972 flatcamTools/ToolTransform.py:572 +#: flatcamEditors/FlatCAMGeoEditor.py:1191 +#: flatcamEditors/FlatCAMGrbEditor.py:5116 flatcamTools/ToolTransform.py:572 msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number." msgstr "" "[ERROR_NOTCL] Valoare incorecta intodusa pentru Scalare Y, foloseşte un " "număr Real." -#: flatcamEditors/FlatCAMGeoEditor.py:1224 -#: flatcamEditors/FlatCAMGrbEditor.py:5010 flatcamTools/ToolTransform.py:601 +#: flatcamEditors/FlatCAMGeoEditor.py:1223 +#: flatcamEditors/FlatCAMGrbEditor.py:5154 flatcamTools/ToolTransform.py:601 msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number." msgstr "" "[ERROR_NOTCL] Valoare incorecta intodusa pentru Ofset pe X, foloseşte un " "număr Real." -#: flatcamEditors/FlatCAMGeoEditor.py:1245 -#: flatcamEditors/FlatCAMGrbEditor.py:5036 flatcamTools/ToolTransform.py:619 +#: flatcamEditors/FlatCAMGeoEditor.py:1244 +#: flatcamEditors/FlatCAMGrbEditor.py:5180 flatcamTools/ToolTransform.py:619 msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number." msgstr "" "[ERROR_NOTCL] Valoare incorecta intodusa pentru Ofset pe Y, foloseşte un " "număr Real." -#: flatcamEditors/FlatCAMGeoEditor.py:1263 -#: flatcamEditors/FlatCAMGrbEditor.py:5059 +#: flatcamEditors/FlatCAMGeoEditor.py:1262 +#: flatcamEditors/FlatCAMGrbEditor.py:5203 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!" msgstr "" "[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a " "putea face Rotaţie!" -#: flatcamEditors/FlatCAMGeoEditor.py:1266 -#: flatcamEditors/FlatCAMGrbEditor.py:5062 flatcamTools/ToolTransform.py:640 +#: flatcamEditors/FlatCAMGeoEditor.py:1265 +#: flatcamEditors/FlatCAMGrbEditor.py:5206 flatcamTools/ToolTransform.py:640 msgid "Appying Rotate" msgstr "Execuţie Rotaţie" -#: flatcamEditors/FlatCAMGeoEditor.py:1294 -#: flatcamEditors/FlatCAMGrbEditor.py:5093 +#: flatcamEditors/FlatCAMGeoEditor.py:1293 +#: flatcamEditors/FlatCAMGrbEditor.py:5237 msgid "[success] Done. Rotate completed." msgstr "[success] Executat. Rotaţie finalizata." -#: flatcamEditors/FlatCAMGeoEditor.py:1310 -#: flatcamEditors/FlatCAMGrbEditor.py:5112 +#: flatcamEditors/FlatCAMGeoEditor.py:1309 +#: flatcamEditors/FlatCAMGrbEditor.py:5256 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!" msgstr "" "[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a " "putea face Oglindire!" -#: flatcamEditors/FlatCAMGeoEditor.py:1313 -#: flatcamEditors/FlatCAMGrbEditor.py:5115 flatcamTools/ToolTransform.py:691 +#: flatcamEditors/FlatCAMGeoEditor.py:1312 +#: flatcamEditors/FlatCAMGrbEditor.py:5259 flatcamTools/ToolTransform.py:691 msgid "Applying Flip" msgstr "Execuţie Oglindire" -#: flatcamEditors/FlatCAMGeoEditor.py:1343 -#: flatcamEditors/FlatCAMGrbEditor.py:5152 flatcamTools/ToolTransform.py:733 +#: flatcamEditors/FlatCAMGeoEditor.py:1342 +#: flatcamEditors/FlatCAMGrbEditor.py:5296 flatcamTools/ToolTransform.py:733 msgid "[success] Flip on the Y axis done ..." msgstr "Oglindirea pe axa X efectuata ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1346 -#: flatcamEditors/FlatCAMGrbEditor.py:5160 flatcamTools/ToolTransform.py:742 +#: flatcamEditors/FlatCAMGeoEditor.py:1345 +#: flatcamEditors/FlatCAMGrbEditor.py:5304 flatcamTools/ToolTransform.py:742 msgid "[success] Flip on the X axis done ..." msgstr "Oglindirea pe axa Y efectuata ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1365 -#: flatcamEditors/FlatCAMGrbEditor.py:5180 +#: flatcamEditors/FlatCAMGeoEditor.py:1364 +#: flatcamEditors/FlatCAMGrbEditor.py:5324 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!" msgstr "" "[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a " "putea face Deformare!" -#: flatcamEditors/FlatCAMGeoEditor.py:1368 -#: flatcamEditors/FlatCAMGrbEditor.py:5183 flatcamTools/ToolTransform.py:760 +#: flatcamEditors/FlatCAMGeoEditor.py:1367 +#: flatcamEditors/FlatCAMGrbEditor.py:5327 flatcamTools/ToolTransform.py:760 msgid "Applying Skew" msgstr "Execuţie Deformare" -#: flatcamEditors/FlatCAMGeoEditor.py:1393 -#: flatcamEditors/FlatCAMGrbEditor.py:5216 flatcamTools/ToolTransform.py:791 +#: flatcamEditors/FlatCAMGeoEditor.py:1392 +#: flatcamEditors/FlatCAMGrbEditor.py:5360 flatcamTools/ToolTransform.py:791 #, python-format msgid "[success] Skew on the %s axis done ..." msgstr "[success] Deformarea pe axa %s executată ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1397 -#: flatcamEditors/FlatCAMGrbEditor.py:5220 flatcamTools/ToolTransform.py:795 +#: flatcamEditors/FlatCAMGeoEditor.py:1396 +#: flatcamEditors/FlatCAMGrbEditor.py:5364 flatcamTools/ToolTransform.py:795 #, python-format msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed." msgstr "[ERROR_NOTCL] Datorita erorii: %s, Deformarea a fost anulata." -#: flatcamEditors/FlatCAMGeoEditor.py:1408 -#: flatcamEditors/FlatCAMGrbEditor.py:5239 +#: flatcamEditors/FlatCAMGeoEditor.py:1407 +#: flatcamEditors/FlatCAMGrbEditor.py:5383 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!" msgstr "" "[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a " "putea face Scalare!" -#: flatcamEditors/FlatCAMGeoEditor.py:1411 -#: flatcamEditors/FlatCAMGrbEditor.py:5242 flatcamTools/ToolTransform.py:809 +#: flatcamEditors/FlatCAMGeoEditor.py:1410 +#: flatcamEditors/FlatCAMGrbEditor.py:5386 flatcamTools/ToolTransform.py:809 msgid "Applying Scale" msgstr "Execuţie Scalare" -#: flatcamEditors/FlatCAMGeoEditor.py:1444 -#: flatcamEditors/FlatCAMGrbEditor.py:5278 flatcamTools/ToolTransform.py:848 +#: flatcamEditors/FlatCAMGeoEditor.py:1443 +#: flatcamEditors/FlatCAMGrbEditor.py:5422 flatcamTools/ToolTransform.py:848 #, python-format msgid "[success] Scale on the %s axis done ..." msgstr "[success] Scalarea pe axa %s executată ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1447 -#: flatcamEditors/FlatCAMGrbEditor.py:5281 flatcamTools/ToolTransform.py:851 +#: flatcamEditors/FlatCAMGeoEditor.py:1446 +#: flatcamEditors/FlatCAMGrbEditor.py:5425 flatcamTools/ToolTransform.py:851 #, python-format msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed." msgstr "[ERROR_NOTCL] Datorita erorii: %s, Scalarea a fost anulata ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1456 -#: flatcamEditors/FlatCAMGrbEditor.py:5294 +#: flatcamEditors/FlatCAMGeoEditor.py:1455 +#: flatcamEditors/FlatCAMGrbEditor.py:5438 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!" msgstr "" "[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a " "putea face Ofset!" -#: flatcamEditors/FlatCAMGeoEditor.py:1459 -#: flatcamEditors/FlatCAMGrbEditor.py:5297 flatcamTools/ToolTransform.py:861 +#: flatcamEditors/FlatCAMGeoEditor.py:1458 +#: flatcamEditors/FlatCAMGrbEditor.py:5441 flatcamTools/ToolTransform.py:861 msgid "Applying Offset" msgstr "Execuţie Ofset" -#: flatcamEditors/FlatCAMGeoEditor.py:1483 -#: flatcamEditors/FlatCAMGrbEditor.py:5318 flatcamTools/ToolTransform.py:880 +#: flatcamEditors/FlatCAMGeoEditor.py:1469 +#: flatcamEditors/FlatCAMGrbEditor.py:5462 flatcamTools/ToolTransform.py:880 #, python-format msgid "[success] Offset on the %s axis done ..." msgstr "[success] Deplasarea pe axa %s executată ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1487 -#: flatcamEditors/FlatCAMGrbEditor.py:5322 flatcamTools/ToolTransform.py:884 +#: flatcamEditors/FlatCAMGeoEditor.py:1473 +#: flatcamEditors/FlatCAMGrbEditor.py:5466 flatcamTools/ToolTransform.py:884 #, python-format msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed." msgstr "[ERROR_NOTCL] Datorita erorii: %s, Deplasarea a fost anulata." -#: flatcamEditors/FlatCAMGeoEditor.py:1491 -#: flatcamEditors/FlatCAMGrbEditor.py:5326 +#: flatcamEditors/FlatCAMGeoEditor.py:1477 +#: flatcamEditors/FlatCAMGrbEditor.py:5470 msgid "Rotate ..." msgstr "Rotaţie ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1492 -#: flatcamEditors/FlatCAMGeoEditor.py:1549 -#: flatcamEditors/FlatCAMGeoEditor.py:1566 -#: flatcamEditors/FlatCAMGrbEditor.py:5327 -#: flatcamEditors/FlatCAMGrbEditor.py:5384 -#: flatcamEditors/FlatCAMGrbEditor.py:5401 +#: flatcamEditors/FlatCAMGeoEditor.py:1478 +#: flatcamEditors/FlatCAMGeoEditor.py:1535 +#: flatcamEditors/FlatCAMGeoEditor.py:1552 +#: flatcamEditors/FlatCAMGrbEditor.py:5471 +#: flatcamEditors/FlatCAMGrbEditor.py:5528 +#: flatcamEditors/FlatCAMGrbEditor.py:5545 msgid "Enter an Angle Value (degrees):" msgstr "Introdu o valoare in grade pt Unghi:" -#: flatcamEditors/FlatCAMGeoEditor.py:1501 -#: flatcamEditors/FlatCAMGrbEditor.py:5336 +#: flatcamEditors/FlatCAMGeoEditor.py:1487 +#: flatcamEditors/FlatCAMGrbEditor.py:5480 msgid "[success] Geometry shape rotate done..." msgstr "[success] Rotatia formei geometrice executată ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1506 -#: flatcamEditors/FlatCAMGrbEditor.py:5341 +#: flatcamEditors/FlatCAMGeoEditor.py:1492 +#: flatcamEditors/FlatCAMGrbEditor.py:5485 msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..." msgstr "[WARNING_NOTCL] Rotatia formei geometrice anulata ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1512 -#: flatcamEditors/FlatCAMGrbEditor.py:5347 +#: flatcamEditors/FlatCAMGeoEditor.py:1498 +#: flatcamEditors/FlatCAMGrbEditor.py:5491 msgid "Offset on X axis ..." msgstr "Ofset pe axa X ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1513 -#: flatcamEditors/FlatCAMGeoEditor.py:1532 -#: flatcamEditors/FlatCAMGrbEditor.py:5348 -#: flatcamEditors/FlatCAMGrbEditor.py:5367 +#: flatcamEditors/FlatCAMGeoEditor.py:1499 +#: flatcamEditors/FlatCAMGeoEditor.py:1518 +#: flatcamEditors/FlatCAMGrbEditor.py:5492 +#: flatcamEditors/FlatCAMGrbEditor.py:5511 #, python-format msgid "Enter a distance Value (%s):" msgstr "Introdu of valoare pt Distanta (%s):" -#: flatcamEditors/FlatCAMGeoEditor.py:1522 -#: flatcamEditors/FlatCAMGrbEditor.py:5357 +#: flatcamEditors/FlatCAMGeoEditor.py:1508 +#: flatcamEditors/FlatCAMGrbEditor.py:5501 msgid "[success] Geometry shape offset on X axis done..." msgstr "[success] Deplasarea formei geometrice pe axa X executată ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1526 -#: flatcamEditors/FlatCAMGrbEditor.py:5361 +#: flatcamEditors/FlatCAMGeoEditor.py:1512 +#: flatcamEditors/FlatCAMGrbEditor.py:5505 msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..." msgstr "[WARNING_NOTCL] Deplasarea formei geometrice pe axa X anulata ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1531 -#: flatcamEditors/FlatCAMGrbEditor.py:5366 +#: flatcamEditors/FlatCAMGeoEditor.py:1517 +#: flatcamEditors/FlatCAMGrbEditor.py:5510 msgid "Offset on Y axis ..." msgstr "Ofset pe axa Y ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1541 -#: flatcamEditors/FlatCAMGrbEditor.py:5376 +#: flatcamEditors/FlatCAMGeoEditor.py:1527 +#: flatcamEditors/FlatCAMGrbEditor.py:5520 msgid "[success] Geometry shape offset on Y axis done..." msgstr "[success] Deplasarea formei geometrice pe axa Y executată ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1545 -#: flatcamEditors/FlatCAMGrbEditor.py:5380 +#: flatcamEditors/FlatCAMGeoEditor.py:1531 +#: flatcamEditors/FlatCAMGrbEditor.py:5524 msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..." msgstr "[WARNING_NOTCL] Deplasarea formei geometrice pe axa Y anulata ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1548 -#: flatcamEditors/FlatCAMGrbEditor.py:5383 +#: flatcamEditors/FlatCAMGeoEditor.py:1534 +#: flatcamEditors/FlatCAMGrbEditor.py:5527 msgid "Skew on X axis ..." msgstr "Deformare pe axa X ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1558 -#: flatcamEditors/FlatCAMGrbEditor.py:5393 +#: flatcamEditors/FlatCAMGeoEditor.py:1544 +#: flatcamEditors/FlatCAMGrbEditor.py:5537 msgid "[success] Geometry shape skew on X axis done..." msgstr "[success] Deformarea formei geometrice pe axa X executată ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1562 -#: flatcamEditors/FlatCAMGrbEditor.py:5397 +#: flatcamEditors/FlatCAMGeoEditor.py:1548 +#: flatcamEditors/FlatCAMGrbEditor.py:5541 msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..." msgstr "[WARNING_NOTCL] Deformarea formei geometrice pe axa X anulata ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1565 -#: flatcamEditors/FlatCAMGrbEditor.py:5400 +#: flatcamEditors/FlatCAMGeoEditor.py:1551 +#: flatcamEditors/FlatCAMGrbEditor.py:5544 msgid "Skew on Y axis ..." msgstr "Deformare pe axa Y ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1575 -#: flatcamEditors/FlatCAMGrbEditor.py:5410 +#: flatcamEditors/FlatCAMGeoEditor.py:1561 +#: flatcamEditors/FlatCAMGrbEditor.py:5554 msgid "[success] Geometry shape skew on Y axis done..." msgstr "[success] Deformarea formei geometrice pe axa Y executată ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1579 -#: flatcamEditors/FlatCAMGrbEditor.py:5414 +#: flatcamEditors/FlatCAMGeoEditor.py:1565 +#: flatcamEditors/FlatCAMGrbEditor.py:5558 msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..." msgstr "[success] Deformarea formei geometrice pe axa Y executată ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1943 -#: flatcamEditors/FlatCAMGeoEditor.py:1994 -#: flatcamEditors/FlatCAMGrbEditor.py:1351 -#: flatcamEditors/FlatCAMGrbEditor.py:1420 +#: flatcamEditors/FlatCAMGeoEditor.py:1929 +#: flatcamEditors/FlatCAMGeoEditor.py:1980 +#: flatcamEditors/FlatCAMGrbEditor.py:1354 +#: flatcamEditors/FlatCAMGrbEditor.py:1423 msgid "Click on Center point ..." msgstr "Click pe punctul de Centru ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1950 -#: flatcamEditors/FlatCAMGrbEditor.py:1359 +#: flatcamEditors/FlatCAMGeoEditor.py:1936 +#: flatcamEditors/FlatCAMGrbEditor.py:1362 msgid "Click on Perimeter point to complete ..." msgstr "Click pe un punct aflat pe Circumferintă pentru terminare ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1979 +#: flatcamEditors/FlatCAMGeoEditor.py:1965 msgid "[success] Done. Adding Circle completed." -msgstr "[success] Executat. Adaugarea unei forme Cerc terminata." +msgstr "[success] Executat. Adăugarea unei forme Cerc terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2014 -#: flatcamEditors/FlatCAMGrbEditor.py:1445 +#: flatcamEditors/FlatCAMGeoEditor.py:2000 +#: flatcamEditors/FlatCAMGrbEditor.py:1448 msgid "Click on Start point ..." msgstr "Click pe punctul de Start ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2016 -#: flatcamEditors/FlatCAMGrbEditor.py:1447 +#: flatcamEditors/FlatCAMGeoEditor.py:2002 +#: flatcamEditors/FlatCAMGrbEditor.py:1450 msgid "Click on Point3 ..." msgstr "Click pe Punctul3 ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2018 -#: flatcamEditors/FlatCAMGrbEditor.py:1449 +#: flatcamEditors/FlatCAMGeoEditor.py:2004 +#: flatcamEditors/FlatCAMGrbEditor.py:1452 msgid "Click on Stop point ..." msgstr "Click pe punctulde Stop ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2023 -#: flatcamEditors/FlatCAMGrbEditor.py:1454 +#: flatcamEditors/FlatCAMGeoEditor.py:2009 +#: flatcamEditors/FlatCAMGrbEditor.py:1457 msgid "Click on Stop point to complete ..." msgstr "Click pe punctul de Stop pentru terminare ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2025 -#: flatcamEditors/FlatCAMGrbEditor.py:1456 +#: flatcamEditors/FlatCAMGeoEditor.py:2011 +#: flatcamEditors/FlatCAMGrbEditor.py:1459 msgid "Click on Point2 to complete ..." msgstr "Click pe Punctul2 pentru terminare ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2027 -#: flatcamEditors/FlatCAMGrbEditor.py:1458 +#: flatcamEditors/FlatCAMGeoEditor.py:2013 +#: flatcamEditors/FlatCAMGrbEditor.py:1461 msgid "Click on Center point to complete ..." msgstr "Click pe punctul de Centru pentru terminare ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2039 -#: flatcamEditors/FlatCAMGrbEditor.py:1470 +#: flatcamEditors/FlatCAMGeoEditor.py:2025 +#: flatcamEditors/FlatCAMGrbEditor.py:1473 #, python-format msgid "Direction: %s" msgstr "Direcţie: %s" -#: flatcamEditors/FlatCAMGeoEditor.py:2049 -#: flatcamEditors/FlatCAMGrbEditor.py:1480 +#: flatcamEditors/FlatCAMGeoEditor.py:2035 +#: flatcamEditors/FlatCAMGrbEditor.py:1483 msgid "Mode: Start -> Stop -> Center. Click on Start point ..." msgstr "Mod: Start -> Stop -> Centru. Click pe punctul de Start ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2052 -#: flatcamEditors/FlatCAMGrbEditor.py:1483 +#: flatcamEditors/FlatCAMGeoEditor.py:2038 +#: flatcamEditors/FlatCAMGrbEditor.py:1486 msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..." msgstr "Mod: Point1 -> Point3 -> Point2. Click pe Punctul1 ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2055 -#: flatcamEditors/FlatCAMGrbEditor.py:1486 +#: flatcamEditors/FlatCAMGeoEditor.py:2041 +#: flatcamEditors/FlatCAMGrbEditor.py:1489 msgid "Mode: Center -> Start -> Stop. Click on Center point ..." msgstr "Mod: Center -> Start -> Stop. Click pe punctul de Centru ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2193 +#: flatcamEditors/FlatCAMGeoEditor.py:2179 msgid "[success] Done. Arc completed." -msgstr "[success] Executat. Adaugarea unei forme Arc terminata." +msgstr "[success] Executat. Adăugarea unei forme Arc terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2212 -#: flatcamEditors/FlatCAMGeoEditor.py:2265 -#: flatcamEditors/FlatCAMGeoEditor.py:2640 +#: flatcamEditors/FlatCAMGeoEditor.py:2198 +#: flatcamEditors/FlatCAMGeoEditor.py:2251 +#: flatcamEditors/FlatCAMGeoEditor.py:2626 msgid "Click on 1st corner ..." msgstr "Click pe primul colt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2218 +#: flatcamEditors/FlatCAMGeoEditor.py:2204 msgid "Click on opposite corner to complete ..." msgstr "Click pe punctul opus pentru terminare ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2246 +#: flatcamEditors/FlatCAMGeoEditor.py:2232 msgid "[success] Done. Rectangle completed." msgstr "[success] Executat. Rotaţie finalizata." -#: flatcamEditors/FlatCAMGeoEditor.py:2272 +#: flatcamEditors/FlatCAMGeoEditor.py:2258 msgid "Click on next Point or click right mouse button to complete ..." msgstr "" "Click pe punctul următor sau click buton dreapta al mousului pentru " "terminare ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2300 +#: flatcamEditors/FlatCAMGeoEditor.py:2286 msgid "[success] Done. Polygon completed." -msgstr "[success] Executat. Adaugarea unei forme Poligon terminata." +msgstr "[success] Executat. Adăugarea unei forme Poligon terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2310 -#: flatcamEditors/FlatCAMGeoEditor.py:2356 -#: flatcamEditors/FlatCAMGrbEditor.py:1055 -#: flatcamEditors/FlatCAMGrbEditor.py:1249 +#: flatcamEditors/FlatCAMGeoEditor.py:2296 +#: flatcamEditors/FlatCAMGeoEditor.py:2342 +#: flatcamEditors/FlatCAMGrbEditor.py:1058 +#: flatcamEditors/FlatCAMGrbEditor.py:1252 msgid "Backtracked one point ..." msgstr "Revenit la penultimul Punct ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2338 +#: flatcamEditors/FlatCAMGeoEditor.py:2324 msgid "[success] Done. Path completed." -msgstr "[success] Executata. Adaugarea unei forme tip Cale terminata." +msgstr "[success] Executata. Adăugarea unei forme tip Cale terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2461 +#: flatcamEditors/FlatCAMGeoEditor.py:2447 msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..." msgstr "" "[WARNING_NOTCL] MUTARE: Nici-o forma nu este selectată. Selectează o forma " "pentru a putea face deplasare!" -#: flatcamEditors/FlatCAMGeoEditor.py:2463 -#: flatcamEditors/FlatCAMGeoEditor.py:2475 +#: flatcamEditors/FlatCAMGeoEditor.py:2449 +#: flatcamEditors/FlatCAMGeoEditor.py:2461 msgid " MOVE: Click on reference point ..." msgstr "MUTARE: Click pe punctul de referinţă ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2466 +#: flatcamEditors/FlatCAMGeoEditor.py:2452 msgid " Click on destination point ..." msgstr " Click pe punctul de Destinaţie ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2500 +#: flatcamEditors/FlatCAMGeoEditor.py:2486 msgid "[success] Done. Geometry(s) Move completed." -msgstr "[success] Executat. Mutarea Geometriilor terminata." +msgstr "[success] Executat. Mutarea Geometriilor terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2620 +#: flatcamEditors/FlatCAMGeoEditor.py:2606 msgid "[success] Done. Geometry(s) Copy completed." -msgstr "[success] Executat. Copierea Geometriilor terminata." +msgstr "[success] Executat. Copierea Geometriilor terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2654 +#: flatcamEditors/FlatCAMGeoEditor.py:2640 #, python-format msgid "" "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are " @@ -3045,65 +3045,87 @@ msgstr "" "[ERROR] Fontul nu este compatibil. Doar cele tip: Regular, Bold, Italic și " "BoldItalic sunt acceptate. Eroarea:: %s" -#: flatcamEditors/FlatCAMGeoEditor.py:2664 +#: flatcamEditors/FlatCAMGeoEditor.py:2650 msgid "[success] Done. Adding Text completed." -msgstr "[success] Executat. Adaugarea de Text terminata." +msgstr "[success] Executat. Adăugarea de Text terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2692 +#: flatcamEditors/FlatCAMGeoEditor.py:2678 msgid "Create buffer geometry ..." msgstr "Crează o geometrie de tipe Bufer ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2703 -#: flatcamEditors/FlatCAMGeoEditor.py:2729 -#: flatcamEditors/FlatCAMGeoEditor.py:2755 +#: flatcamEditors/FlatCAMGeoEditor.py:2689 +#: flatcamEditors/FlatCAMGeoEditor.py:2715 +#: flatcamEditors/FlatCAMGeoEditor.py:2741 msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected." msgstr "" -"[WARNING_NOTCL] Crearea de geometrie Bufer anulata. Nici-o forma geometrică " +"[WARNING_NOTCL] Crearea de geometrie Bufer anulată. Nici-o forma geometrică " "nu este selectată." -#: flatcamEditors/FlatCAMGeoEditor.py:2725 -#: flatcamEditors/FlatCAMGrbEditor.py:4276 +#: flatcamEditors/FlatCAMGeoEditor.py:2711 +#: flatcamEditors/FlatCAMGrbEditor.py:4420 msgid "[success] Done. Buffer Tool completed." -msgstr "[success] Executat. Unealta Bufer terminat." +msgstr "[success] Executat. Unealta Bufer terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2751 +#: flatcamEditors/FlatCAMGeoEditor.py:2737 msgid "[success] Done. Buffer Int Tool completed." -msgstr "[success] Executat. Unealta Bufer Intern terminat." +msgstr "[success] Executat. Unealta Bufer Intern terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2777 +#: flatcamEditors/FlatCAMGeoEditor.py:2763 msgid "[success] Done. Buffer Ext Tool completed." -msgstr "[success] Executat. Unealta Bufer Extern terminat." +msgstr "[success] Executat. Unealta Bufer Extern terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2810 +#: flatcamEditors/FlatCAMGeoEditor.py:2798 +#: flatcamEditors/FlatCAMGrbEditor.py:1969 +msgid "Select a shape to act as deletion area ..." +msgstr "Selectează o formă geometrică ca formă de stergere ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:2800 +#: flatcamEditors/FlatCAMGeoEditor.py:2819 +#: flatcamEditors/FlatCAMGeoEditor.py:2825 +#: flatcamEditors/FlatCAMGrbEditor.py:1971 +msgid "Click to pick-up the erase shape..." +msgstr "Click pentru a activa forma de stergere..." + +#: flatcamEditors/FlatCAMGeoEditor.py:2829 +#: flatcamEditors/FlatCAMGrbEditor.py:2028 +msgid "Click to erase ..." +msgstr "Click pt a sterge ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:2858 +#: flatcamEditors/FlatCAMGrbEditor.py:2059 +msgid "[success] Done. Eraser tool action completed." +msgstr "[success] Executat. Unealta Stergere s-a terminat." + +#: flatcamEditors/FlatCAMGeoEditor.py:2901 msgid "Create Paint geometry ..." msgstr "Crează o geometrie Paint ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2824 -#: flatcamEditors/FlatCAMGrbEditor.py:2059 +#: flatcamEditors/FlatCAMGeoEditor.py:2915 +#: flatcamEditors/FlatCAMGrbEditor.py:2201 msgid "Shape transformations ..." msgstr "Transformări de forme geometrice ..." -#: flatcamEditors/FlatCAMGeoEditor.py:3327 +#: flatcamEditors/FlatCAMGeoEditor.py:3419 #, python-brace-format msgid "[WARNING] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}" msgstr "" "[WARNING] Se editeaza un obiect tip Geometrie MultiGeo , unealta: {tool} cu " "diametrul: {dia}" -#: flatcamEditors/FlatCAMGeoEditor.py:3703 +#: flatcamEditors/FlatCAMGeoEditor.py:3796 msgid "[WARNING_NOTCL] Copy cancelled. No shape selected." msgstr "" "[WARNING_NOTCL] Copiere anulata. Nici-o forma geometrică nu este selectată." -#: flatcamEditors/FlatCAMGeoEditor.py:3710 flatcamGUI/FlatCAMGUI.py:2725 -#: flatcamGUI/FlatCAMGUI.py:2771 flatcamGUI/FlatCAMGUI.py:2789 -#: flatcamGUI/FlatCAMGUI.py:2920 flatcamGUI/FlatCAMGUI.py:2932 -#: flatcamGUI/FlatCAMGUI.py:2966 +#: flatcamEditors/FlatCAMGeoEditor.py:3803 flatcamGUI/FlatCAMGUI.py:2732 +#: flatcamGUI/FlatCAMGUI.py:2778 flatcamGUI/FlatCAMGUI.py:2796 +#: flatcamGUI/FlatCAMGUI.py:2927 flatcamGUI/FlatCAMGUI.py:2939 +#: flatcamGUI/FlatCAMGUI.py:2973 msgid "Click on target point." msgstr "Click pe punctul tinta." -#: flatcamEditors/FlatCAMGeoEditor.py:3953 -#: flatcamEditors/FlatCAMGeoEditor.py:3987 +#: flatcamEditors/FlatCAMGeoEditor.py:4047 +#: flatcamEditors/FlatCAMGeoEditor.py:4082 msgid "" "[WARNING_NOTCL] A selection of at least 2 geo items is required to do " "Intersection." @@ -3111,9 +3133,9 @@ msgstr "" "[WARNING_NOTCL] Cel puțin o selecţie de doua forme geometrice este necesară " "pentru a face o Intersecţie." -#: flatcamEditors/FlatCAMGeoEditor.py:4071 -#: flatcamEditors/FlatCAMGeoEditor.py:4108 -#: flatcamEditors/FlatCAMGeoEditor.py:4184 +#: flatcamEditors/FlatCAMGeoEditor.py:4166 +#: flatcamEditors/FlatCAMGeoEditor.py:4204 +#: flatcamEditors/FlatCAMGeoEditor.py:4280 msgid "" "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to " "generate an 'inside' shape" @@ -3121,57 +3143,57 @@ msgstr "" "[ERROR_NOTCL] O valoare de bufer negativă nu se acceptă. Folosete Bufer " "Interior pentru a genera o forma geo. interioara." -#: flatcamEditors/FlatCAMGeoEditor.py:4079 -#: flatcamEditors/FlatCAMGeoEditor.py:4117 -#: flatcamEditors/FlatCAMGeoEditor.py:4192 +#: flatcamEditors/FlatCAMGeoEditor.py:4175 +#: flatcamEditors/FlatCAMGeoEditor.py:4213 +#: flatcamEditors/FlatCAMGeoEditor.py:4288 msgid "[WARNING_NOTCL] Nothing selected for buffering." msgstr "" "[WARNING_NOTCL] Nici-o forma geometrică nu este selectată pentru a face " "Bufer." -#: flatcamEditors/FlatCAMGeoEditor.py:4083 -#: flatcamEditors/FlatCAMGeoEditor.py:4121 -#: flatcamEditors/FlatCAMGeoEditor.py:4196 +#: flatcamEditors/FlatCAMGeoEditor.py:4179 +#: flatcamEditors/FlatCAMGeoEditor.py:4217 +#: flatcamEditors/FlatCAMGeoEditor.py:4292 msgid "[WARNING_NOTCL] Invalid distance for buffering." msgstr "[WARNING_NOTCL] Distanta invalida pentru a face Bufer." -#: flatcamEditors/FlatCAMGeoEditor.py:4093 -#: flatcamEditors/FlatCAMGeoEditor.py:4205 +#: flatcamEditors/FlatCAMGeoEditor.py:4189 +#: flatcamEditors/FlatCAMGeoEditor.py:4301 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value." msgstr "" "[ERROR_NOTCL] Eșuat, rezultatul este gol. Foloseşte o valoare diferita " "pentru Bufer." -#: flatcamEditors/FlatCAMGeoEditor.py:4101 +#: flatcamEditors/FlatCAMGeoEditor.py:4197 msgid "[success] Full buffer geometry created." msgstr "[success] Geometrie tip Bufer Complet creată." -#: flatcamEditors/FlatCAMGeoEditor.py:4131 +#: flatcamEditors/FlatCAMGeoEditor.py:4227 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value." msgstr "" "[ERROR_NOTCL] Eșuat, rezultatul este gol. Foloseşte of valoare mai mica pt. " "Bufer." -#: flatcamEditors/FlatCAMGeoEditor.py:4146 +#: flatcamEditors/FlatCAMGeoEditor.py:4242 msgid "[success] Interior buffer geometry created." msgstr "[success] Geometrie Bufer interior creată." -#: flatcamEditors/FlatCAMGeoEditor.py:4217 +#: flatcamEditors/FlatCAMGeoEditor.py:4313 msgid "[success] Exterior buffer geometry created." msgstr "[success] Geometrie Bufer Exterior creată." -#: flatcamEditors/FlatCAMGeoEditor.py:4281 +#: flatcamEditors/FlatCAMGeoEditor.py:4377 msgid "[WARNING_NOTCL] Nothing selected for painting." msgstr "" "[WARNING_NOTCL] Nici-o forma geometrică nu este selectată pentru Paint." -#: flatcamEditors/FlatCAMGeoEditor.py:4287 +#: flatcamEditors/FlatCAMGeoEditor.py:4383 msgid "[WARNING] Invalid value for {}" msgstr "[WARNING] Valoare invalida pentru {}" -#: flatcamEditors/FlatCAMGeoEditor.py:4293 +#: flatcamEditors/FlatCAMGeoEditor.py:4389 msgid "" "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 " "(100%)." @@ -3179,7 +3201,7 @@ msgstr "" "[ERROR_NOTCL] Nu se poate face Paint. Valoarea de suprapunere trebuie să fie " "mai puțin de 1.00 (100%)." -#: flatcamEditors/FlatCAMGeoEditor.py:4352 +#: flatcamEditors/FlatCAMGeoEditor.py:4448 #, python-format msgid "" "[ERROR] Could not do Paint. Try a different combination of parameters. Or a " @@ -3190,7 +3212,7 @@ msgstr "" "Or o metoda diferita de Paint\n" "%s" -#: flatcamEditors/FlatCAMGeoEditor.py:4363 +#: flatcamEditors/FlatCAMGeoEditor.py:4459 msgid "[success] Paint done." msgstr "[success] Paint executat." @@ -3213,7 +3235,7 @@ msgid "Click to place ..." msgstr "Click pt a plasa ..." #: flatcamEditors/FlatCAMGrbEditor.py:357 -#: flatcamEditors/FlatCAMGrbEditor.py:660 +#: flatcamEditors/FlatCAMGrbEditor.py:662 msgid "" "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'." msgstr "" @@ -3235,23 +3257,23 @@ msgstr "" msgid "Click on the Pad Circular Array Start position" msgstr "Click pe punctul de Start al ariei de paduri" -#: flatcamEditors/FlatCAMGrbEditor.py:685 +#: flatcamEditors/FlatCAMGrbEditor.py:687 msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle." msgstr "[WARNING_NOTCL] Prea multe paduri pentru unghiul selectat." -#: flatcamEditors/FlatCAMGrbEditor.py:707 +#: flatcamEditors/FlatCAMGrbEditor.py:709 msgid "[success] Done. Pad Array added." msgstr "[success] Executat. Aria de paduri a fost adăugată." -#: flatcamEditors/FlatCAMGrbEditor.py:728 +#: flatcamEditors/FlatCAMGrbEditor.py:730 msgid "Select shape(s) and then click ..." msgstr "Selectează formele si apoi click ..." -#: flatcamEditors/FlatCAMGrbEditor.py:739 +#: flatcamEditors/FlatCAMGrbEditor.py:741 msgid "[ERROR_NOTCL] Failed. Nothing selected." msgstr "[ERROR_NOTCL] Eșuat. Nu este nimic selectat." -#: flatcamEditors/FlatCAMGrbEditor.py:754 +#: flatcamEditors/FlatCAMGrbEditor.py:756 msgid "" "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the " "same aperture." @@ -3259,136 +3281,136 @@ msgstr "" "[WARNING_NOTCL] Esuat. Poligonizarea lucrează doar asupra geometriilor care " "apartin aceleasi aperturi." -#: flatcamEditors/FlatCAMGrbEditor.py:807 +#: flatcamEditors/FlatCAMGrbEditor.py:809 msgid "[success] Done. Poligonize completed." msgstr "[success] Executat. Poligonizare completă." -#: flatcamEditors/FlatCAMGrbEditor.py:857 -#: flatcamEditors/FlatCAMGrbEditor.py:1072 -#: flatcamEditors/FlatCAMGrbEditor.py:1096 +#: flatcamEditors/FlatCAMGrbEditor.py:860 +#: flatcamEditors/FlatCAMGrbEditor.py:1075 +#: flatcamEditors/FlatCAMGrbEditor.py:1099 msgid "Corner Mode 1: 45 degrees ..." msgstr "Mod Colt 1: 45 grade ..." -#: flatcamEditors/FlatCAMGrbEditor.py:859 +#: flatcamEditors/FlatCAMGrbEditor.py:862 msgid "Click on 1st point ..." msgstr "Click pe primul punct ..." -#: flatcamEditors/FlatCAMGrbEditor.py:869 -#: flatcamEditors/FlatCAMGrbEditor.py:1167 +#: flatcamEditors/FlatCAMGrbEditor.py:872 +#: flatcamEditors/FlatCAMGrbEditor.py:1170 msgid "Click on next Point or click Right mouse button to complete ..." msgstr "" "Click pe punctul următor sau click buton dreapta al mousului pentru " "terminare ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1060 -#: flatcamEditors/FlatCAMGrbEditor.py:1093 +#: flatcamEditors/FlatCAMGrbEditor.py:1063 +#: flatcamEditors/FlatCAMGrbEditor.py:1096 msgid "Corner Mode 2: Reverse 45 degrees ..." msgstr "Mod Colt 2: Invers 45 grade ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1063 -#: flatcamEditors/FlatCAMGrbEditor.py:1090 +#: flatcamEditors/FlatCAMGrbEditor.py:1066 +#: flatcamEditors/FlatCAMGrbEditor.py:1093 msgid "Corner Mode 3: 90 degrees ..." msgstr "Mod Colt 3: 90 grade ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1066 -#: flatcamEditors/FlatCAMGrbEditor.py:1087 +#: flatcamEditors/FlatCAMGrbEditor.py:1069 +#: flatcamEditors/FlatCAMGrbEditor.py:1090 msgid "Corner Mode 4: Reverse 90 degrees ..." msgstr "Mod Colt 4: Invers 90 grade ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1069 -#: flatcamEditors/FlatCAMGrbEditor.py:1084 +#: flatcamEditors/FlatCAMGrbEditor.py:1072 +#: flatcamEditors/FlatCAMGrbEditor.py:1087 msgid "Corner Mode 5: Free angle ..." msgstr "Mod Colt 5: Unghi liber ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1123 -#: flatcamEditors/FlatCAMGrbEditor.py:1281 -#: flatcamEditors/FlatCAMGrbEditor.py:1320 +#: flatcamEditors/FlatCAMGrbEditor.py:1126 +#: flatcamEditors/FlatCAMGrbEditor.py:1284 +#: flatcamEditors/FlatCAMGrbEditor.py:1323 msgid "Track Mode 1: 45 degrees ..." msgstr "Mod Traseu 1: 45 grade ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1261 -#: flatcamEditors/FlatCAMGrbEditor.py:1315 +#: flatcamEditors/FlatCAMGrbEditor.py:1264 +#: flatcamEditors/FlatCAMGrbEditor.py:1318 msgid "Track Mode 2: Reverse 45 degrees ..." msgstr "Mod Traseu 2: Invers 45 grade ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1266 -#: flatcamEditors/FlatCAMGrbEditor.py:1310 +#: flatcamEditors/FlatCAMGrbEditor.py:1269 +#: flatcamEditors/FlatCAMGrbEditor.py:1313 msgid "Track Mode 3: 90 degrees ..." msgstr "Mod Traseu 3: 90 grade ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1271 -#: flatcamEditors/FlatCAMGrbEditor.py:1305 +#: flatcamEditors/FlatCAMGrbEditor.py:1274 +#: flatcamEditors/FlatCAMGrbEditor.py:1308 msgid "Track Mode 4: Reverse 90 degrees ..." msgstr "Mod Traseu 4: Invers 90 grade ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1276 -#: flatcamEditors/FlatCAMGrbEditor.py:1300 +#: flatcamEditors/FlatCAMGrbEditor.py:1279 +#: flatcamEditors/FlatCAMGrbEditor.py:1303 msgid "Track Mode 5: Free angle ..." msgstr "Mod Traseu 5: Unghi liber ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1666 +#: flatcamEditors/FlatCAMGrbEditor.py:1669 msgid "Scale the selected Gerber apertures ..." msgstr "Șterge aperturile Gerber selectate ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1708 +#: flatcamEditors/FlatCAMGrbEditor.py:1711 msgid "Buffer the selected apertures ..." msgstr "Bufereaza aperturile selectate." -#: flatcamEditors/FlatCAMGrbEditor.py:1752 +#: flatcamEditors/FlatCAMGrbEditor.py:1755 msgid "[WARNING_NOTCL] Nothing selected to move ..." msgstr "[WARNING_NOTCL] Nimic nu este selectat pentru mutare ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1875 +#: flatcamEditors/FlatCAMGrbEditor.py:1878 msgid "[success] Done. Apertures Move completed." msgstr "[success] Executat. Mutarea Aperturilor terminată." -#: flatcamEditors/FlatCAMGrbEditor.py:1951 +#: flatcamEditors/FlatCAMGrbEditor.py:1954 msgid "[success] Done. Apertures copied." msgstr "[success] Executat. Aperturile au fost copiate." -#: flatcamEditors/FlatCAMGrbEditor.py:2101 flatcamGUI/FlatCAMGUI.py:1604 -#: flatcamGUI/FlatCAMGUI.py:4322 +#: flatcamEditors/FlatCAMGrbEditor.py:2243 flatcamGUI/FlatCAMGUI.py:1607 +#: flatcamGUI/FlatCAMGUI.py:4329 msgid "Gerber Editor" msgstr "Editor Gerber" -#: flatcamEditors/FlatCAMGrbEditor.py:2120 flatcamGUI/ObjectUI.py:192 +#: flatcamEditors/FlatCAMGrbEditor.py:2262 flatcamGUI/ObjectUI.py:192 msgid "Apertures:" msgstr "Aperturi:" -#: flatcamEditors/FlatCAMGrbEditor.py:2122 flatcamGUI/ObjectUI.py:194 +#: flatcamEditors/FlatCAMGrbEditor.py:2264 flatcamGUI/ObjectUI.py:194 msgid "Apertures Table for the Gerber Object." msgstr "Tabela de aperturi pt obiectul Gerber." -#: flatcamEditors/FlatCAMGrbEditor.py:2133 -#: flatcamEditors/FlatCAMGrbEditor.py:3442 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:2275 +#: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228 msgid "Code" msgstr "Cod" -#: flatcamEditors/FlatCAMGrbEditor.py:2133 -#: flatcamEditors/FlatCAMGrbEditor.py:3442 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:2275 +#: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228 #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1452 msgid "Type" msgstr "Tip" -#: flatcamEditors/FlatCAMGrbEditor.py:2133 -#: flatcamEditors/FlatCAMGrbEditor.py:3442 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:2275 +#: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228 msgid "Size" msgstr "Dimens." -#: flatcamEditors/FlatCAMGrbEditor.py:2133 -#: flatcamEditors/FlatCAMGrbEditor.py:3442 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:2275 +#: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228 msgid "Dim" msgstr "Dim" -#: flatcamEditors/FlatCAMGrbEditor.py:2137 flatcamGUI/ObjectUI.py:232 +#: flatcamEditors/FlatCAMGrbEditor.py:2279 flatcamGUI/ObjectUI.py:232 msgid "Index" msgstr "Index" -#: flatcamEditors/FlatCAMGrbEditor.py:2139 flatcamGUI/ObjectUI.py:234 +#: flatcamEditors/FlatCAMGrbEditor.py:2281 flatcamGUI/ObjectUI.py:234 msgid "Aperture Code" msgstr "Cod" -#: flatcamEditors/FlatCAMGrbEditor.py:2141 flatcamGUI/ObjectUI.py:236 +#: flatcamEditors/FlatCAMGrbEditor.py:2283 flatcamGUI/ObjectUI.py:236 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "" "Tipul aperturilor:\n" @@ -3397,12 +3419,12 @@ msgstr "" "- macro-uri\n" "etc" -#: flatcamEditors/FlatCAMGrbEditor.py:2143 -#: flatcamEditors/FlatCAMGrbEditor.py:2176 flatcamGUI/ObjectUI.py:238 +#: flatcamEditors/FlatCAMGrbEditor.py:2285 +#: flatcamEditors/FlatCAMGrbEditor.py:2318 flatcamGUI/ObjectUI.py:238 msgid "Aperture Size:" msgstr "Dim. aper." -#: flatcamEditors/FlatCAMGrbEditor.py:2145 flatcamGUI/ObjectUI.py:240 +#: flatcamEditors/FlatCAMGrbEditor.py:2287 flatcamGUI/ObjectUI.py:240 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" @@ -3412,15 +3434,15 @@ msgstr "" "- (latime, inaltime) pt tipurile R, O.\n" "- (diametru, nVertices) pt tipul P" -#: flatcamEditors/FlatCAMGrbEditor.py:2166 +#: flatcamEditors/FlatCAMGrbEditor.py:2308 msgid "Aperture Code:" msgstr "Cod apertură" -#: flatcamEditors/FlatCAMGrbEditor.py:2168 +#: flatcamEditors/FlatCAMGrbEditor.py:2310 msgid "Code for the new aperture" msgstr "Diametru pentru noua apertură" -#: flatcamEditors/FlatCAMGrbEditor.py:2178 +#: flatcamEditors/FlatCAMGrbEditor.py:2320 msgid "" "Size for the new aperture.\n" "If aperture type is 'R' or 'O' then\n" @@ -3433,11 +3455,11 @@ msgstr "" "valoarea este calculată automat prin:\n" "sqrt(lătime**2 + inăltime**2)" -#: flatcamEditors/FlatCAMGrbEditor.py:2190 +#: flatcamEditors/FlatCAMGrbEditor.py:2332 msgid "Aperture Type:" msgstr "Tip aper." -#: flatcamEditors/FlatCAMGrbEditor.py:2192 +#: flatcamEditors/FlatCAMGrbEditor.py:2334 msgid "" "Select the type of new aperture. Can be:\n" "C = circular\n" @@ -3449,11 +3471,11 @@ msgstr "" "R = rectangular\n" "O = oval" -#: flatcamEditors/FlatCAMGrbEditor.py:2203 +#: flatcamEditors/FlatCAMGrbEditor.py:2345 msgid "Aperture Dim:" msgstr "Dim. aper." -#: flatcamEditors/FlatCAMGrbEditor.py:2205 +#: flatcamEditors/FlatCAMGrbEditor.py:2347 msgid "" "Dimensions for the new aperture.\n" "Active only for rectangular apertures (type R).\n" @@ -3463,31 +3485,31 @@ msgstr "" "Activă doar pentru aperturile rectangulare (tip 'R').\n" "Formatul este (lătime, inăltime)" -#: flatcamEditors/FlatCAMGrbEditor.py:2214 +#: flatcamEditors/FlatCAMGrbEditor.py:2356 msgid "Add/Delete Aperture:" msgstr "Adaugă/Șterge aper." -#: flatcamEditors/FlatCAMGrbEditor.py:2216 +#: flatcamEditors/FlatCAMGrbEditor.py:2358 msgid "Add/Delete an aperture in the aperture table" msgstr "Adaugă/Șterge o apertură din lista de aperturi." -#: flatcamEditors/FlatCAMGrbEditor.py:2225 +#: flatcamEditors/FlatCAMGrbEditor.py:2367 msgid "Add a new aperture to the aperture list." msgstr "Adaugă o nouă apertură in lista de aperturi." -#: flatcamEditors/FlatCAMGrbEditor.py:2230 +#: flatcamEditors/FlatCAMGrbEditor.py:2372 msgid "Delete a aperture in the aperture list" msgstr "Șterge o apertură din lista de aperturi." -#: flatcamEditors/FlatCAMGrbEditor.py:2246 +#: flatcamEditors/FlatCAMGrbEditor.py:2388 msgid "Buffer Aperture:" msgstr "Bufer pt apertură:" -#: flatcamEditors/FlatCAMGrbEditor.py:2248 +#: flatcamEditors/FlatCAMGrbEditor.py:2390 msgid "Buffer a aperture in the aperture list" msgstr "Fă bufer pt o apertură din lista de aperturi" -#: flatcamEditors/FlatCAMGrbEditor.py:2261 +#: flatcamEditors/FlatCAMGrbEditor.py:2403 msgid "" "There are 3 types of corners:\n" " - 'Round': the corner is rounded.\n" @@ -3501,24 +3523,24 @@ msgstr "" " - 'Beveled:' coltul este inlocuit cu o linie care uneste capetele liniilor " "care formează coltul" -#: flatcamEditors/FlatCAMGrbEditor.py:2276 flatcamGUI/FlatCAMGUI.py:721 -#: flatcamGUI/FlatCAMGUI.py:1943 +#: flatcamEditors/FlatCAMGrbEditor.py:2418 flatcamGUI/FlatCAMGUI.py:722 +#: flatcamGUI/FlatCAMGUI.py:1948 msgid "Buffer" msgstr "Bufer" -#: flatcamEditors/FlatCAMGrbEditor.py:2290 +#: flatcamEditors/FlatCAMGrbEditor.py:2432 msgid "Scale Aperture:" msgstr "Scalează ap.:" -#: flatcamEditors/FlatCAMGrbEditor.py:2292 +#: flatcamEditors/FlatCAMGrbEditor.py:2434 msgid "Scale a aperture in the aperture list" msgstr "Scalează o apertură in lista de aperturi" -#: flatcamEditors/FlatCAMGrbEditor.py:2300 +#: flatcamEditors/FlatCAMGrbEditor.py:2442 msgid "Scale factor:" msgstr "Factor Scalare:" -#: flatcamEditors/FlatCAMGrbEditor.py:2302 +#: flatcamEditors/FlatCAMGrbEditor.py:2444 msgid "" "The factor by which to scale the selected aperture.\n" "Values can be between 0.0000 and 999.9999" @@ -3526,16 +3548,16 @@ msgstr "" "Factorul cu care se va face scalarea aperturii selectate.\n" "Poate lua valori intre: 0.000 si 999.9999" -#: flatcamEditors/FlatCAMGrbEditor.py:2330 flatcamGUI/FlatCAMGUI.py:711 -#: flatcamGUI/FlatCAMGUI.py:1933 +#: flatcamEditors/FlatCAMGrbEditor.py:2472 flatcamGUI/FlatCAMGUI.py:712 +#: flatcamGUI/FlatCAMGUI.py:1938 msgid "Add Pad Array" msgstr "Adaugă o arie de paduri" -#: flatcamEditors/FlatCAMGrbEditor.py:2332 +#: flatcamEditors/FlatCAMGrbEditor.py:2474 msgid "Add an array of pads (linear or circular array)" msgstr "Adaugă o arie de paduri (arie lineara sau circulara)." -#: flatcamEditors/FlatCAMGrbEditor.py:2338 +#: flatcamEditors/FlatCAMGrbEditor.py:2480 msgid "" "Select the type of pads array to create.\n" "It can be Linear X(Y) or Circular" @@ -3543,16 +3565,16 @@ msgstr "" "Selectează tipul de arii de paduri.\n" "Poate fi Liniar X(Y) sau Circular." -#: flatcamEditors/FlatCAMGrbEditor.py:2349 +#: flatcamEditors/FlatCAMGrbEditor.py:2491 msgid "Nr of pads:" msgstr "Nr. paduri:" -#: flatcamEditors/FlatCAMGrbEditor.py:2351 +#: flatcamEditors/FlatCAMGrbEditor.py:2493 msgid "Specify how many pads to be in the array." msgstr "Specifica cate paduri să fie incluse in arie." -#: flatcamEditors/FlatCAMGrbEditor.py:2826 -#: flatcamEditors/FlatCAMGrbEditor.py:2830 +#: flatcamEditors/FlatCAMGrbEditor.py:2970 +#: flatcamEditors/FlatCAMGrbEditor.py:2974 msgid "" "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and " "retry." @@ -3560,7 +3582,7 @@ msgstr "" "[WARNING_NOTCL] Valoarea codului aperturii lipseste sau este in format " "greșit. Adaugă din nou și reîncearcă." -#: flatcamEditors/FlatCAMGrbEditor.py:2866 +#: flatcamEditors/FlatCAMGrbEditor.py:3010 msgid "" "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it " "in format (width, height) and retry." @@ -3568,7 +3590,7 @@ msgstr "" "[WARNING_NOTCL] Dimensiunile aperturii lipsesc sau sunt intr-un format " "greșit. Adaugă din nou și reîncearcă." -#: flatcamEditors/FlatCAMGrbEditor.py:2878 +#: flatcamEditors/FlatCAMGrbEditor.py:3022 msgid "" "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and " "retry." @@ -3576,35 +3598,35 @@ msgstr "" "[WARNING_NOTCL] Valoarea mărimii aperturii lipseste sau este in format " "greșit. Adaugă din nou și reîncearcă." -#: flatcamEditors/FlatCAMGrbEditor.py:2889 +#: flatcamEditors/FlatCAMGrbEditor.py:3033 msgid "[WARNING_NOTCL] Aperture already in the aperture table." msgstr "[WARNING_NOTCL] Apertura este deja in lista de aperturi." -#: flatcamEditors/FlatCAMGrbEditor.py:2896 +#: flatcamEditors/FlatCAMGrbEditor.py:3040 #, python-brace-format msgid "[success] Added new aperture with code: {apid}" msgstr "[success] O nouă apertură este adăugată cu codul: {apid}" -#: flatcamEditors/FlatCAMGrbEditor.py:2924 +#: flatcamEditors/FlatCAMGrbEditor.py:3068 msgid "[WARNING_NOTCL] Select an aperture in Aperture Table" msgstr "[WARNING_NOTCL] Selectează o unealtă in Tabela de Aperturi" -#: flatcamEditors/FlatCAMGrbEditor.py:2930 +#: flatcamEditors/FlatCAMGrbEditor.py:3074 #, python-format msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s" msgstr "[WARNING_NOTCL] Selectează o unealtă in Tabela de Aperturi --> %s" -#: flatcamEditors/FlatCAMGrbEditor.py:2953 +#: flatcamEditors/FlatCAMGrbEditor.py:3097 #, python-brace-format msgid "[success] Deleted aperture with code: {del_dia}" msgstr "[success] Unealta cu diametrul: {del_dia} a fost stearsă" -#: flatcamEditors/FlatCAMGrbEditor.py:3373 +#: flatcamEditors/FlatCAMGrbEditor.py:3517 #, python-format msgid "Adding aperture: %s geo ..." msgstr "Se adaugă apertura: %s geo ..." -#: flatcamEditors/FlatCAMGrbEditor.py:3552 +#: flatcamEditors/FlatCAMGrbEditor.py:3696 msgid "" "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber " "creation." @@ -3612,34 +3634,34 @@ msgstr "" "[ERROR_NOTCL] Nu există definitii de aperturi in fişier. Se anulează crearea " "de obiect Gerber." -#: flatcamEditors/FlatCAMGrbEditor.py:3555 +#: flatcamEditors/FlatCAMGrbEditor.py:3699 msgid "[ERROR] An internal error has occurred. See shell.\n" msgstr "" "[ERROR] A apărut o eroare internă. Verifică in TCL Shell pt mai multe " "detalii.\n" -#: flatcamEditors/FlatCAMGrbEditor.py:3560 +#: flatcamEditors/FlatCAMGrbEditor.py:3704 msgid "Creating Gerber." msgstr "Gerber in curs de creare." -#: flatcamEditors/FlatCAMGrbEditor.py:3568 +#: flatcamEditors/FlatCAMGrbEditor.py:3712 msgid "[success] Gerber editing finished." msgstr "[success] Editarea Gerber a fost terminată." -#: flatcamEditors/FlatCAMGrbEditor.py:3584 +#: flatcamEditors/FlatCAMGrbEditor.py:3728 msgid "[WARNING_NOTCL] Cancelled. No aperture is selected" msgstr "[WARNING_NOTCL] Anulat. Nici-o apertură nu este selectată." -#: flatcamEditors/FlatCAMGrbEditor.py:4104 +#: flatcamEditors/FlatCAMGrbEditor.py:4248 msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected." msgstr "" "[WARNING_NOTCL] Anulat. Nici-o geometrie de apertură nu este selectată." -#: flatcamEditors/FlatCAMGrbEditor.py:4112 +#: flatcamEditors/FlatCAMGrbEditor.py:4256 msgid "[success] Done. Apertures geometry deleted." msgstr "[success] Executat. Geometriile aperturilor au fost șterse." -#: flatcamEditors/FlatCAMGrbEditor.py:4261 +#: flatcamEditors/FlatCAMGrbEditor.py:4405 msgid "" "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try " "again." @@ -3647,7 +3669,7 @@ msgstr "" "[WARNING_NOTCL] Nici-o apertura sel. pt a face bufer. Selectează cel puțin o " "apertura și încearcă din nou." -#: flatcamEditors/FlatCAMGrbEditor.py:4290 +#: flatcamEditors/FlatCAMGrbEditor.py:4434 msgid "" "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and " "retry." @@ -3655,7 +3677,7 @@ msgstr "" "[WARNING_NOTCL] Valoarea factorului de scalare lipseste sau este in format " "gresit. Adaugă din nou și reîncearcă." -#: flatcamEditors/FlatCAMGrbEditor.py:4320 +#: flatcamEditors/FlatCAMGrbEditor.py:4464 msgid "" "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try " "again." @@ -3663,7 +3685,7 @@ msgstr "" "[WARNING_NOTCL] Nici-o apertură sel. pt scalare. Selectează cel puțin o " "apertură și încearcă din nou." -#: flatcamEditors/FlatCAMGrbEditor.py:4336 +#: flatcamEditors/FlatCAMGrbEditor.py:4480 msgid "[success] Done. Scale Tool completed." msgstr "[success] Executat. Unealta Scalare a terminat." @@ -4244,11 +4266,11 @@ msgstr "Generează CNC" msgid "View Source" msgstr "Vizualiz. Sursa" -#: flatcamGUI/FlatCAMGUI.py:530 flatcamGUI/FlatCAMGUI.py:1617 +#: flatcamGUI/FlatCAMGUI.py:530 flatcamGUI/FlatCAMGUI.py:1620 msgid "Edit" msgstr "Editează" -#: flatcamGUI/FlatCAMGUI.py:536 flatcamGUI/FlatCAMGUI.py:1623 +#: flatcamGUI/FlatCAMGUI.py:536 flatcamGUI/FlatCAMGUI.py:1626 #: flatcamTools/ToolProperties.py:25 msgid "Properties" msgstr "Proprietati" @@ -4289,15 +4311,15 @@ msgstr "Toolbar Editor Gerber" msgid "Grid Toolbar" msgstr "Toolbar Grid-uri" -#: flatcamGUI/FlatCAMGUI.py:616 flatcamGUI/FlatCAMGUI.py:1834 +#: flatcamGUI/FlatCAMGUI.py:616 flatcamGUI/FlatCAMGUI.py:1837 msgid "Open project" msgstr "Încarcă Proiect" -#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1835 +#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1838 msgid "Save project" msgstr "Salvează Proiect" -#: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1838 +#: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1841 msgid "New Blank Geometry" msgstr "Geometrie Noua (goală)" @@ -4305,220 +4327,225 @@ msgstr "Geometrie Noua (goală)" msgid "New Blank Gerber" msgstr "Gerber Nou (gol)" -#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1839 +#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1842 msgid "New Blank Excellon" msgstr "Excellon nou (gol)" -#: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1841 +#: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1844 msgid "Editor" msgstr "Editor" -#: flatcamGUI/FlatCAMGUI.py:626 flatcamGUI/FlatCAMGUI.py:1843 +#: flatcamGUI/FlatCAMGUI.py:626 flatcamGUI/FlatCAMGUI.py:1846 msgid "Save Object and close the Editor" msgstr "Salvează Obiectul și inchide Editorul" -#: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1847 +#: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1850 msgid "&Delete" msgstr "&Șterge" -#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1850 +#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1853 msgid "&Replot" msgstr "&Reafișare" -#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1851 +#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1854 msgid "&Clear plot" msgstr "&Șterge Afișare" -#: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1852 +#: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1855 msgid "Zoom In" msgstr "Marire" -#: flatcamGUI/FlatCAMGUI.py:636 flatcamGUI/FlatCAMGUI.py:1853 +#: flatcamGUI/FlatCAMGUI.py:636 flatcamGUI/FlatCAMGUI.py:1856 msgid "Zoom Out" msgstr "Micsorare" -#: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1592 -#: flatcamGUI/FlatCAMGUI.py:1854 +#: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1595 +#: flatcamGUI/FlatCAMGUI.py:1857 msgid "Zoom Fit" msgstr "Marire și ajustare" -#: flatcamGUI/FlatCAMGUI.py:642 flatcamGUI/FlatCAMGUI.py:1859 +#: flatcamGUI/FlatCAMGUI.py:642 flatcamGUI/FlatCAMGUI.py:1862 msgid "&Command Line" msgstr "&Linie de comanda" -#: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1862 +#: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1865 msgid "2Sided Tool" msgstr "Unealta 2-fețe" -#: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1863 +#: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1866 msgid "&Cutout Tool" msgstr "Unealta Decupare" -#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1864 +#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1867 #: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:285 msgid "NCC Tool" msgstr "Unealta NCC" -#: flatcamGUI/FlatCAMGUI.py:651 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:651 flatcamGUI/FlatCAMGUI.py:1871 msgid "Panel Tool" msgstr "Unealta Panel" -#: flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:1872 #: flatcamTools/ToolFilm.py:204 msgid "Film Tool" msgstr "Unealta Film" -#: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1871 +#: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1874 msgid "SolderPaste Tool" msgstr "Unealta Dispenser SP" -#: flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1875 #: flatcamTools/ToolSub.py:26 msgid "Substract Tool" msgstr "Unealta Scădere" -#: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1877 +#: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1880 msgid "Calculators Tool" msgstr "Unealta Calculatoare" #: flatcamGUI/FlatCAMGUI.py:662 flatcamGUI/FlatCAMGUI.py:676 -#: flatcamGUI/FlatCAMGUI.py:709 flatcamGUI/FlatCAMGUI.py:1881 -#: flatcamGUI/FlatCAMGUI.py:1931 +#: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:1884 +#: flatcamGUI/FlatCAMGUI.py:1936 msgid "Select" msgstr "Selectează" -#: flatcamGUI/FlatCAMGUI.py:663 flatcamGUI/FlatCAMGUI.py:1882 +#: flatcamGUI/FlatCAMGUI.py:663 flatcamGUI/FlatCAMGUI.py:1885 msgid "Add Drill Hole" msgstr "Adaugă o Găurire" -#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1884 +#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1887 msgid "Add Drill Hole Array" msgstr "Adaugă o arie de Găuriri" -#: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:1885 +#: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:1888 msgid "Resize Drill" msgstr "Redimens. Găurire" -#: flatcamGUI/FlatCAMGUI.py:669 flatcamGUI/FlatCAMGUI.py:1888 +#: flatcamGUI/FlatCAMGUI.py:669 flatcamGUI/FlatCAMGUI.py:1891 msgid "Copy Drill" msgstr "Copiază Găurire" -#: flatcamGUI/FlatCAMGUI.py:670 flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:670 flatcamGUI/FlatCAMGUI.py:1893 msgid "Delete Drill" msgstr "Șterge Găurire" -#: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1893 +#: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1896 msgid "Move Drill" msgstr "Muta Găurire" -#: flatcamGUI/FlatCAMGUI.py:677 flatcamGUI/FlatCAMGUI.py:1897 +#: flatcamGUI/FlatCAMGUI.py:677 flatcamGUI/FlatCAMGUI.py:1900 msgid "Add Circle" msgstr "Adaugă Cerc" -#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1898 +#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1901 msgid "Add Arc" msgstr "Adaugă Arc" -#: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1900 +#: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1903 msgid "Add Rectangle" msgstr "Adaugă Patrulater" -#: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1903 +#: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1906 msgid "Add Path" msgstr "Adaugă Cale" -#: flatcamGUI/FlatCAMGUI.py:684 flatcamGUI/FlatCAMGUI.py:1905 +#: flatcamGUI/FlatCAMGUI.py:684 flatcamGUI/FlatCAMGUI.py:1908 msgid "Add Polygon" msgstr "Adaugă Poligon" -#: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:1910 msgid "Add Text" msgstr "Adaugă Text" -#: flatcamGUI/FlatCAMGUI.py:687 flatcamGUI/FlatCAMGUI.py:1909 +#: flatcamGUI/FlatCAMGUI.py:687 flatcamGUI/FlatCAMGUI.py:1912 msgid "Add Buffer" msgstr "Adaugă Bufer" -#: flatcamGUI/FlatCAMGUI.py:688 flatcamGUI/FlatCAMGUI.py:1910 +#: flatcamGUI/FlatCAMGUI.py:688 flatcamGUI/FlatCAMGUI.py:1913 msgid "Paint Shape" msgstr "Paint o forma" -#: flatcamGUI/FlatCAMGUI.py:691 flatcamGUI/FlatCAMGUI.py:1913 +#: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:724 +#: flatcamGUI/FlatCAMGUI.py:1914 flatcamGUI/FlatCAMGUI.py:1950 +msgid "Eraser" +msgstr "Stergere Selectivă" + +#: flatcamGUI/FlatCAMGUI.py:692 flatcamGUI/FlatCAMGUI.py:1918 msgid "Polygon Union" msgstr "Uniune Poligoane" -#: flatcamGUI/FlatCAMGUI.py:693 flatcamGUI/FlatCAMGUI.py:1915 +#: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:1920 msgid "Polygon Intersection" msgstr "Intersecţie Poligoane" -#: flatcamGUI/FlatCAMGUI.py:695 flatcamGUI/FlatCAMGUI.py:1917 +#: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:1922 msgid "Polygon Subtraction" msgstr "Substracţie Poligoane" -#: flatcamGUI/FlatCAMGUI.py:698 flatcamGUI/FlatCAMGUI.py:1920 +#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:1925 msgid "Cut Path" msgstr "Taie Cale" -#: flatcamGUI/FlatCAMGUI.py:699 +#: flatcamGUI/FlatCAMGUI.py:700 msgid "Copy Shape(s)" msgstr "Copiază forme geo." -#: flatcamGUI/FlatCAMGUI.py:702 +#: flatcamGUI/FlatCAMGUI.py:703 msgid "Delete Shape '-'" msgstr "Șterge forme geo." -#: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:728 -#: flatcamGUI/FlatCAMGUI.py:1925 flatcamGUI/FlatCAMGUI.py:1950 +#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:731 +#: flatcamGUI/FlatCAMGUI.py:1930 flatcamGUI/FlatCAMGUI.py:1957 msgid "Transformations" msgstr "Transformări" -#: flatcamGUI/FlatCAMGUI.py:706 +#: flatcamGUI/FlatCAMGUI.py:707 msgid "Move Objects " msgstr "Muta obiecte" -#: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:1932 +#: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:1937 msgid "Add Pad" msgstr "Adaugă Pad" -#: flatcamGUI/FlatCAMGUI.py:712 flatcamGUI/FlatCAMGUI.py:1934 +#: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1939 msgid "Add Track" msgstr "Adaugă Traseu" -#: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1935 +#: flatcamGUI/FlatCAMGUI.py:714 flatcamGUI/FlatCAMGUI.py:1940 msgid "Add Region" msgstr "Adaugă Regiune" -#: flatcamGUI/FlatCAMGUI.py:715 flatcamGUI/FlatCAMGUI.py:1937 +#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:1942 msgid "Poligonize" msgstr "Poligonizare" -#: flatcamGUI/FlatCAMGUI.py:717 flatcamGUI/FlatCAMGUI.py:1939 +#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1944 msgid "SemiDisc" msgstr "SemiDisc" -#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1940 +#: flatcamGUI/FlatCAMGUI.py:719 flatcamGUI/FlatCAMGUI.py:1945 msgid "Disc" msgstr "Disc" -#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1602 -#: flatcamGUI/FlatCAMGUI.py:1622 flatcamGUI/FlatCAMGUI.py:1952 +#: flatcamGUI/FlatCAMGUI.py:733 flatcamGUI/FlatCAMGUI.py:1605 +#: flatcamGUI/FlatCAMGUI.py:1625 flatcamGUI/FlatCAMGUI.py:1959 #: flatcamTools/ToolMove.py:26 msgid "Move" msgstr "Mutare" -#: flatcamGUI/FlatCAMGUI.py:736 flatcamGUI/FlatCAMGUI.py:1958 +#: flatcamGUI/FlatCAMGUI.py:739 flatcamGUI/FlatCAMGUI.py:1965 msgid "Snap to grid" msgstr "Lipire la grid" -#: flatcamGUI/FlatCAMGUI.py:739 flatcamGUI/FlatCAMGUI.py:1961 +#: flatcamGUI/FlatCAMGUI.py:742 flatcamGUI/FlatCAMGUI.py:1968 msgid "Grid X snapping distance" msgstr "Distanta de lipire la grid pe axa X" -#: flatcamGUI/FlatCAMGUI.py:744 flatcamGUI/FlatCAMGUI.py:1966 +#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/FlatCAMGUI.py:1973 msgid "Grid Y snapping distance" msgstr "Distanta de lipire la grid pe axa Y" -#: flatcamGUI/FlatCAMGUI.py:750 flatcamGUI/FlatCAMGUI.py:1972 +#: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:1979 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." @@ -4526,64 +4553,64 @@ msgstr "" "când este activ, valoarea de pe Grid_X\n" "este copiata și in Grid_Y" -#: flatcamGUI/FlatCAMGUI.py:756 flatcamGUI/FlatCAMGUI.py:1978 +#: flatcamGUI/FlatCAMGUI.py:759 flatcamGUI/FlatCAMGUI.py:1985 msgid "Snap to corner" msgstr "Lipire la colt" -#: flatcamGUI/FlatCAMGUI.py:760 flatcamGUI/FlatCAMGUI.py:1982 -#: flatcamGUI/FlatCAMGUI.py:3339 +#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:1989 +#: flatcamGUI/FlatCAMGUI.py:3346 msgid "Max. magnet distance" msgstr "Distanta magnetica maxima" -#: flatcamGUI/FlatCAMGUI.py:788 flatcamGUI/FlatCAMGUI.py:1586 +#: flatcamGUI/FlatCAMGUI.py:791 flatcamGUI/FlatCAMGUI.py:1589 msgid "Project" msgstr "Proiect" -#: flatcamGUI/FlatCAMGUI.py:798 +#: flatcamGUI/FlatCAMGUI.py:801 msgid "Selected" msgstr "Selectat" -#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:825 +#: flatcamGUI/FlatCAMGUI.py:820 flatcamGUI/FlatCAMGUI.py:828 msgid "Plot Area" msgstr "Arie Afișare" -#: flatcamGUI/FlatCAMGUI.py:849 +#: flatcamGUI/FlatCAMGUI.py:852 msgid "General" msgstr "General" -#: flatcamGUI/FlatCAMGUI.py:858 +#: flatcamGUI/FlatCAMGUI.py:861 msgid "APP. DEFAULTS" msgstr "Default for App" -#: flatcamGUI/FlatCAMGUI.py:859 +#: flatcamGUI/FlatCAMGUI.py:862 msgid "PROJ. OPTIONS " msgstr "Opțiuni Proiect" -#: flatcamGUI/FlatCAMGUI.py:870 +#: flatcamGUI/FlatCAMGUI.py:873 msgid "GERBER" msgstr "GERBER" -#: flatcamGUI/FlatCAMGUI.py:879 +#: flatcamGUI/FlatCAMGUI.py:882 msgid "EXCELLON" msgstr "EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:888 +#: flatcamGUI/FlatCAMGUI.py:891 msgid "GEOMETRY" msgstr "GEOMETRIE" -#: flatcamGUI/FlatCAMGUI.py:898 +#: flatcamGUI/FlatCAMGUI.py:901 msgid "CNC-JOB" msgstr "CNCJob" -#: flatcamGUI/FlatCAMGUI.py:907 +#: flatcamGUI/FlatCAMGUI.py:910 msgid "TOOLS" msgstr "Unelte" -#: flatcamGUI/FlatCAMGUI.py:924 +#: flatcamGUI/FlatCAMGUI.py:927 msgid "Import Preferences" msgstr "Importa Preferințele" -#: flatcamGUI/FlatCAMGUI.py:927 +#: flatcamGUI/FlatCAMGUI.py:930 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -4597,11 +4624,11 @@ msgstr "" "FlatCAM salvează automat un fişier numit 'factory_defaults'\n" "la prima pornire. Nu șterge acel fişier." -#: flatcamGUI/FlatCAMGUI.py:934 +#: flatcamGUI/FlatCAMGUI.py:937 msgid "Export Preferences" msgstr "Exporta Preferințele" -#: flatcamGUI/FlatCAMGUI.py:937 +#: flatcamGUI/FlatCAMGUI.py:940 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." @@ -4609,19 +4636,19 @@ msgstr "" "Exporta un set complet de setări ale FlatCAM\n" "intr-un fişier care se salvează pe HDD." -#: flatcamGUI/FlatCAMGUI.py:942 +#: flatcamGUI/FlatCAMGUI.py:945 msgid "Open Pref Folder" msgstr "Deschide Pref Dir" -#: flatcamGUI/FlatCAMGUI.py:945 +#: flatcamGUI/FlatCAMGUI.py:948 msgid "Open the folder where FlatCAM save the preferences files." msgstr "Deschide directorul unde FlatCAM salvează fişierele cu setări." -#: flatcamGUI/FlatCAMGUI.py:953 +#: flatcamGUI/FlatCAMGUI.py:956 msgid "Save Preferences" msgstr "Salvează Pref" -#: flatcamGUI/FlatCAMGUI.py:956 +#: flatcamGUI/FlatCAMGUI.py:959 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." @@ -4629,7 +4656,7 @@ msgstr "" "Salvează setările curente in fişierul numit: 'current_defaults'\n" "fişier care este cel unde se salvează preferințele cu care se va lucra." -#: flatcamGUI/FlatCAMGUI.py:982 +#: flatcamGUI/FlatCAMGUI.py:985 msgid "" "General Shortcut list
\n" " Editor Shortcut list
\n" "
\n" @@ -5824,99 +5851,99 @@ msgstr "" "
\n" " " -#: flatcamGUI/FlatCAMGUI.py:1579 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Disable" msgstr "Dezactivează" -#: flatcamGUI/FlatCAMGUI.py:1581 +#: flatcamGUI/FlatCAMGUI.py:1584 msgid "New" msgstr "Nou" -#: flatcamGUI/FlatCAMGUI.py:1582 +#: flatcamGUI/FlatCAMGUI.py:1585 msgid "Geometry" msgstr "Geometrie" -#: flatcamGUI/FlatCAMGUI.py:1584 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Excellon" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1589 +#: flatcamGUI/FlatCAMGUI.py:1592 msgid "Grids" msgstr "Grid-uri" -#: flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "View" msgstr "Vizualizare" -#: flatcamGUI/FlatCAMGUI.py:1593 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Clear Plot" msgstr "Șterge Afișare" -#: flatcamGUI/FlatCAMGUI.py:1594 +#: flatcamGUI/FlatCAMGUI.py:1597 msgid "Replot" msgstr "Reafișare" -#: flatcamGUI/FlatCAMGUI.py:1597 +#: flatcamGUI/FlatCAMGUI.py:1600 msgid "Geo Editor" msgstr "Editor Geometrii" -#: flatcamGUI/FlatCAMGUI.py:1598 +#: flatcamGUI/FlatCAMGUI.py:1601 msgid "Line" msgstr "Linie" -#: flatcamGUI/FlatCAMGUI.py:1599 +#: flatcamGUI/FlatCAMGUI.py:1602 msgid "Rectangle" msgstr "Patrulater" -#: flatcamGUI/FlatCAMGUI.py:1600 +#: flatcamGUI/FlatCAMGUI.py:1603 msgid "Cut" msgstr "Tăiere" -#: flatcamGUI/FlatCAMGUI.py:1605 +#: flatcamGUI/FlatCAMGUI.py:1608 msgid "Pad" msgstr "Pad" -#: flatcamGUI/FlatCAMGUI.py:1606 +#: flatcamGUI/FlatCAMGUI.py:1609 msgid "Pad Array" msgstr "Arie de paduri" -#: flatcamGUI/FlatCAMGUI.py:1607 +#: flatcamGUI/FlatCAMGUI.py:1610 msgid "Track" msgstr "Traseu" -#: flatcamGUI/FlatCAMGUI.py:1608 +#: flatcamGUI/FlatCAMGUI.py:1611 msgid "Region" msgstr "Regiune" -#: flatcamGUI/FlatCAMGUI.py:1610 +#: flatcamGUI/FlatCAMGUI.py:1613 msgid "Exc Editor" msgstr "Editor EXC." -#: flatcamGUI/FlatCAMGUI.py:1611 +#: flatcamGUI/FlatCAMGUI.py:1614 msgid "Add Drill" msgstr "Adaugă găurire" -#: flatcamGUI/FlatCAMGUI.py:1643 +#: flatcamGUI/FlatCAMGUI.py:1646 msgid "Print Preview" msgstr "Preview tiparire" -#: flatcamGUI/FlatCAMGUI.py:1644 +#: flatcamGUI/FlatCAMGUI.py:1647 msgid "Print Code" msgstr "Tipareste Cod" -#: flatcamGUI/FlatCAMGUI.py:1645 +#: flatcamGUI/FlatCAMGUI.py:1648 msgid "Find in Code" msgstr "Cauta in Cod" -#: flatcamGUI/FlatCAMGUI.py:1650 +#: flatcamGUI/FlatCAMGUI.py:1653 msgid "Replace With" msgstr "Inlocuieste cu" -#: flatcamGUI/FlatCAMGUI.py:1654 +#: flatcamGUI/FlatCAMGUI.py:1657 msgid "All" msgstr "Toate" -#: flatcamGUI/FlatCAMGUI.py:1656 +#: flatcamGUI/FlatCAMGUI.py:1659 msgid "" "When checked it will replace all instances in the 'Find' box\n" "with the text in the 'Replace' box.." @@ -5925,15 +5952,15 @@ msgstr "" "'Cauta'\n" "cu textul din casuta 'Inlocuieste'" -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1662 msgid "Open Code" msgstr "Deschide Cod" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1663 msgid "Save Code" msgstr "Salvează Cod" -#: flatcamGUI/FlatCAMGUI.py:1695 +#: flatcamGUI/FlatCAMGUI.py:1698 msgid "" "Relative neasurement.\n" "Reference is last click position" @@ -5941,7 +5968,7 @@ msgstr "" "Masuratoare relativa.\n" "Referința este poziţia ultimului click pe canvas." -#: flatcamGUI/FlatCAMGUI.py:1701 +#: flatcamGUI/FlatCAMGUI.py:1704 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" @@ -5949,23 +5976,23 @@ msgstr "" "Masuratoare absoluta.\n" "Referința este originea (0, 0)." -#: flatcamGUI/FlatCAMGUI.py:1896 +#: flatcamGUI/FlatCAMGUI.py:1899 msgid "Select 'Esc'" msgstr "Select" -#: flatcamGUI/FlatCAMGUI.py:1921 +#: flatcamGUI/FlatCAMGUI.py:1926 msgid "Copy Objects" msgstr "Copiază Obiecte" -#: flatcamGUI/FlatCAMGUI.py:1923 +#: flatcamGUI/FlatCAMGUI.py:1928 msgid "Delete Shape" msgstr "Șterge forme geo" -#: flatcamGUI/FlatCAMGUI.py:1928 +#: flatcamGUI/FlatCAMGUI.py:1933 msgid "Move Objects" msgstr "Muta Obiecte" -#: flatcamGUI/FlatCAMGUI.py:2358 +#: flatcamGUI/FlatCAMGUI.py:2365 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -5976,17 +6003,17 @@ msgstr "" "apoi selectează forma geo. taietoare. La final apasa tasta ~X~ sau\n" "butonul corespunzator din Toolbar." -#: flatcamGUI/FlatCAMGUI.py:2365 flatcamGUI/FlatCAMGUI.py:2502 -#: flatcamGUI/FlatCAMGUI.py:2561 flatcamGUI/FlatCAMGUI.py:2581 +#: flatcamGUI/FlatCAMGUI.py:2372 flatcamGUI/FlatCAMGUI.py:2509 +#: flatcamGUI/FlatCAMGUI.py:2568 flatcamGUI/FlatCAMGUI.py:2588 msgid "Warning" msgstr "Atenţie" -#: flatcamGUI/FlatCAMGUI.py:2432 flatcamGUI/FlatCAMGUI.py:2631 -#: flatcamGUI/FlatCAMGUI.py:2842 +#: flatcamGUI/FlatCAMGUI.py:2439 flatcamGUI/FlatCAMGUI.py:2638 +#: flatcamGUI/FlatCAMGUI.py:2849 msgid "[WARNING_NOTCL] Cancelled." msgstr "[WARNING_NOTCL] Anulat." -#: flatcamGUI/FlatCAMGUI.py:2497 +#: flatcamGUI/FlatCAMGUI.py:2504 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." @@ -5994,7 +6021,7 @@ msgstr "" "Selectează forma geometrică asupra careia să se\n" "aplice Unealta Intersecţie." -#: flatcamGUI/FlatCAMGUI.py:2556 +#: flatcamGUI/FlatCAMGUI.py:2563 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." @@ -6002,7 +6029,7 @@ msgstr "" "Selectează forma geometrică asupra careia să se\n" "aplice Unealta Substracţie." -#: flatcamGUI/FlatCAMGUI.py:2576 +#: flatcamGUI/FlatCAMGUI.py:2583 msgid "" "Please select geometry items \n" "on which to perform union." @@ -6010,55 +6037,55 @@ msgstr "" "Selectează forma geometrică asupra careia să se\n" "aplice Unealta Uniune." -#: flatcamGUI/FlatCAMGUI.py:2647 flatcamGUI/FlatCAMGUI.py:2859 +#: flatcamGUI/FlatCAMGUI.py:2654 flatcamGUI/FlatCAMGUI.py:2866 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete." msgstr "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentru ștergere." -#: flatcamGUI/FlatCAMGUI.py:2731 flatcamGUI/FlatCAMGUI.py:2926 +#: flatcamGUI/FlatCAMGUI.py:2738 flatcamGUI/FlatCAMGUI.py:2933 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy." msgstr "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentru copiere." -#: flatcamGUI/FlatCAMGUI.py:2777 flatcamGUI/FlatCAMGUI.py:2972 +#: flatcamGUI/FlatCAMGUI.py:2784 flatcamGUI/FlatCAMGUI.py:2979 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move." msgstr "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentru mutare." -#: flatcamGUI/FlatCAMGUI.py:2986 +#: flatcamGUI/FlatCAMGUI.py:2993 msgid "New Tool ..." msgstr "O noua Unealta ..." -#: flatcamGUI/FlatCAMGUI.py:2987 +#: flatcamGUI/FlatCAMGUI.py:2994 msgid "Enter a Tool Diameter:" msgstr "Introdu un Diametru de Unealta:" -#: flatcamGUI/FlatCAMGUI.py:3029 +#: flatcamGUI/FlatCAMGUI.py:3036 msgid "Measurement Tool exit..." msgstr "Măsurătoarea s-a terminat ..." -#: flatcamGUI/FlatCAMGUI.py:3324 +#: flatcamGUI/FlatCAMGUI.py:3331 msgid "Grid X value:" msgstr "Valoarea Grid_X:" -#: flatcamGUI/FlatCAMGUI.py:3326 +#: flatcamGUI/FlatCAMGUI.py:3333 msgid "This is the Grid snap value on X axis." msgstr "Aceasta este valoare pentru lipire pe Grid pe axa X." -#: flatcamGUI/FlatCAMGUI.py:3331 +#: flatcamGUI/FlatCAMGUI.py:3338 msgid "Grid Y value:" msgstr "Valoarea Grid_Y:" -#: flatcamGUI/FlatCAMGUI.py:3333 +#: flatcamGUI/FlatCAMGUI.py:3340 msgid "This is the Grid snap value on Y axis." msgstr "Aceasta este valoare pentru lipire pe Grid pe axa Y." -#: flatcamGUI/FlatCAMGUI.py:3338 +#: flatcamGUI/FlatCAMGUI.py:3345 msgid "Snap Max:" msgstr "Lipire Max:" -#: flatcamGUI/FlatCAMGUI.py:3343 +#: flatcamGUI/FlatCAMGUI.py:3350 msgid "Workspace:" msgstr "Spatiu de lucru:" -#: flatcamGUI/FlatCAMGUI.py:3345 +#: flatcamGUI/FlatCAMGUI.py:3352 msgid "" "Draw a delimiting rectangle on canvas.\n" "The purpose is to illustrate the limits for our work." @@ -6066,11 +6093,11 @@ msgstr "" "Desenează un patrulater care delimitează o asuprafata de lucru.\n" "Scopul este de a ilustra limitele suprafetei noastre de lucru." -#: flatcamGUI/FlatCAMGUI.py:3348 +#: flatcamGUI/FlatCAMGUI.py:3355 msgid "Wk. format:" msgstr "Format SL:" -#: flatcamGUI/FlatCAMGUI.py:3350 +#: flatcamGUI/FlatCAMGUI.py:3357 msgid "" "Select the type of rectangle to be used on canvas,\n" "as valid workspace." @@ -6078,11 +6105,11 @@ msgstr "" "Selectează tipul de patrulater care va fi desenat pe canvas,\n" "pentru a delimita suprafata de lucru disponibila (SL)." -#: flatcamGUI/FlatCAMGUI.py:3363 +#: flatcamGUI/FlatCAMGUI.py:3370 msgid "Plot Fill:" msgstr "Culoare Afișare:" -#: flatcamGUI/FlatCAMGUI.py:3365 +#: flatcamGUI/FlatCAMGUI.py:3372 msgid "" "Set the fill color for plotted objects.\n" "First 6 digits are the color and the last 2\n" @@ -6092,28 +6119,28 @@ msgstr "" "Primii 6 digiti sunt culoarea efectiva și ultimii\n" "doi sunt pentru nivelul de transparenţă (alfa)." -#: flatcamGUI/FlatCAMGUI.py:3379 flatcamGUI/FlatCAMGUI.py:3429 -#: flatcamGUI/FlatCAMGUI.py:3479 +#: flatcamGUI/FlatCAMGUI.py:3386 flatcamGUI/FlatCAMGUI.py:3436 +#: flatcamGUI/FlatCAMGUI.py:3486 msgid "Alpha Level:" msgstr "Nivel Alfa:" -#: flatcamGUI/FlatCAMGUI.py:3381 +#: flatcamGUI/FlatCAMGUI.py:3388 msgid "Set the fill transparency for plotted objects." msgstr "Setează nivelul de transparenţa pentru obiectele afisate." -#: flatcamGUI/FlatCAMGUI.py:3398 +#: flatcamGUI/FlatCAMGUI.py:3405 msgid "Plot Line:" msgstr "Culoare contur:" -#: flatcamGUI/FlatCAMGUI.py:3400 +#: flatcamGUI/FlatCAMGUI.py:3407 msgid "Set the line color for plotted objects." msgstr "Setează culoarea conturului." -#: flatcamGUI/FlatCAMGUI.py:3412 +#: flatcamGUI/FlatCAMGUI.py:3419 msgid "Sel. Fill:" msgstr "Culoare Selecţie:" -#: flatcamGUI/FlatCAMGUI.py:3414 +#: flatcamGUI/FlatCAMGUI.py:3421 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from left to right.\n" @@ -6125,27 +6152,27 @@ msgstr "" "Primii 6 digiti sunt culoarea efectiva și ultimii\n" "doi sunt pentru nivelul de transparenţă (alfa)." -#: flatcamGUI/FlatCAMGUI.py:3431 +#: flatcamGUI/FlatCAMGUI.py:3438 msgid "Set the fill transparency for the 'left to right' selection box." msgstr "" "Setează transparenţa formei de selecţie când selectia\n" "se face de la stânga la dreapta." -#: flatcamGUI/FlatCAMGUI.py:3448 +#: flatcamGUI/FlatCAMGUI.py:3455 msgid "Sel. Line:" msgstr "Contur Selecţie:" -#: flatcamGUI/FlatCAMGUI.py:3450 +#: flatcamGUI/FlatCAMGUI.py:3457 msgid "Set the line color for the 'left to right' selection box." msgstr "" "Setează transparenţa conturului formei de selecţie\n" "când selectia se face de la stânga la dreapta." -#: flatcamGUI/FlatCAMGUI.py:3462 +#: flatcamGUI/FlatCAMGUI.py:3469 msgid "Sel2. Fill:" msgstr "Culoare Selecţie 2:" -#: flatcamGUI/FlatCAMGUI.py:3464 +#: flatcamGUI/FlatCAMGUI.py:3471 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from right to left.\n" @@ -6157,53 +6184,53 @@ msgstr "" "Primii 6 digiti sunt culoarea efectiva și ultimii\n" "doi sunt pentru nivelul de transparenţă (alfa)." -#: flatcamGUI/FlatCAMGUI.py:3481 +#: flatcamGUI/FlatCAMGUI.py:3488 msgid "Set the fill transparency for selection 'right to left' box." msgstr "" "Setează transparenţa formei de selecţie când selectia\n" "se face de la dreapta la stânga." -#: flatcamGUI/FlatCAMGUI.py:3498 +#: flatcamGUI/FlatCAMGUI.py:3505 msgid "Sel2. Line:" msgstr "Contur Selecţie 2:" -#: flatcamGUI/FlatCAMGUI.py:3500 +#: flatcamGUI/FlatCAMGUI.py:3507 msgid "Set the line color for the 'right to left' selection box." msgstr "" "Setează transparenţa conturului formei de selecţie\n" "când selectia se face de la dreapta la stânga." -#: flatcamGUI/FlatCAMGUI.py:3512 +#: flatcamGUI/FlatCAMGUI.py:3519 msgid "Editor Draw:" msgstr "Desen Editor:" -#: flatcamGUI/FlatCAMGUI.py:3514 +#: flatcamGUI/FlatCAMGUI.py:3521 msgid "Set the color for the shape." msgstr "Setează culoarea pentru forma geometrică din Editor." -#: flatcamGUI/FlatCAMGUI.py:3526 +#: flatcamGUI/FlatCAMGUI.py:3533 msgid "Editor Draw Sel.:" msgstr "Sel. Desen Editor:" -#: flatcamGUI/FlatCAMGUI.py:3528 +#: flatcamGUI/FlatCAMGUI.py:3535 msgid "Set the color of the shape when selected." msgstr "" "Setează culoarea formei geometrice in Editor\n" "când se face o selecţie." -#: flatcamGUI/FlatCAMGUI.py:3540 +#: flatcamGUI/FlatCAMGUI.py:3547 msgid "Project Items:" msgstr "Elemente Proiect:" -#: flatcamGUI/FlatCAMGUI.py:3542 +#: flatcamGUI/FlatCAMGUI.py:3549 msgid "Set the color of the items in Project Tab Tree." msgstr "Setează culoarea elementelor din tab-ul Proiect." -#: flatcamGUI/FlatCAMGUI.py:3553 +#: flatcamGUI/FlatCAMGUI.py:3560 msgid "Proj. Dis. Items:" msgstr "Elem. proj. dez." -#: flatcamGUI/FlatCAMGUI.py:3555 +#: flatcamGUI/FlatCAMGUI.py:3562 msgid "" "Set the color of the items in Project Tab Tree,\n" "for the case when the items are disabled." @@ -6211,15 +6238,15 @@ msgstr "" "Setează culoarea elementelor din tab-ul Proiect\n" "in cazul in care elementele sunt dezactivate." -#: flatcamGUI/FlatCAMGUI.py:3606 +#: flatcamGUI/FlatCAMGUI.py:3613 msgid "GUI Settings" msgstr "Setări GUI" -#: flatcamGUI/FlatCAMGUI.py:3613 +#: flatcamGUI/FlatCAMGUI.py:3620 msgid "Layout:" msgstr "Amplasare:" -#: flatcamGUI/FlatCAMGUI.py:3615 +#: flatcamGUI/FlatCAMGUI.py:3622 msgid "" "Select an layout for FlatCAM.\n" "It is applied immediately." @@ -6227,11 +6254,11 @@ msgstr "" "Selectează un stil de amplasare a elementelor GUI in FlatCAM.\n" "Se aplica imediat." -#: flatcamGUI/FlatCAMGUI.py:3631 +#: flatcamGUI/FlatCAMGUI.py:3638 msgid "Style:" msgstr "Stil:" -#: flatcamGUI/FlatCAMGUI.py:3633 +#: flatcamGUI/FlatCAMGUI.py:3640 msgid "" "Select an style for FlatCAM.\n" "It will be applied at the next app start." @@ -6239,11 +6266,11 @@ msgstr "" "Selectează un stil pentru FlatCAM.\n" "Se va aplica la urmatoarea pornire a aplicaţiei." -#: flatcamGUI/FlatCAMGUI.py:3644 +#: flatcamGUI/FlatCAMGUI.py:3651 msgid "HDPI Support:" msgstr "Suport H-DPI:" -#: flatcamGUI/FlatCAMGUI.py:3646 +#: flatcamGUI/FlatCAMGUI.py:3653 msgid "" "Enable High DPI support for FlatCAM.\n" "It will be applied at the next app start." @@ -6252,11 +6279,11 @@ msgstr "" "Util pentru monitoarele 4k.\n" "Va fi aplicată la următoarea pornire a aplicaţiei." -#: flatcamGUI/FlatCAMGUI.py:3659 +#: flatcamGUI/FlatCAMGUI.py:3666 msgid "Clear GUI Settings:" msgstr "Șterge setările GUI:" -#: flatcamGUI/FlatCAMGUI.py:3661 +#: flatcamGUI/FlatCAMGUI.py:3668 msgid "" "Clear the GUI settings for FlatCAM,\n" "such as: layout, gui state, style, hdpi support etc." @@ -6264,15 +6291,15 @@ msgstr "" "Șterge setările GUI pentru FlatCAM,\n" "cum ar fi: amplasare, stare UI, suport HDPI sau traducerea." -#: flatcamGUI/FlatCAMGUI.py:3664 +#: flatcamGUI/FlatCAMGUI.py:3671 msgid "Clear" msgstr "Șterge" -#: flatcamGUI/FlatCAMGUI.py:3668 +#: flatcamGUI/FlatCAMGUI.py:3675 msgid "Hover Shape:" msgstr "Forma Hover:" -#: flatcamGUI/FlatCAMGUI.py:3670 +#: flatcamGUI/FlatCAMGUI.py:3677 msgid "" "Enable display of a hover shape for FlatCAM objects.\n" "It is displayed whenever the mouse cursor is hovering\n" @@ -6282,11 +6309,11 @@ msgstr "" "in canvas-ul FlatCAM. Forma este afișată doar daca obiectul \n" "nu este selectat." -#: flatcamGUI/FlatCAMGUI.py:3677 +#: flatcamGUI/FlatCAMGUI.py:3684 msgid "Sel. Shape:" msgstr "Forma Sel.:" -#: flatcamGUI/FlatCAMGUI.py:3679 +#: flatcamGUI/FlatCAMGUI.py:3686 msgid "" "Enable the display of a selection shape for FlatCAM objects.\n" "It is displayed whenever the mouse selects an object\n" @@ -6298,23 +6325,23 @@ msgstr "" "pe canvas-ul FlatCAM fie facând click pe obiect fie prin\n" "crearea unei ferestre de selectie." -#: flatcamGUI/FlatCAMGUI.py:3721 +#: flatcamGUI/FlatCAMGUI.py:3728 msgid "Are you sure you want to delete the GUI Settings? \n" msgstr "Esti sigur că dorești să ștergi setările GUI?\n" -#: flatcamGUI/FlatCAMGUI.py:3724 +#: flatcamGUI/FlatCAMGUI.py:3731 msgid "Clear GUI Settings" msgstr "Șterge Setările GUI" -#: flatcamGUI/FlatCAMGUI.py:3745 +#: flatcamGUI/FlatCAMGUI.py:3752 msgid "App Preferences" msgstr "Preferințele Aplicaţie" -#: flatcamGUI/FlatCAMGUI.py:3751 +#: flatcamGUI/FlatCAMGUI.py:3758 msgid "Units:" msgstr "Unitati:" -#: flatcamGUI/FlatCAMGUI.py:3752 +#: flatcamGUI/FlatCAMGUI.py:3759 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" @@ -6323,11 +6350,11 @@ msgstr "" "Unitatea de masura pt FlatCAM.\n" "Este setată la fiecare pornire a programului." -#: flatcamGUI/FlatCAMGUI.py:3759 +#: flatcamGUI/FlatCAMGUI.py:3766 msgid "APP. LEVEL:" msgstr "Nivel aplic.:" -#: flatcamGUI/FlatCAMGUI.py:3760 +#: flatcamGUI/FlatCAMGUI.py:3767 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -6343,19 +6370,19 @@ msgstr "" "Alegerea efectuata aici va influenta ce aparamtri sunt disponibili\n" "in Tab-ul SELECTAT dar și in alte parti ale FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:3769 +#: flatcamGUI/FlatCAMGUI.py:3776 msgid "Languages:" msgstr "Traduceri:" -#: flatcamGUI/FlatCAMGUI.py:3770 +#: flatcamGUI/FlatCAMGUI.py:3777 msgid "Set the language used throughout FlatCAM." msgstr "Setează limba folosita pentru textele din FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:3773 +#: flatcamGUI/FlatCAMGUI.py:3780 msgid "Apply Language" msgstr "Aplica Traducere" -#: flatcamGUI/FlatCAMGUI.py:3774 +#: flatcamGUI/FlatCAMGUI.py:3781 msgid "" "Set the language used throughout FlatCAM.\n" "The app will restart after click.Windows: When FlatCAM is installed in " @@ -6371,11 +6398,11 @@ msgstr "" "Program Files este posibil ca aplicatia să nu se restarteze\n" "după click datorită unor setări de securitate ale Windows. " -#: flatcamGUI/FlatCAMGUI.py:3783 +#: flatcamGUI/FlatCAMGUI.py:3790 msgid "Shell at StartUp:" msgstr "Shell la pornire:" -#: flatcamGUI/FlatCAMGUI.py:3785 flatcamGUI/FlatCAMGUI.py:3790 +#: flatcamGUI/FlatCAMGUI.py:3792 flatcamGUI/FlatCAMGUI.py:3797 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." @@ -6384,11 +6411,11 @@ msgstr "" "automata a ferestrei Shell (linia de comanda)\n" "la initializarea aplicaţiei." -#: flatcamGUI/FlatCAMGUI.py:3795 +#: flatcamGUI/FlatCAMGUI.py:3802 msgid "Version Check:" msgstr "Verificare versiune:" -#: flatcamGUI/FlatCAMGUI.py:3797 flatcamGUI/FlatCAMGUI.py:3802 +#: flatcamGUI/FlatCAMGUI.py:3804 flatcamGUI/FlatCAMGUI.py:3809 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." @@ -6397,11 +6424,11 @@ msgstr "" "daca exista o versiune mai noua,\n" "la pornirea aplicaţiei." -#: flatcamGUI/FlatCAMGUI.py:3807 +#: flatcamGUI/FlatCAMGUI.py:3814 msgid "Send Stats:" msgstr "Statistici:" -#: flatcamGUI/FlatCAMGUI.py:3809 flatcamGUI/FlatCAMGUI.py:3814 +#: flatcamGUI/FlatCAMGUI.py:3816 flatcamGUI/FlatCAMGUI.py:3821 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." @@ -6411,11 +6438,11 @@ msgstr "" "aplicaţia. In acest fel dezvoltatorii vor sti unde să se focalizeze\n" "in crearea de inbunatatiri." -#: flatcamGUI/FlatCAMGUI.py:3821 +#: flatcamGUI/FlatCAMGUI.py:3828 msgid "Pan Button:" msgstr "Buton Pan (mișcare):" -#: flatcamGUI/FlatCAMGUI.py:3822 +#: flatcamGUI/FlatCAMGUI.py:3829 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" @@ -6425,19 +6452,19 @@ msgstr "" "- MMB - butonul din mijloc al mouse-ului\n" "- RMB - butonul in dreapta al mouse-ului." -#: flatcamGUI/FlatCAMGUI.py:3829 +#: flatcamGUI/FlatCAMGUI.py:3836 msgid "Multiple Sel:" msgstr "Sel. multipla:" -#: flatcamGUI/FlatCAMGUI.py:3830 +#: flatcamGUI/FlatCAMGUI.py:3837 msgid "Select the key used for multiple selection." msgstr "Selectează tasta folosita pentru selectia multipla." -#: flatcamGUI/FlatCAMGUI.py:3835 +#: flatcamGUI/FlatCAMGUI.py:3842 msgid "Project at StartUp:" msgstr "Proiect la pornire:" -#: flatcamGUI/FlatCAMGUI.py:3837 flatcamGUI/FlatCAMGUI.py:3842 +#: flatcamGUI/FlatCAMGUI.py:3844 flatcamGUI/FlatCAMGUI.py:3849 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." @@ -6445,11 +6472,11 @@ msgstr "" "Bifează aici daca dorești ca zona Notebook să fie\n" "afișată automat la pornire." -#: flatcamGUI/FlatCAMGUI.py:3847 +#: flatcamGUI/FlatCAMGUI.py:3854 msgid "Project AutoHide:" msgstr "Ascundere Proiect:" -#: flatcamGUI/FlatCAMGUI.py:3849 flatcamGUI/FlatCAMGUI.py:3855 +#: flatcamGUI/FlatCAMGUI.py:3856 flatcamGUI/FlatCAMGUI.py:3862 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "hide automatically when there are no objects loaded and\n" @@ -6459,11 +6486,11 @@ msgstr "" "când nu sunt obiecte incărcate și să fie afișată automat\n" "când un obiect nou este creat/incărcat." -#: flatcamGUI/FlatCAMGUI.py:3861 +#: flatcamGUI/FlatCAMGUI.py:3868 msgid "Enable ToolTips:" msgstr "Activează ToolTip-uri:" -#: flatcamGUI/FlatCAMGUI.py:3863 flatcamGUI/FlatCAMGUI.py:3868 +#: flatcamGUI/FlatCAMGUI.py:3870 flatcamGUI/FlatCAMGUI.py:3875 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." @@ -6471,11 +6498,11 @@ msgstr "" "Bifează daca dorești ca să fie afisate texte explicative când se\n" "tine mouse-ul deasupra diverselor texte din FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:3871 +#: flatcamGUI/FlatCAMGUI.py:3878 msgid "Workers number:" msgstr "Număr de worker's:" -#: flatcamGUI/FlatCAMGUI.py:3873 flatcamGUI/FlatCAMGUI.py:3882 +#: flatcamGUI/FlatCAMGUI.py:3880 flatcamGUI/FlatCAMGUI.py:3889 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -6491,7 +6518,7 @@ msgstr "" "Valoarea standard este 2.\n" "Dupa schimbarea valoarii, se va aplica la următoarea pornire a aplicatiei." -#: flatcamGUI/FlatCAMGUI.py:3894 flatcamGUI/FlatCAMGUI.py:3903 +#: flatcamGUI/FlatCAMGUI.py:3901 flatcamGUI/FlatCAMGUI.py:3910 msgid "" "This value can counter the effect of the Circle Steps\n" "parameter. Default value is 0.01.\n" @@ -6507,11 +6534,11 @@ msgstr "" "O valoare mai mare va oferi mai multă performantă dar in\n" "defavoarea nievelului de detalii." -#: flatcamGUI/FlatCAMGUI.py:3939 +#: flatcamGUI/FlatCAMGUI.py:3946 msgid "\"Open\" behavior" msgstr "Stil \"Încarcare\"" -#: flatcamGUI/FlatCAMGUI.py:3941 +#: flatcamGUI/FlatCAMGUI.py:3948 msgid "" "When checked the path for the last saved file is used when saving files,\n" "and the path for the last opened file is used when opening files.\n" @@ -6529,11 +6556,11 @@ msgstr "" "ambele \n" "cazuri: fie că se deschide un fisier, fie că se salvează un fisier." -#: flatcamGUI/FlatCAMGUI.py:3950 +#: flatcamGUI/FlatCAMGUI.py:3957 msgid "Save Compressed Project" msgstr "Salvează Proiectul comprimat" -#: flatcamGUI/FlatCAMGUI.py:3952 +#: flatcamGUI/FlatCAMGUI.py:3959 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." @@ -6542,11 +6569,11 @@ msgstr "" "Când este bifat aici, se va salva o arhiva a proiectului\n" "lucru care poate reduce dimensiunea semnificativ." -#: flatcamGUI/FlatCAMGUI.py:3963 +#: flatcamGUI/FlatCAMGUI.py:3970 msgid "Compression Level:" msgstr "Nivel compresie:" -#: flatcamGUI/FlatCAMGUI.py:3965 +#: flatcamGUI/FlatCAMGUI.py:3972 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" @@ -6557,49 +6584,49 @@ msgstr "" "dar cu consum redus de resurse in timp ce valoarea 9 cere multa memorie RAM\n" "și in plus, durează semnificativ mai mult." -#: flatcamGUI/FlatCAMGUI.py:3991 flatcamGUI/FlatCAMGUI.py:4360 -#: flatcamGUI/FlatCAMGUI.py:5030 flatcamGUI/FlatCAMGUI.py:5402 +#: flatcamGUI/FlatCAMGUI.py:3998 flatcamGUI/FlatCAMGUI.py:4367 +#: flatcamGUI/FlatCAMGUI.py:5037 flatcamGUI/FlatCAMGUI.py:5409 #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:505 #: flatcamGUI/ObjectUI.py:833 flatcamGUI/ObjectUI.py:1350 msgid "Plot Options:" msgstr "Opțiuni afișare:" -#: flatcamGUI/FlatCAMGUI.py:3998 flatcamGUI/FlatCAMGUI.py:4372 +#: flatcamGUI/FlatCAMGUI.py:4005 flatcamGUI/FlatCAMGUI.py:4379 #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:506 msgid "Solid" msgstr "Solid" -#: flatcamGUI/FlatCAMGUI.py:4000 flatcamGUI/ObjectUI.py:158 +#: flatcamGUI/FlatCAMGUI.py:4007 flatcamGUI/ObjectUI.py:158 msgid "Solid color polygons." msgstr "Poligoane color solide." -#: flatcamGUI/FlatCAMGUI.py:4005 flatcamGUI/ObjectUI.py:164 +#: flatcamGUI/FlatCAMGUI.py:4012 flatcamGUI/ObjectUI.py:164 msgid "M-Color" msgstr "M-Color" -#: flatcamGUI/FlatCAMGUI.py:4007 flatcamGUI/ObjectUI.py:166 +#: flatcamGUI/FlatCAMGUI.py:4014 flatcamGUI/ObjectUI.py:166 msgid "Draw polygons in different colors." msgstr "" "Desenează poligoanele Gerber din multiple culori\n" "alese in mod aleator." -#: flatcamGUI/FlatCAMGUI.py:4012 flatcamGUI/FlatCAMGUI.py:4366 -#: flatcamGUI/FlatCAMGUI.py:5034 flatcamGUI/ObjectUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:4019 flatcamGUI/FlatCAMGUI.py:4373 +#: flatcamGUI/FlatCAMGUI.py:5041 flatcamGUI/ObjectUI.py:172 msgid "Plot" msgstr "Afisează" -#: flatcamGUI/FlatCAMGUI.py:4014 flatcamGUI/FlatCAMGUI.py:5036 +#: flatcamGUI/FlatCAMGUI.py:4021 flatcamGUI/FlatCAMGUI.py:5043 #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:546 #: flatcamGUI/ObjectUI.py:879 flatcamGUI/ObjectUI.py:1437 msgid "Plot (show) this object." msgstr "Afisează (arata) acest obiect." -#: flatcamGUI/FlatCAMGUI.py:4019 flatcamGUI/FlatCAMGUI.py:5043 -#: flatcamGUI/FlatCAMGUI.py:5438 +#: flatcamGUI/FlatCAMGUI.py:4026 flatcamGUI/FlatCAMGUI.py:5050 +#: flatcamGUI/FlatCAMGUI.py:5445 msgid "Circle Steps:" msgstr "Aprox. Cerc" -#: flatcamGUI/FlatCAMGUI.py:4021 +#: flatcamGUI/FlatCAMGUI.py:4028 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." @@ -6607,15 +6634,15 @@ msgstr "" "Numărul de segmente utilizate pentru\n" "aproximarea lineara a aperturilor Gerber circulare." -#: flatcamGUI/FlatCAMGUI.py:4036 +#: flatcamGUI/FlatCAMGUI.py:4043 msgid "Gerber Options" msgstr "Opțiuni Gerber" -#: flatcamGUI/FlatCAMGUI.py:4040 flatcamGUI/ObjectUI.py:251 +#: flatcamGUI/FlatCAMGUI.py:4047 flatcamGUI/ObjectUI.py:251 msgid "Isolation Routing:" msgstr "Izolare:" -#: flatcamGUI/FlatCAMGUI.py:4042 flatcamGUI/ObjectUI.py:253 +#: flatcamGUI/FlatCAMGUI.py:4049 flatcamGUI/ObjectUI.py:253 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -6624,17 +6651,17 @@ msgstr "" "care să fie taiate in afara poligoanelor,\n" "urmărindu-le conturul." -#: flatcamGUI/FlatCAMGUI.py:4053 flatcamGUI/FlatCAMGUI.py:4753 -#: flatcamGUI/FlatCAMGUI.py:5726 flatcamGUI/ObjectUI.py:788 +#: flatcamGUI/FlatCAMGUI.py:4060 flatcamGUI/FlatCAMGUI.py:4760 +#: flatcamGUI/FlatCAMGUI.py:5733 flatcamGUI/ObjectUI.py:788 #: flatcamGUI/ObjectUI.py:804 msgid "Diameter of the cutting tool." msgstr "Diametrul uneltei taietoare." -#: flatcamGUI/FlatCAMGUI.py:4060 +#: flatcamGUI/FlatCAMGUI.py:4067 msgid "Width (# passes):" msgstr "Latime(# treceri):" -#: flatcamGUI/FlatCAMGUI.py:4062 flatcamGUI/ObjectUI.py:275 +#: flatcamGUI/FlatCAMGUI.py:4069 flatcamGUI/ObjectUI.py:275 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -6642,11 +6669,11 @@ msgstr "" "Lăţimea spatiului de izolare\n" "in număr intreg de grosimi ale uneltei." -#: flatcamGUI/FlatCAMGUI.py:4070 flatcamGUI/ObjectUI.py:283 +#: flatcamGUI/FlatCAMGUI.py:4077 flatcamGUI/ObjectUI.py:283 msgid "Pass overlap:" msgstr "Suprapunere:" -#: flatcamGUI/FlatCAMGUI.py:4072 flatcamGUI/ObjectUI.py:285 +#: flatcamGUI/FlatCAMGUI.py:4079 flatcamGUI/ObjectUI.py:285 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -6660,11 +6687,11 @@ msgstr "" "Exemplu:\n" "O valoare de 0.25 reprezinta o suprapunere de 25%% din diametrul uneltei." -#: flatcamGUI/FlatCAMGUI.py:4080 flatcamGUI/ObjectUI.py:295 +#: flatcamGUI/FlatCAMGUI.py:4087 flatcamGUI/ObjectUI.py:295 msgid "Milling Type:" msgstr "Tip Frezare:" -#: flatcamGUI/FlatCAMGUI.py:4082 flatcamGUI/ObjectUI.py:297 +#: flatcamGUI/FlatCAMGUI.py:4089 flatcamGUI/ObjectUI.py:297 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -6675,19 +6702,19 @@ msgstr "" "uneltei\n" "- conventional -> pentru cazul când nu exista o compensare a 'backlash-ului'" -#: flatcamGUI/FlatCAMGUI.py:4092 +#: flatcamGUI/FlatCAMGUI.py:4099 msgid "Combine Passes" msgstr "Combina" -#: flatcamGUI/FlatCAMGUI.py:4094 flatcamGUI/ObjectUI.py:309 +#: flatcamGUI/FlatCAMGUI.py:4101 flatcamGUI/ObjectUI.py:309 msgid "Combine all passes into one object" msgstr "Combina toate trecerile intr-un singur obiect" -#: flatcamGUI/FlatCAMGUI.py:4099 +#: flatcamGUI/FlatCAMGUI.py:4106 msgid "Clear non-copper:" msgstr "Curăță non-Cu:" -#: flatcamGUI/FlatCAMGUI.py:4101 flatcamGUI/FlatCAMGUI.py:5614 +#: flatcamGUI/FlatCAMGUI.py:4108 flatcamGUI/FlatCAMGUI.py:5621 #: flatcamGUI/ObjectUI.py:386 msgid "" "Create a Geometry object with\n" @@ -6697,12 +6724,12 @@ msgstr "" "care să curete de cupru toate zonele unde se dorește să nu \n" "fie cupru." -#: flatcamGUI/FlatCAMGUI.py:4110 flatcamGUI/FlatCAMGUI.py:4136 +#: flatcamGUI/FlatCAMGUI.py:4117 flatcamGUI/FlatCAMGUI.py:4143 #: flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464 msgid "Boundary Margin:" msgstr "Margine:" -#: flatcamGUI/FlatCAMGUI.py:4112 flatcamGUI/ObjectUI.py:432 +#: flatcamGUI/FlatCAMGUI.py:4119 flatcamGUI/ObjectUI.py:432 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -6713,11 +6740,11 @@ msgstr "" "unei forme patratice de jur imprejurul la toate obiectele\n" "la o distanţa minima cu valoarea din acest câmp." -#: flatcamGUI/FlatCAMGUI.py:4122 flatcamGUI/FlatCAMGUI.py:4145 +#: flatcamGUI/FlatCAMGUI.py:4129 flatcamGUI/FlatCAMGUI.py:4152 msgid "Rounded corners" msgstr "C. rotunjite" -#: flatcamGUI/FlatCAMGUI.py:4124 +#: flatcamGUI/FlatCAMGUI.py:4131 msgid "" "Creates a Geometry objects with polygons\n" "covering the copper-free areas of the PCB." @@ -6725,11 +6752,11 @@ msgstr "" "Crează un obiect tip Geometrie conținând poligoane\n" "care acopera toate suprafetele libere de cupru ale PCB-ului." -#: flatcamGUI/FlatCAMGUI.py:4130 flatcamGUI/ObjectUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:4137 flatcamGUI/ObjectUI.py:454 msgid "Bounding Box:" msgstr "Forma înconjurătoare::" -#: flatcamGUI/FlatCAMGUI.py:4138 flatcamGUI/ObjectUI.py:466 +#: flatcamGUI/FlatCAMGUI.py:4145 flatcamGUI/ObjectUI.py:466 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -6737,7 +6764,7 @@ msgstr "" "Distanta de la marginile formei înconjurătoare\n" "pana la cel mai apropiat poligon." -#: flatcamGUI/FlatCAMGUI.py:4147 flatcamGUI/ObjectUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:4154 flatcamGUI/ObjectUI.py:476 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -6747,15 +6774,15 @@ msgstr "" "Daca forma înconjurătoare să aibă colțuri rotunjite.\n" "Raza acesor colțuri va fi egală cu parametrul Margine." -#: flatcamGUI/FlatCAMGUI.py:4161 +#: flatcamGUI/FlatCAMGUI.py:4168 msgid "Gerber Adv. Options" msgstr "Opțiuni Av. Gerber" -#: flatcamGUI/FlatCAMGUI.py:4165 +#: flatcamGUI/FlatCAMGUI.py:4172 msgid "Advanced Param.:" msgstr "Param. avansati.:" -#: flatcamGUI/FlatCAMGUI.py:4167 +#: flatcamGUI/FlatCAMGUI.py:4174 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" @@ -6766,11 +6793,11 @@ msgstr "" "când este selectat Nivelul Avansat pentru\n" "aplicaţie in Preferințe - > General" -#: flatcamGUI/FlatCAMGUI.py:4177 flatcamGUI/ObjectUI.py:314 +#: flatcamGUI/FlatCAMGUI.py:4184 flatcamGUI/ObjectUI.py:314 msgid "\"Follow\"" msgstr "\"Urmareste\"" -#: flatcamGUI/FlatCAMGUI.py:4179 flatcamGUI/ObjectUI.py:316 +#: flatcamGUI/FlatCAMGUI.py:4186 flatcamGUI/ObjectUI.py:316 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -6780,11 +6807,11 @@ msgstr "" "Mai exact, in loc să se genereze un poligon se va genera o 'linie'.\n" "In acest fel se taie prin mijlocul unui traseu și nu in jurul lui." -#: flatcamGUI/FlatCAMGUI.py:4187 +#: flatcamGUI/FlatCAMGUI.py:4194 msgid "Table Show/Hide" msgstr "Arata/Ascunde Tabela" -#: flatcamGUI/FlatCAMGUI.py:4189 +#: flatcamGUI/FlatCAMGUI.py:4196 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" @@ -6794,15 +6821,15 @@ msgstr "" "când se ascunde aceasta, se vor șterge și toate\n" "posibil afisatele marcaje ale aperturilor." -#: flatcamGUI/FlatCAMGUI.py:4228 +#: flatcamGUI/FlatCAMGUI.py:4235 msgid "Gerber Export" msgstr "Export Gerber" -#: flatcamGUI/FlatCAMGUI.py:4231 flatcamGUI/FlatCAMGUI.py:4902 +#: flatcamGUI/FlatCAMGUI.py:4238 flatcamGUI/FlatCAMGUI.py:4909 msgid "Export Options:" msgstr "Opțiuni Export::" -#: flatcamGUI/FlatCAMGUI.py:4233 +#: flatcamGUI/FlatCAMGUI.py:4240 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Gerber menu entry." @@ -6811,19 +6838,19 @@ msgstr "" "se exporta un fişier Gerber folosind:\n" "File -> Exportă -> Exportă Gerber" -#: flatcamGUI/FlatCAMGUI.py:4242 flatcamGUI/FlatCAMGUI.py:4913 +#: flatcamGUI/FlatCAMGUI.py:4249 flatcamGUI/FlatCAMGUI.py:4920 msgid "Units:" msgstr "Unitati:" -#: flatcamGUI/FlatCAMGUI.py:4244 flatcamGUI/FlatCAMGUI.py:4250 +#: flatcamGUI/FlatCAMGUI.py:4251 flatcamGUI/FlatCAMGUI.py:4257 msgid "The units used in the Gerber file." msgstr "Unitătile de măsură folosite in fişierul Gerber." -#: flatcamGUI/FlatCAMGUI.py:4256 flatcamGUI/FlatCAMGUI.py:4927 +#: flatcamGUI/FlatCAMGUI.py:4263 flatcamGUI/FlatCAMGUI.py:4934 msgid "Int/Decimals:" msgstr "Int/Zecimale:" -#: flatcamGUI/FlatCAMGUI.py:4258 +#: flatcamGUI/FlatCAMGUI.py:4265 msgid "" "The number of digits in the whole part of the number\n" "and in the fractional part of the number." @@ -6831,7 +6858,7 @@ msgstr "" "Acest număr reprezinta numărul de digiti din partea\n" "intreagă si in partea fractională a numărului." -#: flatcamGUI/FlatCAMGUI.py:4269 +#: flatcamGUI/FlatCAMGUI.py:4276 msgid "" "This numbers signify the number of digits in\n" "the whole part of Gerber coordinates." @@ -6839,7 +6866,7 @@ msgstr "" "Acest număr reprezinta numărul de digiti din partea\n" "intreagă a coordonatelor Gerber." -#: flatcamGUI/FlatCAMGUI.py:4283 +#: flatcamGUI/FlatCAMGUI.py:4290 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Gerber coordinates." @@ -6847,11 +6874,11 @@ msgstr "" "Acest număr reprezinta numărul de digiti din partea\n" "zecimală a coordonatelor Gerber." -#: flatcamGUI/FlatCAMGUI.py:4292 flatcamGUI/FlatCAMGUI.py:4988 +#: flatcamGUI/FlatCAMGUI.py:4299 flatcamGUI/FlatCAMGUI.py:4995 msgid "Zeros:" msgstr "Zero-uri:" -#: flatcamGUI/FlatCAMGUI.py:4295 flatcamGUI/FlatCAMGUI.py:4305 +#: flatcamGUI/FlatCAMGUI.py:4302 flatcamGUI/FlatCAMGUI.py:4312 msgid "" "This sets the type of Gerber zeros.\n" "If LZ then Leading Zeros are removed and\n" @@ -6867,23 +6894,23 @@ msgstr "" "cele de la final sunt păstrate.\n" "(Invers fată de fişierele Excellon)." -#: flatcamGUI/FlatCAMGUI.py:4325 flatcamGUI/FlatCAMGUI.py:5368 -#: flatcamGUI/FlatCAMGUI.py:5612 flatcamGUI/FlatCAMGUI.py:5713 -#: flatcamGUI/FlatCAMGUI.py:5792 flatcamGUI/FlatCAMGUI.py:5851 -#: flatcamGUI/FlatCAMGUI.py:5954 flatcamGUI/FlatCAMGUI.py:6015 -#: flatcamGUI/FlatCAMGUI.py:6214 flatcamGUI/FlatCAMGUI.py:6341 +#: flatcamGUI/FlatCAMGUI.py:4332 flatcamGUI/FlatCAMGUI.py:5375 +#: flatcamGUI/FlatCAMGUI.py:5619 flatcamGUI/FlatCAMGUI.py:5720 +#: flatcamGUI/FlatCAMGUI.py:5799 flatcamGUI/FlatCAMGUI.py:5858 +#: flatcamGUI/FlatCAMGUI.py:5961 flatcamGUI/FlatCAMGUI.py:6022 +#: flatcamGUI/FlatCAMGUI.py:6221 flatcamGUI/FlatCAMGUI.py:6348 msgid "Parameters:" msgstr "Parametri:" -#: flatcamGUI/FlatCAMGUI.py:4327 +#: flatcamGUI/FlatCAMGUI.py:4334 msgid "A list of Gerber Editor parameters." msgstr "O listă de parametri ai Editorului Gerber." -#: flatcamGUI/FlatCAMGUI.py:4335 flatcamGUI/FlatCAMGUI.py:5378 +#: flatcamGUI/FlatCAMGUI.py:4342 flatcamGUI/FlatCAMGUI.py:5385 msgid "Selection limit:" msgstr "Limita selecţie:" -#: flatcamGUI/FlatCAMGUI.py:4337 +#: flatcamGUI/FlatCAMGUI.py:4344 msgid "" "Set the number of selected Gerber geometry\n" "items above which the utility geometry\n" @@ -6896,15 +6923,15 @@ msgstr "" "Creste performanta cand se mută un număr mai mare\n" "de elemente geometrice." -#: flatcamGUI/FlatCAMGUI.py:4357 +#: flatcamGUI/FlatCAMGUI.py:4364 msgid "Excellon General" msgstr "Excellon General" -#: flatcamGUI/FlatCAMGUI.py:4379 +#: flatcamGUI/FlatCAMGUI.py:4386 msgid "Excellon Format:" msgstr "Formatul Excellon" -#: flatcamGUI/FlatCAMGUI.py:4381 +#: flatcamGUI/FlatCAMGUI.py:4388 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -6950,18 +6977,18 @@ msgstr "" "Sprint Layout 2:4 INCH LZ\n" "KiCAD 3:5 INCH TZ" -#: flatcamGUI/FlatCAMGUI.py:4406 +#: flatcamGUI/FlatCAMGUI.py:4413 msgid "INCH:" msgstr "Inch" -#: flatcamGUI/FlatCAMGUI.py:4409 +#: flatcamGUI/FlatCAMGUI.py:4416 msgid "Default values for INCH are 2:4" msgstr "" "Valorile default pentru Inch sunt 2:4\n" "adica 2 parti intregi și 4 zecimale." -#: flatcamGUI/FlatCAMGUI.py:4417 flatcamGUI/FlatCAMGUI.py:4450 -#: flatcamGUI/FlatCAMGUI.py:4942 +#: flatcamGUI/FlatCAMGUI.py:4424 flatcamGUI/FlatCAMGUI.py:4457 +#: flatcamGUI/FlatCAMGUI.py:4949 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -6969,8 +6996,8 @@ msgstr "" "Acest număr reprezinta numărul de digiti din partea\n" "intreaga a coordonatelor Excellon." -#: flatcamGUI/FlatCAMGUI.py:4431 flatcamGUI/FlatCAMGUI.py:4464 -#: flatcamGUI/FlatCAMGUI.py:4956 +#: flatcamGUI/FlatCAMGUI.py:4438 flatcamGUI/FlatCAMGUI.py:4471 +#: flatcamGUI/FlatCAMGUI.py:4963 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -6978,21 +7005,21 @@ msgstr "" "Acest număr reprezinta numărul de digiti din partea\n" "zecimala a coordonatelor Excellon." -#: flatcamGUI/FlatCAMGUI.py:4439 +#: flatcamGUI/FlatCAMGUI.py:4446 msgid "METRIC:" msgstr "Metric" -#: flatcamGUI/FlatCAMGUI.py:4442 +#: flatcamGUI/FlatCAMGUI.py:4449 msgid "Default values for METRIC are 3:3" msgstr "" "Valorile default pentru Metric sunt 3:3\n" "adica 3 parti intregi și 3 zecimale." -#: flatcamGUI/FlatCAMGUI.py:4473 +#: flatcamGUI/FlatCAMGUI.py:4480 msgid "Default Zeros:" msgstr "Suprimare Zero:" -#: flatcamGUI/FlatCAMGUI.py:4476 flatcamGUI/FlatCAMGUI.py:4991 +#: flatcamGUI/FlatCAMGUI.py:4483 flatcamGUI/FlatCAMGUI.py:4998 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -7008,7 +7035,7 @@ msgstr "" "cele de la final sunt pastrate.\n" "(Invers fata de fişierele Gerber)." -#: flatcamGUI/FlatCAMGUI.py:4487 +#: flatcamGUI/FlatCAMGUI.py:4494 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -7027,11 +7054,11 @@ msgstr "" "cele de la final sunt pastrate.\n" "(Invers fata de fişierele Gerber)." -#: flatcamGUI/FlatCAMGUI.py:4501 +#: flatcamGUI/FlatCAMGUI.py:4508 msgid "Default Units:" msgstr "Unitati Excellon:" -#: flatcamGUI/FlatCAMGUI.py:4504 +#: flatcamGUI/FlatCAMGUI.py:4511 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -7045,7 +7072,7 @@ msgstr "" "(unde se gasesc unitatile) și atunci se va folosi\n" "aceasta valoare." -#: flatcamGUI/FlatCAMGUI.py:4515 +#: flatcamGUI/FlatCAMGUI.py:4522 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" @@ -7058,15 +7085,15 @@ msgstr "" "(unde se gasesc unitatile) și atunci se va folosi\n" "aceasta valoare." -#: flatcamGUI/FlatCAMGUI.py:4531 +#: flatcamGUI/FlatCAMGUI.py:4538 msgid "Excellon Optimization:" msgstr "Optimizarea traseului Excellon:" -#: flatcamGUI/FlatCAMGUI.py:4538 +#: flatcamGUI/FlatCAMGUI.py:4545 msgid "Algorithm: " msgstr "Algoritm:" -#: flatcamGUI/FlatCAMGUI.py:4541 flatcamGUI/FlatCAMGUI.py:4554 +#: flatcamGUI/FlatCAMGUI.py:4548 flatcamGUI/FlatCAMGUI.py:4561 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n" @@ -7090,11 +7117,11 @@ msgstr "" "care nu este compatibila cu pachetul OR Tools și in acest caz se foloseşte\n" "algoritmul default: Travelling Salesman (vanzatorul ambulant)." -#: flatcamGUI/FlatCAMGUI.py:4566 +#: flatcamGUI/FlatCAMGUI.py:4573 msgid "Optimization Time: " msgstr "Durata optimiz.:" -#: flatcamGUI/FlatCAMGUI.py:4569 +#: flatcamGUI/FlatCAMGUI.py:4576 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -7105,15 +7132,15 @@ msgstr "" "reprezinta cat timp se sta pentru fiecare element in\n" "incercarea de a afla calea optima." -#: flatcamGUI/FlatCAMGUI.py:4611 +#: flatcamGUI/FlatCAMGUI.py:4618 msgid "Excellon Options" msgstr "Opțiuni Excellon" -#: flatcamGUI/FlatCAMGUI.py:4614 flatcamGUI/ObjectUI.py:584 +#: flatcamGUI/FlatCAMGUI.py:4621 flatcamGUI/ObjectUI.py:584 msgid "Create CNC Job" msgstr "Crează CNCJob" -#: flatcamGUI/FlatCAMGUI.py:4616 +#: flatcamGUI/FlatCAMGUI.py:4623 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." @@ -7121,13 +7148,13 @@ msgstr "" "Parametrii folositi pentru a crea un obiect FlatCAM tip CNCJob\n" "din acest obiect Excellon." -#: flatcamGUI/FlatCAMGUI.py:4624 flatcamGUI/FlatCAMGUI.py:5094 -#: flatcamGUI/FlatCAMGUI.py:6150 flatcamGUI/ObjectUI.py:595 +#: flatcamGUI/FlatCAMGUI.py:4631 flatcamGUI/FlatCAMGUI.py:5101 +#: flatcamGUI/FlatCAMGUI.py:6157 flatcamGUI/ObjectUI.py:595 #: flatcamGUI/ObjectUI.py:1062 flatcamTools/ToolCalculators.py:108 msgid "Cut Z:" msgstr "Z tăiere:" -#: flatcamGUI/FlatCAMGUI.py:4626 flatcamGUI/ObjectUI.py:597 +#: flatcamGUI/FlatCAMGUI.py:4633 flatcamGUI/ObjectUI.py:597 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -7136,12 +7163,12 @@ msgstr "" "Daca se foloseşte o val. pozitivă, aplicaţia\n" "va incerca in mod automat să schimbe semnul." -#: flatcamGUI/FlatCAMGUI.py:4633 flatcamGUI/FlatCAMGUI.py:5127 +#: flatcamGUI/FlatCAMGUI.py:4640 flatcamGUI/FlatCAMGUI.py:5134 #: flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1098 msgid "Travel Z:" msgstr "Z Deplasare:" -#: flatcamGUI/FlatCAMGUI.py:4635 flatcamGUI/ObjectUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:4642 flatcamGUI/ObjectUI.py:607 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -7150,11 +7177,11 @@ msgstr "" "in planul X-Y, fără a efectua taieri, adica\n" "in afara materialului." -#: flatcamGUI/FlatCAMGUI.py:4643 flatcamGUI/FlatCAMGUI.py:5137 +#: flatcamGUI/FlatCAMGUI.py:4650 flatcamGUI/FlatCAMGUI.py:5144 msgid "Tool change:" msgstr "Schimbare unealtă:" -#: flatcamGUI/FlatCAMGUI.py:4645 flatcamGUI/FlatCAMGUI.py:5139 +#: flatcamGUI/FlatCAMGUI.py:4652 flatcamGUI/FlatCAMGUI.py:5146 #: flatcamGUI/ObjectUI.py:617 msgid "" "Include tool-change sequence\n" @@ -7164,11 +7191,11 @@ msgstr "" "in codul G-Code (pauza pentru schimbare unealtă).\n" "De obicei este folosita comanda G-Code M6." -#: flatcamGUI/FlatCAMGUI.py:4652 flatcamGUI/FlatCAMGUI.py:5147 +#: flatcamGUI/FlatCAMGUI.py:4659 flatcamGUI/FlatCAMGUI.py:5154 msgid "Toolchange Z:" msgstr "Z schimb. unealtă:" -#: flatcamGUI/FlatCAMGUI.py:4654 flatcamGUI/FlatCAMGUI.py:5149 +#: flatcamGUI/FlatCAMGUI.py:4661 flatcamGUI/FlatCAMGUI.py:5156 msgid "Toolchange Z position." msgstr "" "Înălţimea la care se efectuează schimbarea uneltei.\n" @@ -7176,11 +7203,11 @@ msgstr "" "'toolchanger' automat sau acolo unde utilizatorul\n" "schimba unealtă manual." -#: flatcamGUI/FlatCAMGUI.py:4660 +#: flatcamGUI/FlatCAMGUI.py:4667 msgid "Feedrate:" msgstr "Feedrate:" -#: flatcamGUI/FlatCAMGUI.py:4662 +#: flatcamGUI/FlatCAMGUI.py:4669 msgid "" "Tool speed while drilling\n" "(in units per minute)." @@ -7188,11 +7215,11 @@ msgstr "" "Viteza cu care se misca unealtă (burghiul) când se fac\n" "operațiuni de găurire. In unitati pe minut." -#: flatcamGUI/FlatCAMGUI.py:4670 +#: flatcamGUI/FlatCAMGUI.py:4677 msgid "Spindle Speed:" msgstr "Viteza Motor:" -#: flatcamGUI/FlatCAMGUI.py:4672 flatcamGUI/FlatCAMGUI.py:5179 +#: flatcamGUI/FlatCAMGUI.py:4679 flatcamGUI/FlatCAMGUI.py:5186 #: flatcamGUI/ObjectUI.py:684 msgid "" "Speed of the spindle\n" @@ -7203,11 +7230,11 @@ msgstr "" "Acest parametru este optional și se poate lasa gol\n" "daca nu se foloseşte." -#: flatcamGUI/FlatCAMGUI.py:4680 flatcamGUI/FlatCAMGUI.py:5187 +#: flatcamGUI/FlatCAMGUI.py:4687 flatcamGUI/FlatCAMGUI.py:5194 msgid "Spindle dir.:" msgstr "Directie Motor:" -#: flatcamGUI/FlatCAMGUI.py:4682 flatcamGUI/FlatCAMGUI.py:5189 +#: flatcamGUI/FlatCAMGUI.py:4689 flatcamGUI/FlatCAMGUI.py:5196 msgid "" "This sets the direction that the spindle is rotating.\n" "It can be either:\n" @@ -7219,12 +7246,12 @@ msgstr "" "- CW = in sensul acelor de ceasornic\n" "- CCW = in sensul invers acelor de ceasornic" -#: flatcamGUI/FlatCAMGUI.py:4694 flatcamGUI/FlatCAMGUI.py:5201 +#: flatcamGUI/FlatCAMGUI.py:4701 flatcamGUI/FlatCAMGUI.py:5208 #: flatcamGUI/ObjectUI.py:692 flatcamGUI/ObjectUI.py:1224 msgid "Dwell:" msgstr "Pauza:" -#: flatcamGUI/FlatCAMGUI.py:4696 flatcamGUI/FlatCAMGUI.py:5203 +#: flatcamGUI/FlatCAMGUI.py:4703 flatcamGUI/FlatCAMGUI.py:5210 #: flatcamGUI/ObjectUI.py:694 flatcamGUI/ObjectUI.py:1227 msgid "" "Pause to allow the spindle to reach its\n" @@ -7233,21 +7260,21 @@ msgstr "" "O pauza care permite motorului să ajunga la turatia specificata,\n" "inainte de a incepe mișcarea spre poziţia de tăiere (găurire)." -#: flatcamGUI/FlatCAMGUI.py:4699 flatcamGUI/FlatCAMGUI.py:5206 +#: flatcamGUI/FlatCAMGUI.py:4706 flatcamGUI/FlatCAMGUI.py:5213 msgid "Duration:" msgstr "Durata:" -#: flatcamGUI/FlatCAMGUI.py:4701 flatcamGUI/FlatCAMGUI.py:5208 +#: flatcamGUI/FlatCAMGUI.py:4708 flatcamGUI/FlatCAMGUI.py:5215 #: flatcamGUI/ObjectUI.py:699 flatcamGUI/ObjectUI.py:1234 msgid "Number of milliseconds for spindle to dwell." msgstr "Timpul (ori secunde ori milisec) cat se sta in pauza." -#: flatcamGUI/FlatCAMGUI.py:4713 flatcamGUI/FlatCAMGUI.py:5218 +#: flatcamGUI/FlatCAMGUI.py:4720 flatcamGUI/FlatCAMGUI.py:5225 #: flatcamGUI/ObjectUI.py:707 msgid "Postprocessor:" msgstr "Postprocesor:" -#: flatcamGUI/FlatCAMGUI.py:4715 +#: flatcamGUI/FlatCAMGUI.py:4722 msgid "" "The postprocessor file that dictates\n" "gcode output." @@ -7256,11 +7283,11 @@ msgstr "" "respecte un anumit format care să fie ințeles de diverse\n" "utilaje. Este responsabil de 'personalizarea' G-Code." -#: flatcamGUI/FlatCAMGUI.py:4725 +#: flatcamGUI/FlatCAMGUI.py:4732 msgid "Gcode: " msgstr "G-Code:" -#: flatcamGUI/FlatCAMGUI.py:4727 +#: flatcamGUI/FlatCAMGUI.py:4734 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -7274,41 +7301,41 @@ msgstr "" "Când se alege Sloturi sau Ambele, sloturile vor fi convertite in serii de " "găuri." -#: flatcamGUI/FlatCAMGUI.py:4743 flatcamGUI/ObjectUI.py:772 +#: flatcamGUI/FlatCAMGUI.py:4750 flatcamGUI/ObjectUI.py:772 msgid "Mill Holes" msgstr "Frezare găuri" -#: flatcamGUI/FlatCAMGUI.py:4745 flatcamGUI/ObjectUI.py:774 +#: flatcamGUI/FlatCAMGUI.py:4752 flatcamGUI/ObjectUI.py:774 msgid "Create Geometry for milling holes." msgstr "Crează un obiect tip Geometrie pentru frezarea găurilor." -#: flatcamGUI/FlatCAMGUI.py:4751 +#: flatcamGUI/FlatCAMGUI.py:4758 msgid "Drill Tool dia:" msgstr "Dia. Burghiu Găurire:" -#: flatcamGUI/FlatCAMGUI.py:4758 +#: flatcamGUI/FlatCAMGUI.py:4765 msgid "Slot Tool dia:" msgstr "Dia. Freza Slot:" -#: flatcamGUI/FlatCAMGUI.py:4760 +#: flatcamGUI/FlatCAMGUI.py:4767 msgid "" "Diameter of the cutting tool\n" "when milling slots." msgstr "Diametrul frezei când se frezează sloturile." -#: flatcamGUI/FlatCAMGUI.py:4772 +#: flatcamGUI/FlatCAMGUI.py:4779 msgid "Defaults" msgstr "Val. Implicite" -#: flatcamGUI/FlatCAMGUI.py:4785 +#: flatcamGUI/FlatCAMGUI.py:4792 msgid "Excellon Adv. Options" msgstr "Opțiuni Avans. Excellon" -#: flatcamGUI/FlatCAMGUI.py:4791 flatcamGUI/FlatCAMGUI.py:5241 +#: flatcamGUI/FlatCAMGUI.py:4798 flatcamGUI/FlatCAMGUI.py:5248 msgid "Advanced Options:" msgstr "Opțiuni avansate:" -#: flatcamGUI/FlatCAMGUI.py:4793 +#: flatcamGUI/FlatCAMGUI.py:4800 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object that are shown when App Level is Advanced." @@ -7317,11 +7344,11 @@ msgstr "" "pt acest obiect Excellon, parametri care sunt disponibili\n" "doar in modul Avansat al aplicaţiei." -#: flatcamGUI/FlatCAMGUI.py:4801 +#: flatcamGUI/FlatCAMGUI.py:4808 msgid "Offset Z:" msgstr "Z ofset:" -#: flatcamGUI/FlatCAMGUI.py:4803 flatcamGUI/ObjectUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:4810 flatcamGUI/ObjectUI.py:574 msgid "" "Some drill bits (the larger ones) need to drill deeper\n" "to create the desired exit hole diameter due of the tip shape.\n" @@ -7334,20 +7361,20 @@ msgstr "" "Valoarea de aici efectuează o compensare asupra\n" "parametrului >Z tăiere<." -#: flatcamGUI/FlatCAMGUI.py:4810 flatcamGUI/FlatCAMGUI.py:5252 +#: flatcamGUI/FlatCAMGUI.py:4817 flatcamGUI/FlatCAMGUI.py:5259 msgid "Toolchange X,Y:" msgstr "X,Y schimb. unealtă:" -#: flatcamGUI/FlatCAMGUI.py:4812 flatcamGUI/FlatCAMGUI.py:5254 +#: flatcamGUI/FlatCAMGUI.py:4819 flatcamGUI/FlatCAMGUI.py:5261 msgid "Toolchange X,Y position." msgstr "Poziţia X,Y in format (x,y) unde se face schimbarea uneltei." -#: flatcamGUI/FlatCAMGUI.py:4818 flatcamGUI/FlatCAMGUI.py:5261 +#: flatcamGUI/FlatCAMGUI.py:4825 flatcamGUI/FlatCAMGUI.py:5268 #: flatcamGUI/ObjectUI.py:634 msgid "Start move Z:" msgstr "Z pornire:" -#: flatcamGUI/FlatCAMGUI.py:4820 +#: flatcamGUI/FlatCAMGUI.py:4827 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -7355,23 +7382,23 @@ msgstr "" "Înălţimea uneltei imediat dupa ce se porneste operatia CNC.\n" "Lasa casuta goala daca nu se foloseşte." -#: flatcamGUI/FlatCAMGUI.py:4827 flatcamGUI/FlatCAMGUI.py:5271 +#: flatcamGUI/FlatCAMGUI.py:4834 flatcamGUI/FlatCAMGUI.py:5278 #: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1144 msgid "End move Z:" msgstr "Z oprire:" -#: flatcamGUI/FlatCAMGUI.py:4829 flatcamGUI/FlatCAMGUI.py:5273 +#: flatcamGUI/FlatCAMGUI.py:4836 flatcamGUI/FlatCAMGUI.py:5280 msgid "" "Height of the tool after\n" "the last move at the end of the job." msgstr "Înălţimea la care se parchează freza dupa ce se termina lucrul." -#: flatcamGUI/FlatCAMGUI.py:4836 flatcamGUI/FlatCAMGUI.py:5281 +#: flatcamGUI/FlatCAMGUI.py:4843 flatcamGUI/FlatCAMGUI.py:5288 #: flatcamGUI/ObjectUI.py:665 msgid "Feedrate Rapids:" msgstr "Feedrate rapizi:" -#: flatcamGUI/FlatCAMGUI.py:4838 flatcamGUI/ObjectUI.py:667 +#: flatcamGUI/FlatCAMGUI.py:4845 flatcamGUI/ObjectUI.py:667 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7384,12 +7411,12 @@ msgstr "" "printerul 3D Marlin, implicit când se foloseşte fişierul\n" "postprocesor: Marlin. Ignora aceasta parametru in rest." -#: flatcamGUI/FlatCAMGUI.py:4849 flatcamGUI/FlatCAMGUI.py:5305 +#: flatcamGUI/FlatCAMGUI.py:4856 flatcamGUI/FlatCAMGUI.py:5312 #: flatcamGUI/ObjectUI.py:718 flatcamGUI/ObjectUI.py:1256 msgid "Probe Z depth:" msgstr "Z sonda:" -#: flatcamGUI/FlatCAMGUI.py:4851 flatcamGUI/FlatCAMGUI.py:5307 +#: flatcamGUI/FlatCAMGUI.py:4858 flatcamGUI/FlatCAMGUI.py:5314 #: flatcamGUI/ObjectUI.py:720 flatcamGUI/ObjectUI.py:1259 msgid "" "The maximum depth that the probe is allowed\n" @@ -7398,21 +7425,21 @@ msgstr "" "Adâncimea maxima la care este permis sondei să coboare.\n" "Are o valoare negativă, in unitatile curente." -#: flatcamGUI/FlatCAMGUI.py:4859 flatcamGUI/FlatCAMGUI.py:5315 +#: flatcamGUI/FlatCAMGUI.py:4866 flatcamGUI/FlatCAMGUI.py:5322 #: flatcamGUI/ObjectUI.py:730 flatcamGUI/ObjectUI.py:1270 msgid "Feedrate Probe:" msgstr "Feedrate sonda:" -#: flatcamGUI/FlatCAMGUI.py:4861 flatcamGUI/FlatCAMGUI.py:5317 +#: flatcamGUI/FlatCAMGUI.py:4868 flatcamGUI/FlatCAMGUI.py:5324 #: flatcamGUI/ObjectUI.py:732 flatcamGUI/ObjectUI.py:1273 msgid "The feedrate used while the probe is probing." msgstr "Viteza sondei când aceasta coboara." -#: flatcamGUI/FlatCAMGUI.py:4867 flatcamGUI/FlatCAMGUI.py:5324 +#: flatcamGUI/FlatCAMGUI.py:4874 flatcamGUI/FlatCAMGUI.py:5331 msgid "Fast Plunge:" msgstr "Plonjare rapida:" -#: flatcamGUI/FlatCAMGUI.py:4869 flatcamGUI/FlatCAMGUI.py:5326 +#: flatcamGUI/FlatCAMGUI.py:4876 flatcamGUI/FlatCAMGUI.py:5333 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -7429,11 +7456,11 @@ msgstr "" "schimba\n" "unealta. Daca aveti ceva plasat sub unealtă ceva se va strica." -#: flatcamGUI/FlatCAMGUI.py:4878 +#: flatcamGUI/FlatCAMGUI.py:4885 msgid "Fast Retract:" msgstr "Retragere rapida:" -#: flatcamGUI/FlatCAMGUI.py:4880 +#: flatcamGUI/FlatCAMGUI.py:4887 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -7452,11 +7479,11 @@ msgstr "" "adâncimea\n" "de deplasare cu viteza maxima G0, intr-o singură mișcare." -#: flatcamGUI/FlatCAMGUI.py:4899 +#: flatcamGUI/FlatCAMGUI.py:4906 msgid "Excellon Export" msgstr "Export Excellon" -#: flatcamGUI/FlatCAMGUI.py:4904 +#: flatcamGUI/FlatCAMGUI.py:4911 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -7465,11 +7492,11 @@ msgstr "" "se exporta un fişier Excellon folosind:\n" "File -> Exporta -> Exporta Excellon" -#: flatcamGUI/FlatCAMGUI.py:4915 flatcamGUI/FlatCAMGUI.py:4921 +#: flatcamGUI/FlatCAMGUI.py:4922 flatcamGUI/FlatCAMGUI.py:4928 msgid "The units used in the Excellon file." msgstr "Unitatile de masura folosite in fişierul Excellon." -#: flatcamGUI/FlatCAMGUI.py:4929 +#: flatcamGUI/FlatCAMGUI.py:4936 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -7481,11 +7508,11 @@ msgstr "" "Aici se setează formatul Excellon când nu se utilizează\n" "coordonate cu zecimale." -#: flatcamGUI/FlatCAMGUI.py:4965 +#: flatcamGUI/FlatCAMGUI.py:4972 msgid "Format:" msgstr "Format:" -#: flatcamGUI/FlatCAMGUI.py:4967 flatcamGUI/FlatCAMGUI.py:4977 +#: flatcamGUI/FlatCAMGUI.py:4974 flatcamGUI/FlatCAMGUI.py:4984 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -7504,7 +7531,7 @@ msgstr "" "- LZ = zerourile prefix sunt pastrate și cele sufix eliminate\n" "- TZ = zerourile prefix sunt eliminate și cele sufix pastrate." -#: flatcamGUI/FlatCAMGUI.py:5001 +#: flatcamGUI/FlatCAMGUI.py:5008 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -7516,11 +7543,11 @@ msgstr "" "- LZ = zerourile prefix sunt pastrate și cele sufix eliminate\n" "- TZ = zerourile prefix sunt eliminate și cele sufix pastrate." -#: flatcamGUI/FlatCAMGUI.py:5027 +#: flatcamGUI/FlatCAMGUI.py:5034 msgid "Geometry General" msgstr "Geometrie General" -#: flatcamGUI/FlatCAMGUI.py:5045 +#: flatcamGUI/FlatCAMGUI.py:5052 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -7528,29 +7555,29 @@ msgstr "" "Numărul de segmente utilizate pentru\n" "aproximarea lineara a Geometriilor circulare." -#: flatcamGUI/FlatCAMGUI.py:5053 +#: flatcamGUI/FlatCAMGUI.py:5060 msgid "Tools" msgstr "Unelte" -#: flatcamGUI/FlatCAMGUI.py:5060 +#: flatcamGUI/FlatCAMGUI.py:5067 msgid "Tool dia: " msgstr "Dia Unealta:" -#: flatcamGUI/FlatCAMGUI.py:5062 +#: flatcamGUI/FlatCAMGUI.py:5069 msgid "" "The diameter of the cutting\n" "tool.." msgstr "Diametrul uneltei taietoare ..." -#: flatcamGUI/FlatCAMGUI.py:5077 +#: flatcamGUI/FlatCAMGUI.py:5084 msgid "Geometry Options" msgstr "Opțiuni Geometrie" -#: flatcamGUI/FlatCAMGUI.py:5082 +#: flatcamGUI/FlatCAMGUI.py:5089 msgid "Create CNC Job:" msgstr "Crează CNCJob:" -#: flatcamGUI/FlatCAMGUI.py:5084 +#: flatcamGUI/FlatCAMGUI.py:5091 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -7559,7 +7586,7 @@ msgstr "" "Crează un obiect CNCJob care urmareste conturul\n" "acestui obiect tip Geometrie." -#: flatcamGUI/FlatCAMGUI.py:5096 flatcamGUI/ObjectUI.py:1065 +#: flatcamGUI/FlatCAMGUI.py:5103 flatcamGUI/ObjectUI.py:1065 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -7567,21 +7594,21 @@ msgstr "" "Adâncimea la care se taie sub suprafata de cupru.\n" "Valoare negativă." -#: flatcamGUI/FlatCAMGUI.py:5104 +#: flatcamGUI/FlatCAMGUI.py:5111 msgid "Multidepth" msgstr "MultiPas" -#: flatcamGUI/FlatCAMGUI.py:5106 +#: flatcamGUI/FlatCAMGUI.py:5113 msgid "Multidepth usage: True or False." msgstr "" "Daca se folosesc sau nu pasi multipli de tăiere\n" "pentru a ajunge la adâncimea de tăiere." -#: flatcamGUI/FlatCAMGUI.py:5111 +#: flatcamGUI/FlatCAMGUI.py:5118 msgid "Depth/Pass:" msgstr "Adanc./Trecere" -#: flatcamGUI/FlatCAMGUI.py:5113 +#: flatcamGUI/FlatCAMGUI.py:5120 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -7594,7 +7621,7 @@ msgstr "" "Valoarea este pozitivă desi reprezinta o fracţie\n" "a adancimii de tăiere care este o valoare negativă." -#: flatcamGUI/FlatCAMGUI.py:5129 flatcamGUI/ObjectUI.py:1101 +#: flatcamGUI/FlatCAMGUI.py:5136 flatcamGUI/ObjectUI.py:1101 msgid "" "Height of the tool when\n" "moving without cutting." @@ -7602,11 +7629,11 @@ msgstr "" "Înălţimea la care se misca unealta când nu taie,\n" "deasupra materialului." -#: flatcamGUI/FlatCAMGUI.py:5156 flatcamGUI/ObjectUI.py:1156 +#: flatcamGUI/FlatCAMGUI.py:5163 flatcamGUI/ObjectUI.py:1156 msgid "Feed Rate X-Y:" msgstr "Feedrate X-Y:" -#: flatcamGUI/FlatCAMGUI.py:5158 flatcamGUI/ObjectUI.py:1159 +#: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/ObjectUI.py:1159 msgid "" "Cutting speed in the XY\n" "plane in units per minute" @@ -7614,11 +7641,11 @@ msgstr "" "Viteza de tăiere in planul X-Y\n" "in unitati pe minut." -#: flatcamGUI/FlatCAMGUI.py:5166 +#: flatcamGUI/FlatCAMGUI.py:5173 msgid "Feed Rate Z:" msgstr "Feedrate Z:" -#: flatcamGUI/FlatCAMGUI.py:5168 +#: flatcamGUI/FlatCAMGUI.py:5175 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -7628,12 +7655,12 @@ msgstr "" "in unitati pe minut.\n" "Mai este numita și viteza de plonjare." -#: flatcamGUI/FlatCAMGUI.py:5177 flatcamGUI/ObjectUI.py:682 +#: flatcamGUI/FlatCAMGUI.py:5184 flatcamGUI/ObjectUI.py:682 #: flatcamGUI/ObjectUI.py:1211 msgid "Spindle speed:" msgstr "Viteza motor:" -#: flatcamGUI/FlatCAMGUI.py:5220 +#: flatcamGUI/FlatCAMGUI.py:5227 msgid "" "The postprocessor file that dictates\n" "Machine Code output." @@ -7642,11 +7669,11 @@ msgstr "" "respecte un anumit format care să fie ințeles de diverse\n" "utilaje. Este responsabil de 'personalizarea' G-Code." -#: flatcamGUI/FlatCAMGUI.py:5236 +#: flatcamGUI/FlatCAMGUI.py:5243 msgid "Geometry Adv. Options" msgstr "Opțiuni Avans. Geometrie" -#: flatcamGUI/FlatCAMGUI.py:5243 +#: flatcamGUI/FlatCAMGUI.py:5250 msgid "" "Parameters to create a CNC Job object\n" "tracing the contours of a Geometry object." @@ -7654,7 +7681,7 @@ msgstr "" "Parametrii folositi pentru a crea un obiect CNCJob,\n" "urmărind contururile unui obiect tip Geometrie." -#: flatcamGUI/FlatCAMGUI.py:5263 +#: flatcamGUI/FlatCAMGUI.py:5270 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -7662,7 +7689,7 @@ msgstr "" "Înălţimea uneltei la care se gaseste la inceputul lucrului.\n" "Lasa câmpul gol daca nu folosești aceasta." -#: flatcamGUI/FlatCAMGUI.py:5283 +#: flatcamGUI/FlatCAMGUI.py:5290 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -7675,11 +7702,11 @@ msgstr "" "Este utila doar când se foloseşte cu un printer 3D Marlin,\n" "pentru toate celelalte cazuri ignora acest parametru." -#: flatcamGUI/FlatCAMGUI.py:5295 +#: flatcamGUI/FlatCAMGUI.py:5302 msgid "Re-cut 1st pt." msgstr "Re-tăiere 1-ul pt." -#: flatcamGUI/FlatCAMGUI.py:5297 flatcamGUI/ObjectUI.py:1202 +#: flatcamGUI/FlatCAMGUI.py:5304 flatcamGUI/ObjectUI.py:1202 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -7691,11 +7718,11 @@ msgstr "" "cu sfârşitul acesteia (este vorba de un contur), sunt eliminate\n" "prin taierea peste acest punct." -#: flatcamGUI/FlatCAMGUI.py:5336 +#: flatcamGUI/FlatCAMGUI.py:5343 msgid "Seg. X size:" msgstr "Dim. seg X." -#: flatcamGUI/FlatCAMGUI.py:5338 +#: flatcamGUI/FlatCAMGUI.py:5345 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -7706,11 +7733,11 @@ msgstr "" "O valoare de 0 inseamnaca nu se face segmentare\n" "pe axa X." -#: flatcamGUI/FlatCAMGUI.py:5347 +#: flatcamGUI/FlatCAMGUI.py:5354 msgid "Seg. Y size:" msgstr "Dim. seg Y." -#: flatcamGUI/FlatCAMGUI.py:5349 +#: flatcamGUI/FlatCAMGUI.py:5356 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -7721,15 +7748,15 @@ msgstr "" "O valoare de 0 inseamnaca nu se face segmentare\n" "pe axa Y." -#: flatcamGUI/FlatCAMGUI.py:5365 +#: flatcamGUI/FlatCAMGUI.py:5372 msgid "Geometry Editor" msgstr "Editor Geometrii" -#: flatcamGUI/FlatCAMGUI.py:5370 +#: flatcamGUI/FlatCAMGUI.py:5377 msgid "A list of Geometry Editor parameters." msgstr "O lista de parametri ai Editorului de Geometrii." -#: flatcamGUI/FlatCAMGUI.py:5380 +#: flatcamGUI/FlatCAMGUI.py:5387 msgid "" "Set the number of selected geometry\n" "items above which the utility geometry\n" @@ -7743,20 +7770,20 @@ msgstr "" "Creste performanta cand se muta un număr mai mare de \n" "elemente geometrice." -#: flatcamGUI/FlatCAMGUI.py:5399 +#: flatcamGUI/FlatCAMGUI.py:5406 msgid "CNC Job General" msgstr "CNCJob General" -#: flatcamGUI/FlatCAMGUI.py:5412 flatcamGUI/ObjectUI.py:544 +#: flatcamGUI/FlatCAMGUI.py:5419 flatcamGUI/ObjectUI.py:544 #: flatcamGUI/ObjectUI.py:877 flatcamGUI/ObjectUI.py:1434 msgid "Plot Object" msgstr "Afisează" -#: flatcamGUI/FlatCAMGUI.py:5419 +#: flatcamGUI/FlatCAMGUI.py:5426 msgid "Plot kind:" msgstr "Tip afișare:" -#: flatcamGUI/FlatCAMGUI.py:5421 flatcamGUI/ObjectUI.py:1356 +#: flatcamGUI/FlatCAMGUI.py:5428 flatcamGUI/ObjectUI.py:1356 msgid "" "This selects the kind of geometries on the canvas to plot.\n" "Those can be either of type 'Travel' which means the moves\n" @@ -7769,7 +7796,7 @@ msgstr "" "- Tăiere -> miscarile in material, tăiere\n" "- Amandoua" -#: flatcamGUI/FlatCAMGUI.py:5440 +#: flatcamGUI/FlatCAMGUI.py:5447 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -7777,17 +7804,17 @@ msgstr "" "Numărul de segmente utilizate pentru\n" "aproximarea lineara a reprezentarilor GCodului circular." -#: flatcamGUI/FlatCAMGUI.py:5450 +#: flatcamGUI/FlatCAMGUI.py:5457 msgid "" "Diameter of the tool to be\n" "rendered in the plot." msgstr "Diametrul uneltei care să fie redat prin afișare." -#: flatcamGUI/FlatCAMGUI.py:5458 +#: flatcamGUI/FlatCAMGUI.py:5465 msgid "Coords dec.:" msgstr "Coord. zec.:" -#: flatcamGUI/FlatCAMGUI.py:5460 +#: flatcamGUI/FlatCAMGUI.py:5467 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -7795,11 +7822,11 @@ msgstr "" "Numărul de zecimale care să fie folosit in \n" "coordonatele X,Y,Z in codul CNC (GCode etc)." -#: flatcamGUI/FlatCAMGUI.py:5468 +#: flatcamGUI/FlatCAMGUI.py:5475 msgid "Feedrate dec.:" msgstr "Feedrate zec.:" -#: flatcamGUI/FlatCAMGUI.py:5470 +#: flatcamGUI/FlatCAMGUI.py:5477 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -7807,15 +7834,15 @@ msgstr "" "Numărul de zecimale care să fie folosit in \n" "parametrul >Feedrate< in codul CNC (GCode etc)." -#: flatcamGUI/FlatCAMGUI.py:5485 +#: flatcamGUI/FlatCAMGUI.py:5492 msgid "CNC Job Options" msgstr "Opțiuni CNCJob" -#: flatcamGUI/FlatCAMGUI.py:5488 flatcamGUI/FlatCAMGUI.py:5529 +#: flatcamGUI/FlatCAMGUI.py:5495 flatcamGUI/FlatCAMGUI.py:5536 msgid "Export G-Code:" msgstr "Exporta G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5490 flatcamGUI/FlatCAMGUI.py:5531 +#: flatcamGUI/FlatCAMGUI.py:5497 flatcamGUI/FlatCAMGUI.py:5538 #: flatcamGUI/ObjectUI.py:1470 msgid "" "Export and save G-Code to\n" @@ -7824,11 +7851,11 @@ msgstr "" "Exporta și salvează codul G-Code intr-un fişier\n" "care este salvat pe HDD." -#: flatcamGUI/FlatCAMGUI.py:5496 +#: flatcamGUI/FlatCAMGUI.py:5503 msgid "Prepend to G-Code:" msgstr "Adaugă la inceputul G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5498 +#: flatcamGUI/FlatCAMGUI.py:5505 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." @@ -7836,11 +7863,11 @@ msgstr "" "Adaugă aici orice comenzi G-Code care se dorește să fie\n" "inserate la inceputul codului G-Code." -#: flatcamGUI/FlatCAMGUI.py:5507 +#: flatcamGUI/FlatCAMGUI.py:5514 msgid "Append to G-Code:" msgstr "Adaugă la sfârşitul G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5509 flatcamGUI/ObjectUI.py:1492 +#: flatcamGUI/FlatCAMGUI.py:5516 flatcamGUI/ObjectUI.py:1492 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" @@ -7849,15 +7876,15 @@ msgstr "" "Adaugă aici orice comenzi G-Code care se dorește să fie\n" "inserate la sfârşitul codului G-Code." -#: flatcamGUI/FlatCAMGUI.py:5526 +#: flatcamGUI/FlatCAMGUI.py:5533 msgid "CNC Job Adv. Options" msgstr "Opțiuni Avans. CNCJob" -#: flatcamGUI/FlatCAMGUI.py:5537 flatcamGUI/ObjectUI.py:1510 +#: flatcamGUI/FlatCAMGUI.py:5544 flatcamGUI/ObjectUI.py:1510 msgid "Toolchange G-Code:" msgstr "G-Code pt schimb unealtă:" -#: flatcamGUI/FlatCAMGUI.py:5539 +#: flatcamGUI/FlatCAMGUI.py:5546 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -7869,11 +7896,11 @@ msgstr "" "Comanda M6 este inlocuita.\n" "Aceata va constitui un macro pentru schimbul uneltelor." -#: flatcamGUI/FlatCAMGUI.py:5553 flatcamGUI/ObjectUI.py:1532 +#: flatcamGUI/FlatCAMGUI.py:5560 flatcamGUI/ObjectUI.py:1532 msgid "Use Toolchange Macro" msgstr "Fol. Macro schimb unealtă" -#: flatcamGUI/FlatCAMGUI.py:5555 flatcamGUI/ObjectUI.py:1535 +#: flatcamGUI/FlatCAMGUI.py:5562 flatcamGUI/ObjectUI.py:1535 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -7881,7 +7908,7 @@ msgstr "" "Bifează aici daca dorești să folosești Macro pentru\n" "schimb unelte." -#: flatcamGUI/FlatCAMGUI.py:5567 flatcamGUI/ObjectUI.py:1544 +#: flatcamGUI/FlatCAMGUI.py:5574 flatcamGUI/ObjectUI.py:1544 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -7891,71 +7918,71 @@ msgstr "" "de schimb al uneltei (când se intalneste comanda M6).\n" "Este necesar să fie inconjurate de simbolul '%'." -#: flatcamGUI/FlatCAMGUI.py:5574 flatcamGUI/ObjectUI.py:1551 +#: flatcamGUI/FlatCAMGUI.py:5581 flatcamGUI/ObjectUI.py:1551 msgid "Parameters" msgstr "Parametri" -#: flatcamGUI/FlatCAMGUI.py:5577 flatcamGUI/ObjectUI.py:1554 +#: flatcamGUI/FlatCAMGUI.py:5584 flatcamGUI/ObjectUI.py:1554 msgid "FlatCAM CNC parameters" msgstr "Parametri FlatCAM CNC" -#: flatcamGUI/FlatCAMGUI.py:5578 flatcamGUI/ObjectUI.py:1555 +#: flatcamGUI/FlatCAMGUI.py:5585 flatcamGUI/ObjectUI.py:1555 msgid "tool = tool number" msgstr "tool = numărul uneltei" -#: flatcamGUI/FlatCAMGUI.py:5579 flatcamGUI/ObjectUI.py:1556 +#: flatcamGUI/FlatCAMGUI.py:5586 flatcamGUI/ObjectUI.py:1556 msgid "tooldia = tool diameter" msgstr "tooldia = dimaetrul uneltei" -#: flatcamGUI/FlatCAMGUI.py:5580 flatcamGUI/ObjectUI.py:1557 +#: flatcamGUI/FlatCAMGUI.py:5587 flatcamGUI/ObjectUI.py:1557 msgid "t_drills = for Excellon, total number of drills" msgstr "t_drills = pt Excellom, numărul total de operațiuni găurire" -#: flatcamGUI/FlatCAMGUI.py:5581 flatcamGUI/ObjectUI.py:1558 +#: flatcamGUI/FlatCAMGUI.py:5588 flatcamGUI/ObjectUI.py:1558 msgid "x_toolchange = X coord for Toolchange" msgstr "x_toolchange = coord. X pt schimb unealtă" -#: flatcamGUI/FlatCAMGUI.py:5582 flatcamGUI/ObjectUI.py:1559 +#: flatcamGUI/FlatCAMGUI.py:5589 flatcamGUI/ObjectUI.py:1559 msgid "y_toolchange = Y coord for Toolchange" msgstr "y_toolchange = coord. Y pt schimb unealtă" -#: flatcamGUI/FlatCAMGUI.py:5583 flatcamGUI/ObjectUI.py:1560 +#: flatcamGUI/FlatCAMGUI.py:5590 flatcamGUI/ObjectUI.py:1560 msgid "z_toolchange = Z coord for Toolchange" msgstr "z_toolchange = coord. Z pt schimb unealtă" -#: flatcamGUI/FlatCAMGUI.py:5584 +#: flatcamGUI/FlatCAMGUI.py:5591 msgid "z_cut = Z depth for the cut" msgstr "z_cut = Z adâncimea de tăiere" -#: flatcamGUI/FlatCAMGUI.py:5585 +#: flatcamGUI/FlatCAMGUI.py:5592 msgid "z_move = Z height for travel" msgstr "z_move = Z Înălţimea deplasare" -#: flatcamGUI/FlatCAMGUI.py:5586 flatcamGUI/ObjectUI.py:1563 +#: flatcamGUI/FlatCAMGUI.py:5593 flatcamGUI/ObjectUI.py:1563 msgid "z_depthpercut = the step value for multidepth cut" msgstr "z_depthpercut = pasul pentru taierea progresiva" -#: flatcamGUI/FlatCAMGUI.py:5587 flatcamGUI/ObjectUI.py:1564 +#: flatcamGUI/FlatCAMGUI.py:5594 flatcamGUI/ObjectUI.py:1564 msgid "spindlesspeed = the value for the spindle speed" msgstr "spindlesspeed = valoarea viteza motor" -#: flatcamGUI/FlatCAMGUI.py:5588 flatcamGUI/ObjectUI.py:1565 +#: flatcamGUI/FlatCAMGUI.py:5595 flatcamGUI/ObjectUI.py:1565 msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" msgstr "dwelltime = durata de asteptare ca motorul să ajunga la turatia setată" -#: flatcamGUI/FlatCAMGUI.py:5609 +#: flatcamGUI/FlatCAMGUI.py:5616 msgid "NCC Tool Options" msgstr "Opțiuni Unealta NCC" -#: flatcamGUI/FlatCAMGUI.py:5622 flatcamGUI/FlatCAMGUI.py:6352 +#: flatcamGUI/FlatCAMGUI.py:5629 flatcamGUI/FlatCAMGUI.py:6359 msgid "Tools dia:" msgstr "Dia unealtă:" -#: flatcamGUI/FlatCAMGUI.py:5624 +#: flatcamGUI/FlatCAMGUI.py:5631 msgid "Diameters of the cutting tools, separated by ','" msgstr "Diametrele pentru unelte taietoare, separate cu virgula" -#: flatcamGUI/FlatCAMGUI.py:5632 flatcamTools/ToolNonCopperClear.py:167 +#: flatcamGUI/FlatCAMGUI.py:5639 flatcamTools/ToolNonCopperClear.py:167 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -7981,11 +8008,11 @@ msgstr "" "Valori mari= procesare lenta cat și o execuţie la fel de lenta a PCB-ului,\n" "datorita numărului mai mare de treceri-tăiere." -#: flatcamGUI/FlatCAMGUI.py:5648 flatcamTools/ToolNonCopperClear.py:183 +#: flatcamGUI/FlatCAMGUI.py:5655 flatcamTools/ToolNonCopperClear.py:183 msgid "Bounding box margin." msgstr "Marginea pentru forma înconjurătoare." -#: flatcamGUI/FlatCAMGUI.py:5657 flatcamTools/ToolNonCopperClear.py:192 +#: flatcamGUI/FlatCAMGUI.py:5664 flatcamTools/ToolNonCopperClear.py:192 #: flatcamTools/ToolPaint.py:190 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -7996,12 +8023,12 @@ msgstr "" "
Punct-samanta: De la punctul samanta, spre expterior.
Linii " "drepte: Linii paralele." -#: flatcamGUI/FlatCAMGUI.py:5689 flatcamTools/ToolNonCopperClear.py:224 +#: flatcamGUI/FlatCAMGUI.py:5696 flatcamTools/ToolNonCopperClear.py:224 #: flatcamTools/ToolPaint.py:222 msgid "Rest M.:" msgstr "Rest M.:" -#: flatcamGUI/FlatCAMGUI.py:5691 +#: flatcamGUI/FlatCAMGUI.py:5698 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -8019,11 +8046,11 @@ msgstr "" "precedenta.\n" "Daca nu este bifat, foloseşte algoritmul standard." -#: flatcamGUI/FlatCAMGUI.py:5710 +#: flatcamGUI/FlatCAMGUI.py:5717 msgid "Cutout Tool Options" msgstr "Opțiuni Unealta Decupare" -#: flatcamGUI/FlatCAMGUI.py:5715 flatcamGUI/ObjectUI.py:402 +#: flatcamGUI/FlatCAMGUI.py:5722 flatcamGUI/ObjectUI.py:402 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -8033,17 +8060,17 @@ msgstr "" "lasand punţi pentru a separa PCB-ul de \n" "placa din care a fost taiat." -#: flatcamGUI/FlatCAMGUI.py:5734 +#: flatcamGUI/FlatCAMGUI.py:5741 msgid "" "Distance from objects at which\n" "to draw the cutout." msgstr "Distanta de obiecte la care să se deseneze forma taietoare." -#: flatcamGUI/FlatCAMGUI.py:5741 flatcamTools/ToolCutOut.py:96 +#: flatcamGUI/FlatCAMGUI.py:5748 flatcamTools/ToolCutOut.py:96 msgid "Gap size:" msgstr "Dim. punte:" -#: flatcamGUI/FlatCAMGUI.py:5743 +#: flatcamGUI/FlatCAMGUI.py:5750 msgid "" "Size of the gaps in the toolpath\n" "that will remain to hold the\n" @@ -8053,11 +8080,11 @@ msgstr "" "care vor mentine PCB-ul in poziţie, fără să cada\n" "din placa 'mama' dupa decupare." -#: flatcamGUI/FlatCAMGUI.py:5751 flatcamTools/ToolCutOut.py:134 +#: flatcamGUI/FlatCAMGUI.py:5758 flatcamTools/ToolCutOut.py:134 msgid "Gaps:" msgstr "Punţi:" -#: flatcamGUI/FlatCAMGUI.py:5753 +#: flatcamGUI/FlatCAMGUI.py:5760 msgid "" "Number of bridge gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -8079,21 +8106,21 @@ msgstr "" "- 2tb = 2* sus - 2* jos\n" "- 8 = 2* stânga - 2* dreapta - 2* sus - 2* jos" -#: flatcamGUI/FlatCAMGUI.py:5774 flatcamTools/ToolCutOut.py:115 +#: flatcamGUI/FlatCAMGUI.py:5781 flatcamTools/ToolCutOut.py:115 msgid "Convex Sh.:" msgstr "Formă Conv." -#: flatcamGUI/FlatCAMGUI.py:5776 +#: flatcamGUI/FlatCAMGUI.py:5783 msgid "Create a convex shape surrounding the entire PCB." msgstr "" "Generează un obiect tip Geometrie care va inconjura\n" "tot PCB-ul. Forma sa este convexa." -#: flatcamGUI/FlatCAMGUI.py:5789 +#: flatcamGUI/FlatCAMGUI.py:5796 msgid "2Sided Tool Options" msgstr "Opțiuni Unealta 2Fețe" -#: flatcamGUI/FlatCAMGUI.py:5794 +#: flatcamGUI/FlatCAMGUI.py:5801 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -8101,28 +8128,28 @@ msgstr "" "O unealtă care ajuta in crearea de PCB-uri cu 2 fețe\n" "folosind găuri de aliniere." -#: flatcamGUI/FlatCAMGUI.py:5804 flatcamTools/ToolDblSided.py:235 +#: flatcamGUI/FlatCAMGUI.py:5811 flatcamTools/ToolDblSided.py:235 msgid "Drill diam.:" msgstr "Dia gaura:" -#: flatcamGUI/FlatCAMGUI.py:5806 flatcamTools/ToolDblSided.py:226 +#: flatcamGUI/FlatCAMGUI.py:5813 flatcamTools/ToolDblSided.py:226 #: flatcamTools/ToolDblSided.py:237 msgid "Diameter of the drill for the alignment holes." msgstr "Diametrul găurii pentru găurile de aliniere." -#: flatcamGUI/FlatCAMGUI.py:5815 flatcamTools/ToolDblSided.py:120 +#: flatcamGUI/FlatCAMGUI.py:5822 flatcamTools/ToolDblSided.py:120 msgid "Mirror Axis:" msgstr "Axe oglindire:" -#: flatcamGUI/FlatCAMGUI.py:5817 flatcamTools/ToolDblSided.py:122 +#: flatcamGUI/FlatCAMGUI.py:5824 flatcamTools/ToolDblSided.py:122 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Oglindește vertical (X) sau orizontal (Y)." -#: flatcamGUI/FlatCAMGUI.py:5828 flatcamTools/ToolDblSided.py:133 +#: flatcamGUI/FlatCAMGUI.py:5835 flatcamTools/ToolDblSided.py:133 msgid "Axis Ref:" msgstr "Axa de ref.:" -#: flatcamGUI/FlatCAMGUI.py:5830 +#: flatcamGUI/FlatCAMGUI.py:5837 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a Geometry object) in \n" @@ -8131,11 +8158,11 @@ msgstr "" "Axa de referinţă ar trebui să treaca printr-un punct ori să strabata\n" " o forma (specificata un obiect tip Geometrie) prin mijloc." -#: flatcamGUI/FlatCAMGUI.py:5846 +#: flatcamGUI/FlatCAMGUI.py:5853 msgid "Paint Tool Options" msgstr "Opțiuni Unealta Paint" -#: flatcamGUI/FlatCAMGUI.py:5853 flatcamGUI/ObjectUI.py:1305 +#: flatcamGUI/FlatCAMGUI.py:5860 flatcamGUI/ObjectUI.py:1305 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -8148,7 +8175,7 @@ msgstr "" "singur poligon se va cere să faceti click pe poligonul\n" "dorit." -#: flatcamGUI/FlatCAMGUI.py:5877 +#: flatcamGUI/FlatCAMGUI.py:5884 msgid "" "How much (fraction) of the tool\n" "width to overlap each tool pass." @@ -8156,19 +8183,19 @@ msgstr "" "Cat de mult (o fracţie din diametrul uneltei) din diametrul uneltei,\n" "(lăţimea de tăiere) să se suprapună peste trecerea anterioară." -#: flatcamGUI/FlatCAMGUI.py:5931 flatcamTools/ToolPaint.py:237 +#: flatcamGUI/FlatCAMGUI.py:5938 flatcamTools/ToolPaint.py:237 msgid "Selection:" msgstr "Selecţie:" -#: flatcamGUI/FlatCAMGUI.py:5933 +#: flatcamGUI/FlatCAMGUI.py:5940 msgid "How to select the polygons to paint." msgstr "Cum să se selecteze poligoanele de pictat (paint)." -#: flatcamGUI/FlatCAMGUI.py:5951 +#: flatcamGUI/FlatCAMGUI.py:5958 msgid "Film Tool Options" msgstr "Opțiuni Unealta Film" -#: flatcamGUI/FlatCAMGUI.py:5956 +#: flatcamGUI/FlatCAMGUI.py:5963 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -8177,11 +8204,11 @@ msgstr "" "Crează un film PCB dintr-un obiect Gerber sau tip Geometrie.\n" "Fişierul este salvat in format SVG." -#: flatcamGUI/FlatCAMGUI.py:5967 flatcamTools/ToolFilm.py:116 +#: flatcamGUI/FlatCAMGUI.py:5974 flatcamTools/ToolFilm.py:116 msgid "Film Type:" msgstr "Tip film:" -#: flatcamGUI/FlatCAMGUI.py:5969 flatcamTools/ToolFilm.py:118 +#: flatcamGUI/FlatCAMGUI.py:5976 flatcamTools/ToolFilm.py:118 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -8195,11 +8222,11 @@ msgstr "" "Negativ = traseele vor fi albe pe un fundal negru.\n" "Formatul fişierului pt filmul salvat este SVG." -#: flatcamGUI/FlatCAMGUI.py:5980 flatcamTools/ToolFilm.py:130 +#: flatcamGUI/FlatCAMGUI.py:5987 flatcamTools/ToolFilm.py:130 msgid "Border:" msgstr "Bordura:" -#: flatcamGUI/FlatCAMGUI.py:5982 flatcamTools/ToolFilm.py:132 +#: flatcamGUI/FlatCAMGUI.py:5989 flatcamTools/ToolFilm.py:132 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -8216,11 +8243,11 @@ msgstr "" "Va crea o bara solida neagra in jurul printului efectiv permitand o\n" "delimitare exacta" -#: flatcamGUI/FlatCAMGUI.py:5995 flatcamTools/ToolFilm.py:144 +#: flatcamGUI/FlatCAMGUI.py:6002 flatcamTools/ToolFilm.py:144 msgid "Scale Stroke:" msgstr "Scalează:" -#: flatcamGUI/FlatCAMGUI.py:5997 flatcamTools/ToolFilm.py:146 +#: flatcamGUI/FlatCAMGUI.py:6004 flatcamTools/ToolFilm.py:146 msgid "" "Scale the line stroke thickness of each feature in the SVG file.\n" "It means that the line that envelope each SVG feature will be thicker or " @@ -8230,11 +8257,11 @@ msgstr "" "Scalează grosimea conturului fiecarui element din fişierul SVG.\n" "Elementele mai mici vor fi afectate mai mult." -#: flatcamGUI/FlatCAMGUI.py:6012 +#: flatcamGUI/FlatCAMGUI.py:6019 msgid "Panelize Tool Options" msgstr "Opțiuni Unealta Panelizare" -#: flatcamGUI/FlatCAMGUI.py:6017 +#: flatcamGUI/FlatCAMGUI.py:6024 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -8244,11 +8271,11 @@ msgstr "" "unde fiecare element este o copie a obiectului sursa, separat la o\n" "distanţă X, Y unul de celalalt." -#: flatcamGUI/FlatCAMGUI.py:6028 flatcamTools/ToolPanelize.py:147 +#: flatcamGUI/FlatCAMGUI.py:6035 flatcamTools/ToolPanelize.py:147 msgid "Spacing cols:" msgstr "Sep. coloane:" -#: flatcamGUI/FlatCAMGUI.py:6030 flatcamTools/ToolPanelize.py:149 +#: flatcamGUI/FlatCAMGUI.py:6037 flatcamTools/ToolPanelize.py:149 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -8256,11 +8283,11 @@ msgstr "" "Spatiul de separare între coloane.\n" "In unitatile curente." -#: flatcamGUI/FlatCAMGUI.py:6038 flatcamTools/ToolPanelize.py:156 +#: flatcamGUI/FlatCAMGUI.py:6045 flatcamTools/ToolPanelize.py:156 msgid "Spacing rows:" msgstr "Sep. linii:" -#: flatcamGUI/FlatCAMGUI.py:6040 flatcamTools/ToolPanelize.py:158 +#: flatcamGUI/FlatCAMGUI.py:6047 flatcamTools/ToolPanelize.py:158 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -8268,27 +8295,27 @@ msgstr "" "Spatiul de separare între linii.\n" "In unitatile curente." -#: flatcamGUI/FlatCAMGUI.py:6048 flatcamTools/ToolPanelize.py:165 +#: flatcamGUI/FlatCAMGUI.py:6055 flatcamTools/ToolPanelize.py:165 msgid "Columns:" msgstr "Coloane:" -#: flatcamGUI/FlatCAMGUI.py:6050 flatcamTools/ToolPanelize.py:167 +#: flatcamGUI/FlatCAMGUI.py:6057 flatcamTools/ToolPanelize.py:167 msgid "Number of columns of the desired panel" msgstr "Numărul de coloane ale panel-ului dorit." -#: flatcamGUI/FlatCAMGUI.py:6057 flatcamTools/ToolPanelize.py:173 +#: flatcamGUI/FlatCAMGUI.py:6064 flatcamTools/ToolPanelize.py:173 msgid "Rows:" msgstr "Linii:" -#: flatcamGUI/FlatCAMGUI.py:6059 flatcamTools/ToolPanelize.py:175 +#: flatcamGUI/FlatCAMGUI.py:6066 flatcamTools/ToolPanelize.py:175 msgid "Number of rows of the desired panel" msgstr "Numărul de linii ale panel-ului dorit." -#: flatcamGUI/FlatCAMGUI.py:6067 +#: flatcamGUI/FlatCAMGUI.py:6074 msgid "Panel Type:" msgstr "Tip panel:" -#: flatcamGUI/FlatCAMGUI.py:6069 +#: flatcamGUI/FlatCAMGUI.py:6076 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -8298,11 +8325,11 @@ msgstr "" "- Gerber\n" "- Geometrie" -#: flatcamGUI/FlatCAMGUI.py:6078 +#: flatcamGUI/FlatCAMGUI.py:6085 msgid "Constrain within:" msgstr "Constrange:" -#: flatcamGUI/FlatCAMGUI.py:6080 flatcamTools/ToolPanelize.py:195 +#: flatcamGUI/FlatCAMGUI.py:6087 flatcamTools/ToolPanelize.py:195 msgid "" "Area define by DX and DY within to constrain the panel.\n" "DX and DY values are in current units.\n" @@ -8316,11 +8343,11 @@ msgstr "" "panelul final va contine numai acel număr de linii/coloane care se inscrie\n" "complet in aria desemnata." -#: flatcamGUI/FlatCAMGUI.py:6089 flatcamTools/ToolPanelize.py:204 +#: flatcamGUI/FlatCAMGUI.py:6096 flatcamTools/ToolPanelize.py:204 msgid "Width (DX):" msgstr "Latime (Dx):" -#: flatcamGUI/FlatCAMGUI.py:6091 flatcamTools/ToolPanelize.py:206 +#: flatcamGUI/FlatCAMGUI.py:6098 flatcamTools/ToolPanelize.py:206 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -8328,11 +8355,11 @@ msgstr "" "Lăţimea (Dx) in care panelul trebuie să se inscrie.\n" "In unitati curente." -#: flatcamGUI/FlatCAMGUI.py:6098 flatcamTools/ToolPanelize.py:212 +#: flatcamGUI/FlatCAMGUI.py:6105 flatcamTools/ToolPanelize.py:212 msgid "Height (DY):" msgstr "Inaltime (Dy):" -#: flatcamGUI/FlatCAMGUI.py:6100 flatcamTools/ToolPanelize.py:214 +#: flatcamGUI/FlatCAMGUI.py:6107 flatcamTools/ToolPanelize.py:214 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -8340,15 +8367,15 @@ msgstr "" "Înălţimea (Dy) in care panelul trebuie să se inscrie.\n" "In unitati curente." -#: flatcamGUI/FlatCAMGUI.py:6114 +#: flatcamGUI/FlatCAMGUI.py:6121 msgid "Calculators Tool Options" msgstr "Opțiuni Unealta Calculatoare" -#: flatcamGUI/FlatCAMGUI.py:6117 +#: flatcamGUI/FlatCAMGUI.py:6124 msgid "V-Shape Tool Calculator:" msgstr "Calculator: Unealta V-shape" -#: flatcamGUI/FlatCAMGUI.py:6119 +#: flatcamGUI/FlatCAMGUI.py:6126 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -8358,11 +8385,11 @@ msgstr "" "avand diametrul vârfului și unghiul la vârf cat și\n" "adâncimea de tăiere, ca parametri." -#: flatcamGUI/FlatCAMGUI.py:6130 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/FlatCAMGUI.py:6137 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter:" msgstr "Dia vârf:" -#: flatcamGUI/FlatCAMGUI.py:6132 +#: flatcamGUI/FlatCAMGUI.py:6139 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -8370,11 +8397,11 @@ msgstr "" "Acesta este diametrul la vârf al uneltei.\n" "Este specificat de producator." -#: flatcamGUI/FlatCAMGUI.py:6140 +#: flatcamGUI/FlatCAMGUI.py:6147 msgid "Tip angle:" msgstr "Unghiul la vârf:" -#: flatcamGUI/FlatCAMGUI.py:6142 +#: flatcamGUI/FlatCAMGUI.py:6149 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -8382,7 +8409,7 @@ msgstr "" "Acesta este unghiul la vârf al uneltei.\n" "Este specificat de producator." -#: flatcamGUI/FlatCAMGUI.py:6152 +#: flatcamGUI/FlatCAMGUI.py:6159 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." @@ -8390,11 +8417,11 @@ msgstr "" "Aceasta este adâncimea la care se taie in material.\n" "In obiectul CNCJob este parametrul >Z tăiere<." -#: flatcamGUI/FlatCAMGUI.py:6159 +#: flatcamGUI/FlatCAMGUI.py:6166 msgid "ElectroPlating Calculator:" msgstr "Calculator Electroplacare:" -#: flatcamGUI/FlatCAMGUI.py:6161 flatcamTools/ToolCalculators.py:152 +#: flatcamGUI/FlatCAMGUI.py:6168 flatcamTools/ToolCalculators.py:152 msgid "" "This calculator is useful for those who plate the via/pad/drill holes,\n" "using a method like grahite ink or calcium hypophosphite ink or palladium " @@ -8406,31 +8433,31 @@ msgstr "" "- clorura paladiu\n" "- hipofosfit de calciu" -#: flatcamGUI/FlatCAMGUI.py:6171 flatcamTools/ToolCalculators.py:161 +#: flatcamGUI/FlatCAMGUI.py:6178 flatcamTools/ToolCalculators.py:161 msgid "Board Length:" msgstr "Lung. placii:" -#: flatcamGUI/FlatCAMGUI.py:6173 flatcamTools/ToolCalculators.py:165 +#: flatcamGUI/FlatCAMGUI.py:6180 flatcamTools/ToolCalculators.py:165 msgid "This is the board length. In centimeters." msgstr "" "Aceasta este lungimea PCB-ului.\n" "In centimetri. " -#: flatcamGUI/FlatCAMGUI.py:6179 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/FlatCAMGUI.py:6186 flatcamTools/ToolCalculators.py:167 msgid "Board Width:" msgstr "Lat. placii:" -#: flatcamGUI/FlatCAMGUI.py:6181 flatcamTools/ToolCalculators.py:171 +#: flatcamGUI/FlatCAMGUI.py:6188 flatcamTools/ToolCalculators.py:171 msgid "This is the board width.In centimeters." msgstr "" "Aceasta este lăţimea PCB-ului.\n" "In centimetri. " -#: flatcamGUI/FlatCAMGUI.py:6186 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/FlatCAMGUI.py:6193 flatcamTools/ToolCalculators.py:173 msgid "Current Density:" msgstr "Densitate I:" -#: flatcamGUI/FlatCAMGUI.py:6189 flatcamTools/ToolCalculators.py:177 +#: flatcamGUI/FlatCAMGUI.py:6196 flatcamTools/ToolCalculators.py:177 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -8438,11 +8465,11 @@ msgstr "" "Densitatea de curent care să treaca prin placa.\n" "In ASF (amperi pe picior la patrat)." -#: flatcamGUI/FlatCAMGUI.py:6195 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/FlatCAMGUI.py:6202 flatcamTools/ToolCalculators.py:181 msgid "Copper Growth:" msgstr "Grosime Cu:" -#: flatcamGUI/FlatCAMGUI.py:6198 flatcamTools/ToolCalculators.py:185 +#: flatcamGUI/FlatCAMGUI.py:6205 flatcamTools/ToolCalculators.py:185 msgid "" "How thick the copper growth is intended to be.\n" "In microns." @@ -8450,11 +8477,11 @@ msgstr "" "Cat de gros se dorește să fie stratul de cupru depus.\n" "In microni." -#: flatcamGUI/FlatCAMGUI.py:6211 +#: flatcamGUI/FlatCAMGUI.py:6218 msgid "Transform Tool Options" msgstr "Opțiuni Unealta Transformare" -#: flatcamGUI/FlatCAMGUI.py:6216 +#: flatcamGUI/FlatCAMGUI.py:6223 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -8467,47 +8494,47 @@ msgstr "" "- deformare\n" "- oglindire" -#: flatcamGUI/FlatCAMGUI.py:6226 +#: flatcamGUI/FlatCAMGUI.py:6233 msgid "Rotate Angle:" msgstr "Unghi Rotaţie:" -#: flatcamGUI/FlatCAMGUI.py:6228 +#: flatcamGUI/FlatCAMGUI.py:6235 msgid "Angle for rotation. In degrees." msgstr "Unnghiul pentru rotaţie. In grade." -#: flatcamGUI/FlatCAMGUI.py:6235 +#: flatcamGUI/FlatCAMGUI.py:6242 msgid "Skew_X angle:" msgstr "Unghi Deform_X:" -#: flatcamGUI/FlatCAMGUI.py:6237 +#: flatcamGUI/FlatCAMGUI.py:6244 msgid "Angle for Skew/Shear on X axis. In degrees." msgstr "Unghiul pentru deformare pe axa X. In grade." -#: flatcamGUI/FlatCAMGUI.py:6244 +#: flatcamGUI/FlatCAMGUI.py:6251 msgid "Skew_Y angle:" msgstr "Unghi Deform_Y:" -#: flatcamGUI/FlatCAMGUI.py:6246 +#: flatcamGUI/FlatCAMGUI.py:6253 msgid "Angle for Skew/Shear on Y axis. In degrees." msgstr "Unghiul pentru deformare pe axa Y. In grade." -#: flatcamGUI/FlatCAMGUI.py:6253 +#: flatcamGUI/FlatCAMGUI.py:6260 msgid "Scale_X factor:" msgstr "Factor Scal_X:" -#: flatcamGUI/FlatCAMGUI.py:6255 +#: flatcamGUI/FlatCAMGUI.py:6262 msgid "Factor for scaling on X axis." msgstr "Factor de scalare pe axa X." -#: flatcamGUI/FlatCAMGUI.py:6262 +#: flatcamGUI/FlatCAMGUI.py:6269 msgid "Scale_Y factor:" msgstr "Factor Scal_Y:" -#: flatcamGUI/FlatCAMGUI.py:6264 +#: flatcamGUI/FlatCAMGUI.py:6271 msgid "Factor for scaling on Y axis." msgstr "Factor de scalare pe axa Y." -#: flatcamGUI/FlatCAMGUI.py:6272 +#: flatcamGUI/FlatCAMGUI.py:6279 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -8515,7 +8542,7 @@ msgstr "" "Scalează obiectele selectate folosind\n" "Factor Scal_X pentru ambele axe." -#: flatcamGUI/FlatCAMGUI.py:6280 flatcamTools/ToolTransform.py:210 +#: flatcamGUI/FlatCAMGUI.py:6287 flatcamTools/ToolTransform.py:210 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -8528,27 +8555,27 @@ msgstr "" "centrul formei inconjuatoare care cuprinde\n" "toate obiectele selectate." -#: flatcamGUI/FlatCAMGUI.py:6289 +#: flatcamGUI/FlatCAMGUI.py:6296 msgid "Offset_X val:" msgstr "Ofset_X:" -#: flatcamGUI/FlatCAMGUI.py:6291 +#: flatcamGUI/FlatCAMGUI.py:6298 msgid "Distance to offset on X axis. In current units." msgstr "Distanta la care se face ofset pe axa X. In unitatile curente." -#: flatcamGUI/FlatCAMGUI.py:6298 +#: flatcamGUI/FlatCAMGUI.py:6305 msgid "Offset_Y val:" msgstr "Ofset_Y:" -#: flatcamGUI/FlatCAMGUI.py:6300 +#: flatcamGUI/FlatCAMGUI.py:6307 msgid "Distance to offset on Y axis. In current units." msgstr "Distanta la care se face ofset pe axa Y. In unitatile curente." -#: flatcamGUI/FlatCAMGUI.py:6306 +#: flatcamGUI/FlatCAMGUI.py:6313 msgid "Mirror Reference" msgstr "Referinţă Oglindire" -#: flatcamGUI/FlatCAMGUI.py:6308 flatcamTools/ToolTransform.py:314 +#: flatcamGUI/FlatCAMGUI.py:6315 flatcamTools/ToolTransform.py:314 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -8571,11 +8598,11 @@ msgstr "" "in forma (x, y).\n" "La final apasa butonul de oglindire pe axa dorita. " -#: flatcamGUI/FlatCAMGUI.py:6319 +#: flatcamGUI/FlatCAMGUI.py:6326 msgid " Mirror Ref. Point:" msgstr "Pt. Ref. Oglindire:" -#: flatcamGUI/FlatCAMGUI.py:6321 flatcamTools/ToolTransform.py:327 +#: flatcamGUI/FlatCAMGUI.py:6328 flatcamTools/ToolTransform.py:327 msgid "" "Coordinates in format (x, y) used as reference for mirroring.\n" "The 'x' in (x, y) will be used when using Flip on X and\n" @@ -8586,11 +8613,11 @@ msgstr "" "X din (x,y) se va folosi când se face oglindirea pe axa X\n" "Y din (x,y) se va folosi când se face oglindirea pe axa Y." -#: flatcamGUI/FlatCAMGUI.py:6338 +#: flatcamGUI/FlatCAMGUI.py:6345 msgid "SolderPaste Tool Options" msgstr "Opțiuni Unealta Pasta Fludor" -#: flatcamGUI/FlatCAMGUI.py:6343 +#: flatcamGUI/FlatCAMGUI.py:6350 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -8598,49 +8625,49 @@ msgstr "" "O unealtă care crează cod G-Code pentru dispensarea de pastă de fludor\n" "pe padurile unui PCB." -#: flatcamGUI/FlatCAMGUI.py:6354 +#: flatcamGUI/FlatCAMGUI.py:6361 msgid "Diameters of nozzle tools, separated by ','" msgstr "Diametrele uneltelor (nozzle), separate prin virgula." -#: flatcamGUI/FlatCAMGUI.py:6361 +#: flatcamGUI/FlatCAMGUI.py:6368 msgid "New Nozzle Dia:" msgstr "Nou Dia::" -#: flatcamGUI/FlatCAMGUI.py:6363 flatcamTools/ToolSolderPaste.py:103 +#: flatcamGUI/FlatCAMGUI.py:6370 flatcamTools/ToolSolderPaste.py:103 msgid "Diameter for the new Nozzle tool to add in the Tool Table" msgstr "" "Valoarea pentru diametrul unei noi unelte (nozzle) pentru adaugare in Tabela " "de Unelte" -#: flatcamGUI/FlatCAMGUI.py:6371 flatcamTools/ToolSolderPaste.py:166 +#: flatcamGUI/FlatCAMGUI.py:6378 flatcamTools/ToolSolderPaste.py:166 msgid "Z Dispense Start:" msgstr "Z start disp.:" -#: flatcamGUI/FlatCAMGUI.py:6373 flatcamTools/ToolSolderPaste.py:168 +#: flatcamGUI/FlatCAMGUI.py:6380 flatcamTools/ToolSolderPaste.py:168 msgid "The height (Z) when solder paste dispensing starts." msgstr "Înălţimea (Z) când incepe dispensarea de pastă de fludor." -#: flatcamGUI/FlatCAMGUI.py:6380 flatcamTools/ToolSolderPaste.py:174 +#: flatcamGUI/FlatCAMGUI.py:6387 flatcamTools/ToolSolderPaste.py:174 msgid "Z Dispense:" msgstr "Z disp.:" -#: flatcamGUI/FlatCAMGUI.py:6382 flatcamTools/ToolSolderPaste.py:176 +#: flatcamGUI/FlatCAMGUI.py:6389 flatcamTools/ToolSolderPaste.py:176 msgid "The height (Z) when doing solder paste dispensing." msgstr "Înălţimea (Z) in timp ce se face dispensarea de pastă de fludor." -#: flatcamGUI/FlatCAMGUI.py:6389 flatcamTools/ToolSolderPaste.py:183 +#: flatcamGUI/FlatCAMGUI.py:6396 flatcamTools/ToolSolderPaste.py:183 msgid "Z Dispense Stop:" msgstr "Z stop disp.:" -#: flatcamGUI/FlatCAMGUI.py:6391 flatcamTools/ToolSolderPaste.py:185 +#: flatcamGUI/FlatCAMGUI.py:6398 flatcamTools/ToolSolderPaste.py:185 msgid "The height (Z) when solder paste dispensing stops." msgstr "Înălţimea (Z) când se opreste dispensarea de pastă de fludor." -#: flatcamGUI/FlatCAMGUI.py:6398 flatcamTools/ToolSolderPaste.py:191 +#: flatcamGUI/FlatCAMGUI.py:6405 flatcamTools/ToolSolderPaste.py:191 msgid "Z Travel:" msgstr "Z deplasare:" -#: flatcamGUI/FlatCAMGUI.py:6400 flatcamTools/ToolSolderPaste.py:193 +#: flatcamGUI/FlatCAMGUI.py:6407 flatcamTools/ToolSolderPaste.py:193 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -8648,19 +8675,19 @@ msgstr "" "Înălţimea (Z) când se face deplasare între pad-uri.\n" "(fără dispensare de pastă de fludor)." -#: flatcamGUI/FlatCAMGUI.py:6408 flatcamTools/ToolSolderPaste.py:200 +#: flatcamGUI/FlatCAMGUI.py:6415 flatcamTools/ToolSolderPaste.py:200 msgid "Z Toolchange:" msgstr "Z schimb. unealtă:" -#: flatcamGUI/FlatCAMGUI.py:6410 flatcamTools/ToolSolderPaste.py:202 +#: flatcamGUI/FlatCAMGUI.py:6417 flatcamTools/ToolSolderPaste.py:202 msgid "The height (Z) for tool (nozzle) change." msgstr "Înălţimea (Z) când se schimbă unealta (nozzle-ul)." -#: flatcamGUI/FlatCAMGUI.py:6417 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/FlatCAMGUI.py:6424 flatcamTools/ToolSolderPaste.py:208 msgid "XY Toolchange:" msgstr "XY schimb unealtă:" -#: flatcamGUI/FlatCAMGUI.py:6419 flatcamTools/ToolSolderPaste.py:210 +#: flatcamGUI/FlatCAMGUI.py:6426 flatcamTools/ToolSolderPaste.py:210 msgid "" "The X,Y location for tool (nozzle) change.\n" "The format is (x, y) where x and y are real numbers." @@ -8668,30 +8695,30 @@ msgstr "" "Coordonatele X, Y pentru schimbarea uneltei (nozzle).\n" "Formatul este (x,y) unde x și y sunt numere Reale." -#: flatcamGUI/FlatCAMGUI.py:6427 flatcamTools/ToolSolderPaste.py:217 +#: flatcamGUI/FlatCAMGUI.py:6434 flatcamTools/ToolSolderPaste.py:217 msgid "Feedrate X-Y:" msgstr "Feedrate X-Y:" -#: flatcamGUI/FlatCAMGUI.py:6429 flatcamTools/ToolSolderPaste.py:219 +#: flatcamGUI/FlatCAMGUI.py:6436 flatcamTools/ToolSolderPaste.py:219 msgid "Feedrate (speed) while moving on the X-Y plane." msgstr "Viteza de deplasare a uneltei când se deplasează in planul X-Y." -#: flatcamGUI/FlatCAMGUI.py:6436 flatcamTools/ToolSolderPaste.py:225 +#: flatcamGUI/FlatCAMGUI.py:6443 flatcamTools/ToolSolderPaste.py:225 msgid "Feedrate Z:" msgstr "Feedrate Z:" -#: flatcamGUI/FlatCAMGUI.py:6438 flatcamTools/ToolSolderPaste.py:227 +#: flatcamGUI/FlatCAMGUI.py:6445 flatcamTools/ToolSolderPaste.py:227 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." msgstr "" "Viteza de deplasare a uneltei când se misca in plan vertical (planul Z)." -#: flatcamGUI/FlatCAMGUI.py:6446 flatcamTools/ToolSolderPaste.py:234 +#: flatcamGUI/FlatCAMGUI.py:6453 flatcamTools/ToolSolderPaste.py:234 msgid "Feedrate Z Dispense:" msgstr "Feedrate Z disp.:" -#: flatcamGUI/FlatCAMGUI.py:6448 flatcamTools/ToolSolderPaste.py:236 +#: flatcamGUI/FlatCAMGUI.py:6455 flatcamTools/ToolSolderPaste.py:236 msgid "" "Feedrate (speed) while moving up vertically\n" " to Dispense position (on Z plane)." @@ -8699,11 +8726,11 @@ msgstr "" "Viteza de deplasare la mișcarea pe verticala spre\n" "poziţia de dispensare (in planul Z)." -#: flatcamGUI/FlatCAMGUI.py:6456 flatcamTools/ToolSolderPaste.py:243 +#: flatcamGUI/FlatCAMGUI.py:6463 flatcamTools/ToolSolderPaste.py:243 msgid "Spindle Speed FWD:" msgstr "Viteza motor inainte:" -#: flatcamGUI/FlatCAMGUI.py:6458 flatcamTools/ToolSolderPaste.py:245 +#: flatcamGUI/FlatCAMGUI.py:6465 flatcamTools/ToolSolderPaste.py:245 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -8711,19 +8738,19 @@ msgstr "" "Viteza motorului de dispensare in timp ce impinge pastă de fludor\n" "prin orificiul uneltei de dispensare." -#: flatcamGUI/FlatCAMGUI.py:6466 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/FlatCAMGUI.py:6473 flatcamTools/ToolSolderPaste.py:252 msgid "Dwell FWD:" msgstr "Pauza dupa disp.:" -#: flatcamGUI/FlatCAMGUI.py:6468 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/FlatCAMGUI.py:6475 flatcamTools/ToolSolderPaste.py:254 msgid "Pause after solder dispensing." msgstr "Pauza dupa dispensarea de pastă de fludor." -#: flatcamGUI/FlatCAMGUI.py:6475 flatcamTools/ToolSolderPaste.py:260 +#: flatcamGUI/FlatCAMGUI.py:6482 flatcamTools/ToolSolderPaste.py:260 msgid "Spindle Speed REV:" msgstr "Viteza motor inapoi:" -#: flatcamGUI/FlatCAMGUI.py:6477 flatcamTools/ToolSolderPaste.py:262 +#: flatcamGUI/FlatCAMGUI.py:6484 flatcamTools/ToolSolderPaste.py:262 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -8731,11 +8758,11 @@ msgstr "" "Viteza motorului de dispensare in timp ce retrage pasta de fludor\n" "prin orificiul uneltei de dispensare." -#: flatcamGUI/FlatCAMGUI.py:6485 flatcamTools/ToolSolderPaste.py:269 +#: flatcamGUI/FlatCAMGUI.py:6492 flatcamTools/ToolSolderPaste.py:269 msgid "Dwell REV:" msgstr "Pauza dupa rev:" -#: flatcamGUI/FlatCAMGUI.py:6487 flatcamTools/ToolSolderPaste.py:271 +#: flatcamGUI/FlatCAMGUI.py:6494 flatcamTools/ToolSolderPaste.py:271 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -8743,23 +8770,23 @@ msgstr "" "Pauza dupa ce pasta de fludor a fost retrasă,\n" "necesară pt a ajunge la un echilibru al presiunilor." -#: flatcamGUI/FlatCAMGUI.py:6494 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/FlatCAMGUI.py:6501 flatcamTools/ToolSolderPaste.py:277 msgid "PostProcessors:" msgstr "Postprocesoare:" -#: flatcamGUI/FlatCAMGUI.py:6496 flatcamTools/ToolSolderPaste.py:279 +#: flatcamGUI/FlatCAMGUI.py:6503 flatcamTools/ToolSolderPaste.py:279 msgid "Files that control the GCode generation." msgstr "Fişiere care controlează generarea codului G-Code." -#: flatcamGUI/FlatCAMGUI.py:6526 flatcamGUI/FlatCAMGUI.py:6532 +#: flatcamGUI/FlatCAMGUI.py:6533 flatcamGUI/FlatCAMGUI.py:6539 msgid "Idle." msgstr "Inactiv." -#: flatcamGUI/FlatCAMGUI.py:6556 +#: flatcamGUI/FlatCAMGUI.py:6563 msgid "Application started ..." msgstr "Aplicaţia a pornit ..." -#: flatcamGUI/FlatCAMGUI.py:6557 +#: flatcamGUI/FlatCAMGUI.py:6564 msgid "Hello!" msgstr "Bună!" @@ -10858,7 +10885,7 @@ msgstr "" #: flatcamTools/ToolNonCopperClear.py:513 flatcamTools/ToolPaint.py:568 msgid "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table." msgstr "" -"[WARNING_NOTCL] Adaugarea unei unelte noi este anulata. Unealta exista deja " +"[WARNING_NOTCL] Adăugarea unei unelte noi este anulata. Unealta exista deja " "in Tabela de Unelte." #: flatcamTools/ToolNonCopperClear.py:518 flatcamTools/ToolPaint.py:573 @@ -11072,23 +11099,23 @@ msgstr "" msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..." msgstr "[ERROR_NOTCL] Nu se poate face 'pictare' pe geometrii MultiGeo ..." -#: flatcamTools/ToolPaint.py:796 flatcamTools/ToolPaint.py:999 +#: flatcamTools/ToolPaint.py:796 flatcamTools/ToolPaint.py:1003 msgid "Painting polygon..." msgstr "Se 'pictează' un poligon..." -#: flatcamTools/ToolPaint.py:847 +#: flatcamTools/ToolPaint.py:851 msgid "[WARNING] No polygon found." msgstr "[WARNING] Nu s-a gasit nici-un poligon." -#: flatcamTools/ToolPaint.py:850 +#: flatcamTools/ToolPaint.py:854 msgid "Painting polygon." msgstr "Se 'pictează' un poligon." -#: flatcamTools/ToolPaint.py:892 +#: flatcamTools/ToolPaint.py:896 msgid "[ERROR_NOTCL] Geometry could not be painted completely" msgstr "[ERROR_NOTCL] Geometria nu a putut să fie 'pictata' complet." -#: flatcamTools/ToolPaint.py:918 +#: flatcamTools/ToolPaint.py:922 #, python-format msgid "" "[ERROR] Could not do Paint. Try a different combination of parameters. Or a " @@ -11099,16 +11126,16 @@ msgstr "" "diferita de parametri. Sau o strategie diferita de 'pictare'.\n" "%s" -#: flatcamTools/ToolPaint.py:960 +#: flatcamTools/ToolPaint.py:964 #, python-format msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s" msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s" -#: flatcamTools/ToolPaint.py:966 flatcamTools/ToolPaint.py:1259 +#: flatcamTools/ToolPaint.py:970 flatcamTools/ToolPaint.py:1263 msgid "Polygon Paint started ..." msgstr "Paint pt poligon a inceput ..." -#: flatcamTools/ToolPaint.py:1115 flatcamTools/ToolPaint.py:1204 +#: flatcamTools/ToolPaint.py:1119 flatcamTools/ToolPaint.py:1208 #, python-format msgid "" "[ERROR] Could not do Paint All. Try a different combination of parameters. " @@ -11119,7 +11146,7 @@ msgstr "" "combinaţie diferita de parametri. Sau încearcă o alta metoda de 'pictat'\n" "%s" -#: flatcamTools/ToolPaint.py:1139 +#: flatcamTools/ToolPaint.py:1143 msgid "" "[ERROR] There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -11131,11 +11158,11 @@ msgstr "" "geometrice.\n" "Schimbă parametrii de 'pictare' și încearcă din nou." -#: flatcamTools/ToolPaint.py:1148 +#: flatcamTools/ToolPaint.py:1152 msgid "[success] Paint All Done." msgstr "[success] 'Paint' pt toate poligoanele a fost efectuata." -#: flatcamTools/ToolPaint.py:1234 +#: flatcamTools/ToolPaint.py:1238 msgid "" "[ERROR_NOTCL] There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -11147,7 +11174,7 @@ msgstr "" "pt a fi folosit in obiectul Geometrie de 'pictat'.\n" "Schimbă parametrii de 'pictat' și încearcă din nou." -#: flatcamTools/ToolPaint.py:1243 +#: flatcamTools/ToolPaint.py:1247 msgid "[success] Paint All with Rest-Machining done." msgstr "" "[success] 'Paint' pentru toate poligoanele cu strategia Rest a fost " @@ -11693,7 +11720,7 @@ msgstr "Șterge Obiectul" msgid "" "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table." msgstr "" -"[WARNING_NOTCL] Adaugarea unei unelte Nozzle a fost anulata. Unealta exista " +"[WARNING_NOTCL] Adăugarea unei unelte Nozzle a fost anulata. Unealta exista " "deja in Tabela de Unelte." #: flatcamTools/ToolSolderPaste.py:794 diff --git a/locale_template/strings.pot b/locale_template/strings.pot index 23773da5..d006ce2d 100644 --- a/locale_template/strings.pot +++ b/locale_template/strings.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-05-20 01:44+0300\n" +"POT-Creation-Date: 2019-05-22 18:30+0300\n" "PO-Revision-Date: 2019-03-25 15:08+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -59,17 +59,17 @@ msgstr "" msgid "Do you want to save the edited object?" msgstr "" -#: FlatCAMApp.py:2255 flatcamGUI/FlatCAMGUI.py:1618 +#: FlatCAMApp.py:2255 flatcamGUI/FlatCAMGUI.py:1621 msgid "Close Editor" msgstr "" #: FlatCAMApp.py:2258 FlatCAMApp.py:3349 FlatCAMApp.py:5799 -#: FlatCAMTranslation.py:89 flatcamGUI/FlatCAMGUI.py:3726 +#: FlatCAMTranslation.py:89 flatcamGUI/FlatCAMGUI.py:3733 msgid "Yes" msgstr "" #: FlatCAMApp.py:2259 FlatCAMApp.py:3350 FlatCAMApp.py:5800 -#: FlatCAMTranslation.py:90 flatcamGUI/FlatCAMGUI.py:3727 +#: FlatCAMTranslation.py:90 flatcamGUI/FlatCAMGUI.py:3734 msgid "No" msgstr "" @@ -135,7 +135,7 @@ msgstr "" msgid "[ERROR_NOTCL] Failed to open recent files file for writing." msgstr "" -#: FlatCAMApp.py:2930 camlib.py:4453 +#: FlatCAMApp.py:2930 camlib.py:4454 msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n" msgstr "" @@ -191,7 +191,7 @@ msgstr "" msgid "Factory defaults saved." msgstr "" -#: FlatCAMApp.py:3339 flatcamGUI/FlatCAMGUI.py:3103 +#: FlatCAMApp.py:3339 flatcamGUI/FlatCAMGUI.py:3110 msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..." msgstr "" @@ -283,7 +283,7 @@ msgid "" msgstr "" #: FlatCAMApp.py:4488 FlatCAMApp.py:4521 FlatCAMApp.py:4532 FlatCAMApp.py:4543 -#: flatcamGUI/FlatCAMGUI.py:2998 +#: flatcamGUI/FlatCAMGUI.py:3005 msgid "[WARNING_NOTCL] Adding Tool cancelled ..." msgstr "" @@ -323,15 +323,15 @@ msgstr "" #: FlatCAMApp.py:4661 flatcamEditors/FlatCAMExcEditor.py:2285 #: flatcamEditors/FlatCAMExcEditor.py:2292 -#: flatcamEditors/FlatCAMGeoEditor.py:3555 -#: flatcamEditors/FlatCAMGeoEditor.py:3569 -#: flatcamEditors/FlatCAMGrbEditor.py:1037 -#: flatcamEditors/FlatCAMGrbEditor.py:1138 -#: flatcamEditors/FlatCAMGrbEditor.py:1399 -#: flatcamEditors/FlatCAMGrbEditor.py:1649 -#: flatcamEditors/FlatCAMGrbEditor.py:3784 -#: flatcamEditors/FlatCAMGrbEditor.py:3798 flatcamGUI/FlatCAMGUI.py:2412 -#: flatcamGUI/FlatCAMGUI.py:2424 +#: flatcamEditors/FlatCAMGeoEditor.py:3648 +#: flatcamEditors/FlatCAMGeoEditor.py:3662 +#: flatcamEditors/FlatCAMGrbEditor.py:1040 +#: flatcamEditors/FlatCAMGrbEditor.py:1141 +#: flatcamEditors/FlatCAMGrbEditor.py:1402 +#: flatcamEditors/FlatCAMGrbEditor.py:1652 +#: flatcamEditors/FlatCAMGrbEditor.py:3928 +#: flatcamEditors/FlatCAMGrbEditor.py:3942 flatcamGUI/FlatCAMGUI.py:2419 +#: flatcamGUI/FlatCAMGUI.py:2431 msgid "[success] Done." msgstr "" @@ -356,8 +356,8 @@ msgid "[success] Flip on Y axis done." msgstr "" #: FlatCAMApp.py:4971 FlatCAMApp.py:5011 -#: flatcamEditors/FlatCAMGeoEditor.py:1356 -#: flatcamEditors/FlatCAMGrbEditor.py:5165 flatcamTools/ToolTransform.py:748 +#: flatcamEditors/FlatCAMGeoEditor.py:1355 +#: flatcamEditors/FlatCAMGrbEditor.py:5309 flatcamTools/ToolTransform.py:748 #, python-format msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed." msgstr "" @@ -386,8 +386,8 @@ msgstr "" msgid "[success] Rotation done." msgstr "" -#: FlatCAMApp.py:5059 flatcamEditors/FlatCAMGeoEditor.py:1299 -#: flatcamEditors/FlatCAMGrbEditor.py:5096 flatcamTools/ToolTransform.py:677 +#: FlatCAMApp.py:5059 flatcamEditors/FlatCAMGeoEditor.py:1298 +#: flatcamEditors/FlatCAMGrbEditor.py:5240 flatcamTools/ToolTransform.py:677 #, python-format msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed." msgstr "" @@ -408,9 +408,9 @@ msgstr "" msgid "[success] Skew on Y axis done." msgstr "" -#: FlatCAMApp.py:5197 flatcamEditors/FlatCAMGeoEditor.py:938 -#: flatcamEditors/FlatCAMGrbEditor.py:2223 -#: flatcamEditors/FlatCAMGrbEditor.py:4687 flatcamGUI/ObjectUI.py:991 +#: FlatCAMApp.py:5197 flatcamEditors/FlatCAMGeoEditor.py:937 +#: flatcamEditors/FlatCAMGrbEditor.py:2365 +#: flatcamEditors/FlatCAMGrbEditor.py:4831 flatcamGUI/ObjectUI.py:991 #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208 #: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131 #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:479 @@ -419,9 +419,9 @@ msgid "Add" msgstr "" #: FlatCAMApp.py:5198 FlatCAMObj.py:3302 -#: flatcamEditors/FlatCAMGrbEditor.py:2228 flatcamGUI/FlatCAMGUI.py:532 -#: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:1616 -#: flatcamGUI/FlatCAMGUI.py:1948 flatcamGUI/ObjectUI.py:1007 +#: flatcamEditors/FlatCAMGrbEditor.py:2370 flatcamGUI/FlatCAMGUI.py:532 +#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:1619 +#: flatcamGUI/FlatCAMGUI.py:1955 flatcamGUI/ObjectUI.py:1007 #: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143 #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:481 msgid "Delete" @@ -494,7 +494,7 @@ msgid "[success] New Project created..." msgstr "" #: FlatCAMApp.py:5923 FlatCAMApp.py:5926 flatcamGUI/FlatCAMGUI.py:613 -#: flatcamGUI/FlatCAMGUI.py:1831 +#: flatcamGUI/FlatCAMGUI.py:1834 msgid "Open Gerber" msgstr "" @@ -503,7 +503,7 @@ msgid "[WARNING_NOTCL] Open Gerber cancelled." msgstr "" #: FlatCAMApp.py:5952 FlatCAMApp.py:5955 flatcamGUI/FlatCAMGUI.py:614 -#: flatcamGUI/FlatCAMGUI.py:1832 +#: flatcamGUI/FlatCAMGUI.py:1835 msgid "Open Excellon" msgstr "" @@ -946,7 +946,7 @@ msgstr "" msgid "[ERROR_NOTCL] Failed to parse recent item list." msgstr "" -#: FlatCAMApp.py:8110 flatcamGUI/FlatCAMGUI.py:970 +#: FlatCAMApp.py:8110 flatcamGUI/FlatCAMGUI.py:973 msgid "Shortcut Key List" msgstr "" @@ -1105,7 +1105,7 @@ msgstr "" #: flatcamTools/ToolNonCopperClear.py:627 #: flatcamTools/ToolNonCopperClear.py:644 flatcamTools/ToolPaint.py:538 #: flatcamTools/ToolPaint.py:608 flatcamTools/ToolPaint.py:743 -#: flatcamTools/ToolPaint.py:840 flatcamTools/ToolPaint.py:995 +#: flatcamTools/ToolPaint.py:844 flatcamTools/ToolPaint.py:999 #: flatcamTools/ToolPanelize.py:385 flatcamTools/ToolPanelize.py:397 #: flatcamTools/ToolPanelize.py:410 flatcamTools/ToolPanelize.py:423 #: flatcamTools/ToolPanelize.py:435 flatcamTools/ToolPanelize.py:446 @@ -1164,8 +1164,8 @@ msgstr "" msgid "Generating CNC Code" msgstr "" -#: FlatCAMObj.py:2674 FlatCAMObj.py:5021 camlib.py:5165 camlib.py:5624 -#: camlib.py:5887 +#: FlatCAMObj.py:2674 FlatCAMObj.py:5021 camlib.py:5166 camlib.py:5625 +#: camlib.py:5888 msgid "" "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the " "format (x, y) \n" @@ -1184,8 +1184,8 @@ msgstr "" msgid "Finish" msgstr "" -#: FlatCAMObj.py:3300 flatcamGUI/FlatCAMGUI.py:531 flatcamGUI/FlatCAMGUI.py:724 -#: flatcamGUI/FlatCAMGUI.py:1615 flatcamGUI/FlatCAMGUI.py:1946 +#: FlatCAMObj.py:3300 flatcamGUI/FlatCAMGUI.py:531 flatcamGUI/FlatCAMGUI.py:727 +#: flatcamGUI/FlatCAMGUI.py:1618 flatcamGUI/FlatCAMGUI.py:1953 #: flatcamGUI/ObjectUI.py:999 msgid "Copy" msgstr "" @@ -1409,7 +1409,7 @@ msgstr "" msgid "[ERROR_NOTCL] This is GCODE mark: %s" msgstr "" -#: camlib.py:3989 +#: camlib.py:3990 #, python-format msgid "" "[WARNING] No tool diameter info's. See shell.\n" @@ -1420,26 +1420,26 @@ msgid "" "diameters to reflect the real diameters." msgstr "" -#: camlib.py:4454 +#: camlib.py:4455 #, python-brace-format msgid "" "[ERROR] Excellon Parser error.\n" "Parsing Failed. Line {l_nr}: {line}\n" msgstr "" -#: camlib.py:4531 +#: camlib.py:4532 msgid "" "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of " "not having a tool associated.\n" "Check the resulting GCode." msgstr "" -#: camlib.py:5074 +#: camlib.py:5075 #, python-format msgid "[ERROR] There is no such parameter: %s" msgstr "" -#: camlib.py:5144 +#: camlib.py:5145 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "drill into material.\n" @@ -1448,27 +1448,27 @@ msgid "" "CNC code (Gcode etc)." msgstr "" -#: camlib.py:5151 camlib.py:5647 camlib.py:5910 +#: camlib.py:5152 camlib.py:5648 camlib.py:5911 #, python-format msgid "" "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file" msgstr "" -#: camlib.py:5380 camlib.py:5477 camlib.py:5535 +#: camlib.py:5381 camlib.py:5478 camlib.py:5536 msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..." msgstr "" -#: camlib.py:5482 +#: camlib.py:5483 msgid "[ERROR_NOTCL] Wrong optimization type selected." msgstr "" -#: camlib.py:5635 camlib.py:5898 +#: camlib.py:5636 camlib.py:5899 msgid "" "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad " "combinations of other parameters." msgstr "" -#: camlib.py:5640 camlib.py:5903 +#: camlib.py:5641 camlib.py:5904 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "cut into material.\n" @@ -1477,11 +1477,11 @@ msgid "" "code (Gcode etc)." msgstr "" -#: camlib.py:5652 camlib.py:5915 +#: camlib.py:5653 camlib.py:5916 msgid "[ERROR_NOTCL] Travel Z parameter is None or zero." msgstr "" -#: camlib.py:5656 camlib.py:5919 +#: camlib.py:5657 camlib.py:5920 msgid "" "[WARNING] The Travel Z parameter has negative value. It is the height value " "to travel between cuts.\n" @@ -1490,31 +1490,31 @@ msgid "" "code (Gcode etc)." msgstr "" -#: camlib.py:5663 camlib.py:5926 +#: camlib.py:5664 camlib.py:5927 #, python-format msgid "" "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file" msgstr "" -#: camlib.py:5793 +#: camlib.py:5794 #, python-format msgid "[ERROR]Expected a Geometry, got %s" msgstr "" -#: camlib.py:5799 +#: camlib.py:5800 msgid "" "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without " "solid_geometry." msgstr "" -#: camlib.py:5838 +#: camlib.py:5839 msgid "" "[ERROR_NOTCL] The Tool Offset value is too negative to use for the " "current_geometry.\n" "Raise the value (in module) and try again." msgstr "" -#: camlib.py:6052 +#: camlib.py:6053 msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry." msgstr "" @@ -1526,8 +1526,8 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:447 #: flatcamEditors/FlatCAMExcEditor.py:472 #: flatcamEditors/FlatCAMGrbEditor.py:451 -#: flatcamEditors/FlatCAMGrbEditor.py:1759 -#: flatcamEditors/FlatCAMGrbEditor.py:1787 +#: flatcamEditors/FlatCAMGrbEditor.py:1762 +#: flatcamEditors/FlatCAMGrbEditor.py:1790 msgid "Click on target location ..." msgstr "" @@ -1581,7 +1581,7 @@ msgid "[WARNING_NOTCL] Cancelled. No drills selected for resize ..." msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:449 -#: flatcamEditors/FlatCAMGrbEditor.py:1761 +#: flatcamEditors/FlatCAMGrbEditor.py:1764 msgid "Click on reference location ..." msgstr "" @@ -1598,7 +1598,7 @@ msgid "Excellon Editor" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:765 -#: flatcamEditors/FlatCAMGrbEditor.py:2108 +#: flatcamEditors/FlatCAMGrbEditor.py:2250 msgid "Name:" msgstr "" @@ -1675,7 +1675,7 @@ msgstr "" msgid "Resize drill(s)" msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:889 flatcamGUI/FlatCAMGUI.py:1612 +#: flatcamEditors/FlatCAMExcEditor.py:889 flatcamGUI/FlatCAMGUI.py:1615 msgid "Add Drill Array" msgstr "" @@ -1690,12 +1690,12 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:900 -#: flatcamEditors/FlatCAMGrbEditor.py:2341 +#: flatcamEditors/FlatCAMGrbEditor.py:2483 msgid "Linear" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:901 -#: flatcamEditors/FlatCAMGrbEditor.py:2342 +#: flatcamEditors/FlatCAMGrbEditor.py:2484 msgid "Circular" msgstr "" @@ -1709,13 +1709,13 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:927 #: flatcamEditors/FlatCAMExcEditor.py:972 -#: flatcamEditors/FlatCAMGrbEditor.py:2368 -#: flatcamEditors/FlatCAMGrbEditor.py:2413 +#: flatcamEditors/FlatCAMGrbEditor.py:2510 +#: flatcamEditors/FlatCAMGrbEditor.py:2555 msgid "Direction:" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:929 -#: flatcamEditors/FlatCAMGrbEditor.py:2370 +#: flatcamEditors/FlatCAMGrbEditor.py:2512 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -1724,26 +1724,26 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:942 -#: flatcamEditors/FlatCAMGrbEditor.py:2383 +#: flatcamEditors/FlatCAMGrbEditor.py:2525 msgid "Pitch:" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:944 -#: flatcamEditors/FlatCAMGrbEditor.py:2385 +#: flatcamEditors/FlatCAMGrbEditor.py:2527 msgid "Pitch = Distance between elements of the array." msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:951 #: flatcamEditors/FlatCAMExcEditor.py:987 -#: flatcamEditors/FlatCAMGeoEditor.py:666 -#: flatcamEditors/FlatCAMGrbEditor.py:2392 -#: flatcamEditors/FlatCAMGrbEditor.py:2428 -#: flatcamEditors/FlatCAMGrbEditor.py:4414 flatcamTools/ToolTransform.py:68 +#: flatcamEditors/FlatCAMGeoEditor.py:665 +#: flatcamEditors/FlatCAMGrbEditor.py:2534 +#: flatcamEditors/FlatCAMGrbEditor.py:2570 +#: flatcamEditors/FlatCAMGrbEditor.py:4558 flatcamTools/ToolTransform.py:68 msgid "Angle:" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:953 -#: flatcamEditors/FlatCAMGrbEditor.py:2394 +#: flatcamEditors/FlatCAMGrbEditor.py:2536 msgid "" "Angle at which the linear array is placed.\n" "The precision is of max 2 decimals.\n" @@ -1752,14 +1752,14 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:974 -#: flatcamEditors/FlatCAMGrbEditor.py:2415 +#: flatcamEditors/FlatCAMGrbEditor.py:2557 msgid "" "Direction for circular array.Can be CW = clockwise or CCW = counter " "clockwise." msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:989 -#: flatcamEditors/FlatCAMGrbEditor.py:2430 +#: flatcamEditors/FlatCAMGrbEditor.py:2572 msgid "Angle at which each element in circular array is placed." msgstr "" @@ -1769,7 +1769,7 @@ msgid "" "Save and reedit Excellon if you need to add this tool. " msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1461 flatcamGUI/FlatCAMGUI.py:2995 +#: flatcamEditors/FlatCAMExcEditor.py:1461 flatcamGUI/FlatCAMGUI.py:3002 #, python-brace-format msgid "[success] Added new tool with dia: {dia} {units}" msgstr "" @@ -1806,17 +1806,17 @@ msgid "[success] Done. Drill(s) deleted." msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:2675 -#: flatcamEditors/FlatCAMGrbEditor.py:4174 +#: flatcamEditors/FlatCAMGrbEditor.py:4318 msgid "Click on the circular array Center position" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:80 -#: flatcamEditors/FlatCAMGrbEditor.py:2258 +#: flatcamEditors/FlatCAMGrbEditor.py:2400 msgid "Buffer distance:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:81 -#: flatcamEditors/FlatCAMGrbEditor.py:2259 +#: flatcamEditors/FlatCAMGrbEditor.py:2401 msgid "Buffer corner:" msgstr "" @@ -1830,17 +1830,17 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:89 -#: flatcamEditors/FlatCAMGrbEditor.py:2267 +#: flatcamEditors/FlatCAMGrbEditor.py:2409 msgid "Round" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:90 -#: flatcamEditors/FlatCAMGrbEditor.py:2268 +#: flatcamEditors/FlatCAMGrbEditor.py:2410 msgid "Square" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:91 -#: flatcamEditors/FlatCAMGrbEditor.py:2269 +#: flatcamEditors/FlatCAMGrbEditor.py:2411 msgid "Beveled" msgstr "" @@ -1857,17 +1857,17 @@ msgid "Full Buffer" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:127 -#: flatcamEditors/FlatCAMGeoEditor.py:2696 +#: flatcamEditors/FlatCAMGeoEditor.py:2682 msgid "Buffer Tool" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:138 #: flatcamEditors/FlatCAMGeoEditor.py:155 #: flatcamEditors/FlatCAMGeoEditor.py:172 -#: flatcamEditors/FlatCAMGeoEditor.py:2714 -#: flatcamEditors/FlatCAMGeoEditor.py:2740 -#: flatcamEditors/FlatCAMGeoEditor.py:2766 -#: flatcamEditors/FlatCAMGrbEditor.py:4226 +#: flatcamEditors/FlatCAMGeoEditor.py:2700 +#: flatcamEditors/FlatCAMGeoEditor.py:2726 +#: flatcamEditors/FlatCAMGeoEditor.py:2752 +#: flatcamEditors/FlatCAMGrbEditor.py:4370 msgid "" "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and " "retry." @@ -1877,24 +1877,24 @@ msgstr "" msgid "Text Tool" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:401 flatcamGUI/FlatCAMGUI.py:805 +#: flatcamEditors/FlatCAMGeoEditor.py:401 flatcamGUI/FlatCAMGUI.py:808 msgid "Tool" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:4051 -#: flatcamGUI/FlatCAMGUI.py:5448 flatcamGUI/FlatCAMGUI.py:5724 -#: flatcamGUI/FlatCAMGUI.py:5864 flatcamGUI/ObjectUI.py:260 +#: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:4058 +#: flatcamGUI/FlatCAMGUI.py:5455 flatcamGUI/FlatCAMGUI.py:5731 +#: flatcamGUI/FlatCAMGUI.py:5871 flatcamGUI/ObjectUI.py:260 msgid "Tool dia:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:5866 +#: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:5873 msgid "" "Diameter of the tool to\n" "be used in the operation." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:443 flatcamGUI/FlatCAMGUI.py:5630 -#: flatcamGUI/FlatCAMGUI.py:5875 flatcamTools/ToolNonCopperClear.py:165 +#: flatcamEditors/FlatCAMGeoEditor.py:443 flatcamGUI/FlatCAMGUI.py:5637 +#: flatcamGUI/FlatCAMGUI.py:5882 flatcamTools/ToolNonCopperClear.py:165 #: flatcamTools/ToolPaint.py:160 msgid "Overlap Rate:" msgstr "" @@ -1914,14 +1914,14 @@ msgid "" "due of too many paths." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5646 -#: flatcamGUI/FlatCAMGUI.py:5732 flatcamGUI/FlatCAMGUI.py:5885 +#: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5653 +#: flatcamGUI/FlatCAMGUI.py:5739 flatcamGUI/FlatCAMGUI.py:5892 #: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:181 #: flatcamTools/ToolPaint.py:177 msgid "Margin:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:5887 +#: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:5894 #: flatcamTools/ToolPaint.py:179 msgid "" "Distance by which to avoid\n" @@ -1929,61 +1929,61 @@ msgid "" "be painted." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5655 -#: flatcamGUI/FlatCAMGUI.py:5896 flatcamTools/ToolNonCopperClear.py:190 +#: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5662 +#: flatcamGUI/FlatCAMGUI.py:5903 flatcamTools/ToolNonCopperClear.py:190 #: flatcamTools/ToolPaint.py:188 msgid "Method:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:5898 +#: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:5905 msgid "" "Algorithm to paint the polygon:
Standard: Fixed step inwards." "
Seed-based: Outwards from seed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5671 -#: flatcamGUI/FlatCAMGUI.py:5911 flatcamTools/ToolNonCopperClear.py:206 +#: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5678 +#: flatcamGUI/FlatCAMGUI.py:5918 flatcamTools/ToolNonCopperClear.py:206 #: flatcamTools/ToolPaint.py:204 msgid "Connect:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/FlatCAMGUI.py:5673 -#: flatcamGUI/FlatCAMGUI.py:5913 flatcamTools/ToolNonCopperClear.py:208 +#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/FlatCAMGUI.py:5680 +#: flatcamGUI/FlatCAMGUI.py:5920 flatcamTools/ToolNonCopperClear.py:208 #: flatcamTools/ToolPaint.py:206 msgid "" "Draw lines between resulting\n" "segments to minimize tool lifts." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5680 -#: flatcamGUI/FlatCAMGUI.py:5921 flatcamTools/ToolNonCopperClear.py:215 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5687 +#: flatcamGUI/FlatCAMGUI.py:5928 flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolPaint.py:213 msgid "Contour:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/FlatCAMGUI.py:5682 -#: flatcamGUI/FlatCAMGUI.py:5923 flatcamTools/ToolNonCopperClear.py:217 +#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/FlatCAMGUI.py:5689 +#: flatcamGUI/FlatCAMGUI.py:5930 flatcamTools/ToolNonCopperClear.py:217 #: flatcamTools/ToolPaint.py:215 msgid "" "Cut around the perimeter of the polygon\n" "to trim rough edges." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:510 +#: flatcamEditors/FlatCAMGeoEditor.py:509 msgid "Paint" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:528 flatcamGUI/FlatCAMGUI.py:648 -#: flatcamGUI/FlatCAMGUI.py:1865 flatcamGUI/ObjectUI.py:1314 +#: flatcamEditors/FlatCAMGeoEditor.py:527 flatcamGUI/FlatCAMGUI.py:648 +#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/ObjectUI.py:1314 #: flatcamTools/ToolPaint.py:341 msgid "Paint Tool" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:564 +#: flatcamEditors/FlatCAMGeoEditor.py:563 msgid "[WARNING_NOTCL] Paint cancelled. No shape selected." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:575 flatcamTools/ToolCutOut.py:355 +#: flatcamEditors/FlatCAMGeoEditor.py:574 flatcamTools/ToolCutOut.py:355 #: flatcamTools/ToolCutOut.py:512 flatcamTools/ToolCutOut.py:651 #: flatcamTools/ToolCutOut.py:756 flatcamTools/ToolDblSided.py:363 msgid "" @@ -1991,74 +1991,74 @@ msgid "" "retry." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:586 +#: flatcamEditors/FlatCAMGeoEditor.py:585 msgid "" "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:598 +#: flatcamEditors/FlatCAMGeoEditor.py:597 msgid "" "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and " "retry." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:607 -#: flatcamEditors/FlatCAMGeoEditor.py:2721 -#: flatcamEditors/FlatCAMGeoEditor.py:2747 -#: flatcamEditors/FlatCAMGeoEditor.py:2773 +#: flatcamEditors/FlatCAMGeoEditor.py:606 +#: flatcamEditors/FlatCAMGeoEditor.py:2707 +#: flatcamEditors/FlatCAMGeoEditor.py:2733 +#: flatcamEditors/FlatCAMGeoEditor.py:2759 #: flatcamTools/ToolNonCopperClear.py:813 flatcamTools/ToolProperties.py:104 msgid "Tools" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:618 -#: flatcamEditors/FlatCAMGeoEditor.py:991 -#: flatcamEditors/FlatCAMGrbEditor.py:4365 -#: flatcamEditors/FlatCAMGrbEditor.py:4750 flatcamGUI/FlatCAMGUI.py:659 -#: flatcamGUI/FlatCAMGUI.py:1878 flatcamTools/ToolTransform.py:398 +#: flatcamEditors/FlatCAMGeoEditor.py:617 +#: flatcamEditors/FlatCAMGeoEditor.py:990 +#: flatcamEditors/FlatCAMGrbEditor.py:4509 +#: flatcamEditors/FlatCAMGrbEditor.py:4894 flatcamGUI/FlatCAMGUI.py:659 +#: flatcamGUI/FlatCAMGUI.py:1881 flatcamTools/ToolTransform.py:398 msgid "Transform Tool" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:619 -#: flatcamEditors/FlatCAMGeoEditor.py:680 -#: flatcamEditors/FlatCAMGrbEditor.py:4366 -#: flatcamEditors/FlatCAMGrbEditor.py:4428 flatcamTools/ToolTransform.py:24 +#: flatcamEditors/FlatCAMGeoEditor.py:618 +#: flatcamEditors/FlatCAMGeoEditor.py:679 +#: flatcamEditors/FlatCAMGrbEditor.py:4510 +#: flatcamEditors/FlatCAMGrbEditor.py:4572 flatcamTools/ToolTransform.py:24 #: flatcamTools/ToolTransform.py:82 msgid "Rotate" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:620 -#: flatcamEditors/FlatCAMGrbEditor.py:4367 flatcamTools/ToolTransform.py:25 +#: flatcamEditors/FlatCAMGeoEditor.py:619 +#: flatcamEditors/FlatCAMGrbEditor.py:4511 flatcamTools/ToolTransform.py:25 msgid "Skew/Shear" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:621 -#: flatcamEditors/FlatCAMGrbEditor.py:2313 -#: flatcamEditors/FlatCAMGrbEditor.py:4368 flatcamGUI/FlatCAMGUI.py:722 -#: flatcamGUI/FlatCAMGUI.py:1944 flatcamGUI/ObjectUI.py:100 +#: flatcamEditors/FlatCAMGeoEditor.py:620 +#: flatcamEditors/FlatCAMGrbEditor.py:2455 +#: flatcamEditors/FlatCAMGrbEditor.py:4512 flatcamGUI/FlatCAMGUI.py:723 +#: flatcamGUI/FlatCAMGUI.py:1949 flatcamGUI/ObjectUI.py:100 #: flatcamTools/ToolTransform.py:26 msgid "Scale" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:622 -#: flatcamEditors/FlatCAMGrbEditor.py:4369 flatcamTools/ToolTransform.py:27 +#: flatcamEditors/FlatCAMGeoEditor.py:621 +#: flatcamEditors/FlatCAMGrbEditor.py:4513 flatcamTools/ToolTransform.py:27 msgid "Mirror (Flip)" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:623 -#: flatcamEditors/FlatCAMGrbEditor.py:4370 flatcamGUI/ObjectUI.py:127 +#: flatcamEditors/FlatCAMGeoEditor.py:622 +#: flatcamEditors/FlatCAMGrbEditor.py:4514 flatcamGUI/ObjectUI.py:127 #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1452 #: flatcamTools/ToolTransform.py:28 msgid "Offset" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:634 -#: flatcamEditors/FlatCAMGrbEditor.py:4382 +#: flatcamEditors/FlatCAMGeoEditor.py:633 +#: flatcamEditors/FlatCAMGrbEditor.py:4526 #, python-format msgid "Editor %s" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:668 -#: flatcamEditors/FlatCAMGrbEditor.py:4416 flatcamTools/ToolTransform.py:70 +#: flatcamEditors/FlatCAMGeoEditor.py:667 +#: flatcamEditors/FlatCAMGrbEditor.py:4560 flatcamTools/ToolTransform.py:70 msgid "" "Angle for Rotation action, in degrees.\n" "Float number between -360 and 359.\n" @@ -2066,115 +2066,115 @@ msgid "" "Negative numbers for CCW motion." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:682 -#: flatcamEditors/FlatCAMGrbEditor.py:4430 +#: flatcamEditors/FlatCAMGeoEditor.py:681 +#: flatcamEditors/FlatCAMGrbEditor.py:4574 msgid "" "Rotate the selected shape(s).\n" "The point of reference is the middle of\n" "the bounding box for all selected shapes." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:705 -#: flatcamEditors/FlatCAMGrbEditor.py:4453 flatcamTools/ToolTransform.py:107 +#: flatcamEditors/FlatCAMGeoEditor.py:704 +#: flatcamEditors/FlatCAMGrbEditor.py:4597 flatcamTools/ToolTransform.py:107 msgid "Angle X:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:707 -#: flatcamEditors/FlatCAMGeoEditor.py:725 -#: flatcamEditors/FlatCAMGrbEditor.py:4455 -#: flatcamEditors/FlatCAMGrbEditor.py:4473 flatcamTools/ToolTransform.py:109 +#: flatcamEditors/FlatCAMGeoEditor.py:706 +#: flatcamEditors/FlatCAMGeoEditor.py:724 +#: flatcamEditors/FlatCAMGrbEditor.py:4599 +#: flatcamEditors/FlatCAMGrbEditor.py:4617 flatcamTools/ToolTransform.py:109 #: flatcamTools/ToolTransform.py:127 msgid "" "Angle for Skew action, in degrees.\n" "Float number between -360 and 359." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:716 -#: flatcamEditors/FlatCAMGrbEditor.py:4464 flatcamTools/ToolTransform.py:118 +#: flatcamEditors/FlatCAMGeoEditor.py:715 +#: flatcamEditors/FlatCAMGrbEditor.py:4608 flatcamTools/ToolTransform.py:118 msgid "Skew X" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:718 -#: flatcamEditors/FlatCAMGeoEditor.py:736 -#: flatcamEditors/FlatCAMGrbEditor.py:4466 -#: flatcamEditors/FlatCAMGrbEditor.py:4484 +#: flatcamEditors/FlatCAMGeoEditor.py:717 +#: flatcamEditors/FlatCAMGeoEditor.py:735 +#: flatcamEditors/FlatCAMGrbEditor.py:4610 +#: flatcamEditors/FlatCAMGrbEditor.py:4628 msgid "" "Skew/shear the selected shape(s).\n" "The point of reference is the middle of\n" "the bounding box for all selected shapes." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:723 -#: flatcamEditors/FlatCAMGrbEditor.py:4471 flatcamTools/ToolTransform.py:125 +#: flatcamEditors/FlatCAMGeoEditor.py:722 +#: flatcamEditors/FlatCAMGrbEditor.py:4615 flatcamTools/ToolTransform.py:125 msgid "Angle Y:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:734 -#: flatcamEditors/FlatCAMGrbEditor.py:4482 flatcamTools/ToolTransform.py:136 +#: flatcamEditors/FlatCAMGeoEditor.py:733 +#: flatcamEditors/FlatCAMGrbEditor.py:4626 flatcamTools/ToolTransform.py:136 msgid "Skew Y" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:762 -#: flatcamEditors/FlatCAMGrbEditor.py:4510 flatcamTools/ToolTransform.py:164 +#: flatcamEditors/FlatCAMGeoEditor.py:761 +#: flatcamEditors/FlatCAMGrbEditor.py:4654 flatcamTools/ToolTransform.py:164 msgid "Factor X:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:764 -#: flatcamEditors/FlatCAMGrbEditor.py:4512 flatcamTools/ToolTransform.py:166 +#: flatcamEditors/FlatCAMGeoEditor.py:763 +#: flatcamEditors/FlatCAMGrbEditor.py:4656 flatcamTools/ToolTransform.py:166 msgid "Factor for Scale action over X axis." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:772 -#: flatcamEditors/FlatCAMGrbEditor.py:4520 flatcamTools/ToolTransform.py:174 +#: flatcamEditors/FlatCAMGeoEditor.py:771 +#: flatcamEditors/FlatCAMGrbEditor.py:4664 flatcamTools/ToolTransform.py:174 msgid "Scale X" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:774 -#: flatcamEditors/FlatCAMGeoEditor.py:791 -#: flatcamEditors/FlatCAMGrbEditor.py:4522 -#: flatcamEditors/FlatCAMGrbEditor.py:4539 +#: flatcamEditors/FlatCAMGeoEditor.py:773 +#: flatcamEditors/FlatCAMGeoEditor.py:790 +#: flatcamEditors/FlatCAMGrbEditor.py:4666 +#: flatcamEditors/FlatCAMGrbEditor.py:4683 msgid "" "Scale the selected shape(s).\n" "The point of reference depends on \n" "the Scale reference checkbox state." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:779 -#: flatcamEditors/FlatCAMGrbEditor.py:4527 flatcamTools/ToolTransform.py:181 +#: flatcamEditors/FlatCAMGeoEditor.py:778 +#: flatcamEditors/FlatCAMGrbEditor.py:4671 flatcamTools/ToolTransform.py:181 msgid "Factor Y:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:781 -#: flatcamEditors/FlatCAMGrbEditor.py:4529 flatcamTools/ToolTransform.py:183 +#: flatcamEditors/FlatCAMGeoEditor.py:780 +#: flatcamEditors/FlatCAMGrbEditor.py:4673 flatcamTools/ToolTransform.py:183 msgid "Factor for Scale action over Y axis." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:789 -#: flatcamEditors/FlatCAMGrbEditor.py:4537 flatcamTools/ToolTransform.py:191 +#: flatcamEditors/FlatCAMGeoEditor.py:788 +#: flatcamEditors/FlatCAMGrbEditor.py:4681 flatcamTools/ToolTransform.py:191 msgid "Scale Y" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:798 -#: flatcamEditors/FlatCAMGrbEditor.py:4546 flatcamGUI/FlatCAMGUI.py:6270 +#: flatcamEditors/FlatCAMGeoEditor.py:797 +#: flatcamEditors/FlatCAMGrbEditor.py:4690 flatcamGUI/FlatCAMGUI.py:6277 #: flatcamTools/ToolTransform.py:200 msgid "Link" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:800 -#: flatcamEditors/FlatCAMGrbEditor.py:4548 +#: flatcamEditors/FlatCAMGeoEditor.py:799 +#: flatcamEditors/FlatCAMGrbEditor.py:4692 msgid "" "Scale the selected shape(s)\n" "using the Scale Factor X for both axis." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:806 -#: flatcamEditors/FlatCAMGrbEditor.py:4554 flatcamGUI/FlatCAMGUI.py:6278 +#: flatcamEditors/FlatCAMGeoEditor.py:805 +#: flatcamEditors/FlatCAMGrbEditor.py:4698 flatcamGUI/FlatCAMGUI.py:6285 #: flatcamTools/ToolTransform.py:208 msgid "Scale Reference" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:808 -#: flatcamEditors/FlatCAMGrbEditor.py:4556 +#: flatcamEditors/FlatCAMGeoEditor.py:807 +#: flatcamEditors/FlatCAMGrbEditor.py:4700 msgid "" "Scale the selected shape(s)\n" "using the origin reference when checked,\n" @@ -2182,72 +2182,72 @@ msgid "" "of the selected shapes when unchecked." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:836 -#: flatcamEditors/FlatCAMGrbEditor.py:4585 flatcamTools/ToolTransform.py:238 +#: flatcamEditors/FlatCAMGeoEditor.py:835 +#: flatcamEditors/FlatCAMGrbEditor.py:4729 flatcamTools/ToolTransform.py:238 msgid "Value X:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:838 -#: flatcamEditors/FlatCAMGrbEditor.py:4587 flatcamTools/ToolTransform.py:240 +#: flatcamEditors/FlatCAMGeoEditor.py:837 +#: flatcamEditors/FlatCAMGrbEditor.py:4731 flatcamTools/ToolTransform.py:240 msgid "Value for Offset action on X axis." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:846 -#: flatcamEditors/FlatCAMGrbEditor.py:4595 flatcamTools/ToolTransform.py:248 +#: flatcamEditors/FlatCAMGeoEditor.py:845 +#: flatcamEditors/FlatCAMGrbEditor.py:4739 flatcamTools/ToolTransform.py:248 msgid "Offset X" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:848 -#: flatcamEditors/FlatCAMGeoEditor.py:866 -#: flatcamEditors/FlatCAMGrbEditor.py:4597 -#: flatcamEditors/FlatCAMGrbEditor.py:4615 +#: flatcamEditors/FlatCAMGeoEditor.py:847 +#: flatcamEditors/FlatCAMGeoEditor.py:865 +#: flatcamEditors/FlatCAMGrbEditor.py:4741 +#: flatcamEditors/FlatCAMGrbEditor.py:4759 msgid "" "Offset the selected shape(s).\n" "The point of reference is the middle of\n" "the bounding box for all selected shapes.\n" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:854 -#: flatcamEditors/FlatCAMGrbEditor.py:4603 flatcamTools/ToolTransform.py:255 +#: flatcamEditors/FlatCAMGeoEditor.py:853 +#: flatcamEditors/FlatCAMGrbEditor.py:4747 flatcamTools/ToolTransform.py:255 msgid "Value Y:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:856 -#: flatcamEditors/FlatCAMGrbEditor.py:4605 flatcamTools/ToolTransform.py:257 +#: flatcamEditors/FlatCAMGeoEditor.py:855 +#: flatcamEditors/FlatCAMGrbEditor.py:4749 flatcamTools/ToolTransform.py:257 msgid "Value for Offset action on Y axis." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:864 -#: flatcamEditors/FlatCAMGrbEditor.py:4613 flatcamTools/ToolTransform.py:265 +#: flatcamEditors/FlatCAMGeoEditor.py:863 +#: flatcamEditors/FlatCAMGrbEditor.py:4757 flatcamTools/ToolTransform.py:265 msgid "Offset Y" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:895 -#: flatcamEditors/FlatCAMGrbEditor.py:4644 flatcamTools/ToolTransform.py:295 +#: flatcamEditors/FlatCAMGeoEditor.py:894 +#: flatcamEditors/FlatCAMGrbEditor.py:4788 flatcamTools/ToolTransform.py:295 msgid "Flip on X" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:897 -#: flatcamEditors/FlatCAMGeoEditor.py:905 -#: flatcamEditors/FlatCAMGrbEditor.py:4646 -#: flatcamEditors/FlatCAMGrbEditor.py:4654 +#: flatcamEditors/FlatCAMGeoEditor.py:896 +#: flatcamEditors/FlatCAMGeoEditor.py:904 +#: flatcamEditors/FlatCAMGrbEditor.py:4790 +#: flatcamEditors/FlatCAMGrbEditor.py:4798 msgid "" "Flip the selected shape(s) over the X axis.\n" "Does not create a new shape." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:903 -#: flatcamEditors/FlatCAMGrbEditor.py:4652 flatcamTools/ToolTransform.py:303 +#: flatcamEditors/FlatCAMGeoEditor.py:902 +#: flatcamEditors/FlatCAMGrbEditor.py:4796 flatcamTools/ToolTransform.py:303 msgid "Flip on Y" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:912 -#: flatcamEditors/FlatCAMGrbEditor.py:4661 flatcamTools/ToolTransform.py:312 +#: flatcamEditors/FlatCAMGeoEditor.py:911 +#: flatcamEditors/FlatCAMGrbEditor.py:4805 flatcamTools/ToolTransform.py:312 msgid "Ref Pt" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:914 -#: flatcamEditors/FlatCAMGrbEditor.py:4663 +#: flatcamEditors/FlatCAMGeoEditor.py:913 +#: flatcamEditors/FlatCAMGrbEditor.py:4807 msgid "" "Flip the selected shape(s)\n" "around the point in Point Entry Field.\n" @@ -2260,509 +2260,531 @@ msgid "" "Point Entry field and click Flip on X(Y)" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:926 -#: flatcamEditors/FlatCAMGrbEditor.py:4675 flatcamTools/ToolTransform.py:325 +#: flatcamEditors/FlatCAMGeoEditor.py:925 +#: flatcamEditors/FlatCAMGrbEditor.py:4819 flatcamTools/ToolTransform.py:325 msgid "Point:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:928 -#: flatcamEditors/FlatCAMGrbEditor.py:4677 +#: flatcamEditors/FlatCAMGeoEditor.py:927 +#: flatcamEditors/FlatCAMGrbEditor.py:4821 msgid "" "Coordinates in format (x, y) used as reference for mirroring.\n" "The 'x' in (x, y) will be used when using Flip on X and\n" "the 'y' in (x, y) will be used when using Flip on Y." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:940 -#: flatcamEditors/FlatCAMGrbEditor.py:4689 flatcamTools/ToolTransform.py:339 +#: flatcamEditors/FlatCAMGeoEditor.py:939 +#: flatcamEditors/FlatCAMGrbEditor.py:4833 flatcamTools/ToolTransform.py:339 msgid "" "The point coordinates can be captured by\n" "left click on canvas together with pressing\n" "SHIFT key. Then click Add button to insert." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1055 -#: flatcamEditors/FlatCAMGrbEditor.py:4814 +#: flatcamEditors/FlatCAMGeoEditor.py:1054 +#: flatcamEditors/FlatCAMGrbEditor.py:4958 msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1076 -#: flatcamEditors/FlatCAMGrbEditor.py:4834 flatcamTools/ToolTransform.py:468 +#: flatcamEditors/FlatCAMGeoEditor.py:1075 +#: flatcamEditors/FlatCAMGrbEditor.py:4978 flatcamTools/ToolTransform.py:468 msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1113 -#: flatcamEditors/FlatCAMGrbEditor.py:4877 flatcamTools/ToolTransform.py:502 +#: flatcamEditors/FlatCAMGeoEditor.py:1112 +#: flatcamEditors/FlatCAMGrbEditor.py:5021 flatcamTools/ToolTransform.py:502 msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1134 -#: flatcamEditors/FlatCAMGrbEditor.py:4904 flatcamTools/ToolTransform.py:520 +#: flatcamEditors/FlatCAMGeoEditor.py:1133 +#: flatcamEditors/FlatCAMGrbEditor.py:5048 flatcamTools/ToolTransform.py:520 msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1155 -#: flatcamEditors/FlatCAMGrbEditor.py:4931 flatcamTools/ToolTransform.py:538 +#: flatcamEditors/FlatCAMGeoEditor.py:1154 +#: flatcamEditors/FlatCAMGrbEditor.py:5075 flatcamTools/ToolTransform.py:538 msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1192 -#: flatcamEditors/FlatCAMGrbEditor.py:4972 flatcamTools/ToolTransform.py:572 +#: flatcamEditors/FlatCAMGeoEditor.py:1191 +#: flatcamEditors/FlatCAMGrbEditor.py:5116 flatcamTools/ToolTransform.py:572 msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1224 -#: flatcamEditors/FlatCAMGrbEditor.py:5010 flatcamTools/ToolTransform.py:601 +#: flatcamEditors/FlatCAMGeoEditor.py:1223 +#: flatcamEditors/FlatCAMGrbEditor.py:5154 flatcamTools/ToolTransform.py:601 msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1245 -#: flatcamEditors/FlatCAMGrbEditor.py:5036 flatcamTools/ToolTransform.py:619 +#: flatcamEditors/FlatCAMGeoEditor.py:1244 +#: flatcamEditors/FlatCAMGrbEditor.py:5180 flatcamTools/ToolTransform.py:619 msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1263 -#: flatcamEditors/FlatCAMGrbEditor.py:5059 +#: flatcamEditors/FlatCAMGeoEditor.py:1262 +#: flatcamEditors/FlatCAMGrbEditor.py:5203 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1266 -#: flatcamEditors/FlatCAMGrbEditor.py:5062 flatcamTools/ToolTransform.py:640 +#: flatcamEditors/FlatCAMGeoEditor.py:1265 +#: flatcamEditors/FlatCAMGrbEditor.py:5206 flatcamTools/ToolTransform.py:640 msgid "Appying Rotate" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1294 -#: flatcamEditors/FlatCAMGrbEditor.py:5093 +#: flatcamEditors/FlatCAMGeoEditor.py:1293 +#: flatcamEditors/FlatCAMGrbEditor.py:5237 msgid "[success] Done. Rotate completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1310 -#: flatcamEditors/FlatCAMGrbEditor.py:5112 +#: flatcamEditors/FlatCAMGeoEditor.py:1309 +#: flatcamEditors/FlatCAMGrbEditor.py:5256 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1313 -#: flatcamEditors/FlatCAMGrbEditor.py:5115 flatcamTools/ToolTransform.py:691 +#: flatcamEditors/FlatCAMGeoEditor.py:1312 +#: flatcamEditors/FlatCAMGrbEditor.py:5259 flatcamTools/ToolTransform.py:691 msgid "Applying Flip" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1343 -#: flatcamEditors/FlatCAMGrbEditor.py:5152 flatcamTools/ToolTransform.py:733 +#: flatcamEditors/FlatCAMGeoEditor.py:1342 +#: flatcamEditors/FlatCAMGrbEditor.py:5296 flatcamTools/ToolTransform.py:733 msgid "[success] Flip on the Y axis done ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1346 -#: flatcamEditors/FlatCAMGrbEditor.py:5160 flatcamTools/ToolTransform.py:742 +#: flatcamEditors/FlatCAMGeoEditor.py:1345 +#: flatcamEditors/FlatCAMGrbEditor.py:5304 flatcamTools/ToolTransform.py:742 msgid "[success] Flip on the X axis done ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1365 -#: flatcamEditors/FlatCAMGrbEditor.py:5180 +#: flatcamEditors/FlatCAMGeoEditor.py:1364 +#: flatcamEditors/FlatCAMGrbEditor.py:5324 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1368 -#: flatcamEditors/FlatCAMGrbEditor.py:5183 flatcamTools/ToolTransform.py:760 +#: flatcamEditors/FlatCAMGeoEditor.py:1367 +#: flatcamEditors/FlatCAMGrbEditor.py:5327 flatcamTools/ToolTransform.py:760 msgid "Applying Skew" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1393 -#: flatcamEditors/FlatCAMGrbEditor.py:5216 flatcamTools/ToolTransform.py:791 +#: flatcamEditors/FlatCAMGeoEditor.py:1392 +#: flatcamEditors/FlatCAMGrbEditor.py:5360 flatcamTools/ToolTransform.py:791 #, python-format msgid "[success] Skew on the %s axis done ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1397 -#: flatcamEditors/FlatCAMGrbEditor.py:5220 flatcamTools/ToolTransform.py:795 +#: flatcamEditors/FlatCAMGeoEditor.py:1396 +#: flatcamEditors/FlatCAMGrbEditor.py:5364 flatcamTools/ToolTransform.py:795 #, python-format msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1408 -#: flatcamEditors/FlatCAMGrbEditor.py:5239 +#: flatcamEditors/FlatCAMGeoEditor.py:1407 +#: flatcamEditors/FlatCAMGrbEditor.py:5383 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1411 -#: flatcamEditors/FlatCAMGrbEditor.py:5242 flatcamTools/ToolTransform.py:809 +#: flatcamEditors/FlatCAMGeoEditor.py:1410 +#: flatcamEditors/FlatCAMGrbEditor.py:5386 flatcamTools/ToolTransform.py:809 msgid "Applying Scale" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1444 -#: flatcamEditors/FlatCAMGrbEditor.py:5278 flatcamTools/ToolTransform.py:848 +#: flatcamEditors/FlatCAMGeoEditor.py:1443 +#: flatcamEditors/FlatCAMGrbEditor.py:5422 flatcamTools/ToolTransform.py:848 #, python-format msgid "[success] Scale on the %s axis done ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1447 -#: flatcamEditors/FlatCAMGrbEditor.py:5281 flatcamTools/ToolTransform.py:851 +#: flatcamEditors/FlatCAMGeoEditor.py:1446 +#: flatcamEditors/FlatCAMGrbEditor.py:5425 flatcamTools/ToolTransform.py:851 #, python-format msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1456 -#: flatcamEditors/FlatCAMGrbEditor.py:5294 +#: flatcamEditors/FlatCAMGeoEditor.py:1455 +#: flatcamEditors/FlatCAMGrbEditor.py:5438 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1459 -#: flatcamEditors/FlatCAMGrbEditor.py:5297 flatcamTools/ToolTransform.py:861 +#: flatcamEditors/FlatCAMGeoEditor.py:1458 +#: flatcamEditors/FlatCAMGrbEditor.py:5441 flatcamTools/ToolTransform.py:861 msgid "Applying Offset" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1483 -#: flatcamEditors/FlatCAMGrbEditor.py:5318 flatcamTools/ToolTransform.py:880 +#: flatcamEditors/FlatCAMGeoEditor.py:1469 +#: flatcamEditors/FlatCAMGrbEditor.py:5462 flatcamTools/ToolTransform.py:880 #, python-format msgid "[success] Offset on the %s axis done ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1487 -#: flatcamEditors/FlatCAMGrbEditor.py:5322 flatcamTools/ToolTransform.py:884 +#: flatcamEditors/FlatCAMGeoEditor.py:1473 +#: flatcamEditors/FlatCAMGrbEditor.py:5466 flatcamTools/ToolTransform.py:884 #, python-format msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1491 -#: flatcamEditors/FlatCAMGrbEditor.py:5326 +#: flatcamEditors/FlatCAMGeoEditor.py:1477 +#: flatcamEditors/FlatCAMGrbEditor.py:5470 msgid "Rotate ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1492 -#: flatcamEditors/FlatCAMGeoEditor.py:1549 -#: flatcamEditors/FlatCAMGeoEditor.py:1566 -#: flatcamEditors/FlatCAMGrbEditor.py:5327 -#: flatcamEditors/FlatCAMGrbEditor.py:5384 -#: flatcamEditors/FlatCAMGrbEditor.py:5401 +#: flatcamEditors/FlatCAMGeoEditor.py:1478 +#: flatcamEditors/FlatCAMGeoEditor.py:1535 +#: flatcamEditors/FlatCAMGeoEditor.py:1552 +#: flatcamEditors/FlatCAMGrbEditor.py:5471 +#: flatcamEditors/FlatCAMGrbEditor.py:5528 +#: flatcamEditors/FlatCAMGrbEditor.py:5545 msgid "Enter an Angle Value (degrees):" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1501 -#: flatcamEditors/FlatCAMGrbEditor.py:5336 +#: flatcamEditors/FlatCAMGeoEditor.py:1487 +#: flatcamEditors/FlatCAMGrbEditor.py:5480 msgid "[success] Geometry shape rotate done..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1506 -#: flatcamEditors/FlatCAMGrbEditor.py:5341 +#: flatcamEditors/FlatCAMGeoEditor.py:1492 +#: flatcamEditors/FlatCAMGrbEditor.py:5485 msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1512 -#: flatcamEditors/FlatCAMGrbEditor.py:5347 +#: flatcamEditors/FlatCAMGeoEditor.py:1498 +#: flatcamEditors/FlatCAMGrbEditor.py:5491 msgid "Offset on X axis ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1513 -#: flatcamEditors/FlatCAMGeoEditor.py:1532 -#: flatcamEditors/FlatCAMGrbEditor.py:5348 -#: flatcamEditors/FlatCAMGrbEditor.py:5367 +#: flatcamEditors/FlatCAMGeoEditor.py:1499 +#: flatcamEditors/FlatCAMGeoEditor.py:1518 +#: flatcamEditors/FlatCAMGrbEditor.py:5492 +#: flatcamEditors/FlatCAMGrbEditor.py:5511 #, python-format msgid "Enter a distance Value (%s):" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1522 -#: flatcamEditors/FlatCAMGrbEditor.py:5357 +#: flatcamEditors/FlatCAMGeoEditor.py:1508 +#: flatcamEditors/FlatCAMGrbEditor.py:5501 msgid "[success] Geometry shape offset on X axis done..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1526 -#: flatcamEditors/FlatCAMGrbEditor.py:5361 +#: flatcamEditors/FlatCAMGeoEditor.py:1512 +#: flatcamEditors/FlatCAMGrbEditor.py:5505 msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1531 -#: flatcamEditors/FlatCAMGrbEditor.py:5366 +#: flatcamEditors/FlatCAMGeoEditor.py:1517 +#: flatcamEditors/FlatCAMGrbEditor.py:5510 msgid "Offset on Y axis ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1541 -#: flatcamEditors/FlatCAMGrbEditor.py:5376 +#: flatcamEditors/FlatCAMGeoEditor.py:1527 +#: flatcamEditors/FlatCAMGrbEditor.py:5520 msgid "[success] Geometry shape offset on Y axis done..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1545 -#: flatcamEditors/FlatCAMGrbEditor.py:5380 +#: flatcamEditors/FlatCAMGeoEditor.py:1531 +#: flatcamEditors/FlatCAMGrbEditor.py:5524 msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1548 -#: flatcamEditors/FlatCAMGrbEditor.py:5383 +#: flatcamEditors/FlatCAMGeoEditor.py:1534 +#: flatcamEditors/FlatCAMGrbEditor.py:5527 msgid "Skew on X axis ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1558 -#: flatcamEditors/FlatCAMGrbEditor.py:5393 +#: flatcamEditors/FlatCAMGeoEditor.py:1544 +#: flatcamEditors/FlatCAMGrbEditor.py:5537 msgid "[success] Geometry shape skew on X axis done..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1562 -#: flatcamEditors/FlatCAMGrbEditor.py:5397 +#: flatcamEditors/FlatCAMGeoEditor.py:1548 +#: flatcamEditors/FlatCAMGrbEditor.py:5541 msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1565 -#: flatcamEditors/FlatCAMGrbEditor.py:5400 +#: flatcamEditors/FlatCAMGeoEditor.py:1551 +#: flatcamEditors/FlatCAMGrbEditor.py:5544 msgid "Skew on Y axis ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1575 -#: flatcamEditors/FlatCAMGrbEditor.py:5410 +#: flatcamEditors/FlatCAMGeoEditor.py:1561 +#: flatcamEditors/FlatCAMGrbEditor.py:5554 msgid "[success] Geometry shape skew on Y axis done..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1579 -#: flatcamEditors/FlatCAMGrbEditor.py:5414 +#: flatcamEditors/FlatCAMGeoEditor.py:1565 +#: flatcamEditors/FlatCAMGrbEditor.py:5558 msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1943 -#: flatcamEditors/FlatCAMGeoEditor.py:1994 -#: flatcamEditors/FlatCAMGrbEditor.py:1351 -#: flatcamEditors/FlatCAMGrbEditor.py:1420 +#: flatcamEditors/FlatCAMGeoEditor.py:1929 +#: flatcamEditors/FlatCAMGeoEditor.py:1980 +#: flatcamEditors/FlatCAMGrbEditor.py:1354 +#: flatcamEditors/FlatCAMGrbEditor.py:1423 msgid "Click on Center point ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1950 -#: flatcamEditors/FlatCAMGrbEditor.py:1359 +#: flatcamEditors/FlatCAMGeoEditor.py:1936 +#: flatcamEditors/FlatCAMGrbEditor.py:1362 msgid "Click on Perimeter point to complete ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:1979 +#: flatcamEditors/FlatCAMGeoEditor.py:1965 msgid "[success] Done. Adding Circle completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2014 -#: flatcamEditors/FlatCAMGrbEditor.py:1445 +#: flatcamEditors/FlatCAMGeoEditor.py:2000 +#: flatcamEditors/FlatCAMGrbEditor.py:1448 msgid "Click on Start point ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2016 -#: flatcamEditors/FlatCAMGrbEditor.py:1447 +#: flatcamEditors/FlatCAMGeoEditor.py:2002 +#: flatcamEditors/FlatCAMGrbEditor.py:1450 msgid "Click on Point3 ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2018 -#: flatcamEditors/FlatCAMGrbEditor.py:1449 +#: flatcamEditors/FlatCAMGeoEditor.py:2004 +#: flatcamEditors/FlatCAMGrbEditor.py:1452 msgid "Click on Stop point ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2023 -#: flatcamEditors/FlatCAMGrbEditor.py:1454 +#: flatcamEditors/FlatCAMGeoEditor.py:2009 +#: flatcamEditors/FlatCAMGrbEditor.py:1457 msgid "Click on Stop point to complete ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2025 -#: flatcamEditors/FlatCAMGrbEditor.py:1456 +#: flatcamEditors/FlatCAMGeoEditor.py:2011 +#: flatcamEditors/FlatCAMGrbEditor.py:1459 msgid "Click on Point2 to complete ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2027 -#: flatcamEditors/FlatCAMGrbEditor.py:1458 +#: flatcamEditors/FlatCAMGeoEditor.py:2013 +#: flatcamEditors/FlatCAMGrbEditor.py:1461 msgid "Click on Center point to complete ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2039 -#: flatcamEditors/FlatCAMGrbEditor.py:1470 +#: flatcamEditors/FlatCAMGeoEditor.py:2025 +#: flatcamEditors/FlatCAMGrbEditor.py:1473 #, python-format msgid "Direction: %s" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2049 -#: flatcamEditors/FlatCAMGrbEditor.py:1480 +#: flatcamEditors/FlatCAMGeoEditor.py:2035 +#: flatcamEditors/FlatCAMGrbEditor.py:1483 msgid "Mode: Start -> Stop -> Center. Click on Start point ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2052 -#: flatcamEditors/FlatCAMGrbEditor.py:1483 +#: flatcamEditors/FlatCAMGeoEditor.py:2038 +#: flatcamEditors/FlatCAMGrbEditor.py:1486 msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2055 -#: flatcamEditors/FlatCAMGrbEditor.py:1486 +#: flatcamEditors/FlatCAMGeoEditor.py:2041 +#: flatcamEditors/FlatCAMGrbEditor.py:1489 msgid "Mode: Center -> Start -> Stop. Click on Center point ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2193 +#: flatcamEditors/FlatCAMGeoEditor.py:2179 msgid "[success] Done. Arc completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2212 -#: flatcamEditors/FlatCAMGeoEditor.py:2265 -#: flatcamEditors/FlatCAMGeoEditor.py:2640 +#: flatcamEditors/FlatCAMGeoEditor.py:2198 +#: flatcamEditors/FlatCAMGeoEditor.py:2251 +#: flatcamEditors/FlatCAMGeoEditor.py:2626 msgid "Click on 1st corner ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2218 +#: flatcamEditors/FlatCAMGeoEditor.py:2204 msgid "Click on opposite corner to complete ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2246 +#: flatcamEditors/FlatCAMGeoEditor.py:2232 msgid "[success] Done. Rectangle completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2272 +#: flatcamEditors/FlatCAMGeoEditor.py:2258 msgid "Click on next Point or click right mouse button to complete ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2300 +#: flatcamEditors/FlatCAMGeoEditor.py:2286 msgid "[success] Done. Polygon completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2310 -#: flatcamEditors/FlatCAMGeoEditor.py:2356 -#: flatcamEditors/FlatCAMGrbEditor.py:1055 -#: flatcamEditors/FlatCAMGrbEditor.py:1249 +#: flatcamEditors/FlatCAMGeoEditor.py:2296 +#: flatcamEditors/FlatCAMGeoEditor.py:2342 +#: flatcamEditors/FlatCAMGrbEditor.py:1058 +#: flatcamEditors/FlatCAMGrbEditor.py:1252 msgid "Backtracked one point ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2338 +#: flatcamEditors/FlatCAMGeoEditor.py:2324 msgid "[success] Done. Path completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2461 +#: flatcamEditors/FlatCAMGeoEditor.py:2447 msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2463 -#: flatcamEditors/FlatCAMGeoEditor.py:2475 +#: flatcamEditors/FlatCAMGeoEditor.py:2449 +#: flatcamEditors/FlatCAMGeoEditor.py:2461 msgid " MOVE: Click on reference point ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2466 +#: flatcamEditors/FlatCAMGeoEditor.py:2452 msgid " Click on destination point ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2500 +#: flatcamEditors/FlatCAMGeoEditor.py:2486 msgid "[success] Done. Geometry(s) Move completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2620 +#: flatcamEditors/FlatCAMGeoEditor.py:2606 msgid "[success] Done. Geometry(s) Copy completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2654 +#: flatcamEditors/FlatCAMGeoEditor.py:2640 #, python-format msgid "" "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are " "supported. Error: %s" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2664 +#: flatcamEditors/FlatCAMGeoEditor.py:2650 msgid "[success] Done. Adding Text completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2692 +#: flatcamEditors/FlatCAMGeoEditor.py:2678 msgid "Create buffer geometry ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2703 -#: flatcamEditors/FlatCAMGeoEditor.py:2729 -#: flatcamEditors/FlatCAMGeoEditor.py:2755 +#: flatcamEditors/FlatCAMGeoEditor.py:2689 +#: flatcamEditors/FlatCAMGeoEditor.py:2715 +#: flatcamEditors/FlatCAMGeoEditor.py:2741 msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2725 -#: flatcamEditors/FlatCAMGrbEditor.py:4276 +#: flatcamEditors/FlatCAMGeoEditor.py:2711 +#: flatcamEditors/FlatCAMGrbEditor.py:4420 msgid "[success] Done. Buffer Tool completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2751 +#: flatcamEditors/FlatCAMGeoEditor.py:2737 msgid "[success] Done. Buffer Int Tool completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2777 +#: flatcamEditors/FlatCAMGeoEditor.py:2763 msgid "[success] Done. Buffer Ext Tool completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2810 +#: flatcamEditors/FlatCAMGeoEditor.py:2798 +#: flatcamEditors/FlatCAMGrbEditor.py:1969 +msgid "Select a shape to act as deletion area ..." +msgstr "" + +#: flatcamEditors/FlatCAMGeoEditor.py:2800 +#: flatcamEditors/FlatCAMGeoEditor.py:2819 +#: flatcamEditors/FlatCAMGeoEditor.py:2825 +#: flatcamEditors/FlatCAMGrbEditor.py:1971 +msgid "Click to pick-up the erase shape..." +msgstr "" + +#: flatcamEditors/FlatCAMGeoEditor.py:2829 +#: flatcamEditors/FlatCAMGrbEditor.py:2028 +msgid "Click to erase ..." +msgstr "" + +#: flatcamEditors/FlatCAMGeoEditor.py:2858 +#: flatcamEditors/FlatCAMGrbEditor.py:2059 +msgid "[success] Done. Eraser tool action completed." +msgstr "" + +#: flatcamEditors/FlatCAMGeoEditor.py:2901 msgid "Create Paint geometry ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2824 -#: flatcamEditors/FlatCAMGrbEditor.py:2059 +#: flatcamEditors/FlatCAMGeoEditor.py:2915 +#: flatcamEditors/FlatCAMGrbEditor.py:2201 msgid "Shape transformations ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3327 +#: flatcamEditors/FlatCAMGeoEditor.py:3419 #, python-brace-format msgid "[WARNING] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3703 +#: flatcamEditors/FlatCAMGeoEditor.py:3796 msgid "[WARNING_NOTCL] Copy cancelled. No shape selected." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3710 flatcamGUI/FlatCAMGUI.py:2725 -#: flatcamGUI/FlatCAMGUI.py:2771 flatcamGUI/FlatCAMGUI.py:2789 -#: flatcamGUI/FlatCAMGUI.py:2920 flatcamGUI/FlatCAMGUI.py:2932 -#: flatcamGUI/FlatCAMGUI.py:2966 +#: flatcamEditors/FlatCAMGeoEditor.py:3803 flatcamGUI/FlatCAMGUI.py:2732 +#: flatcamGUI/FlatCAMGUI.py:2778 flatcamGUI/FlatCAMGUI.py:2796 +#: flatcamGUI/FlatCAMGUI.py:2927 flatcamGUI/FlatCAMGUI.py:2939 +#: flatcamGUI/FlatCAMGUI.py:2973 msgid "Click on target point." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3953 -#: flatcamEditors/FlatCAMGeoEditor.py:3987 +#: flatcamEditors/FlatCAMGeoEditor.py:4047 +#: flatcamEditors/FlatCAMGeoEditor.py:4082 msgid "" "[WARNING_NOTCL] A selection of at least 2 geo items is required to do " "Intersection." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4071 -#: flatcamEditors/FlatCAMGeoEditor.py:4108 -#: flatcamEditors/FlatCAMGeoEditor.py:4184 +#: flatcamEditors/FlatCAMGeoEditor.py:4166 +#: flatcamEditors/FlatCAMGeoEditor.py:4204 +#: flatcamEditors/FlatCAMGeoEditor.py:4280 msgid "" "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to " "generate an 'inside' shape" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4079 -#: flatcamEditors/FlatCAMGeoEditor.py:4117 -#: flatcamEditors/FlatCAMGeoEditor.py:4192 +#: flatcamEditors/FlatCAMGeoEditor.py:4175 +#: flatcamEditors/FlatCAMGeoEditor.py:4213 +#: flatcamEditors/FlatCAMGeoEditor.py:4288 msgid "[WARNING_NOTCL] Nothing selected for buffering." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4083 -#: flatcamEditors/FlatCAMGeoEditor.py:4121 -#: flatcamEditors/FlatCAMGeoEditor.py:4196 +#: flatcamEditors/FlatCAMGeoEditor.py:4179 +#: flatcamEditors/FlatCAMGeoEditor.py:4217 +#: flatcamEditors/FlatCAMGeoEditor.py:4292 msgid "[WARNING_NOTCL] Invalid distance for buffering." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4093 -#: flatcamEditors/FlatCAMGeoEditor.py:4205 +#: flatcamEditors/FlatCAMGeoEditor.py:4189 +#: flatcamEditors/FlatCAMGeoEditor.py:4301 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4101 +#: flatcamEditors/FlatCAMGeoEditor.py:4197 msgid "[success] Full buffer geometry created." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4131 +#: flatcamEditors/FlatCAMGeoEditor.py:4227 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4146 +#: flatcamEditors/FlatCAMGeoEditor.py:4242 msgid "[success] Interior buffer geometry created." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4217 +#: flatcamEditors/FlatCAMGeoEditor.py:4313 msgid "[success] Exterior buffer geometry created." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4281 +#: flatcamEditors/FlatCAMGeoEditor.py:4377 msgid "[WARNING_NOTCL] Nothing selected for painting." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4287 +#: flatcamEditors/FlatCAMGeoEditor.py:4383 msgid "[WARNING] Invalid value for {}" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4293 +#: flatcamEditors/FlatCAMGeoEditor.py:4389 msgid "" "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 " "(100%)." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4352 +#: flatcamEditors/FlatCAMGeoEditor.py:4448 #, python-format msgid "" "[ERROR] Could not do Paint. Try a different combination of parameters. Or a " @@ -2770,7 +2792,7 @@ msgid "" "%s" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4363 +#: flatcamEditors/FlatCAMGeoEditor.py:4459 msgid "[success] Paint done." msgstr "" @@ -2790,7 +2812,7 @@ msgid "Click to place ..." msgstr "" #: flatcamEditors/FlatCAMGrbEditor.py:357 -#: flatcamEditors/FlatCAMGrbEditor.py:660 +#: flatcamEditors/FlatCAMGrbEditor.py:662 msgid "" "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'." msgstr "" @@ -2808,180 +2830,180 @@ msgstr "" msgid "Click on the Pad Circular Array Start position" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:685 +#: flatcamEditors/FlatCAMGrbEditor.py:687 msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:707 +#: flatcamEditors/FlatCAMGrbEditor.py:709 msgid "[success] Done. Pad Array added." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:728 +#: flatcamEditors/FlatCAMGrbEditor.py:730 msgid "Select shape(s) and then click ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:739 +#: flatcamEditors/FlatCAMGrbEditor.py:741 msgid "[ERROR_NOTCL] Failed. Nothing selected." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:754 +#: flatcamEditors/FlatCAMGrbEditor.py:756 msgid "" "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the " "same aperture." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:807 +#: flatcamEditors/FlatCAMGrbEditor.py:809 msgid "[success] Done. Poligonize completed." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:857 -#: flatcamEditors/FlatCAMGrbEditor.py:1072 -#: flatcamEditors/FlatCAMGrbEditor.py:1096 +#: flatcamEditors/FlatCAMGrbEditor.py:860 +#: flatcamEditors/FlatCAMGrbEditor.py:1075 +#: flatcamEditors/FlatCAMGrbEditor.py:1099 msgid "Corner Mode 1: 45 degrees ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:859 +#: flatcamEditors/FlatCAMGrbEditor.py:862 msgid "Click on 1st point ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:869 -#: flatcamEditors/FlatCAMGrbEditor.py:1167 +#: flatcamEditors/FlatCAMGrbEditor.py:872 +#: flatcamEditors/FlatCAMGrbEditor.py:1170 msgid "Click on next Point or click Right mouse button to complete ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1060 -#: flatcamEditors/FlatCAMGrbEditor.py:1093 +#: flatcamEditors/FlatCAMGrbEditor.py:1063 +#: flatcamEditors/FlatCAMGrbEditor.py:1096 msgid "Corner Mode 2: Reverse 45 degrees ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1063 -#: flatcamEditors/FlatCAMGrbEditor.py:1090 +#: flatcamEditors/FlatCAMGrbEditor.py:1066 +#: flatcamEditors/FlatCAMGrbEditor.py:1093 msgid "Corner Mode 3: 90 degrees ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1066 -#: flatcamEditors/FlatCAMGrbEditor.py:1087 +#: flatcamEditors/FlatCAMGrbEditor.py:1069 +#: flatcamEditors/FlatCAMGrbEditor.py:1090 msgid "Corner Mode 4: Reverse 90 degrees ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1069 -#: flatcamEditors/FlatCAMGrbEditor.py:1084 +#: flatcamEditors/FlatCAMGrbEditor.py:1072 +#: flatcamEditors/FlatCAMGrbEditor.py:1087 msgid "Corner Mode 5: Free angle ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1123 -#: flatcamEditors/FlatCAMGrbEditor.py:1281 -#: flatcamEditors/FlatCAMGrbEditor.py:1320 +#: flatcamEditors/FlatCAMGrbEditor.py:1126 +#: flatcamEditors/FlatCAMGrbEditor.py:1284 +#: flatcamEditors/FlatCAMGrbEditor.py:1323 msgid "Track Mode 1: 45 degrees ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1261 -#: flatcamEditors/FlatCAMGrbEditor.py:1315 +#: flatcamEditors/FlatCAMGrbEditor.py:1264 +#: flatcamEditors/FlatCAMGrbEditor.py:1318 msgid "Track Mode 2: Reverse 45 degrees ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1266 -#: flatcamEditors/FlatCAMGrbEditor.py:1310 +#: flatcamEditors/FlatCAMGrbEditor.py:1269 +#: flatcamEditors/FlatCAMGrbEditor.py:1313 msgid "Track Mode 3: 90 degrees ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1271 -#: flatcamEditors/FlatCAMGrbEditor.py:1305 +#: flatcamEditors/FlatCAMGrbEditor.py:1274 +#: flatcamEditors/FlatCAMGrbEditor.py:1308 msgid "Track Mode 4: Reverse 90 degrees ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1276 -#: flatcamEditors/FlatCAMGrbEditor.py:1300 +#: flatcamEditors/FlatCAMGrbEditor.py:1279 +#: flatcamEditors/FlatCAMGrbEditor.py:1303 msgid "Track Mode 5: Free angle ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1666 +#: flatcamEditors/FlatCAMGrbEditor.py:1669 msgid "Scale the selected Gerber apertures ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1708 +#: flatcamEditors/FlatCAMGrbEditor.py:1711 msgid "Buffer the selected apertures ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1752 +#: flatcamEditors/FlatCAMGrbEditor.py:1755 msgid "[WARNING_NOTCL] Nothing selected to move ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1875 +#: flatcamEditors/FlatCAMGrbEditor.py:1878 msgid "[success] Done. Apertures Move completed." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1951 +#: flatcamEditors/FlatCAMGrbEditor.py:1954 msgid "[success] Done. Apertures copied." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2101 flatcamGUI/FlatCAMGUI.py:1604 -#: flatcamGUI/FlatCAMGUI.py:4322 +#: flatcamEditors/FlatCAMGrbEditor.py:2243 flatcamGUI/FlatCAMGUI.py:1607 +#: flatcamGUI/FlatCAMGUI.py:4329 msgid "Gerber Editor" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2120 flatcamGUI/ObjectUI.py:192 +#: flatcamEditors/FlatCAMGrbEditor.py:2262 flatcamGUI/ObjectUI.py:192 msgid "Apertures:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2122 flatcamGUI/ObjectUI.py:194 +#: flatcamEditors/FlatCAMGrbEditor.py:2264 flatcamGUI/ObjectUI.py:194 msgid "Apertures Table for the Gerber Object." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2133 -#: flatcamEditors/FlatCAMGrbEditor.py:3442 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:2275 +#: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228 msgid "Code" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2133 -#: flatcamEditors/FlatCAMGrbEditor.py:3442 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:2275 +#: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228 #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1452 msgid "Type" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2133 -#: flatcamEditors/FlatCAMGrbEditor.py:3442 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:2275 +#: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228 msgid "Size" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2133 -#: flatcamEditors/FlatCAMGrbEditor.py:3442 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:2275 +#: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228 msgid "Dim" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2137 flatcamGUI/ObjectUI.py:232 +#: flatcamEditors/FlatCAMGrbEditor.py:2279 flatcamGUI/ObjectUI.py:232 msgid "Index" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2139 flatcamGUI/ObjectUI.py:234 +#: flatcamEditors/FlatCAMGrbEditor.py:2281 flatcamGUI/ObjectUI.py:234 msgid "Aperture Code" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2141 flatcamGUI/ObjectUI.py:236 +#: flatcamEditors/FlatCAMGrbEditor.py:2283 flatcamGUI/ObjectUI.py:236 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2143 -#: flatcamEditors/FlatCAMGrbEditor.py:2176 flatcamGUI/ObjectUI.py:238 +#: flatcamEditors/FlatCAMGrbEditor.py:2285 +#: flatcamEditors/FlatCAMGrbEditor.py:2318 flatcamGUI/ObjectUI.py:238 msgid "Aperture Size:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2145 flatcamGUI/ObjectUI.py:240 +#: flatcamEditors/FlatCAMGrbEditor.py:2287 flatcamGUI/ObjectUI.py:240 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" " - (dia, nVertices) for P type" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2166 +#: flatcamEditors/FlatCAMGrbEditor.py:2308 msgid "Aperture Code:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2168 +#: flatcamEditors/FlatCAMGrbEditor.py:2310 msgid "Code for the new aperture" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2178 +#: flatcamEditors/FlatCAMGrbEditor.py:2320 msgid "" "Size for the new aperture.\n" "If aperture type is 'R' or 'O' then\n" @@ -2990,11 +3012,11 @@ msgid "" "sqrt(width**2 + height**2)" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2190 +#: flatcamEditors/FlatCAMGrbEditor.py:2332 msgid "Aperture Type:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2192 +#: flatcamEditors/FlatCAMGrbEditor.py:2334 msgid "" "Select the type of new aperture. Can be:\n" "C = circular\n" @@ -3002,42 +3024,42 @@ msgid "" "O = oblong" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2203 +#: flatcamEditors/FlatCAMGrbEditor.py:2345 msgid "Aperture Dim:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2205 +#: flatcamEditors/FlatCAMGrbEditor.py:2347 msgid "" "Dimensions for the new aperture.\n" "Active only for rectangular apertures (type R).\n" "The format is (width, height)" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2214 +#: flatcamEditors/FlatCAMGrbEditor.py:2356 msgid "Add/Delete Aperture:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2216 +#: flatcamEditors/FlatCAMGrbEditor.py:2358 msgid "Add/Delete an aperture in the aperture table" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2225 +#: flatcamEditors/FlatCAMGrbEditor.py:2367 msgid "Add a new aperture to the aperture list." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2230 +#: flatcamEditors/FlatCAMGrbEditor.py:2372 msgid "Delete a aperture in the aperture list" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2246 +#: flatcamEditors/FlatCAMGrbEditor.py:2388 msgid "Buffer Aperture:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2248 +#: flatcamEditors/FlatCAMGrbEditor.py:2390 msgid "Buffer a aperture in the aperture list" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2261 +#: flatcamEditors/FlatCAMGrbEditor.py:2403 msgid "" "There are 3 types of corners:\n" " - 'Round': the corner is rounded.\n" @@ -3046,148 +3068,148 @@ msgid "" "meeting in the corner" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2276 flatcamGUI/FlatCAMGUI.py:721 -#: flatcamGUI/FlatCAMGUI.py:1943 +#: flatcamEditors/FlatCAMGrbEditor.py:2418 flatcamGUI/FlatCAMGUI.py:722 +#: flatcamGUI/FlatCAMGUI.py:1948 msgid "Buffer" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2290 +#: flatcamEditors/FlatCAMGrbEditor.py:2432 msgid "Scale Aperture:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2292 +#: flatcamEditors/FlatCAMGrbEditor.py:2434 msgid "Scale a aperture in the aperture list" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2300 +#: flatcamEditors/FlatCAMGrbEditor.py:2442 msgid "Scale factor:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2302 +#: flatcamEditors/FlatCAMGrbEditor.py:2444 msgid "" "The factor by which to scale the selected aperture.\n" "Values can be between 0.0000 and 999.9999" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2330 flatcamGUI/FlatCAMGUI.py:711 -#: flatcamGUI/FlatCAMGUI.py:1933 +#: flatcamEditors/FlatCAMGrbEditor.py:2472 flatcamGUI/FlatCAMGUI.py:712 +#: flatcamGUI/FlatCAMGUI.py:1938 msgid "Add Pad Array" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2332 +#: flatcamEditors/FlatCAMGrbEditor.py:2474 msgid "Add an array of pads (linear or circular array)" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2338 +#: flatcamEditors/FlatCAMGrbEditor.py:2480 msgid "" "Select the type of pads array to create.\n" "It can be Linear X(Y) or Circular" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2349 +#: flatcamEditors/FlatCAMGrbEditor.py:2491 msgid "Nr of pads:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2351 +#: flatcamEditors/FlatCAMGrbEditor.py:2493 msgid "Specify how many pads to be in the array." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2826 -#: flatcamEditors/FlatCAMGrbEditor.py:2830 +#: flatcamEditors/FlatCAMGrbEditor.py:2970 +#: flatcamEditors/FlatCAMGrbEditor.py:2974 msgid "" "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and " "retry." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2866 +#: flatcamEditors/FlatCAMGrbEditor.py:3010 msgid "" "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it " "in format (width, height) and retry." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2878 +#: flatcamEditors/FlatCAMGrbEditor.py:3022 msgid "" "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and " "retry." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2889 +#: flatcamEditors/FlatCAMGrbEditor.py:3033 msgid "[WARNING_NOTCL] Aperture already in the aperture table." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2896 +#: flatcamEditors/FlatCAMGrbEditor.py:3040 #, python-brace-format msgid "[success] Added new aperture with code: {apid}" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2924 +#: flatcamEditors/FlatCAMGrbEditor.py:3068 msgid "[WARNING_NOTCL] Select an aperture in Aperture Table" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2930 +#: flatcamEditors/FlatCAMGrbEditor.py:3074 #, python-format msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2953 +#: flatcamEditors/FlatCAMGrbEditor.py:3097 #, python-brace-format msgid "[success] Deleted aperture with code: {del_dia}" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:3373 +#: flatcamEditors/FlatCAMGrbEditor.py:3517 #, python-format msgid "Adding aperture: %s geo ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:3552 +#: flatcamEditors/FlatCAMGrbEditor.py:3696 msgid "" "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber " "creation." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:3555 +#: flatcamEditors/FlatCAMGrbEditor.py:3699 msgid "[ERROR] An internal error has occurred. See shell.\n" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:3560 +#: flatcamEditors/FlatCAMGrbEditor.py:3704 msgid "Creating Gerber." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:3568 +#: flatcamEditors/FlatCAMGrbEditor.py:3712 msgid "[success] Gerber editing finished." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:3584 +#: flatcamEditors/FlatCAMGrbEditor.py:3728 msgid "[WARNING_NOTCL] Cancelled. No aperture is selected" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:4104 +#: flatcamEditors/FlatCAMGrbEditor.py:4248 msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:4112 +#: flatcamEditors/FlatCAMGrbEditor.py:4256 msgid "[success] Done. Apertures geometry deleted." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:4261 +#: flatcamEditors/FlatCAMGrbEditor.py:4405 msgid "" "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try " "again." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:4290 +#: flatcamEditors/FlatCAMGrbEditor.py:4434 msgid "" "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and " "retry." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:4320 +#: flatcamEditors/FlatCAMGrbEditor.py:4464 msgid "" "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try " "again." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:4336 +#: flatcamEditors/FlatCAMGrbEditor.py:4480 msgid "[success] Done. Scale Tool completed." msgstr "" @@ -3745,11 +3767,11 @@ msgstr "" msgid "View Source" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:530 flatcamGUI/FlatCAMGUI.py:1617 +#: flatcamGUI/FlatCAMGUI.py:530 flatcamGUI/FlatCAMGUI.py:1620 msgid "Edit" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:536 flatcamGUI/FlatCAMGUI.py:1623 +#: flatcamGUI/FlatCAMGUI.py:536 flatcamGUI/FlatCAMGUI.py:1626 #: flatcamTools/ToolProperties.py:25 msgid "Properties" msgstr "" @@ -3790,15 +3812,15 @@ msgstr "" msgid "Grid Toolbar" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:616 flatcamGUI/FlatCAMGUI.py:1834 +#: flatcamGUI/FlatCAMGUI.py:616 flatcamGUI/FlatCAMGUI.py:1837 msgid "Open project" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1835 +#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1838 msgid "Save project" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1838 +#: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1841 msgid "New Blank Geometry" msgstr "" @@ -3806,283 +3828,288 @@ msgstr "" msgid "New Blank Gerber" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1839 +#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1842 msgid "New Blank Excellon" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1841 +#: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1844 msgid "Editor" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:626 flatcamGUI/FlatCAMGUI.py:1843 +#: flatcamGUI/FlatCAMGUI.py:626 flatcamGUI/FlatCAMGUI.py:1846 msgid "Save Object and close the Editor" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1847 +#: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1850 msgid "&Delete" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1850 +#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1853 msgid "&Replot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1851 +#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1854 msgid "&Clear plot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1852 +#: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1855 msgid "Zoom In" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:636 flatcamGUI/FlatCAMGUI.py:1853 +#: flatcamGUI/FlatCAMGUI.py:636 flatcamGUI/FlatCAMGUI.py:1856 msgid "Zoom Out" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1592 -#: flatcamGUI/FlatCAMGUI.py:1854 +#: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1595 +#: flatcamGUI/FlatCAMGUI.py:1857 msgid "Zoom Fit" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:642 flatcamGUI/FlatCAMGUI.py:1859 +#: flatcamGUI/FlatCAMGUI.py:642 flatcamGUI/FlatCAMGUI.py:1862 msgid "&Command Line" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1862 +#: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1865 msgid "2Sided Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1863 +#: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1866 msgid "&Cutout Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1864 +#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1867 #: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:285 msgid "NCC Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:651 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:651 flatcamGUI/FlatCAMGUI.py:1871 msgid "Panel Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:1872 #: flatcamTools/ToolFilm.py:204 msgid "Film Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1871 +#: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1874 msgid "SolderPaste Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1875 #: flatcamTools/ToolSub.py:26 msgid "Substract Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1877 +#: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1880 msgid "Calculators Tool" msgstr "" #: flatcamGUI/FlatCAMGUI.py:662 flatcamGUI/FlatCAMGUI.py:676 -#: flatcamGUI/FlatCAMGUI.py:709 flatcamGUI/FlatCAMGUI.py:1881 -#: flatcamGUI/FlatCAMGUI.py:1931 +#: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:1884 +#: flatcamGUI/FlatCAMGUI.py:1936 msgid "Select" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:663 flatcamGUI/FlatCAMGUI.py:1882 +#: flatcamGUI/FlatCAMGUI.py:663 flatcamGUI/FlatCAMGUI.py:1885 msgid "Add Drill Hole" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1884 +#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1887 msgid "Add Drill Hole Array" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:1885 +#: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:1888 msgid "Resize Drill" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:669 flatcamGUI/FlatCAMGUI.py:1888 +#: flatcamGUI/FlatCAMGUI.py:669 flatcamGUI/FlatCAMGUI.py:1891 msgid "Copy Drill" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:670 flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:670 flatcamGUI/FlatCAMGUI.py:1893 msgid "Delete Drill" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1893 +#: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1896 msgid "Move Drill" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:677 flatcamGUI/FlatCAMGUI.py:1897 +#: flatcamGUI/FlatCAMGUI.py:677 flatcamGUI/FlatCAMGUI.py:1900 msgid "Add Circle" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1898 +#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1901 msgid "Add Arc" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1900 +#: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1903 msgid "Add Rectangle" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1903 +#: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1906 msgid "Add Path" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:684 flatcamGUI/FlatCAMGUI.py:1905 +#: flatcamGUI/FlatCAMGUI.py:684 flatcamGUI/FlatCAMGUI.py:1908 msgid "Add Polygon" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:1910 msgid "Add Text" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:687 flatcamGUI/FlatCAMGUI.py:1909 +#: flatcamGUI/FlatCAMGUI.py:687 flatcamGUI/FlatCAMGUI.py:1912 msgid "Add Buffer" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:688 flatcamGUI/FlatCAMGUI.py:1910 +#: flatcamGUI/FlatCAMGUI.py:688 flatcamGUI/FlatCAMGUI.py:1913 msgid "Paint Shape" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:691 flatcamGUI/FlatCAMGUI.py:1913 +#: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:724 +#: flatcamGUI/FlatCAMGUI.py:1914 flatcamGUI/FlatCAMGUI.py:1950 +msgid "Eraser" +msgstr "" + +#: flatcamGUI/FlatCAMGUI.py:692 flatcamGUI/FlatCAMGUI.py:1918 msgid "Polygon Union" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:693 flatcamGUI/FlatCAMGUI.py:1915 +#: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:1920 msgid "Polygon Intersection" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:695 flatcamGUI/FlatCAMGUI.py:1917 +#: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:1922 msgid "Polygon Subtraction" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:698 flatcamGUI/FlatCAMGUI.py:1920 +#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:1925 msgid "Cut Path" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:699 +#: flatcamGUI/FlatCAMGUI.py:700 msgid "Copy Shape(s)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:702 +#: flatcamGUI/FlatCAMGUI.py:703 msgid "Delete Shape '-'" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:728 -#: flatcamGUI/FlatCAMGUI.py:1925 flatcamGUI/FlatCAMGUI.py:1950 +#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:731 +#: flatcamGUI/FlatCAMGUI.py:1930 flatcamGUI/FlatCAMGUI.py:1957 msgid "Transformations" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:706 +#: flatcamGUI/FlatCAMGUI.py:707 msgid "Move Objects " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:1932 +#: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:1937 msgid "Add Pad" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:712 flatcamGUI/FlatCAMGUI.py:1934 +#: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1939 msgid "Add Track" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1935 +#: flatcamGUI/FlatCAMGUI.py:714 flatcamGUI/FlatCAMGUI.py:1940 msgid "Add Region" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:715 flatcamGUI/FlatCAMGUI.py:1937 +#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:1942 msgid "Poligonize" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:717 flatcamGUI/FlatCAMGUI.py:1939 +#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1944 msgid "SemiDisc" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1940 +#: flatcamGUI/FlatCAMGUI.py:719 flatcamGUI/FlatCAMGUI.py:1945 msgid "Disc" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1602 -#: flatcamGUI/FlatCAMGUI.py:1622 flatcamGUI/FlatCAMGUI.py:1952 +#: flatcamGUI/FlatCAMGUI.py:733 flatcamGUI/FlatCAMGUI.py:1605 +#: flatcamGUI/FlatCAMGUI.py:1625 flatcamGUI/FlatCAMGUI.py:1959 #: flatcamTools/ToolMove.py:26 msgid "Move" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:736 flatcamGUI/FlatCAMGUI.py:1958 +#: flatcamGUI/FlatCAMGUI.py:739 flatcamGUI/FlatCAMGUI.py:1965 msgid "Snap to grid" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:739 flatcamGUI/FlatCAMGUI.py:1961 +#: flatcamGUI/FlatCAMGUI.py:742 flatcamGUI/FlatCAMGUI.py:1968 msgid "Grid X snapping distance" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:744 flatcamGUI/FlatCAMGUI.py:1966 +#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/FlatCAMGUI.py:1973 msgid "Grid Y snapping distance" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:750 flatcamGUI/FlatCAMGUI.py:1972 +#: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:1979 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:756 flatcamGUI/FlatCAMGUI.py:1978 +#: flatcamGUI/FlatCAMGUI.py:759 flatcamGUI/FlatCAMGUI.py:1985 msgid "Snap to corner" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:760 flatcamGUI/FlatCAMGUI.py:1982 -#: flatcamGUI/FlatCAMGUI.py:3339 +#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:1989 +#: flatcamGUI/FlatCAMGUI.py:3346 msgid "Max. magnet distance" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:788 flatcamGUI/FlatCAMGUI.py:1586 +#: flatcamGUI/FlatCAMGUI.py:791 flatcamGUI/FlatCAMGUI.py:1589 msgid "Project" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:798 +#: flatcamGUI/FlatCAMGUI.py:801 msgid "Selected" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:825 +#: flatcamGUI/FlatCAMGUI.py:820 flatcamGUI/FlatCAMGUI.py:828 msgid "Plot Area" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:849 +#: flatcamGUI/FlatCAMGUI.py:852 msgid "General" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:858 +#: flatcamGUI/FlatCAMGUI.py:861 msgid "APP. DEFAULTS" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:859 +#: flatcamGUI/FlatCAMGUI.py:862 msgid "PROJ. OPTIONS " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:870 +#: flatcamGUI/FlatCAMGUI.py:873 msgid "GERBER" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:879 +#: flatcamGUI/FlatCAMGUI.py:882 msgid "EXCELLON" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:888 +#: flatcamGUI/FlatCAMGUI.py:891 msgid "GEOMETRY" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:898 +#: flatcamGUI/FlatCAMGUI.py:901 msgid "CNC-JOB" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:907 +#: flatcamGUI/FlatCAMGUI.py:910 msgid "TOOLS" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:924 +#: flatcamGUI/FlatCAMGUI.py:927 msgid "Import Preferences" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:927 +#: flatcamGUI/FlatCAMGUI.py:930 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -4091,35 +4118,35 @@ msgid "" "on the first start. Do not delete that file." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:934 +#: flatcamGUI/FlatCAMGUI.py:937 msgid "Export Preferences" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:937 +#: flatcamGUI/FlatCAMGUI.py:940 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:942 +#: flatcamGUI/FlatCAMGUI.py:945 msgid "Open Pref Folder" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:945 +#: flatcamGUI/FlatCAMGUI.py:948 msgid "Open the folder where FlatCAM save the preferences files." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:953 +#: flatcamGUI/FlatCAMGUI.py:956 msgid "Save Preferences" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:956 +#: flatcamGUI/FlatCAMGUI.py:959 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:982 +#: flatcamGUI/FlatCAMGUI.py:985 msgid "" "General Shortcut list
\n" " Editor Shortcut list
\n" "
\n" @@ -4719,141 +4746,141 @@ msgid "" " " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1579 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Disable" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1581 +#: flatcamGUI/FlatCAMGUI.py:1584 msgid "New" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1582 +#: flatcamGUI/FlatCAMGUI.py:1585 msgid "Geometry" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1584 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Excellon" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1589 +#: flatcamGUI/FlatCAMGUI.py:1592 msgid "Grids" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "View" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1593 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Clear Plot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1594 +#: flatcamGUI/FlatCAMGUI.py:1597 msgid "Replot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1597 +#: flatcamGUI/FlatCAMGUI.py:1600 msgid "Geo Editor" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1598 +#: flatcamGUI/FlatCAMGUI.py:1601 msgid "Line" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1599 +#: flatcamGUI/FlatCAMGUI.py:1602 msgid "Rectangle" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1600 +#: flatcamGUI/FlatCAMGUI.py:1603 msgid "Cut" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1605 +#: flatcamGUI/FlatCAMGUI.py:1608 msgid "Pad" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1606 +#: flatcamGUI/FlatCAMGUI.py:1609 msgid "Pad Array" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1607 +#: flatcamGUI/FlatCAMGUI.py:1610 msgid "Track" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1608 +#: flatcamGUI/FlatCAMGUI.py:1611 msgid "Region" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1610 +#: flatcamGUI/FlatCAMGUI.py:1613 msgid "Exc Editor" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1611 +#: flatcamGUI/FlatCAMGUI.py:1614 msgid "Add Drill" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1643 +#: flatcamGUI/FlatCAMGUI.py:1646 msgid "Print Preview" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1644 +#: flatcamGUI/FlatCAMGUI.py:1647 msgid "Print Code" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1645 +#: flatcamGUI/FlatCAMGUI.py:1648 msgid "Find in Code" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1650 +#: flatcamGUI/FlatCAMGUI.py:1653 msgid "Replace With" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1654 +#: flatcamGUI/FlatCAMGUI.py:1657 msgid "All" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1656 +#: flatcamGUI/FlatCAMGUI.py:1659 msgid "" "When checked it will replace all instances in the 'Find' box\n" "with the text in the 'Replace' box.." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1662 msgid "Open Code" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1663 msgid "Save Code" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1695 +#: flatcamGUI/FlatCAMGUI.py:1698 msgid "" "Relative neasurement.\n" "Reference is last click position" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1701 +#: flatcamGUI/FlatCAMGUI.py:1704 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1896 +#: flatcamGUI/FlatCAMGUI.py:1899 msgid "Select 'Esc'" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1921 +#: flatcamGUI/FlatCAMGUI.py:1926 msgid "Copy Objects" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1923 +#: flatcamGUI/FlatCAMGUI.py:1928 msgid "Delete Shape" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1928 +#: flatcamGUI/FlatCAMGUI.py:1933 msgid "Move Objects" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2358 +#: flatcamGUI/FlatCAMGUI.py:2365 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -4861,131 +4888,131 @@ msgid "" "the toolbar button." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2365 flatcamGUI/FlatCAMGUI.py:2502 -#: flatcamGUI/FlatCAMGUI.py:2561 flatcamGUI/FlatCAMGUI.py:2581 +#: flatcamGUI/FlatCAMGUI.py:2372 flatcamGUI/FlatCAMGUI.py:2509 +#: flatcamGUI/FlatCAMGUI.py:2568 flatcamGUI/FlatCAMGUI.py:2588 msgid "Warning" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2432 flatcamGUI/FlatCAMGUI.py:2631 -#: flatcamGUI/FlatCAMGUI.py:2842 +#: flatcamGUI/FlatCAMGUI.py:2439 flatcamGUI/FlatCAMGUI.py:2638 +#: flatcamGUI/FlatCAMGUI.py:2849 msgid "[WARNING_NOTCL] Cancelled." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2497 +#: flatcamGUI/FlatCAMGUI.py:2504 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2556 +#: flatcamGUI/FlatCAMGUI.py:2563 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2576 +#: flatcamGUI/FlatCAMGUI.py:2583 msgid "" "Please select geometry items \n" "on which to perform union." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2647 flatcamGUI/FlatCAMGUI.py:2859 +#: flatcamGUI/FlatCAMGUI.py:2654 flatcamGUI/FlatCAMGUI.py:2866 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2731 flatcamGUI/FlatCAMGUI.py:2926 +#: flatcamGUI/FlatCAMGUI.py:2738 flatcamGUI/FlatCAMGUI.py:2933 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2777 flatcamGUI/FlatCAMGUI.py:2972 +#: flatcamGUI/FlatCAMGUI.py:2784 flatcamGUI/FlatCAMGUI.py:2979 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2986 +#: flatcamGUI/FlatCAMGUI.py:2993 msgid "New Tool ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2987 +#: flatcamGUI/FlatCAMGUI.py:2994 msgid "Enter a Tool Diameter:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3029 +#: flatcamGUI/FlatCAMGUI.py:3036 msgid "Measurement Tool exit..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3324 +#: flatcamGUI/FlatCAMGUI.py:3331 msgid "Grid X value:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3326 +#: flatcamGUI/FlatCAMGUI.py:3333 msgid "This is the Grid snap value on X axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3331 +#: flatcamGUI/FlatCAMGUI.py:3338 msgid "Grid Y value:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3333 +#: flatcamGUI/FlatCAMGUI.py:3340 msgid "This is the Grid snap value on Y axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3338 +#: flatcamGUI/FlatCAMGUI.py:3345 msgid "Snap Max:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3343 +#: flatcamGUI/FlatCAMGUI.py:3350 msgid "Workspace:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3345 +#: flatcamGUI/FlatCAMGUI.py:3352 msgid "" "Draw a delimiting rectangle on canvas.\n" "The purpose is to illustrate the limits for our work." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3348 +#: flatcamGUI/FlatCAMGUI.py:3355 msgid "Wk. format:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3350 +#: flatcamGUI/FlatCAMGUI.py:3357 msgid "" "Select the type of rectangle to be used on canvas,\n" "as valid workspace." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3363 +#: flatcamGUI/FlatCAMGUI.py:3370 msgid "Plot Fill:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3365 +#: flatcamGUI/FlatCAMGUI.py:3372 msgid "" "Set the fill color for plotted objects.\n" "First 6 digits are the color and the last 2\n" "digits are for alpha (transparency) level." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3379 flatcamGUI/FlatCAMGUI.py:3429 -#: flatcamGUI/FlatCAMGUI.py:3479 +#: flatcamGUI/FlatCAMGUI.py:3386 flatcamGUI/FlatCAMGUI.py:3436 +#: flatcamGUI/FlatCAMGUI.py:3486 msgid "Alpha Level:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3381 +#: flatcamGUI/FlatCAMGUI.py:3388 msgid "Set the fill transparency for plotted objects." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3398 +#: flatcamGUI/FlatCAMGUI.py:3405 msgid "Plot Line:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3400 +#: flatcamGUI/FlatCAMGUI.py:3407 msgid "Set the line color for plotted objects." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3412 +#: flatcamGUI/FlatCAMGUI.py:3419 msgid "Sel. Fill:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3414 +#: flatcamGUI/FlatCAMGUI.py:3421 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from left to right.\n" @@ -4993,23 +5020,23 @@ msgid "" "digits are for alpha (transparency) level." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3431 +#: flatcamGUI/FlatCAMGUI.py:3438 msgid "Set the fill transparency for the 'left to right' selection box." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3448 +#: flatcamGUI/FlatCAMGUI.py:3455 msgid "Sel. Line:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3450 +#: flatcamGUI/FlatCAMGUI.py:3457 msgid "Set the line color for the 'left to right' selection box." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3462 +#: flatcamGUI/FlatCAMGUI.py:3469 msgid "Sel2. Fill:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3464 +#: flatcamGUI/FlatCAMGUI.py:3471 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from right to left.\n" @@ -5017,116 +5044,116 @@ msgid "" "digits are for alpha (transparency) level." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3481 +#: flatcamGUI/FlatCAMGUI.py:3488 msgid "Set the fill transparency for selection 'right to left' box." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3498 +#: flatcamGUI/FlatCAMGUI.py:3505 msgid "Sel2. Line:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3500 +#: flatcamGUI/FlatCAMGUI.py:3507 msgid "Set the line color for the 'right to left' selection box." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3512 +#: flatcamGUI/FlatCAMGUI.py:3519 msgid "Editor Draw:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3514 +#: flatcamGUI/FlatCAMGUI.py:3521 msgid "Set the color for the shape." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3526 +#: flatcamGUI/FlatCAMGUI.py:3533 msgid "Editor Draw Sel.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3528 +#: flatcamGUI/FlatCAMGUI.py:3535 msgid "Set the color of the shape when selected." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3540 +#: flatcamGUI/FlatCAMGUI.py:3547 msgid "Project Items:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3542 +#: flatcamGUI/FlatCAMGUI.py:3549 msgid "Set the color of the items in Project Tab Tree." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3553 +#: flatcamGUI/FlatCAMGUI.py:3560 msgid "Proj. Dis. Items:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3555 +#: flatcamGUI/FlatCAMGUI.py:3562 msgid "" "Set the color of the items in Project Tab Tree,\n" "for the case when the items are disabled." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3606 +#: flatcamGUI/FlatCAMGUI.py:3613 msgid "GUI Settings" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3613 +#: flatcamGUI/FlatCAMGUI.py:3620 msgid "Layout:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3615 +#: flatcamGUI/FlatCAMGUI.py:3622 msgid "" "Select an layout for FlatCAM.\n" "It is applied immediately." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3631 +#: flatcamGUI/FlatCAMGUI.py:3638 msgid "Style:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3633 +#: flatcamGUI/FlatCAMGUI.py:3640 msgid "" "Select an style for FlatCAM.\n" "It will be applied at the next app start." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3644 +#: flatcamGUI/FlatCAMGUI.py:3651 msgid "HDPI Support:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3646 +#: flatcamGUI/FlatCAMGUI.py:3653 msgid "" "Enable High DPI support for FlatCAM.\n" "It will be applied at the next app start." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3659 +#: flatcamGUI/FlatCAMGUI.py:3666 msgid "Clear GUI Settings:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3661 +#: flatcamGUI/FlatCAMGUI.py:3668 msgid "" "Clear the GUI settings for FlatCAM,\n" "such as: layout, gui state, style, hdpi support etc." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3664 +#: flatcamGUI/FlatCAMGUI.py:3671 msgid "Clear" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3668 +#: flatcamGUI/FlatCAMGUI.py:3675 msgid "Hover Shape:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3670 +#: flatcamGUI/FlatCAMGUI.py:3677 msgid "" "Enable display of a hover shape for FlatCAM objects.\n" "It is displayed whenever the mouse cursor is hovering\n" "over any kind of not-selected object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3677 +#: flatcamGUI/FlatCAMGUI.py:3684 msgid "Sel. Shape:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3679 +#: flatcamGUI/FlatCAMGUI.py:3686 msgid "" "Enable the display of a selection shape for FlatCAM objects.\n" "It is displayed whenever the mouse selects an object\n" @@ -5134,34 +5161,34 @@ msgid "" "right to left." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3721 +#: flatcamGUI/FlatCAMGUI.py:3728 msgid "Are you sure you want to delete the GUI Settings? \n" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3724 +#: flatcamGUI/FlatCAMGUI.py:3731 msgid "Clear GUI Settings" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3745 +#: flatcamGUI/FlatCAMGUI.py:3752 msgid "App Preferences" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3751 +#: flatcamGUI/FlatCAMGUI.py:3758 msgid "Units:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3752 +#: flatcamGUI/FlatCAMGUI.py:3759 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" "FLatCAM is started." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3759 +#: flatcamGUI/FlatCAMGUI.py:3766 msgid "APP. LEVEL:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3760 +#: flatcamGUI/FlatCAMGUI.py:3767 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -5171,19 +5198,19 @@ msgid "" "the Selected Tab for all kinds of FlatCAM objects." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3769 +#: flatcamGUI/FlatCAMGUI.py:3776 msgid "Languages:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3770 +#: flatcamGUI/FlatCAMGUI.py:3777 msgid "Set the language used throughout FlatCAM." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3773 +#: flatcamGUI/FlatCAMGUI.py:3780 msgid "Apply Language" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3774 +#: flatcamGUI/FlatCAMGUI.py:3781 msgid "" "Set the language used throughout FlatCAM.\n" "The app will restart after click.Windows: When FlatCAM is installed in " @@ -5194,91 +5221,91 @@ msgid "" "applied at the next app start." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3783 +#: flatcamGUI/FlatCAMGUI.py:3790 msgid "Shell at StartUp:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3785 flatcamGUI/FlatCAMGUI.py:3790 +#: flatcamGUI/FlatCAMGUI.py:3792 flatcamGUI/FlatCAMGUI.py:3797 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3795 +#: flatcamGUI/FlatCAMGUI.py:3802 msgid "Version Check:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3797 flatcamGUI/FlatCAMGUI.py:3802 +#: flatcamGUI/FlatCAMGUI.py:3804 flatcamGUI/FlatCAMGUI.py:3809 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3807 +#: flatcamGUI/FlatCAMGUI.py:3814 msgid "Send Stats:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3809 flatcamGUI/FlatCAMGUI.py:3814 +#: flatcamGUI/FlatCAMGUI.py:3816 flatcamGUI/FlatCAMGUI.py:3821 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3821 +#: flatcamGUI/FlatCAMGUI.py:3828 msgid "Pan Button:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3822 +#: flatcamGUI/FlatCAMGUI.py:3829 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" "- RMB --> Right Mouse Button" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3829 +#: flatcamGUI/FlatCAMGUI.py:3836 msgid "Multiple Sel:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3830 +#: flatcamGUI/FlatCAMGUI.py:3837 msgid "Select the key used for multiple selection." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3835 +#: flatcamGUI/FlatCAMGUI.py:3842 msgid "Project at StartUp:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3837 flatcamGUI/FlatCAMGUI.py:3842 +#: flatcamGUI/FlatCAMGUI.py:3844 flatcamGUI/FlatCAMGUI.py:3849 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3847 +#: flatcamGUI/FlatCAMGUI.py:3854 msgid "Project AutoHide:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3849 flatcamGUI/FlatCAMGUI.py:3855 +#: flatcamGUI/FlatCAMGUI.py:3856 flatcamGUI/FlatCAMGUI.py:3862 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "hide automatically when there are no objects loaded and\n" "to show whenever a new object is created." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3861 +#: flatcamGUI/FlatCAMGUI.py:3868 msgid "Enable ToolTips:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3863 flatcamGUI/FlatCAMGUI.py:3868 +#: flatcamGUI/FlatCAMGUI.py:3870 flatcamGUI/FlatCAMGUI.py:3875 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3871 +#: flatcamGUI/FlatCAMGUI.py:3878 msgid "Workers number:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3873 flatcamGUI/FlatCAMGUI.py:3882 +#: flatcamGUI/FlatCAMGUI.py:3880 flatcamGUI/FlatCAMGUI.py:3889 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -5288,7 +5315,7 @@ msgid "" "After change, it will be applied at next App start." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3894 flatcamGUI/FlatCAMGUI.py:3903 +#: flatcamGUI/FlatCAMGUI.py:3901 flatcamGUI/FlatCAMGUI.py:3910 msgid "" "This value can counter the effect of the Circle Steps\n" "parameter. Default value is 0.01.\n" @@ -5298,11 +5325,11 @@ msgid "" "performance at the expense of level of detail." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3939 +#: flatcamGUI/FlatCAMGUI.py:3946 msgid "\"Open\" behavior" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3941 +#: flatcamGUI/FlatCAMGUI.py:3948 msgid "" "When checked the path for the last saved file is used when saving files,\n" "and the path for the last opened file is used when opening files.\n" @@ -5311,108 +5338,108 @@ msgid "" "path for saving files or the path for opening files." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3950 +#: flatcamGUI/FlatCAMGUI.py:3957 msgid "Save Compressed Project" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3952 +#: flatcamGUI/FlatCAMGUI.py:3959 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3963 +#: flatcamGUI/FlatCAMGUI.py:3970 msgid "Compression Level:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3965 +#: flatcamGUI/FlatCAMGUI.py:3972 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" "but require more RAM usage and more processing time." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3991 flatcamGUI/FlatCAMGUI.py:4360 -#: flatcamGUI/FlatCAMGUI.py:5030 flatcamGUI/FlatCAMGUI.py:5402 +#: flatcamGUI/FlatCAMGUI.py:3998 flatcamGUI/FlatCAMGUI.py:4367 +#: flatcamGUI/FlatCAMGUI.py:5037 flatcamGUI/FlatCAMGUI.py:5409 #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:505 #: flatcamGUI/ObjectUI.py:833 flatcamGUI/ObjectUI.py:1350 msgid "Plot Options:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3998 flatcamGUI/FlatCAMGUI.py:4372 +#: flatcamGUI/FlatCAMGUI.py:4005 flatcamGUI/FlatCAMGUI.py:4379 #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:506 msgid "Solid" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4000 flatcamGUI/ObjectUI.py:158 +#: flatcamGUI/FlatCAMGUI.py:4007 flatcamGUI/ObjectUI.py:158 msgid "Solid color polygons." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4005 flatcamGUI/ObjectUI.py:164 +#: flatcamGUI/FlatCAMGUI.py:4012 flatcamGUI/ObjectUI.py:164 msgid "M-Color" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4007 flatcamGUI/ObjectUI.py:166 +#: flatcamGUI/FlatCAMGUI.py:4014 flatcamGUI/ObjectUI.py:166 msgid "Draw polygons in different colors." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4012 flatcamGUI/FlatCAMGUI.py:4366 -#: flatcamGUI/FlatCAMGUI.py:5034 flatcamGUI/ObjectUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:4019 flatcamGUI/FlatCAMGUI.py:4373 +#: flatcamGUI/FlatCAMGUI.py:5041 flatcamGUI/ObjectUI.py:172 msgid "Plot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4014 flatcamGUI/FlatCAMGUI.py:5036 +#: flatcamGUI/FlatCAMGUI.py:4021 flatcamGUI/FlatCAMGUI.py:5043 #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:546 #: flatcamGUI/ObjectUI.py:879 flatcamGUI/ObjectUI.py:1437 msgid "Plot (show) this object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4019 flatcamGUI/FlatCAMGUI.py:5043 -#: flatcamGUI/FlatCAMGUI.py:5438 +#: flatcamGUI/FlatCAMGUI.py:4026 flatcamGUI/FlatCAMGUI.py:5050 +#: flatcamGUI/FlatCAMGUI.py:5445 msgid "Circle Steps:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4021 +#: flatcamGUI/FlatCAMGUI.py:4028 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4036 +#: flatcamGUI/FlatCAMGUI.py:4043 msgid "Gerber Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4040 flatcamGUI/ObjectUI.py:251 +#: flatcamGUI/FlatCAMGUI.py:4047 flatcamGUI/ObjectUI.py:251 msgid "Isolation Routing:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4042 flatcamGUI/ObjectUI.py:253 +#: flatcamGUI/FlatCAMGUI.py:4049 flatcamGUI/ObjectUI.py:253 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4053 flatcamGUI/FlatCAMGUI.py:4753 -#: flatcamGUI/FlatCAMGUI.py:5726 flatcamGUI/ObjectUI.py:788 +#: flatcamGUI/FlatCAMGUI.py:4060 flatcamGUI/FlatCAMGUI.py:4760 +#: flatcamGUI/FlatCAMGUI.py:5733 flatcamGUI/ObjectUI.py:788 #: flatcamGUI/ObjectUI.py:804 msgid "Diameter of the cutting tool." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4060 +#: flatcamGUI/FlatCAMGUI.py:4067 msgid "Width (# passes):" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4062 flatcamGUI/ObjectUI.py:275 +#: flatcamGUI/FlatCAMGUI.py:4069 flatcamGUI/ObjectUI.py:275 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4070 flatcamGUI/ObjectUI.py:283 +#: flatcamGUI/FlatCAMGUI.py:4077 flatcamGUI/ObjectUI.py:283 msgid "Pass overlap:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4072 flatcamGUI/ObjectUI.py:285 +#: flatcamGUI/FlatCAMGUI.py:4079 flatcamGUI/ObjectUI.py:285 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -5421,42 +5448,42 @@ msgid "" "above." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4080 flatcamGUI/ObjectUI.py:295 +#: flatcamGUI/FlatCAMGUI.py:4087 flatcamGUI/ObjectUI.py:295 msgid "Milling Type:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4082 flatcamGUI/ObjectUI.py:297 +#: flatcamGUI/FlatCAMGUI.py:4089 flatcamGUI/ObjectUI.py:297 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" "- conventional / useful when there is no backlash compensation" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4092 +#: flatcamGUI/FlatCAMGUI.py:4099 msgid "Combine Passes" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4094 flatcamGUI/ObjectUI.py:309 +#: flatcamGUI/FlatCAMGUI.py:4101 flatcamGUI/ObjectUI.py:309 msgid "Combine all passes into one object" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4099 +#: flatcamGUI/FlatCAMGUI.py:4106 msgid "Clear non-copper:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4101 flatcamGUI/FlatCAMGUI.py:5614 +#: flatcamGUI/FlatCAMGUI.py:4108 flatcamGUI/FlatCAMGUI.py:5621 #: flatcamGUI/ObjectUI.py:386 msgid "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4110 flatcamGUI/FlatCAMGUI.py:4136 +#: flatcamGUI/FlatCAMGUI.py:4117 flatcamGUI/FlatCAMGUI.py:4143 #: flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464 msgid "Boundary Margin:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4112 flatcamGUI/ObjectUI.py:432 +#: flatcamGUI/FlatCAMGUI.py:4119 flatcamGUI/ObjectUI.py:432 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -5464,27 +5491,27 @@ msgid "" "distance." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4122 flatcamGUI/FlatCAMGUI.py:4145 +#: flatcamGUI/FlatCAMGUI.py:4129 flatcamGUI/FlatCAMGUI.py:4152 msgid "Rounded corners" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4124 +#: flatcamGUI/FlatCAMGUI.py:4131 msgid "" "Creates a Geometry objects with polygons\n" "covering the copper-free areas of the PCB." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4130 flatcamGUI/ObjectUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:4137 flatcamGUI/ObjectUI.py:454 msgid "Bounding Box:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4138 flatcamGUI/ObjectUI.py:466 +#: flatcamGUI/FlatCAMGUI.py:4145 flatcamGUI/ObjectUI.py:466 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4147 flatcamGUI/ObjectUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:4154 flatcamGUI/ObjectUI.py:476 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -5492,92 +5519,92 @@ msgid "" "the margin." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4161 +#: flatcamGUI/FlatCAMGUI.py:4168 msgid "Gerber Adv. Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4165 +#: flatcamGUI/FlatCAMGUI.py:4172 msgid "Advanced Param.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4167 +#: flatcamGUI/FlatCAMGUI.py:4174 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" "Advanced App. Level." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4177 flatcamGUI/ObjectUI.py:314 +#: flatcamGUI/FlatCAMGUI.py:4184 flatcamGUI/ObjectUI.py:314 msgid "\"Follow\"" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4179 flatcamGUI/ObjectUI.py:316 +#: flatcamGUI/FlatCAMGUI.py:4186 flatcamGUI/ObjectUI.py:316 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" "the middle of the trace." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4187 +#: flatcamGUI/FlatCAMGUI.py:4194 msgid "Table Show/Hide" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4189 +#: flatcamGUI/FlatCAMGUI.py:4196 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" "that are drawn on canvas." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4228 +#: flatcamGUI/FlatCAMGUI.py:4235 msgid "Gerber Export" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4231 flatcamGUI/FlatCAMGUI.py:4902 +#: flatcamGUI/FlatCAMGUI.py:4238 flatcamGUI/FlatCAMGUI.py:4909 msgid "Export Options:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4233 +#: flatcamGUI/FlatCAMGUI.py:4240 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Gerber menu entry." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4242 flatcamGUI/FlatCAMGUI.py:4913 +#: flatcamGUI/FlatCAMGUI.py:4249 flatcamGUI/FlatCAMGUI.py:4920 msgid "Units:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4244 flatcamGUI/FlatCAMGUI.py:4250 +#: flatcamGUI/FlatCAMGUI.py:4251 flatcamGUI/FlatCAMGUI.py:4257 msgid "The units used in the Gerber file." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4256 flatcamGUI/FlatCAMGUI.py:4927 +#: flatcamGUI/FlatCAMGUI.py:4263 flatcamGUI/FlatCAMGUI.py:4934 msgid "Int/Decimals:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4258 +#: flatcamGUI/FlatCAMGUI.py:4265 msgid "" "The number of digits in the whole part of the number\n" "and in the fractional part of the number." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4269 +#: flatcamGUI/FlatCAMGUI.py:4276 msgid "" "This numbers signify the number of digits in\n" "the whole part of Gerber coordinates." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4283 +#: flatcamGUI/FlatCAMGUI.py:4290 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Gerber coordinates." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4292 flatcamGUI/FlatCAMGUI.py:4988 +#: flatcamGUI/FlatCAMGUI.py:4299 flatcamGUI/FlatCAMGUI.py:4995 msgid "Zeros:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4295 flatcamGUI/FlatCAMGUI.py:4305 +#: flatcamGUI/FlatCAMGUI.py:4302 flatcamGUI/FlatCAMGUI.py:4312 msgid "" "This sets the type of Gerber zeros.\n" "If LZ then Leading Zeros are removed and\n" @@ -5586,23 +5613,23 @@ msgid "" "and Leading Zeros are kept." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4325 flatcamGUI/FlatCAMGUI.py:5368 -#: flatcamGUI/FlatCAMGUI.py:5612 flatcamGUI/FlatCAMGUI.py:5713 -#: flatcamGUI/FlatCAMGUI.py:5792 flatcamGUI/FlatCAMGUI.py:5851 -#: flatcamGUI/FlatCAMGUI.py:5954 flatcamGUI/FlatCAMGUI.py:6015 -#: flatcamGUI/FlatCAMGUI.py:6214 flatcamGUI/FlatCAMGUI.py:6341 +#: flatcamGUI/FlatCAMGUI.py:4332 flatcamGUI/FlatCAMGUI.py:5375 +#: flatcamGUI/FlatCAMGUI.py:5619 flatcamGUI/FlatCAMGUI.py:5720 +#: flatcamGUI/FlatCAMGUI.py:5799 flatcamGUI/FlatCAMGUI.py:5858 +#: flatcamGUI/FlatCAMGUI.py:5961 flatcamGUI/FlatCAMGUI.py:6022 +#: flatcamGUI/FlatCAMGUI.py:6221 flatcamGUI/FlatCAMGUI.py:6348 msgid "Parameters:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4327 +#: flatcamGUI/FlatCAMGUI.py:4334 msgid "A list of Gerber Editor parameters." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4335 flatcamGUI/FlatCAMGUI.py:5378 +#: flatcamGUI/FlatCAMGUI.py:4342 flatcamGUI/FlatCAMGUI.py:5385 msgid "Selection limit:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4337 +#: flatcamGUI/FlatCAMGUI.py:4344 msgid "" "Set the number of selected Gerber geometry\n" "items above which the utility geometry\n" @@ -5611,15 +5638,15 @@ msgid "" "large number of geometric elements." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4357 +#: flatcamGUI/FlatCAMGUI.py:4364 msgid "Excellon General" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4379 +#: flatcamGUI/FlatCAMGUI.py:4386 msgid "Excellon Format:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4381 +#: flatcamGUI/FlatCAMGUI.py:4388 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -5642,41 +5669,41 @@ msgid "" "KiCAD 3:5 INCH TZ" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4406 +#: flatcamGUI/FlatCAMGUI.py:4413 msgid "INCH:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4409 +#: flatcamGUI/FlatCAMGUI.py:4416 msgid "Default values for INCH are 2:4" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4417 flatcamGUI/FlatCAMGUI.py:4450 -#: flatcamGUI/FlatCAMGUI.py:4942 +#: flatcamGUI/FlatCAMGUI.py:4424 flatcamGUI/FlatCAMGUI.py:4457 +#: flatcamGUI/FlatCAMGUI.py:4949 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4431 flatcamGUI/FlatCAMGUI.py:4464 -#: flatcamGUI/FlatCAMGUI.py:4956 +#: flatcamGUI/FlatCAMGUI.py:4438 flatcamGUI/FlatCAMGUI.py:4471 +#: flatcamGUI/FlatCAMGUI.py:4963 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4439 +#: flatcamGUI/FlatCAMGUI.py:4446 msgid "METRIC:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4442 +#: flatcamGUI/FlatCAMGUI.py:4449 msgid "Default values for METRIC are 3:3" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4473 +#: flatcamGUI/FlatCAMGUI.py:4480 msgid "Default Zeros:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4476 flatcamGUI/FlatCAMGUI.py:4991 +#: flatcamGUI/FlatCAMGUI.py:4483 flatcamGUI/FlatCAMGUI.py:4998 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -5685,7 +5712,7 @@ msgid "" "and Leading Zeros are removed." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4487 +#: flatcamGUI/FlatCAMGUI.py:4494 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -5695,11 +5722,11 @@ msgid "" "and Leading Zeros are removed." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4501 +#: flatcamGUI/FlatCAMGUI.py:4508 msgid "Default Units:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4504 +#: flatcamGUI/FlatCAMGUI.py:4511 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -5707,22 +5734,22 @@ msgid "" "therefore this parameter will be used." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4515 +#: flatcamGUI/FlatCAMGUI.py:4522 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" "therefore this parameter will be used." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4531 +#: flatcamGUI/FlatCAMGUI.py:4538 msgid "Excellon Optimization:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4538 +#: flatcamGUI/FlatCAMGUI.py:4545 msgid "Algorithm: " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4541 flatcamGUI/FlatCAMGUI.py:4554 +#: flatcamGUI/FlatCAMGUI.py:4548 flatcamGUI/FlatCAMGUI.py:4561 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n" @@ -5734,11 +5761,11 @@ msgid "" "Travelling Salesman algorithm for path optimization." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4566 +#: flatcamGUI/FlatCAMGUI.py:4573 msgid "Optimization Time: " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4569 +#: flatcamGUI/FlatCAMGUI.py:4576 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -5746,88 +5773,88 @@ msgid "" "In seconds." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4611 +#: flatcamGUI/FlatCAMGUI.py:4618 msgid "Excellon Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4614 flatcamGUI/ObjectUI.py:584 +#: flatcamGUI/FlatCAMGUI.py:4621 flatcamGUI/ObjectUI.py:584 msgid "Create CNC Job" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4616 +#: flatcamGUI/FlatCAMGUI.py:4623 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4624 flatcamGUI/FlatCAMGUI.py:5094 -#: flatcamGUI/FlatCAMGUI.py:6150 flatcamGUI/ObjectUI.py:595 +#: flatcamGUI/FlatCAMGUI.py:4631 flatcamGUI/FlatCAMGUI.py:5101 +#: flatcamGUI/FlatCAMGUI.py:6157 flatcamGUI/ObjectUI.py:595 #: flatcamGUI/ObjectUI.py:1062 flatcamTools/ToolCalculators.py:108 msgid "Cut Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4626 flatcamGUI/ObjectUI.py:597 +#: flatcamGUI/FlatCAMGUI.py:4633 flatcamGUI/ObjectUI.py:597 msgid "" "Drill depth (negative)\n" "below the copper surface." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4633 flatcamGUI/FlatCAMGUI.py:5127 +#: flatcamGUI/FlatCAMGUI.py:4640 flatcamGUI/FlatCAMGUI.py:5134 #: flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1098 msgid "Travel Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4635 flatcamGUI/ObjectUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:4642 flatcamGUI/ObjectUI.py:607 msgid "" "Tool height when travelling\n" "across the XY plane." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4643 flatcamGUI/FlatCAMGUI.py:5137 +#: flatcamGUI/FlatCAMGUI.py:4650 flatcamGUI/FlatCAMGUI.py:5144 msgid "Tool change:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4645 flatcamGUI/FlatCAMGUI.py:5139 +#: flatcamGUI/FlatCAMGUI.py:4652 flatcamGUI/FlatCAMGUI.py:5146 #: flatcamGUI/ObjectUI.py:617 msgid "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4652 flatcamGUI/FlatCAMGUI.py:5147 +#: flatcamGUI/FlatCAMGUI.py:4659 flatcamGUI/FlatCAMGUI.py:5154 msgid "Toolchange Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4654 flatcamGUI/FlatCAMGUI.py:5149 +#: flatcamGUI/FlatCAMGUI.py:4661 flatcamGUI/FlatCAMGUI.py:5156 msgid "Toolchange Z position." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4660 +#: flatcamGUI/FlatCAMGUI.py:4667 msgid "Feedrate:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4662 +#: flatcamGUI/FlatCAMGUI.py:4669 msgid "" "Tool speed while drilling\n" "(in units per minute)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4670 +#: flatcamGUI/FlatCAMGUI.py:4677 msgid "Spindle Speed:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4672 flatcamGUI/FlatCAMGUI.py:5179 +#: flatcamGUI/FlatCAMGUI.py:4679 flatcamGUI/FlatCAMGUI.py:5186 #: flatcamGUI/ObjectUI.py:684 msgid "" "Speed of the spindle\n" "in RPM (optional)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4680 flatcamGUI/FlatCAMGUI.py:5187 +#: flatcamGUI/FlatCAMGUI.py:4687 flatcamGUI/FlatCAMGUI.py:5194 msgid "Spindle dir.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4682 flatcamGUI/FlatCAMGUI.py:5189 +#: flatcamGUI/FlatCAMGUI.py:4689 flatcamGUI/FlatCAMGUI.py:5196 msgid "" "This sets the direction that the spindle is rotating.\n" "It can be either:\n" @@ -5835,43 +5862,43 @@ msgid "" "- CCW = counter clockwise" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4694 flatcamGUI/FlatCAMGUI.py:5201 +#: flatcamGUI/FlatCAMGUI.py:4701 flatcamGUI/FlatCAMGUI.py:5208 #: flatcamGUI/ObjectUI.py:692 flatcamGUI/ObjectUI.py:1224 msgid "Dwell:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4696 flatcamGUI/FlatCAMGUI.py:5203 +#: flatcamGUI/FlatCAMGUI.py:4703 flatcamGUI/FlatCAMGUI.py:5210 #: flatcamGUI/ObjectUI.py:694 flatcamGUI/ObjectUI.py:1227 msgid "" "Pause to allow the spindle to reach its\n" "speed before cutting." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4699 flatcamGUI/FlatCAMGUI.py:5206 +#: flatcamGUI/FlatCAMGUI.py:4706 flatcamGUI/FlatCAMGUI.py:5213 msgid "Duration:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4701 flatcamGUI/FlatCAMGUI.py:5208 +#: flatcamGUI/FlatCAMGUI.py:4708 flatcamGUI/FlatCAMGUI.py:5215 #: flatcamGUI/ObjectUI.py:699 flatcamGUI/ObjectUI.py:1234 msgid "Number of milliseconds for spindle to dwell." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4713 flatcamGUI/FlatCAMGUI.py:5218 +#: flatcamGUI/FlatCAMGUI.py:4720 flatcamGUI/FlatCAMGUI.py:5225 #: flatcamGUI/ObjectUI.py:707 msgid "Postprocessor:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4715 +#: flatcamGUI/FlatCAMGUI.py:4722 msgid "" "The postprocessor file that dictates\n" "gcode output." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4725 +#: flatcamGUI/FlatCAMGUI.py:4732 msgid "Gcode: " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4727 +#: flatcamGUI/FlatCAMGUI.py:4734 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -5879,93 +5906,93 @@ msgid "" "converted to drills." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4743 flatcamGUI/ObjectUI.py:772 +#: flatcamGUI/FlatCAMGUI.py:4750 flatcamGUI/ObjectUI.py:772 msgid "Mill Holes" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4745 flatcamGUI/ObjectUI.py:774 +#: flatcamGUI/FlatCAMGUI.py:4752 flatcamGUI/ObjectUI.py:774 msgid "Create Geometry for milling holes." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4751 +#: flatcamGUI/FlatCAMGUI.py:4758 msgid "Drill Tool dia:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4758 +#: flatcamGUI/FlatCAMGUI.py:4765 msgid "Slot Tool dia:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4760 +#: flatcamGUI/FlatCAMGUI.py:4767 msgid "" "Diameter of the cutting tool\n" "when milling slots." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4772 +#: flatcamGUI/FlatCAMGUI.py:4779 msgid "Defaults" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4785 +#: flatcamGUI/FlatCAMGUI.py:4792 msgid "Excellon Adv. Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4791 flatcamGUI/FlatCAMGUI.py:5241 +#: flatcamGUI/FlatCAMGUI.py:4798 flatcamGUI/FlatCAMGUI.py:5248 msgid "Advanced Options:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4793 +#: flatcamGUI/FlatCAMGUI.py:4800 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object that are shown when App Level is Advanced." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4801 +#: flatcamGUI/FlatCAMGUI.py:4808 msgid "Offset Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4803 flatcamGUI/ObjectUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:4810 flatcamGUI/ObjectUI.py:574 msgid "" "Some drill bits (the larger ones) need to drill deeper\n" "to create the desired exit hole diameter due of the tip shape.\n" "The value here can compensate the Cut Z parameter." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4810 flatcamGUI/FlatCAMGUI.py:5252 +#: flatcamGUI/FlatCAMGUI.py:4817 flatcamGUI/FlatCAMGUI.py:5259 msgid "Toolchange X,Y:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4812 flatcamGUI/FlatCAMGUI.py:5254 +#: flatcamGUI/FlatCAMGUI.py:4819 flatcamGUI/FlatCAMGUI.py:5261 msgid "Toolchange X,Y position." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4818 flatcamGUI/FlatCAMGUI.py:5261 +#: flatcamGUI/FlatCAMGUI.py:4825 flatcamGUI/FlatCAMGUI.py:5268 #: flatcamGUI/ObjectUI.py:634 msgid "Start move Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4820 +#: flatcamGUI/FlatCAMGUI.py:4827 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4827 flatcamGUI/FlatCAMGUI.py:5271 +#: flatcamGUI/FlatCAMGUI.py:4834 flatcamGUI/FlatCAMGUI.py:5278 #: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1144 msgid "End move Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4829 flatcamGUI/FlatCAMGUI.py:5273 +#: flatcamGUI/FlatCAMGUI.py:4836 flatcamGUI/FlatCAMGUI.py:5280 msgid "" "Height of the tool after\n" "the last move at the end of the job." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4836 flatcamGUI/FlatCAMGUI.py:5281 +#: flatcamGUI/FlatCAMGUI.py:4843 flatcamGUI/FlatCAMGUI.py:5288 #: flatcamGUI/ObjectUI.py:665 msgid "Feedrate Rapids:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4838 flatcamGUI/ObjectUI.py:667 +#: flatcamGUI/FlatCAMGUI.py:4845 flatcamGUI/ObjectUI.py:667 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -5974,33 +6001,33 @@ msgid "" "ignore for any other cases." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4849 flatcamGUI/FlatCAMGUI.py:5305 +#: flatcamGUI/FlatCAMGUI.py:4856 flatcamGUI/FlatCAMGUI.py:5312 #: flatcamGUI/ObjectUI.py:718 flatcamGUI/ObjectUI.py:1256 msgid "Probe Z depth:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4851 flatcamGUI/FlatCAMGUI.py:5307 +#: flatcamGUI/FlatCAMGUI.py:4858 flatcamGUI/FlatCAMGUI.py:5314 #: flatcamGUI/ObjectUI.py:720 flatcamGUI/ObjectUI.py:1259 msgid "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4859 flatcamGUI/FlatCAMGUI.py:5315 +#: flatcamGUI/FlatCAMGUI.py:4866 flatcamGUI/FlatCAMGUI.py:5322 #: flatcamGUI/ObjectUI.py:730 flatcamGUI/ObjectUI.py:1270 msgid "Feedrate Probe:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4861 flatcamGUI/FlatCAMGUI.py:5317 +#: flatcamGUI/FlatCAMGUI.py:4868 flatcamGUI/FlatCAMGUI.py:5324 #: flatcamGUI/ObjectUI.py:732 flatcamGUI/ObjectUI.py:1273 msgid "The feedrate used while the probe is probing." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4867 flatcamGUI/FlatCAMGUI.py:5324 +#: flatcamGUI/FlatCAMGUI.py:4874 flatcamGUI/FlatCAMGUI.py:5331 msgid "Fast Plunge:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4869 flatcamGUI/FlatCAMGUI.py:5326 +#: flatcamGUI/FlatCAMGUI.py:4876 flatcamGUI/FlatCAMGUI.py:5333 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -6008,11 +6035,11 @@ msgid "" "WARNING: the move is done at Toolchange X,Y coords." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4878 +#: flatcamGUI/FlatCAMGUI.py:4885 msgid "Fast Retract:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4880 +#: flatcamGUI/FlatCAMGUI.py:4887 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -6022,21 +6049,21 @@ msgid "" "(travel height) is done as fast as possible (G0) in one move." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4899 +#: flatcamGUI/FlatCAMGUI.py:4906 msgid "Excellon Export" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4904 +#: flatcamGUI/FlatCAMGUI.py:4911 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4915 flatcamGUI/FlatCAMGUI.py:4921 +#: flatcamGUI/FlatCAMGUI.py:4922 flatcamGUI/FlatCAMGUI.py:4928 msgid "The units used in the Excellon file." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4929 +#: flatcamGUI/FlatCAMGUI.py:4936 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -6044,11 +6071,11 @@ msgid "" "coordinates are not using period." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4965 +#: flatcamGUI/FlatCAMGUI.py:4972 msgid "Format:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4967 flatcamGUI/FlatCAMGUI.py:4977 +#: flatcamGUI/FlatCAMGUI.py:4974 flatcamGUI/FlatCAMGUI.py:4984 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -6058,7 +6085,7 @@ msgid "" "or TZ = trailing zeros are kept." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5001 +#: flatcamGUI/FlatCAMGUI.py:5008 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -6067,64 +6094,64 @@ msgid "" "and Leading Zeros are removed." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5027 +#: flatcamGUI/FlatCAMGUI.py:5034 msgid "Geometry General" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5045 +#: flatcamGUI/FlatCAMGUI.py:5052 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5053 +#: flatcamGUI/FlatCAMGUI.py:5060 msgid "Tools" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5060 +#: flatcamGUI/FlatCAMGUI.py:5067 msgid "Tool dia: " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5062 +#: flatcamGUI/FlatCAMGUI.py:5069 msgid "" "The diameter of the cutting\n" "tool.." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5077 +#: flatcamGUI/FlatCAMGUI.py:5084 msgid "Geometry Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5082 +#: flatcamGUI/FlatCAMGUI.py:5089 msgid "Create CNC Job:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5084 +#: flatcamGUI/FlatCAMGUI.py:5091 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" "Geometry object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5096 flatcamGUI/ObjectUI.py:1065 +#: flatcamGUI/FlatCAMGUI.py:5103 flatcamGUI/ObjectUI.py:1065 msgid "" "Cutting depth (negative)\n" "below the copper surface." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5104 +#: flatcamGUI/FlatCAMGUI.py:5111 msgid "Multidepth" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5106 +#: flatcamGUI/FlatCAMGUI.py:5113 msgid "Multidepth usage: True or False." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5111 +#: flatcamGUI/FlatCAMGUI.py:5118 msgid "Depth/Pass:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5113 +#: flatcamGUI/FlatCAMGUI.py:5120 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -6133,61 +6160,61 @@ msgid "" "which has negative value." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5129 flatcamGUI/ObjectUI.py:1101 +#: flatcamGUI/FlatCAMGUI.py:5136 flatcamGUI/ObjectUI.py:1101 msgid "" "Height of the tool when\n" "moving without cutting." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5156 flatcamGUI/ObjectUI.py:1156 +#: flatcamGUI/FlatCAMGUI.py:5163 flatcamGUI/ObjectUI.py:1156 msgid "Feed Rate X-Y:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5158 flatcamGUI/ObjectUI.py:1159 +#: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/ObjectUI.py:1159 msgid "" "Cutting speed in the XY\n" "plane in units per minute" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5166 +#: flatcamGUI/FlatCAMGUI.py:5173 msgid "Feed Rate Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5168 +#: flatcamGUI/FlatCAMGUI.py:5175 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" "It is called also Plunge." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5177 flatcamGUI/ObjectUI.py:682 +#: flatcamGUI/FlatCAMGUI.py:5184 flatcamGUI/ObjectUI.py:682 #: flatcamGUI/ObjectUI.py:1211 msgid "Spindle speed:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5220 +#: flatcamGUI/FlatCAMGUI.py:5227 msgid "" "The postprocessor file that dictates\n" "Machine Code output." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5236 +#: flatcamGUI/FlatCAMGUI.py:5243 msgid "Geometry Adv. Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5243 +#: flatcamGUI/FlatCAMGUI.py:5250 msgid "" "Parameters to create a CNC Job object\n" "tracing the contours of a Geometry object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5263 +#: flatcamGUI/FlatCAMGUI.py:5270 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5283 +#: flatcamGUI/FlatCAMGUI.py:5290 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -6196,11 +6223,11 @@ msgid "" "ignore for any other cases." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5295 +#: flatcamGUI/FlatCAMGUI.py:5302 msgid "Re-cut 1st pt." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5297 flatcamGUI/ObjectUI.py:1202 +#: flatcamGUI/FlatCAMGUI.py:5304 flatcamGUI/ObjectUI.py:1202 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -6208,37 +6235,37 @@ msgid "" "extended cut over the first cut section." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5336 +#: flatcamGUI/FlatCAMGUI.py:5343 msgid "Seg. X size:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5338 +#: flatcamGUI/FlatCAMGUI.py:5345 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" "A value of 0 means no segmentation on the X axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5347 +#: flatcamGUI/FlatCAMGUI.py:5354 msgid "Seg. Y size:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5349 +#: flatcamGUI/FlatCAMGUI.py:5356 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" "A value of 0 means no segmentation on the Y axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5365 +#: flatcamGUI/FlatCAMGUI.py:5372 msgid "Geometry Editor" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5370 +#: flatcamGUI/FlatCAMGUI.py:5377 msgid "A list of Geometry Editor parameters." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5380 +#: flatcamGUI/FlatCAMGUI.py:5387 msgid "" "Set the number of selected geometry\n" "items above which the utility geometry\n" @@ -6247,20 +6274,20 @@ msgid "" "large number of geometric elements." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5399 +#: flatcamGUI/FlatCAMGUI.py:5406 msgid "CNC Job General" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5412 flatcamGUI/ObjectUI.py:544 +#: flatcamGUI/FlatCAMGUI.py:5419 flatcamGUI/ObjectUI.py:544 #: flatcamGUI/ObjectUI.py:877 flatcamGUI/ObjectUI.py:1434 msgid "Plot Object" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5419 +#: flatcamGUI/FlatCAMGUI.py:5426 msgid "Plot kind:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5421 flatcamGUI/ObjectUI.py:1356 +#: flatcamGUI/FlatCAMGUI.py:5428 flatcamGUI/ObjectUI.py:1356 msgid "" "This selects the kind of geometries on the canvas to plot.\n" "Those can be either of type 'Travel' which means the moves\n" @@ -6268,83 +6295,83 @@ msgid "" "which means the moves that cut into the material." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5440 +#: flatcamGUI/FlatCAMGUI.py:5447 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5450 +#: flatcamGUI/FlatCAMGUI.py:5457 msgid "" "Diameter of the tool to be\n" "rendered in the plot." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5458 +#: flatcamGUI/FlatCAMGUI.py:5465 msgid "Coords dec.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5460 +#: flatcamGUI/FlatCAMGUI.py:5467 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5468 +#: flatcamGUI/FlatCAMGUI.py:5475 msgid "Feedrate dec.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5470 +#: flatcamGUI/FlatCAMGUI.py:5477 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5485 +#: flatcamGUI/FlatCAMGUI.py:5492 msgid "CNC Job Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5488 flatcamGUI/FlatCAMGUI.py:5529 +#: flatcamGUI/FlatCAMGUI.py:5495 flatcamGUI/FlatCAMGUI.py:5536 msgid "Export G-Code:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5490 flatcamGUI/FlatCAMGUI.py:5531 +#: flatcamGUI/FlatCAMGUI.py:5497 flatcamGUI/FlatCAMGUI.py:5538 #: flatcamGUI/ObjectUI.py:1470 msgid "" "Export and save G-Code to\n" "make this object to a file." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5496 +#: flatcamGUI/FlatCAMGUI.py:5503 msgid "Prepend to G-Code:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5498 +#: flatcamGUI/FlatCAMGUI.py:5505 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5507 +#: flatcamGUI/FlatCAMGUI.py:5514 msgid "Append to G-Code:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5509 flatcamGUI/ObjectUI.py:1492 +#: flatcamGUI/FlatCAMGUI.py:5516 flatcamGUI/ObjectUI.py:1492 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" "I.e.: M2 (End of program)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5526 +#: flatcamGUI/FlatCAMGUI.py:5533 msgid "CNC Job Adv. Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5537 flatcamGUI/ObjectUI.py:1510 +#: flatcamGUI/FlatCAMGUI.py:5544 flatcamGUI/ObjectUI.py:1510 msgid "Toolchange G-Code:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5539 +#: flatcamGUI/FlatCAMGUI.py:5546 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -6352,88 +6379,88 @@ msgid "" "or a Toolchange Macro." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5553 flatcamGUI/ObjectUI.py:1532 +#: flatcamGUI/FlatCAMGUI.py:5560 flatcamGUI/ObjectUI.py:1532 msgid "Use Toolchange Macro" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5555 flatcamGUI/ObjectUI.py:1535 +#: flatcamGUI/FlatCAMGUI.py:5562 flatcamGUI/ObjectUI.py:1535 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5567 flatcamGUI/ObjectUI.py:1544 +#: flatcamGUI/FlatCAMGUI.py:5574 flatcamGUI/ObjectUI.py:1544 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" "They have to be surrounded by the '%' symbol" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5574 flatcamGUI/ObjectUI.py:1551 +#: flatcamGUI/FlatCAMGUI.py:5581 flatcamGUI/ObjectUI.py:1551 msgid "Parameters" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5577 flatcamGUI/ObjectUI.py:1554 +#: flatcamGUI/FlatCAMGUI.py:5584 flatcamGUI/ObjectUI.py:1554 msgid "FlatCAM CNC parameters" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5578 flatcamGUI/ObjectUI.py:1555 +#: flatcamGUI/FlatCAMGUI.py:5585 flatcamGUI/ObjectUI.py:1555 msgid "tool = tool number" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5579 flatcamGUI/ObjectUI.py:1556 +#: flatcamGUI/FlatCAMGUI.py:5586 flatcamGUI/ObjectUI.py:1556 msgid "tooldia = tool diameter" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5580 flatcamGUI/ObjectUI.py:1557 +#: flatcamGUI/FlatCAMGUI.py:5587 flatcamGUI/ObjectUI.py:1557 msgid "t_drills = for Excellon, total number of drills" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5581 flatcamGUI/ObjectUI.py:1558 +#: flatcamGUI/FlatCAMGUI.py:5588 flatcamGUI/ObjectUI.py:1558 msgid "x_toolchange = X coord for Toolchange" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5582 flatcamGUI/ObjectUI.py:1559 +#: flatcamGUI/FlatCAMGUI.py:5589 flatcamGUI/ObjectUI.py:1559 msgid "y_toolchange = Y coord for Toolchange" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5583 flatcamGUI/ObjectUI.py:1560 +#: flatcamGUI/FlatCAMGUI.py:5590 flatcamGUI/ObjectUI.py:1560 msgid "z_toolchange = Z coord for Toolchange" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5584 +#: flatcamGUI/FlatCAMGUI.py:5591 msgid "z_cut = Z depth for the cut" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5585 +#: flatcamGUI/FlatCAMGUI.py:5592 msgid "z_move = Z height for travel" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5586 flatcamGUI/ObjectUI.py:1563 +#: flatcamGUI/FlatCAMGUI.py:5593 flatcamGUI/ObjectUI.py:1563 msgid "z_depthpercut = the step value for multidepth cut" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5587 flatcamGUI/ObjectUI.py:1564 +#: flatcamGUI/FlatCAMGUI.py:5594 flatcamGUI/ObjectUI.py:1564 msgid "spindlesspeed = the value for the spindle speed" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5588 flatcamGUI/ObjectUI.py:1565 +#: flatcamGUI/FlatCAMGUI.py:5595 flatcamGUI/ObjectUI.py:1565 msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5609 +#: flatcamGUI/FlatCAMGUI.py:5616 msgid "NCC Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5622 flatcamGUI/FlatCAMGUI.py:6352 +#: flatcamGUI/FlatCAMGUI.py:5629 flatcamGUI/FlatCAMGUI.py:6359 msgid "Tools dia:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5624 +#: flatcamGUI/FlatCAMGUI.py:5631 msgid "Diameters of the cutting tools, separated by ','" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5632 flatcamTools/ToolNonCopperClear.py:167 +#: flatcamGUI/FlatCAMGUI.py:5639 flatcamTools/ToolNonCopperClear.py:167 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -6448,11 +6475,11 @@ msgid "" "due of too many paths." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5648 flatcamTools/ToolNonCopperClear.py:183 +#: flatcamGUI/FlatCAMGUI.py:5655 flatcamTools/ToolNonCopperClear.py:183 msgid "Bounding box margin." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5657 flatcamTools/ToolNonCopperClear.py:192 +#: flatcamGUI/FlatCAMGUI.py:5664 flatcamTools/ToolNonCopperClear.py:192 #: flatcamTools/ToolPaint.py:190 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -6460,12 +6487,12 @@ msgid "" "lines." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5689 flatcamTools/ToolNonCopperClear.py:224 +#: flatcamGUI/FlatCAMGUI.py:5696 flatcamTools/ToolNonCopperClear.py:224 #: flatcamTools/ToolPaint.py:222 msgid "Rest M.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5691 +#: flatcamGUI/FlatCAMGUI.py:5698 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -6475,39 +6502,39 @@ msgid "" "If not checked, use the standard algorithm." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5710 +#: flatcamGUI/FlatCAMGUI.py:5717 msgid "Cutout Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5715 flatcamGUI/ObjectUI.py:402 +#: flatcamGUI/FlatCAMGUI.py:5722 flatcamGUI/ObjectUI.py:402 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" "the original board." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5734 +#: flatcamGUI/FlatCAMGUI.py:5741 msgid "" "Distance from objects at which\n" "to draw the cutout." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5741 flatcamTools/ToolCutOut.py:96 +#: flatcamGUI/FlatCAMGUI.py:5748 flatcamTools/ToolCutOut.py:96 msgid "Gap size:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5743 +#: flatcamGUI/FlatCAMGUI.py:5750 msgid "" "Size of the gaps in the toolpath\n" "that will remain to hold the\n" "board in place." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5751 flatcamTools/ToolCutOut.py:134 +#: flatcamGUI/FlatCAMGUI.py:5758 flatcamTools/ToolCutOut.py:134 msgid "Gaps:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5753 +#: flatcamGUI/FlatCAMGUI.py:5760 msgid "" "Number of bridge gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -6520,57 +6547,57 @@ msgid "" "- 8 - 2*left + 2*right +2*top + 2*bottom" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5774 flatcamTools/ToolCutOut.py:115 +#: flatcamGUI/FlatCAMGUI.py:5781 flatcamTools/ToolCutOut.py:115 msgid "Convex Sh.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5776 +#: flatcamGUI/FlatCAMGUI.py:5783 msgid "Create a convex shape surrounding the entire PCB." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5789 +#: flatcamGUI/FlatCAMGUI.py:5796 msgid "2Sided Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5794 +#: flatcamGUI/FlatCAMGUI.py:5801 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5804 flatcamTools/ToolDblSided.py:235 +#: flatcamGUI/FlatCAMGUI.py:5811 flatcamTools/ToolDblSided.py:235 msgid "Drill diam.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5806 flatcamTools/ToolDblSided.py:226 +#: flatcamGUI/FlatCAMGUI.py:5813 flatcamTools/ToolDblSided.py:226 #: flatcamTools/ToolDblSided.py:237 msgid "Diameter of the drill for the alignment holes." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5815 flatcamTools/ToolDblSided.py:120 +#: flatcamGUI/FlatCAMGUI.py:5822 flatcamTools/ToolDblSided.py:120 msgid "Mirror Axis:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5817 flatcamTools/ToolDblSided.py:122 +#: flatcamGUI/FlatCAMGUI.py:5824 flatcamTools/ToolDblSided.py:122 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5828 flatcamTools/ToolDblSided.py:133 +#: flatcamGUI/FlatCAMGUI.py:5835 flatcamTools/ToolDblSided.py:133 msgid "Axis Ref:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5830 +#: flatcamGUI/FlatCAMGUI.py:5837 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a Geometry object) in \n" "the middle." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5846 +#: flatcamGUI/FlatCAMGUI.py:5853 msgid "Paint Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5853 flatcamGUI/ObjectUI.py:1305 +#: flatcamGUI/FlatCAMGUI.py:5860 flatcamGUI/ObjectUI.py:1305 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -6578,36 +6605,36 @@ msgid "" "to click on the desired polygon." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5877 +#: flatcamGUI/FlatCAMGUI.py:5884 msgid "" "How much (fraction) of the tool\n" "width to overlap each tool pass." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5931 flatcamTools/ToolPaint.py:237 +#: flatcamGUI/FlatCAMGUI.py:5938 flatcamTools/ToolPaint.py:237 msgid "Selection:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5933 +#: flatcamGUI/FlatCAMGUI.py:5940 msgid "How to select the polygons to paint." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5951 +#: flatcamGUI/FlatCAMGUI.py:5958 msgid "Film Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5956 +#: flatcamGUI/FlatCAMGUI.py:5963 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" "The file is saved in SVG format." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5967 flatcamTools/ToolFilm.py:116 +#: flatcamGUI/FlatCAMGUI.py:5974 flatcamTools/ToolFilm.py:116 msgid "Film Type:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5969 flatcamTools/ToolFilm.py:118 +#: flatcamGUI/FlatCAMGUI.py:5976 flatcamTools/ToolFilm.py:118 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -6617,11 +6644,11 @@ msgid "" "The Film format is SVG." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5980 flatcamTools/ToolFilm.py:130 +#: flatcamGUI/FlatCAMGUI.py:5987 flatcamTools/ToolFilm.py:130 msgid "Border:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5982 flatcamTools/ToolFilm.py:132 +#: flatcamGUI/FlatCAMGUI.py:5989 flatcamTools/ToolFilm.py:132 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -6633,11 +6660,11 @@ msgid "" "surroundings if not for this border." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5995 flatcamTools/ToolFilm.py:144 +#: flatcamGUI/FlatCAMGUI.py:6002 flatcamTools/ToolFilm.py:144 msgid "Scale Stroke:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5997 flatcamTools/ToolFilm.py:146 +#: flatcamGUI/FlatCAMGUI.py:6004 flatcamTools/ToolFilm.py:146 msgid "" "Scale the line stroke thickness of each feature in the SVG file.\n" "It means that the line that envelope each SVG feature will be thicker or " @@ -6645,69 +6672,69 @@ msgid "" "therefore the fine features may be more affected by this parameter." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6012 +#: flatcamGUI/FlatCAMGUI.py:6019 msgid "Panelize Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6017 +#: flatcamGUI/FlatCAMGUI.py:6024 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" "at a X distance, Y distance of each other." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6028 flatcamTools/ToolPanelize.py:147 +#: flatcamGUI/FlatCAMGUI.py:6035 flatcamTools/ToolPanelize.py:147 msgid "Spacing cols:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6030 flatcamTools/ToolPanelize.py:149 +#: flatcamGUI/FlatCAMGUI.py:6037 flatcamTools/ToolPanelize.py:149 msgid "" "Spacing between columns of the desired panel.\n" "In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6038 flatcamTools/ToolPanelize.py:156 +#: flatcamGUI/FlatCAMGUI.py:6045 flatcamTools/ToolPanelize.py:156 msgid "Spacing rows:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6040 flatcamTools/ToolPanelize.py:158 +#: flatcamGUI/FlatCAMGUI.py:6047 flatcamTools/ToolPanelize.py:158 msgid "" "Spacing between rows of the desired panel.\n" "In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6048 flatcamTools/ToolPanelize.py:165 +#: flatcamGUI/FlatCAMGUI.py:6055 flatcamTools/ToolPanelize.py:165 msgid "Columns:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6050 flatcamTools/ToolPanelize.py:167 +#: flatcamGUI/FlatCAMGUI.py:6057 flatcamTools/ToolPanelize.py:167 msgid "Number of columns of the desired panel" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6057 flatcamTools/ToolPanelize.py:173 +#: flatcamGUI/FlatCAMGUI.py:6064 flatcamTools/ToolPanelize.py:173 msgid "Rows:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6059 flatcamTools/ToolPanelize.py:175 +#: flatcamGUI/FlatCAMGUI.py:6066 flatcamTools/ToolPanelize.py:175 msgid "Number of rows of the desired panel" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6067 +#: flatcamGUI/FlatCAMGUI.py:6074 msgid "Panel Type:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6069 +#: flatcamGUI/FlatCAMGUI.py:6076 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" "- Geometry" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6078 +#: flatcamGUI/FlatCAMGUI.py:6085 msgid "Constrain within:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6080 flatcamTools/ToolPanelize.py:195 +#: flatcamGUI/FlatCAMGUI.py:6087 flatcamTools/ToolPanelize.py:195 msgid "" "Area define by DX and DY within to constrain the panel.\n" "DX and DY values are in current units.\n" @@ -6716,171 +6743,171 @@ msgid "" "they fit completely within selected area." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6089 flatcamTools/ToolPanelize.py:204 +#: flatcamGUI/FlatCAMGUI.py:6096 flatcamTools/ToolPanelize.py:204 msgid "Width (DX):" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6091 flatcamTools/ToolPanelize.py:206 +#: flatcamGUI/FlatCAMGUI.py:6098 flatcamTools/ToolPanelize.py:206 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6098 flatcamTools/ToolPanelize.py:212 +#: flatcamGUI/FlatCAMGUI.py:6105 flatcamTools/ToolPanelize.py:212 msgid "Height (DY):" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6100 flatcamTools/ToolPanelize.py:214 +#: flatcamGUI/FlatCAMGUI.py:6107 flatcamTools/ToolPanelize.py:214 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6114 +#: flatcamGUI/FlatCAMGUI.py:6121 msgid "Calculators Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6117 +#: flatcamGUI/FlatCAMGUI.py:6124 msgid "V-Shape Tool Calculator:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6119 +#: flatcamGUI/FlatCAMGUI.py:6126 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" "depth-of-cut as parameters." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6130 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/FlatCAMGUI.py:6137 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6132 +#: flatcamGUI/FlatCAMGUI.py:6139 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6140 +#: flatcamGUI/FlatCAMGUI.py:6147 msgid "Tip angle:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6142 +#: flatcamGUI/FlatCAMGUI.py:6149 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6152 +#: flatcamGUI/FlatCAMGUI.py:6159 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6159 +#: flatcamGUI/FlatCAMGUI.py:6166 msgid "ElectroPlating Calculator:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6161 flatcamTools/ToolCalculators.py:152 +#: flatcamGUI/FlatCAMGUI.py:6168 flatcamTools/ToolCalculators.py:152 msgid "" "This calculator is useful for those who plate the via/pad/drill holes,\n" "using a method like grahite ink or calcium hypophosphite ink or palladium " "chloride." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6171 flatcamTools/ToolCalculators.py:161 +#: flatcamGUI/FlatCAMGUI.py:6178 flatcamTools/ToolCalculators.py:161 msgid "Board Length:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6173 flatcamTools/ToolCalculators.py:165 +#: flatcamGUI/FlatCAMGUI.py:6180 flatcamTools/ToolCalculators.py:165 msgid "This is the board length. In centimeters." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6179 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/FlatCAMGUI.py:6186 flatcamTools/ToolCalculators.py:167 msgid "Board Width:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6181 flatcamTools/ToolCalculators.py:171 +#: flatcamGUI/FlatCAMGUI.py:6188 flatcamTools/ToolCalculators.py:171 msgid "This is the board width.In centimeters." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6186 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/FlatCAMGUI.py:6193 flatcamTools/ToolCalculators.py:173 msgid "Current Density:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6189 flatcamTools/ToolCalculators.py:177 +#: flatcamGUI/FlatCAMGUI.py:6196 flatcamTools/ToolCalculators.py:177 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6195 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/FlatCAMGUI.py:6202 flatcamTools/ToolCalculators.py:181 msgid "Copper Growth:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6198 flatcamTools/ToolCalculators.py:185 +#: flatcamGUI/FlatCAMGUI.py:6205 flatcamTools/ToolCalculators.py:185 msgid "" "How thick the copper growth is intended to be.\n" "In microns." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6211 +#: flatcamGUI/FlatCAMGUI.py:6218 msgid "Transform Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6216 +#: flatcamGUI/FlatCAMGUI.py:6223 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6226 +#: flatcamGUI/FlatCAMGUI.py:6233 msgid "Rotate Angle:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6228 +#: flatcamGUI/FlatCAMGUI.py:6235 msgid "Angle for rotation. In degrees." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6235 +#: flatcamGUI/FlatCAMGUI.py:6242 msgid "Skew_X angle:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6237 +#: flatcamGUI/FlatCAMGUI.py:6244 msgid "Angle for Skew/Shear on X axis. In degrees." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6244 +#: flatcamGUI/FlatCAMGUI.py:6251 msgid "Skew_Y angle:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6246 +#: flatcamGUI/FlatCAMGUI.py:6253 msgid "Angle for Skew/Shear on Y axis. In degrees." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6253 +#: flatcamGUI/FlatCAMGUI.py:6260 msgid "Scale_X factor:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6255 +#: flatcamGUI/FlatCAMGUI.py:6262 msgid "Factor for scaling on X axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6262 +#: flatcamGUI/FlatCAMGUI.py:6269 msgid "Scale_Y factor:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6264 +#: flatcamGUI/FlatCAMGUI.py:6271 msgid "Factor for scaling on Y axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6272 +#: flatcamGUI/FlatCAMGUI.py:6279 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6280 flatcamTools/ToolTransform.py:210 +#: flatcamGUI/FlatCAMGUI.py:6287 flatcamTools/ToolTransform.py:210 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -6888,27 +6915,27 @@ msgid "" "of the selected objects when unchecked." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6289 +#: flatcamGUI/FlatCAMGUI.py:6296 msgid "Offset_X val:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6291 +#: flatcamGUI/FlatCAMGUI.py:6298 msgid "Distance to offset on X axis. In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6298 +#: flatcamGUI/FlatCAMGUI.py:6305 msgid "Offset_Y val:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6300 +#: flatcamGUI/FlatCAMGUI.py:6307 msgid "Distance to offset on Y axis. In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6306 +#: flatcamGUI/FlatCAMGUI.py:6313 msgid "Mirror Reference" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6308 flatcamTools/ToolTransform.py:314 +#: flatcamGUI/FlatCAMGUI.py:6315 flatcamTools/ToolTransform.py:314 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -6921,174 +6948,174 @@ msgid "" "Point Entry field and click Flip on X(Y)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6319 +#: flatcamGUI/FlatCAMGUI.py:6326 msgid " Mirror Ref. Point:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6321 flatcamTools/ToolTransform.py:327 +#: flatcamGUI/FlatCAMGUI.py:6328 flatcamTools/ToolTransform.py:327 msgid "" "Coordinates in format (x, y) used as reference for mirroring.\n" "The 'x' in (x, y) will be used when using Flip on X and\n" "the 'y' in (x, y) will be used when using Flip on Y and" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6338 +#: flatcamGUI/FlatCAMGUI.py:6345 msgid "SolderPaste Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6343 +#: flatcamGUI/FlatCAMGUI.py:6350 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6354 +#: flatcamGUI/FlatCAMGUI.py:6361 msgid "Diameters of nozzle tools, separated by ','" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6361 +#: flatcamGUI/FlatCAMGUI.py:6368 msgid "New Nozzle Dia:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6363 flatcamTools/ToolSolderPaste.py:103 +#: flatcamGUI/FlatCAMGUI.py:6370 flatcamTools/ToolSolderPaste.py:103 msgid "Diameter for the new Nozzle tool to add in the Tool Table" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6371 flatcamTools/ToolSolderPaste.py:166 +#: flatcamGUI/FlatCAMGUI.py:6378 flatcamTools/ToolSolderPaste.py:166 msgid "Z Dispense Start:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6373 flatcamTools/ToolSolderPaste.py:168 +#: flatcamGUI/FlatCAMGUI.py:6380 flatcamTools/ToolSolderPaste.py:168 msgid "The height (Z) when solder paste dispensing starts." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6380 flatcamTools/ToolSolderPaste.py:174 +#: flatcamGUI/FlatCAMGUI.py:6387 flatcamTools/ToolSolderPaste.py:174 msgid "Z Dispense:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6382 flatcamTools/ToolSolderPaste.py:176 +#: flatcamGUI/FlatCAMGUI.py:6389 flatcamTools/ToolSolderPaste.py:176 msgid "The height (Z) when doing solder paste dispensing." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6389 flatcamTools/ToolSolderPaste.py:183 +#: flatcamGUI/FlatCAMGUI.py:6396 flatcamTools/ToolSolderPaste.py:183 msgid "Z Dispense Stop:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6391 flatcamTools/ToolSolderPaste.py:185 +#: flatcamGUI/FlatCAMGUI.py:6398 flatcamTools/ToolSolderPaste.py:185 msgid "The height (Z) when solder paste dispensing stops." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6398 flatcamTools/ToolSolderPaste.py:191 +#: flatcamGUI/FlatCAMGUI.py:6405 flatcamTools/ToolSolderPaste.py:191 msgid "Z Travel:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6400 flatcamTools/ToolSolderPaste.py:193 +#: flatcamGUI/FlatCAMGUI.py:6407 flatcamTools/ToolSolderPaste.py:193 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6408 flatcamTools/ToolSolderPaste.py:200 +#: flatcamGUI/FlatCAMGUI.py:6415 flatcamTools/ToolSolderPaste.py:200 msgid "Z Toolchange:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6410 flatcamTools/ToolSolderPaste.py:202 +#: flatcamGUI/FlatCAMGUI.py:6417 flatcamTools/ToolSolderPaste.py:202 msgid "The height (Z) for tool (nozzle) change." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6417 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/FlatCAMGUI.py:6424 flatcamTools/ToolSolderPaste.py:208 msgid "XY Toolchange:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6419 flatcamTools/ToolSolderPaste.py:210 +#: flatcamGUI/FlatCAMGUI.py:6426 flatcamTools/ToolSolderPaste.py:210 msgid "" "The X,Y location for tool (nozzle) change.\n" "The format is (x, y) where x and y are real numbers." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6427 flatcamTools/ToolSolderPaste.py:217 +#: flatcamGUI/FlatCAMGUI.py:6434 flatcamTools/ToolSolderPaste.py:217 msgid "Feedrate X-Y:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6429 flatcamTools/ToolSolderPaste.py:219 +#: flatcamGUI/FlatCAMGUI.py:6436 flatcamTools/ToolSolderPaste.py:219 msgid "Feedrate (speed) while moving on the X-Y plane." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6436 flatcamTools/ToolSolderPaste.py:225 +#: flatcamGUI/FlatCAMGUI.py:6443 flatcamTools/ToolSolderPaste.py:225 msgid "Feedrate Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6438 flatcamTools/ToolSolderPaste.py:227 +#: flatcamGUI/FlatCAMGUI.py:6445 flatcamTools/ToolSolderPaste.py:227 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6446 flatcamTools/ToolSolderPaste.py:234 +#: flatcamGUI/FlatCAMGUI.py:6453 flatcamTools/ToolSolderPaste.py:234 msgid "Feedrate Z Dispense:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6448 flatcamTools/ToolSolderPaste.py:236 +#: flatcamGUI/FlatCAMGUI.py:6455 flatcamTools/ToolSolderPaste.py:236 msgid "" "Feedrate (speed) while moving up vertically\n" " to Dispense position (on Z plane)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6456 flatcamTools/ToolSolderPaste.py:243 +#: flatcamGUI/FlatCAMGUI.py:6463 flatcamTools/ToolSolderPaste.py:243 msgid "Spindle Speed FWD:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6458 flatcamTools/ToolSolderPaste.py:245 +#: flatcamGUI/FlatCAMGUI.py:6465 flatcamTools/ToolSolderPaste.py:245 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6466 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/FlatCAMGUI.py:6473 flatcamTools/ToolSolderPaste.py:252 msgid "Dwell FWD:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6468 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/FlatCAMGUI.py:6475 flatcamTools/ToolSolderPaste.py:254 msgid "Pause after solder dispensing." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6475 flatcamTools/ToolSolderPaste.py:260 +#: flatcamGUI/FlatCAMGUI.py:6482 flatcamTools/ToolSolderPaste.py:260 msgid "Spindle Speed REV:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6477 flatcamTools/ToolSolderPaste.py:262 +#: flatcamGUI/FlatCAMGUI.py:6484 flatcamTools/ToolSolderPaste.py:262 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6485 flatcamTools/ToolSolderPaste.py:269 +#: flatcamGUI/FlatCAMGUI.py:6492 flatcamTools/ToolSolderPaste.py:269 msgid "Dwell REV:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6487 flatcamTools/ToolSolderPaste.py:271 +#: flatcamGUI/FlatCAMGUI.py:6494 flatcamTools/ToolSolderPaste.py:271 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6494 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/FlatCAMGUI.py:6501 flatcamTools/ToolSolderPaste.py:277 msgid "PostProcessors:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6496 flatcamTools/ToolSolderPaste.py:279 +#: flatcamGUI/FlatCAMGUI.py:6503 flatcamTools/ToolSolderPaste.py:279 msgid "Files that control the GCode generation." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6526 flatcamGUI/FlatCAMGUI.py:6532 +#: flatcamGUI/FlatCAMGUI.py:6533 flatcamGUI/FlatCAMGUI.py:6539 msgid "Idle." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6556 +#: flatcamGUI/FlatCAMGUI.py:6563 msgid "Application started ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6557 +#: flatcamGUI/FlatCAMGUI.py:6564 msgid "Hello!" msgstr "" @@ -8936,23 +8963,23 @@ msgstr "" msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..." msgstr "" -#: flatcamTools/ToolPaint.py:796 flatcamTools/ToolPaint.py:999 +#: flatcamTools/ToolPaint.py:796 flatcamTools/ToolPaint.py:1003 msgid "Painting polygon..." msgstr "" -#: flatcamTools/ToolPaint.py:847 +#: flatcamTools/ToolPaint.py:851 msgid "[WARNING] No polygon found." msgstr "" -#: flatcamTools/ToolPaint.py:850 +#: flatcamTools/ToolPaint.py:854 msgid "Painting polygon." msgstr "" -#: flatcamTools/ToolPaint.py:892 +#: flatcamTools/ToolPaint.py:896 msgid "[ERROR_NOTCL] Geometry could not be painted completely" msgstr "" -#: flatcamTools/ToolPaint.py:918 +#: flatcamTools/ToolPaint.py:922 #, python-format msgid "" "[ERROR] Could not do Paint. Try a different combination of parameters. Or a " @@ -8960,16 +8987,16 @@ msgid "" "%s" msgstr "" -#: flatcamTools/ToolPaint.py:960 +#: flatcamTools/ToolPaint.py:964 #, python-format msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s" msgstr "" -#: flatcamTools/ToolPaint.py:966 flatcamTools/ToolPaint.py:1259 +#: flatcamTools/ToolPaint.py:970 flatcamTools/ToolPaint.py:1263 msgid "Polygon Paint started ..." msgstr "" -#: flatcamTools/ToolPaint.py:1115 flatcamTools/ToolPaint.py:1204 +#: flatcamTools/ToolPaint.py:1119 flatcamTools/ToolPaint.py:1208 #, python-format msgid "" "[ERROR] Could not do Paint All. Try a different combination of parameters. " @@ -8977,7 +9004,7 @@ msgid "" "%s" msgstr "" -#: flatcamTools/ToolPaint.py:1139 +#: flatcamTools/ToolPaint.py:1143 msgid "" "[ERROR] There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -8985,11 +9012,11 @@ msgid "" "Change the painting parameters and try again." msgstr "" -#: flatcamTools/ToolPaint.py:1148 +#: flatcamTools/ToolPaint.py:1152 msgid "[success] Paint All Done." msgstr "" -#: flatcamTools/ToolPaint.py:1234 +#: flatcamTools/ToolPaint.py:1238 msgid "" "[ERROR_NOTCL] There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -8997,7 +9024,7 @@ msgid "" "Change the painting parameters and try again." msgstr "" -#: flatcamTools/ToolPaint.py:1243 +#: flatcamTools/ToolPaint.py:1247 msgid "[success] Paint All with Rest-Machining done." msgstr ""