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 7db1e63b..38fec665 100644
Binary files a/locale/de/LC_MESSAGES/strings.mo and b/locale/de/LC_MESSAGES/strings.mo differ
diff --git a/locale/de/LC_MESSAGES/strings.po b/locale/de/LC_MESSAGES/strings.po
index fe9b20ea..d4beaac7 100644
--- a/locale/de/LC_MESSAGES/strings.po
+++ b/locale/de/LC_MESSAGES/strings.po
@@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"POT-Creation-Date: 2019-05-20 02:17+0300\n"
-"PO-Revision-Date: 2019-05-20 02:27+0300\n"
+"POT-Creation-Date: 2019-05-22 18:35+0300\n"
+"PO-Revision-Date: 2019-05-22 18:36+0300\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: de\n"
@@ -60,17 +60,17 @@ msgstr "[WARNING_NOTCL] Editor ist aktiviert ..."
msgid "Do you want to save the edited object?"
msgstr "Möchten Sie das bearbeitete Objekt speichern?"
-#: FlatCAMApp.py:2255 flatcamGUI/FlatCAMGUI.py:1618
+#: FlatCAMApp.py:2255 flatcamGUI/FlatCAMGUI.py:1621
msgid "Close Editor"
msgstr "Editor schließen"
#: 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 "Ja"
#: 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 "Nein"
@@ -139,7 +139,7 @@ msgid "[ERROR_NOTCL] Failed to open recent files file for writing."
msgstr ""
"[ERROR_NOTCL] Fehler beim Öffnen der zuletzt geöffneten Datei zum Schreiben."
-#: 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] Ein interner Fehler ist aufgetreten. Siehe Shell.\n"
@@ -209,7 +209,7 @@ msgstr ""
msgid "Factory defaults saved."
msgstr "Werkseinstellungen gespeichert."
-#: 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] Anwendung speichert das Projekt. Warten Sie mal ..."
@@ -319,7 +319,7 @@ msgstr ""
"ungleich Null im Float-Format ein."
#: 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] Addierwerkzeug abgebrochen ..."
@@ -362,15 +362,15 @@ msgstr "Falsche Koordinaten. Koordinaten im Format eingeben: 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] Erledigt."
@@ -397,8 +397,8 @@ msgid "[success] Flip on Y axis done."
msgstr "[success] Y-Achse umdrehen fertig."
#: 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] Aufgrund von %s wurde die Flip-Aktion nicht ausgeführt."
@@ -427,8 +427,8 @@ msgstr "Geben Sie den Winkelwert ein:"
msgid "[success] Rotation done."
msgstr "[success] Rotation erfolgt."
-#: 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 ""
@@ -454,9 +454,9 @@ msgstr ""
msgid "[success] Skew on Y axis done."
msgstr "[success] Neigung auf der Y-Achse fertig."
-#: 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
@@ -465,9 +465,9 @@ msgid "Add"
msgstr "Hinzufügen"
#: 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"
@@ -545,7 +545,7 @@ msgid "[success] New Project created..."
msgstr "[success] Neues Projekt erstellt ..."
#: FlatCAMApp.py:5923 FlatCAMApp.py:5926 flatcamGUI/FlatCAMGUI.py:613
-#: flatcamGUI/FlatCAMGUI.py:1831
+#: flatcamGUI/FlatCAMGUI.py:1834
msgid "Open Gerber"
msgstr "Gerber öffnen"
@@ -554,7 +554,7 @@ msgid "[WARNING_NOTCL] Open Gerber cancelled."
msgstr "[WARNING_NOTCL] Offener Gerber abgebrochen."
#: FlatCAMApp.py:5952 FlatCAMApp.py:5955 flatcamGUI/FlatCAMGUI.py:614
-#: flatcamGUI/FlatCAMGUI.py:1832
+#: flatcamGUI/FlatCAMGUI.py:1835
msgid "Open Excellon"
msgstr "Excellon öffnen"
@@ -1054,7 +1054,7 @@ msgid "[ERROR_NOTCL] Failed to parse recent item list."
msgstr ""
"[ERROR_NOTCL] Liste der letzten Artikel konnte nicht analysiert werden."
-#: FlatCAMApp.py:8110 flatcamGUI/FlatCAMGUI.py:970
+#: FlatCAMApp.py:8110 flatcamGUI/FlatCAMGUI.py:973
msgid "Shortcut 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: b>"
-#: 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 89c040c9..c3a054ec 100644
Binary files a/locale/en/LC_MESSAGES/strings.mo and b/locale/en/LC_MESSAGES/strings.mo differ
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 2ce36368..41177036 100644
Binary files a/locale/ro/LC_MESSAGES/strings.mo and b/locale/ro/LC_MESSAGES/strings.mo differ
diff --git a/locale/ro/LC_MESSAGES/strings.po b/locale/ro/LC_MESSAGES/strings.po
index b4f75249..68deff64 100644
--- a/locale/ro/LC_MESSAGES/strings.po
+++ b/locale/ro/LC_MESSAGES/strings.po
@@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"POT-Creation-Date: 2019-05-20 01:49+0300\n"
-"PO-Revision-Date: 2019-05-20 02:17+0300\n"
+"POT-Creation-Date: 2019-05-22 18:31+0300\n"
+"PO-Revision-Date: 2019-05-22 18:35+0300\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ro\n"
@@ -65,17 +65,17 @@ msgstr "[WARNING_NOTCL] Editorul este activ. .."
msgid "Do you want to save the edited object?"
msgstr "Vrei sa salvezi obiectul editat?"
-#: FlatCAMApp.py:2255 flatcamGUI/FlatCAMGUI.py:1618
+#: FlatCAMApp.py:2255 flatcamGUI/FlatCAMGUI.py:1621
msgid "Close Editor"
msgstr "Inchide Editorul"
#: 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 "Da"
#: 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 "Nu"
@@ -146,7 +146,7 @@ msgstr ""
"[ERROR_NOTCL] Deschiderea fişierului cu >fiş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 ""