diff --git a/CHANGELOG.md b/CHANGELOG.md
index 05673c1c..c29978de 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,8 +10,9 @@ CHANGELOG for FlatCAM beta
8.06.2020
- minor changes in the way that the tools are installed and connected
-- renamed the GeoEditor class/file to appGeoEditor from FlatCAMGeoEditor making it easier to see in the IDE tree structure
+- renamed the GeoEditor class/file to AppGeoEditor from FlatCAMGeoEditor making it easier to see in the IDE tree structure
- some refactoring that lead to a working solution when using the Python 3.8 + PyQt 5.15
+- more refactoring in the app Editors
7.06.2020
@@ -1333,7 +1334,7 @@ RELEASE 8.993
13.11.2019
- trying to improve the performance of View CNC Code command by using QPlainTextEdit; made the mods for it
-- when using the Find function in the TextEditor and the result reach the bottom of the document, the next find will be the first in the document (before it defaulted to the beginning of the document)
+- when using the Find function in the AppTextEditor and the result reach the bottom of the document, the next find will be the first in the document (before it defaulted to the beginning of the document)
- finished improving the show of text files in FlatCAM (CNC Code, Source files)
- fixed an issue in the FlatCAMObj.GerberObject.convert_units() which needed to be updated after changes elsewhere
@@ -1636,7 +1637,7 @@ RELEASE 8.993
- fixed bug in Geometry Editor that did not allow the copy of geometric elements
- created a new class that holds all the Code Editor functionality and integrated as a Editor in FlatCAM, the location is in flatcamEditors folder
-- remade all the functions for view_source, scripts and view_code to use the new TextEditor class; now all the Code Editor tabs are being kept alive, before only one could be in an open state
+- remade all the functions for view_source, scripts and view_code to use the new AppTextEditor class; now all the Code Editor tabs are being kept alive, before only one could be in an open state
- changed the name of the new object FlatCAMNotes to a more general one DocumentObject
- changed the way a new ScriptObject object is made, the method that is processing the Tcl commands when the Run button is clicked is moved to the FlatCAMObj.ScriptObject() class
- reused the Multiprocessing Pool declared in the App for the ToolRulesCheck() class
@@ -2492,7 +2493,7 @@ RELEASE 8.993
4.06.2019
-- PEP8 updates in FlatCAMExcEditor.py
+- PEP8 updates in AppExcEditor.py
- added the Excellon Editor parameters to the Edit -> Preferences -> Excellon GUI
- fixed a small bug in Excellon Editor
- PEP8 cleanup in FlatCAMGui
@@ -2564,7 +2565,7 @@ RELEASE 8.993
- fixed the Circle Steps parameter for both Gerber and Geometry objects not being applied and instead the app internal defaults were used.
- fixed the Tcl command Geocutout issue that gave an error when using the 4 or 8 value for gaps parameter
- made wider the '#' column for Apertures Table for Gerber Object and for Gerber Editor; in this way numbers with 3 digits can be seen
-- PEP8 corrections in FlatCAMGrbEditor.py
+- PEP8 corrections in AppGerberEditor.py
- added a selection limit parameter for Geometry Editor
- added entries in Edit -> Preferences for the new parameter Selection limit for both the Gerber and Geometry Editors.
- set the buttons in the lower part of the Preferences Window to have a preferred minimum width instead of fixed width
@@ -2841,7 +2842,7 @@ RELEASE 8.993
- Gerber Editor: fixed error when adding an aperture with code value lower than the ones that already exists
- when adding an aperture with code '0' (zero) it will automatically be set with size zero and type: 'REG' (from region); here we store all the regions from a Gerber file, the ones without a declared aperture
- Gerber Editor: added support for Gerber polarity change commands (LPD, LPC)
-- moved the polarity change processing from FlatCAMGrbEditor() class to camlib.Gerber().parse_lines()
+- moved the polarity change processing from AppGerberEditor() class to camlib.Gerber().parse_lines()
- made optional the saving of an edited object. Now the user can cancel the changes to the object.
- replaced the standard buttons in the QMessageBox's used in the app with custom ones that can have text translated
- updated the POT translation file and the MO/PO files for English and Romanian language
diff --git a/appEditors/FlatCAMExcEditor.py b/appEditors/AppExcEditor.py
similarity index 99%
rename from appEditors/FlatCAMExcEditor.py
rename to appEditors/AppExcEditor.py
index d79e242b..e234445a 100644
--- a/appEditors/FlatCAMExcEditor.py
+++ b/appEditors/AppExcEditor.py
@@ -10,7 +10,7 @@ from PyQt5.QtCore import Qt, QSettings
from camlib import distance, arc, FlatCAMRTreeStorage
from appGUI.GUIElements import FCEntry, FCComboBox, FCTable, FCDoubleSpinner, RadioSet, FCSpinner
-from appEditors.appGeoEditor import FCShapeTool, DrawTool, DrawToolShape, DrawToolUtilityShape, appGeoEditor
+from appEditors.AppGeoEditor import FCShapeTool, DrawTool, DrawToolShape, DrawToolUtilityShape, AppGeoEditor
from appParsers.ParseExcellon import Excellon
from shapely.geometry import LineString, LinearRing, MultiLineString, Polygon, MultiPolygon, Point
@@ -935,7 +935,7 @@ class FCDrillResize(FCShapeTool):
return
if new_dia not in self.draw_app.olddia_newdia:
- self.destination_storage = appGeoEditor.make_storage()
+ self.destination_storage = AppGeoEditor.make_storage()
self.draw_app.storage_dict[new_dia] = self.destination_storage
# self.olddia_newdia dict keeps the evidence on current tools diameters as keys and gets updated on values
@@ -1347,7 +1347,7 @@ class FCDrillSelect(DrawTool):
self.sel_tools = set()
# here we store all shapes that were selected so we can search for the nearest to our click location
- self.sel_storage = FlatCAMExcEditor.make_storage()
+ self.sel_storage = AppExcEditor.make_storage()
self.exc_editor_app.resize_frame.hide()
self.exc_editor_app.array_frame.hide()
@@ -1452,7 +1452,7 @@ class FCDrillSelect(DrawTool):
self.exc_editor_app.tools_table_exc.cellPressed.connect(self.exc_editor_app.on_row_selected)
# delete whatever is in selection storage, there is no longer need for those shapes
- self.sel_storage = FlatCAMExcEditor.make_storage()
+ self.sel_storage = AppExcEditor.make_storage()
return ""
@@ -1467,13 +1467,13 @@ class FCDrillSelect(DrawTool):
# # if there is no shape under our click then deselect all shapes
# if not over_shape_list:
# self.exc_editor_app.selected = []
- # FlatCAMExcEditor.draw_shape_idx = -1
+ # AppExcEditor.draw_shape_idx = -1
# self.exc_editor_app.tools_table_exc.clearSelection()
# else:
# # if there are shapes under our click then advance through the list of them, one at the time in a
# # circular way
- # FlatCAMExcEditor.draw_shape_idx = (FlatCAMExcEditor.draw_shape_idx + 1) % len(over_shape_list)
- # obj_to_add = over_shape_list[int(FlatCAMExcEditor.draw_shape_idx)]
+ # AppExcEditor.draw_shape_idx = (AppExcEditor.draw_shape_idx + 1) % len(over_shape_list)
+ # obj_to_add = over_shape_list[int(AppExcEditor.draw_shape_idx)]
#
# if self.exc_editor_app.app.defaults["global_mselect_key"] == 'Shift':
# if self.exc_editor_app.modifiers == Qt.ShiftModifier:
@@ -1510,14 +1510,14 @@ class FCDrillSelect(DrawTool):
# raise
-class FlatCAMExcEditor(QtCore.QObject):
+class AppExcEditor(QtCore.QObject):
draw_shape_idx = -1
def __init__(self, app):
# assert isinstance(app, FlatCAMApp.App), "Expected the app to be a FlatCAMApp.App, got %s" % type(app)
- super(FlatCAMExcEditor, self).__init__()
+ super(AppExcEditor, self).__init__()
self.app = app
self.canvas = self.app.plotcanvas
@@ -2560,7 +2560,7 @@ class FlatCAMExcEditor(QtCore.QObject):
return
if tool_dia not in self.olddia_newdia:
- storage_elem = appGeoEditor.make_storage()
+ storage_elem = AppGeoEditor.make_storage()
self.storage_dict[tool_dia] = storage_elem
# self.olddia_newdia dict keeps the evidence on current tools diameters as keys and gets updated on values
@@ -2590,7 +2590,7 @@ class FlatCAMExcEditor(QtCore.QObject):
try:
self.tools_table_exc.selectRow(row_to_be_selected)
except TypeError as e:
- log.debug("FlatCAMExcEditor.on_tool_add() --> %s" % str(e))
+ log.debug("AppExcEditor.on_tool_add() --> %s" % str(e))
def on_tool_delete(self, dia=None):
self.is_modified = True
@@ -2615,7 +2615,7 @@ class FlatCAMExcEditor(QtCore.QObject):
for deleted_tool_dia in deleted_tool_dia_list:
# delete the storage used for that tool
- storage_elem = appGeoEditor.make_storage()
+ storage_elem = AppGeoEditor.make_storage()
self.storage_dict[deleted_tool_dia] = storage_elem
self.storage_dict.pop(deleted_tool_dia, None)
@@ -2665,7 +2665,7 @@ class FlatCAMExcEditor(QtCore.QObject):
try:
new_dia = float(self.tools_table_exc.currentItem().text())
except ValueError as e:
- log.debug("FlatCAMExcEditor.on_tool_edit() --> %s" % str(e))
+ log.debug("AppExcEditor.on_tool_edit() --> %s" % str(e))
return
row_of_item_changed = self.tools_table_exc.currentRow()
@@ -2679,7 +2679,7 @@ class FlatCAMExcEditor(QtCore.QObject):
# DESTINATION storage
# tool diameter is not used so we create a new tool with the desired diameter
if new_dia not in self.olddia_newdia:
- destination_storage = appGeoEditor.make_storage()
+ destination_storage = AppGeoEditor.make_storage()
self.storage_dict[new_dia] = destination_storage
# self.olddia_newdia dict keeps the evidence on current tools diameters as keys and gets updated on values
@@ -2910,7 +2910,7 @@ class FlatCAMExcEditor(QtCore.QObject):
self.mr = self.canvas.graph_event_connect('mouse_release', self.on_exc_click_release)
# make sure that the shortcuts key and mouse events will no longer be linked to the methods from FlatCAMApp
- # but those from appGeoEditor
+ # but those from AppGeoEditor
if self.app.is_legacy is False:
self.app.plotcanvas.graph_event_disconnect('mouse_press', self.app.on_mouse_click_over_plot)
self.app.plotcanvas.graph_event_disconnect('mouse_move', self.app.on_mouse_move_over_plot)
@@ -3006,7 +3006,7 @@ class FlatCAMExcEditor(QtCore.QObject):
self.shapes.clear(update=True)
self.tool_shape.clear(update=True)
- # self.storage = FlatCAMExcEditor.make_storage()
+ # self.storage = AppExcEditor.make_storage()
self.replot()
def edit_fcexcellon(self, exc_obj):
@@ -3052,7 +3052,7 @@ class FlatCAMExcEditor(QtCore.QObject):
# build the geometry for each tool-diameter, each drill will be represented by a '+' symbol
# and then add it to the storage elements (each storage elements is a member of a list
for tool_dia in self.points_edit:
- storage_elem = appGeoEditor.make_storage()
+ storage_elem = AppGeoEditor.make_storage()
for point in self.points_edit[tool_dia]:
# make a '+' sign, the line length is the tool diameter
start_hor_line = ((point.x - (tool_dia / 2)), point.y)
@@ -3073,7 +3073,7 @@ class FlatCAMExcEditor(QtCore.QObject):
shape_geo = line_geo.buffer(buf_value)
if tool_dia not in self.storage_dict:
- storage_elem = appGeoEditor.make_storage()
+ storage_elem = AppGeoEditor.make_storage()
self.storage_dict[tool_dia] = storage_elem
if shape_geo is not None:
@@ -3614,7 +3614,7 @@ class FlatCAMExcEditor(QtCore.QObject):
self.app.ui.popMenu.popup(self.app.cursor.pos())
except Exception as e:
- log.warning("FlatCAMExcEditor.on_exc_click_release() RMB click --> Error: %s" % str(e))
+ log.warning("AppExcEditor.on_exc_click_release() RMB click --> Error: %s" % str(e))
raise
# if the released mouse button was LMB then test if we had a right-to-left selection or a left-to-right
@@ -3632,7 +3632,7 @@ class FlatCAMExcEditor(QtCore.QObject):
if self.selected:
self.replot()
except Exception as e:
- log.warning("FlatCAMExcEditor.on_exc_click_release() LMB click --> Error: %s" % str(e))
+ log.warning("AppExcEditor.on_exc_click_release() LMB click --> Error: %s" % str(e))
raise
def draw_selection_area_handler(self, start, end, sel_type):
diff --git a/appEditors/appGeoEditor.py b/appEditors/AppGeoEditor.py
similarity index 99%
rename from appEditors/appGeoEditor.py
rename to appEditors/AppGeoEditor.py
index 9fc61db2..73ff900a 100644
--- a/appEditors/appGeoEditor.py
+++ b/appEditors/AppGeoEditor.py
@@ -2523,12 +2523,12 @@ class FCSelect(DrawTool):
# it will not work for 3rd method of click selection
if not over_shape_list:
self.draw_app.selected = []
- appGeoEditor.draw_shape_idx = -1
+ AppGeoEditor.draw_shape_idx = -1
else:
# if there are shapes under our click then advance through the list of them, one at the time in a
# circular way
- appGeoEditor.draw_shape_idx = (appGeoEditor.draw_shape_idx + 1) % len(over_shape_list)
- obj_to_add = over_shape_list[int(appGeoEditor.draw_shape_idx)]
+ AppGeoEditor.draw_shape_idx = (AppGeoEditor.draw_shape_idx + 1) % len(over_shape_list)
+ obj_to_add = over_shape_list[int(AppGeoEditor.draw_shape_idx)]
key_modifier = QtWidgets.QApplication.keyboardModifiers()
@@ -2550,7 +2550,7 @@ class FCSelect(DrawTool):
self.draw_app.selected = []
self.draw_app.selected.append(obj_to_add)
except Exception as e:
- log.error("[ERROR] appGeoEditor.FCSelect.click_release() -> Something went bad. %s" % str(e))
+ log.error("[ERROR] AppGeoEditor.FCSelect.click_release() -> Something went bad. %s" % str(e))
# if selection is done on canvas update the Tree in Selected Tab with the selection
try:
@@ -2788,9 +2788,9 @@ class FCMove(FCShapeTool):
else:
# if there are shapes under our click then advance through the list of them, one at the time in a
# circular way
- self.draw_app.draw_shape_idx = (appGeoEditor.draw_shape_idx + 1) % len(over_shape_list)
+ self.draw_app.draw_shape_idx = (AppGeoEditor.draw_shape_idx + 1) % len(over_shape_list)
try:
- obj_to_add = over_shape_list[int(appGeoEditor.draw_shape_idx)]
+ obj_to_add = over_shape_list[int(AppGeoEditor.draw_shape_idx)]
except IndexError:
return
@@ -3230,7 +3230,7 @@ class FCTransform(FCShapeTool):
# ###############################################
# ################ Main Application #############
# ###############################################
-class appGeoEditor(QtCore.QObject):
+class AppGeoEditor(QtCore.QObject):
# will emit the name of the object that was just selected
item_selected = QtCore.pyqtSignal(str)
@@ -3243,7 +3243,7 @@ class appGeoEditor(QtCore.QObject):
# assert isinstance(app, FlatCAMApp.App), \
# "Expected the app to be a FlatCAMApp.App, got %s" % type(app)
- super(appGeoEditor, self).__init__()
+ super(AppGeoEditor, self).__init__()
self.app = app
self.canvas = app.plotcanvas
@@ -3316,7 +3316,7 @@ class appGeoEditor(QtCore.QObject):
# # ## Data
self.active_tool = None
- self.storage = appGeoEditor.make_storage()
+ self.storage = AppGeoEditor.make_storage()
self.utility = []
# VisPy visuals
@@ -3415,7 +3415,7 @@ class appGeoEditor(QtCore.QObject):
self.options[opt] = float(text_value)
except Exception as e:
entry.set_value(self.app.defaults[opt])
- log.debug("appGeoEditor.__init__().entry2option() --> %s" % str(e))
+ log.debug("AppGeoEditor.__init__().entry2option() --> %s" % str(e))
return
def grid_changed(goption, gentry):
@@ -3588,7 +3588,7 @@ class appGeoEditor(QtCore.QObject):
self.connect_canvas_event_handlers()
# initialize working objects
- self.storage = appGeoEditor.make_storage()
+ self.storage = AppGeoEditor.make_storage()
self.utility = []
self.selected = []
@@ -3701,7 +3701,7 @@ class appGeoEditor(QtCore.QObject):
# for w in sel_tab_widget_list:
# w.setEnabled(True)
# except Exception as e:
- # log.debug("appGeoEditor.deactivate() --> %s" % str(e))
+ # log.debug("AppGeoEditor.deactivate() --> %s" % str(e))
# Show original geometry
if self.fcgeometry:
@@ -3727,7 +3727,7 @@ class appGeoEditor(QtCore.QObject):
if self.app.is_legacy is False:
# make sure that the shortcuts key and mouse events will no longer be linked to the methods from FlatCAMApp
- # but those from appGeoEditor
+ # but those from AppGeoEditor
self.app.plotcanvas.graph_event_disconnect('mouse_press', self.app.on_mouse_click_over_plot)
self.app.plotcanvas.graph_event_disconnect('mouse_move', self.app.on_mouse_move_over_plot)
self.app.plotcanvas.graph_event_disconnect('mouse_release', self.app.on_mouse_click_release_over_plot)
@@ -3958,7 +3958,7 @@ class appGeoEditor(QtCore.QObject):
self.shapes.clear(update=True)
self.tool_shape.clear(update=True)
- # self.storage = appGeoEditor.make_storage()
+ # self.storage = AppGeoEditor.make_storage()
self.replot()
def edit_fcgeometry(self, fcgeometry, multigeo_tool=None):
@@ -4567,10 +4567,10 @@ class appGeoEditor(QtCore.QObject):
elif isinstance(geom, LineString) and geom is not None:
geom = LineString(geom.coords[::-1])
else:
- log.debug("appGeoEditor.on_shape_complete() Error --> Unexpected Geometry %s" %
+ log.debug("AppGeoEditor.on_shape_complete() Error --> Unexpected Geometry %s" %
type(geom))
except Exception as e:
- log.debug("appGeoEditor.on_shape_complete() Error --> %s" % str(e))
+ log.debug("AppGeoEditor.on_shape_complete() Error --> %s" % str(e))
return 'fail'
shape_list = []
@@ -4757,7 +4757,7 @@ class appGeoEditor(QtCore.QObject):
try:
results = geo_shapes[0].geo
except Exception as e:
- log.debug("appGeoEditor.intersection() --> %s" % str(e))
+ log.debug("AppGeoEditor.intersection() --> %s" % str(e))
self.app.inform.emit('[WARNING_NOTCL] %s' %
_("A selection of at least 2 geo items is required to do Intersection."))
self.select_tool('select')
@@ -4792,7 +4792,7 @@ class appGeoEditor(QtCore.QObject):
try:
intersector = geo_shapes[0].geo
except Exception as e:
- log.debug("appGeoEditor.intersection() --> %s" % str(e))
+ log.debug("AppGeoEditor.intersection() --> %s" % str(e))
self.app.inform.emit('[WARNING_NOTCL] %s' %
_("A selection of at least 2 geo items is required to do Intersection."))
self.select_tool('select')
diff --git a/appEditors/FlatCAMGrbEditor.py b/appEditors/AppGerberEditor.py
similarity index 99%
rename from appEditors/FlatCAMGrbEditor.py
rename to appEditors/AppGerberEditor.py
index 2af9d3a8..b6c48250 100644
--- a/appEditors/FlatCAMGrbEditor.py
+++ b/appEditors/AppGerberEditor.py
@@ -885,7 +885,7 @@ class FCRegion(FCShapeTool):
try:
QtGui.QGuiApplication.restoreOverrideCursor()
except Exception as e:
- log.debug("FlatCAMGrbEditor.FCRegion --> %s" % str(e))
+ log.debug("AppGerberEditor.FCRegion --> %s" % str(e))
self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero.png'))
QtGui.QGuiApplication.setOverrideCursor(self.cursor)
@@ -991,7 +991,7 @@ class FCRegion(FCShapeTool):
join_style=1)
return DrawToolUtilityShape(new_geo_el)
except Exception as e:
- log.debug("FlatCAMGrbEditor.FCRegion.utility_geometry() --> %s" % str(e))
+ log.debug("AppGerberEditor.FCRegion.utility_geometry() --> %s" % str(e))
else:
new_geo_el['solid'] = Point(self.temp_points).buffer(self.buf_val,
resolution=int(self.steps_per_circle / 4))
@@ -1182,7 +1182,7 @@ class FCTrack(FCShapeTool):
try:
QtGui.QGuiApplication.restoreOverrideCursor()
except Exception as e:
- log.debug("FlatCAMGrbEditor.FCTrack.__init__() --> %s" % str(e))
+ log.debug("AppGerberEditor.FCTrack.__init__() --> %s" % str(e))
self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location +
'/aero_path%s.png' % self.draw_app.bend_mode))
@@ -1329,7 +1329,7 @@ class FCTrack(FCShapeTool):
try:
QtGui.QGuiApplication.restoreOverrideCursor()
except Exception as e:
- log.debug("FlatCAMGrbEditor.FCTrack.on_key() --> %s" % str(e))
+ log.debug("AppGerberEditor.FCTrack.on_key() --> %s" % str(e))
if self.draw_app.bend_mode == 1:
self.draw_app.bend_mode = 2
@@ -1368,7 +1368,7 @@ class FCTrack(FCShapeTool):
try:
QtGui.QGuiApplication.restoreOverrideCursor()
except Exception as e:
- log.debug("FlatCAMGrbEditor.FCTrack.on_key() --> %s" % str(e))
+ log.debug("AppGerberEditor.FCTrack.on_key() --> %s" % str(e))
if self.draw_app.bend_mode == 1:
self.draw_app.bend_mode = 5
@@ -1477,7 +1477,7 @@ class FCDisc(FCShapeTool):
try:
QtGui.QGuiApplication.restoreOverrideCursor()
except Exception as e:
- log.debug("FlatCAMGrbEditor.FCDisc --> %s" % str(e))
+ log.debug("AppGerberEditor.FCDisc --> %s" % str(e))
self.draw_app.current_storage = self.storage_obj
@@ -1514,7 +1514,7 @@ class FCSemiDisc(FCShapeTool):
try:
QtGui.QGuiApplication.restoreOverrideCursor()
except Exception as e:
- log.debug("FlatCAMGrbEditor.FCSemiDisc --> %s" % str(e))
+ log.debug("AppGerberEditor.FCSemiDisc --> %s" % str(e))
self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_semidisc.png'))
QtGui.QGuiApplication.setOverrideCursor(self.cursor)
@@ -2201,7 +2201,7 @@ class FCEraser(FCShapeTool):
try:
self.draw_app.apertures_table.cellPressed.disconnect()
except Exception as e:
- log.debug("FlatCAMGrbEditor.FCEraser.click_release() --> %s" % str(e))
+ log.debug("AppGerberEditor.FCEraser.click_release() --> %s" % str(e))
self.draw_app.apertures_table.setSelectionMode(QtWidgets.QAbstractItemView.MultiSelection)
for aper in sel_aperture:
@@ -2325,7 +2325,7 @@ class FCApertureSelect(DrawTool):
try:
QtGui.QGuiApplication.restoreOverrideCursor()
except Exception as e:
- log.debug("FlatCAMGrbEditor.FCApertureSelect --> %s" % str(e))
+ log.debug("AppGerberEditor.FCApertureSelect --> %s" % str(e))
def set_origin(self, origin):
self.origin = origin
@@ -2381,7 +2381,7 @@ class FCApertureSelect(DrawTool):
try:
self.grb_editor_app.apertures_table.cellPressed.disconnect()
except Exception as e:
- log.debug("FlatCAMGrbEditor.FCApertureSelect.click_release() --> %s" % str(e))
+ log.debug("AppGerberEditor.FCApertureSelect.click_release() --> %s" % str(e))
for shape_s in self.grb_editor_app.selected:
for storage in self.grb_editor_app.storage_dict:
@@ -2424,7 +2424,7 @@ class FCTransform(FCShapeTool):
self.draw_app.plot_all()
-class FlatCAMGrbEditor(QtCore.QObject):
+class AppGerberEditor(QtCore.QObject):
draw_shape_idx = -1
# plot_finished = QtCore.pyqtSignal()
@@ -2434,7 +2434,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
# assert isinstance(app, FlatCAMApp.App), \
# "Expected the app to be a FlatCAMApp.App, got %s" % type(app)
- super(FlatCAMGrbEditor, self).__init__()
+ super(AppGerberEditor, self).__init__()
self.app = app
self.canvas = self.app.plotcanvas
@@ -3369,7 +3369,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
self.apsize_entry.set_value(size_val)
except Exception as e:
- log.error("FlatCAMGrbEditor.on_aperture_add() --> the R or O aperture dims has to be in a "
+ log.error("AppGerberEditor.on_aperture_add() --> the R or O aperture dims has to be in a "
"tuple format (x,y)\nError: %s" % str(e))
self.app.inform.emit('[WARNING_NOTCL] %s' %
_("Aperture dimensions value is missing or wrong format. "
@@ -3497,7 +3497,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
try:
val_edited = int(self.apertures_table.currentItem().text())
except ValueError as e:
- log.debug("FlatCAMGrbEditor.on_tool_edit() --> %s" % str(e))
+ log.debug("AppGerberEditor.on_tool_edit() --> %s" % str(e))
# self.apertures_table.setCurrentItem(None)
# we reactivate the signals after the after the tool editing
self.apertures_table.itemChanged.connect(self.on_tool_edit)
@@ -3507,7 +3507,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
try:
val_edited = float(self.apertures_table.currentItem().text())
except ValueError as e:
- log.debug("FlatCAMGrbEditor.on_tool_edit() --> %s" % str(e))
+ log.debug("AppGerberEditor.on_tool_edit() --> %s" % str(e))
# self.apertures_table.setCurrentItem(None)
# we reactivate the signals after the after the tool editing
self.apertures_table.itemChanged.connect(self.on_tool_edit)
@@ -3519,7 +3519,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
float(x.strip()) for x in self.apertures_table.currentItem().text().split(",") if x != ''
]
except ValueError as e:
- log.debug("FlatCAMGrbEditor.on_tool_edit() --> %s" % str(e))
+ log.debug("AppGerberEditor.on_tool_edit() --> %s" % str(e))
# we reactivate the signals after the after the tool editing
self.apertures_table.itemChanged.connect(self.on_tool_edit)
return
@@ -3725,7 +3725,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
try:
QtGui.QGuiApplication.restoreOverrideCursor()
except Exception as e:
- log.debug("FlatCAMGrbEditor.deactivate_grb_editor() --> %s" % str(e))
+ log.debug("AppGerberEditor.deactivate_grb_editor() --> %s" % str(e))
self.clear()
@@ -3778,7 +3778,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
# Canvas events
# make sure that the shortcuts key and mouse events will no longer be linked to the methods from FlatCAMApp
- # but those from appGeoEditor
+ # but those from AppGeoEditor
# first connect to new, then disconnect the old handlers
# don't ask why but if there is nothing connected I've seen issues
@@ -3980,7 +3980,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
# we activate this after the initial build as we don't need to see the tool been populated
self.apertures_table.itemChanged.connect(self.on_tool_edit)
except Exception as e:
- log.debug("FlatCAMGrbEditor.edit_fcgerber() --> %s" % str(e))
+ log.debug("AppGerberEditor.edit_fcgerber() --> %s" % str(e))
# apply the conversion factor on the obj.apertures
conv_apertures = deepcopy(self.gerber_obj.apertures)
@@ -4020,7 +4020,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
# else:
# self.storage_dict[aperture_id][k] = self.gerber_obj.apertures[aperture_id][k]
# except Exception as e:
- # log.debug("FlatCAMGrbEditor.edit_fcgerber().job_thread() --> %s" % str(e))
+ # log.debug("AppGerberEditor.edit_fcgerber().job_thread() --> %s" % str(e))
#
# # Check promises and clear if exists
# while True:
@@ -4150,7 +4150,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
)
except Exception as ee:
log.debug(
- "FlatCAMGrbEditor.edit_fcgerber.worker_job() Adding processes to pool --> %s" % str(ee))
+ "AppGerberEditor.edit_fcgerber.worker_job() Adding processes to pool --> %s" % str(ee))
traceback.print_exc()
output = []
@@ -4186,7 +4186,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
else:
storage_dict[k] = aperture_dict[k]
except Exception as e:
- log.debug("FlatCAMGrbEditor.edit_fcgerber().job_thread() --> %s" % str(e))
+ log.debug("AppGerberEditor.edit_fcgerber().job_thread() --> %s" % str(e))
return [aperture_id, storage_dict]
@@ -4215,7 +4215,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
try:
self.plot_thread.stop()
except Exception as e:
- log.debug("FlatCAMGrbEditor.update_fcgerber() --> %s" % str(e))
+ log.debug("AppGerberEditor.update_fcgerber() --> %s" % str(e))
if "_edit" in self.edited_obj_name:
try:
@@ -4598,7 +4598,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
try:
QtGui.QGuiApplication.restoreOverrideCursor()
except Exception as e:
- log.debug("FlatCAMGrbEditor.on_grb_click_release() --> %s" % str(e))
+ log.debug("AppGerberEditor.on_grb_click_release() --> %s" % str(e))
if self.active_tool.complete is False and not isinstance(self.active_tool, FCApertureSelect):
self.active_tool.complete = True
@@ -4640,7 +4640,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
else:
self.select_tool("select")
except Exception as e:
- log.warning("FlatCAMGrbEditor.on_grb_click_release() RMB click --> Error: %s" % str(e))
+ log.warning("AppGerberEditor.on_grb_click_release() RMB click --> Error: %s" % str(e))
raise
# if the released mouse button was LMB then test if we had a right-to-left selection or a left-to-right
@@ -4658,7 +4658,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
if self.selected:
self.plot_all()
except Exception as e:
- log.warning("FlatCAMGrbEditor.on_grb_click_release() LMB click --> Error: %s" % str(e))
+ log.warning("AppGerberEditor.on_grb_click_release() LMB click --> Error: %s" % str(e))
raise
def draw_selection_area_handler(self, start_pos, end_pos, sel_type):
@@ -4694,7 +4694,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
try:
self.apertures_table.cellPressed.disconnect()
except Exception as e:
- log.debug("FlatCAMGrbEditor.draw_selection_Area_handler() --> %s" % str(e))
+ log.debug("AppGerberEditor.draw_selection_Area_handler() --> %s" % str(e))
# select the aperture code of the selected geometry, in the tool table
self.apertures_table.setSelectionMode(QtWidgets.QAbstractItemView.MultiSelection)
for aper in sel_aperture:
@@ -4901,7 +4901,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
#
# # self.plot_thread = threading.Thread(target=lambda: self.check_plot_finished(check_period))
# # self.plot_thread.start()
- # log.debug("FlatCAMGrbEditor --> Delayed Plot started.")
+ # log.debug("AppGerberEditor --> Delayed Plot started.")
# self.plot_thread = QtCore.QTimer()
# self.plot_thread.setInterval(check_period)
# self.plot_finished.connect(self.setup_ui_after_delayed_plot)
@@ -4919,7 +4919,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
# if not self.grb_plot_promises:
# self.plot_thread.stop()
# self.plot_finished.emit()
- # log.debug("FlatCAMGrbEditor --> delayed_plot finished")
+ # log.debug("AppGerberEditor --> delayed_plot finished")
# except Exception as e:
# traceback.print_exc()
#
@@ -4941,7 +4941,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
:return: None
"""
- log.debug("FlatCAMGrbEditor.on_zoom_fit()")
+ log.debug("AppGerberEditor.on_zoom_fit()")
# calculate all the geometry in the edited Gerber object
edit_geo = []
@@ -5095,7 +5095,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
def on_buffer(self):
buff_value = 0.01
- log.debug("FlatCAMGrbEditor.on_buffer()")
+ log.debug("AppGerberEditor.on_buffer()")
try:
buff_value = float(self.buffer_distance_entry.get_value())
@@ -5145,7 +5145,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
self.storage_dict[apcode]['geometry'] = []
self.storage_dict[apcode]['geometry'] = temp_storage
except Exception as e:
- log.debug("FlatCAMGrbEditor.buffer() --> %s" % str(e))
+ log.debug("AppGerberEditor.buffer() --> %s" % str(e))
self.app.inform.emit('[ERROR_NOTCL] %s\n%s' % (_("Failed."), str(traceback.print_exc())))
return
@@ -5154,7 +5154,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
def on_scale(self):
scale_factor = 1.0
- log.debug("FlatCAMGrbEditor.on_scale()")
+ log.debug("AppGerberEditor.on_scale()")
try:
scale_factor = float(self.scale_factor_entry.get_value())
@@ -5209,7 +5209,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
self.storage_dict[apcode]['geometry'] = temp_storage
except Exception as e:
- log.debug("FlatCAMGrbEditor.on_scale() --> %s" % str(e))
+ log.debug("AppGerberEditor.on_scale() --> %s" % str(e))
self.plot_all()
self.app.inform.emit('[success] %s' %
@@ -5287,7 +5287,7 @@ class FlatCAMGrbEditor(QtCore.QObject):
if tool_name == 'markarea' or tool_name == 'all':
self.ma_tool_frame.hide()
except Exception as e:
- log.debug("FlatCAMGrbEditor.hide_tool() --> %s" % str(e))
+ log.debug("AppGerberEditor.hide_tool() --> %s" % str(e))
self.app.ui.notebook.setCurrentWidget(self.app.ui.selected_tab)
diff --git a/appEditors/FlatCAMTextEditor.py b/appEditors/AppTextEditor.py
similarity index 99%
rename from appEditors/FlatCAMTextEditor.py
rename to appEditors/AppTextEditor.py
index 5122aef2..69222671 100644
--- a/appEditors/FlatCAMTextEditor.py
+++ b/appEditors/AppTextEditor.py
@@ -23,7 +23,7 @@ if '_' not in builtins.__dict__:
_ = gettext.gettext
-class TextEditor(QtWidgets.QWidget):
+class AppTextEditor(QtWidgets.QWidget):
def __init__(self, app, text=None, plain_text=None, parent=None):
super().__init__(parent=parent)
diff --git a/appGUI/MainGUI.py b/appGUI/MainGUI.py
index 53e95d0e..2d075671 100644
--- a/appGUI/MainGUI.py
+++ b/appGUI/MainGUI.py
@@ -19,7 +19,7 @@ from appGUI.preferences.excellon.ExcellonPreferencesUI import ExcellonPreference
from appGUI.preferences.general.GeneralPreferencesUI import GeneralPreferencesUI
from appGUI.preferences.geometry.GeometryPreferencesUI import GeometryPreferencesUI
from appGUI.preferences.gerber.GerberPreferencesUI import GerberPreferencesUI
-from appEditors.appGeoEditor import FCShapeTool
+from appEditors.AppGeoEditor import FCShapeTool
from matplotlib.backend_bases import KeyEvent as mpl_key_event
import webbrowser
diff --git a/appObjects/FlatCAMCNCJob.py b/appObjects/FlatCAMCNCJob.py
index bdfaca9f..86c602c1 100644
--- a/appObjects/FlatCAMCNCJob.py
+++ b/appObjects/FlatCAMCNCJob.py
@@ -14,7 +14,7 @@ from copy import deepcopy
from io import StringIO
from datetime import datetime
-from appEditors.FlatCAMTextEditor import TextEditor
+from appEditors.AppTextEditor import AppTextEditor
from appObjects.FlatCAMObj import *
from camlib import CNCjob
@@ -556,7 +556,7 @@ class CNCJobObject(FlatCAMObj, CNCjob):
else:
self.app.gcode_edited = gco
- self.gcode_editor_tab = TextEditor(app=self.app, plain_text=True)
+ self.gcode_editor_tab = AppTextEditor(app=self.app, plain_text=True)
# add the tab if it was closed
self.app.ui.plot_tab_area.addTab(self.gcode_editor_tab, '%s' % _("Code Editor"))
diff --git a/appObjects/FlatCAMDocument.py b/appObjects/FlatCAMDocument.py
index 47219abc..e278e9c3 100644
--- a/appObjects/FlatCAMDocument.py
+++ b/appObjects/FlatCAMDocument.py
@@ -10,7 +10,7 @@
# File modified by: Marius Stanciu #
# ##########################################################
-from appEditors.FlatCAMTextEditor import TextEditor
+from appEditors.AppTextEditor import AppTextEditor
from appObjects.FlatCAMObj import *
import gettext
@@ -75,7 +75,7 @@ class DocumentObject(FlatCAMObj):
'Advanced'
))
- self.document_editor_tab = TextEditor(app=self.app)
+ self.document_editor_tab = AppTextEditor(app=self.app)
stylesheet = """
QTextEdit {selection-background-color:%s;
selection-color:white;
diff --git a/appObjects/FlatCAMScript.py b/appObjects/FlatCAMScript.py
index 27f6f8bd..cb0afbd6 100644
--- a/appObjects/FlatCAMScript.py
+++ b/appObjects/FlatCAMScript.py
@@ -10,7 +10,7 @@
# File modified by: Marius Stanciu #
# ##########################################################
-from appEditors.FlatCAMTextEditor import TextEditor
+from appEditors.AppTextEditor import AppTextEditor
from appObjects.FlatCAMObj import *
from appGUI.ObjectUI import *
@@ -86,7 +86,7 @@ class ScriptObject(FlatCAMObj):
'Advanced'
))
- self.script_editor_tab = TextEditor(app=self.app, plain_text=True, parent=self.app.ui)
+ self.script_editor_tab = AppTextEditor(app=self.app, plain_text=True, parent=self.app.ui)
# tab_here = False
# # try to not add too many times a tab that it is already installed
diff --git a/appTools/ToolCalibration.py b/appTools/ToolCalibration.py
index 815acf7b..10a00bc2 100644
--- a/appTools/ToolCalibration.py
+++ b/appTools/ToolCalibration.py
@@ -10,7 +10,7 @@ from PyQt5 import QtWidgets, QtCore, QtGui
from appTool import AppTool
from appGUI.GUIElements import FCDoubleSpinner, EvalEntry, FCCheckBox, OptionalInputSection, FCEntry
from appGUI.GUIElements import FCTable, FCComboBox, RadioSet
-from appEditors.FlatCAMTextEditor import TextEditor
+from appEditors.AppTextEditor import AppTextEditor
from shapely.geometry import Point
from shapely.geometry.base import *
@@ -1061,7 +1061,7 @@ class ToolCalibration(AppTool):
gcode += 'M2'
- self.gcode_editor_tab = TextEditor(app=self.app, plain_text=True)
+ self.gcode_editor_tab = AppTextEditor(app=self.app, plain_text=True)
# add the tab if it was closed
self.app.ui.plot_tab_area.addTab(self.gcode_editor_tab, '%s' % _("Gcode Viewer"))
diff --git a/appTools/ToolDistance.py b/appTools/ToolDistance.py
index e0ce772b..078aee31 100644
--- a/appTools/ToolDistance.py
+++ b/appTools/ToolDistance.py
@@ -15,7 +15,7 @@ from shapely.geometry import Point, MultiLineString, Polygon
import appTranslation as fcTranslate
from camlib import FlatCAMRTreeStorage
-from appEditors.appGeoEditor import DrawToolShape
+from appEditors.AppGeoEditor import DrawToolShape
from copy import copy
import math
diff --git a/appTools/ToolSolderPaste.py b/appTools/ToolSolderPaste.py
index bc0e29d4..60039d51 100644
--- a/appTools/ToolSolderPaste.py
+++ b/appTools/ToolSolderPaste.py
@@ -11,7 +11,7 @@ from appGUI.GUIElements import FCComboBox, FCEntry, FCTable, \
FCInputDialog, FCDoubleSpinner, FCSpinner, FCFileSaveDialog
from app_Main import log
from camlib import distance
-from appEditors.FlatCAMTextEditor import TextEditor
+from appEditors.AppTextEditor import AppTextEditor
from PyQt5 import QtGui, QtCore, QtWidgets
from PyQt5.QtCore import Qt
@@ -1414,7 +1414,7 @@ class SolderPaste(AppTool):
"""
time_str = "{:%A, %d %B %Y at %H:%M}".format(datetime.now())
- self.text_editor_tab = TextEditor(app=self.app)
+ self.text_editor_tab = AppTextEditor(app=self.app)
# add the tab if it was closed
self.app.ui.plot_tab_area.addTab(self.text_editor_tab, _("SP GCode Editor"))
diff --git a/app_Main.py b/app_Main.py
index 7b7542d7..a9257f12 100644
--- a/app_Main.py
+++ b/app_Main.py
@@ -78,10 +78,10 @@ from appGUI.GUIElements import FCFileSaveDialog, message_dialog, FlatCAMSystemTr
from appPreProcessor import load_preprocessors
# FlatCAM appEditors
-from appEditors.appGeoEditor import appGeoEditor
-from appEditors.FlatCAMExcEditor import FlatCAMExcEditor
-from appEditors.FlatCAMGrbEditor import FlatCAMGrbEditor
-from appEditors.FlatCAMTextEditor import TextEditor
+from appEditors.AppGeoEditor import AppGeoEditor
+from appEditors.AppExcEditor import AppExcEditor
+from appEditors.AppGerberEditor import AppGerberEditor
+from appEditors.AppTextEditor import AppTextEditor
from appParsers.ParseHPGL2 import HPGL2
# FlatCAM Workers
@@ -1552,17 +1552,17 @@ class App(QtCore.QObject):
# watch out for the position of the editors instantiation ... if it is done before a save of the default values
# at the first launch of the App , the editors will not be functional.
try:
- self.geo_editor = appGeoEditor(self)
+ self.geo_editor = AppGeoEditor(self)
except Exception as es:
log.debug("app_Main.__init__() --> Geo Editor Error: %s" % str(es))
try:
- self.exc_editor = FlatCAMExcEditor(self)
+ self.exc_editor = AppExcEditor(self)
except Exception as es:
log.debug("app_Main.__init__() --> Excellon Editor Error: %s" % str(es))
try:
- self.grb_editor = FlatCAMGrbEditor(self)
+ self.grb_editor = AppGerberEditor(self)
except Exception as es:
log.debug("app_Main.__init__() --> Gerber Editor Error: %s" % str(es))
self.log.debug("Finished adding FlatCAM Editor's.")
@@ -6593,9 +6593,9 @@ class App(QtCore.QObject):
if self.call_source != 'app':
self.editor2object(cleanup=True)
# ## EDITOR section
- self.geo_editor = appGeoEditor(self)
- self.exc_editor = FlatCAMExcEditor(self)
- self.grb_editor = FlatCAMGrbEditor(self)
+ self.geo_editor = AppGeoEditor(self)
+ self.exc_editor = AppExcEditor(self)
+ self.grb_editor = AppGerberEditor(self)
# Clear pool
self.clear_pool()
@@ -7415,7 +7415,7 @@ class App(QtCore.QObject):
# ###############################################################################################################
def init_code_editor(self, name):
- self.text_editor_tab = TextEditor(app=self, plain_text=True)
+ self.text_editor_tab = AppTextEditor(app=self, plain_text=True)
# add the tab if it was closed
self.ui.plot_tab_area.addTab(self.text_editor_tab, '%s' % name)
@@ -7466,7 +7466,7 @@ class App(QtCore.QObject):
elif obj.kind == 'cncjob':
flt = "GCode Files .nc (*.NC);;PDF Files .pdf (*.PDF);;All Files (*.*)"
- self.source_editor_tab = TextEditor(app=self, plain_text=True)
+ self.source_editor_tab = AppTextEditor(app=self, plain_text=True)
# add the tab if it was closed
self.ui.plot_tab_area.addTab(self.source_editor_tab, '%s' % _("Source Editor"))
@@ -7577,7 +7577,7 @@ class App(QtCore.QObject):
# make sure to move first the cursor at the end so after finding the line the line will be positioned
# at the top of the window
self.ui.plot_tab_area.currentWidget().code_editor.moveCursor(QTextCursor.End)
- # get the document() of the TextEditor
+ # get the document() of the AppTextEditor
doc = self.ui.plot_tab_area.currentWidget().code_editor.document()
# create a Text Cursor based on the searched line
cursor = QTextCursor(doc.findBlockByLineNumber(line))
diff --git a/locale/de/LC_MESSAGES/strings.po b/locale/de/LC_MESSAGES/strings.po
index 6fc3596f..9b590cf4 100644
--- a/locale/de/LC_MESSAGES/strings.po
+++ b/locale/de/LC_MESSAGES/strings.po
@@ -101,8 +101,8 @@ msgid "Bookmarks"
msgstr "Lesezeichen"
#: Bookmark.py:300 Bookmark.py:342 appDatabase.py:665 appDatabase.py:711
-#: appDatabase.py:2279 appDatabase.py:2325 appEditors/FlatCAMExcEditor.py:1023
-#: appEditors/FlatCAMExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
+#: appDatabase.py:2279 appDatabase.py:2325 appEditors/AppExcEditor.py:1023
+#: appEditors/AppExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
#: appGUI/MainGUI.py:2730 appGUI/MainGUI.py:2952 appGUI/MainGUI.py:3167
#: appObjects/ObjectCollection.py:127 appTools/ToolFilm.py:739
#: appTools/ToolFilm.py:885 appTools/ToolImage.py:247 appTools/ToolMove.py:269
@@ -174,7 +174,7 @@ msgstr ""
"Zone hinzugefügt. Klicken Sie, um die nächste Zone hinzuzufügen, oder "
"klicken Sie mit der rechten Maustaste, um den Vorgang abzuschließen."
-#: Common.py:322 appEditors/appGeoEditor.py:2352
+#: Common.py:322 appEditors/AppGeoEditor.py:2352
#: appTools/ToolIsolation.py:2584 appTools/ToolNCC.py:1754
#: appTools/ToolPaint.py:1647
msgid "Click on next Point or click right mouse button to complete ..."
@@ -279,7 +279,7 @@ msgid "Tool Name"
msgstr "Werkzeugname"
#: appDatabase.py:161 appDatabase.py:837 appDatabase.py:1119
-#: appEditors/FlatCAMExcEditor.py:1604 appGUI/ObjectUI.py:1226
+#: appEditors/AppExcEditor.py:1604 appGUI/ObjectUI.py:1226
#: appGUI/ObjectUI.py:1480
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:132
#: appTools/ToolIsolation.py:260 appTools/ToolNCC.py:278
@@ -847,7 +847,7 @@ msgstr ""
"Wenn dies nicht erfolgreich ist, schlägt auch das Löschen ohne Kupfer fehl.\n"
"- Klären-> das reguläre Nicht-Kupfer-löschen."
-#: appDatabase.py:1427 appEditors/FlatCAMGrbEditor.py:2749
+#: appDatabase.py:1427 appEditors/AppGerberEditor.py:2749
#: appGUI/GUIElements.py:2765 appTools/ToolNCC.py:350
msgid "Clear"
msgstr "Klären"
@@ -900,7 +900,7 @@ msgid "Conventional"
msgstr "Konventionell"
#: appDatabase.py:1456 appDatabase.py:1565 appDatabase.py:1667
-#: appEditors/appGeoEditor.py:450
+#: appEditors/AppGeoEditor.py:450
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:167
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:182
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:163
@@ -930,7 +930,7 @@ msgstr ""
"Höhere Werte = langsame Verarbeitung und langsame Ausführung auf CNC\n"
"wegen zu vieler Wege."
-#: appDatabase.py:1477 appDatabase.py:1586 appEditors/appGeoEditor.py:470
+#: appDatabase.py:1477 appDatabase.py:1586 appEditors/AppGeoEditor.py:470
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:72
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:229
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:59
@@ -959,7 +959,7 @@ msgstr "Marge"
msgid "Bounding box margin."
msgstr "Begrenzungsrahmenrand."
-#: appDatabase.py:1490 appDatabase.py:1601 appEditors/appGeoEditor.py:484
+#: appDatabase.py:1490 appDatabase.py:1601 appEditors/AppGeoEditor.py:484
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:105
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:106
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:215
@@ -982,7 +982,7 @@ msgstr ""
"- Samenbasiert: Aus dem Samen heraus.\n"
"- Linienbasiert: Parallele Linien."
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2232 appTools/ToolNCC.py:2764
@@ -992,8 +992,8 @@ msgstr ""
msgid "Standard"
msgstr "Standard"
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:568 appEditors/appGeoEditor.py:5091
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:568 appEditors/AppGeoEditor.py:5091
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2243 appTools/ToolNCC.py:2770
@@ -1004,8 +1004,8 @@ msgstr "Standard"
msgid "Seed"
msgstr "Keim"
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:5095
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:5095
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2254 appTools/ToolPaint.py:389
@@ -1029,7 +1029,7 @@ msgstr "Combo"
msgid "Connect"
msgstr "Verbinden"
-#: appDatabase.py:1512 appDatabase.py:1629 appEditors/appGeoEditor.py:507
+#: appDatabase.py:1512 appDatabase.py:1629 appEditors/AppGeoEditor.py:507
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:239
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:226
#: appTools/ToolNCC.py:443 appTools/ToolPaint.py:403
@@ -1047,7 +1047,7 @@ msgstr ""
msgid "Contour"
msgstr "Kontur"
-#: appDatabase.py:1522 appDatabase.py:1636 appEditors/appGeoEditor.py:517
+#: appDatabase.py:1522 appDatabase.py:1636 appEditors/AppGeoEditor.py:517
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:248
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:234
#: appTools/ToolNCC.py:453 appTools/ToolPaint.py:410
@@ -1058,8 +1058,8 @@ msgstr ""
"Schneiden Sie um den Umfang des Polygons herum\n"
"Ecken und Kanten schneiden."
-#: appDatabase.py:1528 appEditors/appGeoEditor.py:611
-#: appEditors/FlatCAMGrbEditor.py:5304 appGUI/ObjectUI.py:143
+#: appDatabase.py:1528 appEditors/AppGeoEditor.py:611
+#: appEditors/AppGerberEditor.py:5304 appGUI/ObjectUI.py:143
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:255
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:183
@@ -1082,7 +1082,7 @@ msgstr ""
"Der Wert kann zwischen 0 und 10 FlatCAM-Einheiten liegen."
# 3rd Time
-#: appDatabase.py:1567 appEditors/appGeoEditor.py:452
+#: appDatabase.py:1567 appEditors/AppGeoEditor.py:452
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:165
#: appTools/ToolPaint.py:330
msgid ""
@@ -1104,7 +1104,7 @@ msgstr ""
"Höhere Werte = langsame Verarbeitung und langsame Ausführung auf CNC\n"
"wegen zu vieler Wege."
-#: appDatabase.py:1588 appEditors/appGeoEditor.py:472
+#: appDatabase.py:1588 appEditors/AppGeoEditor.py:472
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:185
#: appTools/ToolPaint.py:351
msgid ""
@@ -1250,140 +1250,140 @@ msgstr ""
"Objekt / Anwendungswerkzeug nach Auswahl eines Werkzeugs\n"
"in der Werkzeugdatenbank."
-#: appEditors/FlatCAMExcEditor.py:50 appEditors/FlatCAMExcEditor.py:74
-#: appEditors/FlatCAMExcEditor.py:168 appEditors/FlatCAMExcEditor.py:385
-#: appEditors/FlatCAMExcEditor.py:589 appEditors/FlatCAMGrbEditor.py:241
-#: appEditors/FlatCAMGrbEditor.py:248
+#: appEditors/AppExcEditor.py:50 appEditors/AppExcEditor.py:74
+#: appEditors/AppExcEditor.py:168 appEditors/AppExcEditor.py:385
+#: appEditors/AppExcEditor.py:589 appEditors/AppGerberEditor.py:241
+#: appEditors/AppGerberEditor.py:248
msgid "Click to place ..."
msgstr "Klicken um zu platzieren ..."
-#: appEditors/FlatCAMExcEditor.py:58
+#: appEditors/AppExcEditor.py:58
msgid "To add a drill first select a tool"
msgstr "Um einen Bohrer hinzuzufügen, wählen Sie zuerst ein Werkzeug aus"
-#: appEditors/FlatCAMExcEditor.py:122
+#: appEditors/AppExcEditor.py:122
msgid "Done. Drill added."
msgstr "Erledigt. Bohrer hinzugefügt."
-#: appEditors/FlatCAMExcEditor.py:176
+#: appEditors/AppExcEditor.py:176
msgid "To add an Drill Array first select a tool in Tool Table"
msgstr ""
"Um ein Bohr-Array hinzuzufügen, wählen Sie zunächst ein Werkzeug in der "
"Werkzeugtabelle aus"
-#: appEditors/FlatCAMExcEditor.py:192 appEditors/FlatCAMExcEditor.py:415
-#: appEditors/FlatCAMExcEditor.py:636 appEditors/FlatCAMExcEditor.py:1151
-#: appEditors/FlatCAMExcEditor.py:1178 appEditors/FlatCAMGrbEditor.py:471
-#: appEditors/FlatCAMGrbEditor.py:1944 appEditors/FlatCAMGrbEditor.py:1974
+#: appEditors/AppExcEditor.py:192 appEditors/AppExcEditor.py:415
+#: appEditors/AppExcEditor.py:636 appEditors/AppExcEditor.py:1151
+#: appEditors/AppExcEditor.py:1178 appEditors/AppGerberEditor.py:471
+#: appEditors/AppGerberEditor.py:1944 appEditors/AppGerberEditor.py:1974
msgid "Click on target location ..."
msgstr "Klicken Sie auf den Zielort ..."
-#: appEditors/FlatCAMExcEditor.py:211
+#: appEditors/AppExcEditor.py:211
msgid "Click on the Drill Circular Array Start position"
msgstr "Klicken Sie auf die Startposition des Bohrkreis-Arrays"
-#: appEditors/FlatCAMExcEditor.py:233 appEditors/FlatCAMExcEditor.py:677
-#: appEditors/FlatCAMGrbEditor.py:516
+#: appEditors/AppExcEditor.py:233 appEditors/AppExcEditor.py:677
+#: appEditors/AppGerberEditor.py:516
msgid "The value is not Float. Check for comma instead of dot separator."
msgstr ""
"Der Wert ist nicht Real. Überprüfen Sie das Komma anstelle des Trennzeichens."
-#: appEditors/FlatCAMExcEditor.py:237
+#: appEditors/AppExcEditor.py:237
msgid "The value is mistyped. Check the value"
msgstr "Der Wert ist falsch geschrieben. Überprüfen Sie den Wert"
-#: appEditors/FlatCAMExcEditor.py:336
+#: appEditors/AppExcEditor.py:336
msgid "Too many drills for the selected spacing angle."
msgstr "Zu viele Bohrer für den ausgewählten Abstandswinkel."
-#: appEditors/FlatCAMExcEditor.py:354
+#: appEditors/AppExcEditor.py:354
msgid "Done. Drill Array added."
msgstr "Erledigt. Bohrfeld hinzugefügt."
-#: appEditors/FlatCAMExcEditor.py:394
+#: appEditors/AppExcEditor.py:394
msgid "To add a slot first select a tool"
msgstr "Um einen Steckplatz hinzuzufügen, wählen Sie zunächst ein Werkzeug aus"
-#: appEditors/FlatCAMExcEditor.py:454 appEditors/FlatCAMExcEditor.py:461
-#: appEditors/FlatCAMExcEditor.py:742 appEditors/FlatCAMExcEditor.py:749
+#: appEditors/AppExcEditor.py:454 appEditors/AppExcEditor.py:461
+#: appEditors/AppExcEditor.py:742 appEditors/AppExcEditor.py:749
msgid "Value is missing or wrong format. Add it and retry."
msgstr ""
"Wert fehlt oder falsches Format. Fügen Sie es hinzu und versuchen Sie es "
"erneut."
-#: appEditors/FlatCAMExcEditor.py:559
+#: appEditors/AppExcEditor.py:559
msgid "Done. Adding Slot completed."
msgstr "Erledigt. Das Hinzufügen des Slots ist abgeschlossen."
-#: appEditors/FlatCAMExcEditor.py:597
+#: appEditors/AppExcEditor.py:597
msgid "To add an Slot Array first select a tool in Tool Table"
msgstr ""
"Um ein Schlitze-Array hinzuzufügen, wählen Sie zunächst ein Werkzeug in der "
"Werkzeugtabelle aus"
-#: appEditors/FlatCAMExcEditor.py:655
+#: appEditors/AppExcEditor.py:655
msgid "Click on the Slot Circular Array Start position"
msgstr "Klicken Sie auf die kreisförmige Startposition des Arrays"
-#: appEditors/FlatCAMExcEditor.py:680 appEditors/FlatCAMGrbEditor.py:519
+#: appEditors/AppExcEditor.py:680 appEditors/AppGerberEditor.py:519
msgid "The value is mistyped. Check the value."
msgstr "Der Wert ist falsch geschrieben. Überprüfen Sie den Wert."
-#: appEditors/FlatCAMExcEditor.py:859
+#: appEditors/AppExcEditor.py:859
msgid "Too many Slots for the selected spacing angle."
msgstr "Zu viele Slots für den ausgewählten Abstandswinkel."
-#: appEditors/FlatCAMExcEditor.py:882
+#: appEditors/AppExcEditor.py:882
msgid "Done. Slot Array added."
msgstr "Erledigt. Schlitze Array hinzugefügt."
-#: appEditors/FlatCAMExcEditor.py:904
+#: appEditors/AppExcEditor.py:904
msgid "Click on the Drill(s) to resize ..."
msgstr "Klicken Sie auf die Bohrer, um die Größe zu ändern ..."
-#: appEditors/FlatCAMExcEditor.py:934
+#: appEditors/AppExcEditor.py:934
msgid "Resize drill(s) failed. Please enter a diameter for resize."
msgstr ""
"Die Größe der Bohrer ist fehlgeschlagen. Bitte geben Sie einen Durchmesser "
"für die Größenänderung ein."
-#: appEditors/FlatCAMExcEditor.py:1112
+#: appEditors/AppExcEditor.py:1112
msgid "Done. Drill/Slot Resize completed."
msgstr "Getan. Bohrer / Schlitz Größenänderung abgeschlossen."
-#: appEditors/FlatCAMExcEditor.py:1115
+#: appEditors/AppExcEditor.py:1115
msgid "Cancelled. No drills/slots selected for resize ..."
msgstr "Abgebrochen. Keine Bohrer / Schlitze für Größenänderung ausgewählt ..."
-#: appEditors/FlatCAMExcEditor.py:1153 appEditors/FlatCAMGrbEditor.py:1946
+#: appEditors/AppExcEditor.py:1153 appEditors/AppGerberEditor.py:1946
msgid "Click on reference location ..."
msgstr "Klicken Sie auf die Referenzposition ..."
-#: appEditors/FlatCAMExcEditor.py:1210
+#: appEditors/AppExcEditor.py:1210
msgid "Done. Drill(s) Move completed."
msgstr "Erledigt. Bohrer Bewegen abgeschlossen."
-#: appEditors/FlatCAMExcEditor.py:1318
+#: appEditors/AppExcEditor.py:1318
msgid "Done. Drill(s) copied."
msgstr "Erledigt. Bohrer kopiert."
-#: appEditors/FlatCAMExcEditor.py:1557
+#: appEditors/AppExcEditor.py:1557
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:26
msgid "Excellon Editor"
msgstr "Excellon Editor"
-#: appEditors/FlatCAMExcEditor.py:1564 appEditors/FlatCAMGrbEditor.py:2469
+#: appEditors/AppExcEditor.py:1564 appEditors/AppGerberEditor.py:2469
msgid "Name:"
msgstr "Name:"
-#: appEditors/FlatCAMExcEditor.py:1570 appGUI/ObjectUI.py:540
+#: appEditors/AppExcEditor.py:1570 appGUI/ObjectUI.py:540
#: appGUI/ObjectUI.py:1362 appTools/ToolIsolation.py:118
#: appTools/ToolNCC.py:120 appTools/ToolPaint.py:114
#: appTools/ToolSolderPaste.py:79
msgid "Tools Table"
msgstr "Werkzeugtabelle"
-#: appEditors/FlatCAMExcEditor.py:1572 appGUI/ObjectUI.py:542
+#: appEditors/AppExcEditor.py:1572 appGUI/ObjectUI.py:542
msgid ""
"Tools in this Excellon object\n"
"when are used for drilling."
@@ -1391,7 +1391,7 @@ msgstr ""
"Werkzeuge in diesem Excellon-Objekt\n"
"Wann werden zum Bohren verwendet."
-#: appEditors/FlatCAMExcEditor.py:1584 appEditors/FlatCAMExcEditor.py:3041
+#: appEditors/AppExcEditor.py:1584 appEditors/AppExcEditor.py:3041
#: appGUI/ObjectUI.py:560 appObjects/FlatCAMExcellon.py:1265
#: appObjects/FlatCAMExcellon.py:1368 appObjects/FlatCAMExcellon.py:1553
#: appTools/ToolIsolation.py:130 appTools/ToolNCC.py:132
@@ -1401,11 +1401,11 @@ msgstr ""
msgid "Diameter"
msgstr "Durchmesser"
-#: appEditors/FlatCAMExcEditor.py:1592
+#: appEditors/AppExcEditor.py:1592
msgid "Add/Delete Tool"
msgstr "Werkzeug hinzufügen / löschen"
-#: appEditors/FlatCAMExcEditor.py:1594
+#: appEditors/AppExcEditor.py:1594
msgid ""
"Add/Delete a tool to the tool list\n"
"for this Excellon object."
@@ -1413,16 +1413,16 @@ msgstr ""
"Werkzeug zur Werkzeugliste hinzufügen / löschen\n"
"für dieses Excellon-Objekt."
-#: appEditors/FlatCAMExcEditor.py:1606 appGUI/ObjectUI.py:1482
+#: appEditors/AppExcEditor.py:1606 appGUI/ObjectUI.py:1482
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:57
msgid "Diameter for the new tool"
msgstr "Durchmesser für das neue Werkzeug"
-#: appEditors/FlatCAMExcEditor.py:1616
+#: appEditors/AppExcEditor.py:1616
msgid "Add Tool"
msgstr "Werkzeug hinzufügen"
-#: appEditors/FlatCAMExcEditor.py:1618
+#: appEditors/AppExcEditor.py:1618
msgid ""
"Add a new tool to the tool list\n"
"with the diameter specified above."
@@ -1430,11 +1430,11 @@ msgstr ""
"Fügen Sie der Werkzeugliste ein neues Werkzeug hinzu\n"
"mit dem oben angegebenen Durchmesser."
-#: appEditors/FlatCAMExcEditor.py:1630
+#: appEditors/AppExcEditor.py:1630
msgid "Delete Tool"
msgstr "Werkzeug löschen"
-#: appEditors/FlatCAMExcEditor.py:1632
+#: appEditors/AppExcEditor.py:1632
msgid ""
"Delete a tool in the tool list\n"
"by selecting a row in the tool table."
@@ -1442,41 +1442,41 @@ msgstr ""
"Löschen Sie ein Werkzeug in der Werkzeugliste\n"
"indem Sie eine Zeile in der Werkzeugtabelle auswählen."
-#: appEditors/FlatCAMExcEditor.py:1650 appGUI/MainGUI.py:4392
+#: appEditors/AppExcEditor.py:1650 appGUI/MainGUI.py:4392
msgid "Resize Drill(s)"
msgstr "Größe der Bohrer ändern"
-#: appEditors/FlatCAMExcEditor.py:1652
+#: appEditors/AppExcEditor.py:1652
msgid "Resize a drill or a selection of drills."
msgstr "Ändern Sie die Größe eines Bohrers oder einer Auswahl von Bohrern."
-#: appEditors/FlatCAMExcEditor.py:1659
+#: appEditors/AppExcEditor.py:1659
msgid "Resize Dia"
msgstr "Durchmesser ändern"
-#: appEditors/FlatCAMExcEditor.py:1661
+#: appEditors/AppExcEditor.py:1661
msgid "Diameter to resize to."
msgstr "Durchmesser zur Größenänderung."
-#: appEditors/FlatCAMExcEditor.py:1672
+#: appEditors/AppExcEditor.py:1672
msgid "Resize"
msgstr "Größe ändern"
-#: appEditors/FlatCAMExcEditor.py:1674
+#: appEditors/AppExcEditor.py:1674
msgid "Resize drill(s)"
msgstr "Bohrer verkleinern"
-#: appEditors/FlatCAMExcEditor.py:1699 appGUI/MainGUI.py:1514
+#: appEditors/AppExcEditor.py:1699 appGUI/MainGUI.py:1514
#: appGUI/MainGUI.py:4391
msgid "Add Drill Array"
msgstr "Bohrer-Array hinzufügen"
-#: appEditors/FlatCAMExcEditor.py:1701
+#: appEditors/AppExcEditor.py:1701
msgid "Add an array of drills (linear or circular array)"
msgstr ""
"Hinzufügen eines Arrays von Bohrern (lineares oder kreisförmiges Array)"
-#: appEditors/FlatCAMExcEditor.py:1707
+#: appEditors/AppExcEditor.py:1707
msgid ""
"Select the type of drills array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -1484,13 +1484,13 @@ msgstr ""
"Wählen Sie den Typ des zu erstellenden Bohrfelds aus.\n"
"Es kann lineares X (Y) oder rund sein"
-#: appEditors/FlatCAMExcEditor.py:1710 appEditors/FlatCAMExcEditor.py:1924
-#: appEditors/FlatCAMGrbEditor.py:2782
+#: appEditors/AppExcEditor.py:1710 appEditors/AppExcEditor.py:1924
+#: appEditors/AppGerberEditor.py:2782
msgid "Linear"
msgstr "Linear"
-#: appEditors/FlatCAMExcEditor.py:1711 appEditors/FlatCAMExcEditor.py:1925
-#: appEditors/FlatCAMGrbEditor.py:2783
+#: appEditors/AppExcEditor.py:1711 appEditors/AppExcEditor.py:1925
+#: appEditors/AppGerberEditor.py:2783
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:52
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:149
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:107
@@ -1506,26 +1506,26 @@ msgstr "Linear"
msgid "Circular"
msgstr "Kreisförmig"
-#: appEditors/FlatCAMExcEditor.py:1719
+#: appEditors/AppExcEditor.py:1719
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:68
msgid "Nr of drills"
msgstr "Anzahl der Bohrer"
-#: appEditors/FlatCAMExcEditor.py:1720
+#: appEditors/AppExcEditor.py:1720
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:70
msgid "Specify how many drills to be in the array."
msgstr "Geben Sie an, wie viele Drills im Array enthalten sein sollen."
-#: appEditors/FlatCAMExcEditor.py:1738 appEditors/FlatCAMExcEditor.py:1788
-#: appEditors/FlatCAMExcEditor.py:1860 appEditors/FlatCAMExcEditor.py:1953
-#: appEditors/FlatCAMExcEditor.py:2004 appEditors/FlatCAMGrbEditor.py:1580
-#: appEditors/FlatCAMGrbEditor.py:2811 appEditors/FlatCAMGrbEditor.py:2860
+#: appEditors/AppExcEditor.py:1738 appEditors/AppExcEditor.py:1788
+#: appEditors/AppExcEditor.py:1860 appEditors/AppExcEditor.py:1953
+#: appEditors/AppExcEditor.py:2004 appEditors/AppGerberEditor.py:1580
+#: appEditors/AppGerberEditor.py:2811 appEditors/AppGerberEditor.py:2860
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:178
msgid "Direction"
msgstr "Richtung"
-#: appEditors/FlatCAMExcEditor.py:1740 appEditors/FlatCAMExcEditor.py:1955
-#: appEditors/FlatCAMGrbEditor.py:2813
+#: appEditors/AppExcEditor.py:1740 appEditors/AppExcEditor.py:1955
+#: appEditors/AppGerberEditor.py:2813
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:86
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:234
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:123
@@ -1540,8 +1540,8 @@ msgstr ""
"- 'Y' - vertikale Achse oder\n"
"- 'Winkel' - ein benutzerdefinierter Winkel für die Neigung des Arrays"
-#: appEditors/FlatCAMExcEditor.py:1747 appEditors/FlatCAMExcEditor.py:1869
-#: appEditors/FlatCAMExcEditor.py:1962 appEditors/FlatCAMGrbEditor.py:2820
+#: appEditors/AppExcEditor.py:1747 appEditors/AppExcEditor.py:1869
+#: appEditors/AppExcEditor.py:1962 appEditors/AppGerberEditor.py:2820
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:240
@@ -1551,8 +1551,8 @@ msgstr ""
msgid "X"
msgstr "X"
-#: appEditors/FlatCAMExcEditor.py:1748 appEditors/FlatCAMExcEditor.py:1870
-#: appEditors/FlatCAMExcEditor.py:1963 appEditors/FlatCAMGrbEditor.py:2821
+#: appEditors/AppExcEditor.py:1748 appEditors/AppExcEditor.py:1870
+#: appEditors/AppExcEditor.py:1963 appEditors/AppGerberEditor.py:2821
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:241
@@ -1562,13 +1562,13 @@ msgstr "X"
msgid "Y"
msgstr "Y"
-#: appEditors/FlatCAMExcEditor.py:1749 appEditors/FlatCAMExcEditor.py:1766
-#: appEditors/FlatCAMExcEditor.py:1800 appEditors/FlatCAMExcEditor.py:1871
-#: appEditors/FlatCAMExcEditor.py:1875 appEditors/FlatCAMExcEditor.py:1964
-#: appEditors/FlatCAMExcEditor.py:1982 appEditors/FlatCAMExcEditor.py:2016
-#: appEditors/appGeoEditor.py:683 appEditors/FlatCAMGrbEditor.py:2822
-#: appEditors/FlatCAMGrbEditor.py:2839 appEditors/FlatCAMGrbEditor.py:2875
-#: appEditors/FlatCAMGrbEditor.py:5376
+#: appEditors/AppExcEditor.py:1749 appEditors/AppExcEditor.py:1766
+#: appEditors/AppExcEditor.py:1800 appEditors/AppExcEditor.py:1871
+#: appEditors/AppExcEditor.py:1875 appEditors/AppExcEditor.py:1964
+#: appEditors/AppExcEditor.py:1982 appEditors/AppExcEditor.py:2016
+#: appEditors/AppGeoEditor.py:683 appEditors/AppGerberEditor.py:2822
+#: appEditors/AppGerberEditor.py:2839 appEditors/AppGerberEditor.py:2875
+#: appEditors/AppGerberEditor.py:5376
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:94
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:113
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:189
@@ -1583,23 +1583,23 @@ msgstr "Y"
msgid "Angle"
msgstr "Winkel"
-#: appEditors/FlatCAMExcEditor.py:1753 appEditors/FlatCAMExcEditor.py:1968
-#: appEditors/FlatCAMGrbEditor.py:2826
+#: appEditors/AppExcEditor.py:1753 appEditors/AppExcEditor.py:1968
+#: appEditors/AppGerberEditor.py:2826
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:100
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:248
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:137
msgid "Pitch"
msgstr "Abstand"
-#: appEditors/FlatCAMExcEditor.py:1755 appEditors/FlatCAMExcEditor.py:1970
-#: appEditors/FlatCAMGrbEditor.py:2828
+#: appEditors/AppExcEditor.py:1755 appEditors/AppExcEditor.py:1970
+#: appEditors/AppGerberEditor.py:2828
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:102
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:250
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:139
msgid "Pitch = Distance between elements of the array."
msgstr "Abstand = Abstand zwischen Elementen des Arrays."
-#: appEditors/FlatCAMExcEditor.py:1768 appEditors/FlatCAMExcEditor.py:1984
+#: appEditors/AppExcEditor.py:1768 appEditors/AppExcEditor.py:1984
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1611,8 +1611,8 @@ msgstr ""
"Der Mindestwert beträgt -360 Grad.\n"
"Maximalwert ist: 360.00 Grad."
-#: appEditors/FlatCAMExcEditor.py:1789 appEditors/FlatCAMExcEditor.py:2005
-#: appEditors/FlatCAMGrbEditor.py:2862
+#: appEditors/AppExcEditor.py:1789 appEditors/AppExcEditor.py:2005
+#: appEditors/AppGerberEditor.py:2862
msgid ""
"Direction for circular array.Can be CW = clockwise or CCW = counter "
"clockwise."
@@ -1620,8 +1620,8 @@ msgstr ""
"Richtung für kreisförmige Anordnung. Kann CW = Uhrzeigersinn oder CCW = "
"Gegenuhrzeigersinn sein."
-#: appEditors/FlatCAMExcEditor.py:1796 appEditors/FlatCAMExcEditor.py:2012
-#: appEditors/FlatCAMGrbEditor.py:2870
+#: appEditors/AppExcEditor.py:1796 appEditors/AppExcEditor.py:2012
+#: appEditors/AppGerberEditor.py:2870
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:129
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:136
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:286
@@ -1630,8 +1630,8 @@ msgstr ""
msgid "CW"
msgstr "CW"
-#: appEditors/FlatCAMExcEditor.py:1797 appEditors/FlatCAMExcEditor.py:2013
-#: appEditors/FlatCAMGrbEditor.py:2871
+#: appEditors/AppExcEditor.py:1797 appEditors/AppExcEditor.py:2013
+#: appEditors/AppGerberEditor.py:2871
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:130
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:137
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:287
@@ -1640,8 +1640,8 @@ msgstr "CW"
msgid "CCW"
msgstr "CCW"
-#: appEditors/FlatCAMExcEditor.py:1801 appEditors/FlatCAMExcEditor.py:2017
-#: appEditors/FlatCAMGrbEditor.py:2877
+#: appEditors/AppExcEditor.py:1801 appEditors/AppExcEditor.py:2017
+#: appEditors/AppGerberEditor.py:2877
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:115
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:145
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:265
@@ -1652,11 +1652,11 @@ msgid "Angle at which each element in circular array is placed."
msgstr ""
"Winkel, um den jedes Element in einer kreisförmigen Anordnung platziert wird."
-#: appEditors/FlatCAMExcEditor.py:1835
+#: appEditors/AppExcEditor.py:1835
msgid "Slot Parameters"
msgstr "Schlitze-Parameter"
-#: appEditors/FlatCAMExcEditor.py:1837
+#: appEditors/AppExcEditor.py:1837
msgid ""
"Parameters for adding a slot (hole with oval shape)\n"
"either single or as an part of an array."
@@ -1664,19 +1664,19 @@ msgstr ""
"Parameter zum Hinzufügen eines Schlitzes (Loch mit ovaler Form)\n"
"entweder einzeln oder als Teil eines Arrays."
-#: appEditors/FlatCAMExcEditor.py:1846
+#: appEditors/AppExcEditor.py:1846
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:162
#: appGUI/preferences/tools/ToolsCornersPrefGroupUI.py:56
#: appTools/ToolCorners.py:136 appTools/ToolProperties.py:559
msgid "Length"
msgstr "Länge"
-#: appEditors/FlatCAMExcEditor.py:1848
+#: appEditors/AppExcEditor.py:1848
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:164
msgid "Length = The length of the slot."
msgstr "Länge = Die Länge des Schlitzes."
-#: appEditors/FlatCAMExcEditor.py:1862
+#: appEditors/AppExcEditor.py:1862
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:180
msgid ""
"Direction on which the slot is oriented:\n"
@@ -1689,7 +1689,7 @@ msgstr ""
"- 'Y' - vertikale Achse oder\n"
"- 'Winkel' - Ein benutzerdefinierter Winkel für die Schlitzneigung"
-#: appEditors/FlatCAMExcEditor.py:1877
+#: appEditors/AppExcEditor.py:1877
msgid ""
"Angle at which the slot is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1701,16 +1701,16 @@ msgstr ""
"Der Mindestwert beträgt: -360 Grad.\n"
"Maximaler Wert ist: 360.00 Grad."
-#: appEditors/FlatCAMExcEditor.py:1910
+#: appEditors/AppExcEditor.py:1910
msgid "Slot Array Parameters"
msgstr "Schlitzes Array-Parameter"
-#: appEditors/FlatCAMExcEditor.py:1912
+#: appEditors/AppExcEditor.py:1912
msgid "Parameters for the array of slots (linear or circular array)"
msgstr ""
"Parameter für das Array von Schlitzes (lineares oder kreisförmiges Array)"
-#: appEditors/FlatCAMExcEditor.py:1921
+#: appEditors/AppExcEditor.py:1921
msgid ""
"Select the type of slot array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -1718,25 +1718,25 @@ msgstr ""
"Wählen Sie den Typ des zu erstellenden Slot-Arrays.\n"
"Es kann ein lineares X (Y) oder ein kreisförmiges sein"
-#: appEditors/FlatCAMExcEditor.py:1933
+#: appEditors/AppExcEditor.py:1933
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:219
msgid "Nr of slots"
msgstr "Anzahl der Slots"
-#: appEditors/FlatCAMExcEditor.py:1934
+#: appEditors/AppExcEditor.py:1934
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:221
msgid "Specify how many slots to be in the array."
msgstr "Geben Sie an, wie viele Steckplätze sich im Array befinden sollen."
-#: appEditors/FlatCAMExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
+#: appEditors/AppExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
msgid "Total Drills"
msgstr "Bohrungen insgesamt"
-#: appEditors/FlatCAMExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
+#: appEditors/AppExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
msgid "Total Slots"
msgstr "Schlitz insgesamt"
-#: appEditors/FlatCAMExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
+#: appEditors/AppExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
#: appObjects/FlatCAMGeometry.py:1099 appObjects/FlatCAMGeometry.py:1841
#: appObjects/FlatCAMGeometry.py:2491 appTools/ToolIsolation.py:1526
#: appTools/ToolNCC.py:1516 appTools/ToolPaint.py:1268
@@ -1745,7 +1745,7 @@ msgstr "Schlitz insgesamt"
msgid "Wrong value format entered, use a number."
msgstr "Falsches Wertformat eingegeben, eine Zahl verwenden."
-#: appEditors/FlatCAMExcEditor.py:2570
+#: appEditors/AppExcEditor.py:2570
msgid ""
"Tool already in the original or actual tool list.\n"
"Save and reedit Excellon if you need to add this tool. "
@@ -1754,75 +1754,75 @@ msgstr ""
"Speichern Sie Excellon und bearbeiten Sie es erneut, wenn Sie dieses Tool "
"hinzufügen müssen. "
-#: appEditors/FlatCAMExcEditor.py:2579 appGUI/MainGUI.py:3364
+#: appEditors/AppExcEditor.py:2579 appGUI/MainGUI.py:3364
msgid "Added new tool with dia"
msgstr "Neues Werkzeug mit Durchmesser hinzugefügt"
-#: appEditors/FlatCAMExcEditor.py:2612
+#: appEditors/AppExcEditor.py:2612
msgid "Select a tool in Tool Table"
msgstr "Wählen Sie ein Werkzeug in der Werkzeugtabelle aus"
-#: appEditors/FlatCAMExcEditor.py:2642
+#: appEditors/AppExcEditor.py:2642
msgid "Deleted tool with diameter"
msgstr "Gelöschtes Werkzeug mit Durchmesser"
-#: appEditors/FlatCAMExcEditor.py:2790
+#: appEditors/AppExcEditor.py:2790
msgid "Done. Tool edit completed."
msgstr "Erledigt. Werkzeugbearbeitung abgeschlossen."
-#: appEditors/FlatCAMExcEditor.py:3327
+#: appEditors/AppExcEditor.py:3327
msgid "There are no Tools definitions in the file. Aborting Excellon creation."
msgstr ""
"Die Datei enthält keine Werkzeugdefinitionen. Abbruch der Excellon-"
"Erstellung."
-#: appEditors/FlatCAMExcEditor.py:3331
+#: appEditors/AppExcEditor.py:3331
msgid "An internal error has ocurred. See Shell.\n"
msgstr ""
"Ein interner Fehler ist aufgetreten. Siehe Shell.\n"
"\n"
-#: appEditors/FlatCAMExcEditor.py:3336
+#: appEditors/AppExcEditor.py:3336
msgid "Creating Excellon."
msgstr "Excellon erstellen."
-#: appEditors/FlatCAMExcEditor.py:3350
+#: appEditors/AppExcEditor.py:3350
msgid "Excellon editing finished."
msgstr "Excellon-Bearbeitung abgeschlossen."
-#: appEditors/FlatCAMExcEditor.py:3367
+#: appEditors/AppExcEditor.py:3367
msgid "Cancelled. There is no Tool/Drill selected"
msgstr "Abgebrochen. Es ist kein Werkzeug / Bohrer ausgewählt"
-#: appEditors/FlatCAMExcEditor.py:3601 appEditors/FlatCAMExcEditor.py:3609
-#: appEditors/appGeoEditor.py:4286 appEditors/appGeoEditor.py:4300
-#: appEditors/FlatCAMGrbEditor.py:1085 appEditors/FlatCAMGrbEditor.py:1312
-#: appEditors/FlatCAMGrbEditor.py:1497 appEditors/FlatCAMGrbEditor.py:1766
-#: appEditors/FlatCAMGrbEditor.py:4608 appEditors/FlatCAMGrbEditor.py:4625
+#: appEditors/AppExcEditor.py:3601 appEditors/AppExcEditor.py:3609
+#: appEditors/AppGeoEditor.py:4286 appEditors/AppGeoEditor.py:4300
+#: appEditors/AppGerberEditor.py:1085 appEditors/AppGerberEditor.py:1312
+#: appEditors/AppGerberEditor.py:1497 appEditors/AppGerberEditor.py:1766
+#: appEditors/AppGerberEditor.py:4608 appEditors/AppGerberEditor.py:4625
#: appGUI/MainGUI.py:2711 appGUI/MainGUI.py:2723
#: appTools/ToolAlignObjects.py:393 appTools/ToolAlignObjects.py:415
#: app_Main.py:4800 app_Main.py:4954
msgid "Done."
msgstr "Fertig."
-#: appEditors/FlatCAMExcEditor.py:3984
+#: appEditors/AppExcEditor.py:3984
msgid "Done. Drill(s) deleted."
msgstr "Erledigt. Bohrer gelöscht."
-#: appEditors/FlatCAMExcEditor.py:4057 appEditors/FlatCAMExcEditor.py:4067
-#: appEditors/FlatCAMGrbEditor.py:5056
+#: appEditors/AppExcEditor.py:4057 appEditors/AppExcEditor.py:4067
+#: appEditors/AppGerberEditor.py:5056
msgid "Click on the circular array Center position"
msgstr "Klicken Sie auf die kreisförmige Anordnung in der Mitte"
-#: appEditors/appGeoEditor.py:84
+#: appEditors/AppGeoEditor.py:84
msgid "Buffer distance:"
msgstr "Pufferabstand:"
-#: appEditors/appGeoEditor.py:85
+#: appEditors/AppGeoEditor.py:85
msgid "Buffer corner:"
msgstr "Pufferecke:"
-#: appEditors/appGeoEditor.py:87
+#: appEditors/AppGeoEditor.py:87
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded for exterior buffer.\n"
@@ -1837,11 +1837,11 @@ msgstr ""
"- 'Abgeschrägt:' Die Ecke ist eine Linie, die die Features, die sich in der "
"Ecke treffen, direkt verbindet"
-#: appEditors/appGeoEditor.py:93 appEditors/FlatCAMGrbEditor.py:2638
+#: appEditors/AppGeoEditor.py:93 appEditors/AppGerberEditor.py:2638
msgid "Round"
msgstr "Runden"
-#: appEditors/appGeoEditor.py:94 appEditors/FlatCAMGrbEditor.py:2639
+#: appEditors/AppGeoEditor.py:94 appEditors/AppGerberEditor.py:2639
#: appGUI/ObjectUI.py:1149 appGUI/ObjectUI.py:2004
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:225
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:68
@@ -1859,50 +1859,50 @@ msgstr "Runden"
msgid "Square"
msgstr "Quadrat"
-#: appEditors/appGeoEditor.py:95 appEditors/FlatCAMGrbEditor.py:2640
+#: appEditors/AppGeoEditor.py:95 appEditors/AppGerberEditor.py:2640
msgid "Beveled"
msgstr "Abgeschrägt"
-#: appEditors/appGeoEditor.py:102
+#: appEditors/AppGeoEditor.py:102
msgid "Buffer Interior"
msgstr "Pufferinnenraum"
-#: appEditors/appGeoEditor.py:104
+#: appEditors/AppGeoEditor.py:104
msgid "Buffer Exterior"
msgstr "Puffer außen"
-#: appEditors/appGeoEditor.py:110
+#: appEditors/AppGeoEditor.py:110
msgid "Full Buffer"
msgstr "Voller Puffer"
-#: appEditors/appGeoEditor.py:131 appEditors/appGeoEditor.py:2959
+#: appEditors/AppGeoEditor.py:131 appEditors/AppGeoEditor.py:2959
#: appGUI/MainGUI.py:4301
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:191
msgid "Buffer Tool"
msgstr "Pufferwerkzeug"
-#: appEditors/appGeoEditor.py:143 appEditors/appGeoEditor.py:160
-#: appEditors/appGeoEditor.py:177 appEditors/appGeoEditor.py:2978
-#: appEditors/appGeoEditor.py:3006 appEditors/appGeoEditor.py:3034
-#: appEditors/FlatCAMGrbEditor.py:5109
+#: appEditors/AppGeoEditor.py:143 appEditors/AppGeoEditor.py:160
+#: appEditors/AppGeoEditor.py:177 appEditors/AppGeoEditor.py:2978
+#: appEditors/AppGeoEditor.py:3006 appEditors/AppGeoEditor.py:3034
+#: appEditors/AppGerberEditor.py:5109
msgid "Buffer distance value is missing or wrong format. Add it and retry."
msgstr ""
"Pufferabstandswert fehlt oder falsches Format. Fügen Sie es hinzu und "
"versuchen Sie es erneut."
-#: appEditors/appGeoEditor.py:241
+#: appEditors/AppGeoEditor.py:241
msgid "Font"
msgstr "Schrift"
-#: appEditors/appGeoEditor.py:322 appGUI/MainGUI.py:1452
+#: appEditors/AppGeoEditor.py:322 appGUI/MainGUI.py:1452
msgid "Text"
msgstr "Text"
-#: appEditors/appGeoEditor.py:348
+#: appEditors/AppGeoEditor.py:348
msgid "Text Tool"
msgstr "Textwerkzeug"
-#: appEditors/appGeoEditor.py:404 appGUI/MainGUI.py:502
+#: appEditors/AppGeoEditor.py:404 appGUI/MainGUI.py:502
#: appGUI/MainGUI.py:1199 appGUI/ObjectUI.py:597 appGUI/ObjectUI.py:1564
#: appObjects/FlatCAMExcellon.py:852 appObjects/FlatCAMExcellon.py:1242
#: appObjects/FlatCAMGeometry.py:825 appTools/ToolIsolation.py:313
@@ -1911,15 +1911,15 @@ msgstr "Textwerkzeug"
msgid "Tool"
msgstr "Werkzeug"
-#: appEditors/appGeoEditor.py:438
+#: appEditors/AppGeoEditor.py:438
msgid "Tool dia"
msgstr "Werkzeugdurchmesser"
-#: appEditors/appGeoEditor.py:440
+#: appEditors/AppGeoEditor.py:440
msgid "Diameter of the tool to be used in the operation."
msgstr "Durchmesser des im Betrieb zu verwendenden Werkzeugs."
-#: appEditors/appGeoEditor.py:486
+#: appEditors/AppGeoEditor.py:486
msgid ""
"Algorithm to paint the polygons:\n"
"- Standard: Fixed step inwards.\n"
@@ -1931,58 +1931,58 @@ msgstr ""
"- Samenbasiert: Aus dem Samen heraus.\n"
"- Linienbasiert: Parallele Linien."
-#: appEditors/appGeoEditor.py:505
+#: appEditors/AppGeoEditor.py:505
msgid "Connect:"
msgstr "Verbinden:"
-#: appEditors/appGeoEditor.py:515
+#: appEditors/AppGeoEditor.py:515
msgid "Contour:"
msgstr "Kontur:"
-#: appEditors/appGeoEditor.py:528 appGUI/MainGUI.py:1456
+#: appEditors/AppGeoEditor.py:528 appGUI/MainGUI.py:1456
msgid "Paint"
msgstr "Malen"
-#: appEditors/appGeoEditor.py:546 appGUI/MainGUI.py:912
+#: appEditors/AppGeoEditor.py:546 appGUI/MainGUI.py:912
#: appGUI/MainGUI.py:1944 appGUI/ObjectUI.py:2069 appTools/ToolPaint.py:42
#: appTools/ToolPaint.py:737
msgid "Paint Tool"
msgstr "Werkzeug Malen"
-#: appEditors/appGeoEditor.py:582 appEditors/appGeoEditor.py:1071
-#: appEditors/appGeoEditor.py:2966 appEditors/appGeoEditor.py:2994
-#: appEditors/appGeoEditor.py:3022 appEditors/appGeoEditor.py:4439
-#: appEditors/FlatCAMGrbEditor.py:5764
+#: appEditors/AppGeoEditor.py:582 appEditors/AppGeoEditor.py:1071
+#: appEditors/AppGeoEditor.py:2966 appEditors/AppGeoEditor.py:2994
+#: appEditors/AppGeoEditor.py:3022 appEditors/AppGeoEditor.py:4439
+#: appEditors/AppGerberEditor.py:5764
msgid "Cancelled. No shape selected."
msgstr "Abgebrochen. Keine Form ausgewählt."
-#: appEditors/appGeoEditor.py:595 appEditors/appGeoEditor.py:2984
-#: appEditors/appGeoEditor.py:3012 appEditors/appGeoEditor.py:3040
+#: appEditors/AppGeoEditor.py:595 appEditors/AppGeoEditor.py:2984
+#: appEditors/AppGeoEditor.py:3012 appEditors/AppGeoEditor.py:3040
#: appGUI/preferences/geometry/GeometryGenPrefGroupUI.py:69
#: appTools/ToolProperties.py:117 appTools/ToolProperties.py:162
msgid "Tools"
msgstr "Werkzeuge"
-#: appEditors/appGeoEditor.py:606 appEditors/appGeoEditor.py:1035
-#: appEditors/FlatCAMGrbEditor.py:5299 appEditors/FlatCAMGrbEditor.py:5728
+#: appEditors/AppGeoEditor.py:606 appEditors/AppGeoEditor.py:1035
+#: appEditors/AppGerberEditor.py:5299 appEditors/AppGerberEditor.py:5728
#: appGUI/MainGUI.py:935 appGUI/MainGUI.py:1967 appTools/ToolTransform.py:494
msgid "Transform Tool"
msgstr "Werkzeug Umwandeln"
-#: appEditors/appGeoEditor.py:607 appEditors/appGeoEditor.py:699
-#: appEditors/FlatCAMGrbEditor.py:5300 appEditors/FlatCAMGrbEditor.py:5392
+#: appEditors/AppGeoEditor.py:607 appEditors/AppGeoEditor.py:699
+#: appEditors/AppGerberEditor.py:5300 appEditors/AppGerberEditor.py:5392
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:88
#: appTools/ToolTransform.py:27 appTools/ToolTransform.py:146
msgid "Rotate"
msgstr "Drehen"
-#: appEditors/appGeoEditor.py:608 appEditors/FlatCAMGrbEditor.py:5301
+#: appEditors/AppGeoEditor.py:608 appEditors/AppGerberEditor.py:5301
#: appTools/ToolTransform.py:28
msgid "Skew/Shear"
msgstr "Neigung/Schere"
-#: appEditors/appGeoEditor.py:609 appEditors/FlatCAMGrbEditor.py:2687
-#: appEditors/FlatCAMGrbEditor.py:5302 appGUI/MainGUI.py:1057
+#: appEditors/AppGeoEditor.py:609 appEditors/AppGerberEditor.py:2687
+#: appEditors/AppGerberEditor.py:5302 appGUI/MainGUI.py:1057
#: appGUI/MainGUI.py:1499 appGUI/MainGUI.py:2089 appGUI/MainGUI.py:4513
#: appGUI/ObjectUI.py:125
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:147
@@ -1990,13 +1990,13 @@ msgstr "Neigung/Schere"
msgid "Scale"
msgstr "Skalieren"
-#: appEditors/appGeoEditor.py:610 appEditors/FlatCAMGrbEditor.py:5303
+#: appEditors/AppGeoEditor.py:610 appEditors/AppGerberEditor.py:5303
#: appTools/ToolTransform.py:30
msgid "Mirror (Flip)"
msgstr "Spiegeln (Flip)"
-#: appEditors/appGeoEditor.py:612 appEditors/FlatCAMGrbEditor.py:2647
-#: appEditors/FlatCAMGrbEditor.py:5305 appGUI/MainGUI.py:1055
+#: appEditors/AppGeoEditor.py:612 appEditors/AppGerberEditor.py:2647
+#: appEditors/AppGerberEditor.py:5305 appGUI/MainGUI.py:1055
#: appGUI/MainGUI.py:1454 appGUI/MainGUI.py:1497 appGUI/MainGUI.py:2087
#: appGUI/MainGUI.py:4511
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:212
@@ -2004,7 +2004,7 @@ msgstr "Spiegeln (Flip)"
msgid "Buffer"
msgstr "Puffer"
-#: appEditors/appGeoEditor.py:643 appEditors/FlatCAMGrbEditor.py:5336
+#: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5336
#: appGUI/GUIElements.py:2701
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44
@@ -2013,7 +2013,7 @@ msgstr "Puffer"
msgid "Reference"
msgstr "Referenz"
-#: appEditors/appGeoEditor.py:645 appEditors/FlatCAMGrbEditor.py:5338
+#: appEditors/AppGeoEditor.py:645 appEditors/AppGerberEditor.py:5338
msgid ""
"The reference point for Rotate, Skew, Scale, Mirror.\n"
"Can be:\n"
@@ -2031,15 +2031,15 @@ msgstr ""
"definiert ist\n"
"- Min. Auswahl -> der Punkt (minx, miny) des Begrenzungsrahmens der Auswahl"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appTools/ToolCalibration.py:770 appTools/ToolCalibration.py:771
#: appTools/ToolTransform.py:70
msgid "Origin"
msgstr "Ursprung"
-#: appEditors/appGeoEditor.py:653 appEditors/appGeoEditor.py:1044
-#: appEditors/FlatCAMGrbEditor.py:5346 appEditors/FlatCAMGrbEditor.py:5737
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGeoEditor.py:1044
+#: appEditors/AppGerberEditor.py:5346 appEditors/AppGerberEditor.py:5737
#: appGUI/preferences/general/GeneralGUIPrefGroupUI.py:250
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:275
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:311
@@ -2050,7 +2050,7 @@ msgstr "Ursprung"
msgid "Selection"
msgstr "Auswahl"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/Tools2sidedPrefGroupUI.py:80
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:60
@@ -2058,12 +2058,12 @@ msgstr "Auswahl"
msgid "Point"
msgstr "Punkt"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
msgid "Minimum"
msgstr "Minimum"
-#: appEditors/appGeoEditor.py:659 appEditors/appGeoEditor.py:955
-#: appEditors/FlatCAMGrbEditor.py:5352 appEditors/FlatCAMGrbEditor.py:5648
+#: appEditors/AppGeoEditor.py:659 appEditors/AppGeoEditor.py:955
+#: appEditors/AppGerberEditor.py:5352 appEditors/AppGerberEditor.py:5648
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:131
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:133
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:243
@@ -2073,14 +2073,14 @@ msgstr "Minimum"
msgid "Value"
msgstr "Wert"
-#: appEditors/appGeoEditor.py:661 appEditors/FlatCAMGrbEditor.py:5354
+#: appEditors/AppGeoEditor.py:661 appEditors/AppGerberEditor.py:5354
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:62
#: appTools/ToolTransform.py:78
msgid "A point of reference in format X,Y."
msgstr "Ein Bezugspunkt im Format X, Y."
-#: appEditors/appGeoEditor.py:668 appEditors/FlatCAMGrbEditor.py:2590
-#: appEditors/FlatCAMGrbEditor.py:5361 appGUI/ObjectUI.py:1494
+#: appEditors/AppGeoEditor.py:668 appEditors/AppGerberEditor.py:2590
+#: appEditors/AppGerberEditor.py:5361 appGUI/ObjectUI.py:1494
#: appTools/ToolDblSided.py:192 appTools/ToolDblSided.py:425
#: appTools/ToolIsolation.py:276 appTools/ToolIsolation.py:631
#: appTools/ToolNCC.py:294 appTools/ToolNCC.py:631 appTools/ToolPaint.py:276
@@ -2090,12 +2090,12 @@ msgstr "Ein Bezugspunkt im Format X, Y."
msgid "Add"
msgstr "Hinzufügen"
-#: appEditors/appGeoEditor.py:670 appEditors/FlatCAMGrbEditor.py:5363
+#: appEditors/AppGeoEditor.py:670 appEditors/AppGerberEditor.py:5363
#: appTools/ToolTransform.py:87
msgid "Add point coordinates from clipboard."
msgstr "Punktkoordinaten aus der Zwischenablage hinzufügen."
-#: appEditors/appGeoEditor.py:685 appEditors/FlatCAMGrbEditor.py:5378
+#: appEditors/AppGeoEditor.py:685 appEditors/AppGerberEditor.py:5378
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:98
#: appTools/ToolTransform.py:132
msgid ""
@@ -2109,7 +2109,7 @@ msgstr ""
"Positive Zahlen für CW-Bewegung.\n"
"Negative Zahlen für CCW-Bewegung."
-#: appEditors/appGeoEditor.py:701 appEditors/FlatCAMGrbEditor.py:5394
+#: appEditors/AppGeoEditor.py:701 appEditors/AppGerberEditor.py:5394
#: appTools/ToolTransform.py:148
msgid ""
"Rotate the selected object(s).\n"
@@ -2120,16 +2120,16 @@ msgstr ""
"Der Bezugspunkt ist die Mitte von\n"
"der Begrenzungsrahmen für alle ausgewählten Objekte."
-#: appEditors/appGeoEditor.py:721 appEditors/appGeoEditor.py:783
-#: appEditors/FlatCAMGrbEditor.py:5414 appEditors/FlatCAMGrbEditor.py:5476
+#: appEditors/AppGeoEditor.py:721 appEditors/AppGeoEditor.py:783
+#: appEditors/AppGerberEditor.py:5414 appEditors/AppGerberEditor.py:5476
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:112
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:151
#: appTools/ToolTransform.py:168 appTools/ToolTransform.py:230
msgid "Link"
msgstr "Verknüpfung"
-#: appEditors/appGeoEditor.py:723 appEditors/appGeoEditor.py:785
-#: appEditors/FlatCAMGrbEditor.py:5416 appEditors/FlatCAMGrbEditor.py:5478
+#: appEditors/AppGeoEditor.py:723 appEditors/AppGeoEditor.py:785
+#: appEditors/AppGerberEditor.py:5416 appEditors/AppGerberEditor.py:5478
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:114
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:153
#: appTools/ToolTransform.py:170 appTools/ToolTransform.py:232
@@ -2138,15 +2138,15 @@ msgstr ""
"Verknüpfen Sie den Y-Eintrag mit dem X-Eintrag und kopieren Sie dessen "
"Inhalt."
-#: appEditors/appGeoEditor.py:728 appEditors/FlatCAMGrbEditor.py:5421
+#: appEditors/AppGeoEditor.py:728 appEditors/AppGerberEditor.py:5421
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:151
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:124
#: appTools/ToolFilm.py:184 appTools/ToolTransform.py:175
msgid "X angle"
msgstr "X Winkel"
-#: appEditors/appGeoEditor.py:730 appEditors/appGeoEditor.py:751
-#: appEditors/FlatCAMGrbEditor.py:5423 appEditors/FlatCAMGrbEditor.py:5444
+#: appEditors/AppGeoEditor.py:730 appEditors/AppGeoEditor.py:751
+#: appEditors/AppGerberEditor.py:5423 appEditors/AppGerberEditor.py:5444
#: appTools/ToolTransform.py:177 appTools/ToolTransform.py:198
msgid ""
"Angle for Skew action, in degrees.\n"
@@ -2155,13 +2155,13 @@ msgstr ""
"Winkel für Schrägstellung in Grad.\n"
"Gleitkommazahl zwischen -360 und 360."
-#: appEditors/appGeoEditor.py:738 appEditors/FlatCAMGrbEditor.py:5431
+#: appEditors/AppGeoEditor.py:738 appEditors/AppGerberEditor.py:5431
#: appTools/ToolTransform.py:185
msgid "Skew X"
msgstr "Neigung X"
-#: appEditors/appGeoEditor.py:740 appEditors/appGeoEditor.py:761
-#: appEditors/FlatCAMGrbEditor.py:5433 appEditors/FlatCAMGrbEditor.py:5454
+#: appEditors/AppGeoEditor.py:740 appEditors/AppGeoEditor.py:761
+#: appEditors/AppGerberEditor.py:5433 appEditors/AppGerberEditor.py:5454
#: appTools/ToolTransform.py:187 appTools/ToolTransform.py:208
msgid ""
"Skew/shear the selected object(s).\n"
@@ -2172,38 +2172,38 @@ msgstr ""
"Der Bezugspunkt ist die Mitte von\n"
"der Begrenzungsrahmen für alle ausgewählten Objekte."
-#: appEditors/appGeoEditor.py:749 appEditors/FlatCAMGrbEditor.py:5442
+#: appEditors/AppGeoEditor.py:749 appEditors/AppGerberEditor.py:5442
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:160
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:138
#: appTools/ToolFilm.py:193 appTools/ToolTransform.py:196
msgid "Y angle"
msgstr "Y Winkel"
-#: appEditors/appGeoEditor.py:759 appEditors/FlatCAMGrbEditor.py:5452
+#: appEditors/AppGeoEditor.py:759 appEditors/AppGerberEditor.py:5452
#: appTools/ToolTransform.py:206
msgid "Skew Y"
msgstr "Neigung Y"
-#: appEditors/appGeoEditor.py:790 appEditors/FlatCAMGrbEditor.py:5483
+#: appEditors/AppGeoEditor.py:790 appEditors/AppGerberEditor.py:5483
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:120
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:162
#: appTools/ToolFilm.py:145 appTools/ToolTransform.py:237
msgid "X factor"
msgstr "X Faktor"
-#: appEditors/appGeoEditor.py:792 appEditors/FlatCAMGrbEditor.py:5485
+#: appEditors/AppGeoEditor.py:792 appEditors/AppGerberEditor.py:5485
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:164
#: appTools/ToolTransform.py:239
msgid "Factor for scaling on X axis."
msgstr "Faktor für die Skalierung auf der X-Achse."
-#: appEditors/appGeoEditor.py:799 appEditors/FlatCAMGrbEditor.py:5492
+#: appEditors/AppGeoEditor.py:799 appEditors/AppGerberEditor.py:5492
#: appTools/ToolTransform.py:246
msgid "Scale X"
msgstr "Maßstab X"
-#: appEditors/appGeoEditor.py:801 appEditors/appGeoEditor.py:821
-#: appEditors/FlatCAMGrbEditor.py:5494 appEditors/FlatCAMGrbEditor.py:5514
+#: appEditors/AppGeoEditor.py:801 appEditors/AppGeoEditor.py:821
+#: appEditors/AppGerberEditor.py:5494 appEditors/AppGerberEditor.py:5514
#: appTools/ToolTransform.py:248 appTools/ToolTransform.py:268
msgid ""
"Scale the selected object(s).\n"
@@ -2214,59 +2214,59 @@ msgstr ""
"Der Bezugspunkt hängt von ab\n"
"das Kontrollkästchen Skalenreferenz."
-#: appEditors/appGeoEditor.py:810 appEditors/FlatCAMGrbEditor.py:5503
+#: appEditors/AppGeoEditor.py:810 appEditors/AppGerberEditor.py:5503
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:129
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:175
#: appTools/ToolFilm.py:154 appTools/ToolTransform.py:257
msgid "Y factor"
msgstr "Y Faktor"
-#: appEditors/appGeoEditor.py:812 appEditors/FlatCAMGrbEditor.py:5505
+#: appEditors/AppGeoEditor.py:812 appEditors/AppGerberEditor.py:5505
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:177
#: appTools/ToolTransform.py:259
msgid "Factor for scaling on Y axis."
msgstr "Faktor für die Skalierung auf der Y-Achse."
-#: appEditors/appGeoEditor.py:819 appEditors/FlatCAMGrbEditor.py:5512
+#: appEditors/AppGeoEditor.py:819 appEditors/AppGerberEditor.py:5512
#: appTools/ToolTransform.py:266
msgid "Scale Y"
msgstr "Maßstab Y"
-#: appEditors/appGeoEditor.py:846 appEditors/FlatCAMGrbEditor.py:5539
+#: appEditors/AppGeoEditor.py:846 appEditors/AppGerberEditor.py:5539
#: appTools/ToolTransform.py:293
msgid "Flip on X"
msgstr "Flip auf X"
-#: appEditors/appGeoEditor.py:848 appEditors/appGeoEditor.py:853
-#: appEditors/FlatCAMGrbEditor.py:5541 appEditors/FlatCAMGrbEditor.py:5546
+#: appEditors/AppGeoEditor.py:848 appEditors/AppGeoEditor.py:853
+#: appEditors/AppGerberEditor.py:5541 appEditors/AppGerberEditor.py:5546
#: appTools/ToolTransform.py:295 appTools/ToolTransform.py:300
msgid "Flip the selected object(s) over the X axis."
msgstr "Drehen Sie die ausgewählten Objekte über die X-Achse."
-#: appEditors/appGeoEditor.py:851 appEditors/FlatCAMGrbEditor.py:5544
+#: appEditors/AppGeoEditor.py:851 appEditors/AppGerberEditor.py:5544
#: appTools/ToolTransform.py:298
msgid "Flip on Y"
msgstr "Flip auf Y"
-#: appEditors/appGeoEditor.py:871 appEditors/FlatCAMGrbEditor.py:5564
+#: appEditors/AppGeoEditor.py:871 appEditors/AppGerberEditor.py:5564
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:191
#: appTools/ToolTransform.py:318
msgid "X val"
msgstr "X-Wert"
-#: appEditors/appGeoEditor.py:873 appEditors/FlatCAMGrbEditor.py:5566
+#: appEditors/AppGeoEditor.py:873 appEditors/AppGerberEditor.py:5566
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:193
#: appTools/ToolTransform.py:320
msgid "Distance to offset on X axis. In current units."
msgstr "Abstand zum Offset auf der X-Achse. In aktuellen Einheiten."
-#: appEditors/appGeoEditor.py:880 appEditors/FlatCAMGrbEditor.py:5573
+#: appEditors/AppGeoEditor.py:880 appEditors/AppGerberEditor.py:5573
#: appTools/ToolTransform.py:327
msgid "Offset X"
msgstr "Versatz X"
-#: appEditors/appGeoEditor.py:882 appEditors/appGeoEditor.py:902
-#: appEditors/FlatCAMGrbEditor.py:5575 appEditors/FlatCAMGrbEditor.py:5595
+#: appEditors/AppGeoEditor.py:882 appEditors/AppGeoEditor.py:902
+#: appEditors/AppGerberEditor.py:5575 appEditors/AppGerberEditor.py:5595
#: appTools/ToolTransform.py:329 appTools/ToolTransform.py:349
msgid ""
"Offset the selected object(s).\n"
@@ -2277,31 +2277,31 @@ msgstr ""
"Der Bezugspunkt ist die Mitte von\n"
"der Begrenzungsrahmen für alle ausgewählten Objekte.\n"
-#: appEditors/appGeoEditor.py:891 appEditors/FlatCAMGrbEditor.py:5584
+#: appEditors/AppGeoEditor.py:891 appEditors/AppGerberEditor.py:5584
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:204
#: appTools/ToolTransform.py:338
msgid "Y val"
msgstr "Y-Wert"
-#: appEditors/appGeoEditor.py:893 appEditors/FlatCAMGrbEditor.py:5586
+#: appEditors/AppGeoEditor.py:893 appEditors/AppGerberEditor.py:5586
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:206
#: appTools/ToolTransform.py:340
msgid "Distance to offset on Y axis. In current units."
msgstr "Abstand zum Offset auf der Y-Achse. In aktuellen Einheiten."
-#: appEditors/appGeoEditor.py:900 appEditors/FlatCAMGrbEditor.py:5593
+#: appEditors/AppGeoEditor.py:900 appEditors/AppGerberEditor.py:5593
#: appTools/ToolTransform.py:347
msgid "Offset Y"
msgstr "Versatz Y"
-#: appEditors/appGeoEditor.py:920 appEditors/FlatCAMGrbEditor.py:5613
+#: appEditors/AppGeoEditor.py:920 appEditors/AppGerberEditor.py:5613
#: appGUI/preferences/tools/Tools2QRCodePrefGroupUI.py:142
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:216
#: appTools/ToolQRCode.py:206 appTools/ToolTransform.py:367
msgid "Rounded"
msgstr "Agberundet"
-#: appEditors/appGeoEditor.py:922 appEditors/FlatCAMGrbEditor.py:5615
+#: appEditors/AppGeoEditor.py:922 appEditors/AppGerberEditor.py:5615
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:218
#: appTools/ToolTransform.py:369
msgid ""
@@ -2315,14 +2315,14 @@ msgstr ""
"Wenn nicht markiert, folgt der Puffer der exakten Geometrie\n"
"der gepufferten Form."
-#: appEditors/appGeoEditor.py:930 appEditors/FlatCAMGrbEditor.py:5623
+#: appEditors/AppGeoEditor.py:930 appEditors/AppGerberEditor.py:5623
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:226
#: appTools/ToolDistance.py:505 appTools/ToolDistanceMin.py:286
#: appTools/ToolTransform.py:377
msgid "Distance"
msgstr "Entfernung"
-#: appEditors/appGeoEditor.py:932 appEditors/FlatCAMGrbEditor.py:5625
+#: appEditors/AppGeoEditor.py:932 appEditors/AppGerberEditor.py:5625
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:228
#: appTools/ToolTransform.py:379
msgid ""
@@ -2336,12 +2336,12 @@ msgstr ""
"Jedes Geometrieelement des Objekts wird vergrößert\n"
"oder mit der \"Entfernung\" verringert."
-#: appEditors/appGeoEditor.py:944 appEditors/FlatCAMGrbEditor.py:5637
+#: appEditors/AppGeoEditor.py:944 appEditors/AppGerberEditor.py:5637
#: appTools/ToolTransform.py:391
msgid "Buffer D"
msgstr "Puffer E"
-#: appEditors/appGeoEditor.py:946 appEditors/FlatCAMGrbEditor.py:5639
+#: appEditors/AppGeoEditor.py:946 appEditors/AppGerberEditor.py:5639
#: appTools/ToolTransform.py:393
msgid ""
"Create the buffer effect on each geometry,\n"
@@ -2350,7 +2350,7 @@ msgstr ""
"Erstellen Sie den Puffereffekt für jede Geometrie.\n"
"Element aus dem ausgewählten Objekt unter Verwendung des Abstands."
-#: appEditors/appGeoEditor.py:957 appEditors/FlatCAMGrbEditor.py:5650
+#: appEditors/AppGeoEditor.py:957 appEditors/AppGerberEditor.py:5650
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:245
#: appTools/ToolTransform.py:404
msgid ""
@@ -2366,12 +2366,12 @@ msgstr ""
"oder verringert, um dem 'Wert' zu entsprechen. Wert ist ein Prozentsatz\n"
"der ursprünglichen Dimension."
-#: appEditors/appGeoEditor.py:970 appEditors/FlatCAMGrbEditor.py:5663
+#: appEditors/AppGeoEditor.py:970 appEditors/AppGerberEditor.py:5663
#: appTools/ToolTransform.py:417
msgid "Buffer F"
msgstr "Puffer F"
-#: appEditors/appGeoEditor.py:972 appEditors/FlatCAMGrbEditor.py:5665
+#: appEditors/AppGeoEditor.py:972 appEditors/AppGerberEditor.py:5665
#: appTools/ToolTransform.py:419
msgid ""
"Create the buffer effect on each geometry,\n"
@@ -2380,7 +2380,7 @@ msgstr ""
"Erstellen Sie den Puffereffekt für jede Geometrie.\n"
"Element aus dem ausgewählten Objekt unter Verwendung des Faktors."
-#: appEditors/appGeoEditor.py:1043 appEditors/FlatCAMGrbEditor.py:5736
+#: appEditors/AppGeoEditor.py:1043 appEditors/AppGerberEditor.py:5736
#: appGUI/ObjectUI.py:1103 appGUI/ObjectUI.py:1958
#: appGUI/preferences/tools/Tools2CalPrefGroupUI.py:48
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
@@ -2391,332 +2391,332 @@ msgstr ""
msgid "Object"
msgstr "Objekt"
-#: appEditors/appGeoEditor.py:1107 appEditors/appGeoEditor.py:1130
-#: appEditors/appGeoEditor.py:1276 appEditors/appGeoEditor.py:1301
-#: appEditors/appGeoEditor.py:1335 appEditors/appGeoEditor.py:1370
-#: appEditors/appGeoEditor.py:1401 appEditors/FlatCAMGrbEditor.py:5800
-#: appEditors/FlatCAMGrbEditor.py:5823 appEditors/FlatCAMGrbEditor.py:5968
-#: appEditors/FlatCAMGrbEditor.py:6001 appEditors/FlatCAMGrbEditor.py:6044
-#: appEditors/FlatCAMGrbEditor.py:6085 appEditors/FlatCAMGrbEditor.py:6121
+#: appEditors/AppGeoEditor.py:1107 appEditors/AppGeoEditor.py:1130
+#: appEditors/AppGeoEditor.py:1276 appEditors/AppGeoEditor.py:1301
+#: appEditors/AppGeoEditor.py:1335 appEditors/AppGeoEditor.py:1370
+#: appEditors/AppGeoEditor.py:1401 appEditors/AppGerberEditor.py:5800
+#: appEditors/AppGerberEditor.py:5823 appEditors/AppGerberEditor.py:5968
+#: appEditors/AppGerberEditor.py:6001 appEditors/AppGerberEditor.py:6044
+#: appEditors/AppGerberEditor.py:6085 appEditors/AppGerberEditor.py:6121
msgid "No shape selected."
msgstr "Keine Form ausgewählt."
-#: appEditors/appGeoEditor.py:1115 appEditors/FlatCAMGrbEditor.py:5808
+#: appEditors/AppGeoEditor.py:1115 appEditors/AppGerberEditor.py:5808
#: appTools/ToolTransform.py:585
msgid "Incorrect format for Point value. Needs format X,Y"
msgstr "Falsches Format für Punktwert. Benötigt Format X, Y."
-#: appEditors/appGeoEditor.py:1140 appEditors/FlatCAMGrbEditor.py:5833
+#: appEditors/AppGeoEditor.py:1140 appEditors/AppGerberEditor.py:5833
#: appTools/ToolTransform.py:602
msgid "Rotate transformation can not be done for a value of 0."
msgstr ""
"Bei einem Wert von 0 kann keine Rotationstransformation durchgeführt werden."
-#: appEditors/appGeoEditor.py:1198 appEditors/appGeoEditor.py:1219
-#: appEditors/FlatCAMGrbEditor.py:5891 appEditors/FlatCAMGrbEditor.py:5912
+#: appEditors/AppGeoEditor.py:1198 appEditors/AppGeoEditor.py:1219
+#: appEditors/AppGerberEditor.py:5891 appEditors/AppGerberEditor.py:5912
#: appTools/ToolTransform.py:660 appTools/ToolTransform.py:681
msgid "Scale transformation can not be done for a factor of 0 or 1."
msgstr ""
"Eine Skalentransformation kann für einen Faktor von 0 oder 1 nicht "
"durchgeführt werden."
-#: appEditors/appGeoEditor.py:1232 appEditors/appGeoEditor.py:1241
-#: appEditors/FlatCAMGrbEditor.py:5925 appEditors/FlatCAMGrbEditor.py:5934
+#: appEditors/AppGeoEditor.py:1232 appEditors/AppGeoEditor.py:1241
+#: appEditors/AppGerberEditor.py:5925 appEditors/AppGerberEditor.py:5934
#: appTools/ToolTransform.py:694 appTools/ToolTransform.py:703
msgid "Offset transformation can not be done for a value of 0."
msgstr ""
"Bei einem Wert von 0 kann keine Offset-Transformation durchgeführt werden."
-#: appEditors/appGeoEditor.py:1271 appEditors/FlatCAMGrbEditor.py:5971
+#: appEditors/AppGeoEditor.py:1271 appEditors/AppGerberEditor.py:5971
#: appTools/ToolTransform.py:731
msgid "Appying Rotate"
msgstr "Anwenden Drehen"
-#: appEditors/appGeoEditor.py:1284 appEditors/FlatCAMGrbEditor.py:5983
+#: appEditors/AppGeoEditor.py:1284 appEditors/AppGerberEditor.py:5983
msgid "Done. Rotate completed."
msgstr "Erledigt. Drehen abgeschlossen."
-#: appEditors/appGeoEditor.py:1286
+#: appEditors/AppGeoEditor.py:1286
msgid "Rotation action was not executed"
msgstr "Rotationsaktion wurde nicht ausgeführt"
-#: appEditors/appGeoEditor.py:1304 appEditors/FlatCAMGrbEditor.py:6004
+#: appEditors/AppGeoEditor.py:1304 appEditors/AppGerberEditor.py:6004
#: appTools/ToolTransform.py:757
msgid "Applying Flip"
msgstr "Flip anwenden"
-#: appEditors/appGeoEditor.py:1312 appEditors/FlatCAMGrbEditor.py:6016
+#: appEditors/AppGeoEditor.py:1312 appEditors/AppGerberEditor.py:6016
#: appTools/ToolTransform.py:774
msgid "Flip on the Y axis done"
msgstr "Spiegeln Sie die Y-Achse bereit"
-#: appEditors/appGeoEditor.py:1315 appEditors/FlatCAMGrbEditor.py:6024
+#: appEditors/AppGeoEditor.py:1315 appEditors/AppGerberEditor.py:6024
#: appTools/ToolTransform.py:783
msgid "Flip on the X axis done"
msgstr "Spiegeln Sie die X-Achse bereit"
-#: appEditors/appGeoEditor.py:1319
+#: appEditors/AppGeoEditor.py:1319
msgid "Flip action was not executed"
msgstr "Spiegeln-Aktion wurde nicht ausgeführt"
-#: appEditors/appGeoEditor.py:1338 appEditors/FlatCAMGrbEditor.py:6047
+#: appEditors/AppGeoEditor.py:1338 appEditors/AppGerberEditor.py:6047
#: appTools/ToolTransform.py:804
msgid "Applying Skew"
msgstr "Schräglauf anwenden"
-#: appEditors/appGeoEditor.py:1347 appEditors/FlatCAMGrbEditor.py:6063
+#: appEditors/AppGeoEditor.py:1347 appEditors/AppGerberEditor.py:6063
msgid "Skew on the X axis done"
msgstr "Schrägstellung auf der X-Achse erfolgt"
-#: appEditors/appGeoEditor.py:1349 appEditors/FlatCAMGrbEditor.py:6065
+#: appEditors/AppGeoEditor.py:1349 appEditors/AppGerberEditor.py:6065
msgid "Skew on the Y axis done"
msgstr "Schrägstellung auf der Y-Achse erfolgt"
-#: appEditors/appGeoEditor.py:1352
+#: appEditors/AppGeoEditor.py:1352
msgid "Skew action was not executed"
msgstr "Die Versatzaktion wurde nicht ausgeführt"
-#: appEditors/appGeoEditor.py:1373 appEditors/FlatCAMGrbEditor.py:6088
+#: appEditors/AppGeoEditor.py:1373 appEditors/AppGerberEditor.py:6088
#: appTools/ToolTransform.py:831
msgid "Applying Scale"
msgstr "Maßstab anwenden"
-#: appEditors/appGeoEditor.py:1382 appEditors/FlatCAMGrbEditor.py:6101
+#: appEditors/AppGeoEditor.py:1382 appEditors/AppGerberEditor.py:6101
msgid "Scale on the X axis done"
msgstr "Skalieren auf der X-Achse erledigt"
-#: appEditors/appGeoEditor.py:1384 appEditors/FlatCAMGrbEditor.py:6103
+#: appEditors/AppGeoEditor.py:1384 appEditors/AppGerberEditor.py:6103
msgid "Scale on the Y axis done"
msgstr "Skalieren auf der Y-Achse erledigt"
-#: appEditors/appGeoEditor.py:1386
+#: appEditors/AppGeoEditor.py:1386
msgid "Scale action was not executed"
msgstr "Skalierungsaktion wurde nicht ausgeführt"
-#: appEditors/appGeoEditor.py:1404 appEditors/FlatCAMGrbEditor.py:6124
+#: appEditors/AppGeoEditor.py:1404 appEditors/AppGerberEditor.py:6124
#: appTools/ToolTransform.py:859
msgid "Applying Offset"
msgstr "Offsetdruck anwenden"
-#: appEditors/appGeoEditor.py:1414 appEditors/FlatCAMGrbEditor.py:6145
+#: appEditors/AppGeoEditor.py:1414 appEditors/AppGerberEditor.py:6145
msgid "Offset on the X axis done"
msgstr "Versatz auf der X-Achse erfolgt"
-#: appEditors/appGeoEditor.py:1416 appEditors/FlatCAMGrbEditor.py:6147
+#: appEditors/AppGeoEditor.py:1416 appEditors/AppGerberEditor.py:6147
msgid "Offset on the Y axis done"
msgstr "Versatz auf der Y-Achse erfolgt"
-#: appEditors/appGeoEditor.py:1419
+#: appEditors/AppGeoEditor.py:1419
msgid "Offset action was not executed"
msgstr "Offsetaktion wurde nicht ausgeführt"
-#: appEditors/appGeoEditor.py:1426 appEditors/FlatCAMGrbEditor.py:6157
+#: appEditors/AppGeoEditor.py:1426 appEditors/AppGerberEditor.py:6157
msgid "No shape selected"
msgstr "Keine Form ausgewählt"
-#: appEditors/appGeoEditor.py:1429 appEditors/FlatCAMGrbEditor.py:6160
+#: appEditors/AppGeoEditor.py:1429 appEditors/AppGerberEditor.py:6160
#: appTools/ToolTransform.py:889
msgid "Applying Buffer"
msgstr "Anwenden von Puffer"
-#: appEditors/appGeoEditor.py:1436 appEditors/FlatCAMGrbEditor.py:6182
+#: appEditors/AppGeoEditor.py:1436 appEditors/AppGerberEditor.py:6182
#: appTools/ToolTransform.py:910
msgid "Buffer done"
msgstr "Puffer fertig"
-#: appEditors/appGeoEditor.py:1440 appEditors/FlatCAMGrbEditor.py:6186
+#: appEditors/AppGeoEditor.py:1440 appEditors/AppGerberEditor.py:6186
#: appTools/ToolTransform.py:879 appTools/ToolTransform.py:915
msgid "Action was not executed, due of"
msgstr "Aktion wurde nicht ausgeführt, weil"
-#: appEditors/appGeoEditor.py:1444 appEditors/FlatCAMGrbEditor.py:6190
+#: appEditors/AppGeoEditor.py:1444 appEditors/AppGerberEditor.py:6190
msgid "Rotate ..."
msgstr "Drehen ..."
-#: appEditors/appGeoEditor.py:1445 appEditors/appGeoEditor.py:1494
-#: appEditors/appGeoEditor.py:1509 appEditors/FlatCAMGrbEditor.py:6191
-#: appEditors/FlatCAMGrbEditor.py:6240 appEditors/FlatCAMGrbEditor.py:6255
+#: appEditors/AppGeoEditor.py:1445 appEditors/AppGeoEditor.py:1494
+#: appEditors/AppGeoEditor.py:1509 appEditors/AppGerberEditor.py:6191
+#: appEditors/AppGerberEditor.py:6240 appEditors/AppGerberEditor.py:6255
msgid "Enter an Angle Value (degrees)"
msgstr "Geben Sie einen Winkelwert (Grad) ein"
-#: appEditors/appGeoEditor.py:1453 appEditors/FlatCAMGrbEditor.py:6199
+#: appEditors/AppGeoEditor.py:1453 appEditors/AppGerberEditor.py:6199
msgid "Geometry shape rotate done"
msgstr "Geometrieform drehen fertig"
-#: appEditors/appGeoEditor.py:1456 appEditors/FlatCAMGrbEditor.py:6202
+#: appEditors/AppGeoEditor.py:1456 appEditors/AppGerberEditor.py:6202
msgid "Geometry shape rotate cancelled"
msgstr "Geometrieform drehen abgebrochen"
-#: appEditors/appGeoEditor.py:1461 appEditors/FlatCAMGrbEditor.py:6207
+#: appEditors/AppGeoEditor.py:1461 appEditors/AppGerberEditor.py:6207
msgid "Offset on X axis ..."
msgstr "Versatz auf der X-Achse ..."
-#: appEditors/appGeoEditor.py:1462 appEditors/appGeoEditor.py:1479
-#: appEditors/FlatCAMGrbEditor.py:6208 appEditors/FlatCAMGrbEditor.py:6225
+#: appEditors/AppGeoEditor.py:1462 appEditors/AppGeoEditor.py:1479
+#: appEditors/AppGerberEditor.py:6208 appEditors/AppGerberEditor.py:6225
msgid "Enter a distance Value"
msgstr "Geben Sie einen Abstandswert ein"
-#: appEditors/appGeoEditor.py:1470 appEditors/FlatCAMGrbEditor.py:6216
+#: appEditors/AppGeoEditor.py:1470 appEditors/AppGerberEditor.py:6216
msgid "Geometry shape offset on X axis done"
msgstr "Geometrieformversatz auf der X-Achse erfolgt"
-#: appEditors/appGeoEditor.py:1473 appEditors/FlatCAMGrbEditor.py:6219
+#: appEditors/AppGeoEditor.py:1473 appEditors/AppGerberEditor.py:6219
msgid "Geometry shape offset X cancelled"
msgstr "[WARNING_NOTCL] Geometrieformversatz X abgebrochen"
-#: appEditors/appGeoEditor.py:1478 appEditors/FlatCAMGrbEditor.py:6224
+#: appEditors/AppGeoEditor.py:1478 appEditors/AppGerberEditor.py:6224
msgid "Offset on Y axis ..."
msgstr "Versatz auf der Y-Achse ..."
-#: appEditors/appGeoEditor.py:1487 appEditors/FlatCAMGrbEditor.py:6233
+#: appEditors/AppGeoEditor.py:1487 appEditors/AppGerberEditor.py:6233
msgid "Geometry shape offset on Y axis done"
msgstr "Geometrieformversatz auf Y-Achse erfolgt"
-#: appEditors/appGeoEditor.py:1490
+#: appEditors/AppGeoEditor.py:1490
msgid "Geometry shape offset on Y axis canceled"
msgstr "Geometrieformversatz auf Y-Achse erfolgt"
-#: appEditors/appGeoEditor.py:1493 appEditors/FlatCAMGrbEditor.py:6239
+#: appEditors/AppGeoEditor.py:1493 appEditors/AppGerberEditor.py:6239
msgid "Skew on X axis ..."
msgstr "Neigung auf der X-Achse ..."
-#: appEditors/appGeoEditor.py:1502 appEditors/FlatCAMGrbEditor.py:6248
+#: appEditors/AppGeoEditor.py:1502 appEditors/AppGerberEditor.py:6248
msgid "Geometry shape skew on X axis done"
msgstr "Geometrieformversatz auf X-Achse"
-#: appEditors/appGeoEditor.py:1505
+#: appEditors/AppGeoEditor.py:1505
msgid "Geometry shape skew on X axis canceled"
msgstr "Geometrieformversatz auf X-Achse"
-#: appEditors/appGeoEditor.py:1508 appEditors/FlatCAMGrbEditor.py:6254
+#: appEditors/AppGeoEditor.py:1508 appEditors/AppGerberEditor.py:6254
msgid "Skew on Y axis ..."
msgstr "Neigung auf der Y-Achse ..."
-#: appEditors/appGeoEditor.py:1517 appEditors/FlatCAMGrbEditor.py:6263
+#: appEditors/AppGeoEditor.py:1517 appEditors/AppGerberEditor.py:6263
msgid "Geometry shape skew on Y axis done"
msgstr "Geometrieformversatz auf Y-Achse erfolgt"
-#: appEditors/appGeoEditor.py:1520
+#: appEditors/AppGeoEditor.py:1520
msgid "Geometry shape skew on Y axis canceled"
msgstr "Geometrieformversatz auf Y-Achse erfolgt"
-#: appEditors/appGeoEditor.py:1950 appEditors/appGeoEditor.py:2021
-#: appEditors/FlatCAMGrbEditor.py:1444 appEditors/FlatCAMGrbEditor.py:1522
+#: appEditors/AppGeoEditor.py:1950 appEditors/AppGeoEditor.py:2021
+#: appEditors/AppGerberEditor.py:1444 appEditors/AppGerberEditor.py:1522
msgid "Click on Center point ..."
msgstr "Klicken Sie auf Mittelpunkt."
-#: appEditors/appGeoEditor.py:1963 appEditors/FlatCAMGrbEditor.py:1454
+#: appEditors/AppGeoEditor.py:1963 appEditors/AppGerberEditor.py:1454
msgid "Click on Perimeter point to complete ..."
msgstr "Klicken Sie auf Umfangspunkt, um den Vorgang abzuschließen."
-#: appEditors/appGeoEditor.py:1995
+#: appEditors/AppGeoEditor.py:1995
msgid "Done. Adding Circle completed."
msgstr "Erledigt. Hinzufügen des Kreises abgeschlossen."
-#: appEditors/appGeoEditor.py:2049 appEditors/FlatCAMGrbEditor.py:1555
+#: appEditors/AppGeoEditor.py:2049 appEditors/AppGerberEditor.py:1555
msgid "Click on Start point ..."
msgstr "Klicken Sie auf Startpunkt ..."
-#: appEditors/appGeoEditor.py:2051 appEditors/FlatCAMGrbEditor.py:1557
+#: appEditors/AppGeoEditor.py:2051 appEditors/AppGerberEditor.py:1557
msgid "Click on Point3 ..."
msgstr "Klicken Sie auf Punkt3 ..."
-#: appEditors/appGeoEditor.py:2053 appEditors/FlatCAMGrbEditor.py:1559
+#: appEditors/AppGeoEditor.py:2053 appEditors/AppGerberEditor.py:1559
msgid "Click on Stop point ..."
msgstr "Klicken Sie auf Haltepunkt ..."
-#: appEditors/appGeoEditor.py:2058 appEditors/FlatCAMGrbEditor.py:1564
+#: appEditors/AppGeoEditor.py:2058 appEditors/AppGerberEditor.py:1564
msgid "Click on Stop point to complete ..."
msgstr "Klicken Sie auf Stopp, um den Vorgang abzuschließen."
-#: appEditors/appGeoEditor.py:2060 appEditors/FlatCAMGrbEditor.py:1566
+#: appEditors/AppGeoEditor.py:2060 appEditors/AppGerberEditor.py:1566
msgid "Click on Point2 to complete ..."
msgstr "Klicken Sie auf Punkt2, um den Vorgang abzuschließen."
-#: appEditors/appGeoEditor.py:2062 appEditors/FlatCAMGrbEditor.py:1568
+#: appEditors/AppGeoEditor.py:2062 appEditors/AppGerberEditor.py:1568
msgid "Click on Center point to complete ..."
msgstr "Klicken Sie auf Mittelpunkt, um den Vorgang abzuschließen."
-#: appEditors/appGeoEditor.py:2074
+#: appEditors/AppGeoEditor.py:2074
#, python-format
msgid "Direction: %s"
msgstr "Richtung: %s"
-#: appEditors/appGeoEditor.py:2088 appEditors/FlatCAMGrbEditor.py:1594
+#: appEditors/AppGeoEditor.py:2088 appEditors/AppGerberEditor.py:1594
msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
msgstr "Modus: Start -> Stopp -> Zentrieren. Klicken Sie auf Startpunkt ..."
-#: appEditors/appGeoEditor.py:2091 appEditors/FlatCAMGrbEditor.py:1597
+#: appEditors/AppGeoEditor.py:2091 appEditors/AppGerberEditor.py:1597
msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
msgstr "Modus: Punkt 1 -> Punkt 3 -> Punkt 2. Klicken Sie auf Punkt1 ..."
-#: appEditors/appGeoEditor.py:2094 appEditors/FlatCAMGrbEditor.py:1600
+#: appEditors/AppGeoEditor.py:2094 appEditors/AppGerberEditor.py:1600
msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
msgstr "Modus: Mitte -> Start -> Stopp. Klicken Sie auf Mittelpunkt."
-#: appEditors/appGeoEditor.py:2235
+#: appEditors/AppGeoEditor.py:2235
msgid "Done. Arc completed."
msgstr "Erledigt. Arc abgeschlossen."
-#: appEditors/appGeoEditor.py:2266 appEditors/appGeoEditor.py:2339
+#: appEditors/AppGeoEditor.py:2266 appEditors/AppGeoEditor.py:2339
msgid "Click on 1st corner ..."
msgstr "Klicken Sie auf die 1. Ecke ..."
-#: appEditors/appGeoEditor.py:2278
+#: appEditors/AppGeoEditor.py:2278
msgid "Click on opposite corner to complete ..."
msgstr ""
"Klicken Sie auf die gegenüberliegende Ecke, um den Vorgang abzuschließen."
-#: appEditors/appGeoEditor.py:2308
+#: appEditors/AppGeoEditor.py:2308
msgid "Done. Rectangle completed."
msgstr "Erledigt. Rechteck fertiggestellt."
-#: appEditors/appGeoEditor.py:2383
+#: appEditors/AppGeoEditor.py:2383
msgid "Done. Polygon completed."
msgstr "Erledigt. Polygon fertiggestellt."
-#: appEditors/appGeoEditor.py:2397 appEditors/appGeoEditor.py:2462
-#: appEditors/FlatCAMGrbEditor.py:1102 appEditors/FlatCAMGrbEditor.py:1322
+#: appEditors/AppGeoEditor.py:2397 appEditors/AppGeoEditor.py:2462
+#: appEditors/AppGerberEditor.py:1102 appEditors/AppGerberEditor.py:1322
msgid "Backtracked one point ..."
msgstr "Einen Punkt zurückverfolgt ..."
-#: appEditors/appGeoEditor.py:2440
+#: appEditors/AppGeoEditor.py:2440
msgid "Done. Path completed."
msgstr "Getan. Pfad abgeschlossen."
-#: appEditors/appGeoEditor.py:2599
+#: appEditors/AppGeoEditor.py:2599
msgid "No shape selected. Select a shape to explode"
msgstr "Keine Form ausgewählt. Wählen Sie eine Form zum Auflösen aus"
-#: appEditors/appGeoEditor.py:2632
+#: appEditors/AppGeoEditor.py:2632
msgid "Done. Polygons exploded into lines."
msgstr "Getan. Polygone explodierten in Linien."
-#: appEditors/appGeoEditor.py:2664
+#: appEditors/AppGeoEditor.py:2664
msgid "MOVE: No shape selected. Select a shape to move"
msgstr "Bewegen: Keine Form ausgewählt. Wähle eine Form zum Bewegen aus"
-#: appEditors/appGeoEditor.py:2667 appEditors/appGeoEditor.py:2687
+#: appEditors/AppGeoEditor.py:2667 appEditors/AppGeoEditor.py:2687
msgid " MOVE: Click on reference point ..."
msgstr " Bewegen: Referenzpunkt anklicken ..."
-#: appEditors/appGeoEditor.py:2672
+#: appEditors/AppGeoEditor.py:2672
msgid " Click on destination point ..."
msgstr " Klicken Sie auf den Zielpunkt ..."
-#: appEditors/appGeoEditor.py:2712
+#: appEditors/AppGeoEditor.py:2712
msgid "Done. Geometry(s) Move completed."
msgstr "Erledigt. Geometrie(n) Bewegung abgeschlossen."
-#: appEditors/appGeoEditor.py:2845
+#: appEditors/AppGeoEditor.py:2845
msgid "Done. Geometry(s) Copy completed."
msgstr "Erledigt. Geometrie(n) Kopieren abgeschlossen."
-#: appEditors/appGeoEditor.py:2876 appEditors/FlatCAMGrbEditor.py:897
+#: appEditors/AppGeoEditor.py:2876 appEditors/AppGerberEditor.py:897
msgid "Click on 1st point ..."
msgstr "Klicken Sie auf den 1. Punkt ..."
-#: appEditors/appGeoEditor.py:2900
+#: appEditors/AppGeoEditor.py:2900
msgid ""
"Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
"Error"
@@ -2724,83 +2724,83 @@ msgstr ""
"Schrift wird nicht unterstützt. Es werden nur Regular, Bold, Italic und "
"BoldItalic unterstützt. Error"
-#: appEditors/appGeoEditor.py:2908
+#: appEditors/AppGeoEditor.py:2908
msgid "No text to add."
msgstr "Kein Text zum Hinzufügen."
-#: appEditors/appGeoEditor.py:2918
+#: appEditors/AppGeoEditor.py:2918
msgid " Done. Adding Text completed."
msgstr " Erledigt. Hinzufügen von Text abgeschlossen."
-#: appEditors/appGeoEditor.py:2955
+#: appEditors/AppGeoEditor.py:2955
msgid "Create buffer geometry ..."
msgstr "Puffergeometrie erstellen ..."
-#: appEditors/appGeoEditor.py:2990 appEditors/FlatCAMGrbEditor.py:5153
+#: appEditors/AppGeoEditor.py:2990 appEditors/AppGerberEditor.py:5153
msgid "Done. Buffer Tool completed."
msgstr "Erledigt. Pufferwerkzeug abgeschlossen."
-#: appEditors/appGeoEditor.py:3018
+#: appEditors/AppGeoEditor.py:3018
msgid "Done. Buffer Int Tool completed."
msgstr "Erledigt. Innenpufferwerkzeug abgeschlossen."
-#: appEditors/appGeoEditor.py:3046
+#: appEditors/AppGeoEditor.py:3046
msgid "Done. Buffer Ext Tool completed."
msgstr "Erledigt. Außenpufferwerkzeug abgeschlossen."
-#: appEditors/appGeoEditor.py:3095 appEditors/FlatCAMGrbEditor.py:2160
+#: appEditors/AppGeoEditor.py:3095 appEditors/AppGerberEditor.py:2160
msgid "Select a shape to act as deletion area ..."
msgstr "Wählen Sie eine Form als Löschbereich aus ..."
-#: appEditors/appGeoEditor.py:3097 appEditors/appGeoEditor.py:3123
-#: appEditors/appGeoEditor.py:3129 appEditors/FlatCAMGrbEditor.py:2162
+#: appEditors/AppGeoEditor.py:3097 appEditors/AppGeoEditor.py:3123
+#: appEditors/AppGeoEditor.py:3129 appEditors/AppGerberEditor.py:2162
msgid "Click to pick-up the erase shape..."
msgstr "Klicken Sie, um die Löschform aufzunehmen ..."
-#: appEditors/appGeoEditor.py:3133 appEditors/FlatCAMGrbEditor.py:2221
+#: appEditors/AppGeoEditor.py:3133 appEditors/AppGerberEditor.py:2221
msgid "Click to erase ..."
msgstr "Klicken zum Löschen ..."
-#: appEditors/appGeoEditor.py:3162 appEditors/FlatCAMGrbEditor.py:2254
+#: appEditors/AppGeoEditor.py:3162 appEditors/AppGerberEditor.py:2254
msgid "Done. Eraser tool action completed."
msgstr "Erledigt. Radiergummi-Aktion abgeschlossen."
-#: appEditors/appGeoEditor.py:3212
+#: appEditors/AppGeoEditor.py:3212
msgid "Create Paint geometry ..."
msgstr "Malen geometrie erstellen ..."
-#: appEditors/appGeoEditor.py:3225 appEditors/FlatCAMGrbEditor.py:2417
+#: appEditors/AppGeoEditor.py:3225 appEditors/AppGerberEditor.py:2417
msgid "Shape transformations ..."
msgstr "Formtransformationen ..."
-#: appEditors/appGeoEditor.py:3281
+#: appEditors/AppGeoEditor.py:3281
#: appGUI/preferences/geometry/GeometryEditorPrefGroupUI.py:27
msgid "Geometry Editor"
msgstr "Geo-Editor"
-#: appEditors/appGeoEditor.py:3287 appEditors/FlatCAMGrbEditor.py:2495
-#: appEditors/FlatCAMGrbEditor.py:3951 appGUI/ObjectUI.py:282
+#: appEditors/AppGeoEditor.py:3287 appEditors/AppGerberEditor.py:2495
+#: appEditors/AppGerberEditor.py:3951 appGUI/ObjectUI.py:282
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256 appTools/ToolCutOut.py:95
#: appTools/ToolTransform.py:92
msgid "Type"
msgstr "Typ"
-#: appEditors/appGeoEditor.py:3287 appGUI/ObjectUI.py:221
+#: appEditors/AppGeoEditor.py:3287 appGUI/ObjectUI.py:221
#: appGUI/ObjectUI.py:521 appGUI/ObjectUI.py:1330 appGUI/ObjectUI.py:2165
#: appGUI/ObjectUI.py:2469 appGUI/ObjectUI.py:2536
#: appTools/ToolCalibration.py:234 appTools/ToolFiducials.py:70
msgid "Name"
msgstr "Name"
-#: appEditors/appGeoEditor.py:3539
+#: appEditors/AppGeoEditor.py:3539
msgid "Ring"
msgstr "Ring"
-#: appEditors/appGeoEditor.py:3541
+#: appEditors/AppGeoEditor.py:3541
msgid "Line"
msgstr "Linie"
-#: appEditors/appGeoEditor.py:3543 appGUI/MainGUI.py:1446
+#: appEditors/AppGeoEditor.py:3543 appGUI/MainGUI.py:1446
#: appGUI/ObjectUI.py:1150 appGUI/ObjectUI.py:2005
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:226
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:299
@@ -2811,47 +2811,47 @@ msgstr "Linie"
msgid "Polygon"
msgstr "Polygon"
-#: appEditors/appGeoEditor.py:3545
+#: appEditors/AppGeoEditor.py:3545
msgid "Multi-Line"
msgstr "Mehrzeilig"
-#: appEditors/appGeoEditor.py:3547
+#: appEditors/AppGeoEditor.py:3547
msgid "Multi-Polygon"
msgstr "Multi-Polygon"
-#: appEditors/appGeoEditor.py:3554
+#: appEditors/AppGeoEditor.py:3554
msgid "Geo Elem"
msgstr "Geoelement"
-#: appEditors/appGeoEditor.py:4007
+#: appEditors/AppGeoEditor.py:4007
msgid "Editing MultiGeo Geometry, tool"
msgstr "Bearbeiten von MultiGeo Geometry, Werkzeug"
-#: appEditors/appGeoEditor.py:4009
+#: appEditors/AppGeoEditor.py:4009
msgid "with diameter"
msgstr "mit Durchmesser"
-#: appEditors/appGeoEditor.py:4081
+#: appEditors/AppGeoEditor.py:4081
msgid "Grid Snap enabled."
msgstr "Rasterfang aktiviert."
-#: appEditors/appGeoEditor.py:4085
+#: appEditors/AppGeoEditor.py:4085
msgid "Grid Snap disabled."
msgstr "Rasterfang deaktiviert."
-#: appEditors/appGeoEditor.py:4446 appGUI/MainGUI.py:3046
+#: appEditors/AppGeoEditor.py:4446 appGUI/MainGUI.py:3046
#: appGUI/MainGUI.py:3092 appGUI/MainGUI.py:3110 appGUI/MainGUI.py:3254
#: appGUI/MainGUI.py:3293 appGUI/MainGUI.py:3305 appGUI/MainGUI.py:3322
msgid "Click on target point."
msgstr "Klicken Sie auf den Zielpunkt."
-#: appEditors/appGeoEditor.py:4762 appEditors/appGeoEditor.py:4797
+#: appEditors/AppGeoEditor.py:4762 appEditors/AppGeoEditor.py:4797
msgid "A selection of at least 2 geo items is required to do Intersection."
msgstr ""
"Eine Auswahl von mindestens 2 Geo-Elementen ist erforderlich, um die "
"Kreuzung durchzuführen."
-#: appEditors/appGeoEditor.py:4883 appEditors/appGeoEditor.py:4987
+#: appEditors/AppGeoEditor.py:4883 appEditors/AppGeoEditor.py:4987
msgid ""
"Negative buffer value is not accepted. Use Buffer interior to generate an "
"'inside' shape"
@@ -2859,56 +2859,56 @@ msgstr ""
"Negativer Pufferwert wird nicht akzeptiert. Verwenden Sie den "
"Pufferinnenraum, um eine Innenform zu erzeugen"
-#: appEditors/appGeoEditor.py:4893 appEditors/appGeoEditor.py:4946
-#: appEditors/appGeoEditor.py:4996
+#: appEditors/AppGeoEditor.py:4893 appEditors/AppGeoEditor.py:4946
+#: appEditors/AppGeoEditor.py:4996
msgid "Nothing selected for buffering."
msgstr "Nichts ist für die Pufferung ausgewählt."
-#: appEditors/appGeoEditor.py:4898 appEditors/appGeoEditor.py:4950
-#: appEditors/appGeoEditor.py:5001
+#: appEditors/AppGeoEditor.py:4898 appEditors/AppGeoEditor.py:4950
+#: appEditors/AppGeoEditor.py:5001
msgid "Invalid distance for buffering."
msgstr "Ungültige Entfernung zum Puffern."
-#: appEditors/appGeoEditor.py:4922 appEditors/appGeoEditor.py:5021
+#: appEditors/AppGeoEditor.py:4922 appEditors/AppGeoEditor.py:5021
msgid "Failed, the result is empty. Choose a different buffer value."
msgstr ""
"Fehlgeschlagen, das Ergebnis ist leer. Wählen Sie einen anderen Pufferwert."
-#: appEditors/appGeoEditor.py:4933
+#: appEditors/AppGeoEditor.py:4933
msgid "Full buffer geometry created."
msgstr "Volle Puffergeometrie erstellt."
-#: appEditors/appGeoEditor.py:4939
+#: appEditors/AppGeoEditor.py:4939
msgid "Negative buffer value is not accepted."
msgstr "Negativer Pufferwert wird nicht akzeptiert."
-#: appEditors/appGeoEditor.py:4970
+#: appEditors/AppGeoEditor.py:4970
msgid "Failed, the result is empty. Choose a smaller buffer value."
msgstr ""
"Fehlgeschlagen, das Ergebnis ist leer. Wählen Sie einen kleineren Pufferwert."
-#: appEditors/appGeoEditor.py:4980
+#: appEditors/AppGeoEditor.py:4980
msgid "Interior buffer geometry created."
msgstr "Innere Puffergeometrie erstellt."
-#: appEditors/appGeoEditor.py:5031
+#: appEditors/AppGeoEditor.py:5031
msgid "Exterior buffer geometry created."
msgstr "Außenpuffergeometrie erstellt."
-#: appEditors/appGeoEditor.py:5037
+#: appEditors/AppGeoEditor.py:5037
#, python-format
msgid "Could not do Paint. Overlap value has to be less than 100%%."
msgstr "Konnte nicht Malen. Der Überlappungswert muss kleiner als 100 %% sein."
-#: appEditors/appGeoEditor.py:5044
+#: appEditors/AppGeoEditor.py:5044
msgid "Nothing selected for painting."
msgstr "Nichts zum Malen ausgewählt."
-#: appEditors/appGeoEditor.py:5050
+#: appEditors/AppGeoEditor.py:5050
msgid "Invalid value for"
msgstr "Ungültiger Wert für"
-#: appEditors/appGeoEditor.py:5109
+#: appEditors/AppGeoEditor.py:5109
msgid ""
"Could not do Paint. Try a different combination of parameters. Or a "
"different method of Paint"
@@ -2916,160 +2916,160 @@ msgstr ""
"Konnte nicht malen. Probieren Sie eine andere Kombination von Parametern "
"aus. Oder eine andere Malmethode"
-#: appEditors/appGeoEditor.py:5120
+#: appEditors/AppGeoEditor.py:5120
msgid "Paint done."
msgstr "Malen fertig."
-#: appEditors/FlatCAMGrbEditor.py:211
+#: appEditors/AppGerberEditor.py:211
msgid "To add an Pad first select a aperture in Aperture Table"
msgstr ""
"Um ein Pad hinzuzufügen, wählen Sie zunächst eine Blende in der Aperture "
"Table aus"
-#: appEditors/FlatCAMGrbEditor.py:218 appEditors/FlatCAMGrbEditor.py:418
+#: appEditors/AppGerberEditor.py:218 appEditors/AppGerberEditor.py:418
msgid "Aperture size is zero. It needs to be greater than zero."
msgstr "Die Größe der Blende ist Null. Es muss größer als Null sein."
-#: appEditors/FlatCAMGrbEditor.py:371 appEditors/FlatCAMGrbEditor.py:684
+#: appEditors/AppGerberEditor.py:371 appEditors/AppGerberEditor.py:684
msgid ""
"Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
msgstr ""
"Inkompatibler Blendentyp. Wählen Sie eine Blende mit dem Typ 'C', 'R' oder "
"'O'."
-#: appEditors/FlatCAMGrbEditor.py:383
+#: appEditors/AppGerberEditor.py:383
msgid "Done. Adding Pad completed."
msgstr "Erledigt. Hinzufügen von Pad abgeschlossen."
-#: appEditors/FlatCAMGrbEditor.py:410
+#: appEditors/AppGerberEditor.py:410
msgid "To add an Pad Array first select a aperture in Aperture Table"
msgstr ""
"Um ein Pad-Array hinzuzufügen, wählen Sie zunächst eine Blende in der "
"Aperture-Tabelle aus"
-#: appEditors/FlatCAMGrbEditor.py:490
+#: appEditors/AppGerberEditor.py:490
msgid "Click on the Pad Circular Array Start position"
msgstr "Klicken Sie auf die Startposition des Pad-Kreis-Arrays"
-#: appEditors/FlatCAMGrbEditor.py:710
+#: appEditors/AppGerberEditor.py:710
msgid "Too many Pads for the selected spacing angle."
msgstr "Zu viele Pad für den ausgewählten Abstandswinkel."
-#: appEditors/FlatCAMGrbEditor.py:733
+#: appEditors/AppGerberEditor.py:733
msgid "Done. Pad Array added."
msgstr "Erledigt. Pad Array hinzugefügt."
-#: appEditors/FlatCAMGrbEditor.py:758
+#: appEditors/AppGerberEditor.py:758
msgid "Select shape(s) and then click ..."
msgstr "Wählen Sie die Form (en) aus und klicken Sie dann auf ..."
-#: appEditors/FlatCAMGrbEditor.py:770
+#: appEditors/AppGerberEditor.py:770
msgid "Failed. Nothing selected."
msgstr "Gescheitert. Nichts ausgewählt."
-#: appEditors/FlatCAMGrbEditor.py:786
+#: appEditors/AppGerberEditor.py:786
msgid ""
"Failed. Poligonize works only on geometries belonging to the same aperture."
msgstr ""
"Gescheitert. Poligonize funktioniert nur bei Geometrien, die zur selben "
"Apertur gehören."
-#: appEditors/FlatCAMGrbEditor.py:840
+#: appEditors/AppGerberEditor.py:840
msgid "Done. Poligonize completed."
msgstr "Erledigt. Poligonize abgeschlossen."
-#: appEditors/FlatCAMGrbEditor.py:895 appEditors/FlatCAMGrbEditor.py:1119
-#: appEditors/FlatCAMGrbEditor.py:1143
+#: appEditors/AppGerberEditor.py:895 appEditors/AppGerberEditor.py:1119
+#: appEditors/AppGerberEditor.py:1143
msgid "Corner Mode 1: 45 degrees ..."
msgstr "Eckmodus 1: 45 Grad ..."
-#: appEditors/FlatCAMGrbEditor.py:907 appEditors/FlatCAMGrbEditor.py:1219
+#: appEditors/AppGerberEditor.py:907 appEditors/AppGerberEditor.py:1219
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."
-#: appEditors/FlatCAMGrbEditor.py:1107 appEditors/FlatCAMGrbEditor.py:1140
+#: appEditors/AppGerberEditor.py:1107 appEditors/AppGerberEditor.py:1140
msgid "Corner Mode 2: Reverse 45 degrees ..."
msgstr "Eckmodus 2: 45 Grad umkehren ..."
-#: appEditors/FlatCAMGrbEditor.py:1110 appEditors/FlatCAMGrbEditor.py:1137
+#: appEditors/AppGerberEditor.py:1110 appEditors/AppGerberEditor.py:1137
msgid "Corner Mode 3: 90 degrees ..."
msgstr "Eckmodus 3: 90 Grad ..."
-#: appEditors/FlatCAMGrbEditor.py:1113 appEditors/FlatCAMGrbEditor.py:1134
+#: appEditors/AppGerberEditor.py:1113 appEditors/AppGerberEditor.py:1134
msgid "Corner Mode 4: Reverse 90 degrees ..."
msgstr "Eckmodus 4: Um 90 Grad umkehren ..."
-#: appEditors/FlatCAMGrbEditor.py:1116 appEditors/FlatCAMGrbEditor.py:1131
+#: appEditors/AppGerberEditor.py:1116 appEditors/AppGerberEditor.py:1131
msgid "Corner Mode 5: Free angle ..."
msgstr "Eckmodus 5: Freiwinkel ..."
-#: appEditors/FlatCAMGrbEditor.py:1193 appEditors/FlatCAMGrbEditor.py:1358
-#: appEditors/FlatCAMGrbEditor.py:1397
+#: appEditors/AppGerberEditor.py:1193 appEditors/AppGerberEditor.py:1358
+#: appEditors/AppGerberEditor.py:1397
msgid "Track Mode 1: 45 degrees ..."
msgstr "Spurmodus 1: 45 Grad ..."
-#: appEditors/FlatCAMGrbEditor.py:1338 appEditors/FlatCAMGrbEditor.py:1392
+#: appEditors/AppGerberEditor.py:1338 appEditors/AppGerberEditor.py:1392
msgid "Track Mode 2: Reverse 45 degrees ..."
msgstr "Spurmodus 2: 45 Grad umkehren ..."
-#: appEditors/FlatCAMGrbEditor.py:1343 appEditors/FlatCAMGrbEditor.py:1387
+#: appEditors/AppGerberEditor.py:1343 appEditors/AppGerberEditor.py:1387
msgid "Track Mode 3: 90 degrees ..."
msgstr "Spurmodus 3: 90 Grad ..."
-#: appEditors/FlatCAMGrbEditor.py:1348 appEditors/FlatCAMGrbEditor.py:1382
+#: appEditors/AppGerberEditor.py:1348 appEditors/AppGerberEditor.py:1382
msgid "Track Mode 4: Reverse 90 degrees ..."
msgstr "Spurmodus 4: Um 90 Grad umkehren ..."
-#: appEditors/FlatCAMGrbEditor.py:1353 appEditors/FlatCAMGrbEditor.py:1377
+#: appEditors/AppGerberEditor.py:1353 appEditors/AppGerberEditor.py:1377
msgid "Track Mode 5: Free angle ..."
msgstr "Spurmodus 5: Freiwinkel ..."
-#: appEditors/FlatCAMGrbEditor.py:1787
+#: appEditors/AppGerberEditor.py:1787
msgid "Scale the selected Gerber apertures ..."
msgstr "Skalieren Sie die ausgewählten Gerber-Öffnungen ..."
-#: appEditors/FlatCAMGrbEditor.py:1829
+#: appEditors/AppGerberEditor.py:1829
msgid "Buffer the selected apertures ..."
msgstr "Die ausgewählten Öffnungen puffern ..."
-#: appEditors/FlatCAMGrbEditor.py:1871
+#: appEditors/AppGerberEditor.py:1871
msgid "Mark polygon areas in the edited Gerber ..."
msgstr "Markiere Polygonbereiche im bearbeiteten Gerber ..."
-#: appEditors/FlatCAMGrbEditor.py:1937
+#: appEditors/AppGerberEditor.py:1937
msgid "Nothing selected to move"
msgstr "Nichts zum Bewegen ausgewählt"
-#: appEditors/FlatCAMGrbEditor.py:2062
+#: appEditors/AppGerberEditor.py:2062
msgid "Done. Apertures Move completed."
msgstr "Erledigt. Öffnungsbewegung abgeschlossen."
-#: appEditors/FlatCAMGrbEditor.py:2144
+#: appEditors/AppGerberEditor.py:2144
msgid "Done. Apertures copied."
msgstr "Erledigt. Blende kopiert."
-#: appEditors/FlatCAMGrbEditor.py:2462 appGUI/MainGUI.py:1477
+#: appEditors/AppGerberEditor.py:2462 appGUI/MainGUI.py:1477
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:27
msgid "Gerber Editor"
msgstr "Gerber-Editor"
-#: appEditors/FlatCAMGrbEditor.py:2482 appGUI/ObjectUI.py:247
+#: appEditors/AppGerberEditor.py:2482 appGUI/ObjectUI.py:247
#: appTools/ToolProperties.py:159
msgid "Apertures"
msgstr "Öffnungen"
-#: appEditors/FlatCAMGrbEditor.py:2484 appGUI/ObjectUI.py:249
+#: appEditors/AppGerberEditor.py:2484 appGUI/ObjectUI.py:249
msgid "Apertures Table for the Gerber Object."
msgstr "Blendentabelle für das Gerberobjekt."
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Code"
msgstr "Code"
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
#: appGUI/preferences/general/GeneralAPPSetGroupUI.py:103
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:167
@@ -3080,29 +3080,29 @@ msgstr "Code"
msgid "Size"
msgstr "Größe"
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Dim"
msgstr "Maße"
-#: appEditors/FlatCAMGrbEditor.py:2500 appGUI/ObjectUI.py:286
+#: appEditors/AppGerberEditor.py:2500 appGUI/ObjectUI.py:286
msgid "Index"
msgstr "Index"
-#: appEditors/FlatCAMGrbEditor.py:2502 appEditors/FlatCAMGrbEditor.py:2531
+#: appEditors/AppGerberEditor.py:2502 appEditors/AppGerberEditor.py:2531
#: appGUI/ObjectUI.py:288
msgid "Aperture Code"
msgstr "Öffnungscode"
-#: appEditors/FlatCAMGrbEditor.py:2504 appGUI/ObjectUI.py:290
+#: appEditors/AppGerberEditor.py:2504 appGUI/ObjectUI.py:290
msgid "Type of aperture: circular, rectangle, macros etc"
msgstr "Öffnungsart: kreisförmig, rechteckig, Makros usw"
-#: appEditors/FlatCAMGrbEditor.py:2506 appGUI/ObjectUI.py:292
+#: appEditors/AppGerberEditor.py:2506 appGUI/ObjectUI.py:292
msgid "Aperture Size:"
msgstr "Öffnungsgröße:"
-#: appEditors/FlatCAMGrbEditor.py:2508 appGUI/ObjectUI.py:294
+#: appEditors/AppGerberEditor.py:2508 appGUI/ObjectUI.py:294
msgid ""
"Aperture Dimensions:\n"
" - (width, height) for R, O type.\n"
@@ -3112,16 +3112,16 @@ msgstr ""
" - (Breite, Höhe) für R, O-Typ.\n"
" - (dia, nVertices) für P-Typ"
-#: appEditors/FlatCAMGrbEditor.py:2532
+#: appEditors/AppGerberEditor.py:2532
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:58
msgid "Code for the new aperture"
msgstr "Code für die neue Blende"
-#: appEditors/FlatCAMGrbEditor.py:2541
+#: appEditors/AppGerberEditor.py:2541
msgid "Aperture Size"
msgstr "Öffnungsgröße"
-#: appEditors/FlatCAMGrbEditor.py:2543
+#: appEditors/AppGerberEditor.py:2543
msgid ""
"Size for the new aperture.\n"
"If aperture type is 'R' or 'O' then\n"
@@ -3135,11 +3135,11 @@ msgstr ""
"berechnet als:\n"
"Quadrat (Breite ** 2 + Höhe ** 2)"
-#: appEditors/FlatCAMGrbEditor.py:2557
+#: appEditors/AppGerberEditor.py:2557
msgid "Aperture Type"
msgstr "Blendentyp"
-#: appEditors/FlatCAMGrbEditor.py:2559
+#: appEditors/AppGerberEditor.py:2559
msgid ""
"Select the type of new aperture. Can be:\n"
"C = circular\n"
@@ -3151,11 +3151,11 @@ msgstr ""
"R = rechteckig\n"
"O = länglich"
-#: appEditors/FlatCAMGrbEditor.py:2570
+#: appEditors/AppGerberEditor.py:2570
msgid "Aperture Dim"
msgstr "Öffnungsmaße"
-#: appEditors/FlatCAMGrbEditor.py:2572
+#: appEditors/AppGerberEditor.py:2572
msgid ""
"Dimensions for the new aperture.\n"
"Active only for rectangular apertures (type R).\n"
@@ -3165,19 +3165,19 @@ msgstr ""
"Aktiv nur für rechteckige Öffnungen (Typ R).\n"
"Das Format ist (Breite, Höhe)"
-#: appEditors/FlatCAMGrbEditor.py:2581
+#: appEditors/AppGerberEditor.py:2581
msgid "Add/Delete Aperture"
msgstr "Blende hinzufügen / löschen"
-#: appEditors/FlatCAMGrbEditor.py:2583
+#: appEditors/AppGerberEditor.py:2583
msgid "Add/Delete an aperture in the aperture table"
msgstr "Eine Blende in der Blendentabelle hinzufügen / löschen"
-#: appEditors/FlatCAMGrbEditor.py:2592
+#: appEditors/AppGerberEditor.py:2592
msgid "Add a new aperture to the aperture list."
msgstr "Fügen Sie der Blendenliste eine neue Blende hinzu."
-#: appEditors/FlatCAMGrbEditor.py:2595 appEditors/FlatCAMGrbEditor.py:2743
+#: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743
#: appGUI/MainGUI.py:748 appGUI/MainGUI.py:1068 appGUI/MainGUI.py:1527
#: appGUI/MainGUI.py:2099 appGUI/MainGUI.py:4514 appGUI/ObjectUI.py:1525
#: appObjects/FlatCAMGeometry.py:563 appTools/ToolIsolation.py:298
@@ -3188,28 +3188,28 @@ msgstr "Fügen Sie der Blendenliste eine neue Blende hinzu."
msgid "Delete"
msgstr "Löschen"
-#: appEditors/FlatCAMGrbEditor.py:2597
+#: appEditors/AppGerberEditor.py:2597
msgid "Delete a aperture in the aperture list"
msgstr "Löschen Sie eine Blende in der Blendenliste"
-#: appEditors/FlatCAMGrbEditor.py:2614
+#: appEditors/AppGerberEditor.py:2614
msgid "Buffer Aperture"
msgstr "Pufferblende"
-#: appEditors/FlatCAMGrbEditor.py:2616
+#: appEditors/AppGerberEditor.py:2616
msgid "Buffer a aperture in the aperture list"
msgstr "Puffern Sie eine Blende in der Blendenliste"
-#: appEditors/FlatCAMGrbEditor.py:2629
+#: appEditors/AppGerberEditor.py:2629
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:195
msgid "Buffer distance"
msgstr "Pufferabstand"
-#: appEditors/FlatCAMGrbEditor.py:2630
+#: appEditors/AppGerberEditor.py:2630
msgid "Buffer corner"
msgstr "Pufferecke"
-#: appEditors/FlatCAMGrbEditor.py:2632
+#: appEditors/AppGerberEditor.py:2632
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded.\n"
@@ -3223,20 +3223,20 @@ msgstr ""
"- 'Abgeschrägt:' Die Ecke ist eine Linie, die die Features, die sich in der "
"Ecke treffen, direkt verbindet"
-#: appEditors/FlatCAMGrbEditor.py:2662
+#: appEditors/AppGerberEditor.py:2662
msgid "Scale Aperture"
msgstr "Skalenöffnung"
-#: appEditors/FlatCAMGrbEditor.py:2664
+#: appEditors/AppGerberEditor.py:2664
msgid "Scale a aperture in the aperture list"
msgstr "Skalieren Sie eine Blende in der Blendenliste"
-#: appEditors/FlatCAMGrbEditor.py:2672
+#: appEditors/AppGerberEditor.py:2672
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:210
msgid "Scale factor"
msgstr "Skalierungsfaktor"
-#: appEditors/FlatCAMGrbEditor.py:2674
+#: appEditors/AppGerberEditor.py:2674
msgid ""
"The factor by which to scale the selected aperture.\n"
"Values can be between 0.0000 and 999.9999"
@@ -3244,19 +3244,19 @@ msgstr ""
"Der Faktor, um den die ausgewählte Blende skaliert werden soll.\n"
"Die Werte können zwischen 0,0000 und 999,9999 liegen"
-#: appEditors/FlatCAMGrbEditor.py:2702
+#: appEditors/AppGerberEditor.py:2702
msgid "Mark polygons"
msgstr "Polygone markieren"
-#: appEditors/FlatCAMGrbEditor.py:2704
+#: appEditors/AppGerberEditor.py:2704
msgid "Mark the polygon areas."
msgstr "Markieren Sie die Polygonbereiche."
-#: appEditors/FlatCAMGrbEditor.py:2712
+#: appEditors/AppGerberEditor.py:2712
msgid "Area UPPER threshold"
msgstr "Flächenobergrenze"
-#: appEditors/FlatCAMGrbEditor.py:2714
+#: appEditors/AppGerberEditor.py:2714
msgid ""
"The threshold value, all areas less than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3264,11 +3264,11 @@ msgstr ""
"Der Schwellenwert, alle Bereiche, die darunter liegen, sind markiert.\n"
"Kann einen Wert zwischen 0,0000 und 9999,9999 haben"
-#: appEditors/FlatCAMGrbEditor.py:2721
+#: appEditors/AppGerberEditor.py:2721
msgid "Area LOWER threshold"
msgstr "Bereichsuntergrenze"
-#: appEditors/FlatCAMGrbEditor.py:2723
+#: appEditors/AppGerberEditor.py:2723
msgid ""
"The threshold value, all areas more than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3277,32 +3277,32 @@ msgstr ""
"hinausgehen.\n"
"Kann einen Wert zwischen 0,0000 und 9999,9999 haben"
-#: appEditors/FlatCAMGrbEditor.py:2737
+#: appEditors/AppGerberEditor.py:2737
msgid "Mark"
msgstr "Kennzeichen"
-#: appEditors/FlatCAMGrbEditor.py:2739
+#: appEditors/AppGerberEditor.py:2739
msgid "Mark the polygons that fit within limits."
msgstr "Markieren Sie die Polygone, die in Grenzen passen."
-#: appEditors/FlatCAMGrbEditor.py:2745
+#: appEditors/AppGerberEditor.py:2745
msgid "Delete all the marked polygons."
msgstr "Löschen Sie alle markierten Polygone."
-#: appEditors/FlatCAMGrbEditor.py:2751
+#: appEditors/AppGerberEditor.py:2751
msgid "Clear all the markings."
msgstr "Alle Markierungen entfernen."
-#: appEditors/FlatCAMGrbEditor.py:2771 appGUI/MainGUI.py:1040
+#: appEditors/AppGerberEditor.py:2771 appGUI/MainGUI.py:1040
#: appGUI/MainGUI.py:2072 appGUI/MainGUI.py:4511
msgid "Add Pad Array"
msgstr "Pad-Array hinzufügen"
-#: appEditors/FlatCAMGrbEditor.py:2773
+#: appEditors/AppGerberEditor.py:2773
msgid "Add an array of pads (linear or circular array)"
msgstr "Hinzufügen eines Arrays von Pads (lineares oder kreisförmiges Array)"
-#: appEditors/FlatCAMGrbEditor.py:2779
+#: appEditors/AppGerberEditor.py:2779
msgid ""
"Select the type of pads array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -3310,17 +3310,17 @@ msgstr ""
"Wählen Sie den zu erstellenden Pad-Array-Typ aus.\n"
"Es kann lineares X (Y) oder rund sein"
-#: appEditors/FlatCAMGrbEditor.py:2790
+#: appEditors/AppGerberEditor.py:2790
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:95
msgid "Nr of pads"
msgstr "Anzahl der Pads"
-#: appEditors/FlatCAMGrbEditor.py:2792
+#: appEditors/AppGerberEditor.py:2792
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:97
msgid "Specify how many pads to be in the array."
msgstr "Geben Sie an, wie viele Pads sich im Array befinden sollen."
-#: appEditors/FlatCAMGrbEditor.py:2841
+#: appEditors/AppGerberEditor.py:2841
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -3332,13 +3332,13 @@ msgstr ""
"Der Mindestwert beträgt -359,99 Grad.\n"
"Maximalwert ist: 360.00 Grad."
-#: appEditors/FlatCAMGrbEditor.py:3335 appEditors/FlatCAMGrbEditor.py:3339
+#: appEditors/AppGerberEditor.py:3335 appEditors/AppGerberEditor.py:3339
msgid "Aperture code value is missing or wrong format. Add it and retry."
msgstr ""
"Blendencodewert fehlt oder falsches Format. Fügen Sie es hinzu und versuchen "
"Sie es erneut."
-#: appEditors/FlatCAMGrbEditor.py:3375
+#: appEditors/AppGerberEditor.py:3375
msgid ""
"Aperture dimensions value is missing or wrong format. Add it in format "
"(width, height) and retry."
@@ -3346,156 +3346,156 @@ msgstr ""
"Wert für Blendenmaße fehlt oder falsches Format. Fügen Sie es im Format "
"(Breite, Höhe) hinzu und versuchen Sie es erneut."
-#: appEditors/FlatCAMGrbEditor.py:3388
+#: appEditors/AppGerberEditor.py:3388
msgid "Aperture size value is missing or wrong format. Add it and retry."
msgstr ""
"Der Wert für die Blendengröße fehlt oder das Format ist falsch. Fügen Sie es "
"hinzu und versuchen Sie es erneut."
-#: appEditors/FlatCAMGrbEditor.py:3399
+#: appEditors/AppGerberEditor.py:3399
msgid "Aperture already in the aperture table."
msgstr "Blende bereits in der Blendentabelle."
-#: appEditors/FlatCAMGrbEditor.py:3406
+#: appEditors/AppGerberEditor.py:3406
msgid "Added new aperture with code"
msgstr "Neue Blende mit Code hinzugefügt"
-#: appEditors/FlatCAMGrbEditor.py:3438
+#: appEditors/AppGerberEditor.py:3438
msgid " Select an aperture in Aperture Table"
msgstr " Wählen Sie in Blende Table eine Blende aus"
-#: appEditors/FlatCAMGrbEditor.py:3446
+#: appEditors/AppGerberEditor.py:3446
msgid "Select an aperture in Aperture Table -->"
msgstr "Wählen Sie in Blende Table eine Blende aus -->"
-#: appEditors/FlatCAMGrbEditor.py:3460
+#: appEditors/AppGerberEditor.py:3460
msgid "Deleted aperture with code"
msgstr "Blende mit Code gelöscht"
-#: appEditors/FlatCAMGrbEditor.py:3528
+#: appEditors/AppGerberEditor.py:3528
msgid "Dimensions need two float values separated by comma."
msgstr "Bemaßungen benötigen zwei durch Komma getrennte Gleitkommawerte."
-#: appEditors/FlatCAMGrbEditor.py:3537
+#: appEditors/AppGerberEditor.py:3537
msgid "Dimensions edited."
msgstr "Abmessungen bearbeitet."
-#: appEditors/FlatCAMGrbEditor.py:4066
+#: appEditors/AppGerberEditor.py:4066
msgid "Loading Gerber into Editor"
msgstr "Gerber File wird in den Editor geladen"
-#: appEditors/FlatCAMGrbEditor.py:4194
+#: appEditors/AppGerberEditor.py:4194
msgid "Setting up the UI"
msgstr "UI wird initialisiert"
-#: appEditors/FlatCAMGrbEditor.py:4195
+#: appEditors/AppGerberEditor.py:4195
msgid "Adding geometry finished. Preparing the GUI"
msgstr "Geometrie hinzufügen fertig. Vorbereiten der GUI"
-#: appEditors/FlatCAMGrbEditor.py:4204
+#: appEditors/AppGerberEditor.py:4204
msgid "Finished loading the Gerber object into the editor."
msgstr "Gerber-Objekte wurde in den Editor geladen."
-#: appEditors/FlatCAMGrbEditor.py:4345
+#: appEditors/AppGerberEditor.py:4345
msgid ""
"There are no Aperture definitions in the file. Aborting Gerber creation."
msgstr ""
"Die Datei enthält keine Aperture-Definitionen. Abbruch der Gerber-Erstellung."
-#: appEditors/FlatCAMGrbEditor.py:4347 appObjects/AppObject.py:133
+#: appEditors/AppGerberEditor.py:4347 appObjects/AppObject.py:133
#: appObjects/FlatCAMGeometry.py:1786 appParsers/ParseExcellon.py:896
#: appTools/ToolPcbWizard.py:432 app_Main.py:8589 app_Main.py:8653
#: app_Main.py:8784 app_Main.py:8849 app_Main.py:9501
msgid "An internal error has occurred. See shell.\n"
msgstr "Ein interner Fehler ist aufgetreten. Siehe Shell.\n"
-#: appEditors/FlatCAMGrbEditor.py:4355
+#: appEditors/AppGerberEditor.py:4355
msgid "Creating Gerber."
msgstr "Gerber erstellen."
-#: appEditors/FlatCAMGrbEditor.py:4367
+#: appEditors/AppGerberEditor.py:4367
msgid "Done. Gerber editing finished."
msgstr "Erledigt. Gerber-Bearbeitung beendet."
-#: appEditors/FlatCAMGrbEditor.py:4383
+#: appEditors/AppGerberEditor.py:4383
msgid "Cancelled. No aperture is selected"
msgstr "Abgebrochen. Es ist keine Blende ausgewählt"
-#: appEditors/FlatCAMGrbEditor.py:4538 app_Main.py:6122
+#: appEditors/AppGerberEditor.py:4538 app_Main.py:6122
msgid "Coordinates copied to clipboard."
msgstr "Koordinaten in die Zwischenablage kopiert."
-#: appEditors/FlatCAMGrbEditor.py:4985
+#: appEditors/AppGerberEditor.py:4985
msgid "Failed. No aperture geometry is selected."
msgstr "Gescheitert. Es ist keine Aperturgeometrie ausgewählt."
-#: appEditors/FlatCAMGrbEditor.py:4994 appEditors/FlatCAMGrbEditor.py:5265
+#: appEditors/AppGerberEditor.py:4994 appEditors/AppGerberEditor.py:5265
msgid "Done. Apertures geometry deleted."
msgstr "Fertig. Blendengeometrie gelöscht."
-#: appEditors/FlatCAMGrbEditor.py:5137
+#: appEditors/AppGerberEditor.py:5137
msgid "No aperture to buffer. Select at least one aperture and try again."
msgstr ""
"Keine Blende zum Puffern Wählen Sie mindestens eine Blende und versuchen Sie "
"es erneut."
-#: appEditors/FlatCAMGrbEditor.py:5149
+#: appEditors/AppGerberEditor.py:5149
msgid "Failed."
msgstr "Gescheitert."
-#: appEditors/FlatCAMGrbEditor.py:5168
+#: appEditors/AppGerberEditor.py:5168
msgid "Scale factor value is missing or wrong format. Add it and retry."
msgstr ""
"Der Skalierungsfaktor ist nicht vorhanden oder das Format ist falsch. Fügen "
"Sie es hinzu und versuchen Sie es erneut."
-#: appEditors/FlatCAMGrbEditor.py:5200
+#: appEditors/AppGerberEditor.py:5200
msgid "No aperture to scale. Select at least one aperture and try again."
msgstr ""
"Keine zu skalierende Blende Wählen Sie mindestens eine Blende und versuchen "
"Sie es erneut."
-#: appEditors/FlatCAMGrbEditor.py:5216
+#: appEditors/AppGerberEditor.py:5216
msgid "Done. Scale Tool completed."
msgstr "Erledigt. Skalierungswerkzeug abgeschlossen."
-#: appEditors/FlatCAMGrbEditor.py:5254
+#: appEditors/AppGerberEditor.py:5254
msgid "Polygons marked."
msgstr "Polygone markiert."
-#: appEditors/FlatCAMGrbEditor.py:5257
+#: appEditors/AppGerberEditor.py:5257
msgid "No polygons were marked. None fit within the limits."
msgstr "Es wurden keine Polygone markiert. Keiner passt in die Grenzen."
-#: appEditors/FlatCAMGrbEditor.py:5985
+#: appEditors/AppGerberEditor.py:5985
msgid "Rotation action was not executed."
msgstr "Rotationsaktion wurde nicht ausgeführt."
-#: appEditors/FlatCAMGrbEditor.py:6027 app_Main.py:5556 app_Main.py:5604
+#: appEditors/AppGerberEditor.py:6027 app_Main.py:5556 app_Main.py:5604
msgid "Flip action was not executed."
msgstr "Flip-Aktion wurde nicht ausgeführt."
-#: appEditors/FlatCAMGrbEditor.py:6067
+#: appEditors/AppGerberEditor.py:6067
msgid "Skew action was not executed."
msgstr "Die Versatzaktion wurde nicht ausgeführt."
-#: appEditors/FlatCAMGrbEditor.py:6106
+#: appEditors/AppGerberEditor.py:6106
msgid "Scale action was not executed."
msgstr "Skalierungsaktion wurde nicht ausgeführt."
-#: appEditors/FlatCAMGrbEditor.py:6150
+#: appEditors/AppGerberEditor.py:6150
msgid "Offset action was not executed."
msgstr "Offsetaktion wurde nicht ausgeführt."
-#: appEditors/FlatCAMGrbEditor.py:6236
+#: appEditors/AppGerberEditor.py:6236
msgid "Geometry shape offset Y cancelled"
msgstr "Geometrieform-Versatz Y abgebrochen"
-#: appEditors/FlatCAMGrbEditor.py:6251
+#: appEditors/AppGerberEditor.py:6251
msgid "Geometry shape skew X cancelled"
msgstr "Geometrieformverzerren X abgebrochen"
-#: appEditors/FlatCAMGrbEditor.py:6266
+#: appEditors/AppGerberEditor.py:6266
msgid "Geometry shape skew Y cancelled"
msgstr "Geometrieformverzerren Y abgebrochen"
diff --git a/locale/en/LC_MESSAGES/strings.po b/locale/en/LC_MESSAGES/strings.po
index 6fcd2807..ae5fb55e 100644
--- a/locale/en/LC_MESSAGES/strings.po
+++ b/locale/en/LC_MESSAGES/strings.po
@@ -105,8 +105,8 @@ msgid "Bookmarks"
msgstr "Bookmarks"
#: Bookmark.py:300 Bookmark.py:342 appDatabase.py:665 appDatabase.py:711
-#: appDatabase.py:2279 appDatabase.py:2325 appEditors/FlatCAMExcEditor.py:1023
-#: appEditors/FlatCAMExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
+#: appDatabase.py:2279 appDatabase.py:2325 appEditors/AppExcEditor.py:1023
+#: appEditors/AppExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
#: appGUI/MainGUI.py:2730 appGUI/MainGUI.py:2952 appGUI/MainGUI.py:3167
#: appObjects/ObjectCollection.py:127 appTools/ToolFilm.py:739
#: appTools/ToolFilm.py:885 appTools/ToolImage.py:247 appTools/ToolMove.py:269
@@ -174,7 +174,7 @@ msgstr "Click the end point of the area."
msgid "Zone added. Click to start adding next zone or right click to finish."
msgstr "Zone added. Click to start adding next zone or right click to finish."
-#: Common.py:322 appEditors/appGeoEditor.py:2352
+#: Common.py:322 appEditors/AppGeoEditor.py:2352
#: appTools/ToolIsolation.py:2584 appTools/ToolNCC.py:1754
#: appTools/ToolPaint.py:1647
msgid "Click on next Point or click right mouse button to complete ..."
@@ -275,7 +275,7 @@ msgid "Tool Name"
msgstr "Tool Name"
#: appDatabase.py:161 appDatabase.py:837 appDatabase.py:1119
-#: appEditors/FlatCAMExcEditor.py:1604 appGUI/ObjectUI.py:1226
+#: appEditors/AppExcEditor.py:1604 appGUI/ObjectUI.py:1226
#: appGUI/ObjectUI.py:1480
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:132
#: appTools/ToolIsolation.py:260 appTools/ToolNCC.py:278
@@ -834,7 +834,7 @@ msgstr ""
"If it's not successful then the non-copper clearing will fail, too.\n"
"- Clear -> the regular non-copper clearing."
-#: appDatabase.py:1427 appEditors/FlatCAMGrbEditor.py:2749
+#: appDatabase.py:1427 appEditors/AppGerberEditor.py:2749
#: appGUI/GUIElements.py:2765 appTools/ToolNCC.py:350
msgid "Clear"
msgstr "Clear"
@@ -885,7 +885,7 @@ msgid "Conventional"
msgstr "Conventional"
#: appDatabase.py:1456 appDatabase.py:1565 appDatabase.py:1667
-#: appEditors/appGeoEditor.py:450
+#: appEditors/AppGeoEditor.py:450
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:167
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:182
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:163
@@ -913,7 +913,7 @@ msgstr ""
"Higher values = slow processing and slow execution on CNC\n"
"due of too many paths."
-#: appDatabase.py:1477 appDatabase.py:1586 appEditors/appGeoEditor.py:470
+#: appDatabase.py:1477 appDatabase.py:1586 appEditors/AppGeoEditor.py:470
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:72
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:229
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:59
@@ -942,7 +942,7 @@ msgstr "Margin"
msgid "Bounding box margin."
msgstr "Bounding box margin."
-#: appDatabase.py:1490 appDatabase.py:1601 appEditors/appGeoEditor.py:484
+#: appDatabase.py:1490 appDatabase.py:1601 appEditors/AppGeoEditor.py:484
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:105
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:106
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:215
@@ -965,7 +965,7 @@ msgstr ""
"- Seed-based: Outwards from seed.\n"
"- Line-based: Parallel lines."
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2232 appTools/ToolNCC.py:2764
@@ -975,8 +975,8 @@ msgstr ""
msgid "Standard"
msgstr "Standard"
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:568 appEditors/appGeoEditor.py:5091
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:568 appEditors/AppGeoEditor.py:5091
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2243 appTools/ToolNCC.py:2770
@@ -987,8 +987,8 @@ msgstr "Standard"
msgid "Seed"
msgstr "Seed"
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:5095
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:5095
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2254 appTools/ToolPaint.py:389
@@ -1012,7 +1012,7 @@ msgstr "Combo"
msgid "Connect"
msgstr "Connect"
-#: appDatabase.py:1512 appDatabase.py:1629 appEditors/appGeoEditor.py:507
+#: appDatabase.py:1512 appDatabase.py:1629 appEditors/AppGeoEditor.py:507
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:239
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:226
#: appTools/ToolNCC.py:443 appTools/ToolPaint.py:403
@@ -1030,7 +1030,7 @@ msgstr ""
msgid "Contour"
msgstr "Contour"
-#: appDatabase.py:1522 appDatabase.py:1636 appEditors/appGeoEditor.py:517
+#: appDatabase.py:1522 appDatabase.py:1636 appEditors/AppGeoEditor.py:517
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:248
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:234
#: appTools/ToolNCC.py:453 appTools/ToolPaint.py:410
@@ -1041,8 +1041,8 @@ msgstr ""
"Cut around the perimeter of the polygon\n"
"to trim rough edges."
-#: appDatabase.py:1528 appEditors/appGeoEditor.py:611
-#: appEditors/FlatCAMGrbEditor.py:5304 appGUI/ObjectUI.py:143
+#: appDatabase.py:1528 appEditors/AppGeoEditor.py:611
+#: appEditors/AppGerberEditor.py:5304 appGUI/ObjectUI.py:143
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:255
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:183
@@ -1064,7 +1064,7 @@ msgstr ""
"from the copper features.\n"
"The value can be between 0 and 10 FlatCAM units."
-#: appDatabase.py:1567 appEditors/appGeoEditor.py:452
+#: appDatabase.py:1567 appEditors/AppGeoEditor.py:452
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:165
#: appTools/ToolPaint.py:330
msgid ""
@@ -1084,7 +1084,7 @@ msgstr ""
"Higher values = slow processing and slow execution on CNC\n"
"due of too many paths."
-#: appDatabase.py:1588 appEditors/appGeoEditor.py:472
+#: appDatabase.py:1588 appEditors/AppGeoEditor.py:472
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:185
#: appTools/ToolPaint.py:351
msgid ""
@@ -1228,131 +1228,131 @@ msgstr ""
"object/application tool after selecting a tool\n"
"in the Tools Database."
-#: appEditors/FlatCAMExcEditor.py:50 appEditors/FlatCAMExcEditor.py:74
-#: appEditors/FlatCAMExcEditor.py:168 appEditors/FlatCAMExcEditor.py:385
-#: appEditors/FlatCAMExcEditor.py:589 appEditors/FlatCAMGrbEditor.py:241
-#: appEditors/FlatCAMGrbEditor.py:248
+#: appEditors/AppExcEditor.py:50 appEditors/AppExcEditor.py:74
+#: appEditors/AppExcEditor.py:168 appEditors/AppExcEditor.py:385
+#: appEditors/AppExcEditor.py:589 appEditors/AppGerberEditor.py:241
+#: appEditors/AppGerberEditor.py:248
msgid "Click to place ..."
msgstr "Click to place ..."
-#: appEditors/FlatCAMExcEditor.py:58
+#: appEditors/AppExcEditor.py:58
msgid "To add a drill first select a tool"
msgstr "To add a drill first select a tool"
-#: appEditors/FlatCAMExcEditor.py:122
+#: appEditors/AppExcEditor.py:122
msgid "Done. Drill added."
msgstr "Done. Drill added."
-#: appEditors/FlatCAMExcEditor.py:176
+#: appEditors/AppExcEditor.py:176
msgid "To add an Drill Array first select a tool in Tool Table"
msgstr "To add an Drill Array first select a tool in Tool Table"
-#: appEditors/FlatCAMExcEditor.py:192 appEditors/FlatCAMExcEditor.py:415
-#: appEditors/FlatCAMExcEditor.py:636 appEditors/FlatCAMExcEditor.py:1151
-#: appEditors/FlatCAMExcEditor.py:1178 appEditors/FlatCAMGrbEditor.py:471
-#: appEditors/FlatCAMGrbEditor.py:1944 appEditors/FlatCAMGrbEditor.py:1974
+#: appEditors/AppExcEditor.py:192 appEditors/AppExcEditor.py:415
+#: appEditors/AppExcEditor.py:636 appEditors/AppExcEditor.py:1151
+#: appEditors/AppExcEditor.py:1178 appEditors/AppGerberEditor.py:471
+#: appEditors/AppGerberEditor.py:1944 appEditors/AppGerberEditor.py:1974
msgid "Click on target location ..."
msgstr "Click on target location ..."
-#: appEditors/FlatCAMExcEditor.py:211
+#: appEditors/AppExcEditor.py:211
msgid "Click on the Drill Circular Array Start position"
msgstr "Click on the Drill Circular Array Start position"
-#: appEditors/FlatCAMExcEditor.py:233 appEditors/FlatCAMExcEditor.py:677
-#: appEditors/FlatCAMGrbEditor.py:516
+#: appEditors/AppExcEditor.py:233 appEditors/AppExcEditor.py:677
+#: appEditors/AppGerberEditor.py:516
msgid "The value is not Float. Check for comma instead of dot separator."
msgstr "The value is not Float. Check for comma instead of dot separator."
-#: appEditors/FlatCAMExcEditor.py:237
+#: appEditors/AppExcEditor.py:237
msgid "The value is mistyped. Check the value"
msgstr "The value is mistyped. Check the value"
-#: appEditors/FlatCAMExcEditor.py:336
+#: appEditors/AppExcEditor.py:336
msgid "Too many drills for the selected spacing angle."
msgstr "Too many drills for the selected spacing angle."
-#: appEditors/FlatCAMExcEditor.py:354
+#: appEditors/AppExcEditor.py:354
msgid "Done. Drill Array added."
msgstr "Done. Drill Array added."
-#: appEditors/FlatCAMExcEditor.py:394
+#: appEditors/AppExcEditor.py:394
msgid "To add a slot first select a tool"
msgstr "To add a slot first select a tool"
-#: appEditors/FlatCAMExcEditor.py:454 appEditors/FlatCAMExcEditor.py:461
-#: appEditors/FlatCAMExcEditor.py:742 appEditors/FlatCAMExcEditor.py:749
+#: appEditors/AppExcEditor.py:454 appEditors/AppExcEditor.py:461
+#: appEditors/AppExcEditor.py:742 appEditors/AppExcEditor.py:749
msgid "Value is missing or wrong format. Add it and retry."
msgstr "Value is missing or wrong format. Add it and retry."
-#: appEditors/FlatCAMExcEditor.py:559
+#: appEditors/AppExcEditor.py:559
msgid "Done. Adding Slot completed."
msgstr "Done. Adding Slot completed."
-#: appEditors/FlatCAMExcEditor.py:597
+#: appEditors/AppExcEditor.py:597
msgid "To add an Slot Array first select a tool in Tool Table"
msgstr "To add an Slot Array first select a tool in Tool Table"
-#: appEditors/FlatCAMExcEditor.py:655
+#: appEditors/AppExcEditor.py:655
msgid "Click on the Slot Circular Array Start position"
msgstr "Click on the Slot Circular Array Start position"
-#: appEditors/FlatCAMExcEditor.py:680 appEditors/FlatCAMGrbEditor.py:519
+#: appEditors/AppExcEditor.py:680 appEditors/AppGerberEditor.py:519
msgid "The value is mistyped. Check the value."
msgstr "The value is mistyped. Check the value."
-#: appEditors/FlatCAMExcEditor.py:859
+#: appEditors/AppExcEditor.py:859
msgid "Too many Slots for the selected spacing angle."
msgstr "Too many Slots for the selected spacing angle."
-#: appEditors/FlatCAMExcEditor.py:882
+#: appEditors/AppExcEditor.py:882
msgid "Done. Slot Array added."
msgstr "Done. Slot Array added."
-#: appEditors/FlatCAMExcEditor.py:904
+#: appEditors/AppExcEditor.py:904
msgid "Click on the Drill(s) to resize ..."
msgstr "Click on the Drill(s) to resize ..."
-#: appEditors/FlatCAMExcEditor.py:934
+#: appEditors/AppExcEditor.py:934
msgid "Resize drill(s) failed. Please enter a diameter for resize."
msgstr "Resize drill(s) failed. Please enter a diameter for resize."
-#: appEditors/FlatCAMExcEditor.py:1112
+#: appEditors/AppExcEditor.py:1112
msgid "Done. Drill/Slot Resize completed."
msgstr "Done. Drill/Slot Resize completed."
-#: appEditors/FlatCAMExcEditor.py:1115
+#: appEditors/AppExcEditor.py:1115
msgid "Cancelled. No drills/slots selected for resize ..."
msgstr "Cancelled. No drills/slots selected for resize ..."
-#: appEditors/FlatCAMExcEditor.py:1153 appEditors/FlatCAMGrbEditor.py:1946
+#: appEditors/AppExcEditor.py:1153 appEditors/AppGerberEditor.py:1946
msgid "Click on reference location ..."
msgstr "Click on reference location ..."
-#: appEditors/FlatCAMExcEditor.py:1210
+#: appEditors/AppExcEditor.py:1210
msgid "Done. Drill(s) Move completed."
msgstr "Done. Drill(s) Move completed."
-#: appEditors/FlatCAMExcEditor.py:1318
+#: appEditors/AppExcEditor.py:1318
msgid "Done. Drill(s) copied."
msgstr "Done. Drill(s) copied."
-#: appEditors/FlatCAMExcEditor.py:1557
+#: appEditors/AppExcEditor.py:1557
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:26
msgid "Excellon Editor"
msgstr "Excellon Editor"
-#: appEditors/FlatCAMExcEditor.py:1564 appEditors/FlatCAMGrbEditor.py:2469
+#: appEditors/AppExcEditor.py:1564 appEditors/AppGerberEditor.py:2469
msgid "Name:"
msgstr "Name:"
-#: appEditors/FlatCAMExcEditor.py:1570 appGUI/ObjectUI.py:540
+#: appEditors/AppExcEditor.py:1570 appGUI/ObjectUI.py:540
#: appGUI/ObjectUI.py:1362 appTools/ToolIsolation.py:118
#: appTools/ToolNCC.py:120 appTools/ToolPaint.py:114
#: appTools/ToolSolderPaste.py:79
msgid "Tools Table"
msgstr "Tools Table"
-#: appEditors/FlatCAMExcEditor.py:1572 appGUI/ObjectUI.py:542
+#: appEditors/AppExcEditor.py:1572 appGUI/ObjectUI.py:542
msgid ""
"Tools in this Excellon object\n"
"when are used for drilling."
@@ -1360,7 +1360,7 @@ msgstr ""
"Tools in this Excellon object\n"
"when are used for drilling."
-#: appEditors/FlatCAMExcEditor.py:1584 appEditors/FlatCAMExcEditor.py:3041
+#: appEditors/AppExcEditor.py:1584 appEditors/AppExcEditor.py:3041
#: appGUI/ObjectUI.py:560 appObjects/FlatCAMExcellon.py:1265
#: appObjects/FlatCAMExcellon.py:1368 appObjects/FlatCAMExcellon.py:1553
#: appTools/ToolIsolation.py:130 appTools/ToolNCC.py:132
@@ -1370,11 +1370,11 @@ msgstr ""
msgid "Diameter"
msgstr "Diameter"
-#: appEditors/FlatCAMExcEditor.py:1592
+#: appEditors/AppExcEditor.py:1592
msgid "Add/Delete Tool"
msgstr "Add/Delete Tool"
-#: appEditors/FlatCAMExcEditor.py:1594
+#: appEditors/AppExcEditor.py:1594
msgid ""
"Add/Delete a tool to the tool list\n"
"for this Excellon object."
@@ -1382,16 +1382,16 @@ msgstr ""
"Add/Delete a tool to the tool list\n"
"for this Excellon object."
-#: appEditors/FlatCAMExcEditor.py:1606 appGUI/ObjectUI.py:1482
+#: appEditors/AppExcEditor.py:1606 appGUI/ObjectUI.py:1482
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:57
msgid "Diameter for the new tool"
msgstr "Diameter for the new tool"
-#: appEditors/FlatCAMExcEditor.py:1616
+#: appEditors/AppExcEditor.py:1616
msgid "Add Tool"
msgstr "Add Tool"
-#: appEditors/FlatCAMExcEditor.py:1618
+#: appEditors/AppExcEditor.py:1618
msgid ""
"Add a new tool to the tool list\n"
"with the diameter specified above."
@@ -1399,11 +1399,11 @@ msgstr ""
"Add a new tool to the tool list\n"
"with the diameter specified above."
-#: appEditors/FlatCAMExcEditor.py:1630
+#: appEditors/AppExcEditor.py:1630
msgid "Delete Tool"
msgstr "Delete Tool"
-#: appEditors/FlatCAMExcEditor.py:1632
+#: appEditors/AppExcEditor.py:1632
msgid ""
"Delete a tool in the tool list\n"
"by selecting a row in the tool table."
@@ -1411,40 +1411,40 @@ msgstr ""
"Delete a tool in the tool list\n"
"by selecting a row in the tool table."
-#: appEditors/FlatCAMExcEditor.py:1650 appGUI/MainGUI.py:4392
+#: appEditors/AppExcEditor.py:1650 appGUI/MainGUI.py:4392
msgid "Resize Drill(s)"
msgstr "Resize Drill(s)"
-#: appEditors/FlatCAMExcEditor.py:1652
+#: appEditors/AppExcEditor.py:1652
msgid "Resize a drill or a selection of drills."
msgstr "Resize a drill or a selection of drills."
-#: appEditors/FlatCAMExcEditor.py:1659
+#: appEditors/AppExcEditor.py:1659
msgid "Resize Dia"
msgstr "Resize Dia"
-#: appEditors/FlatCAMExcEditor.py:1661
+#: appEditors/AppExcEditor.py:1661
msgid "Diameter to resize to."
msgstr "Diameter to resize to."
-#: appEditors/FlatCAMExcEditor.py:1672
+#: appEditors/AppExcEditor.py:1672
msgid "Resize"
msgstr "Resize"
-#: appEditors/FlatCAMExcEditor.py:1674
+#: appEditors/AppExcEditor.py:1674
msgid "Resize drill(s)"
msgstr "Resize drill(s)"
-#: appEditors/FlatCAMExcEditor.py:1699 appGUI/MainGUI.py:1514
+#: appEditors/AppExcEditor.py:1699 appGUI/MainGUI.py:1514
#: appGUI/MainGUI.py:4391
msgid "Add Drill Array"
msgstr "Add Drill Array"
-#: appEditors/FlatCAMExcEditor.py:1701
+#: appEditors/AppExcEditor.py:1701
msgid "Add an array of drills (linear or circular array)"
msgstr "Add an array of drills (linear or circular array)"
-#: appEditors/FlatCAMExcEditor.py:1707
+#: appEditors/AppExcEditor.py:1707
msgid ""
"Select the type of drills array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -1452,13 +1452,13 @@ msgstr ""
"Select the type of drills array to create.\n"
"It can be Linear X(Y) or Circular"
-#: appEditors/FlatCAMExcEditor.py:1710 appEditors/FlatCAMExcEditor.py:1924
-#: appEditors/FlatCAMGrbEditor.py:2782
+#: appEditors/AppExcEditor.py:1710 appEditors/AppExcEditor.py:1924
+#: appEditors/AppGerberEditor.py:2782
msgid "Linear"
msgstr "Linear"
-#: appEditors/FlatCAMExcEditor.py:1711 appEditors/FlatCAMExcEditor.py:1925
-#: appEditors/FlatCAMGrbEditor.py:2783
+#: appEditors/AppExcEditor.py:1711 appEditors/AppExcEditor.py:1925
+#: appEditors/AppGerberEditor.py:2783
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:52
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:149
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:107
@@ -1474,26 +1474,26 @@ msgstr "Linear"
msgid "Circular"
msgstr "Circular"
-#: appEditors/FlatCAMExcEditor.py:1719
+#: appEditors/AppExcEditor.py:1719
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:68
msgid "Nr of drills"
msgstr "Nr of drills"
-#: appEditors/FlatCAMExcEditor.py:1720
+#: appEditors/AppExcEditor.py:1720
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:70
msgid "Specify how many drills to be in the array."
msgstr "Specify how many drills to be in the array."
-#: appEditors/FlatCAMExcEditor.py:1738 appEditors/FlatCAMExcEditor.py:1788
-#: appEditors/FlatCAMExcEditor.py:1860 appEditors/FlatCAMExcEditor.py:1953
-#: appEditors/FlatCAMExcEditor.py:2004 appEditors/FlatCAMGrbEditor.py:1580
-#: appEditors/FlatCAMGrbEditor.py:2811 appEditors/FlatCAMGrbEditor.py:2860
+#: appEditors/AppExcEditor.py:1738 appEditors/AppExcEditor.py:1788
+#: appEditors/AppExcEditor.py:1860 appEditors/AppExcEditor.py:1953
+#: appEditors/AppExcEditor.py:2004 appEditors/AppGerberEditor.py:1580
+#: appEditors/AppGerberEditor.py:2811 appEditors/AppGerberEditor.py:2860
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:178
msgid "Direction"
msgstr "Direction"
-#: appEditors/FlatCAMExcEditor.py:1740 appEditors/FlatCAMExcEditor.py:1955
-#: appEditors/FlatCAMGrbEditor.py:2813
+#: appEditors/AppExcEditor.py:1740 appEditors/AppExcEditor.py:1955
+#: appEditors/AppGerberEditor.py:2813
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:86
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:234
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:123
@@ -1508,8 +1508,8 @@ msgstr ""
"- 'Y' - vertical axis or \n"
"- 'Angle' - a custom angle for the array inclination"
-#: appEditors/FlatCAMExcEditor.py:1747 appEditors/FlatCAMExcEditor.py:1869
-#: appEditors/FlatCAMExcEditor.py:1962 appEditors/FlatCAMGrbEditor.py:2820
+#: appEditors/AppExcEditor.py:1747 appEditors/AppExcEditor.py:1869
+#: appEditors/AppExcEditor.py:1962 appEditors/AppGerberEditor.py:2820
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:240
@@ -1519,8 +1519,8 @@ msgstr ""
msgid "X"
msgstr "X"
-#: appEditors/FlatCAMExcEditor.py:1748 appEditors/FlatCAMExcEditor.py:1870
-#: appEditors/FlatCAMExcEditor.py:1963 appEditors/FlatCAMGrbEditor.py:2821
+#: appEditors/AppExcEditor.py:1748 appEditors/AppExcEditor.py:1870
+#: appEditors/AppExcEditor.py:1963 appEditors/AppGerberEditor.py:2821
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:241
@@ -1530,13 +1530,13 @@ msgstr "X"
msgid "Y"
msgstr "Y"
-#: appEditors/FlatCAMExcEditor.py:1749 appEditors/FlatCAMExcEditor.py:1766
-#: appEditors/FlatCAMExcEditor.py:1800 appEditors/FlatCAMExcEditor.py:1871
-#: appEditors/FlatCAMExcEditor.py:1875 appEditors/FlatCAMExcEditor.py:1964
-#: appEditors/FlatCAMExcEditor.py:1982 appEditors/FlatCAMExcEditor.py:2016
-#: appEditors/appGeoEditor.py:683 appEditors/FlatCAMGrbEditor.py:2822
-#: appEditors/FlatCAMGrbEditor.py:2839 appEditors/FlatCAMGrbEditor.py:2875
-#: appEditors/FlatCAMGrbEditor.py:5376
+#: appEditors/AppExcEditor.py:1749 appEditors/AppExcEditor.py:1766
+#: appEditors/AppExcEditor.py:1800 appEditors/AppExcEditor.py:1871
+#: appEditors/AppExcEditor.py:1875 appEditors/AppExcEditor.py:1964
+#: appEditors/AppExcEditor.py:1982 appEditors/AppExcEditor.py:2016
+#: appEditors/AppGeoEditor.py:683 appEditors/AppGerberEditor.py:2822
+#: appEditors/AppGerberEditor.py:2839 appEditors/AppGerberEditor.py:2875
+#: appEditors/AppGerberEditor.py:5376
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:94
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:113
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:189
@@ -1551,23 +1551,23 @@ msgstr "Y"
msgid "Angle"
msgstr "Angle"
-#: appEditors/FlatCAMExcEditor.py:1753 appEditors/FlatCAMExcEditor.py:1968
-#: appEditors/FlatCAMGrbEditor.py:2826
+#: appEditors/AppExcEditor.py:1753 appEditors/AppExcEditor.py:1968
+#: appEditors/AppGerberEditor.py:2826
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:100
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:248
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:137
msgid "Pitch"
msgstr "Pitch"
-#: appEditors/FlatCAMExcEditor.py:1755 appEditors/FlatCAMExcEditor.py:1970
-#: appEditors/FlatCAMGrbEditor.py:2828
+#: appEditors/AppExcEditor.py:1755 appEditors/AppExcEditor.py:1970
+#: appEditors/AppGerberEditor.py:2828
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:102
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:250
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:139
msgid "Pitch = Distance between elements of the array."
msgstr "Pitch = Distance between elements of the array."
-#: appEditors/FlatCAMExcEditor.py:1768 appEditors/FlatCAMExcEditor.py:1984
+#: appEditors/AppExcEditor.py:1768 appEditors/AppExcEditor.py:1984
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1579,8 +1579,8 @@ msgstr ""
"Min value is: -360 degrees.\n"
"Max value is: 360.00 degrees."
-#: appEditors/FlatCAMExcEditor.py:1789 appEditors/FlatCAMExcEditor.py:2005
-#: appEditors/FlatCAMGrbEditor.py:2862
+#: appEditors/AppExcEditor.py:1789 appEditors/AppExcEditor.py:2005
+#: appEditors/AppGerberEditor.py:2862
msgid ""
"Direction for circular array.Can be CW = clockwise or CCW = counter "
"clockwise."
@@ -1588,8 +1588,8 @@ msgstr ""
"Direction for circular array.Can be CW = clockwise or CCW = counter "
"clockwise."
-#: appEditors/FlatCAMExcEditor.py:1796 appEditors/FlatCAMExcEditor.py:2012
-#: appEditors/FlatCAMGrbEditor.py:2870
+#: appEditors/AppExcEditor.py:1796 appEditors/AppExcEditor.py:2012
+#: appEditors/AppGerberEditor.py:2870
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:129
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:136
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:286
@@ -1598,8 +1598,8 @@ msgstr ""
msgid "CW"
msgstr "CW"
-#: appEditors/FlatCAMExcEditor.py:1797 appEditors/FlatCAMExcEditor.py:2013
-#: appEditors/FlatCAMGrbEditor.py:2871
+#: appEditors/AppExcEditor.py:1797 appEditors/AppExcEditor.py:2013
+#: appEditors/AppGerberEditor.py:2871
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:130
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:137
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:287
@@ -1608,8 +1608,8 @@ msgstr "CW"
msgid "CCW"
msgstr "CCW"
-#: appEditors/FlatCAMExcEditor.py:1801 appEditors/FlatCAMExcEditor.py:2017
-#: appEditors/FlatCAMGrbEditor.py:2877
+#: appEditors/AppExcEditor.py:1801 appEditors/AppExcEditor.py:2017
+#: appEditors/AppGerberEditor.py:2877
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:115
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:145
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:265
@@ -1619,11 +1619,11 @@ msgstr "CCW"
msgid "Angle at which each element in circular array is placed."
msgstr "Angle at which each element in circular array is placed."
-#: appEditors/FlatCAMExcEditor.py:1835
+#: appEditors/AppExcEditor.py:1835
msgid "Slot Parameters"
msgstr "Slot Parameters"
-#: appEditors/FlatCAMExcEditor.py:1837
+#: appEditors/AppExcEditor.py:1837
msgid ""
"Parameters for adding a slot (hole with oval shape)\n"
"either single or as an part of an array."
@@ -1631,19 +1631,19 @@ msgstr ""
"Parameters for adding a slot (hole with oval shape)\n"
"either single or as an part of an array."
-#: appEditors/FlatCAMExcEditor.py:1846
+#: appEditors/AppExcEditor.py:1846
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:162
#: appGUI/preferences/tools/ToolsCornersPrefGroupUI.py:56
#: appTools/ToolCorners.py:136 appTools/ToolProperties.py:559
msgid "Length"
msgstr "Length"
-#: appEditors/FlatCAMExcEditor.py:1848
+#: appEditors/AppExcEditor.py:1848
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:164
msgid "Length = The length of the slot."
msgstr "Length = The length of the slot."
-#: appEditors/FlatCAMExcEditor.py:1862
+#: appEditors/AppExcEditor.py:1862
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:180
msgid ""
"Direction on which the slot is oriented:\n"
@@ -1656,7 +1656,7 @@ msgstr ""
"- 'Y' - vertical axis or \n"
"- 'Angle' - a custom angle for the slot inclination"
-#: appEditors/FlatCAMExcEditor.py:1877
+#: appEditors/AppExcEditor.py:1877
msgid ""
"Angle at which the slot is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1668,15 +1668,15 @@ msgstr ""
"Min value is: -360 degrees.\n"
"Max value is: 360.00 degrees."
-#: appEditors/FlatCAMExcEditor.py:1910
+#: appEditors/AppExcEditor.py:1910
msgid "Slot Array Parameters"
msgstr "Slot Array Parameters"
-#: appEditors/FlatCAMExcEditor.py:1912
+#: appEditors/AppExcEditor.py:1912
msgid "Parameters for the array of slots (linear or circular array)"
msgstr "Parameters for the array of slots (linear or circular array)"
-#: appEditors/FlatCAMExcEditor.py:1921
+#: appEditors/AppExcEditor.py:1921
msgid ""
"Select the type of slot array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -1684,25 +1684,25 @@ msgstr ""
"Select the type of slot array to create.\n"
"It can be Linear X(Y) or Circular"
-#: appEditors/FlatCAMExcEditor.py:1933
+#: appEditors/AppExcEditor.py:1933
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:219
msgid "Nr of slots"
msgstr "Nr of slots"
-#: appEditors/FlatCAMExcEditor.py:1934
+#: appEditors/AppExcEditor.py:1934
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:221
msgid "Specify how many slots to be in the array."
msgstr "Specify how many slots to be in the array."
-#: appEditors/FlatCAMExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
+#: appEditors/AppExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
msgid "Total Drills"
msgstr "Total Drills"
-#: appEditors/FlatCAMExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
+#: appEditors/AppExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
msgid "Total Slots"
msgstr "Total Slots"
-#: appEditors/FlatCAMExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
+#: appEditors/AppExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
#: appObjects/FlatCAMGeometry.py:1099 appObjects/FlatCAMGeometry.py:1841
#: appObjects/FlatCAMGeometry.py:2491 appTools/ToolIsolation.py:1526
#: appTools/ToolNCC.py:1516 appTools/ToolPaint.py:1268
@@ -1711,7 +1711,7 @@ msgstr "Total Slots"
msgid "Wrong value format entered, use a number."
msgstr "Wrong value format entered, use a number."
-#: appEditors/FlatCAMExcEditor.py:2570
+#: appEditors/AppExcEditor.py:2570
msgid ""
"Tool already in the original or actual tool list.\n"
"Save and reedit Excellon if you need to add this tool. "
@@ -1719,72 +1719,72 @@ msgstr ""
"Tool already in the original or actual tool list.\n"
"Save and reedit Excellon if you need to add this tool. "
-#: appEditors/FlatCAMExcEditor.py:2579 appGUI/MainGUI.py:3364
+#: appEditors/AppExcEditor.py:2579 appGUI/MainGUI.py:3364
msgid "Added new tool with dia"
msgstr "Added new tool with dia"
-#: appEditors/FlatCAMExcEditor.py:2612
+#: appEditors/AppExcEditor.py:2612
msgid "Select a tool in Tool Table"
msgstr "Select a tool in Tool Table"
-#: appEditors/FlatCAMExcEditor.py:2642
+#: appEditors/AppExcEditor.py:2642
msgid "Deleted tool with diameter"
msgstr "Deleted tool with diameter"
-#: appEditors/FlatCAMExcEditor.py:2790
+#: appEditors/AppExcEditor.py:2790
msgid "Done. Tool edit completed."
msgstr "Done. Tool edit completed."
-#: appEditors/FlatCAMExcEditor.py:3327
+#: appEditors/AppExcEditor.py:3327
msgid "There are no Tools definitions in the file. Aborting Excellon creation."
msgstr ""
"There are no Tools definitions in the file. Aborting Excellon creation."
-#: appEditors/FlatCAMExcEditor.py:3331
+#: appEditors/AppExcEditor.py:3331
msgid "An internal error has ocurred. See Shell.\n"
msgstr "An internal error has ocurred. See Shell.\n"
-#: appEditors/FlatCAMExcEditor.py:3336
+#: appEditors/AppExcEditor.py:3336
msgid "Creating Excellon."
msgstr "Creating Excellon."
-#: appEditors/FlatCAMExcEditor.py:3350
+#: appEditors/AppExcEditor.py:3350
msgid "Excellon editing finished."
msgstr "Excellon editing finished."
-#: appEditors/FlatCAMExcEditor.py:3367
+#: appEditors/AppExcEditor.py:3367
msgid "Cancelled. There is no Tool/Drill selected"
msgstr "Cancelled. There is no Tool/Drill selected"
-#: appEditors/FlatCAMExcEditor.py:3601 appEditors/FlatCAMExcEditor.py:3609
-#: appEditors/appGeoEditor.py:4286 appEditors/appGeoEditor.py:4300
-#: appEditors/FlatCAMGrbEditor.py:1085 appEditors/FlatCAMGrbEditor.py:1312
-#: appEditors/FlatCAMGrbEditor.py:1497 appEditors/FlatCAMGrbEditor.py:1766
-#: appEditors/FlatCAMGrbEditor.py:4608 appEditors/FlatCAMGrbEditor.py:4625
+#: appEditors/AppExcEditor.py:3601 appEditors/AppExcEditor.py:3609
+#: appEditors/AppGeoEditor.py:4286 appEditors/AppGeoEditor.py:4300
+#: appEditors/AppGerberEditor.py:1085 appEditors/AppGerberEditor.py:1312
+#: appEditors/AppGerberEditor.py:1497 appEditors/AppGerberEditor.py:1766
+#: appEditors/AppGerberEditor.py:4608 appEditors/AppGerberEditor.py:4625
#: appGUI/MainGUI.py:2711 appGUI/MainGUI.py:2723
#: appTools/ToolAlignObjects.py:393 appTools/ToolAlignObjects.py:415
#: app_Main.py:4800 app_Main.py:4954
msgid "Done."
msgstr "Done."
-#: appEditors/FlatCAMExcEditor.py:3984
+#: appEditors/AppExcEditor.py:3984
msgid "Done. Drill(s) deleted."
msgstr "Done. Drill(s) deleted."
-#: appEditors/FlatCAMExcEditor.py:4057 appEditors/FlatCAMExcEditor.py:4067
-#: appEditors/FlatCAMGrbEditor.py:5056
+#: appEditors/AppExcEditor.py:4057 appEditors/AppExcEditor.py:4067
+#: appEditors/AppGerberEditor.py:5056
msgid "Click on the circular array Center position"
msgstr "Click on the circular array Center position"
-#: appEditors/appGeoEditor.py:84
+#: appEditors/AppGeoEditor.py:84
msgid "Buffer distance:"
msgstr "Buffer distance:"
-#: appEditors/appGeoEditor.py:85
+#: appEditors/AppGeoEditor.py:85
msgid "Buffer corner:"
msgstr "Buffer corner:"
-#: appEditors/appGeoEditor.py:87
+#: appEditors/AppGeoEditor.py:87
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded for exterior buffer.\n"
@@ -1798,11 +1798,11 @@ msgstr ""
" - 'Beveled': the corner is a line that directly connects the features "
"meeting in the corner"
-#: appEditors/appGeoEditor.py:93 appEditors/FlatCAMGrbEditor.py:2638
+#: appEditors/AppGeoEditor.py:93 appEditors/AppGerberEditor.py:2638
msgid "Round"
msgstr "Round"
-#: appEditors/appGeoEditor.py:94 appEditors/FlatCAMGrbEditor.py:2639
+#: appEditors/AppGeoEditor.py:94 appEditors/AppGerberEditor.py:2639
#: appGUI/ObjectUI.py:1149 appGUI/ObjectUI.py:2004
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:225
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:68
@@ -1820,48 +1820,48 @@ msgstr "Round"
msgid "Square"
msgstr "Square"
-#: appEditors/appGeoEditor.py:95 appEditors/FlatCAMGrbEditor.py:2640
+#: appEditors/AppGeoEditor.py:95 appEditors/AppGerberEditor.py:2640
msgid "Beveled"
msgstr "Beveled"
-#: appEditors/appGeoEditor.py:102
+#: appEditors/AppGeoEditor.py:102
msgid "Buffer Interior"
msgstr "Buffer Interior"
-#: appEditors/appGeoEditor.py:104
+#: appEditors/AppGeoEditor.py:104
msgid "Buffer Exterior"
msgstr "Buffer Exterior"
-#: appEditors/appGeoEditor.py:110
+#: appEditors/AppGeoEditor.py:110
msgid "Full Buffer"
msgstr "Full Buffer"
-#: appEditors/appGeoEditor.py:131 appEditors/appGeoEditor.py:2959
+#: appEditors/AppGeoEditor.py:131 appEditors/AppGeoEditor.py:2959
#: appGUI/MainGUI.py:4301
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:191
msgid "Buffer Tool"
msgstr "Buffer Tool"
-#: appEditors/appGeoEditor.py:143 appEditors/appGeoEditor.py:160
-#: appEditors/appGeoEditor.py:177 appEditors/appGeoEditor.py:2978
-#: appEditors/appGeoEditor.py:3006 appEditors/appGeoEditor.py:3034
-#: appEditors/FlatCAMGrbEditor.py:5109
+#: appEditors/AppGeoEditor.py:143 appEditors/AppGeoEditor.py:160
+#: appEditors/AppGeoEditor.py:177 appEditors/AppGeoEditor.py:2978
+#: appEditors/AppGeoEditor.py:3006 appEditors/AppGeoEditor.py:3034
+#: appEditors/AppGerberEditor.py:5109
msgid "Buffer distance value is missing or wrong format. Add it and retry."
msgstr "Buffer distance value is missing or wrong format. Add it and retry."
-#: appEditors/appGeoEditor.py:241
+#: appEditors/AppGeoEditor.py:241
msgid "Font"
msgstr "Font"
-#: appEditors/appGeoEditor.py:322 appGUI/MainGUI.py:1452
+#: appEditors/AppGeoEditor.py:322 appGUI/MainGUI.py:1452
msgid "Text"
msgstr "Text"
-#: appEditors/appGeoEditor.py:348
+#: appEditors/AppGeoEditor.py:348
msgid "Text Tool"
msgstr "Text Tool"
-#: appEditors/appGeoEditor.py:404 appGUI/MainGUI.py:502
+#: appEditors/AppGeoEditor.py:404 appGUI/MainGUI.py:502
#: appGUI/MainGUI.py:1199 appGUI/ObjectUI.py:597 appGUI/ObjectUI.py:1564
#: appObjects/FlatCAMExcellon.py:852 appObjects/FlatCAMExcellon.py:1242
#: appObjects/FlatCAMGeometry.py:825 appTools/ToolIsolation.py:313
@@ -1870,15 +1870,15 @@ msgstr "Text Tool"
msgid "Tool"
msgstr "Tool"
-#: appEditors/appGeoEditor.py:438
+#: appEditors/AppGeoEditor.py:438
msgid "Tool dia"
msgstr "Tool dia"
-#: appEditors/appGeoEditor.py:440
+#: appEditors/AppGeoEditor.py:440
msgid "Diameter of the tool to be used in the operation."
msgstr "Diameter of the tool to be used in the operation."
-#: appEditors/appGeoEditor.py:486
+#: appEditors/AppGeoEditor.py:486
msgid ""
"Algorithm to paint the polygons:\n"
"- Standard: Fixed step inwards.\n"
@@ -1890,58 +1890,58 @@ msgstr ""
"- Seed-based: Outwards from seed.\n"
"- Line-based: Parallel lines."
-#: appEditors/appGeoEditor.py:505
+#: appEditors/AppGeoEditor.py:505
msgid "Connect:"
msgstr "Connect:"
-#: appEditors/appGeoEditor.py:515
+#: appEditors/AppGeoEditor.py:515
msgid "Contour:"
msgstr "Contour:"
-#: appEditors/appGeoEditor.py:528 appGUI/MainGUI.py:1456
+#: appEditors/AppGeoEditor.py:528 appGUI/MainGUI.py:1456
msgid "Paint"
msgstr "Paint"
-#: appEditors/appGeoEditor.py:546 appGUI/MainGUI.py:912
+#: appEditors/AppGeoEditor.py:546 appGUI/MainGUI.py:912
#: appGUI/MainGUI.py:1944 appGUI/ObjectUI.py:2069 appTools/ToolPaint.py:42
#: appTools/ToolPaint.py:737
msgid "Paint Tool"
msgstr "Paint Tool"
-#: appEditors/appGeoEditor.py:582 appEditors/appGeoEditor.py:1071
-#: appEditors/appGeoEditor.py:2966 appEditors/appGeoEditor.py:2994
-#: appEditors/appGeoEditor.py:3022 appEditors/appGeoEditor.py:4439
-#: appEditors/FlatCAMGrbEditor.py:5764
+#: appEditors/AppGeoEditor.py:582 appEditors/AppGeoEditor.py:1071
+#: appEditors/AppGeoEditor.py:2966 appEditors/AppGeoEditor.py:2994
+#: appEditors/AppGeoEditor.py:3022 appEditors/AppGeoEditor.py:4439
+#: appEditors/AppGerberEditor.py:5764
msgid "Cancelled. No shape selected."
msgstr "Cancelled. No shape selected."
-#: appEditors/appGeoEditor.py:595 appEditors/appGeoEditor.py:2984
-#: appEditors/appGeoEditor.py:3012 appEditors/appGeoEditor.py:3040
+#: appEditors/AppGeoEditor.py:595 appEditors/AppGeoEditor.py:2984
+#: appEditors/AppGeoEditor.py:3012 appEditors/AppGeoEditor.py:3040
#: appGUI/preferences/geometry/GeometryGenPrefGroupUI.py:69
#: appTools/ToolProperties.py:117 appTools/ToolProperties.py:162
msgid "Tools"
msgstr "Tools"
-#: appEditors/appGeoEditor.py:606 appEditors/appGeoEditor.py:1035
-#: appEditors/FlatCAMGrbEditor.py:5299 appEditors/FlatCAMGrbEditor.py:5728
+#: appEditors/AppGeoEditor.py:606 appEditors/AppGeoEditor.py:1035
+#: appEditors/AppGerberEditor.py:5299 appEditors/AppGerberEditor.py:5728
#: appGUI/MainGUI.py:935 appGUI/MainGUI.py:1967 appTools/ToolTransform.py:494
msgid "Transform Tool"
msgstr "Transform Tool"
-#: appEditors/appGeoEditor.py:607 appEditors/appGeoEditor.py:699
-#: appEditors/FlatCAMGrbEditor.py:5300 appEditors/FlatCAMGrbEditor.py:5392
+#: appEditors/AppGeoEditor.py:607 appEditors/AppGeoEditor.py:699
+#: appEditors/AppGerberEditor.py:5300 appEditors/AppGerberEditor.py:5392
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:88
#: appTools/ToolTransform.py:27 appTools/ToolTransform.py:146
msgid "Rotate"
msgstr "Rotate"
-#: appEditors/appGeoEditor.py:608 appEditors/FlatCAMGrbEditor.py:5301
+#: appEditors/AppGeoEditor.py:608 appEditors/AppGerberEditor.py:5301
#: appTools/ToolTransform.py:28
msgid "Skew/Shear"
msgstr "Skew/Shear"
-#: appEditors/appGeoEditor.py:609 appEditors/FlatCAMGrbEditor.py:2687
-#: appEditors/FlatCAMGrbEditor.py:5302 appGUI/MainGUI.py:1057
+#: appEditors/AppGeoEditor.py:609 appEditors/AppGerberEditor.py:2687
+#: appEditors/AppGerberEditor.py:5302 appGUI/MainGUI.py:1057
#: appGUI/MainGUI.py:1499 appGUI/MainGUI.py:2089 appGUI/MainGUI.py:4513
#: appGUI/ObjectUI.py:125
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:147
@@ -1949,13 +1949,13 @@ msgstr "Skew/Shear"
msgid "Scale"
msgstr "Scale"
-#: appEditors/appGeoEditor.py:610 appEditors/FlatCAMGrbEditor.py:5303
+#: appEditors/AppGeoEditor.py:610 appEditors/AppGerberEditor.py:5303
#: appTools/ToolTransform.py:30
msgid "Mirror (Flip)"
msgstr "Mirror (Flip)"
-#: appEditors/appGeoEditor.py:612 appEditors/FlatCAMGrbEditor.py:2647
-#: appEditors/FlatCAMGrbEditor.py:5305 appGUI/MainGUI.py:1055
+#: appEditors/AppGeoEditor.py:612 appEditors/AppGerberEditor.py:2647
+#: appEditors/AppGerberEditor.py:5305 appGUI/MainGUI.py:1055
#: appGUI/MainGUI.py:1454 appGUI/MainGUI.py:1497 appGUI/MainGUI.py:2087
#: appGUI/MainGUI.py:4511
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:212
@@ -1963,7 +1963,7 @@ msgstr "Mirror (Flip)"
msgid "Buffer"
msgstr "Buffer"
-#: appEditors/appGeoEditor.py:643 appEditors/FlatCAMGrbEditor.py:5336
+#: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5336
#: appGUI/GUIElements.py:2701
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44
@@ -1972,7 +1972,7 @@ msgstr "Buffer"
msgid "Reference"
msgstr "Reference"
-#: appEditors/appGeoEditor.py:645 appEditors/FlatCAMGrbEditor.py:5338
+#: appEditors/AppGeoEditor.py:645 appEditors/AppGerberEditor.py:5338
msgid ""
"The reference point for Rotate, Skew, Scale, Mirror.\n"
"Can be:\n"
@@ -1990,15 +1990,15 @@ msgstr ""
"- Min Selection -> the point (minx, miny) of the bounding box of the "
"selection"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appTools/ToolCalibration.py:770 appTools/ToolCalibration.py:771
#: appTools/ToolTransform.py:70
msgid "Origin"
msgstr "Origin"
-#: appEditors/appGeoEditor.py:653 appEditors/appGeoEditor.py:1044
-#: appEditors/FlatCAMGrbEditor.py:5346 appEditors/FlatCAMGrbEditor.py:5737
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGeoEditor.py:1044
+#: appEditors/AppGerberEditor.py:5346 appEditors/AppGerberEditor.py:5737
#: appGUI/preferences/general/GeneralGUIPrefGroupUI.py:250
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:275
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:311
@@ -2009,7 +2009,7 @@ msgstr "Origin"
msgid "Selection"
msgstr "Selection"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/Tools2sidedPrefGroupUI.py:80
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:60
@@ -2017,12 +2017,12 @@ msgstr "Selection"
msgid "Point"
msgstr "Point"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
msgid "Minimum"
msgstr "Minimum"
-#: appEditors/appGeoEditor.py:659 appEditors/appGeoEditor.py:955
-#: appEditors/FlatCAMGrbEditor.py:5352 appEditors/FlatCAMGrbEditor.py:5648
+#: appEditors/AppGeoEditor.py:659 appEditors/AppGeoEditor.py:955
+#: appEditors/AppGerberEditor.py:5352 appEditors/AppGerberEditor.py:5648
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:131
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:133
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:243
@@ -2032,14 +2032,14 @@ msgstr "Minimum"
msgid "Value"
msgstr "Value"
-#: appEditors/appGeoEditor.py:661 appEditors/FlatCAMGrbEditor.py:5354
+#: appEditors/AppGeoEditor.py:661 appEditors/AppGerberEditor.py:5354
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:62
#: appTools/ToolTransform.py:78
msgid "A point of reference in format X,Y."
msgstr "A point of reference in format X,Y."
-#: appEditors/appGeoEditor.py:668 appEditors/FlatCAMGrbEditor.py:2590
-#: appEditors/FlatCAMGrbEditor.py:5361 appGUI/ObjectUI.py:1494
+#: appEditors/AppGeoEditor.py:668 appEditors/AppGerberEditor.py:2590
+#: appEditors/AppGerberEditor.py:5361 appGUI/ObjectUI.py:1494
#: appTools/ToolDblSided.py:192 appTools/ToolDblSided.py:425
#: appTools/ToolIsolation.py:276 appTools/ToolIsolation.py:631
#: appTools/ToolNCC.py:294 appTools/ToolNCC.py:631 appTools/ToolPaint.py:276
@@ -2049,12 +2049,12 @@ msgstr "A point of reference in format X,Y."
msgid "Add"
msgstr "Add"
-#: appEditors/appGeoEditor.py:670 appEditors/FlatCAMGrbEditor.py:5363
+#: appEditors/AppGeoEditor.py:670 appEditors/AppGerberEditor.py:5363
#: appTools/ToolTransform.py:87
msgid "Add point coordinates from clipboard."
msgstr "Add point coordinates from clipboard."
-#: appEditors/appGeoEditor.py:685 appEditors/FlatCAMGrbEditor.py:5378
+#: appEditors/AppGeoEditor.py:685 appEditors/AppGerberEditor.py:5378
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:98
#: appTools/ToolTransform.py:132
msgid ""
@@ -2068,7 +2068,7 @@ msgstr ""
"Positive numbers for CW motion.\n"
"Negative numbers for CCW motion."
-#: appEditors/appGeoEditor.py:701 appEditors/FlatCAMGrbEditor.py:5394
+#: appEditors/AppGeoEditor.py:701 appEditors/AppGerberEditor.py:5394
#: appTools/ToolTransform.py:148
msgid ""
"Rotate the selected object(s).\n"
@@ -2079,31 +2079,31 @@ msgstr ""
"The point of reference is the middle of\n"
"the bounding box for all selected objects."
-#: appEditors/appGeoEditor.py:721 appEditors/appGeoEditor.py:783
-#: appEditors/FlatCAMGrbEditor.py:5414 appEditors/FlatCAMGrbEditor.py:5476
+#: appEditors/AppGeoEditor.py:721 appEditors/AppGeoEditor.py:783
+#: appEditors/AppGerberEditor.py:5414 appEditors/AppGerberEditor.py:5476
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:112
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:151
#: appTools/ToolTransform.py:168 appTools/ToolTransform.py:230
msgid "Link"
msgstr "Link"
-#: appEditors/appGeoEditor.py:723 appEditors/appGeoEditor.py:785
-#: appEditors/FlatCAMGrbEditor.py:5416 appEditors/FlatCAMGrbEditor.py:5478
+#: appEditors/AppGeoEditor.py:723 appEditors/AppGeoEditor.py:785
+#: appEditors/AppGerberEditor.py:5416 appEditors/AppGerberEditor.py:5478
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:114
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:153
#: appTools/ToolTransform.py:170 appTools/ToolTransform.py:232
msgid "Link the Y entry to X entry and copy its content."
msgstr "Link the Y entry to X entry and copy its content."
-#: appEditors/appGeoEditor.py:728 appEditors/FlatCAMGrbEditor.py:5421
+#: appEditors/AppGeoEditor.py:728 appEditors/AppGerberEditor.py:5421
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:151
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:124
#: appTools/ToolFilm.py:184 appTools/ToolTransform.py:175
msgid "X angle"
msgstr "X angle"
-#: appEditors/appGeoEditor.py:730 appEditors/appGeoEditor.py:751
-#: appEditors/FlatCAMGrbEditor.py:5423 appEditors/FlatCAMGrbEditor.py:5444
+#: appEditors/AppGeoEditor.py:730 appEditors/AppGeoEditor.py:751
+#: appEditors/AppGerberEditor.py:5423 appEditors/AppGerberEditor.py:5444
#: appTools/ToolTransform.py:177 appTools/ToolTransform.py:198
msgid ""
"Angle for Skew action, in degrees.\n"
@@ -2112,13 +2112,13 @@ msgstr ""
"Angle for Skew action, in degrees.\n"
"Float number between -360 and 360."
-#: appEditors/appGeoEditor.py:738 appEditors/FlatCAMGrbEditor.py:5431
+#: appEditors/AppGeoEditor.py:738 appEditors/AppGerberEditor.py:5431
#: appTools/ToolTransform.py:185
msgid "Skew X"
msgstr "Skew X"
-#: appEditors/appGeoEditor.py:740 appEditors/appGeoEditor.py:761
-#: appEditors/FlatCAMGrbEditor.py:5433 appEditors/FlatCAMGrbEditor.py:5454
+#: appEditors/AppGeoEditor.py:740 appEditors/AppGeoEditor.py:761
+#: appEditors/AppGerberEditor.py:5433 appEditors/AppGerberEditor.py:5454
#: appTools/ToolTransform.py:187 appTools/ToolTransform.py:208
msgid ""
"Skew/shear the selected object(s).\n"
@@ -2129,38 +2129,38 @@ msgstr ""
"The point of reference is the middle of\n"
"the bounding box for all selected objects."
-#: appEditors/appGeoEditor.py:749 appEditors/FlatCAMGrbEditor.py:5442
+#: appEditors/AppGeoEditor.py:749 appEditors/AppGerberEditor.py:5442
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:160
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:138
#: appTools/ToolFilm.py:193 appTools/ToolTransform.py:196
msgid "Y angle"
msgstr "Y angle"
-#: appEditors/appGeoEditor.py:759 appEditors/FlatCAMGrbEditor.py:5452
+#: appEditors/AppGeoEditor.py:759 appEditors/AppGerberEditor.py:5452
#: appTools/ToolTransform.py:206
msgid "Skew Y"
msgstr "Skew Y"
-#: appEditors/appGeoEditor.py:790 appEditors/FlatCAMGrbEditor.py:5483
+#: appEditors/AppGeoEditor.py:790 appEditors/AppGerberEditor.py:5483
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:120
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:162
#: appTools/ToolFilm.py:145 appTools/ToolTransform.py:237
msgid "X factor"
msgstr "X factor"
-#: appEditors/appGeoEditor.py:792 appEditors/FlatCAMGrbEditor.py:5485
+#: appEditors/AppGeoEditor.py:792 appEditors/AppGerberEditor.py:5485
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:164
#: appTools/ToolTransform.py:239
msgid "Factor for scaling on X axis."
msgstr "Factor for scaling on X axis."
-#: appEditors/appGeoEditor.py:799 appEditors/FlatCAMGrbEditor.py:5492
+#: appEditors/AppGeoEditor.py:799 appEditors/AppGerberEditor.py:5492
#: appTools/ToolTransform.py:246
msgid "Scale X"
msgstr "Scale X"
-#: appEditors/appGeoEditor.py:801 appEditors/appGeoEditor.py:821
-#: appEditors/FlatCAMGrbEditor.py:5494 appEditors/FlatCAMGrbEditor.py:5514
+#: appEditors/AppGeoEditor.py:801 appEditors/AppGeoEditor.py:821
+#: appEditors/AppGerberEditor.py:5494 appEditors/AppGerberEditor.py:5514
#: appTools/ToolTransform.py:248 appTools/ToolTransform.py:268
msgid ""
"Scale the selected object(s).\n"
@@ -2171,59 +2171,59 @@ msgstr ""
"The point of reference depends on \n"
"the Scale reference checkbox state."
-#: appEditors/appGeoEditor.py:810 appEditors/FlatCAMGrbEditor.py:5503
+#: appEditors/AppGeoEditor.py:810 appEditors/AppGerberEditor.py:5503
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:129
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:175
#: appTools/ToolFilm.py:154 appTools/ToolTransform.py:257
msgid "Y factor"
msgstr "Y factor"
-#: appEditors/appGeoEditor.py:812 appEditors/FlatCAMGrbEditor.py:5505
+#: appEditors/AppGeoEditor.py:812 appEditors/AppGerberEditor.py:5505
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:177
#: appTools/ToolTransform.py:259
msgid "Factor for scaling on Y axis."
msgstr "Factor for scaling on Y axis."
-#: appEditors/appGeoEditor.py:819 appEditors/FlatCAMGrbEditor.py:5512
+#: appEditors/AppGeoEditor.py:819 appEditors/AppGerberEditor.py:5512
#: appTools/ToolTransform.py:266
msgid "Scale Y"
msgstr "Scale Y"
-#: appEditors/appGeoEditor.py:846 appEditors/FlatCAMGrbEditor.py:5539
+#: appEditors/AppGeoEditor.py:846 appEditors/AppGerberEditor.py:5539
#: appTools/ToolTransform.py:293
msgid "Flip on X"
msgstr "Flip on X"
-#: appEditors/appGeoEditor.py:848 appEditors/appGeoEditor.py:853
-#: appEditors/FlatCAMGrbEditor.py:5541 appEditors/FlatCAMGrbEditor.py:5546
+#: appEditors/AppGeoEditor.py:848 appEditors/AppGeoEditor.py:853
+#: appEditors/AppGerberEditor.py:5541 appEditors/AppGerberEditor.py:5546
#: appTools/ToolTransform.py:295 appTools/ToolTransform.py:300
msgid "Flip the selected object(s) over the X axis."
msgstr "Flip the selected object(s) over the X axis."
-#: appEditors/appGeoEditor.py:851 appEditors/FlatCAMGrbEditor.py:5544
+#: appEditors/AppGeoEditor.py:851 appEditors/AppGerberEditor.py:5544
#: appTools/ToolTransform.py:298
msgid "Flip on Y"
msgstr "Flip on Y"
-#: appEditors/appGeoEditor.py:871 appEditors/FlatCAMGrbEditor.py:5564
+#: appEditors/AppGeoEditor.py:871 appEditors/AppGerberEditor.py:5564
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:191
#: appTools/ToolTransform.py:318
msgid "X val"
msgstr "X val"
-#: appEditors/appGeoEditor.py:873 appEditors/FlatCAMGrbEditor.py:5566
+#: appEditors/AppGeoEditor.py:873 appEditors/AppGerberEditor.py:5566
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:193
#: appTools/ToolTransform.py:320
msgid "Distance to offset on X axis. In current units."
msgstr "Distance to offset on X axis. In current units."
-#: appEditors/appGeoEditor.py:880 appEditors/FlatCAMGrbEditor.py:5573
+#: appEditors/AppGeoEditor.py:880 appEditors/AppGerberEditor.py:5573
#: appTools/ToolTransform.py:327
msgid "Offset X"
msgstr "Offset X"
-#: appEditors/appGeoEditor.py:882 appEditors/appGeoEditor.py:902
-#: appEditors/FlatCAMGrbEditor.py:5575 appEditors/FlatCAMGrbEditor.py:5595
+#: appEditors/AppGeoEditor.py:882 appEditors/AppGeoEditor.py:902
+#: appEditors/AppGerberEditor.py:5575 appEditors/AppGerberEditor.py:5595
#: appTools/ToolTransform.py:329 appTools/ToolTransform.py:349
msgid ""
"Offset the selected object(s).\n"
@@ -2234,31 +2234,31 @@ msgstr ""
"The point of reference is the middle of\n"
"the bounding box for all selected objects.\n"
-#: appEditors/appGeoEditor.py:891 appEditors/FlatCAMGrbEditor.py:5584
+#: appEditors/AppGeoEditor.py:891 appEditors/AppGerberEditor.py:5584
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:204
#: appTools/ToolTransform.py:338
msgid "Y val"
msgstr "Y val"
-#: appEditors/appGeoEditor.py:893 appEditors/FlatCAMGrbEditor.py:5586
+#: appEditors/AppGeoEditor.py:893 appEditors/AppGerberEditor.py:5586
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:206
#: appTools/ToolTransform.py:340
msgid "Distance to offset on Y axis. In current units."
msgstr "Distance to offset on Y axis. In current units."
-#: appEditors/appGeoEditor.py:900 appEditors/FlatCAMGrbEditor.py:5593
+#: appEditors/AppGeoEditor.py:900 appEditors/AppGerberEditor.py:5593
#: appTools/ToolTransform.py:347
msgid "Offset Y"
msgstr "Offset Y"
-#: appEditors/appGeoEditor.py:920 appEditors/FlatCAMGrbEditor.py:5613
+#: appEditors/AppGeoEditor.py:920 appEditors/AppGerberEditor.py:5613
#: appGUI/preferences/tools/Tools2QRCodePrefGroupUI.py:142
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:216
#: appTools/ToolQRCode.py:206 appTools/ToolTransform.py:367
msgid "Rounded"
msgstr "Rounded"
-#: appEditors/appGeoEditor.py:922 appEditors/FlatCAMGrbEditor.py:5615
+#: appEditors/AppGeoEditor.py:922 appEditors/AppGerberEditor.py:5615
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:218
#: appTools/ToolTransform.py:369
msgid ""
@@ -2272,14 +2272,14 @@ msgstr ""
"If not checked then the buffer will follow the exact geometry\n"
"of the buffered shape."
-#: appEditors/appGeoEditor.py:930 appEditors/FlatCAMGrbEditor.py:5623
+#: appEditors/AppGeoEditor.py:930 appEditors/AppGerberEditor.py:5623
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:226
#: appTools/ToolDistance.py:505 appTools/ToolDistanceMin.py:286
#: appTools/ToolTransform.py:377
msgid "Distance"
msgstr "Distance"
-#: appEditors/appGeoEditor.py:932 appEditors/FlatCAMGrbEditor.py:5625
+#: appEditors/AppGeoEditor.py:932 appEditors/AppGerberEditor.py:5625
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:228
#: appTools/ToolTransform.py:379
msgid ""
@@ -2293,12 +2293,12 @@ msgstr ""
"Each geometry element of the object will be increased\n"
"or decreased with the 'distance'."
-#: appEditors/appGeoEditor.py:944 appEditors/FlatCAMGrbEditor.py:5637
+#: appEditors/AppGeoEditor.py:944 appEditors/AppGerberEditor.py:5637
#: appTools/ToolTransform.py:391
msgid "Buffer D"
msgstr "Buffer D"
-#: appEditors/appGeoEditor.py:946 appEditors/FlatCAMGrbEditor.py:5639
+#: appEditors/AppGeoEditor.py:946 appEditors/AppGerberEditor.py:5639
#: appTools/ToolTransform.py:393
msgid ""
"Create the buffer effect on each geometry,\n"
@@ -2307,7 +2307,7 @@ msgstr ""
"Create the buffer effect on each geometry,\n"
"element from the selected object, using the distance."
-#: appEditors/appGeoEditor.py:957 appEditors/FlatCAMGrbEditor.py:5650
+#: appEditors/AppGeoEditor.py:957 appEditors/AppGerberEditor.py:5650
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:245
#: appTools/ToolTransform.py:404
msgid ""
@@ -2323,12 +2323,12 @@ msgstr ""
"or decreased to fit the 'Value'. Value is a percentage\n"
"of the initial dimension."
-#: appEditors/appGeoEditor.py:970 appEditors/FlatCAMGrbEditor.py:5663
+#: appEditors/AppGeoEditor.py:970 appEditors/AppGerberEditor.py:5663
#: appTools/ToolTransform.py:417
msgid "Buffer F"
msgstr "Buffer F"
-#: appEditors/appGeoEditor.py:972 appEditors/FlatCAMGrbEditor.py:5665
+#: appEditors/AppGeoEditor.py:972 appEditors/AppGerberEditor.py:5665
#: appTools/ToolTransform.py:419
msgid ""
"Create the buffer effect on each geometry,\n"
@@ -2337,7 +2337,7 @@ msgstr ""
"Create the buffer effect on each geometry,\n"
"element from the selected object, using the factor."
-#: appEditors/appGeoEditor.py:1043 appEditors/FlatCAMGrbEditor.py:5736
+#: appEditors/AppGeoEditor.py:1043 appEditors/AppGerberEditor.py:5736
#: appGUI/ObjectUI.py:1103 appGUI/ObjectUI.py:1958
#: appGUI/preferences/tools/Tools2CalPrefGroupUI.py:48
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
@@ -2348,327 +2348,327 @@ msgstr ""
msgid "Object"
msgstr "Object"
-#: appEditors/appGeoEditor.py:1107 appEditors/appGeoEditor.py:1130
-#: appEditors/appGeoEditor.py:1276 appEditors/appGeoEditor.py:1301
-#: appEditors/appGeoEditor.py:1335 appEditors/appGeoEditor.py:1370
-#: appEditors/appGeoEditor.py:1401 appEditors/FlatCAMGrbEditor.py:5800
-#: appEditors/FlatCAMGrbEditor.py:5823 appEditors/FlatCAMGrbEditor.py:5968
-#: appEditors/FlatCAMGrbEditor.py:6001 appEditors/FlatCAMGrbEditor.py:6044
-#: appEditors/FlatCAMGrbEditor.py:6085 appEditors/FlatCAMGrbEditor.py:6121
+#: appEditors/AppGeoEditor.py:1107 appEditors/AppGeoEditor.py:1130
+#: appEditors/AppGeoEditor.py:1276 appEditors/AppGeoEditor.py:1301
+#: appEditors/AppGeoEditor.py:1335 appEditors/AppGeoEditor.py:1370
+#: appEditors/AppGeoEditor.py:1401 appEditors/AppGerberEditor.py:5800
+#: appEditors/AppGerberEditor.py:5823 appEditors/AppGerberEditor.py:5968
+#: appEditors/AppGerberEditor.py:6001 appEditors/AppGerberEditor.py:6044
+#: appEditors/AppGerberEditor.py:6085 appEditors/AppGerberEditor.py:6121
msgid "No shape selected."
msgstr "No shape selected."
-#: appEditors/appGeoEditor.py:1115 appEditors/FlatCAMGrbEditor.py:5808
+#: appEditors/AppGeoEditor.py:1115 appEditors/AppGerberEditor.py:5808
#: appTools/ToolTransform.py:585
msgid "Incorrect format for Point value. Needs format X,Y"
msgstr "Incorrect format for Point value. Needs format X,Y"
-#: appEditors/appGeoEditor.py:1140 appEditors/FlatCAMGrbEditor.py:5833
+#: appEditors/AppGeoEditor.py:1140 appEditors/AppGerberEditor.py:5833
#: appTools/ToolTransform.py:602
msgid "Rotate transformation can not be done for a value of 0."
msgstr "Rotate transformation can not be done for a value of 0."
-#: appEditors/appGeoEditor.py:1198 appEditors/appGeoEditor.py:1219
-#: appEditors/FlatCAMGrbEditor.py:5891 appEditors/FlatCAMGrbEditor.py:5912
+#: appEditors/AppGeoEditor.py:1198 appEditors/AppGeoEditor.py:1219
+#: appEditors/AppGerberEditor.py:5891 appEditors/AppGerberEditor.py:5912
#: appTools/ToolTransform.py:660 appTools/ToolTransform.py:681
msgid "Scale transformation can not be done for a factor of 0 or 1."
msgstr "Scale transformation can not be done for a factor of 0 or 1."
-#: appEditors/appGeoEditor.py:1232 appEditors/appGeoEditor.py:1241
-#: appEditors/FlatCAMGrbEditor.py:5925 appEditors/FlatCAMGrbEditor.py:5934
+#: appEditors/AppGeoEditor.py:1232 appEditors/AppGeoEditor.py:1241
+#: appEditors/AppGerberEditor.py:5925 appEditors/AppGerberEditor.py:5934
#: appTools/ToolTransform.py:694 appTools/ToolTransform.py:703
msgid "Offset transformation can not be done for a value of 0."
msgstr "Offset transformation can not be done for a value of 0."
-#: appEditors/appGeoEditor.py:1271 appEditors/FlatCAMGrbEditor.py:5971
+#: appEditors/AppGeoEditor.py:1271 appEditors/AppGerberEditor.py:5971
#: appTools/ToolTransform.py:731
msgid "Appying Rotate"
msgstr "Appying Rotate"
-#: appEditors/appGeoEditor.py:1284 appEditors/FlatCAMGrbEditor.py:5983
+#: appEditors/AppGeoEditor.py:1284 appEditors/AppGerberEditor.py:5983
msgid "Done. Rotate completed."
msgstr "Done. Rotate completed."
-#: appEditors/appGeoEditor.py:1286
+#: appEditors/AppGeoEditor.py:1286
msgid "Rotation action was not executed"
msgstr "Rotation action was not executed"
-#: appEditors/appGeoEditor.py:1304 appEditors/FlatCAMGrbEditor.py:6004
+#: appEditors/AppGeoEditor.py:1304 appEditors/AppGerberEditor.py:6004
#: appTools/ToolTransform.py:757
msgid "Applying Flip"
msgstr "Applying Flip"
-#: appEditors/appGeoEditor.py:1312 appEditors/FlatCAMGrbEditor.py:6016
+#: appEditors/AppGeoEditor.py:1312 appEditors/AppGerberEditor.py:6016
#: appTools/ToolTransform.py:774
msgid "Flip on the Y axis done"
msgstr "Flip on the Y axis done"
-#: appEditors/appGeoEditor.py:1315 appEditors/FlatCAMGrbEditor.py:6024
+#: appEditors/AppGeoEditor.py:1315 appEditors/AppGerberEditor.py:6024
#: appTools/ToolTransform.py:783
msgid "Flip on the X axis done"
msgstr "Flip on the X axis done"
-#: appEditors/appGeoEditor.py:1319
+#: appEditors/AppGeoEditor.py:1319
msgid "Flip action was not executed"
msgstr "Flip action was not executed"
-#: appEditors/appGeoEditor.py:1338 appEditors/FlatCAMGrbEditor.py:6047
+#: appEditors/AppGeoEditor.py:1338 appEditors/AppGerberEditor.py:6047
#: appTools/ToolTransform.py:804
msgid "Applying Skew"
msgstr "Applying Skew"
-#: appEditors/appGeoEditor.py:1347 appEditors/FlatCAMGrbEditor.py:6063
+#: appEditors/AppGeoEditor.py:1347 appEditors/AppGerberEditor.py:6063
msgid "Skew on the X axis done"
msgstr "Skew on the X axis done"
-#: appEditors/appGeoEditor.py:1349 appEditors/FlatCAMGrbEditor.py:6065
+#: appEditors/AppGeoEditor.py:1349 appEditors/AppGerberEditor.py:6065
msgid "Skew on the Y axis done"
msgstr "Skew on the Y axis done"
-#: appEditors/appGeoEditor.py:1352
+#: appEditors/AppGeoEditor.py:1352
msgid "Skew action was not executed"
msgstr "Skew action was not executed"
-#: appEditors/appGeoEditor.py:1373 appEditors/FlatCAMGrbEditor.py:6088
+#: appEditors/AppGeoEditor.py:1373 appEditors/AppGerberEditor.py:6088
#: appTools/ToolTransform.py:831
msgid "Applying Scale"
msgstr "Applying Scale"
-#: appEditors/appGeoEditor.py:1382 appEditors/FlatCAMGrbEditor.py:6101
+#: appEditors/AppGeoEditor.py:1382 appEditors/AppGerberEditor.py:6101
msgid "Scale on the X axis done"
msgstr "Scale on the X axis done"
-#: appEditors/appGeoEditor.py:1384 appEditors/FlatCAMGrbEditor.py:6103
+#: appEditors/AppGeoEditor.py:1384 appEditors/AppGerberEditor.py:6103
msgid "Scale on the Y axis done"
msgstr "Scale on the Y axis done"
-#: appEditors/appGeoEditor.py:1386
+#: appEditors/AppGeoEditor.py:1386
msgid "Scale action was not executed"
msgstr "Scale action was not executed"
-#: appEditors/appGeoEditor.py:1404 appEditors/FlatCAMGrbEditor.py:6124
+#: appEditors/AppGeoEditor.py:1404 appEditors/AppGerberEditor.py:6124
#: appTools/ToolTransform.py:859
msgid "Applying Offset"
msgstr "Applying Offset"
-#: appEditors/appGeoEditor.py:1414 appEditors/FlatCAMGrbEditor.py:6145
+#: appEditors/AppGeoEditor.py:1414 appEditors/AppGerberEditor.py:6145
msgid "Offset on the X axis done"
msgstr "Offset on the X axis done"
-#: appEditors/appGeoEditor.py:1416 appEditors/FlatCAMGrbEditor.py:6147
+#: appEditors/AppGeoEditor.py:1416 appEditors/AppGerberEditor.py:6147
msgid "Offset on the Y axis done"
msgstr "Offset on the Y axis done"
-#: appEditors/appGeoEditor.py:1419
+#: appEditors/AppGeoEditor.py:1419
msgid "Offset action was not executed"
msgstr "Offset action was not executed"
-#: appEditors/appGeoEditor.py:1426 appEditors/FlatCAMGrbEditor.py:6157
+#: appEditors/AppGeoEditor.py:1426 appEditors/AppGerberEditor.py:6157
msgid "No shape selected"
msgstr "No shape selected"
-#: appEditors/appGeoEditor.py:1429 appEditors/FlatCAMGrbEditor.py:6160
+#: appEditors/AppGeoEditor.py:1429 appEditors/AppGerberEditor.py:6160
#: appTools/ToolTransform.py:889
msgid "Applying Buffer"
msgstr "Applying Buffer"
-#: appEditors/appGeoEditor.py:1436 appEditors/FlatCAMGrbEditor.py:6182
+#: appEditors/AppGeoEditor.py:1436 appEditors/AppGerberEditor.py:6182
#: appTools/ToolTransform.py:910
msgid "Buffer done"
msgstr "Buffer done"
-#: appEditors/appGeoEditor.py:1440 appEditors/FlatCAMGrbEditor.py:6186
+#: appEditors/AppGeoEditor.py:1440 appEditors/AppGerberEditor.py:6186
#: appTools/ToolTransform.py:879 appTools/ToolTransform.py:915
msgid "Action was not executed, due of"
msgstr "Action was not executed, due of"
-#: appEditors/appGeoEditor.py:1444 appEditors/FlatCAMGrbEditor.py:6190
+#: appEditors/AppGeoEditor.py:1444 appEditors/AppGerberEditor.py:6190
msgid "Rotate ..."
msgstr "Rotate ..."
-#: appEditors/appGeoEditor.py:1445 appEditors/appGeoEditor.py:1494
-#: appEditors/appGeoEditor.py:1509 appEditors/FlatCAMGrbEditor.py:6191
-#: appEditors/FlatCAMGrbEditor.py:6240 appEditors/FlatCAMGrbEditor.py:6255
+#: appEditors/AppGeoEditor.py:1445 appEditors/AppGeoEditor.py:1494
+#: appEditors/AppGeoEditor.py:1509 appEditors/AppGerberEditor.py:6191
+#: appEditors/AppGerberEditor.py:6240 appEditors/AppGerberEditor.py:6255
msgid "Enter an Angle Value (degrees)"
msgstr "Enter an Angle Value (degrees)"
-#: appEditors/appGeoEditor.py:1453 appEditors/FlatCAMGrbEditor.py:6199
+#: appEditors/AppGeoEditor.py:1453 appEditors/AppGerberEditor.py:6199
msgid "Geometry shape rotate done"
msgstr "Geometry shape rotate done"
-#: appEditors/appGeoEditor.py:1456 appEditors/FlatCAMGrbEditor.py:6202
+#: appEditors/AppGeoEditor.py:1456 appEditors/AppGerberEditor.py:6202
msgid "Geometry shape rotate cancelled"
msgstr "Geometry shape rotate cancelled"
-#: appEditors/appGeoEditor.py:1461 appEditors/FlatCAMGrbEditor.py:6207
+#: appEditors/AppGeoEditor.py:1461 appEditors/AppGerberEditor.py:6207
msgid "Offset on X axis ..."
msgstr "Offset on X axis ..."
-#: appEditors/appGeoEditor.py:1462 appEditors/appGeoEditor.py:1479
-#: appEditors/FlatCAMGrbEditor.py:6208 appEditors/FlatCAMGrbEditor.py:6225
+#: appEditors/AppGeoEditor.py:1462 appEditors/AppGeoEditor.py:1479
+#: appEditors/AppGerberEditor.py:6208 appEditors/AppGerberEditor.py:6225
msgid "Enter a distance Value"
msgstr "Enter a distance Value"
-#: appEditors/appGeoEditor.py:1470 appEditors/FlatCAMGrbEditor.py:6216
+#: appEditors/AppGeoEditor.py:1470 appEditors/AppGerberEditor.py:6216
msgid "Geometry shape offset on X axis done"
msgstr "Geometry shape offset on X axis done"
-#: appEditors/appGeoEditor.py:1473 appEditors/FlatCAMGrbEditor.py:6219
+#: appEditors/AppGeoEditor.py:1473 appEditors/AppGerberEditor.py:6219
msgid "Geometry shape offset X cancelled"
msgstr "Geometry shape offset X cancelled"
-#: appEditors/appGeoEditor.py:1478 appEditors/FlatCAMGrbEditor.py:6224
+#: appEditors/AppGeoEditor.py:1478 appEditors/AppGerberEditor.py:6224
msgid "Offset on Y axis ..."
msgstr "Offset on Y axis ..."
-#: appEditors/appGeoEditor.py:1487 appEditors/FlatCAMGrbEditor.py:6233
+#: appEditors/AppGeoEditor.py:1487 appEditors/AppGerberEditor.py:6233
msgid "Geometry shape offset on Y axis done"
msgstr "Geometry shape offset on Y axis done"
-#: appEditors/appGeoEditor.py:1490
+#: appEditors/AppGeoEditor.py:1490
msgid "Geometry shape offset on Y axis canceled"
msgstr "Geometry shape offset on Y axis canceled"
-#: appEditors/appGeoEditor.py:1493 appEditors/FlatCAMGrbEditor.py:6239
+#: appEditors/AppGeoEditor.py:1493 appEditors/AppGerberEditor.py:6239
msgid "Skew on X axis ..."
msgstr "Skew on X axis ..."
-#: appEditors/appGeoEditor.py:1502 appEditors/FlatCAMGrbEditor.py:6248
+#: appEditors/AppGeoEditor.py:1502 appEditors/AppGerberEditor.py:6248
msgid "Geometry shape skew on X axis done"
msgstr "Geometry shape skew on X axis done"
-#: appEditors/appGeoEditor.py:1505
+#: appEditors/AppGeoEditor.py:1505
msgid "Geometry shape skew on X axis canceled"
msgstr "Geometry shape skew on X axis canceled"
-#: appEditors/appGeoEditor.py:1508 appEditors/FlatCAMGrbEditor.py:6254
+#: appEditors/AppGeoEditor.py:1508 appEditors/AppGerberEditor.py:6254
msgid "Skew on Y axis ..."
msgstr "Skew on Y axis ..."
-#: appEditors/appGeoEditor.py:1517 appEditors/FlatCAMGrbEditor.py:6263
+#: appEditors/AppGeoEditor.py:1517 appEditors/AppGerberEditor.py:6263
msgid "Geometry shape skew on Y axis done"
msgstr "Geometry shape skew on Y axis done"
-#: appEditors/appGeoEditor.py:1520
+#: appEditors/AppGeoEditor.py:1520
msgid "Geometry shape skew on Y axis canceled"
msgstr "Geometry shape skew on Y axis canceled"
-#: appEditors/appGeoEditor.py:1950 appEditors/appGeoEditor.py:2021
-#: appEditors/FlatCAMGrbEditor.py:1444 appEditors/FlatCAMGrbEditor.py:1522
+#: appEditors/AppGeoEditor.py:1950 appEditors/AppGeoEditor.py:2021
+#: appEditors/AppGerberEditor.py:1444 appEditors/AppGerberEditor.py:1522
msgid "Click on Center point ..."
msgstr "Click on Center point ..."
-#: appEditors/appGeoEditor.py:1963 appEditors/FlatCAMGrbEditor.py:1454
+#: appEditors/AppGeoEditor.py:1963 appEditors/AppGerberEditor.py:1454
msgid "Click on Perimeter point to complete ..."
msgstr "Click on Perimeter point to complete ..."
-#: appEditors/appGeoEditor.py:1995
+#: appEditors/AppGeoEditor.py:1995
msgid "Done. Adding Circle completed."
msgstr "Done. Adding Circle completed."
-#: appEditors/appGeoEditor.py:2049 appEditors/FlatCAMGrbEditor.py:1555
+#: appEditors/AppGeoEditor.py:2049 appEditors/AppGerberEditor.py:1555
msgid "Click on Start point ..."
msgstr "Click on Start point ..."
-#: appEditors/appGeoEditor.py:2051 appEditors/FlatCAMGrbEditor.py:1557
+#: appEditors/AppGeoEditor.py:2051 appEditors/AppGerberEditor.py:1557
msgid "Click on Point3 ..."
msgstr "Click on Point3 ..."
-#: appEditors/appGeoEditor.py:2053 appEditors/FlatCAMGrbEditor.py:1559
+#: appEditors/AppGeoEditor.py:2053 appEditors/AppGerberEditor.py:1559
msgid "Click on Stop point ..."
msgstr "Click on Stop point ..."
-#: appEditors/appGeoEditor.py:2058 appEditors/FlatCAMGrbEditor.py:1564
+#: appEditors/AppGeoEditor.py:2058 appEditors/AppGerberEditor.py:1564
msgid "Click on Stop point to complete ..."
msgstr "Click on Stop point to complete ..."
-#: appEditors/appGeoEditor.py:2060 appEditors/FlatCAMGrbEditor.py:1566
+#: appEditors/AppGeoEditor.py:2060 appEditors/AppGerberEditor.py:1566
msgid "Click on Point2 to complete ..."
msgstr "Click on Point2 to complete ..."
-#: appEditors/appGeoEditor.py:2062 appEditors/FlatCAMGrbEditor.py:1568
+#: appEditors/AppGeoEditor.py:2062 appEditors/AppGerberEditor.py:1568
msgid "Click on Center point to complete ..."
msgstr "Click on Center point to complete ..."
-#: appEditors/appGeoEditor.py:2074
+#: appEditors/AppGeoEditor.py:2074
#, python-format
msgid "Direction: %s"
msgstr "Direction: %s"
-#: appEditors/appGeoEditor.py:2088 appEditors/FlatCAMGrbEditor.py:1594
+#: appEditors/AppGeoEditor.py:2088 appEditors/AppGerberEditor.py:1594
msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
msgstr "Mode: Start -> Stop -> Center. Click on Start point ..."
-#: appEditors/appGeoEditor.py:2091 appEditors/FlatCAMGrbEditor.py:1597
+#: appEditors/AppGeoEditor.py:2091 appEditors/AppGerberEditor.py:1597
msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
msgstr "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
-#: appEditors/appGeoEditor.py:2094 appEditors/FlatCAMGrbEditor.py:1600
+#: appEditors/AppGeoEditor.py:2094 appEditors/AppGerberEditor.py:1600
msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
msgstr "Mode: Center -> Start -> Stop. Click on Center point ..."
-#: appEditors/appGeoEditor.py:2235
+#: appEditors/AppGeoEditor.py:2235
msgid "Done. Arc completed."
msgstr "Done. Arc completed."
-#: appEditors/appGeoEditor.py:2266 appEditors/appGeoEditor.py:2339
+#: appEditors/AppGeoEditor.py:2266 appEditors/AppGeoEditor.py:2339
msgid "Click on 1st corner ..."
msgstr "Click on 1st corner ..."
-#: appEditors/appGeoEditor.py:2278
+#: appEditors/AppGeoEditor.py:2278
msgid "Click on opposite corner to complete ..."
msgstr "Click on opposite corner to complete ..."
-#: appEditors/appGeoEditor.py:2308
+#: appEditors/AppGeoEditor.py:2308
msgid "Done. Rectangle completed."
msgstr "Done. Rectangle completed."
-#: appEditors/appGeoEditor.py:2383
+#: appEditors/AppGeoEditor.py:2383
msgid "Done. Polygon completed."
msgstr "Done. Polygon completed."
-#: appEditors/appGeoEditor.py:2397 appEditors/appGeoEditor.py:2462
-#: appEditors/FlatCAMGrbEditor.py:1102 appEditors/FlatCAMGrbEditor.py:1322
+#: appEditors/AppGeoEditor.py:2397 appEditors/AppGeoEditor.py:2462
+#: appEditors/AppGerberEditor.py:1102 appEditors/AppGerberEditor.py:1322
msgid "Backtracked one point ..."
msgstr "Backtracked one point ..."
-#: appEditors/appGeoEditor.py:2440
+#: appEditors/AppGeoEditor.py:2440
msgid "Done. Path completed."
msgstr "Done. Path completed."
-#: appEditors/appGeoEditor.py:2599
+#: appEditors/AppGeoEditor.py:2599
msgid "No shape selected. Select a shape to explode"
msgstr "No shape selected. Select a shape to explode"
-#: appEditors/appGeoEditor.py:2632
+#: appEditors/AppGeoEditor.py:2632
msgid "Done. Polygons exploded into lines."
msgstr "Done. Polygons exploded into lines."
-#: appEditors/appGeoEditor.py:2664
+#: appEditors/AppGeoEditor.py:2664
msgid "MOVE: No shape selected. Select a shape to move"
msgstr "MOVE: No shape selected. Select a shape to move"
-#: appEditors/appGeoEditor.py:2667 appEditors/appGeoEditor.py:2687
+#: appEditors/AppGeoEditor.py:2667 appEditors/AppGeoEditor.py:2687
msgid " MOVE: Click on reference point ..."
msgstr " MOVE: Click on reference point ..."
-#: appEditors/appGeoEditor.py:2672
+#: appEditors/AppGeoEditor.py:2672
msgid " Click on destination point ..."
msgstr " Click on destination point ..."
-#: appEditors/appGeoEditor.py:2712
+#: appEditors/AppGeoEditor.py:2712
msgid "Done. Geometry(s) Move completed."
msgstr "Done. Geometry(s) Move completed."
-#: appEditors/appGeoEditor.py:2845
+#: appEditors/AppGeoEditor.py:2845
msgid "Done. Geometry(s) Copy completed."
msgstr "Done. Geometry(s) Copy completed."
-#: appEditors/appGeoEditor.py:2876 appEditors/FlatCAMGrbEditor.py:897
+#: appEditors/AppGeoEditor.py:2876 appEditors/AppGerberEditor.py:897
msgid "Click on 1st point ..."
msgstr "Click on 1st point ..."
-#: appEditors/appGeoEditor.py:2900
+#: appEditors/AppGeoEditor.py:2900
msgid ""
"Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
"Error"
@@ -2676,83 +2676,83 @@ msgstr ""
"Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
"Error"
-#: appEditors/appGeoEditor.py:2908
+#: appEditors/AppGeoEditor.py:2908
msgid "No text to add."
msgstr "No text to add."
-#: appEditors/appGeoEditor.py:2918
+#: appEditors/AppGeoEditor.py:2918
msgid " Done. Adding Text completed."
msgstr " Done. Adding Text completed."
-#: appEditors/appGeoEditor.py:2955
+#: appEditors/AppGeoEditor.py:2955
msgid "Create buffer geometry ..."
msgstr "Create buffer geometry ..."
-#: appEditors/appGeoEditor.py:2990 appEditors/FlatCAMGrbEditor.py:5153
+#: appEditors/AppGeoEditor.py:2990 appEditors/AppGerberEditor.py:5153
msgid "Done. Buffer Tool completed."
msgstr "Done. Buffer Tool completed."
-#: appEditors/appGeoEditor.py:3018
+#: appEditors/AppGeoEditor.py:3018
msgid "Done. Buffer Int Tool completed."
msgstr "Done. Buffer Int Tool completed."
-#: appEditors/appGeoEditor.py:3046
+#: appEditors/AppGeoEditor.py:3046
msgid "Done. Buffer Ext Tool completed."
msgstr "Done. Buffer Ext Tool completed."
-#: appEditors/appGeoEditor.py:3095 appEditors/FlatCAMGrbEditor.py:2160
+#: appEditors/AppGeoEditor.py:3095 appEditors/AppGerberEditor.py:2160
msgid "Select a shape to act as deletion area ..."
msgstr "Select a shape to act as deletion area ..."
-#: appEditors/appGeoEditor.py:3097 appEditors/appGeoEditor.py:3123
-#: appEditors/appGeoEditor.py:3129 appEditors/FlatCAMGrbEditor.py:2162
+#: appEditors/AppGeoEditor.py:3097 appEditors/AppGeoEditor.py:3123
+#: appEditors/AppGeoEditor.py:3129 appEditors/AppGerberEditor.py:2162
msgid "Click to pick-up the erase shape..."
msgstr "Click to pick-up the erase shape..."
-#: appEditors/appGeoEditor.py:3133 appEditors/FlatCAMGrbEditor.py:2221
+#: appEditors/AppGeoEditor.py:3133 appEditors/AppGerberEditor.py:2221
msgid "Click to erase ..."
msgstr "Click to erase ..."
-#: appEditors/appGeoEditor.py:3162 appEditors/FlatCAMGrbEditor.py:2254
+#: appEditors/AppGeoEditor.py:3162 appEditors/AppGerberEditor.py:2254
msgid "Done. Eraser tool action completed."
msgstr "Done. Eraser tool action completed."
-#: appEditors/appGeoEditor.py:3212
+#: appEditors/AppGeoEditor.py:3212
msgid "Create Paint geometry ..."
msgstr "Create Paint geometry ..."
-#: appEditors/appGeoEditor.py:3225 appEditors/FlatCAMGrbEditor.py:2417
+#: appEditors/AppGeoEditor.py:3225 appEditors/AppGerberEditor.py:2417
msgid "Shape transformations ..."
msgstr "Shape transformations ..."
-#: appEditors/appGeoEditor.py:3281
+#: appEditors/AppGeoEditor.py:3281
#: appGUI/preferences/geometry/GeometryEditorPrefGroupUI.py:27
msgid "Geometry Editor"
msgstr "Geometry Editor"
-#: appEditors/appGeoEditor.py:3287 appEditors/FlatCAMGrbEditor.py:2495
-#: appEditors/FlatCAMGrbEditor.py:3951 appGUI/ObjectUI.py:282
+#: appEditors/AppGeoEditor.py:3287 appEditors/AppGerberEditor.py:2495
+#: appEditors/AppGerberEditor.py:3951 appGUI/ObjectUI.py:282
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256 appTools/ToolCutOut.py:95
#: appTools/ToolTransform.py:92
msgid "Type"
msgstr "Type"
-#: appEditors/appGeoEditor.py:3287 appGUI/ObjectUI.py:221
+#: appEditors/AppGeoEditor.py:3287 appGUI/ObjectUI.py:221
#: appGUI/ObjectUI.py:521 appGUI/ObjectUI.py:1330 appGUI/ObjectUI.py:2165
#: appGUI/ObjectUI.py:2469 appGUI/ObjectUI.py:2536
#: appTools/ToolCalibration.py:234 appTools/ToolFiducials.py:70
msgid "Name"
msgstr "Name"
-#: appEditors/appGeoEditor.py:3539
+#: appEditors/AppGeoEditor.py:3539
msgid "Ring"
msgstr "Ring"
-#: appEditors/appGeoEditor.py:3541
+#: appEditors/AppGeoEditor.py:3541
msgid "Line"
msgstr "Line"
-#: appEditors/appGeoEditor.py:3543 appGUI/MainGUI.py:1446
+#: appEditors/AppGeoEditor.py:3543 appGUI/MainGUI.py:1446
#: appGUI/ObjectUI.py:1150 appGUI/ObjectUI.py:2005
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:226
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:299
@@ -2763,45 +2763,45 @@ msgstr "Line"
msgid "Polygon"
msgstr "Polygon"
-#: appEditors/appGeoEditor.py:3545
+#: appEditors/AppGeoEditor.py:3545
msgid "Multi-Line"
msgstr "Multi-Line"
-#: appEditors/appGeoEditor.py:3547
+#: appEditors/AppGeoEditor.py:3547
msgid "Multi-Polygon"
msgstr "Multi-Polygon"
-#: appEditors/appGeoEditor.py:3554
+#: appEditors/AppGeoEditor.py:3554
msgid "Geo Elem"
msgstr "Geo Elem"
-#: appEditors/appGeoEditor.py:4007
+#: appEditors/AppGeoEditor.py:4007
msgid "Editing MultiGeo Geometry, tool"
msgstr "Editing MultiGeo Geometry, tool"
-#: appEditors/appGeoEditor.py:4009
+#: appEditors/AppGeoEditor.py:4009
msgid "with diameter"
msgstr "with diameter"
-#: appEditors/appGeoEditor.py:4081
+#: appEditors/AppGeoEditor.py:4081
msgid "Grid Snap enabled."
msgstr "Grid Snap enabled."
-#: appEditors/appGeoEditor.py:4085
+#: appEditors/AppGeoEditor.py:4085
msgid "Grid Snap disabled."
msgstr "Grid Snap disabled."
-#: appEditors/appGeoEditor.py:4446 appGUI/MainGUI.py:3046
+#: appEditors/AppGeoEditor.py:4446 appGUI/MainGUI.py:3046
#: appGUI/MainGUI.py:3092 appGUI/MainGUI.py:3110 appGUI/MainGUI.py:3254
#: appGUI/MainGUI.py:3293 appGUI/MainGUI.py:3305 appGUI/MainGUI.py:3322
msgid "Click on target point."
msgstr "Click on target point."
-#: appEditors/appGeoEditor.py:4762 appEditors/appGeoEditor.py:4797
+#: appEditors/AppGeoEditor.py:4762 appEditors/AppGeoEditor.py:4797
msgid "A selection of at least 2 geo items is required to do Intersection."
msgstr "A selection of at least 2 geo items is required to do Intersection."
-#: appEditors/appGeoEditor.py:4883 appEditors/appGeoEditor.py:4987
+#: appEditors/AppGeoEditor.py:4883 appEditors/AppGeoEditor.py:4987
msgid ""
"Negative buffer value is not accepted. Use Buffer interior to generate an "
"'inside' shape"
@@ -2809,54 +2809,54 @@ msgstr ""
"Negative buffer value is not accepted. Use Buffer interior to generate an "
"'inside' shape"
-#: appEditors/appGeoEditor.py:4893 appEditors/appGeoEditor.py:4946
-#: appEditors/appGeoEditor.py:4996
+#: appEditors/AppGeoEditor.py:4893 appEditors/AppGeoEditor.py:4946
+#: appEditors/AppGeoEditor.py:4996
msgid "Nothing selected for buffering."
msgstr "Nothing selected for buffering."
-#: appEditors/appGeoEditor.py:4898 appEditors/appGeoEditor.py:4950
-#: appEditors/appGeoEditor.py:5001
+#: appEditors/AppGeoEditor.py:4898 appEditors/AppGeoEditor.py:4950
+#: appEditors/AppGeoEditor.py:5001
msgid "Invalid distance for buffering."
msgstr "Invalid distance for buffering."
-#: appEditors/appGeoEditor.py:4922 appEditors/appGeoEditor.py:5021
+#: appEditors/AppGeoEditor.py:4922 appEditors/AppGeoEditor.py:5021
msgid "Failed, the result is empty. Choose a different buffer value."
msgstr "Failed, the result is empty. Choose a different buffer value."
-#: appEditors/appGeoEditor.py:4933
+#: appEditors/AppGeoEditor.py:4933
msgid "Full buffer geometry created."
msgstr "Full buffer geometry created."
-#: appEditors/appGeoEditor.py:4939
+#: appEditors/AppGeoEditor.py:4939
msgid "Negative buffer value is not accepted."
msgstr "Negative buffer value is not accepted."
-#: appEditors/appGeoEditor.py:4970
+#: appEditors/AppGeoEditor.py:4970
msgid "Failed, the result is empty. Choose a smaller buffer value."
msgstr "Failed, the result is empty. Choose a smaller buffer value."
-#: appEditors/appGeoEditor.py:4980
+#: appEditors/AppGeoEditor.py:4980
msgid "Interior buffer geometry created."
msgstr "Interior buffer geometry created."
-#: appEditors/appGeoEditor.py:5031
+#: appEditors/AppGeoEditor.py:5031
msgid "Exterior buffer geometry created."
msgstr "Exterior buffer geometry created."
-#: appEditors/appGeoEditor.py:5037
+#: appEditors/AppGeoEditor.py:5037
#, python-format
msgid "Could not do Paint. Overlap value has to be less than 100%%."
msgstr "Could not do Paint. Overlap value has to be less than 100%%."
-#: appEditors/appGeoEditor.py:5044
+#: appEditors/AppGeoEditor.py:5044
msgid "Nothing selected for painting."
msgstr "Nothing selected for painting."
-#: appEditors/appGeoEditor.py:5050
+#: appEditors/AppGeoEditor.py:5050
msgid "Invalid value for"
msgstr "Invalid value for"
-#: appEditors/appGeoEditor.py:5109
+#: appEditors/AppGeoEditor.py:5109
msgid ""
"Could not do Paint. Try a different combination of parameters. Or a "
"different method of Paint"
@@ -2864,152 +2864,152 @@ msgstr ""
"Could not do Paint. Try a different combination of parameters. Or a "
"different method of Paint"
-#: appEditors/appGeoEditor.py:5120
+#: appEditors/AppGeoEditor.py:5120
msgid "Paint done."
msgstr "Paint done."
-#: appEditors/FlatCAMGrbEditor.py:211
+#: appEditors/AppGerberEditor.py:211
msgid "To add an Pad first select a aperture in Aperture Table"
msgstr "To add an Pad first select a aperture in Aperture Table"
-#: appEditors/FlatCAMGrbEditor.py:218 appEditors/FlatCAMGrbEditor.py:418
+#: appEditors/AppGerberEditor.py:218 appEditors/AppGerberEditor.py:418
msgid "Aperture size is zero. It needs to be greater than zero."
msgstr "Aperture size is zero. It needs to be greater than zero."
-#: appEditors/FlatCAMGrbEditor.py:371 appEditors/FlatCAMGrbEditor.py:684
+#: appEditors/AppGerberEditor.py:371 appEditors/AppGerberEditor.py:684
msgid ""
"Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
msgstr ""
"Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
-#: appEditors/FlatCAMGrbEditor.py:383
+#: appEditors/AppGerberEditor.py:383
msgid "Done. Adding Pad completed."
msgstr "Done. Adding Pad completed."
-#: appEditors/FlatCAMGrbEditor.py:410
+#: appEditors/AppGerberEditor.py:410
msgid "To add an Pad Array first select a aperture in Aperture Table"
msgstr "To add an Pad Array first select a aperture in Aperture Table"
-#: appEditors/FlatCAMGrbEditor.py:490
+#: appEditors/AppGerberEditor.py:490
msgid "Click on the Pad Circular Array Start position"
msgstr "Click on the Pad Circular Array Start position"
-#: appEditors/FlatCAMGrbEditor.py:710
+#: appEditors/AppGerberEditor.py:710
msgid "Too many Pads for the selected spacing angle."
msgstr "Too many Pads for the selected spacing angle."
-#: appEditors/FlatCAMGrbEditor.py:733
+#: appEditors/AppGerberEditor.py:733
msgid "Done. Pad Array added."
msgstr "Done. Pad Array added."
-#: appEditors/FlatCAMGrbEditor.py:758
+#: appEditors/AppGerberEditor.py:758
msgid "Select shape(s) and then click ..."
msgstr "Select shape(s) and then click ..."
-#: appEditors/FlatCAMGrbEditor.py:770
+#: appEditors/AppGerberEditor.py:770
msgid "Failed. Nothing selected."
msgstr "Failed. Nothing selected."
-#: appEditors/FlatCAMGrbEditor.py:786
+#: appEditors/AppGerberEditor.py:786
msgid ""
"Failed. Poligonize works only on geometries belonging to the same aperture."
msgstr ""
"Failed. Poligonize works only on geometries belonging to the same aperture."
-#: appEditors/FlatCAMGrbEditor.py:840
+#: appEditors/AppGerberEditor.py:840
msgid "Done. Poligonize completed."
msgstr "Done. Poligonize completed."
-#: appEditors/FlatCAMGrbEditor.py:895 appEditors/FlatCAMGrbEditor.py:1119
-#: appEditors/FlatCAMGrbEditor.py:1143
+#: appEditors/AppGerberEditor.py:895 appEditors/AppGerberEditor.py:1119
+#: appEditors/AppGerberEditor.py:1143
msgid "Corner Mode 1: 45 degrees ..."
msgstr "Corner Mode 1: 45 degrees ..."
-#: appEditors/FlatCAMGrbEditor.py:907 appEditors/FlatCAMGrbEditor.py:1219
+#: appEditors/AppGerberEditor.py:907 appEditors/AppGerberEditor.py:1219
msgid "Click on next Point or click Right mouse button to complete ..."
msgstr "Click on next Point or click Right mouse button to complete ..."
-#: appEditors/FlatCAMGrbEditor.py:1107 appEditors/FlatCAMGrbEditor.py:1140
+#: appEditors/AppGerberEditor.py:1107 appEditors/AppGerberEditor.py:1140
msgid "Corner Mode 2: Reverse 45 degrees ..."
msgstr "Corner Mode 2: Reverse 45 degrees ..."
-#: appEditors/FlatCAMGrbEditor.py:1110 appEditors/FlatCAMGrbEditor.py:1137
+#: appEditors/AppGerberEditor.py:1110 appEditors/AppGerberEditor.py:1137
msgid "Corner Mode 3: 90 degrees ..."
msgstr "Corner Mode 3: 90 degrees ..."
-#: appEditors/FlatCAMGrbEditor.py:1113 appEditors/FlatCAMGrbEditor.py:1134
+#: appEditors/AppGerberEditor.py:1113 appEditors/AppGerberEditor.py:1134
msgid "Corner Mode 4: Reverse 90 degrees ..."
msgstr "Corner Mode 4: Reverse 90 degrees ..."
-#: appEditors/FlatCAMGrbEditor.py:1116 appEditors/FlatCAMGrbEditor.py:1131
+#: appEditors/AppGerberEditor.py:1116 appEditors/AppGerberEditor.py:1131
msgid "Corner Mode 5: Free angle ..."
msgstr "Corner Mode 5: Free angle ..."
-#: appEditors/FlatCAMGrbEditor.py:1193 appEditors/FlatCAMGrbEditor.py:1358
-#: appEditors/FlatCAMGrbEditor.py:1397
+#: appEditors/AppGerberEditor.py:1193 appEditors/AppGerberEditor.py:1358
+#: appEditors/AppGerberEditor.py:1397
msgid "Track Mode 1: 45 degrees ..."
msgstr "Track Mode 1: 45 degrees ..."
-#: appEditors/FlatCAMGrbEditor.py:1338 appEditors/FlatCAMGrbEditor.py:1392
+#: appEditors/AppGerberEditor.py:1338 appEditors/AppGerberEditor.py:1392
msgid "Track Mode 2: Reverse 45 degrees ..."
msgstr "Track Mode 2: Reverse 45 degrees ..."
-#: appEditors/FlatCAMGrbEditor.py:1343 appEditors/FlatCAMGrbEditor.py:1387
+#: appEditors/AppGerberEditor.py:1343 appEditors/AppGerberEditor.py:1387
msgid "Track Mode 3: 90 degrees ..."
msgstr "Track Mode 3: 90 degrees ..."
-#: appEditors/FlatCAMGrbEditor.py:1348 appEditors/FlatCAMGrbEditor.py:1382
+#: appEditors/AppGerberEditor.py:1348 appEditors/AppGerberEditor.py:1382
msgid "Track Mode 4: Reverse 90 degrees ..."
msgstr "Track Mode 4: Reverse 90 degrees ..."
-#: appEditors/FlatCAMGrbEditor.py:1353 appEditors/FlatCAMGrbEditor.py:1377
+#: appEditors/AppGerberEditor.py:1353 appEditors/AppGerberEditor.py:1377
msgid "Track Mode 5: Free angle ..."
msgstr "Track Mode 5: Free angle ..."
-#: appEditors/FlatCAMGrbEditor.py:1787
+#: appEditors/AppGerberEditor.py:1787
msgid "Scale the selected Gerber apertures ..."
msgstr "Scale the selected Gerber apertures ..."
-#: appEditors/FlatCAMGrbEditor.py:1829
+#: appEditors/AppGerberEditor.py:1829
msgid "Buffer the selected apertures ..."
msgstr "Buffer the selected apertures ..."
-#: appEditors/FlatCAMGrbEditor.py:1871
+#: appEditors/AppGerberEditor.py:1871
msgid "Mark polygon areas in the edited Gerber ..."
msgstr "Mark polygon areas in the edited Gerber ..."
-#: appEditors/FlatCAMGrbEditor.py:1937
+#: appEditors/AppGerberEditor.py:1937
msgid "Nothing selected to move"
msgstr "Nothing selected to move"
-#: appEditors/FlatCAMGrbEditor.py:2062
+#: appEditors/AppGerberEditor.py:2062
msgid "Done. Apertures Move completed."
msgstr "Done. Apertures Move completed."
-#: appEditors/FlatCAMGrbEditor.py:2144
+#: appEditors/AppGerberEditor.py:2144
msgid "Done. Apertures copied."
msgstr "Done. Apertures copied."
-#: appEditors/FlatCAMGrbEditor.py:2462 appGUI/MainGUI.py:1477
+#: appEditors/AppGerberEditor.py:2462 appGUI/MainGUI.py:1477
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:27
msgid "Gerber Editor"
msgstr "Gerber Editor"
-#: appEditors/FlatCAMGrbEditor.py:2482 appGUI/ObjectUI.py:247
+#: appEditors/AppGerberEditor.py:2482 appGUI/ObjectUI.py:247
#: appTools/ToolProperties.py:159
msgid "Apertures"
msgstr "Apertures"
-#: appEditors/FlatCAMGrbEditor.py:2484 appGUI/ObjectUI.py:249
+#: appEditors/AppGerberEditor.py:2484 appGUI/ObjectUI.py:249
msgid "Apertures Table for the Gerber Object."
msgstr "Apertures Table for the Gerber Object."
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Code"
msgstr "Code"
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
#: appGUI/preferences/general/GeneralAPPSetGroupUI.py:103
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:167
@@ -3020,29 +3020,29 @@ msgstr "Code"
msgid "Size"
msgstr "Size"
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Dim"
msgstr "Dim"
-#: appEditors/FlatCAMGrbEditor.py:2500 appGUI/ObjectUI.py:286
+#: appEditors/AppGerberEditor.py:2500 appGUI/ObjectUI.py:286
msgid "Index"
msgstr "Index"
-#: appEditors/FlatCAMGrbEditor.py:2502 appEditors/FlatCAMGrbEditor.py:2531
+#: appEditors/AppGerberEditor.py:2502 appEditors/AppGerberEditor.py:2531
#: appGUI/ObjectUI.py:288
msgid "Aperture Code"
msgstr "Aperture Code"
-#: appEditors/FlatCAMGrbEditor.py:2504 appGUI/ObjectUI.py:290
+#: appEditors/AppGerberEditor.py:2504 appGUI/ObjectUI.py:290
msgid "Type of aperture: circular, rectangle, macros etc"
msgstr "Type of aperture: circular, rectangle, macros etc"
-#: appEditors/FlatCAMGrbEditor.py:2506 appGUI/ObjectUI.py:292
+#: appEditors/AppGerberEditor.py:2506 appGUI/ObjectUI.py:292
msgid "Aperture Size:"
msgstr "Aperture Size:"
-#: appEditors/FlatCAMGrbEditor.py:2508 appGUI/ObjectUI.py:294
+#: appEditors/AppGerberEditor.py:2508 appGUI/ObjectUI.py:294
msgid ""
"Aperture Dimensions:\n"
" - (width, height) for R, O type.\n"
@@ -3052,16 +3052,16 @@ msgstr ""
" - (width, height) for R, O type.\n"
" - (dia, nVertices) for P type"
-#: appEditors/FlatCAMGrbEditor.py:2532
+#: appEditors/AppGerberEditor.py:2532
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:58
msgid "Code for the new aperture"
msgstr "Code for the new aperture"
-#: appEditors/FlatCAMGrbEditor.py:2541
+#: appEditors/AppGerberEditor.py:2541
msgid "Aperture Size"
msgstr "Aperture Size"
-#: appEditors/FlatCAMGrbEditor.py:2543
+#: appEditors/AppGerberEditor.py:2543
msgid ""
"Size for the new aperture.\n"
"If aperture type is 'R' or 'O' then\n"
@@ -3075,11 +3075,11 @@ msgstr ""
"calculated as:\n"
"sqrt(width**2 + height**2)"
-#: appEditors/FlatCAMGrbEditor.py:2557
+#: appEditors/AppGerberEditor.py:2557
msgid "Aperture Type"
msgstr "Aperture Type"
-#: appEditors/FlatCAMGrbEditor.py:2559
+#: appEditors/AppGerberEditor.py:2559
msgid ""
"Select the type of new aperture. Can be:\n"
"C = circular\n"
@@ -3091,11 +3091,11 @@ msgstr ""
"R = rectangular\n"
"O = oblong"
-#: appEditors/FlatCAMGrbEditor.py:2570
+#: appEditors/AppGerberEditor.py:2570
msgid "Aperture Dim"
msgstr "Aperture Dim"
-#: appEditors/FlatCAMGrbEditor.py:2572
+#: appEditors/AppGerberEditor.py:2572
msgid ""
"Dimensions for the new aperture.\n"
"Active only for rectangular apertures (type R).\n"
@@ -3105,19 +3105,19 @@ msgstr ""
"Active only for rectangular apertures (type R).\n"
"The format is (width, height)"
-#: appEditors/FlatCAMGrbEditor.py:2581
+#: appEditors/AppGerberEditor.py:2581
msgid "Add/Delete Aperture"
msgstr "Add/Delete Aperture"
-#: appEditors/FlatCAMGrbEditor.py:2583
+#: appEditors/AppGerberEditor.py:2583
msgid "Add/Delete an aperture in the aperture table"
msgstr "Add/Delete an aperture in the aperture table"
-#: appEditors/FlatCAMGrbEditor.py:2592
+#: appEditors/AppGerberEditor.py:2592
msgid "Add a new aperture to the aperture list."
msgstr "Add a new aperture to the aperture list."
-#: appEditors/FlatCAMGrbEditor.py:2595 appEditors/FlatCAMGrbEditor.py:2743
+#: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743
#: appGUI/MainGUI.py:748 appGUI/MainGUI.py:1068 appGUI/MainGUI.py:1527
#: appGUI/MainGUI.py:2099 appGUI/MainGUI.py:4514 appGUI/ObjectUI.py:1525
#: appObjects/FlatCAMGeometry.py:563 appTools/ToolIsolation.py:298
@@ -3128,28 +3128,28 @@ msgstr "Add a new aperture to the aperture list."
msgid "Delete"
msgstr "Delete"
-#: appEditors/FlatCAMGrbEditor.py:2597
+#: appEditors/AppGerberEditor.py:2597
msgid "Delete a aperture in the aperture list"
msgstr "Delete a aperture in the aperture list"
-#: appEditors/FlatCAMGrbEditor.py:2614
+#: appEditors/AppGerberEditor.py:2614
msgid "Buffer Aperture"
msgstr "Buffer Aperture"
-#: appEditors/FlatCAMGrbEditor.py:2616
+#: appEditors/AppGerberEditor.py:2616
msgid "Buffer a aperture in the aperture list"
msgstr "Buffer a aperture in the aperture list"
-#: appEditors/FlatCAMGrbEditor.py:2629
+#: appEditors/AppGerberEditor.py:2629
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:195
msgid "Buffer distance"
msgstr "Buffer distance"
-#: appEditors/FlatCAMGrbEditor.py:2630
+#: appEditors/AppGerberEditor.py:2630
msgid "Buffer corner"
msgstr "Buffer corner"
-#: appEditors/FlatCAMGrbEditor.py:2632
+#: appEditors/AppGerberEditor.py:2632
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded.\n"
@@ -3163,20 +3163,20 @@ msgstr ""
" - 'Beveled': the corner is a line that directly connects the features "
"meeting in the corner"
-#: appEditors/FlatCAMGrbEditor.py:2662
+#: appEditors/AppGerberEditor.py:2662
msgid "Scale Aperture"
msgstr "Scale Aperture"
-#: appEditors/FlatCAMGrbEditor.py:2664
+#: appEditors/AppGerberEditor.py:2664
msgid "Scale a aperture in the aperture list"
msgstr "Scale a aperture in the aperture list"
-#: appEditors/FlatCAMGrbEditor.py:2672
+#: appEditors/AppGerberEditor.py:2672
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:210
msgid "Scale factor"
msgstr "Scale factor"
-#: appEditors/FlatCAMGrbEditor.py:2674
+#: appEditors/AppGerberEditor.py:2674
msgid ""
"The factor by which to scale the selected aperture.\n"
"Values can be between 0.0000 and 999.9999"
@@ -3184,19 +3184,19 @@ msgstr ""
"The factor by which to scale the selected aperture.\n"
"Values can be between 0.0000 and 999.9999"
-#: appEditors/FlatCAMGrbEditor.py:2702
+#: appEditors/AppGerberEditor.py:2702
msgid "Mark polygons"
msgstr "Mark polygons"
-#: appEditors/FlatCAMGrbEditor.py:2704
+#: appEditors/AppGerberEditor.py:2704
msgid "Mark the polygon areas."
msgstr "Mark the polygon areas."
-#: appEditors/FlatCAMGrbEditor.py:2712
+#: appEditors/AppGerberEditor.py:2712
msgid "Area UPPER threshold"
msgstr "Area UPPER threshold"
-#: appEditors/FlatCAMGrbEditor.py:2714
+#: appEditors/AppGerberEditor.py:2714
msgid ""
"The threshold value, all areas less than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3204,11 +3204,11 @@ msgstr ""
"The threshold value, all areas less than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
-#: appEditors/FlatCAMGrbEditor.py:2721
+#: appEditors/AppGerberEditor.py:2721
msgid "Area LOWER threshold"
msgstr "Area LOWER threshold"
-#: appEditors/FlatCAMGrbEditor.py:2723
+#: appEditors/AppGerberEditor.py:2723
msgid ""
"The threshold value, all areas more than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3216,32 +3216,32 @@ msgstr ""
"The threshold value, all areas more than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
-#: appEditors/FlatCAMGrbEditor.py:2737
+#: appEditors/AppGerberEditor.py:2737
msgid "Mark"
msgstr "Mark"
-#: appEditors/FlatCAMGrbEditor.py:2739
+#: appEditors/AppGerberEditor.py:2739
msgid "Mark the polygons that fit within limits."
msgstr "Mark the polygons that fit within limits."
-#: appEditors/FlatCAMGrbEditor.py:2745
+#: appEditors/AppGerberEditor.py:2745
msgid "Delete all the marked polygons."
msgstr "Delete all the marked polygons."
-#: appEditors/FlatCAMGrbEditor.py:2751
+#: appEditors/AppGerberEditor.py:2751
msgid "Clear all the markings."
msgstr "Clear all the markings."
-#: appEditors/FlatCAMGrbEditor.py:2771 appGUI/MainGUI.py:1040
+#: appEditors/AppGerberEditor.py:2771 appGUI/MainGUI.py:1040
#: appGUI/MainGUI.py:2072 appGUI/MainGUI.py:4511
msgid "Add Pad Array"
msgstr "Add Pad Array"
-#: appEditors/FlatCAMGrbEditor.py:2773
+#: appEditors/AppGerberEditor.py:2773
msgid "Add an array of pads (linear or circular array)"
msgstr "Add an array of pads (linear or circular array)"
-#: appEditors/FlatCAMGrbEditor.py:2779
+#: appEditors/AppGerberEditor.py:2779
msgid ""
"Select the type of pads array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -3249,17 +3249,17 @@ msgstr ""
"Select the type of pads array to create.\n"
"It can be Linear X(Y) or Circular"
-#: appEditors/FlatCAMGrbEditor.py:2790
+#: appEditors/AppGerberEditor.py:2790
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:95
msgid "Nr of pads"
msgstr "Nr of pads"
-#: appEditors/FlatCAMGrbEditor.py:2792
+#: appEditors/AppGerberEditor.py:2792
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:97
msgid "Specify how many pads to be in the array."
msgstr "Specify how many pads to be in the array."
-#: appEditors/FlatCAMGrbEditor.py:2841
+#: appEditors/AppGerberEditor.py:2841
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -3271,11 +3271,11 @@ msgstr ""
"Min value is: -359.99 degrees.\n"
"Max value is: 360.00 degrees."
-#: appEditors/FlatCAMGrbEditor.py:3335 appEditors/FlatCAMGrbEditor.py:3339
+#: appEditors/AppGerberEditor.py:3335 appEditors/AppGerberEditor.py:3339
msgid "Aperture code value is missing or wrong format. Add it and retry."
msgstr "Aperture code value is missing or wrong format. Add it and retry."
-#: appEditors/FlatCAMGrbEditor.py:3375
+#: appEditors/AppGerberEditor.py:3375
msgid ""
"Aperture dimensions value is missing or wrong format. Add it in format "
"(width, height) and retry."
@@ -3283,148 +3283,148 @@ msgstr ""
"Aperture dimensions value is missing or wrong format. Add it in format "
"(width, height) and retry."
-#: appEditors/FlatCAMGrbEditor.py:3388
+#: appEditors/AppGerberEditor.py:3388
msgid "Aperture size value is missing or wrong format. Add it and retry."
msgstr "Aperture size value is missing or wrong format. Add it and retry."
-#: appEditors/FlatCAMGrbEditor.py:3399
+#: appEditors/AppGerberEditor.py:3399
msgid "Aperture already in the aperture table."
msgstr "Aperture already in the aperture table."
-#: appEditors/FlatCAMGrbEditor.py:3406
+#: appEditors/AppGerberEditor.py:3406
msgid "Added new aperture with code"
msgstr "Added new aperture with code"
-#: appEditors/FlatCAMGrbEditor.py:3438
+#: appEditors/AppGerberEditor.py:3438
msgid " Select an aperture in Aperture Table"
msgstr " Select an aperture in Aperture Table"
-#: appEditors/FlatCAMGrbEditor.py:3446
+#: appEditors/AppGerberEditor.py:3446
msgid "Select an aperture in Aperture Table -->"
msgstr "Select an aperture in Aperture Table -->"
-#: appEditors/FlatCAMGrbEditor.py:3460
+#: appEditors/AppGerberEditor.py:3460
msgid "Deleted aperture with code"
msgstr "Deleted aperture with code"
-#: appEditors/FlatCAMGrbEditor.py:3528
+#: appEditors/AppGerberEditor.py:3528
msgid "Dimensions need two float values separated by comma."
msgstr "Dimensions need two float values separated by comma."
-#: appEditors/FlatCAMGrbEditor.py:3537
+#: appEditors/AppGerberEditor.py:3537
msgid "Dimensions edited."
msgstr "Dimensions edited."
-#: appEditors/FlatCAMGrbEditor.py:4066
+#: appEditors/AppGerberEditor.py:4066
msgid "Loading Gerber into Editor"
msgstr "Loading Gerber into Editor"
-#: appEditors/FlatCAMGrbEditor.py:4194
+#: appEditors/AppGerberEditor.py:4194
msgid "Setting up the UI"
msgstr "Setting up the UI"
-#: appEditors/FlatCAMGrbEditor.py:4195
+#: appEditors/AppGerberEditor.py:4195
msgid "Adding geometry finished. Preparing the GUI"
msgstr "Adding geometry finished. Preparing the GUI"
-#: appEditors/FlatCAMGrbEditor.py:4204
+#: appEditors/AppGerberEditor.py:4204
msgid "Finished loading the Gerber object into the editor."
msgstr "Finished loading the Gerber object into the editor."
-#: appEditors/FlatCAMGrbEditor.py:4345
+#: appEditors/AppGerberEditor.py:4345
msgid ""
"There are no Aperture definitions in the file. Aborting Gerber creation."
msgstr ""
"There are no Aperture definitions in the file. Aborting Gerber creation."
-#: appEditors/FlatCAMGrbEditor.py:4347 appObjects/AppObject.py:133
+#: appEditors/AppGerberEditor.py:4347 appObjects/AppObject.py:133
#: appObjects/FlatCAMGeometry.py:1786 appParsers/ParseExcellon.py:896
#: appTools/ToolPcbWizard.py:432 app_Main.py:8589 app_Main.py:8653
#: app_Main.py:8784 app_Main.py:8849 app_Main.py:9501
msgid "An internal error has occurred. See shell.\n"
msgstr "An internal error has occurred. See shell.\n"
-#: appEditors/FlatCAMGrbEditor.py:4355
+#: appEditors/AppGerberEditor.py:4355
msgid "Creating Gerber."
msgstr "Creating Gerber."
-#: appEditors/FlatCAMGrbEditor.py:4367
+#: appEditors/AppGerberEditor.py:4367
msgid "Done. Gerber editing finished."
msgstr "Done. Gerber editing finished."
-#: appEditors/FlatCAMGrbEditor.py:4383
+#: appEditors/AppGerberEditor.py:4383
msgid "Cancelled. No aperture is selected"
msgstr "Cancelled. No aperture is selected"
-#: appEditors/FlatCAMGrbEditor.py:4538 app_Main.py:6122
+#: appEditors/AppGerberEditor.py:4538 app_Main.py:6122
msgid "Coordinates copied to clipboard."
msgstr "Coordinates copied to clipboard."
-#: appEditors/FlatCAMGrbEditor.py:4985
+#: appEditors/AppGerberEditor.py:4985
msgid "Failed. No aperture geometry is selected."
msgstr "Failed. No aperture geometry is selected."
-#: appEditors/FlatCAMGrbEditor.py:4994 appEditors/FlatCAMGrbEditor.py:5265
+#: appEditors/AppGerberEditor.py:4994 appEditors/AppGerberEditor.py:5265
msgid "Done. Apertures geometry deleted."
msgstr "Done. Apertures geometry deleted."
-#: appEditors/FlatCAMGrbEditor.py:5137
+#: appEditors/AppGerberEditor.py:5137
msgid "No aperture to buffer. Select at least one aperture and try again."
msgstr "No aperture to buffer. Select at least one aperture and try again."
-#: appEditors/FlatCAMGrbEditor.py:5149
+#: appEditors/AppGerberEditor.py:5149
msgid "Failed."
msgstr "Failed."
-#: appEditors/FlatCAMGrbEditor.py:5168
+#: appEditors/AppGerberEditor.py:5168
msgid "Scale factor value is missing or wrong format. Add it and retry."
msgstr "Scale factor value is missing or wrong format. Add it and retry."
-#: appEditors/FlatCAMGrbEditor.py:5200
+#: appEditors/AppGerberEditor.py:5200
msgid "No aperture to scale. Select at least one aperture and try again."
msgstr "No aperture to scale. Select at least one aperture and try again."
-#: appEditors/FlatCAMGrbEditor.py:5216
+#: appEditors/AppGerberEditor.py:5216
msgid "Done. Scale Tool completed."
msgstr "Done. Scale Tool completed."
-#: appEditors/FlatCAMGrbEditor.py:5254
+#: appEditors/AppGerberEditor.py:5254
msgid "Polygons marked."
msgstr "Polygons marked."
-#: appEditors/FlatCAMGrbEditor.py:5257
+#: appEditors/AppGerberEditor.py:5257
msgid "No polygons were marked. None fit within the limits."
msgstr "No polygons were marked. None fit within the limits."
-#: appEditors/FlatCAMGrbEditor.py:5985
+#: appEditors/AppGerberEditor.py:5985
msgid "Rotation action was not executed."
msgstr "Rotation action was not executed."
-#: appEditors/FlatCAMGrbEditor.py:6027 app_Main.py:5556 app_Main.py:5604
+#: appEditors/AppGerberEditor.py:6027 app_Main.py:5556 app_Main.py:5604
msgid "Flip action was not executed."
msgstr "Flip action was not executed."
-#: appEditors/FlatCAMGrbEditor.py:6067
+#: appEditors/AppGerberEditor.py:6067
msgid "Skew action was not executed."
msgstr "Skew action was not executed."
-#: appEditors/FlatCAMGrbEditor.py:6106
+#: appEditors/AppGerberEditor.py:6106
msgid "Scale action was not executed."
msgstr "Scale action was not executed."
-#: appEditors/FlatCAMGrbEditor.py:6150
+#: appEditors/AppGerberEditor.py:6150
msgid "Offset action was not executed."
msgstr "Offset action was not executed."
-#: appEditors/FlatCAMGrbEditor.py:6236
+#: appEditors/AppGerberEditor.py:6236
msgid "Geometry shape offset Y cancelled"
msgstr "Geometry shape offset Y cancelled"
-#: appEditors/FlatCAMGrbEditor.py:6251
+#: appEditors/AppGerberEditor.py:6251
msgid "Geometry shape skew X cancelled"
msgstr "Geometry shape skew X cancelled"
-#: appEditors/FlatCAMGrbEditor.py:6266
+#: appEditors/AppGerberEditor.py:6266
msgid "Geometry shape skew Y cancelled"
msgstr "Geometry shape skew Y cancelled"
diff --git a/locale/es/LC_MESSAGES/strings.po b/locale/es/LC_MESSAGES/strings.po
index 8aab182f..02f9a93d 100644
--- a/locale/es/LC_MESSAGES/strings.po
+++ b/locale/es/LC_MESSAGES/strings.po
@@ -105,8 +105,8 @@ msgid "Bookmarks"
msgstr "Marcadores"
#: Bookmark.py:300 Bookmark.py:342 appDatabase.py:665 appDatabase.py:711
-#: appDatabase.py:2279 appDatabase.py:2325 appEditors/FlatCAMExcEditor.py:1023
-#: appEditors/FlatCAMExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
+#: appDatabase.py:2279 appDatabase.py:2325 appEditors/AppExcEditor.py:1023
+#: appEditors/AppExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
#: appGUI/MainGUI.py:2730 appGUI/MainGUI.py:2952 appGUI/MainGUI.py:3167
#: appObjects/ObjectCollection.py:127 appTools/ToolFilm.py:739
#: appTools/ToolFilm.py:885 appTools/ToolImage.py:247 appTools/ToolMove.py:269
@@ -177,7 +177,7 @@ msgstr ""
"Zona agregada. Haga clic para comenzar a agregar la siguiente zona o haga "
"clic con el botón derecho para finalizar."
-#: Common.py:322 appEditors/appGeoEditor.py:2352
+#: Common.py:322 appEditors/AppGeoEditor.py:2352
#: appTools/ToolIsolation.py:2584 appTools/ToolNCC.py:1754
#: appTools/ToolPaint.py:1647
msgid "Click on next Point or click right mouse button to complete ..."
@@ -286,7 +286,7 @@ msgid "Tool Name"
msgstr "Nombre de Herram"
#: appDatabase.py:161 appDatabase.py:837 appDatabase.py:1119
-#: appEditors/FlatCAMExcEditor.py:1604 appGUI/ObjectUI.py:1226
+#: appEditors/AppExcEditor.py:1604 appGUI/ObjectUI.py:1226
#: appGUI/ObjectUI.py:1480
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:132
#: appTools/ToolIsolation.py:260 appTools/ToolNCC.py:278
@@ -852,7 +852,7 @@ msgstr ""
"Si no tiene éxito, la limpieza sin cobre también fallará.\n"
"- Borrar -> la limpieza regular sin cobre."
-#: appDatabase.py:1427 appEditors/FlatCAMGrbEditor.py:2749
+#: appDatabase.py:1427 appEditors/AppGerberEditor.py:2749
#: appGUI/GUIElements.py:2765 appTools/ToolNCC.py:350
msgid "Clear"
msgstr "Limpiar"
@@ -904,7 +904,7 @@ msgid "Conventional"
msgstr "Convencional"
#: appDatabase.py:1456 appDatabase.py:1565 appDatabase.py:1667
-#: appEditors/appGeoEditor.py:450
+#: appEditors/AppGeoEditor.py:450
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:167
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:182
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:163
@@ -933,7 +933,7 @@ msgstr ""
"Valores más altos = procesamiento lento y ejecución lenta en CNC\n"
"debido a demasiados caminos."
-#: appDatabase.py:1477 appDatabase.py:1586 appEditors/appGeoEditor.py:470
+#: appDatabase.py:1477 appDatabase.py:1586 appEditors/AppGeoEditor.py:470
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:72
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:229
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:59
@@ -962,7 +962,7 @@ msgstr "Margen"
msgid "Bounding box margin."
msgstr "Margen de cuadro delimitador."
-#: appDatabase.py:1490 appDatabase.py:1601 appEditors/appGeoEditor.py:484
+#: appDatabase.py:1490 appDatabase.py:1601 appEditors/AppGeoEditor.py:484
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:105
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:106
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:215
@@ -985,7 +985,7 @@ msgstr ""
"- Basado en semillas: hacia afuera de la semilla.\n"
"- Basado en líneas: líneas paralelas."
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2232 appTools/ToolNCC.py:2764
@@ -995,8 +995,8 @@ msgstr ""
msgid "Standard"
msgstr "Estándar"
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:568 appEditors/appGeoEditor.py:5091
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:568 appEditors/AppGeoEditor.py:5091
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2243 appTools/ToolNCC.py:2770
@@ -1007,8 +1007,8 @@ msgstr "Estándar"
msgid "Seed"
msgstr "Semilla"
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:5095
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:5095
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2254 appTools/ToolPaint.py:389
@@ -1032,7 +1032,7 @@ msgstr "Combo"
msgid "Connect"
msgstr "Conectar"
-#: appDatabase.py:1512 appDatabase.py:1629 appEditors/appGeoEditor.py:507
+#: appDatabase.py:1512 appDatabase.py:1629 appEditors/AppGeoEditor.py:507
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:239
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:226
#: appTools/ToolNCC.py:443 appTools/ToolPaint.py:403
@@ -1050,7 +1050,7 @@ msgstr ""
msgid "Contour"
msgstr "Contorno"
-#: appDatabase.py:1522 appDatabase.py:1636 appEditors/appGeoEditor.py:517
+#: appDatabase.py:1522 appDatabase.py:1636 appEditors/AppGeoEditor.py:517
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:248
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:234
#: appTools/ToolNCC.py:453 appTools/ToolPaint.py:410
@@ -1061,8 +1061,8 @@ msgstr ""
"Corta todo el perímetro del polígono.\n"
"Para recortar los bordes ásperos."
-#: appDatabase.py:1528 appEditors/appGeoEditor.py:611
-#: appEditors/FlatCAMGrbEditor.py:5304 appGUI/ObjectUI.py:143
+#: appDatabase.py:1528 appEditors/AppGeoEditor.py:611
+#: appEditors/AppGerberEditor.py:5304 appGUI/ObjectUI.py:143
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:255
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:183
@@ -1084,7 +1084,7 @@ msgstr ""
"de las características de cobre.\n"
"El valor puede estar entre 0 y 10 unidades FlatCAM."
-#: appDatabase.py:1567 appEditors/appGeoEditor.py:452
+#: appDatabase.py:1567 appEditors/AppGeoEditor.py:452
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:165
#: appTools/ToolPaint.py:330
msgid ""
@@ -1105,7 +1105,7 @@ msgstr ""
"Valores más altos = procesamiento lento y ejecución lenta en CNC\n"
"debido a demasiados caminos."
-#: appDatabase.py:1588 appEditors/appGeoEditor.py:472
+#: appDatabase.py:1588 appEditors/AppGeoEditor.py:472
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:185
#: appTools/ToolPaint.py:351
msgid ""
@@ -1251,141 +1251,141 @@ msgstr ""
"herramienta de objeto / aplicación después de seleccionar una herramienta\n"
"en la base de datos de herramientas."
-#: appEditors/FlatCAMExcEditor.py:50 appEditors/FlatCAMExcEditor.py:74
-#: appEditors/FlatCAMExcEditor.py:168 appEditors/FlatCAMExcEditor.py:385
-#: appEditors/FlatCAMExcEditor.py:589 appEditors/FlatCAMGrbEditor.py:241
-#: appEditors/FlatCAMGrbEditor.py:248
+#: appEditors/AppExcEditor.py:50 appEditors/AppExcEditor.py:74
+#: appEditors/AppExcEditor.py:168 appEditors/AppExcEditor.py:385
+#: appEditors/AppExcEditor.py:589 appEditors/AppGerberEditor.py:241
+#: appEditors/AppGerberEditor.py:248
msgid "Click to place ..."
msgstr "Haga clic para colocar ..."
-#: appEditors/FlatCAMExcEditor.py:58
+#: appEditors/AppExcEditor.py:58
msgid "To add a drill first select a tool"
msgstr "Para agregar un taladro primero seleccione una herramienta"
-#: appEditors/FlatCAMExcEditor.py:122
+#: appEditors/AppExcEditor.py:122
msgid "Done. Drill added."
msgstr "Hecho. Taladro agregado."
-#: appEditors/FlatCAMExcEditor.py:176
+#: appEditors/AppExcEditor.py:176
msgid "To add an Drill Array first select a tool in Tool Table"
msgstr ""
"Para agregar una matriz de perforación, primero seleccione una herramienta "
"en la Tabla de herramientas"
-#: appEditors/FlatCAMExcEditor.py:192 appEditors/FlatCAMExcEditor.py:415
-#: appEditors/FlatCAMExcEditor.py:636 appEditors/FlatCAMExcEditor.py:1151
-#: appEditors/FlatCAMExcEditor.py:1178 appEditors/FlatCAMGrbEditor.py:471
-#: appEditors/FlatCAMGrbEditor.py:1944 appEditors/FlatCAMGrbEditor.py:1974
+#: appEditors/AppExcEditor.py:192 appEditors/AppExcEditor.py:415
+#: appEditors/AppExcEditor.py:636 appEditors/AppExcEditor.py:1151
+#: appEditors/AppExcEditor.py:1178 appEditors/AppGerberEditor.py:471
+#: appEditors/AppGerberEditor.py:1944 appEditors/AppGerberEditor.py:1974
msgid "Click on target location ..."
msgstr "Haga clic en la ubicación de destino ..."
-#: appEditors/FlatCAMExcEditor.py:211
+#: appEditors/AppExcEditor.py:211
msgid "Click on the Drill Circular Array Start position"
msgstr ""
"Haga clic en la posición de inicio de la matriz circular de perforación"
-#: appEditors/FlatCAMExcEditor.py:233 appEditors/FlatCAMExcEditor.py:677
-#: appEditors/FlatCAMGrbEditor.py:516
+#: appEditors/AppExcEditor.py:233 appEditors/AppExcEditor.py:677
+#: appEditors/AppGerberEditor.py:516
msgid "The value is not Float. Check for comma instead of dot separator."
msgstr ""
"El valor no es Real. Compruebe si hay coma en lugar de separador de puntos."
-#: appEditors/FlatCAMExcEditor.py:237
+#: appEditors/AppExcEditor.py:237
msgid "The value is mistyped. Check the value"
msgstr "El valor está mal escrito. Comprueba el valor"
-#: appEditors/FlatCAMExcEditor.py:336
+#: appEditors/AppExcEditor.py:336
msgid "Too many drills for the selected spacing angle."
msgstr "Demasiados taladros para el ángulo de separación seleccionado."
-#: appEditors/FlatCAMExcEditor.py:354
+#: appEditors/AppExcEditor.py:354
msgid "Done. Drill Array added."
msgstr "Hecho. Drill Array agregado."
-#: appEditors/FlatCAMExcEditor.py:394
+#: appEditors/AppExcEditor.py:394
msgid "To add a slot first select a tool"
msgstr "Para agregar un espacio primero seleccione una herramienta"
-#: appEditors/FlatCAMExcEditor.py:454 appEditors/FlatCAMExcEditor.py:461
-#: appEditors/FlatCAMExcEditor.py:742 appEditors/FlatCAMExcEditor.py:749
+#: appEditors/AppExcEditor.py:454 appEditors/AppExcEditor.py:461
+#: appEditors/AppExcEditor.py:742 appEditors/AppExcEditor.py:749
msgid "Value is missing or wrong format. Add it and retry."
msgstr ""
"Falta el formato del formato o es incorrecto Añádelo y vuelve a intentarlo."
-#: appEditors/FlatCAMExcEditor.py:559
+#: appEditors/AppExcEditor.py:559
msgid "Done. Adding Slot completed."
msgstr "Hecho. Agregar de Ranura completado."
-#: appEditors/FlatCAMExcEditor.py:597
+#: appEditors/AppExcEditor.py:597
msgid "To add an Slot Array first select a tool in Tool Table"
msgstr ""
"Para agregar una matriz de ranuras, primero seleccione una herramienta en la "
"tabla de herramientas"
-#: appEditors/FlatCAMExcEditor.py:655
+#: appEditors/AppExcEditor.py:655
msgid "Click on the Slot Circular Array Start position"
msgstr "Haga clic en la posición de inicio de la matriz circular de ranura"
-#: appEditors/FlatCAMExcEditor.py:680 appEditors/FlatCAMGrbEditor.py:519
+#: appEditors/AppExcEditor.py:680 appEditors/AppGerberEditor.py:519
msgid "The value is mistyped. Check the value."
msgstr "El valor está mal escrito. Compruebe el valor."
-#: appEditors/FlatCAMExcEditor.py:859
+#: appEditors/AppExcEditor.py:859
msgid "Too many Slots for the selected spacing angle."
msgstr "Demasiadas ranuras para el ángulo de separación seleccionado."
-#: appEditors/FlatCAMExcEditor.py:882
+#: appEditors/AppExcEditor.py:882
msgid "Done. Slot Array added."
msgstr "Hecho. Matriz de ranuras agregada."
-#: appEditors/FlatCAMExcEditor.py:904
+#: appEditors/AppExcEditor.py:904
msgid "Click on the Drill(s) to resize ..."
msgstr "Haga clic en el taladro(s) para cambiar el tamaño ..."
-#: appEditors/FlatCAMExcEditor.py:934
+#: appEditors/AppExcEditor.py:934
msgid "Resize drill(s) failed. Please enter a diameter for resize."
msgstr ""
"Falló el tamaño de los taladros. Por favor, introduzca un diámetro para "
"cambiar el tamaño."
-#: appEditors/FlatCAMExcEditor.py:1112
+#: appEditors/AppExcEditor.py:1112
msgid "Done. Drill/Slot Resize completed."
msgstr "Hecho. Tamaño de taladro / ranura completado."
-#: appEditors/FlatCAMExcEditor.py:1115
+#: appEditors/AppExcEditor.py:1115
msgid "Cancelled. No drills/slots selected for resize ..."
msgstr ""
"Cancelado. No hay taladros / ranuras seleccionados para cambiar el tamaño ..."
-#: appEditors/FlatCAMExcEditor.py:1153 appEditors/FlatCAMGrbEditor.py:1946
+#: appEditors/AppExcEditor.py:1153 appEditors/AppGerberEditor.py:1946
msgid "Click on reference location ..."
msgstr "Haga clic en la ubicación de referencia ..."
-#: appEditors/FlatCAMExcEditor.py:1210
+#: appEditors/AppExcEditor.py:1210
msgid "Done. Drill(s) Move completed."
msgstr "Hecho. Taladro (s) Movimiento completado."
-#: appEditors/FlatCAMExcEditor.py:1318
+#: appEditors/AppExcEditor.py:1318
msgid "Done. Drill(s) copied."
msgstr "Hecho. Taladro (s) copiado."
-#: appEditors/FlatCAMExcEditor.py:1557
+#: appEditors/AppExcEditor.py:1557
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:26
msgid "Excellon Editor"
msgstr "Excellon Editor"
-#: appEditors/FlatCAMExcEditor.py:1564 appEditors/FlatCAMGrbEditor.py:2469
+#: appEditors/AppExcEditor.py:1564 appEditors/AppGerberEditor.py:2469
msgid "Name:"
msgstr "Nombre:"
-#: appEditors/FlatCAMExcEditor.py:1570 appGUI/ObjectUI.py:540
+#: appEditors/AppExcEditor.py:1570 appGUI/ObjectUI.py:540
#: appGUI/ObjectUI.py:1362 appTools/ToolIsolation.py:118
#: appTools/ToolNCC.py:120 appTools/ToolPaint.py:114
#: appTools/ToolSolderPaste.py:79
msgid "Tools Table"
msgstr "Tabla de herramientas"
-#: appEditors/FlatCAMExcEditor.py:1572 appGUI/ObjectUI.py:542
+#: appEditors/AppExcEditor.py:1572 appGUI/ObjectUI.py:542
msgid ""
"Tools in this Excellon object\n"
"when are used for drilling."
@@ -1393,7 +1393,7 @@ msgstr ""
"Herramientas en este objeto Excellon.\n"
"Cuando se utilizan para la perforación."
-#: appEditors/FlatCAMExcEditor.py:1584 appEditors/FlatCAMExcEditor.py:3041
+#: appEditors/AppExcEditor.py:1584 appEditors/AppExcEditor.py:3041
#: appGUI/ObjectUI.py:560 appObjects/FlatCAMExcellon.py:1265
#: appObjects/FlatCAMExcellon.py:1368 appObjects/FlatCAMExcellon.py:1553
#: appTools/ToolIsolation.py:130 appTools/ToolNCC.py:132
@@ -1403,11 +1403,11 @@ msgstr ""
msgid "Diameter"
msgstr "Diámetro"
-#: appEditors/FlatCAMExcEditor.py:1592
+#: appEditors/AppExcEditor.py:1592
msgid "Add/Delete Tool"
msgstr "Añadir / Eliminar herramienta"
-#: appEditors/FlatCAMExcEditor.py:1594
+#: appEditors/AppExcEditor.py:1594
msgid ""
"Add/Delete a tool to the tool list\n"
"for this Excellon object."
@@ -1415,16 +1415,16 @@ msgstr ""
"Agregar / Eliminar una herramienta a la lista de herramientas\n"
"para este objeto Excellon."
-#: appEditors/FlatCAMExcEditor.py:1606 appGUI/ObjectUI.py:1482
+#: appEditors/AppExcEditor.py:1606 appGUI/ObjectUI.py:1482
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:57
msgid "Diameter for the new tool"
msgstr "Diámetro para la nueva herramienta"
-#: appEditors/FlatCAMExcEditor.py:1616
+#: appEditors/AppExcEditor.py:1616
msgid "Add Tool"
msgstr "Añadir herramienta"
-#: appEditors/FlatCAMExcEditor.py:1618
+#: appEditors/AppExcEditor.py:1618
msgid ""
"Add a new tool to the tool list\n"
"with the diameter specified above."
@@ -1432,11 +1432,11 @@ msgstr ""
"Agregar una nueva herramienta a la lista de herramientas\n"
"con el diámetro especificado anteriormente."
-#: appEditors/FlatCAMExcEditor.py:1630
+#: appEditors/AppExcEditor.py:1630
msgid "Delete Tool"
msgstr "Eliminar herramienta"
-#: appEditors/FlatCAMExcEditor.py:1632
+#: appEditors/AppExcEditor.py:1632
msgid ""
"Delete a tool in the tool list\n"
"by selecting a row in the tool table."
@@ -1444,40 +1444,40 @@ msgstr ""
"Eliminar una herramienta en la lista de herramientas\n"
"seleccionando una fila en la tabla de herramientas."
-#: appEditors/FlatCAMExcEditor.py:1650 appGUI/MainGUI.py:4392
+#: appEditors/AppExcEditor.py:1650 appGUI/MainGUI.py:4392
msgid "Resize Drill(s)"
msgstr "Cambiar el tamaño de taladro (s)"
-#: appEditors/FlatCAMExcEditor.py:1652
+#: appEditors/AppExcEditor.py:1652
msgid "Resize a drill or a selection of drills."
msgstr "Cambiar el tamaño de un ejercicio o una selección de ejercicios."
-#: appEditors/FlatCAMExcEditor.py:1659
+#: appEditors/AppExcEditor.py:1659
msgid "Resize Dia"
msgstr "Cambiar el diá"
-#: appEditors/FlatCAMExcEditor.py:1661
+#: appEditors/AppExcEditor.py:1661
msgid "Diameter to resize to."
msgstr "Diámetro para redimensionar a."
-#: appEditors/FlatCAMExcEditor.py:1672
+#: appEditors/AppExcEditor.py:1672
msgid "Resize"
msgstr "Redimensionar"
-#: appEditors/FlatCAMExcEditor.py:1674
+#: appEditors/AppExcEditor.py:1674
msgid "Resize drill(s)"
msgstr "Cambiar el tamaño de taladro"
-#: appEditors/FlatCAMExcEditor.py:1699 appGUI/MainGUI.py:1514
+#: appEditors/AppExcEditor.py:1699 appGUI/MainGUI.py:1514
#: appGUI/MainGUI.py:4391
msgid "Add Drill Array"
msgstr "Añadir Drill Array"
-#: appEditors/FlatCAMExcEditor.py:1701
+#: appEditors/AppExcEditor.py:1701
msgid "Add an array of drills (linear or circular array)"
msgstr "Agregar una matriz de taladros (lineal o circular)"
-#: appEditors/FlatCAMExcEditor.py:1707
+#: appEditors/AppExcEditor.py:1707
msgid ""
"Select the type of drills array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -1485,13 +1485,13 @@ msgstr ""
"Seleccione el tipo de matriz de ejercicios para crear.\n"
"Puede ser lineal X (Y) o circular"
-#: appEditors/FlatCAMExcEditor.py:1710 appEditors/FlatCAMExcEditor.py:1924
-#: appEditors/FlatCAMGrbEditor.py:2782
+#: appEditors/AppExcEditor.py:1710 appEditors/AppExcEditor.py:1924
+#: appEditors/AppGerberEditor.py:2782
msgid "Linear"
msgstr "Lineal"
-#: appEditors/FlatCAMExcEditor.py:1711 appEditors/FlatCAMExcEditor.py:1925
-#: appEditors/FlatCAMGrbEditor.py:2783
+#: appEditors/AppExcEditor.py:1711 appEditors/AppExcEditor.py:1925
+#: appEditors/AppGerberEditor.py:2783
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:52
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:149
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:107
@@ -1507,26 +1507,26 @@ msgstr "Lineal"
msgid "Circular"
msgstr "Circular"
-#: appEditors/FlatCAMExcEditor.py:1719
+#: appEditors/AppExcEditor.py:1719
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:68
msgid "Nr of drills"
msgstr "Nu. de ejercicios"
-#: appEditors/FlatCAMExcEditor.py:1720
+#: appEditors/AppExcEditor.py:1720
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:70
msgid "Specify how many drills to be in the array."
msgstr "Especifique cuántos ejercicios debe estar en la matriz."
-#: appEditors/FlatCAMExcEditor.py:1738 appEditors/FlatCAMExcEditor.py:1788
-#: appEditors/FlatCAMExcEditor.py:1860 appEditors/FlatCAMExcEditor.py:1953
-#: appEditors/FlatCAMExcEditor.py:2004 appEditors/FlatCAMGrbEditor.py:1580
-#: appEditors/FlatCAMGrbEditor.py:2811 appEditors/FlatCAMGrbEditor.py:2860
+#: appEditors/AppExcEditor.py:1738 appEditors/AppExcEditor.py:1788
+#: appEditors/AppExcEditor.py:1860 appEditors/AppExcEditor.py:1953
+#: appEditors/AppExcEditor.py:2004 appEditors/AppGerberEditor.py:1580
+#: appEditors/AppGerberEditor.py:2811 appEditors/AppGerberEditor.py:2860
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:178
msgid "Direction"
msgstr "Dirección"
-#: appEditors/FlatCAMExcEditor.py:1740 appEditors/FlatCAMExcEditor.py:1955
-#: appEditors/FlatCAMGrbEditor.py:2813
+#: appEditors/AppExcEditor.py:1740 appEditors/AppExcEditor.py:1955
+#: appEditors/AppGerberEditor.py:2813
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:86
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:234
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:123
@@ -1541,8 +1541,8 @@ msgstr ""
"- 'Y' - eje vertical o\n"
"- 'Ángulo': un ángulo personalizado para la inclinación de la matriz"
-#: appEditors/FlatCAMExcEditor.py:1747 appEditors/FlatCAMExcEditor.py:1869
-#: appEditors/FlatCAMExcEditor.py:1962 appEditors/FlatCAMGrbEditor.py:2820
+#: appEditors/AppExcEditor.py:1747 appEditors/AppExcEditor.py:1869
+#: appEditors/AppExcEditor.py:1962 appEditors/AppGerberEditor.py:2820
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:240
@@ -1552,8 +1552,8 @@ msgstr ""
msgid "X"
msgstr "X"
-#: appEditors/FlatCAMExcEditor.py:1748 appEditors/FlatCAMExcEditor.py:1870
-#: appEditors/FlatCAMExcEditor.py:1963 appEditors/FlatCAMGrbEditor.py:2821
+#: appEditors/AppExcEditor.py:1748 appEditors/AppExcEditor.py:1870
+#: appEditors/AppExcEditor.py:1963 appEditors/AppGerberEditor.py:2821
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:241
@@ -1563,13 +1563,13 @@ msgstr "X"
msgid "Y"
msgstr "Y"
-#: appEditors/FlatCAMExcEditor.py:1749 appEditors/FlatCAMExcEditor.py:1766
-#: appEditors/FlatCAMExcEditor.py:1800 appEditors/FlatCAMExcEditor.py:1871
-#: appEditors/FlatCAMExcEditor.py:1875 appEditors/FlatCAMExcEditor.py:1964
-#: appEditors/FlatCAMExcEditor.py:1982 appEditors/FlatCAMExcEditor.py:2016
-#: appEditors/appGeoEditor.py:683 appEditors/FlatCAMGrbEditor.py:2822
-#: appEditors/FlatCAMGrbEditor.py:2839 appEditors/FlatCAMGrbEditor.py:2875
-#: appEditors/FlatCAMGrbEditor.py:5376
+#: appEditors/AppExcEditor.py:1749 appEditors/AppExcEditor.py:1766
+#: appEditors/AppExcEditor.py:1800 appEditors/AppExcEditor.py:1871
+#: appEditors/AppExcEditor.py:1875 appEditors/AppExcEditor.py:1964
+#: appEditors/AppExcEditor.py:1982 appEditors/AppExcEditor.py:2016
+#: appEditors/AppGeoEditor.py:683 appEditors/AppGerberEditor.py:2822
+#: appEditors/AppGerberEditor.py:2839 appEditors/AppGerberEditor.py:2875
+#: appEditors/AppGerberEditor.py:5376
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:94
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:113
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:189
@@ -1584,23 +1584,23 @@ msgstr "Y"
msgid "Angle"
msgstr "Ángulo"
-#: appEditors/FlatCAMExcEditor.py:1753 appEditors/FlatCAMExcEditor.py:1968
-#: appEditors/FlatCAMGrbEditor.py:2826
+#: appEditors/AppExcEditor.py:1753 appEditors/AppExcEditor.py:1968
+#: appEditors/AppGerberEditor.py:2826
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:100
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:248
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:137
msgid "Pitch"
msgstr "Paso"
-#: appEditors/FlatCAMExcEditor.py:1755 appEditors/FlatCAMExcEditor.py:1970
-#: appEditors/FlatCAMGrbEditor.py:2828
+#: appEditors/AppExcEditor.py:1755 appEditors/AppExcEditor.py:1970
+#: appEditors/AppGerberEditor.py:2828
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:102
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:250
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:139
msgid "Pitch = Distance between elements of the array."
msgstr "Paso = Distancia entre elementos de la matriz."
-#: appEditors/FlatCAMExcEditor.py:1768 appEditors/FlatCAMExcEditor.py:1984
+#: appEditors/AppExcEditor.py:1768 appEditors/AppExcEditor.py:1984
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1612,8 +1612,8 @@ msgstr ""
"El valor mínimo es: -360 grados.\n"
"El valor máximo es: 360.00 grados."
-#: appEditors/FlatCAMExcEditor.py:1789 appEditors/FlatCAMExcEditor.py:2005
-#: appEditors/FlatCAMGrbEditor.py:2862
+#: appEditors/AppExcEditor.py:1789 appEditors/AppExcEditor.py:2005
+#: appEditors/AppGerberEditor.py:2862
msgid ""
"Direction for circular array.Can be CW = clockwise or CCW = counter "
"clockwise."
@@ -1621,8 +1621,8 @@ msgstr ""
"Dirección de la matriz circular. Puede ser CW = en sentido horario o CCW = "
"en sentido antihorario."
-#: appEditors/FlatCAMExcEditor.py:1796 appEditors/FlatCAMExcEditor.py:2012
-#: appEditors/FlatCAMGrbEditor.py:2870
+#: appEditors/AppExcEditor.py:1796 appEditors/AppExcEditor.py:2012
+#: appEditors/AppGerberEditor.py:2870
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:129
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:136
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:286
@@ -1631,8 +1631,8 @@ msgstr ""
msgid "CW"
msgstr "CW"
-#: appEditors/FlatCAMExcEditor.py:1797 appEditors/FlatCAMExcEditor.py:2013
-#: appEditors/FlatCAMGrbEditor.py:2871
+#: appEditors/AppExcEditor.py:1797 appEditors/AppExcEditor.py:2013
+#: appEditors/AppGerberEditor.py:2871
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:130
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:137
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:287
@@ -1641,8 +1641,8 @@ msgstr "CW"
msgid "CCW"
msgstr "CCW"
-#: appEditors/FlatCAMExcEditor.py:1801 appEditors/FlatCAMExcEditor.py:2017
-#: appEditors/FlatCAMGrbEditor.py:2877
+#: appEditors/AppExcEditor.py:1801 appEditors/AppExcEditor.py:2017
+#: appEditors/AppGerberEditor.py:2877
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:115
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:145
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:265
@@ -1652,11 +1652,11 @@ msgstr "CCW"
msgid "Angle at which each element in circular array is placed."
msgstr "Ángulo en el que se coloca cada elemento de la matriz circular."
-#: appEditors/FlatCAMExcEditor.py:1835
+#: appEditors/AppExcEditor.py:1835
msgid "Slot Parameters"
msgstr "Parámetros de ranura"
-#: appEditors/FlatCAMExcEditor.py:1837
+#: appEditors/AppExcEditor.py:1837
msgid ""
"Parameters for adding a slot (hole with oval shape)\n"
"either single or as an part of an array."
@@ -1664,19 +1664,19 @@ msgstr ""
"Parámetros para agregar una ranura (agujero con forma ovalada)\n"
"ya sea solo o como parte de una matriz."
-#: appEditors/FlatCAMExcEditor.py:1846
+#: appEditors/AppExcEditor.py:1846
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:162
#: appGUI/preferences/tools/ToolsCornersPrefGroupUI.py:56
#: appTools/ToolCorners.py:136 appTools/ToolProperties.py:559
msgid "Length"
msgstr "Longitud"
-#: appEditors/FlatCAMExcEditor.py:1848
+#: appEditors/AppExcEditor.py:1848
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:164
msgid "Length = The length of the slot."
msgstr "Longitud = La longitud de la ranura."
-#: appEditors/FlatCAMExcEditor.py:1862
+#: appEditors/AppExcEditor.py:1862
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:180
msgid ""
"Direction on which the slot is oriented:\n"
@@ -1689,7 +1689,7 @@ msgstr ""
"- 'Y' - eje vertical o\n"
"- 'Ángulo': un ángulo personalizado para la inclinación de la ranura"
-#: appEditors/FlatCAMExcEditor.py:1877
+#: appEditors/AppExcEditor.py:1877
msgid ""
"Angle at which the slot is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1701,15 +1701,15 @@ msgstr ""
"El valor mínimo es: -360 grados.\n"
"El valor máximo es: 360.00 grados."
-#: appEditors/FlatCAMExcEditor.py:1910
+#: appEditors/AppExcEditor.py:1910
msgid "Slot Array Parameters"
msgstr "Parámetros de matriz de ranuras"
-#: appEditors/FlatCAMExcEditor.py:1912
+#: appEditors/AppExcEditor.py:1912
msgid "Parameters for the array of slots (linear or circular array)"
msgstr "Parámetros para la matriz de ranuras (matriz lineal o circular)"
-#: appEditors/FlatCAMExcEditor.py:1921
+#: appEditors/AppExcEditor.py:1921
msgid ""
"Select the type of slot array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -1717,25 +1717,25 @@ msgstr ""
"Seleccione el tipo de matriz de ranuras para crear.\n"
"Puede ser lineal X (Y) o circular"
-#: appEditors/FlatCAMExcEditor.py:1933
+#: appEditors/AppExcEditor.py:1933
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:219
msgid "Nr of slots"
msgstr "Nro. De ranuras"
-#: appEditors/FlatCAMExcEditor.py:1934
+#: appEditors/AppExcEditor.py:1934
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:221
msgid "Specify how many slots to be in the array."
msgstr "Especifique cuántas ranuras debe haber en la matriz."
-#: appEditors/FlatCAMExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
+#: appEditors/AppExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
msgid "Total Drills"
msgstr "Taladros totales"
-#: appEditors/FlatCAMExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
+#: appEditors/AppExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
msgid "Total Slots"
msgstr "Ranuras totales"
-#: appEditors/FlatCAMExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
+#: appEditors/AppExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
#: appObjects/FlatCAMGeometry.py:1099 appObjects/FlatCAMGeometry.py:1841
#: appObjects/FlatCAMGeometry.py:2491 appTools/ToolIsolation.py:1526
#: appTools/ToolNCC.py:1516 appTools/ToolPaint.py:1268
@@ -1744,7 +1744,7 @@ msgstr "Ranuras totales"
msgid "Wrong value format entered, use a number."
msgstr "Formato de valor incorrecto introducido, use un número."
-#: appEditors/FlatCAMExcEditor.py:2570
+#: appEditors/AppExcEditor.py:2570
msgid ""
"Tool already in the original or actual tool list.\n"
"Save and reedit Excellon if you need to add this tool. "
@@ -1752,73 +1752,73 @@ msgstr ""
"Herramienta ya en la lista de herramientas original o real.\n"
"Guarde y reedite Excellon si necesita agregar esta herramienta. "
-#: appEditors/FlatCAMExcEditor.py:2579 appGUI/MainGUI.py:3364
+#: appEditors/AppExcEditor.py:2579 appGUI/MainGUI.py:3364
msgid "Added new tool with dia"
msgstr "Nueva herramienta agregada con dia"
-#: appEditors/FlatCAMExcEditor.py:2612
+#: appEditors/AppExcEditor.py:2612
msgid "Select a tool in Tool Table"
msgstr "Seleccione una herramienta en la tabla de herramientas"
-#: appEditors/FlatCAMExcEditor.py:2642
+#: appEditors/AppExcEditor.py:2642
msgid "Deleted tool with diameter"
msgstr "Herramienta eliminada con diámetro"
-#: appEditors/FlatCAMExcEditor.py:2790
+#: appEditors/AppExcEditor.py:2790
msgid "Done. Tool edit completed."
msgstr "Hecho. Edición de herramienta completada."
-#: appEditors/FlatCAMExcEditor.py:3327
+#: appEditors/AppExcEditor.py:3327
msgid "There are no Tools definitions in the file. Aborting Excellon creation."
msgstr ""
"No hay definiciones de herramientas en el archivo. Anulando la creación de "
"Excellon."
-#: appEditors/FlatCAMExcEditor.py:3331
+#: appEditors/AppExcEditor.py:3331
msgid "An internal error has ocurred. See Shell.\n"
msgstr "Ha ocurrido un error interno. Ver concha.\n"
-#: appEditors/FlatCAMExcEditor.py:3336
+#: appEditors/AppExcEditor.py:3336
msgid "Creating Excellon."
msgstr "Creación de Excellon."
-#: appEditors/FlatCAMExcEditor.py:3350
+#: appEditors/AppExcEditor.py:3350
msgid "Excellon editing finished."
msgstr "Excelente edición terminada."
-#: appEditors/FlatCAMExcEditor.py:3367
+#: appEditors/AppExcEditor.py:3367
msgid "Cancelled. There is no Tool/Drill selected"
msgstr "Cancelado. No hay herramienta / taladro seleccionado"
-#: appEditors/FlatCAMExcEditor.py:3601 appEditors/FlatCAMExcEditor.py:3609
-#: appEditors/appGeoEditor.py:4286 appEditors/appGeoEditor.py:4300
-#: appEditors/FlatCAMGrbEditor.py:1085 appEditors/FlatCAMGrbEditor.py:1312
-#: appEditors/FlatCAMGrbEditor.py:1497 appEditors/FlatCAMGrbEditor.py:1766
-#: appEditors/FlatCAMGrbEditor.py:4608 appEditors/FlatCAMGrbEditor.py:4625
+#: appEditors/AppExcEditor.py:3601 appEditors/AppExcEditor.py:3609
+#: appEditors/AppGeoEditor.py:4286 appEditors/AppGeoEditor.py:4300
+#: appEditors/AppGerberEditor.py:1085 appEditors/AppGerberEditor.py:1312
+#: appEditors/AppGerberEditor.py:1497 appEditors/AppGerberEditor.py:1766
+#: appEditors/AppGerberEditor.py:4608 appEditors/AppGerberEditor.py:4625
#: appGUI/MainGUI.py:2711 appGUI/MainGUI.py:2723
#: appTools/ToolAlignObjects.py:393 appTools/ToolAlignObjects.py:415
#: app_Main.py:4800 app_Main.py:4954
msgid "Done."
msgstr "Hecho."
-#: appEditors/FlatCAMExcEditor.py:3984
+#: appEditors/AppExcEditor.py:3984
msgid "Done. Drill(s) deleted."
msgstr "Hecho. Taladro (s) eliminado (s)."
-#: appEditors/FlatCAMExcEditor.py:4057 appEditors/FlatCAMExcEditor.py:4067
-#: appEditors/FlatCAMGrbEditor.py:5056
+#: appEditors/AppExcEditor.py:4057 appEditors/AppExcEditor.py:4067
+#: appEditors/AppGerberEditor.py:5056
msgid "Click on the circular array Center position"
msgstr "Haga clic en la posición del centro matriz circular"
-#: appEditors/appGeoEditor.py:84
+#: appEditors/AppGeoEditor.py:84
msgid "Buffer distance:"
msgstr "Dist. de amortiguación:"
-#: appEditors/appGeoEditor.py:85
+#: appEditors/AppGeoEditor.py:85
msgid "Buffer corner:"
msgstr "Rincón del búfer:"
-#: appEditors/appGeoEditor.py:87
+#: appEditors/AppGeoEditor.py:87
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded for exterior buffer.\n"
@@ -1833,11 +1833,11 @@ msgstr ""
" - 'Biselado:' la esquina es una línea que conecta directamente las "
"funciones que se encuentran en la esquina"
-#: appEditors/appGeoEditor.py:93 appEditors/FlatCAMGrbEditor.py:2638
+#: appEditors/AppGeoEditor.py:93 appEditors/AppGerberEditor.py:2638
msgid "Round"
msgstr "Redondo"
-#: appEditors/appGeoEditor.py:94 appEditors/FlatCAMGrbEditor.py:2639
+#: appEditors/AppGeoEditor.py:94 appEditors/AppGerberEditor.py:2639
#: appGUI/ObjectUI.py:1149 appGUI/ObjectUI.py:2004
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:225
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:68
@@ -1855,50 +1855,50 @@ msgstr "Redondo"
msgid "Square"
msgstr "Cuadrado"
-#: appEditors/appGeoEditor.py:95 appEditors/FlatCAMGrbEditor.py:2640
+#: appEditors/AppGeoEditor.py:95 appEditors/AppGerberEditor.py:2640
msgid "Beveled"
msgstr "Biselado"
-#: appEditors/appGeoEditor.py:102
+#: appEditors/AppGeoEditor.py:102
msgid "Buffer Interior"
msgstr "Interior del amortiguador"
-#: appEditors/appGeoEditor.py:104
+#: appEditors/AppGeoEditor.py:104
msgid "Buffer Exterior"
msgstr "Amortiguador exterior"
-#: appEditors/appGeoEditor.py:110
+#: appEditors/AppGeoEditor.py:110
msgid "Full Buffer"
msgstr "Buffer lleno"
-#: appEditors/appGeoEditor.py:131 appEditors/appGeoEditor.py:2959
+#: appEditors/AppGeoEditor.py:131 appEditors/AppGeoEditor.py:2959
#: appGUI/MainGUI.py:4301
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:191
msgid "Buffer Tool"
msgstr "Herramienta Buffer"
-#: appEditors/appGeoEditor.py:143 appEditors/appGeoEditor.py:160
-#: appEditors/appGeoEditor.py:177 appEditors/appGeoEditor.py:2978
-#: appEditors/appGeoEditor.py:3006 appEditors/appGeoEditor.py:3034
-#: appEditors/FlatCAMGrbEditor.py:5109
+#: appEditors/AppGeoEditor.py:143 appEditors/AppGeoEditor.py:160
+#: appEditors/AppGeoEditor.py:177 appEditors/AppGeoEditor.py:2978
+#: appEditors/AppGeoEditor.py:3006 appEditors/AppGeoEditor.py:3034
+#: appEditors/AppGerberEditor.py:5109
msgid "Buffer distance value is missing or wrong format. Add it and retry."
msgstr ""
"Falta el valor de la distancia del búfer o el formato es incorrecto. "
"Agrégalo y vuelve a intentarlo."
-#: appEditors/appGeoEditor.py:241
+#: appEditors/AppGeoEditor.py:241
msgid "Font"
msgstr "Font"
-#: appEditors/appGeoEditor.py:322 appGUI/MainGUI.py:1452
+#: appEditors/AppGeoEditor.py:322 appGUI/MainGUI.py:1452
msgid "Text"
msgstr "Texto"
-#: appEditors/appGeoEditor.py:348
+#: appEditors/AppGeoEditor.py:348
msgid "Text Tool"
msgstr "Herramienta de texto"
-#: appEditors/appGeoEditor.py:404 appGUI/MainGUI.py:502
+#: appEditors/AppGeoEditor.py:404 appGUI/MainGUI.py:502
#: appGUI/MainGUI.py:1199 appGUI/ObjectUI.py:597 appGUI/ObjectUI.py:1564
#: appObjects/FlatCAMExcellon.py:852 appObjects/FlatCAMExcellon.py:1242
#: appObjects/FlatCAMGeometry.py:825 appTools/ToolIsolation.py:313
@@ -1907,15 +1907,15 @@ msgstr "Herramienta de texto"
msgid "Tool"
msgstr "Herramienta"
-#: appEditors/appGeoEditor.py:438
+#: appEditors/AppGeoEditor.py:438
msgid "Tool dia"
msgstr "Diá. de la herramienta"
-#: appEditors/appGeoEditor.py:440
+#: appEditors/AppGeoEditor.py:440
msgid "Diameter of the tool to be used in the operation."
msgstr "Diámetro de la herramienta a utilizar en la operación."
-#: appEditors/appGeoEditor.py:486
+#: appEditors/AppGeoEditor.py:486
msgid ""
"Algorithm to paint the polygons:\n"
"- Standard: Fixed step inwards.\n"
@@ -1927,58 +1927,58 @@ msgstr ""
"- Basado en semillas: hacia afuera de la semilla.\n"
"- Basado en líneas: líneas paralelas."
-#: appEditors/appGeoEditor.py:505
+#: appEditors/AppGeoEditor.py:505
msgid "Connect:"
msgstr "Conectar:"
-#: appEditors/appGeoEditor.py:515
+#: appEditors/AppGeoEditor.py:515
msgid "Contour:"
msgstr "Contorno:"
-#: appEditors/appGeoEditor.py:528 appGUI/MainGUI.py:1456
+#: appEditors/AppGeoEditor.py:528 appGUI/MainGUI.py:1456
msgid "Paint"
msgstr "Pintar"
-#: appEditors/appGeoEditor.py:546 appGUI/MainGUI.py:912
+#: appEditors/AppGeoEditor.py:546 appGUI/MainGUI.py:912
#: appGUI/MainGUI.py:1944 appGUI/ObjectUI.py:2069 appTools/ToolPaint.py:42
#: appTools/ToolPaint.py:737
msgid "Paint Tool"
msgstr "Herramienta de pintura"
-#: appEditors/appGeoEditor.py:582 appEditors/appGeoEditor.py:1071
-#: appEditors/appGeoEditor.py:2966 appEditors/appGeoEditor.py:2994
-#: appEditors/appGeoEditor.py:3022 appEditors/appGeoEditor.py:4439
-#: appEditors/FlatCAMGrbEditor.py:5764
+#: appEditors/AppGeoEditor.py:582 appEditors/AppGeoEditor.py:1071
+#: appEditors/AppGeoEditor.py:2966 appEditors/AppGeoEditor.py:2994
+#: appEditors/AppGeoEditor.py:3022 appEditors/AppGeoEditor.py:4439
+#: appEditors/AppGerberEditor.py:5764
msgid "Cancelled. No shape selected."
msgstr "Cancelado. Ninguna forma seleccionada."
-#: appEditors/appGeoEditor.py:595 appEditors/appGeoEditor.py:2984
-#: appEditors/appGeoEditor.py:3012 appEditors/appGeoEditor.py:3040
+#: appEditors/AppGeoEditor.py:595 appEditors/AppGeoEditor.py:2984
+#: appEditors/AppGeoEditor.py:3012 appEditors/AppGeoEditor.py:3040
#: appGUI/preferences/geometry/GeometryGenPrefGroupUI.py:69
#: appTools/ToolProperties.py:117 appTools/ToolProperties.py:162
msgid "Tools"
msgstr "Herramientas"
-#: appEditors/appGeoEditor.py:606 appEditors/appGeoEditor.py:1035
-#: appEditors/FlatCAMGrbEditor.py:5299 appEditors/FlatCAMGrbEditor.py:5728
+#: appEditors/AppGeoEditor.py:606 appEditors/AppGeoEditor.py:1035
+#: appEditors/AppGerberEditor.py:5299 appEditors/AppGerberEditor.py:5728
#: appGUI/MainGUI.py:935 appGUI/MainGUI.py:1967 appTools/ToolTransform.py:494
msgid "Transform Tool"
msgstr "Herramienta de transformación"
-#: appEditors/appGeoEditor.py:607 appEditors/appGeoEditor.py:699
-#: appEditors/FlatCAMGrbEditor.py:5300 appEditors/FlatCAMGrbEditor.py:5392
+#: appEditors/AppGeoEditor.py:607 appEditors/AppGeoEditor.py:699
+#: appEditors/AppGerberEditor.py:5300 appEditors/AppGerberEditor.py:5392
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:88
#: appTools/ToolTransform.py:27 appTools/ToolTransform.py:146
msgid "Rotate"
msgstr "Girar"
-#: appEditors/appGeoEditor.py:608 appEditors/FlatCAMGrbEditor.py:5301
+#: appEditors/AppGeoEditor.py:608 appEditors/AppGerberEditor.py:5301
#: appTools/ToolTransform.py:28
msgid "Skew/Shear"
msgstr "Sesgo / cizalla"
-#: appEditors/appGeoEditor.py:609 appEditors/FlatCAMGrbEditor.py:2687
-#: appEditors/FlatCAMGrbEditor.py:5302 appGUI/MainGUI.py:1057
+#: appEditors/AppGeoEditor.py:609 appEditors/AppGerberEditor.py:2687
+#: appEditors/AppGerberEditor.py:5302 appGUI/MainGUI.py:1057
#: appGUI/MainGUI.py:1499 appGUI/MainGUI.py:2089 appGUI/MainGUI.py:4513
#: appGUI/ObjectUI.py:125
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:147
@@ -1986,13 +1986,13 @@ msgstr "Sesgo / cizalla"
msgid "Scale"
msgstr "Escala"
-#: appEditors/appGeoEditor.py:610 appEditors/FlatCAMGrbEditor.py:5303
+#: appEditors/AppGeoEditor.py:610 appEditors/AppGerberEditor.py:5303
#: appTools/ToolTransform.py:30
msgid "Mirror (Flip)"
msgstr "Espejo (Flip)"
-#: appEditors/appGeoEditor.py:612 appEditors/FlatCAMGrbEditor.py:2647
-#: appEditors/FlatCAMGrbEditor.py:5305 appGUI/MainGUI.py:1055
+#: appEditors/AppGeoEditor.py:612 appEditors/AppGerberEditor.py:2647
+#: appEditors/AppGerberEditor.py:5305 appGUI/MainGUI.py:1055
#: appGUI/MainGUI.py:1454 appGUI/MainGUI.py:1497 appGUI/MainGUI.py:2087
#: appGUI/MainGUI.py:4511
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:212
@@ -2000,7 +2000,7 @@ msgstr "Espejo (Flip)"
msgid "Buffer"
msgstr "Buffer"
-#: appEditors/appGeoEditor.py:643 appEditors/FlatCAMGrbEditor.py:5336
+#: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5336
#: appGUI/GUIElements.py:2701
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44
@@ -2009,7 +2009,7 @@ msgstr "Buffer"
msgid "Reference"
msgstr "Referencia"
-#: appEditors/appGeoEditor.py:645 appEditors/FlatCAMGrbEditor.py:5338
+#: appEditors/AppGeoEditor.py:645 appEditors/AppGerberEditor.py:5338
msgid ""
"The reference point for Rotate, Skew, Scale, Mirror.\n"
"Can be:\n"
@@ -2028,15 +2028,15 @@ msgstr ""
"- Min Selection -> el punto (minx, miny) del cuadro delimitador de la "
"selección"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appTools/ToolCalibration.py:770 appTools/ToolCalibration.py:771
#: appTools/ToolTransform.py:70
msgid "Origin"
msgstr "Origen"
-#: appEditors/appGeoEditor.py:653 appEditors/appGeoEditor.py:1044
-#: appEditors/FlatCAMGrbEditor.py:5346 appEditors/FlatCAMGrbEditor.py:5737
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGeoEditor.py:1044
+#: appEditors/AppGerberEditor.py:5346 appEditors/AppGerberEditor.py:5737
#: appGUI/preferences/general/GeneralGUIPrefGroupUI.py:250
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:275
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:311
@@ -2047,7 +2047,7 @@ msgstr "Origen"
msgid "Selection"
msgstr "Selección"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/Tools2sidedPrefGroupUI.py:80
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:60
@@ -2055,12 +2055,12 @@ msgstr "Selección"
msgid "Point"
msgstr "Punto"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
msgid "Minimum"
msgstr "Mínimo"
-#: appEditors/appGeoEditor.py:659 appEditors/appGeoEditor.py:955
-#: appEditors/FlatCAMGrbEditor.py:5352 appEditors/FlatCAMGrbEditor.py:5648
+#: appEditors/AppGeoEditor.py:659 appEditors/AppGeoEditor.py:955
+#: appEditors/AppGerberEditor.py:5352 appEditors/AppGerberEditor.py:5648
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:131
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:133
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:243
@@ -2070,14 +2070,14 @@ msgstr "Mínimo"
msgid "Value"
msgstr "Valor"
-#: appEditors/appGeoEditor.py:661 appEditors/FlatCAMGrbEditor.py:5354
+#: appEditors/AppGeoEditor.py:661 appEditors/AppGerberEditor.py:5354
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:62
#: appTools/ToolTransform.py:78
msgid "A point of reference in format X,Y."
msgstr "Un punto de referencia en formato X, Y."
-#: appEditors/appGeoEditor.py:668 appEditors/FlatCAMGrbEditor.py:2590
-#: appEditors/FlatCAMGrbEditor.py:5361 appGUI/ObjectUI.py:1494
+#: appEditors/AppGeoEditor.py:668 appEditors/AppGerberEditor.py:2590
+#: appEditors/AppGerberEditor.py:5361 appGUI/ObjectUI.py:1494
#: appTools/ToolDblSided.py:192 appTools/ToolDblSided.py:425
#: appTools/ToolIsolation.py:276 appTools/ToolIsolation.py:631
#: appTools/ToolNCC.py:294 appTools/ToolNCC.py:631 appTools/ToolPaint.py:276
@@ -2087,12 +2087,12 @@ msgstr "Un punto de referencia en formato X, Y."
msgid "Add"
msgstr "Añadir"
-#: appEditors/appGeoEditor.py:670 appEditors/FlatCAMGrbEditor.py:5363
+#: appEditors/AppGeoEditor.py:670 appEditors/AppGerberEditor.py:5363
#: appTools/ToolTransform.py:87
msgid "Add point coordinates from clipboard."
msgstr "Agregar coordenadas de puntos desde el portapapeles."
-#: appEditors/appGeoEditor.py:685 appEditors/FlatCAMGrbEditor.py:5378
+#: appEditors/AppGeoEditor.py:685 appEditors/AppGerberEditor.py:5378
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:98
#: appTools/ToolTransform.py:132
msgid ""
@@ -2106,7 +2106,7 @@ msgstr ""
"Números positivos para movimiento CW.\n"
"Números negativos para movimiento CCW."
-#: appEditors/appGeoEditor.py:701 appEditors/FlatCAMGrbEditor.py:5394
+#: appEditors/AppGeoEditor.py:701 appEditors/AppGerberEditor.py:5394
#: appTools/ToolTransform.py:148
msgid ""
"Rotate the selected object(s).\n"
@@ -2117,31 +2117,31 @@ msgstr ""
"El punto de referencia es el medio de\n"
"el cuadro delimitador para todos los objetos seleccionados."
-#: appEditors/appGeoEditor.py:721 appEditors/appGeoEditor.py:783
-#: appEditors/FlatCAMGrbEditor.py:5414 appEditors/FlatCAMGrbEditor.py:5476
+#: appEditors/AppGeoEditor.py:721 appEditors/AppGeoEditor.py:783
+#: appEditors/AppGerberEditor.py:5414 appEditors/AppGerberEditor.py:5476
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:112
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:151
#: appTools/ToolTransform.py:168 appTools/ToolTransform.py:230
msgid "Link"
msgstr "Enlazar"
-#: appEditors/appGeoEditor.py:723 appEditors/appGeoEditor.py:785
-#: appEditors/FlatCAMGrbEditor.py:5416 appEditors/FlatCAMGrbEditor.py:5478
+#: appEditors/AppGeoEditor.py:723 appEditors/AppGeoEditor.py:785
+#: appEditors/AppGerberEditor.py:5416 appEditors/AppGerberEditor.py:5478
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:114
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:153
#: appTools/ToolTransform.py:170 appTools/ToolTransform.py:232
msgid "Link the Y entry to X entry and copy its content."
msgstr "Enlace la entrada Y a la entrada X y copie su contenido."
-#: appEditors/appGeoEditor.py:728 appEditors/FlatCAMGrbEditor.py:5421
+#: appEditors/AppGeoEditor.py:728 appEditors/AppGerberEditor.py:5421
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:151
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:124
#: appTools/ToolFilm.py:184 appTools/ToolTransform.py:175
msgid "X angle"
msgstr "Ángulo X"
-#: appEditors/appGeoEditor.py:730 appEditors/appGeoEditor.py:751
-#: appEditors/FlatCAMGrbEditor.py:5423 appEditors/FlatCAMGrbEditor.py:5444
+#: appEditors/AppGeoEditor.py:730 appEditors/AppGeoEditor.py:751
+#: appEditors/AppGerberEditor.py:5423 appEditors/AppGerberEditor.py:5444
#: appTools/ToolTransform.py:177 appTools/ToolTransform.py:198
msgid ""
"Angle for Skew action, in degrees.\n"
@@ -2150,13 +2150,13 @@ msgstr ""
"Ángulo para sesgo de acción, en grados.\n"
"Número de flotación entre -360 y 360."
-#: appEditors/appGeoEditor.py:738 appEditors/FlatCAMGrbEditor.py:5431
+#: appEditors/AppGeoEditor.py:738 appEditors/AppGerberEditor.py:5431
#: appTools/ToolTransform.py:185
msgid "Skew X"
msgstr "Sesgo x"
-#: appEditors/appGeoEditor.py:740 appEditors/appGeoEditor.py:761
-#: appEditors/FlatCAMGrbEditor.py:5433 appEditors/FlatCAMGrbEditor.py:5454
+#: appEditors/AppGeoEditor.py:740 appEditors/AppGeoEditor.py:761
+#: appEditors/AppGerberEditor.py:5433 appEditors/AppGerberEditor.py:5454
#: appTools/ToolTransform.py:187 appTools/ToolTransform.py:208
msgid ""
"Skew/shear the selected object(s).\n"
@@ -2167,38 +2167,38 @@ msgstr ""
"El punto de referencia es el medio de\n"
"el cuadro delimitador para todos los objetos seleccionados."
-#: appEditors/appGeoEditor.py:749 appEditors/FlatCAMGrbEditor.py:5442
+#: appEditors/AppGeoEditor.py:749 appEditors/AppGerberEditor.py:5442
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:160
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:138
#: appTools/ToolFilm.py:193 appTools/ToolTransform.py:196
msgid "Y angle"
msgstr "Ángulo Y"
-#: appEditors/appGeoEditor.py:759 appEditors/FlatCAMGrbEditor.py:5452
+#: appEditors/AppGeoEditor.py:759 appEditors/AppGerberEditor.py:5452
#: appTools/ToolTransform.py:206
msgid "Skew Y"
msgstr "Sesgo y"
-#: appEditors/appGeoEditor.py:790 appEditors/FlatCAMGrbEditor.py:5483
+#: appEditors/AppGeoEditor.py:790 appEditors/AppGerberEditor.py:5483
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:120
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:162
#: appTools/ToolFilm.py:145 appTools/ToolTransform.py:237
msgid "X factor"
msgstr "Factor X"
-#: appEditors/appGeoEditor.py:792 appEditors/FlatCAMGrbEditor.py:5485
+#: appEditors/AppGeoEditor.py:792 appEditors/AppGerberEditor.py:5485
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:164
#: appTools/ToolTransform.py:239
msgid "Factor for scaling on X axis."
msgstr "Factor de escalado en eje X."
-#: appEditors/appGeoEditor.py:799 appEditors/FlatCAMGrbEditor.py:5492
+#: appEditors/AppGeoEditor.py:799 appEditors/AppGerberEditor.py:5492
#: appTools/ToolTransform.py:246
msgid "Scale X"
msgstr "Escala x"
-#: appEditors/appGeoEditor.py:801 appEditors/appGeoEditor.py:821
-#: appEditors/FlatCAMGrbEditor.py:5494 appEditors/FlatCAMGrbEditor.py:5514
+#: appEditors/AppGeoEditor.py:801 appEditors/AppGeoEditor.py:821
+#: appEditors/AppGerberEditor.py:5494 appEditors/AppGerberEditor.py:5514
#: appTools/ToolTransform.py:248 appTools/ToolTransform.py:268
msgid ""
"Scale the selected object(s).\n"
@@ -2209,59 +2209,59 @@ msgstr ""
"El punto de referencia depende de\n"
"el estado de la casilla de verificación Escalar referencia."
-#: appEditors/appGeoEditor.py:810 appEditors/FlatCAMGrbEditor.py:5503
+#: appEditors/AppGeoEditor.py:810 appEditors/AppGerberEditor.py:5503
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:129
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:175
#: appTools/ToolFilm.py:154 appTools/ToolTransform.py:257
msgid "Y factor"
msgstr "Factor Y"
-#: appEditors/appGeoEditor.py:812 appEditors/FlatCAMGrbEditor.py:5505
+#: appEditors/AppGeoEditor.py:812 appEditors/AppGerberEditor.py:5505
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:177
#: appTools/ToolTransform.py:259
msgid "Factor for scaling on Y axis."
msgstr "Factor de escalado en eje Y."
-#: appEditors/appGeoEditor.py:819 appEditors/FlatCAMGrbEditor.py:5512
+#: appEditors/AppGeoEditor.py:819 appEditors/AppGerberEditor.py:5512
#: appTools/ToolTransform.py:266
msgid "Scale Y"
msgstr "Escala Y"
-#: appEditors/appGeoEditor.py:846 appEditors/FlatCAMGrbEditor.py:5539
+#: appEditors/AppGeoEditor.py:846 appEditors/AppGerberEditor.py:5539
#: appTools/ToolTransform.py:293
msgid "Flip on X"
msgstr "Voltear en X"
-#: appEditors/appGeoEditor.py:848 appEditors/appGeoEditor.py:853
-#: appEditors/FlatCAMGrbEditor.py:5541 appEditors/FlatCAMGrbEditor.py:5546
+#: appEditors/AppGeoEditor.py:848 appEditors/AppGeoEditor.py:853
+#: appEditors/AppGerberEditor.py:5541 appEditors/AppGerberEditor.py:5546
#: appTools/ToolTransform.py:295 appTools/ToolTransform.py:300
msgid "Flip the selected object(s) over the X axis."
msgstr "Voltee los objetos seleccionados sobre el eje X."
-#: appEditors/appGeoEditor.py:851 appEditors/FlatCAMGrbEditor.py:5544
+#: appEditors/AppGeoEditor.py:851 appEditors/AppGerberEditor.py:5544
#: appTools/ToolTransform.py:298
msgid "Flip on Y"
msgstr "Voltear en Y"
-#: appEditors/appGeoEditor.py:871 appEditors/FlatCAMGrbEditor.py:5564
+#: appEditors/AppGeoEditor.py:871 appEditors/AppGerberEditor.py:5564
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:191
#: appTools/ToolTransform.py:318
msgid "X val"
msgstr "Valor X"
-#: appEditors/appGeoEditor.py:873 appEditors/FlatCAMGrbEditor.py:5566
+#: appEditors/AppGeoEditor.py:873 appEditors/AppGerberEditor.py:5566
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:193
#: appTools/ToolTransform.py:320
msgid "Distance to offset on X axis. In current units."
msgstr "Distancia a desplazamiento en el eje X. En unidades actuales."
-#: appEditors/appGeoEditor.py:880 appEditors/FlatCAMGrbEditor.py:5573
+#: appEditors/AppGeoEditor.py:880 appEditors/AppGerberEditor.py:5573
#: appTools/ToolTransform.py:327
msgid "Offset X"
msgstr "Offset X"
-#: appEditors/appGeoEditor.py:882 appEditors/appGeoEditor.py:902
-#: appEditors/FlatCAMGrbEditor.py:5575 appEditors/FlatCAMGrbEditor.py:5595
+#: appEditors/AppGeoEditor.py:882 appEditors/AppGeoEditor.py:902
+#: appEditors/AppGerberEditor.py:5575 appEditors/AppGerberEditor.py:5595
#: appTools/ToolTransform.py:329 appTools/ToolTransform.py:349
msgid ""
"Offset the selected object(s).\n"
@@ -2272,31 +2272,31 @@ msgstr ""
"El punto de referencia es el medio de\n"
"el cuadro delimitador para todos los objetos seleccionados.\n"
-#: appEditors/appGeoEditor.py:891 appEditors/FlatCAMGrbEditor.py:5584
+#: appEditors/AppGeoEditor.py:891 appEditors/AppGerberEditor.py:5584
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:204
#: appTools/ToolTransform.py:338
msgid "Y val"
msgstr "Valor Y"
-#: appEditors/appGeoEditor.py:893 appEditors/FlatCAMGrbEditor.py:5586
+#: appEditors/AppGeoEditor.py:893 appEditors/AppGerberEditor.py:5586
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:206
#: appTools/ToolTransform.py:340
msgid "Distance to offset on Y axis. In current units."
msgstr "Distancia a desplazamiento en el eje Y. En unidades actuales."
-#: appEditors/appGeoEditor.py:900 appEditors/FlatCAMGrbEditor.py:5593
+#: appEditors/AppGeoEditor.py:900 appEditors/AppGerberEditor.py:5593
#: appTools/ToolTransform.py:347
msgid "Offset Y"
msgstr "Offset Y"
-#: appEditors/appGeoEditor.py:920 appEditors/FlatCAMGrbEditor.py:5613
+#: appEditors/AppGeoEditor.py:920 appEditors/AppGerberEditor.py:5613
#: appGUI/preferences/tools/Tools2QRCodePrefGroupUI.py:142
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:216
#: appTools/ToolQRCode.py:206 appTools/ToolTransform.py:367
msgid "Rounded"
msgstr "Redondeado"
-#: appEditors/appGeoEditor.py:922 appEditors/FlatCAMGrbEditor.py:5615
+#: appEditors/AppGeoEditor.py:922 appEditors/AppGerberEditor.py:5615
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:218
#: appTools/ToolTransform.py:369
msgid ""
@@ -2310,14 +2310,14 @@ msgstr ""
"Si no está marcado, el búfer seguirá la geometría exacta\n"
"de la forma amortiguada."
-#: appEditors/appGeoEditor.py:930 appEditors/FlatCAMGrbEditor.py:5623
+#: appEditors/AppGeoEditor.py:930 appEditors/AppGerberEditor.py:5623
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:226
#: appTools/ToolDistance.py:505 appTools/ToolDistanceMin.py:286
#: appTools/ToolTransform.py:377
msgid "Distance"
msgstr "Distancia"
-#: appEditors/appGeoEditor.py:932 appEditors/FlatCAMGrbEditor.py:5625
+#: appEditors/AppGeoEditor.py:932 appEditors/AppGerberEditor.py:5625
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:228
#: appTools/ToolTransform.py:379
msgid ""
@@ -2331,12 +2331,12 @@ msgstr ""
"Cada elemento de geometría del objeto se incrementará\n"
"o disminuido con la 'distancia'."
-#: appEditors/appGeoEditor.py:944 appEditors/FlatCAMGrbEditor.py:5637
+#: appEditors/AppGeoEditor.py:944 appEditors/AppGerberEditor.py:5637
#: appTools/ToolTransform.py:391
msgid "Buffer D"
msgstr "Buffer D"
-#: appEditors/appGeoEditor.py:946 appEditors/FlatCAMGrbEditor.py:5639
+#: appEditors/AppGeoEditor.py:946 appEditors/AppGerberEditor.py:5639
#: appTools/ToolTransform.py:393
msgid ""
"Create the buffer effect on each geometry,\n"
@@ -2345,7 +2345,7 @@ msgstr ""
"Crea el efecto de amortiguación en cada geometría,\n"
"elemento del objeto seleccionado, utilizando la distancia."
-#: appEditors/appGeoEditor.py:957 appEditors/FlatCAMGrbEditor.py:5650
+#: appEditors/AppGeoEditor.py:957 appEditors/AppGerberEditor.py:5650
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:245
#: appTools/ToolTransform.py:404
msgid ""
@@ -2361,12 +2361,12 @@ msgstr ""
"o disminuido para ajustarse al 'Valor'. El Valor es un porcentaje\n"
"de la dimensión inicial."
-#: appEditors/appGeoEditor.py:970 appEditors/FlatCAMGrbEditor.py:5663
+#: appEditors/AppGeoEditor.py:970 appEditors/AppGerberEditor.py:5663
#: appTools/ToolTransform.py:417
msgid "Buffer F"
msgstr "Buffer F"
-#: appEditors/appGeoEditor.py:972 appEditors/FlatCAMGrbEditor.py:5665
+#: appEditors/AppGeoEditor.py:972 appEditors/AppGerberEditor.py:5665
#: appTools/ToolTransform.py:419
msgid ""
"Create the buffer effect on each geometry,\n"
@@ -2375,7 +2375,7 @@ msgstr ""
"Crea el efecto de amortiguación en cada geometría,\n"
"elemento del objeto seleccionado, utilizando el factor."
-#: appEditors/appGeoEditor.py:1043 appEditors/FlatCAMGrbEditor.py:5736
+#: appEditors/AppGeoEditor.py:1043 appEditors/AppGerberEditor.py:5736
#: appGUI/ObjectUI.py:1103 appGUI/ObjectUI.py:1958
#: appGUI/preferences/tools/Tools2CalPrefGroupUI.py:48
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
@@ -2386,328 +2386,328 @@ msgstr ""
msgid "Object"
msgstr "Objeto"
-#: appEditors/appGeoEditor.py:1107 appEditors/appGeoEditor.py:1130
-#: appEditors/appGeoEditor.py:1276 appEditors/appGeoEditor.py:1301
-#: appEditors/appGeoEditor.py:1335 appEditors/appGeoEditor.py:1370
-#: appEditors/appGeoEditor.py:1401 appEditors/FlatCAMGrbEditor.py:5800
-#: appEditors/FlatCAMGrbEditor.py:5823 appEditors/FlatCAMGrbEditor.py:5968
-#: appEditors/FlatCAMGrbEditor.py:6001 appEditors/FlatCAMGrbEditor.py:6044
-#: appEditors/FlatCAMGrbEditor.py:6085 appEditors/FlatCAMGrbEditor.py:6121
+#: appEditors/AppGeoEditor.py:1107 appEditors/AppGeoEditor.py:1130
+#: appEditors/AppGeoEditor.py:1276 appEditors/AppGeoEditor.py:1301
+#: appEditors/AppGeoEditor.py:1335 appEditors/AppGeoEditor.py:1370
+#: appEditors/AppGeoEditor.py:1401 appEditors/AppGerberEditor.py:5800
+#: appEditors/AppGerberEditor.py:5823 appEditors/AppGerberEditor.py:5968
+#: appEditors/AppGerberEditor.py:6001 appEditors/AppGerberEditor.py:6044
+#: appEditors/AppGerberEditor.py:6085 appEditors/AppGerberEditor.py:6121
msgid "No shape selected."
msgstr "Ninguna forma seleccionada."
-#: appEditors/appGeoEditor.py:1115 appEditors/FlatCAMGrbEditor.py:5808
+#: appEditors/AppGeoEditor.py:1115 appEditors/AppGerberEditor.py:5808
#: appTools/ToolTransform.py:585
msgid "Incorrect format for Point value. Needs format X,Y"
msgstr "Formato incorrecto para el valor del punto. Necesita formato X, Y"
-#: appEditors/appGeoEditor.py:1140 appEditors/FlatCAMGrbEditor.py:5833
+#: appEditors/AppGeoEditor.py:1140 appEditors/AppGerberEditor.py:5833
#: appTools/ToolTransform.py:602
msgid "Rotate transformation can not be done for a value of 0."
msgstr "La transformación de rotación no se puede hacer para un valor de 0."
-#: appEditors/appGeoEditor.py:1198 appEditors/appGeoEditor.py:1219
-#: appEditors/FlatCAMGrbEditor.py:5891 appEditors/FlatCAMGrbEditor.py:5912
+#: appEditors/AppGeoEditor.py:1198 appEditors/AppGeoEditor.py:1219
+#: appEditors/AppGerberEditor.py:5891 appEditors/AppGerberEditor.py:5912
#: appTools/ToolTransform.py:660 appTools/ToolTransform.py:681
msgid "Scale transformation can not be done for a factor of 0 or 1."
msgstr "La transformación de escala no se puede hacer para un factor de 0 o 1."
-#: appEditors/appGeoEditor.py:1232 appEditors/appGeoEditor.py:1241
-#: appEditors/FlatCAMGrbEditor.py:5925 appEditors/FlatCAMGrbEditor.py:5934
+#: appEditors/AppGeoEditor.py:1232 appEditors/AppGeoEditor.py:1241
+#: appEditors/AppGerberEditor.py:5925 appEditors/AppGerberEditor.py:5934
#: appTools/ToolTransform.py:694 appTools/ToolTransform.py:703
msgid "Offset transformation can not be done for a value of 0."
msgstr ""
"La transformación de compensación no se puede hacer para un valor de 0."
-#: appEditors/appGeoEditor.py:1271 appEditors/FlatCAMGrbEditor.py:5971
+#: appEditors/AppGeoEditor.py:1271 appEditors/AppGerberEditor.py:5971
#: appTools/ToolTransform.py:731
msgid "Appying Rotate"
msgstr "Aplicando rotar"
-#: appEditors/appGeoEditor.py:1284 appEditors/FlatCAMGrbEditor.py:5983
+#: appEditors/AppGeoEditor.py:1284 appEditors/AppGerberEditor.py:5983
msgid "Done. Rotate completed."
msgstr "Hecho. Rotación completada."
-#: appEditors/appGeoEditor.py:1286
+#: appEditors/AppGeoEditor.py:1286
msgid "Rotation action was not executed"
msgstr "La acción de rotación no se ejecutó"
-#: appEditors/appGeoEditor.py:1304 appEditors/FlatCAMGrbEditor.py:6004
+#: appEditors/AppGeoEditor.py:1304 appEditors/AppGerberEditor.py:6004
#: appTools/ToolTransform.py:757
msgid "Applying Flip"
msgstr "Aplicando Voltear"
-#: appEditors/appGeoEditor.py:1312 appEditors/FlatCAMGrbEditor.py:6016
+#: appEditors/AppGeoEditor.py:1312 appEditors/AppGerberEditor.py:6016
#: appTools/ToolTransform.py:774
msgid "Flip on the Y axis done"
msgstr "Voltear sobre el eje Y hecho"
-#: appEditors/appGeoEditor.py:1315 appEditors/FlatCAMGrbEditor.py:6024
+#: appEditors/AppGeoEditor.py:1315 appEditors/AppGerberEditor.py:6024
#: appTools/ToolTransform.py:783
msgid "Flip on the X axis done"
msgstr "Voltear en el eje X hecho"
-#: appEditors/appGeoEditor.py:1319
+#: appEditors/AppGeoEditor.py:1319
msgid "Flip action was not executed"
msgstr "La acción de voltear no se ejecutó"
-#: appEditors/appGeoEditor.py:1338 appEditors/FlatCAMGrbEditor.py:6047
+#: appEditors/AppGeoEditor.py:1338 appEditors/AppGerberEditor.py:6047
#: appTools/ToolTransform.py:804
msgid "Applying Skew"
msgstr "Aplicando Sesgo"
-#: appEditors/appGeoEditor.py:1347 appEditors/FlatCAMGrbEditor.py:6063
+#: appEditors/AppGeoEditor.py:1347 appEditors/AppGerberEditor.py:6063
msgid "Skew on the X axis done"
msgstr "Sesgar sobre el eje X hecho"
-#: appEditors/appGeoEditor.py:1349 appEditors/FlatCAMGrbEditor.py:6065
+#: appEditors/AppGeoEditor.py:1349 appEditors/AppGerberEditor.py:6065
msgid "Skew on the Y axis done"
msgstr "Sesgar sobre el eje Y hecho"
-#: appEditors/appGeoEditor.py:1352
+#: appEditors/AppGeoEditor.py:1352
msgid "Skew action was not executed"
msgstr "La acción sesgada no se ejecutó"
-#: appEditors/appGeoEditor.py:1373 appEditors/FlatCAMGrbEditor.py:6088
+#: appEditors/AppGeoEditor.py:1373 appEditors/AppGerberEditor.py:6088
#: appTools/ToolTransform.py:831
msgid "Applying Scale"
msgstr "Aplicando la escala"
-#: appEditors/appGeoEditor.py:1382 appEditors/FlatCAMGrbEditor.py:6101
+#: appEditors/AppGeoEditor.py:1382 appEditors/AppGerberEditor.py:6101
msgid "Scale on the X axis done"
msgstr "Escala en el eje X hecho"
-#: appEditors/appGeoEditor.py:1384 appEditors/FlatCAMGrbEditor.py:6103
+#: appEditors/AppGeoEditor.py:1384 appEditors/AppGerberEditor.py:6103
msgid "Scale on the Y axis done"
msgstr "Escala en el eje Y hecho"
-#: appEditors/appGeoEditor.py:1386
+#: appEditors/AppGeoEditor.py:1386
msgid "Scale action was not executed"
msgstr "La acción de escala no se ejecutó"
-#: appEditors/appGeoEditor.py:1404 appEditors/FlatCAMGrbEditor.py:6124
+#: appEditors/AppGeoEditor.py:1404 appEditors/AppGerberEditor.py:6124
#: appTools/ToolTransform.py:859
msgid "Applying Offset"
msgstr "Aplicando Offset"
-#: appEditors/appGeoEditor.py:1414 appEditors/FlatCAMGrbEditor.py:6145
+#: appEditors/AppGeoEditor.py:1414 appEditors/AppGerberEditor.py:6145
msgid "Offset on the X axis done"
msgstr "Offset en el eje X hecho"
-#: appEditors/appGeoEditor.py:1416 appEditors/FlatCAMGrbEditor.py:6147
+#: appEditors/AppGeoEditor.py:1416 appEditors/AppGerberEditor.py:6147
msgid "Offset on the Y axis done"
msgstr "Offset en el eje Y hecho"
-#: appEditors/appGeoEditor.py:1419
+#: appEditors/AppGeoEditor.py:1419
msgid "Offset action was not executed"
msgstr "La acción de desplazamiento no se ejecutó"
-#: appEditors/appGeoEditor.py:1426 appEditors/FlatCAMGrbEditor.py:6157
+#: appEditors/AppGeoEditor.py:1426 appEditors/AppGerberEditor.py:6157
msgid "No shape selected"
msgstr "Ninguna forma seleccionada"
-#: appEditors/appGeoEditor.py:1429 appEditors/FlatCAMGrbEditor.py:6160
+#: appEditors/AppGeoEditor.py:1429 appEditors/AppGerberEditor.py:6160
#: appTools/ToolTransform.py:889
msgid "Applying Buffer"
msgstr "Aplicando Tampón"
-#: appEditors/appGeoEditor.py:1436 appEditors/FlatCAMGrbEditor.py:6182
+#: appEditors/AppGeoEditor.py:1436 appEditors/AppGerberEditor.py:6182
#: appTools/ToolTransform.py:910
msgid "Buffer done"
msgstr "Tampón hecho"
-#: appEditors/appGeoEditor.py:1440 appEditors/FlatCAMGrbEditor.py:6186
+#: appEditors/AppGeoEditor.py:1440 appEditors/AppGerberEditor.py:6186
#: appTools/ToolTransform.py:879 appTools/ToolTransform.py:915
msgid "Action was not executed, due of"
msgstr "La acción no se ejecutó debido a"
-#: appEditors/appGeoEditor.py:1444 appEditors/FlatCAMGrbEditor.py:6190
+#: appEditors/AppGeoEditor.py:1444 appEditors/AppGerberEditor.py:6190
msgid "Rotate ..."
msgstr "Girar ..."
-#: appEditors/appGeoEditor.py:1445 appEditors/appGeoEditor.py:1494
-#: appEditors/appGeoEditor.py:1509 appEditors/FlatCAMGrbEditor.py:6191
-#: appEditors/FlatCAMGrbEditor.py:6240 appEditors/FlatCAMGrbEditor.py:6255
+#: appEditors/AppGeoEditor.py:1445 appEditors/AppGeoEditor.py:1494
+#: appEditors/AppGeoEditor.py:1509 appEditors/AppGerberEditor.py:6191
+#: appEditors/AppGerberEditor.py:6240 appEditors/AppGerberEditor.py:6255
msgid "Enter an Angle Value (degrees)"
msgstr "Ingrese un valor de ángulo (grados)"
-#: appEditors/appGeoEditor.py:1453 appEditors/FlatCAMGrbEditor.py:6199
+#: appEditors/AppGeoEditor.py:1453 appEditors/AppGerberEditor.py:6199
msgid "Geometry shape rotate done"
msgstr "Forma de geometría rotar hecho"
-#: appEditors/appGeoEditor.py:1456 appEditors/FlatCAMGrbEditor.py:6202
+#: appEditors/AppGeoEditor.py:1456 appEditors/AppGerberEditor.py:6202
msgid "Geometry shape rotate cancelled"
msgstr "Rotación de forma de geometría cancelada"
-#: appEditors/appGeoEditor.py:1461 appEditors/FlatCAMGrbEditor.py:6207
+#: appEditors/AppGeoEditor.py:1461 appEditors/AppGerberEditor.py:6207
msgid "Offset on X axis ..."
msgstr "Offset en el eje X ..."
-#: appEditors/appGeoEditor.py:1462 appEditors/appGeoEditor.py:1479
-#: appEditors/FlatCAMGrbEditor.py:6208 appEditors/FlatCAMGrbEditor.py:6225
+#: appEditors/AppGeoEditor.py:1462 appEditors/AppGeoEditor.py:1479
+#: appEditors/AppGerberEditor.py:6208 appEditors/AppGerberEditor.py:6225
msgid "Enter a distance Value"
msgstr "Ingrese un valor de distancia"
-#: appEditors/appGeoEditor.py:1470 appEditors/FlatCAMGrbEditor.py:6216
+#: appEditors/AppGeoEditor.py:1470 appEditors/AppGerberEditor.py:6216
msgid "Geometry shape offset on X axis done"
msgstr "Forma de geometría compensada en el eje X hecho"
-#: appEditors/appGeoEditor.py:1473 appEditors/FlatCAMGrbEditor.py:6219
+#: appEditors/AppGeoEditor.py:1473 appEditors/AppGerberEditor.py:6219
msgid "Geometry shape offset X cancelled"
msgstr "Desplazamiento de forma de geometría X cancelado"
-#: appEditors/appGeoEditor.py:1478 appEditors/FlatCAMGrbEditor.py:6224
+#: appEditors/AppGeoEditor.py:1478 appEditors/AppGerberEditor.py:6224
msgid "Offset on Y axis ..."
msgstr "Offset en eje Y ..."
-#: appEditors/appGeoEditor.py:1487 appEditors/FlatCAMGrbEditor.py:6233
+#: appEditors/AppGeoEditor.py:1487 appEditors/AppGerberEditor.py:6233
msgid "Geometry shape offset on Y axis done"
msgstr "Desplazamiento de forma de geometría en el eje Y hecho"
-#: appEditors/appGeoEditor.py:1490
+#: appEditors/AppGeoEditor.py:1490
msgid "Geometry shape offset on Y axis canceled"
msgstr "Desplazamiento de forma de geometría en eje Y cancelado"
-#: appEditors/appGeoEditor.py:1493 appEditors/FlatCAMGrbEditor.py:6239
+#: appEditors/AppGeoEditor.py:1493 appEditors/AppGerberEditor.py:6239
msgid "Skew on X axis ..."
msgstr "Sesgar en el eje X ..."
-#: appEditors/appGeoEditor.py:1502 appEditors/FlatCAMGrbEditor.py:6248
+#: appEditors/AppGeoEditor.py:1502 appEditors/AppGerberEditor.py:6248
msgid "Geometry shape skew on X axis done"
msgstr "Forma de geometría sesgada en el eje X hecho"
-#: appEditors/appGeoEditor.py:1505
+#: appEditors/AppGeoEditor.py:1505
msgid "Geometry shape skew on X axis canceled"
msgstr "Forma geométrica sesgada en el eje X cancelada"
-#: appEditors/appGeoEditor.py:1508 appEditors/FlatCAMGrbEditor.py:6254
+#: appEditors/AppGeoEditor.py:1508 appEditors/AppGerberEditor.py:6254
msgid "Skew on Y axis ..."
msgstr "Sesgar en el eje Y ..."
-#: appEditors/appGeoEditor.py:1517 appEditors/FlatCAMGrbEditor.py:6263
+#: appEditors/AppGeoEditor.py:1517 appEditors/AppGerberEditor.py:6263
msgid "Geometry shape skew on Y axis done"
msgstr "Forma de geometría sesgada en el eje Y hecho"
-#: appEditors/appGeoEditor.py:1520
+#: appEditors/AppGeoEditor.py:1520
msgid "Geometry shape skew on Y axis canceled"
msgstr "Forma geométrica sesgada en el eje Y cancelada"
-#: appEditors/appGeoEditor.py:1950 appEditors/appGeoEditor.py:2021
-#: appEditors/FlatCAMGrbEditor.py:1444 appEditors/FlatCAMGrbEditor.py:1522
+#: appEditors/AppGeoEditor.py:1950 appEditors/AppGeoEditor.py:2021
+#: appEditors/AppGerberEditor.py:1444 appEditors/AppGerberEditor.py:1522
msgid "Click on Center point ..."
msgstr "Haga clic en el punto central ..."
-#: appEditors/appGeoEditor.py:1963 appEditors/FlatCAMGrbEditor.py:1454
+#: appEditors/AppGeoEditor.py:1963 appEditors/AppGerberEditor.py:1454
msgid "Click on Perimeter point to complete ..."
msgstr "Haga clic en el punto del perímetro para completar ..."
-#: appEditors/appGeoEditor.py:1995
+#: appEditors/AppGeoEditor.py:1995
msgid "Done. Adding Circle completed."
msgstr "Hecho. Añadiendo círculo completado."
-#: appEditors/appGeoEditor.py:2049 appEditors/FlatCAMGrbEditor.py:1555
+#: appEditors/AppGeoEditor.py:2049 appEditors/AppGerberEditor.py:1555
msgid "Click on Start point ..."
msgstr "Haga clic en el punto de inicio ..."
-#: appEditors/appGeoEditor.py:2051 appEditors/FlatCAMGrbEditor.py:1557
+#: appEditors/AppGeoEditor.py:2051 appEditors/AppGerberEditor.py:1557
msgid "Click on Point3 ..."
msgstr "Haga clic en el punto 3 ..."
-#: appEditors/appGeoEditor.py:2053 appEditors/FlatCAMGrbEditor.py:1559
+#: appEditors/AppGeoEditor.py:2053 appEditors/AppGerberEditor.py:1559
msgid "Click on Stop point ..."
msgstr "Haga clic en el punto de parada ..."
-#: appEditors/appGeoEditor.py:2058 appEditors/FlatCAMGrbEditor.py:1564
+#: appEditors/AppGeoEditor.py:2058 appEditors/AppGerberEditor.py:1564
msgid "Click on Stop point to complete ..."
msgstr "Haga clic en el punto de parada para completar ..."
-#: appEditors/appGeoEditor.py:2060 appEditors/FlatCAMGrbEditor.py:1566
+#: appEditors/AppGeoEditor.py:2060 appEditors/AppGerberEditor.py:1566
msgid "Click on Point2 to complete ..."
msgstr "Haga clic en el punto 2 para completar ..."
-#: appEditors/appGeoEditor.py:2062 appEditors/FlatCAMGrbEditor.py:1568
+#: appEditors/AppGeoEditor.py:2062 appEditors/AppGerberEditor.py:1568
msgid "Click on Center point to complete ..."
msgstr "Haga clic en el punto central para completar ..."
-#: appEditors/appGeoEditor.py:2074
+#: appEditors/AppGeoEditor.py:2074
#, python-format
msgid "Direction: %s"
msgstr "Direccion: %s"
-#: appEditors/appGeoEditor.py:2088 appEditors/FlatCAMGrbEditor.py:1594
+#: appEditors/AppGeoEditor.py:2088 appEditors/AppGerberEditor.py:1594
msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
msgstr "Modo: Inicio -> Detener -> Centro. Haga clic en el punto de inicio ..."
-#: appEditors/appGeoEditor.py:2091 appEditors/FlatCAMGrbEditor.py:1597
+#: appEditors/AppGeoEditor.py:2091 appEditors/AppGerberEditor.py:1597
msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
msgstr "Modo: Punto1 -> Punto3 -> Punto2. Haga clic en el punto 1 ..."
-#: appEditors/appGeoEditor.py:2094 appEditors/FlatCAMGrbEditor.py:1600
+#: appEditors/AppGeoEditor.py:2094 appEditors/AppGerberEditor.py:1600
msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
msgstr "Modo: Centro -> Iniciar -> Detener. Haga clic en el punto central ..."
-#: appEditors/appGeoEditor.py:2235
+#: appEditors/AppGeoEditor.py:2235
msgid "Done. Arc completed."
msgstr "Hecho. Arco completado."
-#: appEditors/appGeoEditor.py:2266 appEditors/appGeoEditor.py:2339
+#: appEditors/AppGeoEditor.py:2266 appEditors/AppGeoEditor.py:2339
msgid "Click on 1st corner ..."
msgstr "Haga clic en la primera esquina ..."
-#: appEditors/appGeoEditor.py:2278
+#: appEditors/AppGeoEditor.py:2278
msgid "Click on opposite corner to complete ..."
msgstr "Haga clic en la esquina opuesta para completar ..."
-#: appEditors/appGeoEditor.py:2308
+#: appEditors/AppGeoEditor.py:2308
msgid "Done. Rectangle completed."
msgstr "Hecho. Rectángulo completado."
-#: appEditors/appGeoEditor.py:2383
+#: appEditors/AppGeoEditor.py:2383
msgid "Done. Polygon completed."
msgstr "Hecho. Polígono completado."
-#: appEditors/appGeoEditor.py:2397 appEditors/appGeoEditor.py:2462
-#: appEditors/FlatCAMGrbEditor.py:1102 appEditors/FlatCAMGrbEditor.py:1322
+#: appEditors/AppGeoEditor.py:2397 appEditors/AppGeoEditor.py:2462
+#: appEditors/AppGerberEditor.py:1102 appEditors/AppGerberEditor.py:1322
msgid "Backtracked one point ..."
msgstr "Retrocedido un punto ..."
-#: appEditors/appGeoEditor.py:2440
+#: appEditors/AppGeoEditor.py:2440
msgid "Done. Path completed."
msgstr "Hecho. Camino completado."
-#: appEditors/appGeoEditor.py:2599
+#: appEditors/AppGeoEditor.py:2599
msgid "No shape selected. Select a shape to explode"
msgstr "Ninguna forma seleccionada. Selecciona una forma para explotar"
-#: appEditors/appGeoEditor.py:2632
+#: appEditors/AppGeoEditor.py:2632
msgid "Done. Polygons exploded into lines."
msgstr "Hecho. Los polígonos explotaron en líneas."
-#: appEditors/appGeoEditor.py:2664
+#: appEditors/AppGeoEditor.py:2664
msgid "MOVE: No shape selected. Select a shape to move"
msgstr "MOVER: No se seleccionó la forma. Selecciona una forma para mover"
-#: appEditors/appGeoEditor.py:2667 appEditors/appGeoEditor.py:2687
+#: appEditors/AppGeoEditor.py:2667 appEditors/AppGeoEditor.py:2687
msgid " MOVE: Click on reference point ..."
msgstr " MOVER: haga clic en el punto de referencia ..."
-#: appEditors/appGeoEditor.py:2672
+#: appEditors/AppGeoEditor.py:2672
msgid " Click on destination point ..."
msgstr " Haga clic en el punto de destino ..."
-#: appEditors/appGeoEditor.py:2712
+#: appEditors/AppGeoEditor.py:2712
msgid "Done. Geometry(s) Move completed."
msgstr "Hecho. Geometría (s) Movimiento completado."
-#: appEditors/appGeoEditor.py:2845
+#: appEditors/AppGeoEditor.py:2845
msgid "Done. Geometry(s) Copy completed."
msgstr "Hecho. Geometría (s) Copia completada."
-#: appEditors/appGeoEditor.py:2876 appEditors/FlatCAMGrbEditor.py:897
+#: appEditors/AppGeoEditor.py:2876 appEditors/AppGerberEditor.py:897
msgid "Click on 1st point ..."
msgstr "Haga clic en el primer punto ..."
-#: appEditors/appGeoEditor.py:2900
+#: appEditors/AppGeoEditor.py:2900
msgid ""
"Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
"Error"
@@ -2715,83 +2715,83 @@ msgstr ""
"Fuente no soportada. Solo se admiten las versiones Regular, Bold, Italic y "
"BoldItalic. Error"
-#: appEditors/appGeoEditor.py:2908
+#: appEditors/AppGeoEditor.py:2908
msgid "No text to add."
msgstr "No hay texto para agregar."
-#: appEditors/appGeoEditor.py:2918
+#: appEditors/AppGeoEditor.py:2918
msgid " Done. Adding Text completed."
msgstr " Hecho. Agregando texto completado."
-#: appEditors/appGeoEditor.py:2955
+#: appEditors/AppGeoEditor.py:2955
msgid "Create buffer geometry ..."
msgstr "Crear geometría de búfer ..."
-#: appEditors/appGeoEditor.py:2990 appEditors/FlatCAMGrbEditor.py:5153
+#: appEditors/AppGeoEditor.py:2990 appEditors/AppGerberEditor.py:5153
msgid "Done. Buffer Tool completed."
msgstr "Hecho. Herramienta de amortiguación completada."
-#: appEditors/appGeoEditor.py:3018
+#: appEditors/AppGeoEditor.py:3018
msgid "Done. Buffer Int Tool completed."
msgstr "Hecho. Herramienta interna de búfer completada."
-#: appEditors/appGeoEditor.py:3046
+#: appEditors/AppGeoEditor.py:3046
msgid "Done. Buffer Ext Tool completed."
msgstr "Hecho. Herramienta externa de búfer completada."
-#: appEditors/appGeoEditor.py:3095 appEditors/FlatCAMGrbEditor.py:2160
+#: appEditors/AppGeoEditor.py:3095 appEditors/AppGerberEditor.py:2160
msgid "Select a shape to act as deletion area ..."
msgstr "Seleccione una forma para que actúe como área de eliminación ..."
-#: appEditors/appGeoEditor.py:3097 appEditors/appGeoEditor.py:3123
-#: appEditors/appGeoEditor.py:3129 appEditors/FlatCAMGrbEditor.py:2162
+#: appEditors/AppGeoEditor.py:3097 appEditors/AppGeoEditor.py:3123
+#: appEditors/AppGeoEditor.py:3129 appEditors/AppGerberEditor.py:2162
msgid "Click to pick-up the erase shape..."
msgstr "Haga clic para recoger la forma de borrar ..."
-#: appEditors/appGeoEditor.py:3133 appEditors/FlatCAMGrbEditor.py:2221
+#: appEditors/AppGeoEditor.py:3133 appEditors/AppGerberEditor.py:2221
msgid "Click to erase ..."
msgstr "Haga clic para borrar ..."
-#: appEditors/appGeoEditor.py:3162 appEditors/FlatCAMGrbEditor.py:2254
+#: appEditors/AppGeoEditor.py:3162 appEditors/AppGerberEditor.py:2254
msgid "Done. Eraser tool action completed."
msgstr "Hecho. Se ha completado la acción de la herramienta de borrador."
-#: appEditors/appGeoEditor.py:3212
+#: appEditors/AppGeoEditor.py:3212
msgid "Create Paint geometry ..."
msgstr "Crear geometría de pintura ..."
-#: appEditors/appGeoEditor.py:3225 appEditors/FlatCAMGrbEditor.py:2417
+#: appEditors/AppGeoEditor.py:3225 appEditors/AppGerberEditor.py:2417
msgid "Shape transformations ..."
msgstr "Transformaciones de formas ..."
-#: appEditors/appGeoEditor.py:3281
+#: appEditors/AppGeoEditor.py:3281
#: appGUI/preferences/geometry/GeometryEditorPrefGroupUI.py:27
msgid "Geometry Editor"
msgstr "Editor de geometría"
-#: appEditors/appGeoEditor.py:3287 appEditors/FlatCAMGrbEditor.py:2495
-#: appEditors/FlatCAMGrbEditor.py:3951 appGUI/ObjectUI.py:282
+#: appEditors/AppGeoEditor.py:3287 appEditors/AppGerberEditor.py:2495
+#: appEditors/AppGerberEditor.py:3951 appGUI/ObjectUI.py:282
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256 appTools/ToolCutOut.py:95
#: appTools/ToolTransform.py:92
msgid "Type"
msgstr "Tipo"
-#: appEditors/appGeoEditor.py:3287 appGUI/ObjectUI.py:221
+#: appEditors/AppGeoEditor.py:3287 appGUI/ObjectUI.py:221
#: appGUI/ObjectUI.py:521 appGUI/ObjectUI.py:1330 appGUI/ObjectUI.py:2165
#: appGUI/ObjectUI.py:2469 appGUI/ObjectUI.py:2536
#: appTools/ToolCalibration.py:234 appTools/ToolFiducials.py:70
msgid "Name"
msgstr "Nombre"
-#: appEditors/appGeoEditor.py:3539
+#: appEditors/AppGeoEditor.py:3539
msgid "Ring"
msgstr "Anillo"
-#: appEditors/appGeoEditor.py:3541
+#: appEditors/AppGeoEditor.py:3541
msgid "Line"
msgstr "Línea"
-#: appEditors/appGeoEditor.py:3543 appGUI/MainGUI.py:1446
+#: appEditors/AppGeoEditor.py:3543 appGUI/MainGUI.py:1446
#: appGUI/ObjectUI.py:1150 appGUI/ObjectUI.py:2005
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:226
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:299
@@ -2802,47 +2802,47 @@ msgstr "Línea"
msgid "Polygon"
msgstr "Polígono"
-#: appEditors/appGeoEditor.py:3545
+#: appEditors/AppGeoEditor.py:3545
msgid "Multi-Line"
msgstr "Multilínea"
-#: appEditors/appGeoEditor.py:3547
+#: appEditors/AppGeoEditor.py:3547
msgid "Multi-Polygon"
msgstr "Multi-polígono"
-#: appEditors/appGeoEditor.py:3554
+#: appEditors/AppGeoEditor.py:3554
msgid "Geo Elem"
msgstr "Elemento de Geo"
-#: appEditors/appGeoEditor.py:4007
+#: appEditors/AppGeoEditor.py:4007
msgid "Editing MultiGeo Geometry, tool"
msgstr "Edición de Geometría MultiGeo, herramienta"
-#: appEditors/appGeoEditor.py:4009
+#: appEditors/AppGeoEditor.py:4009
msgid "with diameter"
msgstr "con diámetro"
-#: appEditors/appGeoEditor.py:4081
+#: appEditors/AppGeoEditor.py:4081
msgid "Grid Snap enabled."
msgstr "Ajuste de rejilla habilitado."
-#: appEditors/appGeoEditor.py:4085
+#: appEditors/AppGeoEditor.py:4085
msgid "Grid Snap disabled."
msgstr "Ajuste de rejilla deshabilitado."
-#: appEditors/appGeoEditor.py:4446 appGUI/MainGUI.py:3046
+#: appEditors/AppGeoEditor.py:4446 appGUI/MainGUI.py:3046
#: appGUI/MainGUI.py:3092 appGUI/MainGUI.py:3110 appGUI/MainGUI.py:3254
#: appGUI/MainGUI.py:3293 appGUI/MainGUI.py:3305 appGUI/MainGUI.py:3322
msgid "Click on target point."
msgstr "Haga clic en el punto de destino."
-#: appEditors/appGeoEditor.py:4762 appEditors/appGeoEditor.py:4797
+#: appEditors/AppGeoEditor.py:4762 appEditors/AppGeoEditor.py:4797
msgid "A selection of at least 2 geo items is required to do Intersection."
msgstr ""
"Se requiere una selección de al menos 2 elementos geo para hacer "
"Intersección."
-#: appEditors/appGeoEditor.py:4883 appEditors/appGeoEditor.py:4987
+#: appEditors/AppGeoEditor.py:4883 appEditors/AppGeoEditor.py:4987
msgid ""
"Negative buffer value is not accepted. Use Buffer interior to generate an "
"'inside' shape"
@@ -2850,55 +2850,55 @@ msgstr ""
"No se acepta el valor de búfer negativo. Usa el interior del amortiguador "
"para generar una forma 'interior'"
-#: appEditors/appGeoEditor.py:4893 appEditors/appGeoEditor.py:4946
-#: appEditors/appGeoEditor.py:4996
+#: appEditors/AppGeoEditor.py:4893 appEditors/AppGeoEditor.py:4946
+#: appEditors/AppGeoEditor.py:4996
msgid "Nothing selected for buffering."
msgstr "Nada seleccionado para el almacenamiento en búfer."
-#: appEditors/appGeoEditor.py:4898 appEditors/appGeoEditor.py:4950
-#: appEditors/appGeoEditor.py:5001
+#: appEditors/AppGeoEditor.py:4898 appEditors/AppGeoEditor.py:4950
+#: appEditors/AppGeoEditor.py:5001
msgid "Invalid distance for buffering."
msgstr "Distancia no válida para el almacenamiento en búfer."
-#: appEditors/appGeoEditor.py:4922 appEditors/appGeoEditor.py:5021
+#: appEditors/AppGeoEditor.py:4922 appEditors/AppGeoEditor.py:5021
msgid "Failed, the result is empty. Choose a different buffer value."
msgstr "Falló, el resultado está vacío. Elija un valor de búfer diferente."
-#: appEditors/appGeoEditor.py:4933
+#: appEditors/AppGeoEditor.py:4933
msgid "Full buffer geometry created."
msgstr "Geometría de búfer completa creada."
-#: appEditors/appGeoEditor.py:4939
+#: appEditors/AppGeoEditor.py:4939
msgid "Negative buffer value is not accepted."
msgstr "No se acepta el valor negativo del búfer."
-#: appEditors/appGeoEditor.py:4970
+#: appEditors/AppGeoEditor.py:4970
msgid "Failed, the result is empty. Choose a smaller buffer value."
msgstr "Falló, el resultado está vacío. Elija un valor de búfer más pequeño."
-#: appEditors/appGeoEditor.py:4980
+#: appEditors/AppGeoEditor.py:4980
msgid "Interior buffer geometry created."
msgstr "Geometría de búfer interior creada."
-#: appEditors/appGeoEditor.py:5031
+#: appEditors/AppGeoEditor.py:5031
msgid "Exterior buffer geometry created."
msgstr "Geometría de búfer exterior creada."
-#: appEditors/appGeoEditor.py:5037
+#: appEditors/AppGeoEditor.py:5037
#, python-format
msgid "Could not do Paint. Overlap value has to be less than 100%%."
msgstr ""
"No se pudo pintar. El valor de superposición debe ser inferior al 100 %%."
-#: appEditors/appGeoEditor.py:5044
+#: appEditors/AppGeoEditor.py:5044
msgid "Nothing selected for painting."
msgstr "Nada seleccionado para pintar."
-#: appEditors/appGeoEditor.py:5050
+#: appEditors/AppGeoEditor.py:5050
msgid "Invalid value for"
msgstr "Valor no válido para"
-#: appEditors/appGeoEditor.py:5109
+#: appEditors/AppGeoEditor.py:5109
msgid ""
"Could not do Paint. Try a different combination of parameters. Or a "
"different method of Paint"
@@ -2906,159 +2906,159 @@ msgstr ""
"No se pudo pintar. Pruebe con una combinación diferente de parámetros. O un "
"método diferente de pintura"
-#: appEditors/appGeoEditor.py:5120
+#: appEditors/AppGeoEditor.py:5120
msgid "Paint done."
msgstr "Pintura hecha."
-#: appEditors/FlatCAMGrbEditor.py:211
+#: appEditors/AppGerberEditor.py:211
msgid "To add an Pad first select a aperture in Aperture Table"
msgstr ""
"Para agregar un Pad primero, seleccione una abertura en la Tabla de Aperture"
-#: appEditors/FlatCAMGrbEditor.py:218 appEditors/FlatCAMGrbEditor.py:418
+#: appEditors/AppGerberEditor.py:218 appEditors/AppGerberEditor.py:418
msgid "Aperture size is zero. It needs to be greater than zero."
msgstr "El tamaño de la abertura es cero. Tiene que ser mayor que cero."
-#: appEditors/FlatCAMGrbEditor.py:371 appEditors/FlatCAMGrbEditor.py:684
+#: appEditors/AppGerberEditor.py:371 appEditors/AppGerberEditor.py:684
msgid ""
"Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
msgstr ""
"Tipo de apertura incompatible. Seleccione una abertura con el tipo 'C', 'R' "
"o 'O'."
-#: appEditors/FlatCAMGrbEditor.py:383
+#: appEditors/AppGerberEditor.py:383
msgid "Done. Adding Pad completed."
msgstr "Hecho. Añadiendo Pad completado."
-#: appEditors/FlatCAMGrbEditor.py:410
+#: appEditors/AppGerberEditor.py:410
msgid "To add an Pad Array first select a aperture in Aperture Table"
msgstr ""
"Para agregar un Pad Array, primero seleccione una abertura en la Tabla de "
"Aperturas"
-#: appEditors/FlatCAMGrbEditor.py:490
+#: appEditors/AppGerberEditor.py:490
msgid "Click on the Pad Circular Array Start position"
msgstr "Haga clic en la posición de inicio Pad Array Circular"
-#: appEditors/FlatCAMGrbEditor.py:710
+#: appEditors/AppGerberEditor.py:710
msgid "Too many Pads for the selected spacing angle."
msgstr "Demasiados pads para el ángulo de espaciado seleccionado."
-#: appEditors/FlatCAMGrbEditor.py:733
+#: appEditors/AppGerberEditor.py:733
msgid "Done. Pad Array added."
msgstr "Hecho. Pad Array añadido."
-#: appEditors/FlatCAMGrbEditor.py:758
+#: appEditors/AppGerberEditor.py:758
msgid "Select shape(s) and then click ..."
msgstr "Seleccione forma (s) y luego haga clic en ..."
-#: appEditors/FlatCAMGrbEditor.py:770
+#: appEditors/AppGerberEditor.py:770
msgid "Failed. Nothing selected."
msgstr "Ha fallado. Nada seleccionado."
-#: appEditors/FlatCAMGrbEditor.py:786
+#: appEditors/AppGerberEditor.py:786
msgid ""
"Failed. Poligonize works only on geometries belonging to the same aperture."
msgstr ""
"Ha fallado. Poligonize funciona solo en geometrías pertenecientes a la misma "
"abertura."
-#: appEditors/FlatCAMGrbEditor.py:840
+#: appEditors/AppGerberEditor.py:840
msgid "Done. Poligonize completed."
msgstr "Hecho. Poligonize completado."
-#: appEditors/FlatCAMGrbEditor.py:895 appEditors/FlatCAMGrbEditor.py:1119
-#: appEditors/FlatCAMGrbEditor.py:1143
+#: appEditors/AppGerberEditor.py:895 appEditors/AppGerberEditor.py:1119
+#: appEditors/AppGerberEditor.py:1143
msgid "Corner Mode 1: 45 degrees ..."
msgstr "Modo esquina 1: 45 grados ..."
-#: appEditors/FlatCAMGrbEditor.py:907 appEditors/FlatCAMGrbEditor.py:1219
+#: appEditors/AppGerberEditor.py:907 appEditors/AppGerberEditor.py:1219
msgid "Click on next Point or click Right mouse button to complete ..."
msgstr ""
"Haga clic en el siguiente punto o haga clic con el botón derecho del mouse "
"para completar ..."
-#: appEditors/FlatCAMGrbEditor.py:1107 appEditors/FlatCAMGrbEditor.py:1140
+#: appEditors/AppGerberEditor.py:1107 appEditors/AppGerberEditor.py:1140
msgid "Corner Mode 2: Reverse 45 degrees ..."
msgstr "Modo esquina 2: Invertir 45 grados ..."
-#: appEditors/FlatCAMGrbEditor.py:1110 appEditors/FlatCAMGrbEditor.py:1137
+#: appEditors/AppGerberEditor.py:1110 appEditors/AppGerberEditor.py:1137
msgid "Corner Mode 3: 90 degrees ..."
msgstr "Modo esquina 3: 90 grados ..."
-#: appEditors/FlatCAMGrbEditor.py:1113 appEditors/FlatCAMGrbEditor.py:1134
+#: appEditors/AppGerberEditor.py:1113 appEditors/AppGerberEditor.py:1134
msgid "Corner Mode 4: Reverse 90 degrees ..."
msgstr "Modo esquina 4: Invertir 90 grados ..."
-#: appEditors/FlatCAMGrbEditor.py:1116 appEditors/FlatCAMGrbEditor.py:1131
+#: appEditors/AppGerberEditor.py:1116 appEditors/AppGerberEditor.py:1131
msgid "Corner Mode 5: Free angle ..."
msgstr "Modo esquina 5: ángulo libre ..."
-#: appEditors/FlatCAMGrbEditor.py:1193 appEditors/FlatCAMGrbEditor.py:1358
-#: appEditors/FlatCAMGrbEditor.py:1397
+#: appEditors/AppGerberEditor.py:1193 appEditors/AppGerberEditor.py:1358
+#: appEditors/AppGerberEditor.py:1397
msgid "Track Mode 1: 45 degrees ..."
msgstr "Modo de pista 1: 45 grados ..."
-#: appEditors/FlatCAMGrbEditor.py:1338 appEditors/FlatCAMGrbEditor.py:1392
+#: appEditors/AppGerberEditor.py:1338 appEditors/AppGerberEditor.py:1392
msgid "Track Mode 2: Reverse 45 degrees ..."
msgstr "Modo de pista 2: Invertir 45 grados ..."
-#: appEditors/FlatCAMGrbEditor.py:1343 appEditors/FlatCAMGrbEditor.py:1387
+#: appEditors/AppGerberEditor.py:1343 appEditors/AppGerberEditor.py:1387
msgid "Track Mode 3: 90 degrees ..."
msgstr "Modo de pista 3: 90 grados ..."
-#: appEditors/FlatCAMGrbEditor.py:1348 appEditors/FlatCAMGrbEditor.py:1382
+#: appEditors/AppGerberEditor.py:1348 appEditors/AppGerberEditor.py:1382
msgid "Track Mode 4: Reverse 90 degrees ..."
msgstr "Modo de pista 4: Invertir 90 grados ..."
-#: appEditors/FlatCAMGrbEditor.py:1353 appEditors/FlatCAMGrbEditor.py:1377
+#: appEditors/AppGerberEditor.py:1353 appEditors/AppGerberEditor.py:1377
msgid "Track Mode 5: Free angle ..."
msgstr "Modo de pista 5: ángulo libre ..."
-#: appEditors/FlatCAMGrbEditor.py:1787
+#: appEditors/AppGerberEditor.py:1787
msgid "Scale the selected Gerber apertures ..."
msgstr "Escala las aperturas seleccionadas de Gerber ..."
-#: appEditors/FlatCAMGrbEditor.py:1829
+#: appEditors/AppGerberEditor.py:1829
msgid "Buffer the selected apertures ..."
msgstr "Buffer de las aberturas seleccionadas ..."
-#: appEditors/FlatCAMGrbEditor.py:1871
+#: appEditors/AppGerberEditor.py:1871
msgid "Mark polygon areas in the edited Gerber ..."
msgstr "Marcar áreas de polígono en el Gerber editado ..."
-#: appEditors/FlatCAMGrbEditor.py:1937
+#: appEditors/AppGerberEditor.py:1937
msgid "Nothing selected to move"
msgstr "Nada seleccionado para mover"
-#: appEditors/FlatCAMGrbEditor.py:2062
+#: appEditors/AppGerberEditor.py:2062
msgid "Done. Apertures Move completed."
msgstr "Hecho. Movimiento de aperturas completado."
-#: appEditors/FlatCAMGrbEditor.py:2144
+#: appEditors/AppGerberEditor.py:2144
msgid "Done. Apertures copied."
msgstr "Hecho. Aberturas copiadas."
-#: appEditors/FlatCAMGrbEditor.py:2462 appGUI/MainGUI.py:1477
+#: appEditors/AppGerberEditor.py:2462 appGUI/MainGUI.py:1477
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:27
msgid "Gerber Editor"
msgstr "Gerber Editor"
-#: appEditors/FlatCAMGrbEditor.py:2482 appGUI/ObjectUI.py:247
+#: appEditors/AppGerberEditor.py:2482 appGUI/ObjectUI.py:247
#: appTools/ToolProperties.py:159
msgid "Apertures"
msgstr "Aberturas"
-#: appEditors/FlatCAMGrbEditor.py:2484 appGUI/ObjectUI.py:249
+#: appEditors/AppGerberEditor.py:2484 appGUI/ObjectUI.py:249
msgid "Apertures Table for the Gerber Object."
msgstr "Tabla de Aperturas para el Objeto Gerber."
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Code"
msgstr "Código"
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
#: appGUI/preferences/general/GeneralAPPSetGroupUI.py:103
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:167
@@ -3069,29 +3069,29 @@ msgstr "Código"
msgid "Size"
msgstr "Tamaño"
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Dim"
msgstr "Dim"
-#: appEditors/FlatCAMGrbEditor.py:2500 appGUI/ObjectUI.py:286
+#: appEditors/AppGerberEditor.py:2500 appGUI/ObjectUI.py:286
msgid "Index"
msgstr "Índice"
-#: appEditors/FlatCAMGrbEditor.py:2502 appEditors/FlatCAMGrbEditor.py:2531
+#: appEditors/AppGerberEditor.py:2502 appEditors/AppGerberEditor.py:2531
#: appGUI/ObjectUI.py:288
msgid "Aperture Code"
msgstr "Código de apertura"
-#: appEditors/FlatCAMGrbEditor.py:2504 appGUI/ObjectUI.py:290
+#: appEditors/AppGerberEditor.py:2504 appGUI/ObjectUI.py:290
msgid "Type of aperture: circular, rectangle, macros etc"
msgstr "Tipo de apertura: circular, rectangular, macros, etc"
-#: appEditors/FlatCAMGrbEditor.py:2506 appGUI/ObjectUI.py:292
+#: appEditors/AppGerberEditor.py:2506 appGUI/ObjectUI.py:292
msgid "Aperture Size:"
msgstr "Tamaño de apertura:"
-#: appEditors/FlatCAMGrbEditor.py:2508 appGUI/ObjectUI.py:294
+#: appEditors/AppGerberEditor.py:2508 appGUI/ObjectUI.py:294
msgid ""
"Aperture Dimensions:\n"
" - (width, height) for R, O type.\n"
@@ -3101,16 +3101,16 @@ msgstr ""
" - (ancho, alto) para R, O tipo.\n"
" - (dia, nVertices) para tipo P"
-#: appEditors/FlatCAMGrbEditor.py:2532
+#: appEditors/AppGerberEditor.py:2532
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:58
msgid "Code for the new aperture"
msgstr "Código para la nueva apertura"
-#: appEditors/FlatCAMGrbEditor.py:2541
+#: appEditors/AppGerberEditor.py:2541
msgid "Aperture Size"
msgstr "Tamaño de apertura"
-#: appEditors/FlatCAMGrbEditor.py:2543
+#: appEditors/AppGerberEditor.py:2543
msgid ""
"Size for the new aperture.\n"
"If aperture type is 'R' or 'O' then\n"
@@ -3124,11 +3124,11 @@ msgstr ""
"calculado como:\n"
"sqrt (ancho ** 2 + altura ** 2)"
-#: appEditors/FlatCAMGrbEditor.py:2557
+#: appEditors/AppGerberEditor.py:2557
msgid "Aperture Type"
msgstr "Tipo de apertura"
-#: appEditors/FlatCAMGrbEditor.py:2559
+#: appEditors/AppGerberEditor.py:2559
msgid ""
"Select the type of new aperture. Can be:\n"
"C = circular\n"
@@ -3140,11 +3140,11 @@ msgstr ""
"R = rectangular\n"
"O = oblongo"
-#: appEditors/FlatCAMGrbEditor.py:2570
+#: appEditors/AppGerberEditor.py:2570
msgid "Aperture Dim"
msgstr "Apertura Dim"
-#: appEditors/FlatCAMGrbEditor.py:2572
+#: appEditors/AppGerberEditor.py:2572
msgid ""
"Dimensions for the new aperture.\n"
"Active only for rectangular apertures (type R).\n"
@@ -3154,19 +3154,19 @@ msgstr ""
"Activo solo para aberturas rectangulares (tipo R).\n"
"El formato es (ancho, alto)."
-#: appEditors/FlatCAMGrbEditor.py:2581
+#: appEditors/AppGerberEditor.py:2581
msgid "Add/Delete Aperture"
msgstr "Añadir / Eliminar Apertura"
-#: appEditors/FlatCAMGrbEditor.py:2583
+#: appEditors/AppGerberEditor.py:2583
msgid "Add/Delete an aperture in the aperture table"
msgstr "Añadir / Eliminar una apertura en la tabla de aperturas"
-#: appEditors/FlatCAMGrbEditor.py:2592
+#: appEditors/AppGerberEditor.py:2592
msgid "Add a new aperture to the aperture list."
msgstr "Agregar una nueva apertura a la lista de apertura."
-#: appEditors/FlatCAMGrbEditor.py:2595 appEditors/FlatCAMGrbEditor.py:2743
+#: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743
#: appGUI/MainGUI.py:748 appGUI/MainGUI.py:1068 appGUI/MainGUI.py:1527
#: appGUI/MainGUI.py:2099 appGUI/MainGUI.py:4514 appGUI/ObjectUI.py:1525
#: appObjects/FlatCAMGeometry.py:563 appTools/ToolIsolation.py:298
@@ -3177,28 +3177,28 @@ msgstr "Agregar una nueva apertura a la lista de apertura."
msgid "Delete"
msgstr "Borrar"
-#: appEditors/FlatCAMGrbEditor.py:2597
+#: appEditors/AppGerberEditor.py:2597
msgid "Delete a aperture in the aperture list"
msgstr "Eliminar una abertura en la lista de aperturas"
-#: appEditors/FlatCAMGrbEditor.py:2614
+#: appEditors/AppGerberEditor.py:2614
msgid "Buffer Aperture"
msgstr "Apertura del tampón"
-#: appEditors/FlatCAMGrbEditor.py:2616
+#: appEditors/AppGerberEditor.py:2616
msgid "Buffer a aperture in the aperture list"
msgstr "Buffer de apertura en la lista de apertura"
-#: appEditors/FlatCAMGrbEditor.py:2629
+#: appEditors/AppGerberEditor.py:2629
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:195
msgid "Buffer distance"
msgstr "Dist. de buffer"
-#: appEditors/FlatCAMGrbEditor.py:2630
+#: appEditors/AppGerberEditor.py:2630
msgid "Buffer corner"
msgstr "Rincón del búfer"
-#: appEditors/FlatCAMGrbEditor.py:2632
+#: appEditors/AppGerberEditor.py:2632
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded.\n"
@@ -3212,20 +3212,20 @@ msgstr ""
" - 'Biselado:' la esquina es una línea que conecta directamente las "
"funciones que se encuentran en la esquina"
-#: appEditors/FlatCAMGrbEditor.py:2662
+#: appEditors/AppGerberEditor.py:2662
msgid "Scale Aperture"
msgstr "Apertura de la escala"
-#: appEditors/FlatCAMGrbEditor.py:2664
+#: appEditors/AppGerberEditor.py:2664
msgid "Scale a aperture in the aperture list"
msgstr "Escala una abertura en la lista de aperturas"
-#: appEditors/FlatCAMGrbEditor.py:2672
+#: appEditors/AppGerberEditor.py:2672
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:210
msgid "Scale factor"
msgstr "Factor de escala"
-#: appEditors/FlatCAMGrbEditor.py:2674
+#: appEditors/AppGerberEditor.py:2674
msgid ""
"The factor by which to scale the selected aperture.\n"
"Values can be between 0.0000 and 999.9999"
@@ -3233,19 +3233,19 @@ msgstr ""
"El factor por el cual escalar la apertura seleccionada.\n"
"Los valores pueden estar entre 0.0000 y 999.9999"
-#: appEditors/FlatCAMGrbEditor.py:2702
+#: appEditors/AppGerberEditor.py:2702
msgid "Mark polygons"
msgstr "Marcar polígonos"
-#: appEditors/FlatCAMGrbEditor.py:2704
+#: appEditors/AppGerberEditor.py:2704
msgid "Mark the polygon areas."
msgstr "Marca las áreas del polígono."
-#: appEditors/FlatCAMGrbEditor.py:2712
+#: appEditors/AppGerberEditor.py:2712
msgid "Area UPPER threshold"
msgstr "Umbral SUPERIOR área"
-#: appEditors/FlatCAMGrbEditor.py:2714
+#: appEditors/AppGerberEditor.py:2714
msgid ""
"The threshold value, all areas less than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3253,11 +3253,11 @@ msgstr ""
"El valor de umbral, todas las áreas menos que esto están marcadas.\n"
"Puede tener un valor entre 0.0000 y 9999.9999"
-#: appEditors/FlatCAMGrbEditor.py:2721
+#: appEditors/AppGerberEditor.py:2721
msgid "Area LOWER threshold"
msgstr "Umbral inferior de la zona"
-#: appEditors/FlatCAMGrbEditor.py:2723
+#: appEditors/AppGerberEditor.py:2723
msgid ""
"The threshold value, all areas more than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3265,32 +3265,32 @@ msgstr ""
"El valor de umbral, todas las áreas más que esto están marcadas.\n"
"Puede tener un valor entre 0.0000 y 9999.9999"
-#: appEditors/FlatCAMGrbEditor.py:2737
+#: appEditors/AppGerberEditor.py:2737
msgid "Mark"
msgstr "Marque"
-#: appEditors/FlatCAMGrbEditor.py:2739
+#: appEditors/AppGerberEditor.py:2739
msgid "Mark the polygons that fit within limits."
msgstr "Marque los polígonos que se ajustan dentro de los límites."
-#: appEditors/FlatCAMGrbEditor.py:2745
+#: appEditors/AppGerberEditor.py:2745
msgid "Delete all the marked polygons."
msgstr "Eliminar todos los polígonos marcados."
-#: appEditors/FlatCAMGrbEditor.py:2751
+#: appEditors/AppGerberEditor.py:2751
msgid "Clear all the markings."
msgstr "Borra todas las marcas."
-#: appEditors/FlatCAMGrbEditor.py:2771 appGUI/MainGUI.py:1040
+#: appEditors/AppGerberEditor.py:2771 appGUI/MainGUI.py:1040
#: appGUI/MainGUI.py:2072 appGUI/MainGUI.py:4511
msgid "Add Pad Array"
msgstr "Agregar matriz de pad"
-#: appEditors/FlatCAMGrbEditor.py:2773
+#: appEditors/AppGerberEditor.py:2773
msgid "Add an array of pads (linear or circular array)"
msgstr "Añadir una matriz de pads (lineal o circular)"
-#: appEditors/FlatCAMGrbEditor.py:2779
+#: appEditors/AppGerberEditor.py:2779
msgid ""
"Select the type of pads array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -3298,17 +3298,17 @@ msgstr ""
"Seleccione el tipo de matriz de pads para crear.\n"
"Puede ser Lineal X (Y) o Circular"
-#: appEditors/FlatCAMGrbEditor.py:2790
+#: appEditors/AppGerberEditor.py:2790
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:95
msgid "Nr of pads"
msgstr "Nº de almohadillas"
-#: appEditors/FlatCAMGrbEditor.py:2792
+#: appEditors/AppGerberEditor.py:2792
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:97
msgid "Specify how many pads to be in the array."
msgstr "Especifique cuántos pads estarán en la matriz."
-#: appEditors/FlatCAMGrbEditor.py:2841
+#: appEditors/AppGerberEditor.py:2841
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -3320,13 +3320,13 @@ msgstr ""
"El valor mínimo es: -359.99 grados.\n"
"El valor máximo es: 360.00 grados."
-#: appEditors/FlatCAMGrbEditor.py:3335 appEditors/FlatCAMGrbEditor.py:3339
+#: appEditors/AppGerberEditor.py:3335 appEditors/AppGerberEditor.py:3339
msgid "Aperture code value is missing or wrong format. Add it and retry."
msgstr ""
"Falta el valor del código de apertura o el formato es incorrecto. Agrégalo y "
"vuelve a intentarlo."
-#: appEditors/FlatCAMGrbEditor.py:3375
+#: appEditors/AppGerberEditor.py:3375
msgid ""
"Aperture dimensions value is missing or wrong format. Add it in format "
"(width, height) and retry."
@@ -3334,156 +3334,156 @@ msgstr ""
"Falta el valor de las dimensiones de la abertura o el formato es incorrecto. "
"Agréguelo en formato (ancho, alto) y vuelva a intentarlo."
-#: appEditors/FlatCAMGrbEditor.py:3388
+#: appEditors/AppGerberEditor.py:3388
msgid "Aperture size value is missing or wrong format. Add it and retry."
msgstr ""
"Falta el valor del tamaño de la apertura o el formato es incorrecto. "
"Agrégalo y vuelve a intentarlo."
-#: appEditors/FlatCAMGrbEditor.py:3399
+#: appEditors/AppGerberEditor.py:3399
msgid "Aperture already in the aperture table."
msgstr "Apertura ya en la mesa de apertura."
-#: appEditors/FlatCAMGrbEditor.py:3406
+#: appEditors/AppGerberEditor.py:3406
msgid "Added new aperture with code"
msgstr "Agregada nueva apertura con código"
-#: appEditors/FlatCAMGrbEditor.py:3438
+#: appEditors/AppGerberEditor.py:3438
msgid " Select an aperture in Aperture Table"
msgstr " Seleccione una abertura en la Mesa de Apertura"
-#: appEditors/FlatCAMGrbEditor.py:3446
+#: appEditors/AppGerberEditor.py:3446
msgid "Select an aperture in Aperture Table -->"
msgstr "Seleccione una abertura en la Tabla de Apertura ->"
-#: appEditors/FlatCAMGrbEditor.py:3460
+#: appEditors/AppGerberEditor.py:3460
msgid "Deleted aperture with code"
msgstr "Apertura eliminada con código"
-#: appEditors/FlatCAMGrbEditor.py:3528
+#: appEditors/AppGerberEditor.py:3528
msgid "Dimensions need two float values separated by comma."
msgstr "Las dimensiones necesitan dos valores flotantes separados por comas."
-#: appEditors/FlatCAMGrbEditor.py:3537
+#: appEditors/AppGerberEditor.py:3537
msgid "Dimensions edited."
msgstr "Dimensiones editadas."
-#: appEditors/FlatCAMGrbEditor.py:4066
+#: appEditors/AppGerberEditor.py:4066
msgid "Loading Gerber into Editor"
msgstr "Cargando Gerber en el Editor"
-#: appEditors/FlatCAMGrbEditor.py:4194
+#: appEditors/AppGerberEditor.py:4194
msgid "Setting up the UI"
msgstr "Configurar la IU"
-#: appEditors/FlatCAMGrbEditor.py:4195
+#: appEditors/AppGerberEditor.py:4195
msgid "Adding geometry finished. Preparing the GUI"
msgstr "Adición de geometría terminada. Preparando la GUI"
-#: appEditors/FlatCAMGrbEditor.py:4204
+#: appEditors/AppGerberEditor.py:4204
msgid "Finished loading the Gerber object into the editor."
msgstr "Terminó de cargar el objeto Gerber en el editor."
-#: appEditors/FlatCAMGrbEditor.py:4345
+#: appEditors/AppGerberEditor.py:4345
msgid ""
"There are no Aperture definitions in the file. Aborting Gerber creation."
msgstr ""
"No hay definiciones de Aperture en el archivo. Abortando la creación de "
"Gerber."
-#: appEditors/FlatCAMGrbEditor.py:4347 appObjects/AppObject.py:133
+#: appEditors/AppGerberEditor.py:4347 appObjects/AppObject.py:133
#: appObjects/FlatCAMGeometry.py:1786 appParsers/ParseExcellon.py:896
#: appTools/ToolPcbWizard.py:432 app_Main.py:8589 app_Main.py:8653
#: app_Main.py:8784 app_Main.py:8849 app_Main.py:9501
msgid "An internal error has occurred. See shell.\n"
msgstr "Ha ocurrido un error interno. Ver concha\n"
-#: appEditors/FlatCAMGrbEditor.py:4355
+#: appEditors/AppGerberEditor.py:4355
msgid "Creating Gerber."
msgstr "Creación de Gerber."
-#: appEditors/FlatCAMGrbEditor.py:4367
+#: appEditors/AppGerberEditor.py:4367
msgid "Done. Gerber editing finished."
msgstr "La edición de gerber terminó."
-#: appEditors/FlatCAMGrbEditor.py:4383
+#: appEditors/AppGerberEditor.py:4383
msgid "Cancelled. No aperture is selected"
msgstr "Cancelado. No se selecciona ninguna apertura"
-#: appEditors/FlatCAMGrbEditor.py:4538 app_Main.py:6122
+#: appEditors/AppGerberEditor.py:4538 app_Main.py:6122
msgid "Coordinates copied to clipboard."
msgstr "Coordenadas copiadas al portapapeles."
-#: appEditors/FlatCAMGrbEditor.py:4985
+#: appEditors/AppGerberEditor.py:4985
msgid "Failed. No aperture geometry is selected."
msgstr "Ha fallado. No se selecciona ninguna geometría de apertura."
-#: appEditors/FlatCAMGrbEditor.py:4994 appEditors/FlatCAMGrbEditor.py:5265
+#: appEditors/AppGerberEditor.py:4994 appEditors/AppGerberEditor.py:5265
msgid "Done. Apertures geometry deleted."
msgstr "Hecho. Geometría de las aberturas eliminadas."
-#: appEditors/FlatCAMGrbEditor.py:5137
+#: appEditors/AppGerberEditor.py:5137
msgid "No aperture to buffer. Select at least one aperture and try again."
msgstr ""
"No hay apertura para amortiguar. Seleccione al menos una abertura e intente "
"de nuevo."
-#: appEditors/FlatCAMGrbEditor.py:5149
+#: appEditors/AppGerberEditor.py:5149
msgid "Failed."
msgstr "Ha fallado."
-#: appEditors/FlatCAMGrbEditor.py:5168
+#: appEditors/AppGerberEditor.py:5168
msgid "Scale factor value is missing or wrong format. Add it and retry."
msgstr ""
"Falta el valor del factor de escala o el formato es incorrecto. Agrégalo y "
"vuelve a intentarlo."
-#: appEditors/FlatCAMGrbEditor.py:5200
+#: appEditors/AppGerberEditor.py:5200
msgid "No aperture to scale. Select at least one aperture and try again."
msgstr ""
"Sin apertura a escala. Seleccione al menos una abertura e intente de nuevo."
-#: appEditors/FlatCAMGrbEditor.py:5216
+#: appEditors/AppGerberEditor.py:5216
msgid "Done. Scale Tool completed."
msgstr "Hecho. Herramienta de escala completada."
-#: appEditors/FlatCAMGrbEditor.py:5254
+#: appEditors/AppGerberEditor.py:5254
msgid "Polygons marked."
msgstr "Polígonos marcados."
-#: appEditors/FlatCAMGrbEditor.py:5257
+#: appEditors/AppGerberEditor.py:5257
msgid "No polygons were marked. None fit within the limits."
msgstr "No se marcaron polígonos. Ninguno encaja dentro de los límites."
-#: appEditors/FlatCAMGrbEditor.py:5985
+#: appEditors/AppGerberEditor.py:5985
msgid "Rotation action was not executed."
msgstr "La acción de Rotación no se ejecutó."
-#: appEditors/FlatCAMGrbEditor.py:6027 app_Main.py:5556 app_Main.py:5604
+#: appEditors/AppGerberEditor.py:6027 app_Main.py:5556 app_Main.py:5604
msgid "Flip action was not executed."
msgstr "La acción de voltear no se ejecutó."
-#: appEditors/FlatCAMGrbEditor.py:6067
+#: appEditors/AppGerberEditor.py:6067
msgid "Skew action was not executed."
msgstr "La acción Sesgada no se ejecutó."
-#: appEditors/FlatCAMGrbEditor.py:6106
+#: appEditors/AppGerberEditor.py:6106
msgid "Scale action was not executed."
msgstr "La acción de Escala no se ejecutó."
-#: appEditors/FlatCAMGrbEditor.py:6150
+#: appEditors/AppGerberEditor.py:6150
msgid "Offset action was not executed."
msgstr "La acción de Desplazamiento no se ejecutó."
-#: appEditors/FlatCAMGrbEditor.py:6236
+#: appEditors/AppGerberEditor.py:6236
msgid "Geometry shape offset Y cancelled"
msgstr "Forma de geometría offset Y cancelada"
-#: appEditors/FlatCAMGrbEditor.py:6251
+#: appEditors/AppGerberEditor.py:6251
msgid "Geometry shape skew X cancelled"
msgstr "Forma geométrica sesgada X cancelada"
-#: appEditors/FlatCAMGrbEditor.py:6266
+#: appEditors/AppGerberEditor.py:6266
msgid "Geometry shape skew Y cancelled"
msgstr "Forma geométrica sesgada Y cancelada"
diff --git a/locale/fr/LC_MESSAGES/strings.po b/locale/fr/LC_MESSAGES/strings.po
index 425c08da..f46126c5 100644
--- a/locale/fr/LC_MESSAGES/strings.po
+++ b/locale/fr/LC_MESSAGES/strings.po
@@ -106,8 +106,8 @@ msgid "Bookmarks"
msgstr "Internet"
#: Bookmark.py:300 Bookmark.py:342 appDatabase.py:665 appDatabase.py:711
-#: appDatabase.py:2279 appDatabase.py:2325 appEditors/FlatCAMExcEditor.py:1023
-#: appEditors/FlatCAMExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
+#: appDatabase.py:2279 appDatabase.py:2325 appEditors/AppExcEditor.py:1023
+#: appEditors/AppExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
#: appGUI/MainGUI.py:2730 appGUI/MainGUI.py:2952 appGUI/MainGUI.py:3167
#: appObjects/ObjectCollection.py:127 appTools/ToolFilm.py:739
#: appTools/ToolFilm.py:885 appTools/ToolImage.py:247 appTools/ToolMove.py:269
@@ -177,7 +177,7 @@ msgstr ""
"Zone ajoutée. Cliquez pour commencer à ajouter la zone suivante ou faites un "
"clic droit pour terminer."
-#: Common.py:322 appEditors/appGeoEditor.py:2352
+#: Common.py:322 appEditors/AppGeoEditor.py:2352
#: appTools/ToolIsolation.py:2584 appTools/ToolNCC.py:1754
#: appTools/ToolPaint.py:1647
msgid "Click on next Point or click right mouse button to complete ..."
@@ -285,7 +285,7 @@ msgid "Tool Name"
msgstr "Nom de l'outil"
#: appDatabase.py:161 appDatabase.py:837 appDatabase.py:1119
-#: appEditors/FlatCAMExcEditor.py:1604 appGUI/ObjectUI.py:1226
+#: appEditors/AppExcEditor.py:1604 appGUI/ObjectUI.py:1226
#: appGUI/ObjectUI.py:1480
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:132
#: appTools/ToolIsolation.py:260 appTools/ToolNCC.py:278
@@ -844,7 +844,7 @@ msgstr ""
"Si cela ne réussit pas, alors le clearing sans cuivre échouera aussi.\n"
"- Nettoyer -> le clearing régulier sans cuivre."
-#: appDatabase.py:1427 appEditors/FlatCAMGrbEditor.py:2749
+#: appDatabase.py:1427 appEditors/AppGerberEditor.py:2749
#: appGUI/GUIElements.py:2765 appTools/ToolNCC.py:350
msgid "Clear"
msgstr "Nettoyer"
@@ -896,7 +896,7 @@ msgid "Conventional"
msgstr "Conventionnel"
#: appDatabase.py:1456 appDatabase.py:1565 appDatabase.py:1667
-#: appEditors/appGeoEditor.py:450
+#: appEditors/AppGeoEditor.py:450
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:167
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:182
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:163
@@ -925,7 +925,7 @@ msgstr ""
"Valeurs supérieures = traitement lent et exécution lente sur CNC\n"
"en raison de trop de chemins."
-#: appDatabase.py:1477 appDatabase.py:1586 appEditors/appGeoEditor.py:470
+#: appDatabase.py:1477 appDatabase.py:1586 appEditors/AppGeoEditor.py:470
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:72
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:229
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:59
@@ -954,7 +954,7 @@ msgstr "Marge"
msgid "Bounding box margin."
msgstr "Marge du cadre de sélection."
-#: appDatabase.py:1490 appDatabase.py:1601 appEditors/appGeoEditor.py:484
+#: appDatabase.py:1490 appDatabase.py:1601 appEditors/AppGeoEditor.py:484
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:105
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:106
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:215
@@ -977,7 +977,7 @@ msgstr ""
"- À base de graines: à l'extérieur des graines.\n"
"- Ligne: lignes parallèles."
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2232 appTools/ToolNCC.py:2764
@@ -987,8 +987,8 @@ msgstr ""
msgid "Standard"
msgstr "Standard"
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:568 appEditors/appGeoEditor.py:5091
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:568 appEditors/AppGeoEditor.py:5091
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2243 appTools/ToolNCC.py:2770
@@ -999,8 +999,8 @@ msgstr "Standard"
msgid "Seed"
msgstr "La graine"
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:5095
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:5095
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2254 appTools/ToolPaint.py:389
@@ -1024,7 +1024,7 @@ msgstr "Combo"
msgid "Connect"
msgstr "Relier"
-#: appDatabase.py:1512 appDatabase.py:1629 appEditors/appGeoEditor.py:507
+#: appDatabase.py:1512 appDatabase.py:1629 appEditors/AppGeoEditor.py:507
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:239
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:226
#: appTools/ToolNCC.py:443 appTools/ToolPaint.py:403
@@ -1042,7 +1042,7 @@ msgstr ""
msgid "Contour"
msgstr "Contour"
-#: appDatabase.py:1522 appDatabase.py:1636 appEditors/appGeoEditor.py:517
+#: appDatabase.py:1522 appDatabase.py:1636 appEditors/AppGeoEditor.py:517
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:248
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:234
#: appTools/ToolNCC.py:453 appTools/ToolPaint.py:410
@@ -1053,8 +1053,8 @@ msgstr ""
"Couper autour du périmètre du polygone\n"
"pour couper les bords rugueux."
-#: appDatabase.py:1528 appEditors/appGeoEditor.py:611
-#: appEditors/FlatCAMGrbEditor.py:5304 appGUI/ObjectUI.py:143
+#: appDatabase.py:1528 appEditors/AppGeoEditor.py:611
+#: appEditors/AppGerberEditor.py:5304 appGUI/ObjectUI.py:143
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:255
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:183
@@ -1076,7 +1076,7 @@ msgstr ""
"des caractéristiques de cuivre.\n"
"La valeur peut être comprise entre 0 et 10 unités FlatCAM."
-#: appDatabase.py:1567 appEditors/appGeoEditor.py:452
+#: appDatabase.py:1567 appEditors/AppGeoEditor.py:452
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:165
#: appTools/ToolPaint.py:330
msgid ""
@@ -1097,7 +1097,7 @@ msgstr ""
"Valeurs supérieures = traitement lent et exécution lente sur CNC\n"
"en raison de plus de chemins."
-#: appDatabase.py:1588 appEditors/appGeoEditor.py:472
+#: appDatabase.py:1588 appEditors/AppGeoEditor.py:472
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:185
#: appTools/ToolPaint.py:351
msgid ""
@@ -1245,143 +1245,143 @@ msgstr ""
"objet / outil d'application après avoir sélectionné un outil\n"
"dans la base de données d'outils."
-#: appEditors/FlatCAMExcEditor.py:50 appEditors/FlatCAMExcEditor.py:74
-#: appEditors/FlatCAMExcEditor.py:168 appEditors/FlatCAMExcEditor.py:385
-#: appEditors/FlatCAMExcEditor.py:589 appEditors/FlatCAMGrbEditor.py:241
-#: appEditors/FlatCAMGrbEditor.py:248
+#: appEditors/AppExcEditor.py:50 appEditors/AppExcEditor.py:74
+#: appEditors/AppExcEditor.py:168 appEditors/AppExcEditor.py:385
+#: appEditors/AppExcEditor.py:589 appEditors/AppGerberEditor.py:241
+#: appEditors/AppGerberEditor.py:248
msgid "Click to place ..."
msgstr "Cliquez pour placer ..."
-#: appEditors/FlatCAMExcEditor.py:58
+#: appEditors/AppExcEditor.py:58
msgid "To add a drill first select a tool"
msgstr "Pour ajouter une perceuse, sélectionnez d'abord un outil"
-#: appEditors/FlatCAMExcEditor.py:122
+#: appEditors/AppExcEditor.py:122
msgid "Done. Drill added."
msgstr "Terminé. Drill ajouté."
-#: appEditors/FlatCAMExcEditor.py:176
+#: appEditors/AppExcEditor.py:176
msgid "To add an Drill Array first select a tool in Tool Table"
msgstr ""
"Pour ajouter une matrice de forage, sélectionnez d'abord un outil dans la "
"Table d'Outils"
-#: appEditors/FlatCAMExcEditor.py:192 appEditors/FlatCAMExcEditor.py:415
-#: appEditors/FlatCAMExcEditor.py:636 appEditors/FlatCAMExcEditor.py:1151
-#: appEditors/FlatCAMExcEditor.py:1178 appEditors/FlatCAMGrbEditor.py:471
-#: appEditors/FlatCAMGrbEditor.py:1944 appEditors/FlatCAMGrbEditor.py:1974
+#: appEditors/AppExcEditor.py:192 appEditors/AppExcEditor.py:415
+#: appEditors/AppExcEditor.py:636 appEditors/AppExcEditor.py:1151
+#: appEditors/AppExcEditor.py:1178 appEditors/AppGerberEditor.py:471
+#: appEditors/AppGerberEditor.py:1944 appEditors/AppGerberEditor.py:1974
msgid "Click on target location ..."
msgstr "Cliquez sur l'emplacement cible ..."
-#: appEditors/FlatCAMExcEditor.py:211
+#: appEditors/AppExcEditor.py:211
msgid "Click on the Drill Circular Array Start position"
msgstr "Cliquez sur la position de départ du tableau de forage circulaire"
-#: appEditors/FlatCAMExcEditor.py:233 appEditors/FlatCAMExcEditor.py:677
-#: appEditors/FlatCAMGrbEditor.py:516
+#: appEditors/AppExcEditor.py:233 appEditors/AppExcEditor.py:677
+#: appEditors/AppGerberEditor.py:516
msgid "The value is not Float. Check for comma instead of dot separator."
msgstr ""
"La valeur n'est pas réelle. Vérifiez la virgule au lieu du séparateur de "
"points."
-#: appEditors/FlatCAMExcEditor.py:237
+#: appEditors/AppExcEditor.py:237
msgid "The value is mistyped. Check the value"
msgstr "La valeur est mal typée. Vérifiez la valeur"
-#: appEditors/FlatCAMExcEditor.py:336
+#: appEditors/AppExcEditor.py:336
msgid "Too many drills for the selected spacing angle."
msgstr "Trop de forages pour l'angle d'espacement sélectionné."
-#: appEditors/FlatCAMExcEditor.py:354
+#: appEditors/AppExcEditor.py:354
msgid "Done. Drill Array added."
msgstr "Terminé. Tableau de forage ajouté."
-#: appEditors/FlatCAMExcEditor.py:394
+#: appEditors/AppExcEditor.py:394
msgid "To add a slot first select a tool"
msgstr "Pour ajouter un trou de fente, sélectionnez d'abord un outil"
-#: appEditors/FlatCAMExcEditor.py:454 appEditors/FlatCAMExcEditor.py:461
-#: appEditors/FlatCAMExcEditor.py:742 appEditors/FlatCAMExcEditor.py:749
+#: appEditors/AppExcEditor.py:454 appEditors/AppExcEditor.py:461
+#: appEditors/AppExcEditor.py:742 appEditors/AppExcEditor.py:749
msgid "Value is missing or wrong format. Add it and retry."
msgstr "Valeur manquante ou format incorrect. Ajoutez-le et réessayez."
-#: appEditors/FlatCAMExcEditor.py:559
+#: appEditors/AppExcEditor.py:559
msgid "Done. Adding Slot completed."
msgstr "Terminé. Ajout de la fente terminée."
-#: appEditors/FlatCAMExcEditor.py:597
+#: appEditors/AppExcEditor.py:597
msgid "To add an Slot Array first select a tool in Tool Table"
msgstr ""
"Pour ajouter un tableau de trous de fente, sélectionnez d'abord un outil "
"dans la table d'outils"
-#: appEditors/FlatCAMExcEditor.py:655
+#: appEditors/AppExcEditor.py:655
msgid "Click on the Slot Circular Array Start position"
msgstr ""
"Cliquez sur la position de départ de la matrice circulaire du trou de fente"
-#: appEditors/FlatCAMExcEditor.py:680 appEditors/FlatCAMGrbEditor.py:519
+#: appEditors/AppExcEditor.py:680 appEditors/AppGerberEditor.py:519
msgid "The value is mistyped. Check the value."
msgstr "La valeur est mal typée. Vérifiez la valeur."
-#: appEditors/FlatCAMExcEditor.py:859
+#: appEditors/AppExcEditor.py:859
msgid "Too many Slots for the selected spacing angle."
msgstr "Trop de trous de fente pour l'angle d'espacement sélectionné."
-#: appEditors/FlatCAMExcEditor.py:882
+#: appEditors/AppExcEditor.py:882
msgid "Done. Slot Array added."
msgstr "Terminé. Tableau de trous de fente ajouté."
-#: appEditors/FlatCAMExcEditor.py:904
+#: appEditors/AppExcEditor.py:904
msgid "Click on the Drill(s) to resize ..."
msgstr "Cliquez sur les forets pour redimensionner ..."
-#: appEditors/FlatCAMExcEditor.py:934
+#: appEditors/AppExcEditor.py:934
msgid "Resize drill(s) failed. Please enter a diameter for resize."
msgstr ""
"Redimensionner les trous de forage a échoué. Veuillez entrer un diamètre "
"pour le redimensionner."
-#: appEditors/FlatCAMExcEditor.py:1112
+#: appEditors/AppExcEditor.py:1112
msgid "Done. Drill/Slot Resize completed."
msgstr ""
"Terminé. Le redimensionnement des trous de forage / rainure est terminé."
-#: appEditors/FlatCAMExcEditor.py:1115
+#: appEditors/AppExcEditor.py:1115
msgid "Cancelled. No drills/slots selected for resize ..."
msgstr ""
"Annulé. Aucun trou de perçage / rainure sélectionné pour le "
"redimensionnement ..."
-#: appEditors/FlatCAMExcEditor.py:1153 appEditors/FlatCAMGrbEditor.py:1946
+#: appEditors/AppExcEditor.py:1153 appEditors/AppGerberEditor.py:1946
msgid "Click on reference location ..."
msgstr "Cliquez sur l'emplacement de référence ..."
-#: appEditors/FlatCAMExcEditor.py:1210
+#: appEditors/AppExcEditor.py:1210
msgid "Done. Drill(s) Move completed."
msgstr "Terminé. Foret (s) Déplacement terminé."
-#: appEditors/FlatCAMExcEditor.py:1318
+#: appEditors/AppExcEditor.py:1318
msgid "Done. Drill(s) copied."
msgstr "Terminé. Percer des trous copiés."
-#: appEditors/FlatCAMExcEditor.py:1557
+#: appEditors/AppExcEditor.py:1557
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:26
msgid "Excellon Editor"
msgstr "Editeur Excellon"
-#: appEditors/FlatCAMExcEditor.py:1564 appEditors/FlatCAMGrbEditor.py:2469
+#: appEditors/AppExcEditor.py:1564 appEditors/AppGerberEditor.py:2469
msgid "Name:"
msgstr "Nom:"
-#: appEditors/FlatCAMExcEditor.py:1570 appGUI/ObjectUI.py:540
+#: appEditors/AppExcEditor.py:1570 appGUI/ObjectUI.py:540
#: appGUI/ObjectUI.py:1362 appTools/ToolIsolation.py:118
#: appTools/ToolNCC.py:120 appTools/ToolPaint.py:114
#: appTools/ToolSolderPaste.py:79
msgid "Tools Table"
msgstr "Tableau des outils"
-#: appEditors/FlatCAMExcEditor.py:1572 appGUI/ObjectUI.py:542
+#: appEditors/AppExcEditor.py:1572 appGUI/ObjectUI.py:542
msgid ""
"Tools in this Excellon object\n"
"when are used for drilling."
@@ -1389,7 +1389,7 @@ msgstr ""
"Outils dans cet objet Excellon\n"
"quand sont utilisés pour le forage."
-#: appEditors/FlatCAMExcEditor.py:1584 appEditors/FlatCAMExcEditor.py:3041
+#: appEditors/AppExcEditor.py:1584 appEditors/AppExcEditor.py:3041
#: appGUI/ObjectUI.py:560 appObjects/FlatCAMExcellon.py:1265
#: appObjects/FlatCAMExcellon.py:1368 appObjects/FlatCAMExcellon.py:1553
#: appTools/ToolIsolation.py:130 appTools/ToolNCC.py:132
@@ -1399,11 +1399,11 @@ msgstr ""
msgid "Diameter"
msgstr "Diamètre"
-#: appEditors/FlatCAMExcEditor.py:1592
+#: appEditors/AppExcEditor.py:1592
msgid "Add/Delete Tool"
msgstr "Ajouter / Supprimer un outil"
-#: appEditors/FlatCAMExcEditor.py:1594
+#: appEditors/AppExcEditor.py:1594
msgid ""
"Add/Delete a tool to the tool list\n"
"for this Excellon object."
@@ -1411,16 +1411,16 @@ msgstr ""
"Ajouter / Supprimer un outil à la liste d'outils\n"
"pour cet objet Excellon."
-#: appEditors/FlatCAMExcEditor.py:1606 appGUI/ObjectUI.py:1482
+#: appEditors/AppExcEditor.py:1606 appGUI/ObjectUI.py:1482
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:57
msgid "Diameter for the new tool"
msgstr "Diamètre pour le nouvel outil"
-#: appEditors/FlatCAMExcEditor.py:1616
+#: appEditors/AppExcEditor.py:1616
msgid "Add Tool"
msgstr "Ajouter un Outil"
-#: appEditors/FlatCAMExcEditor.py:1618
+#: appEditors/AppExcEditor.py:1618
msgid ""
"Add a new tool to the tool list\n"
"with the diameter specified above."
@@ -1428,11 +1428,11 @@ msgstr ""
"Ajouter un nouvel outil à la liste d'outils\n"
"avec le diamètre spécifié ci-dessus."
-#: appEditors/FlatCAMExcEditor.py:1630
+#: appEditors/AppExcEditor.py:1630
msgid "Delete Tool"
msgstr "Supprimer l'outil"
-#: appEditors/FlatCAMExcEditor.py:1632
+#: appEditors/AppExcEditor.py:1632
msgid ""
"Delete a tool in the tool list\n"
"by selecting a row in the tool table."
@@ -1440,40 +1440,40 @@ msgstr ""
"Supprimer un outil dans la liste des outils\n"
"en sélectionnant une ligne dans la table d'outils."
-#: appEditors/FlatCAMExcEditor.py:1650 appGUI/MainGUI.py:4392
+#: appEditors/AppExcEditor.py:1650 appGUI/MainGUI.py:4392
msgid "Resize Drill(s)"
msgstr "Redim. les Forets"
-#: appEditors/FlatCAMExcEditor.py:1652
+#: appEditors/AppExcEditor.py:1652
msgid "Resize a drill or a selection of drills."
msgstr "Redimensionnez une perceuse ou une sélection d'exercices."
-#: appEditors/FlatCAMExcEditor.py:1659
+#: appEditors/AppExcEditor.py:1659
msgid "Resize Dia"
msgstr "Redim. le dia"
-#: appEditors/FlatCAMExcEditor.py:1661
+#: appEditors/AppExcEditor.py:1661
msgid "Diameter to resize to."
msgstr "Diamètre à redimensionner."
-#: appEditors/FlatCAMExcEditor.py:1672
+#: appEditors/AppExcEditor.py:1672
msgid "Resize"
msgstr "Redimensionner"
-#: appEditors/FlatCAMExcEditor.py:1674
+#: appEditors/AppExcEditor.py:1674
msgid "Resize drill(s)"
msgstr "Redimensionner les forets"
-#: appEditors/FlatCAMExcEditor.py:1699 appGUI/MainGUI.py:1514
+#: appEditors/AppExcEditor.py:1699 appGUI/MainGUI.py:1514
#: appGUI/MainGUI.py:4391
msgid "Add Drill Array"
msgstr "Ajouter un Tableau de Forage"
-#: appEditors/FlatCAMExcEditor.py:1701
+#: appEditors/AppExcEditor.py:1701
msgid "Add an array of drills (linear or circular array)"
msgstr "Ajouter un tableau de trous de forage (tableau linéaire ou circulaire)"
-#: appEditors/FlatCAMExcEditor.py:1707
+#: appEditors/AppExcEditor.py:1707
msgid ""
"Select the type of drills array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -1481,13 +1481,13 @@ msgstr ""
"Sélectionnez le type de matrice de trous à créer.\n"
"Il peut être Linéaire X (Y) ou Circulaire"
-#: appEditors/FlatCAMExcEditor.py:1710 appEditors/FlatCAMExcEditor.py:1924
-#: appEditors/FlatCAMGrbEditor.py:2782
+#: appEditors/AppExcEditor.py:1710 appEditors/AppExcEditor.py:1924
+#: appEditors/AppGerberEditor.py:2782
msgid "Linear"
msgstr "Linéaire"
-#: appEditors/FlatCAMExcEditor.py:1711 appEditors/FlatCAMExcEditor.py:1925
-#: appEditors/FlatCAMGrbEditor.py:2783
+#: appEditors/AppExcEditor.py:1711 appEditors/AppExcEditor.py:1925
+#: appEditors/AppGerberEditor.py:2783
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:52
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:149
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:107
@@ -1503,26 +1503,26 @@ msgstr "Linéaire"
msgid "Circular"
msgstr "Circulaire"
-#: appEditors/FlatCAMExcEditor.py:1719
+#: appEditors/AppExcEditor.py:1719
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:68
msgid "Nr of drills"
msgstr "Nb de Forages"
-#: appEditors/FlatCAMExcEditor.py:1720
+#: appEditors/AppExcEditor.py:1720
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:70
msgid "Specify how many drills to be in the array."
msgstr "Spécifiez combien d'exercices doivent figurer dans le tableau."
-#: appEditors/FlatCAMExcEditor.py:1738 appEditors/FlatCAMExcEditor.py:1788
-#: appEditors/FlatCAMExcEditor.py:1860 appEditors/FlatCAMExcEditor.py:1953
-#: appEditors/FlatCAMExcEditor.py:2004 appEditors/FlatCAMGrbEditor.py:1580
-#: appEditors/FlatCAMGrbEditor.py:2811 appEditors/FlatCAMGrbEditor.py:2860
+#: appEditors/AppExcEditor.py:1738 appEditors/AppExcEditor.py:1788
+#: appEditors/AppExcEditor.py:1860 appEditors/AppExcEditor.py:1953
+#: appEditors/AppExcEditor.py:2004 appEditors/AppGerberEditor.py:1580
+#: appEditors/AppGerberEditor.py:2811 appEditors/AppGerberEditor.py:2860
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:178
msgid "Direction"
msgstr "Direction"
-#: appEditors/FlatCAMExcEditor.py:1740 appEditors/FlatCAMExcEditor.py:1955
-#: appEditors/FlatCAMGrbEditor.py:2813
+#: appEditors/AppExcEditor.py:1740 appEditors/AppExcEditor.py:1955
+#: appEditors/AppGerberEditor.py:2813
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:86
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:234
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:123
@@ -1537,8 +1537,8 @@ msgstr ""
"- 'Y' - axe vertical ou\n"
"- 'Angle' - un angle personnalisé pour l'inclinaison du tableau"
-#: appEditors/FlatCAMExcEditor.py:1747 appEditors/FlatCAMExcEditor.py:1869
-#: appEditors/FlatCAMExcEditor.py:1962 appEditors/FlatCAMGrbEditor.py:2820
+#: appEditors/AppExcEditor.py:1747 appEditors/AppExcEditor.py:1869
+#: appEditors/AppExcEditor.py:1962 appEditors/AppGerberEditor.py:2820
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:240
@@ -1548,8 +1548,8 @@ msgstr ""
msgid "X"
msgstr "X"
-#: appEditors/FlatCAMExcEditor.py:1748 appEditors/FlatCAMExcEditor.py:1870
-#: appEditors/FlatCAMExcEditor.py:1963 appEditors/FlatCAMGrbEditor.py:2821
+#: appEditors/AppExcEditor.py:1748 appEditors/AppExcEditor.py:1870
+#: appEditors/AppExcEditor.py:1963 appEditors/AppGerberEditor.py:2821
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:241
@@ -1559,13 +1559,13 @@ msgstr "X"
msgid "Y"
msgstr "Y"
-#: appEditors/FlatCAMExcEditor.py:1749 appEditors/FlatCAMExcEditor.py:1766
-#: appEditors/FlatCAMExcEditor.py:1800 appEditors/FlatCAMExcEditor.py:1871
-#: appEditors/FlatCAMExcEditor.py:1875 appEditors/FlatCAMExcEditor.py:1964
-#: appEditors/FlatCAMExcEditor.py:1982 appEditors/FlatCAMExcEditor.py:2016
-#: appEditors/appGeoEditor.py:683 appEditors/FlatCAMGrbEditor.py:2822
-#: appEditors/FlatCAMGrbEditor.py:2839 appEditors/FlatCAMGrbEditor.py:2875
-#: appEditors/FlatCAMGrbEditor.py:5376
+#: appEditors/AppExcEditor.py:1749 appEditors/AppExcEditor.py:1766
+#: appEditors/AppExcEditor.py:1800 appEditors/AppExcEditor.py:1871
+#: appEditors/AppExcEditor.py:1875 appEditors/AppExcEditor.py:1964
+#: appEditors/AppExcEditor.py:1982 appEditors/AppExcEditor.py:2016
+#: appEditors/AppGeoEditor.py:683 appEditors/AppGerberEditor.py:2822
+#: appEditors/AppGerberEditor.py:2839 appEditors/AppGerberEditor.py:2875
+#: appEditors/AppGerberEditor.py:5376
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:94
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:113
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:189
@@ -1580,23 +1580,23 @@ msgstr "Y"
msgid "Angle"
msgstr "Angle"
-#: appEditors/FlatCAMExcEditor.py:1753 appEditors/FlatCAMExcEditor.py:1968
-#: appEditors/FlatCAMGrbEditor.py:2826
+#: appEditors/AppExcEditor.py:1753 appEditors/AppExcEditor.py:1968
+#: appEditors/AppGerberEditor.py:2826
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:100
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:248
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:137
msgid "Pitch"
msgstr "Pas"
-#: appEditors/FlatCAMExcEditor.py:1755 appEditors/FlatCAMExcEditor.py:1970
-#: appEditors/FlatCAMGrbEditor.py:2828
+#: appEditors/AppExcEditor.py:1755 appEditors/AppExcEditor.py:1970
+#: appEditors/AppGerberEditor.py:2828
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:102
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:250
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:139
msgid "Pitch = Distance between elements of the array."
msgstr "Pas = Distance entre les éléments du tableau."
-#: appEditors/FlatCAMExcEditor.py:1768 appEditors/FlatCAMExcEditor.py:1984
+#: appEditors/AppExcEditor.py:1768 appEditors/AppExcEditor.py:1984
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1608,8 +1608,8 @@ msgstr ""
"La valeur minimale est: -360 degrés.\n"
"La valeur maximale est: 360,00 degrés."
-#: appEditors/FlatCAMExcEditor.py:1789 appEditors/FlatCAMExcEditor.py:2005
-#: appEditors/FlatCAMGrbEditor.py:2862
+#: appEditors/AppExcEditor.py:1789 appEditors/AppExcEditor.py:2005
+#: appEditors/AppGerberEditor.py:2862
msgid ""
"Direction for circular array.Can be CW = clockwise or CCW = counter "
"clockwise."
@@ -1617,8 +1617,8 @@ msgstr ""
"Direction pour tableau circulaire. Peut être CW = sens horaire ou CCW = sens "
"antihoraire."
-#: appEditors/FlatCAMExcEditor.py:1796 appEditors/FlatCAMExcEditor.py:2012
-#: appEditors/FlatCAMGrbEditor.py:2870
+#: appEditors/AppExcEditor.py:1796 appEditors/AppExcEditor.py:2012
+#: appEditors/AppGerberEditor.py:2870
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:129
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:136
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:286
@@ -1627,8 +1627,8 @@ msgstr ""
msgid "CW"
msgstr "CW"
-#: appEditors/FlatCAMExcEditor.py:1797 appEditors/FlatCAMExcEditor.py:2013
-#: appEditors/FlatCAMGrbEditor.py:2871
+#: appEditors/AppExcEditor.py:1797 appEditors/AppExcEditor.py:2013
+#: appEditors/AppGerberEditor.py:2871
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:130
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:137
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:287
@@ -1637,8 +1637,8 @@ msgstr "CW"
msgid "CCW"
msgstr "CCW"
-#: appEditors/FlatCAMExcEditor.py:1801 appEditors/FlatCAMExcEditor.py:2017
-#: appEditors/FlatCAMGrbEditor.py:2877
+#: appEditors/AppExcEditor.py:1801 appEditors/AppExcEditor.py:2017
+#: appEditors/AppGerberEditor.py:2877
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:115
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:145
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:265
@@ -1648,11 +1648,11 @@ msgstr "CCW"
msgid "Angle at which each element in circular array is placed."
msgstr "Angle auquel chaque élément du tableau circulaire est placé."
-#: appEditors/FlatCAMExcEditor.py:1835
+#: appEditors/AppExcEditor.py:1835
msgid "Slot Parameters"
msgstr "Paramètres de Fente"
-#: appEditors/FlatCAMExcEditor.py:1837
+#: appEditors/AppExcEditor.py:1837
msgid ""
"Parameters for adding a slot (hole with oval shape)\n"
"either single or as an part of an array."
@@ -1660,19 +1660,19 @@ msgstr ""
"Paramètres pour l'ajout d'une fente (trou de forme ovale)\n"
"soit seul, soit faisant partie d'un tableau."
-#: appEditors/FlatCAMExcEditor.py:1846
+#: appEditors/AppExcEditor.py:1846
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:162
#: appGUI/preferences/tools/ToolsCornersPrefGroupUI.py:56
#: appTools/ToolCorners.py:136 appTools/ToolProperties.py:559
msgid "Length"
msgstr "Longueur"
-#: appEditors/FlatCAMExcEditor.py:1848
+#: appEditors/AppExcEditor.py:1848
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:164
msgid "Length = The length of the slot."
msgstr "Longueur = La longueur de la fente."
-#: appEditors/FlatCAMExcEditor.py:1862
+#: appEditors/AppExcEditor.py:1862
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:180
msgid ""
"Direction on which the slot is oriented:\n"
@@ -1685,7 +1685,7 @@ msgstr ""
"- 'Y' - axe vertical ou\n"
"- 'Angle' - un angle personnalisé pour l'inclinaison de la fente"
-#: appEditors/FlatCAMExcEditor.py:1877
+#: appEditors/AppExcEditor.py:1877
msgid ""
"Angle at which the slot is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1697,15 +1697,15 @@ msgstr ""
"La valeur minimale est: -360 degrés.\n"
"La valeur maximale est: 360,00 degrés."
-#: appEditors/FlatCAMExcEditor.py:1910
+#: appEditors/AppExcEditor.py:1910
msgid "Slot Array Parameters"
msgstr "Param. de la Matrice de Fentes"
-#: appEditors/FlatCAMExcEditor.py:1912
+#: appEditors/AppExcEditor.py:1912
msgid "Parameters for the array of slots (linear or circular array)"
msgstr "Paramètres pour la Matrice de Fente (matrice linéaire ou circulaire)"
-#: appEditors/FlatCAMExcEditor.py:1921
+#: appEditors/AppExcEditor.py:1921
msgid ""
"Select the type of slot array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -1713,25 +1713,25 @@ msgstr ""
"Sélectionnez le type de matrice à percer.\n"
"Il peut être linéaire X (Y) ou circulaire"
-#: appEditors/FlatCAMExcEditor.py:1933
+#: appEditors/AppExcEditor.py:1933
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:219
msgid "Nr of slots"
msgstr "Nb de Fentes"
-#: appEditors/FlatCAMExcEditor.py:1934
+#: appEditors/AppExcEditor.py:1934
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:221
msgid "Specify how many slots to be in the array."
msgstr "Spécifiez le nombre de Fente dans le Tableau."
-#: appEditors/FlatCAMExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
+#: appEditors/AppExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
msgid "Total Drills"
msgstr "Total Forage"
-#: appEditors/FlatCAMExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
+#: appEditors/AppExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
msgid "Total Slots"
msgstr "Total de Fentes"
-#: appEditors/FlatCAMExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
+#: appEditors/AppExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
#: appObjects/FlatCAMGeometry.py:1099 appObjects/FlatCAMGeometry.py:1841
#: appObjects/FlatCAMGeometry.py:2491 appTools/ToolIsolation.py:1526
#: appTools/ToolNCC.py:1516 appTools/ToolPaint.py:1268
@@ -1740,7 +1740,7 @@ msgstr "Total de Fentes"
msgid "Wrong value format entered, use a number."
msgstr "Mauvais format de valeur entré, utilisez un nombre."
-#: appEditors/FlatCAMExcEditor.py:2570
+#: appEditors/AppExcEditor.py:2570
msgid ""
"Tool already in the original or actual tool list.\n"
"Save and reedit Excellon if you need to add this tool. "
@@ -1748,73 +1748,73 @@ msgstr ""
"Outil déjà dans la liste d'outils d'origine ou réelle.\n"
"Enregistrez et rééditez Excellon si vous devez ajouter cet outil. "
-#: appEditors/FlatCAMExcEditor.py:2579 appGUI/MainGUI.py:3364
+#: appEditors/AppExcEditor.py:2579 appGUI/MainGUI.py:3364
msgid "Added new tool with dia"
msgstr "Ajout d'un nouvel outil avec dia"
-#: appEditors/FlatCAMExcEditor.py:2612
+#: appEditors/AppExcEditor.py:2612
msgid "Select a tool in Tool Table"
msgstr "Sélectionner un outil dans la table d'outils"
-#: appEditors/FlatCAMExcEditor.py:2642
+#: appEditors/AppExcEditor.py:2642
msgid "Deleted tool with diameter"
msgstr "Outil supprimé avec diamètre"
-#: appEditors/FlatCAMExcEditor.py:2790
+#: appEditors/AppExcEditor.py:2790
msgid "Done. Tool edit completed."
msgstr "Terminé. L'édition de l'outil est terminée."
-#: appEditors/FlatCAMExcEditor.py:3327
+#: appEditors/AppExcEditor.py:3327
msgid "There are no Tools definitions in the file. Aborting Excellon creation."
msgstr ""
"Il n'y a pas de définition d'outils dans le fichier. Abandon de la création "
"Excellon."
-#: appEditors/FlatCAMExcEditor.py:3331
+#: appEditors/AppExcEditor.py:3331
msgid "An internal error has ocurred. See Shell.\n"
msgstr "Une erreur interne s'est produite. Voir Shell.\n"
-#: appEditors/FlatCAMExcEditor.py:3336
+#: appEditors/AppExcEditor.py:3336
msgid "Creating Excellon."
msgstr "Créer Excellon."
-#: appEditors/FlatCAMExcEditor.py:3350
+#: appEditors/AppExcEditor.py:3350
msgid "Excellon editing finished."
msgstr "Excellon édition terminée."
-#: appEditors/FlatCAMExcEditor.py:3367
+#: appEditors/AppExcEditor.py:3367
msgid "Cancelled. There is no Tool/Drill selected"
msgstr "Annulé. Aucun Outil/Foret sélectionné"
-#: appEditors/FlatCAMExcEditor.py:3601 appEditors/FlatCAMExcEditor.py:3609
-#: appEditors/appGeoEditor.py:4286 appEditors/appGeoEditor.py:4300
-#: appEditors/FlatCAMGrbEditor.py:1085 appEditors/FlatCAMGrbEditor.py:1312
-#: appEditors/FlatCAMGrbEditor.py:1497 appEditors/FlatCAMGrbEditor.py:1766
-#: appEditors/FlatCAMGrbEditor.py:4608 appEditors/FlatCAMGrbEditor.py:4625
+#: appEditors/AppExcEditor.py:3601 appEditors/AppExcEditor.py:3609
+#: appEditors/AppGeoEditor.py:4286 appEditors/AppGeoEditor.py:4300
+#: appEditors/AppGerberEditor.py:1085 appEditors/AppGerberEditor.py:1312
+#: appEditors/AppGerberEditor.py:1497 appEditors/AppGerberEditor.py:1766
+#: appEditors/AppGerberEditor.py:4608 appEditors/AppGerberEditor.py:4625
#: appGUI/MainGUI.py:2711 appGUI/MainGUI.py:2723
#: appTools/ToolAlignObjects.py:393 appTools/ToolAlignObjects.py:415
#: app_Main.py:4800 app_Main.py:4954
msgid "Done."
msgstr "Terminé."
-#: appEditors/FlatCAMExcEditor.py:3984
+#: appEditors/AppExcEditor.py:3984
msgid "Done. Drill(s) deleted."
msgstr "Terminé. Percer des trous supprimés."
-#: appEditors/FlatCAMExcEditor.py:4057 appEditors/FlatCAMExcEditor.py:4067
-#: appEditors/FlatCAMGrbEditor.py:5056
+#: appEditors/AppExcEditor.py:4057 appEditors/AppExcEditor.py:4067
+#: appEditors/AppGerberEditor.py:5056
msgid "Click on the circular array Center position"
msgstr "Cliquez sur le tableau circulaire Position centrale"
-#: appEditors/appGeoEditor.py:84
+#: appEditors/AppGeoEditor.py:84
msgid "Buffer distance:"
msgstr "Distance tampon:"
-#: appEditors/appGeoEditor.py:85
+#: appEditors/AppGeoEditor.py:85
msgid "Buffer corner:"
msgstr "Coin tampon:"
-#: appEditors/appGeoEditor.py:87
+#: appEditors/AppGeoEditor.py:87
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded for exterior buffer.\n"
@@ -1828,11 +1828,11 @@ msgstr ""
" - \"Biseauté:\" le coin est une ligne qui relie directement les "
"fonctionnalités réunies dans le coin"
-#: appEditors/appGeoEditor.py:93 appEditors/FlatCAMGrbEditor.py:2638
+#: appEditors/AppGeoEditor.py:93 appEditors/AppGerberEditor.py:2638
msgid "Round"
msgstr "Rond"
-#: appEditors/appGeoEditor.py:94 appEditors/FlatCAMGrbEditor.py:2639
+#: appEditors/AppGeoEditor.py:94 appEditors/AppGerberEditor.py:2639
#: appGUI/ObjectUI.py:1149 appGUI/ObjectUI.py:2004
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:225
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:68
@@ -1850,50 +1850,50 @@ msgstr "Rond"
msgid "Square"
msgstr "Carré"
-#: appEditors/appGeoEditor.py:95 appEditors/FlatCAMGrbEditor.py:2640
+#: appEditors/AppGeoEditor.py:95 appEditors/AppGerberEditor.py:2640
msgid "Beveled"
msgstr "Biseauté"
-#: appEditors/appGeoEditor.py:102
+#: appEditors/AppGeoEditor.py:102
msgid "Buffer Interior"
msgstr "Tampon Intérieur"
-#: appEditors/appGeoEditor.py:104
+#: appEditors/AppGeoEditor.py:104
msgid "Buffer Exterior"
msgstr "Tampon Extérieur"
-#: appEditors/appGeoEditor.py:110
+#: appEditors/AppGeoEditor.py:110
msgid "Full Buffer"
msgstr "Plein tampon"
-#: appEditors/appGeoEditor.py:131 appEditors/appGeoEditor.py:2959
+#: appEditors/AppGeoEditor.py:131 appEditors/AppGeoEditor.py:2959
#: appGUI/MainGUI.py:4301
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:191
msgid "Buffer Tool"
msgstr "Outil Tampon"
-#: appEditors/appGeoEditor.py:143 appEditors/appGeoEditor.py:160
-#: appEditors/appGeoEditor.py:177 appEditors/appGeoEditor.py:2978
-#: appEditors/appGeoEditor.py:3006 appEditors/appGeoEditor.py:3034
-#: appEditors/FlatCAMGrbEditor.py:5109
+#: appEditors/AppGeoEditor.py:143 appEditors/AppGeoEditor.py:160
+#: appEditors/AppGeoEditor.py:177 appEditors/AppGeoEditor.py:2978
+#: appEditors/AppGeoEditor.py:3006 appEditors/AppGeoEditor.py:3034
+#: appEditors/AppGerberEditor.py:5109
msgid "Buffer distance value is missing or wrong format. Add it and retry."
msgstr ""
"La valeur de la distance tampon est un format manquant ou incorrect. Ajoutez-"
"le et réessayez."
-#: appEditors/appGeoEditor.py:241
+#: appEditors/AppGeoEditor.py:241
msgid "Font"
msgstr "Police"
-#: appEditors/appGeoEditor.py:322 appGUI/MainGUI.py:1452
+#: appEditors/AppGeoEditor.py:322 appGUI/MainGUI.py:1452
msgid "Text"
msgstr "Texte"
-#: appEditors/appGeoEditor.py:348
+#: appEditors/AppGeoEditor.py:348
msgid "Text Tool"
msgstr "Outil Texte"
-#: appEditors/appGeoEditor.py:404 appGUI/MainGUI.py:502
+#: appEditors/AppGeoEditor.py:404 appGUI/MainGUI.py:502
#: appGUI/MainGUI.py:1199 appGUI/ObjectUI.py:597 appGUI/ObjectUI.py:1564
#: appObjects/FlatCAMExcellon.py:852 appObjects/FlatCAMExcellon.py:1242
#: appObjects/FlatCAMGeometry.py:825 appTools/ToolIsolation.py:313
@@ -1902,15 +1902,15 @@ msgstr "Outil Texte"
msgid "Tool"
msgstr "Outil"
-#: appEditors/appGeoEditor.py:438
+#: appEditors/AppGeoEditor.py:438
msgid "Tool dia"
msgstr "Diam Outil"
-#: appEditors/appGeoEditor.py:440
+#: appEditors/AppGeoEditor.py:440
msgid "Diameter of the tool to be used in the operation."
msgstr "Diamètre de l'outil à utiliser dans l'opération."
-#: appEditors/appGeoEditor.py:486
+#: appEditors/AppGeoEditor.py:486
msgid ""
"Algorithm to paint the polygons:\n"
"- Standard: Fixed step inwards.\n"
@@ -1922,58 +1922,58 @@ msgstr ""
"- À base de graines: à l'extérieur des graines.\n"
"- Ligne: lignes parallèles."
-#: appEditors/appGeoEditor.py:505
+#: appEditors/AppGeoEditor.py:505
msgid "Connect:"
msgstr "Relier:"
-#: appEditors/appGeoEditor.py:515
+#: appEditors/AppGeoEditor.py:515
msgid "Contour:"
msgstr "Contour:"
-#: appEditors/appGeoEditor.py:528 appGUI/MainGUI.py:1456
+#: appEditors/AppGeoEditor.py:528 appGUI/MainGUI.py:1456
msgid "Paint"
msgstr "Peindre"
-#: appEditors/appGeoEditor.py:546 appGUI/MainGUI.py:912
+#: appEditors/AppGeoEditor.py:546 appGUI/MainGUI.py:912
#: appGUI/MainGUI.py:1944 appGUI/ObjectUI.py:2069 appTools/ToolPaint.py:42
#: appTools/ToolPaint.py:737
msgid "Paint Tool"
msgstr "Outil de Peinture"
-#: appEditors/appGeoEditor.py:582 appEditors/appGeoEditor.py:1071
-#: appEditors/appGeoEditor.py:2966 appEditors/appGeoEditor.py:2994
-#: appEditors/appGeoEditor.py:3022 appEditors/appGeoEditor.py:4439
-#: appEditors/FlatCAMGrbEditor.py:5764
+#: appEditors/AppGeoEditor.py:582 appEditors/AppGeoEditor.py:1071
+#: appEditors/AppGeoEditor.py:2966 appEditors/AppGeoEditor.py:2994
+#: appEditors/AppGeoEditor.py:3022 appEditors/AppGeoEditor.py:4439
+#: appEditors/AppGerberEditor.py:5764
msgid "Cancelled. No shape selected."
msgstr "Annulé. Aucune forme sélectionnée."
-#: appEditors/appGeoEditor.py:595 appEditors/appGeoEditor.py:2984
-#: appEditors/appGeoEditor.py:3012 appEditors/appGeoEditor.py:3040
+#: appEditors/AppGeoEditor.py:595 appEditors/AppGeoEditor.py:2984
+#: appEditors/AppGeoEditor.py:3012 appEditors/AppGeoEditor.py:3040
#: appGUI/preferences/geometry/GeometryGenPrefGroupUI.py:69
#: appTools/ToolProperties.py:117 appTools/ToolProperties.py:162
msgid "Tools"
msgstr "Outils"
-#: appEditors/appGeoEditor.py:606 appEditors/appGeoEditor.py:1035
-#: appEditors/FlatCAMGrbEditor.py:5299 appEditors/FlatCAMGrbEditor.py:5728
+#: appEditors/AppGeoEditor.py:606 appEditors/AppGeoEditor.py:1035
+#: appEditors/AppGerberEditor.py:5299 appEditors/AppGerberEditor.py:5728
#: appGUI/MainGUI.py:935 appGUI/MainGUI.py:1967 appTools/ToolTransform.py:494
msgid "Transform Tool"
msgstr "Outil de Transformation"
-#: appEditors/appGeoEditor.py:607 appEditors/appGeoEditor.py:699
-#: appEditors/FlatCAMGrbEditor.py:5300 appEditors/FlatCAMGrbEditor.py:5392
+#: appEditors/AppGeoEditor.py:607 appEditors/AppGeoEditor.py:699
+#: appEditors/AppGerberEditor.py:5300 appEditors/AppGerberEditor.py:5392
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:88
#: appTools/ToolTransform.py:27 appTools/ToolTransform.py:146
msgid "Rotate"
msgstr "Tourner"
-#: appEditors/appGeoEditor.py:608 appEditors/FlatCAMGrbEditor.py:5301
+#: appEditors/AppGeoEditor.py:608 appEditors/AppGerberEditor.py:5301
#: appTools/ToolTransform.py:28
msgid "Skew/Shear"
msgstr "Inclinaison/Cisaillement"
-#: appEditors/appGeoEditor.py:609 appEditors/FlatCAMGrbEditor.py:2687
-#: appEditors/FlatCAMGrbEditor.py:5302 appGUI/MainGUI.py:1057
+#: appEditors/AppGeoEditor.py:609 appEditors/AppGerberEditor.py:2687
+#: appEditors/AppGerberEditor.py:5302 appGUI/MainGUI.py:1057
#: appGUI/MainGUI.py:1499 appGUI/MainGUI.py:2089 appGUI/MainGUI.py:4513
#: appGUI/ObjectUI.py:125
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:147
@@ -1981,13 +1981,13 @@ msgstr "Inclinaison/Cisaillement"
msgid "Scale"
msgstr "Mise à l'échelle"
-#: appEditors/appGeoEditor.py:610 appEditors/FlatCAMGrbEditor.py:5303
+#: appEditors/AppGeoEditor.py:610 appEditors/AppGerberEditor.py:5303
#: appTools/ToolTransform.py:30
msgid "Mirror (Flip)"
msgstr "Miroir (flip)"
-#: appEditors/appGeoEditor.py:612 appEditors/FlatCAMGrbEditor.py:2647
-#: appEditors/FlatCAMGrbEditor.py:5305 appGUI/MainGUI.py:1055
+#: appEditors/AppGeoEditor.py:612 appEditors/AppGerberEditor.py:2647
+#: appEditors/AppGerberEditor.py:5305 appGUI/MainGUI.py:1055
#: appGUI/MainGUI.py:1454 appGUI/MainGUI.py:1497 appGUI/MainGUI.py:2087
#: appGUI/MainGUI.py:4511
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:212
@@ -1995,7 +1995,7 @@ msgstr "Miroir (flip)"
msgid "Buffer"
msgstr "Tampon"
-#: appEditors/appGeoEditor.py:643 appEditors/FlatCAMGrbEditor.py:5336
+#: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5336
#: appGUI/GUIElements.py:2701
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44
@@ -2004,7 +2004,7 @@ msgstr "Tampon"
msgid "Reference"
msgstr "Référence"
-#: appEditors/appGeoEditor.py:645 appEditors/FlatCAMGrbEditor.py:5338
+#: appEditors/AppGeoEditor.py:645 appEditors/AppGerberEditor.py:5338
msgid ""
"The reference point for Rotate, Skew, Scale, Mirror.\n"
"Can be:\n"
@@ -2022,15 +2022,15 @@ msgstr ""
"- Sélection min.-> le point (minx, miny) de la boîte englobante de la "
"sélection"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appTools/ToolCalibration.py:770 appTools/ToolCalibration.py:771
#: appTools/ToolTransform.py:70
msgid "Origin"
msgstr "Origine"
-#: appEditors/appGeoEditor.py:653 appEditors/appGeoEditor.py:1044
-#: appEditors/FlatCAMGrbEditor.py:5346 appEditors/FlatCAMGrbEditor.py:5737
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGeoEditor.py:1044
+#: appEditors/AppGerberEditor.py:5346 appEditors/AppGerberEditor.py:5737
#: appGUI/preferences/general/GeneralGUIPrefGroupUI.py:250
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:275
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:311
@@ -2041,7 +2041,7 @@ msgstr "Origine"
msgid "Selection"
msgstr "Sélection"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/Tools2sidedPrefGroupUI.py:80
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:60
@@ -2049,12 +2049,12 @@ msgstr "Sélection"
msgid "Point"
msgstr "Point"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
msgid "Minimum"
msgstr "Le minimum"
-#: appEditors/appGeoEditor.py:659 appEditors/appGeoEditor.py:955
-#: appEditors/FlatCAMGrbEditor.py:5352 appEditors/FlatCAMGrbEditor.py:5648
+#: appEditors/AppGeoEditor.py:659 appEditors/AppGeoEditor.py:955
+#: appEditors/AppGerberEditor.py:5352 appEditors/AppGerberEditor.py:5648
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:131
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:133
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:243
@@ -2064,14 +2064,14 @@ msgstr "Le minimum"
msgid "Value"
msgstr "Valeur"
-#: appEditors/appGeoEditor.py:661 appEditors/FlatCAMGrbEditor.py:5354
+#: appEditors/AppGeoEditor.py:661 appEditors/AppGerberEditor.py:5354
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:62
#: appTools/ToolTransform.py:78
msgid "A point of reference in format X,Y."
msgstr "Un point de référence au format X, Y."
-#: appEditors/appGeoEditor.py:668 appEditors/FlatCAMGrbEditor.py:2590
-#: appEditors/FlatCAMGrbEditor.py:5361 appGUI/ObjectUI.py:1494
+#: appEditors/AppGeoEditor.py:668 appEditors/AppGerberEditor.py:2590
+#: appEditors/AppGerberEditor.py:5361 appGUI/ObjectUI.py:1494
#: appTools/ToolDblSided.py:192 appTools/ToolDblSided.py:425
#: appTools/ToolIsolation.py:276 appTools/ToolIsolation.py:631
#: appTools/ToolNCC.py:294 appTools/ToolNCC.py:631 appTools/ToolPaint.py:276
@@ -2081,12 +2081,12 @@ msgstr "Un point de référence au format X, Y."
msgid "Add"
msgstr "Ajouter"
-#: appEditors/appGeoEditor.py:670 appEditors/FlatCAMGrbEditor.py:5363
+#: appEditors/AppGeoEditor.py:670 appEditors/AppGerberEditor.py:5363
#: appTools/ToolTransform.py:87
msgid "Add point coordinates from clipboard."
msgstr "Ajoutez des coordonnées de point à partir du presse-papiers."
-#: appEditors/appGeoEditor.py:685 appEditors/FlatCAMGrbEditor.py:5378
+#: appEditors/AppGeoEditor.py:685 appEditors/AppGerberEditor.py:5378
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:98
#: appTools/ToolTransform.py:132
msgid ""
@@ -2100,7 +2100,7 @@ msgstr ""
"Nombres positifs pour le mouvement en CW.\n"
"Nombres négatifs pour le mouvement CCW."
-#: appEditors/appGeoEditor.py:701 appEditors/FlatCAMGrbEditor.py:5394
+#: appEditors/AppGeoEditor.py:701 appEditors/AppGerberEditor.py:5394
#: appTools/ToolTransform.py:148
msgid ""
"Rotate the selected object(s).\n"
@@ -2111,31 +2111,31 @@ msgstr ""
"Le point de référence est le milieu de\n"
"le cadre de sélection pour tous les objets sélectionnés."
-#: appEditors/appGeoEditor.py:721 appEditors/appGeoEditor.py:783
-#: appEditors/FlatCAMGrbEditor.py:5414 appEditors/FlatCAMGrbEditor.py:5476
+#: appEditors/AppGeoEditor.py:721 appEditors/AppGeoEditor.py:783
+#: appEditors/AppGerberEditor.py:5414 appEditors/AppGerberEditor.py:5476
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:112
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:151
#: appTools/ToolTransform.py:168 appTools/ToolTransform.py:230
msgid "Link"
msgstr "Lien"
-#: appEditors/appGeoEditor.py:723 appEditors/appGeoEditor.py:785
-#: appEditors/FlatCAMGrbEditor.py:5416 appEditors/FlatCAMGrbEditor.py:5478
+#: appEditors/AppGeoEditor.py:723 appEditors/AppGeoEditor.py:785
+#: appEditors/AppGerberEditor.py:5416 appEditors/AppGerberEditor.py:5478
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:114
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:153
#: appTools/ToolTransform.py:170 appTools/ToolTransform.py:232
msgid "Link the Y entry to X entry and copy its content."
msgstr "Liez l'entrée Y à l'entrée X et copiez son contenu."
-#: appEditors/appGeoEditor.py:728 appEditors/FlatCAMGrbEditor.py:5421
+#: appEditors/AppGeoEditor.py:728 appEditors/AppGerberEditor.py:5421
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:151
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:124
#: appTools/ToolFilm.py:184 appTools/ToolTransform.py:175
msgid "X angle"
msgstr "Angle X"
-#: appEditors/appGeoEditor.py:730 appEditors/appGeoEditor.py:751
-#: appEditors/FlatCAMGrbEditor.py:5423 appEditors/FlatCAMGrbEditor.py:5444
+#: appEditors/AppGeoEditor.py:730 appEditors/AppGeoEditor.py:751
+#: appEditors/AppGerberEditor.py:5423 appEditors/AppGerberEditor.py:5444
#: appTools/ToolTransform.py:177 appTools/ToolTransform.py:198
msgid ""
"Angle for Skew action, in degrees.\n"
@@ -2144,13 +2144,13 @@ msgstr ""
"Angle pour l'action asymétrique, en degrés.\n"
"Nombre flottant entre -360 et 360."
-#: appEditors/appGeoEditor.py:738 appEditors/FlatCAMGrbEditor.py:5431
+#: appEditors/AppGeoEditor.py:738 appEditors/AppGerberEditor.py:5431
#: appTools/ToolTransform.py:185
msgid "Skew X"
msgstr "Inclinaison X"
-#: appEditors/appGeoEditor.py:740 appEditors/appGeoEditor.py:761
-#: appEditors/FlatCAMGrbEditor.py:5433 appEditors/FlatCAMGrbEditor.py:5454
+#: appEditors/AppGeoEditor.py:740 appEditors/AppGeoEditor.py:761
+#: appEditors/AppGerberEditor.py:5433 appEditors/AppGerberEditor.py:5454
#: appTools/ToolTransform.py:187 appTools/ToolTransform.py:208
msgid ""
"Skew/shear the selected object(s).\n"
@@ -2161,38 +2161,38 @@ msgstr ""
"Le point de référence est le milieu de\n"
"le cadre de sélection pour tous les objets sélectionnés."
-#: appEditors/appGeoEditor.py:749 appEditors/FlatCAMGrbEditor.py:5442
+#: appEditors/AppGeoEditor.py:749 appEditors/AppGerberEditor.py:5442
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:160
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:138
#: appTools/ToolFilm.py:193 appTools/ToolTransform.py:196
msgid "Y angle"
msgstr "Angle Y"
-#: appEditors/appGeoEditor.py:759 appEditors/FlatCAMGrbEditor.py:5452
+#: appEditors/AppGeoEditor.py:759 appEditors/AppGerberEditor.py:5452
#: appTools/ToolTransform.py:206
msgid "Skew Y"
msgstr "Inclinaison Y"
-#: appEditors/appGeoEditor.py:790 appEditors/FlatCAMGrbEditor.py:5483
+#: appEditors/AppGeoEditor.py:790 appEditors/AppGerberEditor.py:5483
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:120
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:162
#: appTools/ToolFilm.py:145 appTools/ToolTransform.py:237
msgid "X factor"
msgstr "Facteur X"
-#: appEditors/appGeoEditor.py:792 appEditors/FlatCAMGrbEditor.py:5485
+#: appEditors/AppGeoEditor.py:792 appEditors/AppGerberEditor.py:5485
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:164
#: appTools/ToolTransform.py:239
msgid "Factor for scaling on X axis."
msgstr "Facteur de mise à l'échelle sur l'axe X."
-#: appEditors/appGeoEditor.py:799 appEditors/FlatCAMGrbEditor.py:5492
+#: appEditors/AppGeoEditor.py:799 appEditors/AppGerberEditor.py:5492
#: appTools/ToolTransform.py:246
msgid "Scale X"
msgstr "Mise à l'échelle X"
-#: appEditors/appGeoEditor.py:801 appEditors/appGeoEditor.py:821
-#: appEditors/FlatCAMGrbEditor.py:5494 appEditors/FlatCAMGrbEditor.py:5514
+#: appEditors/AppGeoEditor.py:801 appEditors/AppGeoEditor.py:821
+#: appEditors/AppGerberEditor.py:5494 appEditors/AppGerberEditor.py:5514
#: appTools/ToolTransform.py:248 appTools/ToolTransform.py:268
msgid ""
"Scale the selected object(s).\n"
@@ -2203,59 +2203,59 @@ msgstr ""
"Le point de référence dépend de\n"
"l'état de la case à cocher référence d'échelle."
-#: appEditors/appGeoEditor.py:810 appEditors/FlatCAMGrbEditor.py:5503
+#: appEditors/AppGeoEditor.py:810 appEditors/AppGerberEditor.py:5503
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:129
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:175
#: appTools/ToolFilm.py:154 appTools/ToolTransform.py:257
msgid "Y factor"
msgstr "Facteur Y"
-#: appEditors/appGeoEditor.py:812 appEditors/FlatCAMGrbEditor.py:5505
+#: appEditors/AppGeoEditor.py:812 appEditors/AppGerberEditor.py:5505
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:177
#: appTools/ToolTransform.py:259
msgid "Factor for scaling on Y axis."
msgstr "Facteur de mise à l'échelle sur l'axe Y."
-#: appEditors/appGeoEditor.py:819 appEditors/FlatCAMGrbEditor.py:5512
+#: appEditors/AppGeoEditor.py:819 appEditors/AppGerberEditor.py:5512
#: appTools/ToolTransform.py:266
msgid "Scale Y"
msgstr "Mise à l'échelle Y"
-#: appEditors/appGeoEditor.py:846 appEditors/FlatCAMGrbEditor.py:5539
+#: appEditors/AppGeoEditor.py:846 appEditors/AppGerberEditor.py:5539
#: appTools/ToolTransform.py:293
msgid "Flip on X"
msgstr "Miroir sur X"
-#: appEditors/appGeoEditor.py:848 appEditors/appGeoEditor.py:853
-#: appEditors/FlatCAMGrbEditor.py:5541 appEditors/FlatCAMGrbEditor.py:5546
+#: appEditors/AppGeoEditor.py:848 appEditors/AppGeoEditor.py:853
+#: appEditors/AppGerberEditor.py:5541 appEditors/AppGerberEditor.py:5546
#: appTools/ToolTransform.py:295 appTools/ToolTransform.py:300
msgid "Flip the selected object(s) over the X axis."
msgstr "Retournez le ou les objets sélectionnés sur l’axe X."
-#: appEditors/appGeoEditor.py:851 appEditors/FlatCAMGrbEditor.py:5544
+#: appEditors/AppGeoEditor.py:851 appEditors/AppGerberEditor.py:5544
#: appTools/ToolTransform.py:298
msgid "Flip on Y"
msgstr "Miroir sur Y"
-#: appEditors/appGeoEditor.py:871 appEditors/FlatCAMGrbEditor.py:5564
+#: appEditors/AppGeoEditor.py:871 appEditors/AppGerberEditor.py:5564
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:191
#: appTools/ToolTransform.py:318
msgid "X val"
msgstr "Valeur X"
-#: appEditors/appGeoEditor.py:873 appEditors/FlatCAMGrbEditor.py:5566
+#: appEditors/AppGeoEditor.py:873 appEditors/AppGerberEditor.py:5566
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:193
#: appTools/ToolTransform.py:320
msgid "Distance to offset on X axis. In current units."
msgstr "Distance à compenser sur l'axe X. En unités actuelles."
-#: appEditors/appGeoEditor.py:880 appEditors/FlatCAMGrbEditor.py:5573
+#: appEditors/AppGeoEditor.py:880 appEditors/AppGerberEditor.py:5573
#: appTools/ToolTransform.py:327
msgid "Offset X"
msgstr "Décalage X"
-#: appEditors/appGeoEditor.py:882 appEditors/appGeoEditor.py:902
-#: appEditors/FlatCAMGrbEditor.py:5575 appEditors/FlatCAMGrbEditor.py:5595
+#: appEditors/AppGeoEditor.py:882 appEditors/AppGeoEditor.py:902
+#: appEditors/AppGerberEditor.py:5575 appEditors/AppGerberEditor.py:5595
#: appTools/ToolTransform.py:329 appTools/ToolTransform.py:349
msgid ""
"Offset the selected object(s).\n"
@@ -2266,31 +2266,31 @@ msgstr ""
"Le point de référence est le milieu de\n"
"le cadre de sélection pour tous les objets sélectionnés.\n"
-#: appEditors/appGeoEditor.py:891 appEditors/FlatCAMGrbEditor.py:5584
+#: appEditors/AppGeoEditor.py:891 appEditors/AppGerberEditor.py:5584
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:204
#: appTools/ToolTransform.py:338
msgid "Y val"
msgstr "Valeur Y"
-#: appEditors/appGeoEditor.py:893 appEditors/FlatCAMGrbEditor.py:5586
+#: appEditors/AppGeoEditor.py:893 appEditors/AppGerberEditor.py:5586
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:206
#: appTools/ToolTransform.py:340
msgid "Distance to offset on Y axis. In current units."
msgstr "Distance à compenser sur l'axe X. En unités actuelles."
-#: appEditors/appGeoEditor.py:900 appEditors/FlatCAMGrbEditor.py:5593
+#: appEditors/AppGeoEditor.py:900 appEditors/AppGerberEditor.py:5593
#: appTools/ToolTransform.py:347
msgid "Offset Y"
msgstr "Décalage Y"
-#: appEditors/appGeoEditor.py:920 appEditors/FlatCAMGrbEditor.py:5613
+#: appEditors/AppGeoEditor.py:920 appEditors/AppGerberEditor.py:5613
#: appGUI/preferences/tools/Tools2QRCodePrefGroupUI.py:142
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:216
#: appTools/ToolQRCode.py:206 appTools/ToolTransform.py:367
msgid "Rounded"
msgstr "Arrondi"
-#: appEditors/appGeoEditor.py:922 appEditors/FlatCAMGrbEditor.py:5615
+#: appEditors/AppGeoEditor.py:922 appEditors/AppGerberEditor.py:5615
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:218
#: appTools/ToolTransform.py:369
msgid ""
@@ -2304,14 +2304,14 @@ msgstr ""
"S'il n'est pas coché, le tampon suivra la géométrie exacte\n"
"de la forme tamponnée."
-#: appEditors/appGeoEditor.py:930 appEditors/FlatCAMGrbEditor.py:5623
+#: appEditors/AppGeoEditor.py:930 appEditors/AppGerberEditor.py:5623
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:226
#: appTools/ToolDistance.py:505 appTools/ToolDistanceMin.py:286
#: appTools/ToolTransform.py:377
msgid "Distance"
msgstr "Distance"
-#: appEditors/appGeoEditor.py:932 appEditors/FlatCAMGrbEditor.py:5625
+#: appEditors/AppGeoEditor.py:932 appEditors/AppGerberEditor.py:5625
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:228
#: appTools/ToolTransform.py:379
msgid ""
@@ -2325,12 +2325,12 @@ msgstr ""
"Chaque élément de géométrie de l'objet sera augmenté\n"
"ou diminué avec la «distance»."
-#: appEditors/appGeoEditor.py:944 appEditors/FlatCAMGrbEditor.py:5637
+#: appEditors/AppGeoEditor.py:944 appEditors/AppGerberEditor.py:5637
#: appTools/ToolTransform.py:391
msgid "Buffer D"
msgstr "Tampon D"
-#: appEditors/appGeoEditor.py:946 appEditors/FlatCAMGrbEditor.py:5639
+#: appEditors/AppGeoEditor.py:946 appEditors/AppGerberEditor.py:5639
#: appTools/ToolTransform.py:393
msgid ""
"Create the buffer effect on each geometry,\n"
@@ -2339,7 +2339,7 @@ msgstr ""
"Créez l'effet tampon sur chaque géométrie,\n"
"élément de l'objet sélectionné, en utilisant la distance."
-#: appEditors/appGeoEditor.py:957 appEditors/FlatCAMGrbEditor.py:5650
+#: appEditors/AppGeoEditor.py:957 appEditors/AppGerberEditor.py:5650
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:245
#: appTools/ToolTransform.py:404
msgid ""
@@ -2355,12 +2355,12 @@ msgstr ""
"ou diminué pour correspondre à la «valeur». La valeur est un pourcentage\n"
"de la dimension initiale."
-#: appEditors/appGeoEditor.py:970 appEditors/FlatCAMGrbEditor.py:5663
+#: appEditors/AppGeoEditor.py:970 appEditors/AppGerberEditor.py:5663
#: appTools/ToolTransform.py:417
msgid "Buffer F"
msgstr "Tampon F"
-#: appEditors/appGeoEditor.py:972 appEditors/FlatCAMGrbEditor.py:5665
+#: appEditors/AppGeoEditor.py:972 appEditors/AppGerberEditor.py:5665
#: appTools/ToolTransform.py:419
msgid ""
"Create the buffer effect on each geometry,\n"
@@ -2369,7 +2369,7 @@ msgstr ""
"Créez l'effet tampon sur chaque géométrie,\n"
"élément de l'objet sélectionné, en utilisant le facteur."
-#: appEditors/appGeoEditor.py:1043 appEditors/FlatCAMGrbEditor.py:5736
+#: appEditors/AppGeoEditor.py:1043 appEditors/AppGerberEditor.py:5736
#: appGUI/ObjectUI.py:1103 appGUI/ObjectUI.py:1958
#: appGUI/preferences/tools/Tools2CalPrefGroupUI.py:48
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
@@ -2380,334 +2380,334 @@ msgstr ""
msgid "Object"
msgstr "Objet"
-#: appEditors/appGeoEditor.py:1107 appEditors/appGeoEditor.py:1130
-#: appEditors/appGeoEditor.py:1276 appEditors/appGeoEditor.py:1301
-#: appEditors/appGeoEditor.py:1335 appEditors/appGeoEditor.py:1370
-#: appEditors/appGeoEditor.py:1401 appEditors/FlatCAMGrbEditor.py:5800
-#: appEditors/FlatCAMGrbEditor.py:5823 appEditors/FlatCAMGrbEditor.py:5968
-#: appEditors/FlatCAMGrbEditor.py:6001 appEditors/FlatCAMGrbEditor.py:6044
-#: appEditors/FlatCAMGrbEditor.py:6085 appEditors/FlatCAMGrbEditor.py:6121
+#: appEditors/AppGeoEditor.py:1107 appEditors/AppGeoEditor.py:1130
+#: appEditors/AppGeoEditor.py:1276 appEditors/AppGeoEditor.py:1301
+#: appEditors/AppGeoEditor.py:1335 appEditors/AppGeoEditor.py:1370
+#: appEditors/AppGeoEditor.py:1401 appEditors/AppGerberEditor.py:5800
+#: appEditors/AppGerberEditor.py:5823 appEditors/AppGerberEditor.py:5968
+#: appEditors/AppGerberEditor.py:6001 appEditors/AppGerberEditor.py:6044
+#: appEditors/AppGerberEditor.py:6085 appEditors/AppGerberEditor.py:6121
msgid "No shape selected."
msgstr "Aucune forme sélectionnée."
-#: appEditors/appGeoEditor.py:1115 appEditors/FlatCAMGrbEditor.py:5808
+#: appEditors/AppGeoEditor.py:1115 appEditors/AppGerberEditor.py:5808
#: appTools/ToolTransform.py:585
msgid "Incorrect format for Point value. Needs format X,Y"
msgstr "Format incorrect pour la valeur de point. Nécessite le format X, Y"
-#: appEditors/appGeoEditor.py:1140 appEditors/FlatCAMGrbEditor.py:5833
+#: appEditors/AppGeoEditor.py:1140 appEditors/AppGerberEditor.py:5833
#: appTools/ToolTransform.py:602
msgid "Rotate transformation can not be done for a value of 0."
msgstr ""
"La transformation par rotation ne peut pas être effectuée pour une valeur de "
"0."
-#: appEditors/appGeoEditor.py:1198 appEditors/appGeoEditor.py:1219
-#: appEditors/FlatCAMGrbEditor.py:5891 appEditors/FlatCAMGrbEditor.py:5912
+#: appEditors/AppGeoEditor.py:1198 appEditors/AppGeoEditor.py:1219
+#: appEditors/AppGerberEditor.py:5891 appEditors/AppGerberEditor.py:5912
#: appTools/ToolTransform.py:660 appTools/ToolTransform.py:681
msgid "Scale transformation can not be done for a factor of 0 or 1."
msgstr ""
"La transformation d'échelle ne peut pas être effectuée pour un facteur de 0 "
"ou 1."
-#: appEditors/appGeoEditor.py:1232 appEditors/appGeoEditor.py:1241
-#: appEditors/FlatCAMGrbEditor.py:5925 appEditors/FlatCAMGrbEditor.py:5934
+#: appEditors/AppGeoEditor.py:1232 appEditors/AppGeoEditor.py:1241
+#: appEditors/AppGerberEditor.py:5925 appEditors/AppGerberEditor.py:5934
#: appTools/ToolTransform.py:694 appTools/ToolTransform.py:703
msgid "Offset transformation can not be done for a value of 0."
msgstr ""
"La transformation de décalage ne peut pas être effectuée pour une valeur de "
"0."
-#: appEditors/appGeoEditor.py:1271 appEditors/FlatCAMGrbEditor.py:5971
+#: appEditors/AppGeoEditor.py:1271 appEditors/AppGerberEditor.py:5971
#: appTools/ToolTransform.py:731
msgid "Appying Rotate"
msgstr "Appliquer la Rotation"
-#: appEditors/appGeoEditor.py:1284 appEditors/FlatCAMGrbEditor.py:5983
+#: appEditors/AppGeoEditor.py:1284 appEditors/AppGerberEditor.py:5983
msgid "Done. Rotate completed."
msgstr "Terminé. Rotation terminée."
-#: appEditors/appGeoEditor.py:1286
+#: appEditors/AppGeoEditor.py:1286
msgid "Rotation action was not executed"
msgstr "L'action de rotation n'a pas été exécutée"
-#: appEditors/appGeoEditor.py:1304 appEditors/FlatCAMGrbEditor.py:6004
+#: appEditors/AppGeoEditor.py:1304 appEditors/AppGerberEditor.py:6004
#: appTools/ToolTransform.py:757
msgid "Applying Flip"
msgstr "Appliquer Flip"
-#: appEditors/appGeoEditor.py:1312 appEditors/FlatCAMGrbEditor.py:6016
+#: appEditors/AppGeoEditor.py:1312 appEditors/AppGerberEditor.py:6016
#: appTools/ToolTransform.py:774
msgid "Flip on the Y axis done"
msgstr "Tournez sur l'axe des Y fait"
-#: appEditors/appGeoEditor.py:1315 appEditors/FlatCAMGrbEditor.py:6024
+#: appEditors/AppGeoEditor.py:1315 appEditors/AppGerberEditor.py:6024
#: appTools/ToolTransform.py:783
msgid "Flip on the X axis done"
msgstr "Tournez sur l'axe X terminé"
-#: appEditors/appGeoEditor.py:1319
+#: appEditors/AppGeoEditor.py:1319
msgid "Flip action was not executed"
msgstr "L'action Flip n'a pas été exécutée"
-#: appEditors/appGeoEditor.py:1338 appEditors/FlatCAMGrbEditor.py:6047
+#: appEditors/AppGeoEditor.py:1338 appEditors/AppGerberEditor.py:6047
#: appTools/ToolTransform.py:804
msgid "Applying Skew"
msgstr "Application de l'inclinaison"
-#: appEditors/appGeoEditor.py:1347 appEditors/FlatCAMGrbEditor.py:6063
+#: appEditors/AppGeoEditor.py:1347 appEditors/AppGerberEditor.py:6063
msgid "Skew on the X axis done"
msgstr "Inclinaison sur l'axe X terminée"
-#: appEditors/appGeoEditor.py:1349 appEditors/FlatCAMGrbEditor.py:6065
+#: appEditors/AppGeoEditor.py:1349 appEditors/AppGerberEditor.py:6065
msgid "Skew on the Y axis done"
msgstr "Inclinaison sur l'axe des Y faite"
-#: appEditors/appGeoEditor.py:1352
+#: appEditors/AppGeoEditor.py:1352
msgid "Skew action was not executed"
msgstr "L'action de biais n'a pas été exécutée"
-#: appEditors/appGeoEditor.py:1373 appEditors/FlatCAMGrbEditor.py:6088
+#: appEditors/AppGeoEditor.py:1373 appEditors/AppGerberEditor.py:6088
#: appTools/ToolTransform.py:831
msgid "Applying Scale"
msgstr "Échelle d'application"
-#: appEditors/appGeoEditor.py:1382 appEditors/FlatCAMGrbEditor.py:6101
+#: appEditors/AppGeoEditor.py:1382 appEditors/AppGerberEditor.py:6101
msgid "Scale on the X axis done"
msgstr "Échelle terminée sur l'axe X"
-#: appEditors/appGeoEditor.py:1384 appEditors/FlatCAMGrbEditor.py:6103
+#: appEditors/AppGeoEditor.py:1384 appEditors/AppGerberEditor.py:6103
msgid "Scale on the Y axis done"
msgstr "Echelle terminée sur l'axe des Y"
-#: appEditors/appGeoEditor.py:1386
+#: appEditors/AppGeoEditor.py:1386
msgid "Scale action was not executed"
msgstr "L'action d'échelle n'a pas été exécutée"
-#: appEditors/appGeoEditor.py:1404 appEditors/FlatCAMGrbEditor.py:6124
+#: appEditors/AppGeoEditor.py:1404 appEditors/AppGerberEditor.py:6124
#: appTools/ToolTransform.py:859
msgid "Applying Offset"
msgstr "Appliquer un Décalage"
-#: appEditors/appGeoEditor.py:1414 appEditors/FlatCAMGrbEditor.py:6145
+#: appEditors/AppGeoEditor.py:1414 appEditors/AppGerberEditor.py:6145
msgid "Offset on the X axis done"
msgstr "Décalage sur l'axe X terminé"
-#: appEditors/appGeoEditor.py:1416 appEditors/FlatCAMGrbEditor.py:6147
+#: appEditors/AppGeoEditor.py:1416 appEditors/AppGerberEditor.py:6147
msgid "Offset on the Y axis done"
msgstr "Décalage sur l'axe Y terminé"
-#: appEditors/appGeoEditor.py:1419
+#: appEditors/AppGeoEditor.py:1419
msgid "Offset action was not executed"
msgstr "L'action offset n'a pas été exécutée"
-#: appEditors/appGeoEditor.py:1426 appEditors/FlatCAMGrbEditor.py:6157
+#: appEditors/AppGeoEditor.py:1426 appEditors/AppGerberEditor.py:6157
msgid "No shape selected"
msgstr "Aucune forme sélectionnée"
-#: appEditors/appGeoEditor.py:1429 appEditors/FlatCAMGrbEditor.py:6160
+#: appEditors/AppGeoEditor.py:1429 appEditors/AppGerberEditor.py:6160
#: appTools/ToolTransform.py:889
msgid "Applying Buffer"
msgstr "Application du tampon"
-#: appEditors/appGeoEditor.py:1436 appEditors/FlatCAMGrbEditor.py:6182
+#: appEditors/AppGeoEditor.py:1436 appEditors/AppGerberEditor.py:6182
#: appTools/ToolTransform.py:910
msgid "Buffer done"
msgstr "Tampon terminé"
-#: appEditors/appGeoEditor.py:1440 appEditors/FlatCAMGrbEditor.py:6186
+#: appEditors/AppGeoEditor.py:1440 appEditors/AppGerberEditor.py:6186
#: appTools/ToolTransform.py:879 appTools/ToolTransform.py:915
msgid "Action was not executed, due of"
msgstr "L'action n'a pas été exécutée en raison de"
-#: appEditors/appGeoEditor.py:1444 appEditors/FlatCAMGrbEditor.py:6190
+#: appEditors/AppGeoEditor.py:1444 appEditors/AppGerberEditor.py:6190
msgid "Rotate ..."
msgstr "Tourner ..."
-#: appEditors/appGeoEditor.py:1445 appEditors/appGeoEditor.py:1494
-#: appEditors/appGeoEditor.py:1509 appEditors/FlatCAMGrbEditor.py:6191
-#: appEditors/FlatCAMGrbEditor.py:6240 appEditors/FlatCAMGrbEditor.py:6255
+#: appEditors/AppGeoEditor.py:1445 appEditors/AppGeoEditor.py:1494
+#: appEditors/AppGeoEditor.py:1509 appEditors/AppGerberEditor.py:6191
+#: appEditors/AppGerberEditor.py:6240 appEditors/AppGerberEditor.py:6255
msgid "Enter an Angle Value (degrees)"
msgstr "Entrer une valeur d'angle (degrés)"
-#: appEditors/appGeoEditor.py:1453 appEditors/FlatCAMGrbEditor.py:6199
+#: appEditors/AppGeoEditor.py:1453 appEditors/AppGerberEditor.py:6199
msgid "Geometry shape rotate done"
msgstr "Rotation de la forme géométrique effectuée"
-#: appEditors/appGeoEditor.py:1456 appEditors/FlatCAMGrbEditor.py:6202
+#: appEditors/AppGeoEditor.py:1456 appEditors/AppGerberEditor.py:6202
msgid "Geometry shape rotate cancelled"
msgstr "Rotation de la forme géométrique annulée"
-#: appEditors/appGeoEditor.py:1461 appEditors/FlatCAMGrbEditor.py:6207
+#: appEditors/AppGeoEditor.py:1461 appEditors/AppGerberEditor.py:6207
msgid "Offset on X axis ..."
msgstr "Décalage sur l'axe des X ..."
-#: appEditors/appGeoEditor.py:1462 appEditors/appGeoEditor.py:1479
-#: appEditors/FlatCAMGrbEditor.py:6208 appEditors/FlatCAMGrbEditor.py:6225
+#: appEditors/AppGeoEditor.py:1462 appEditors/AppGeoEditor.py:1479
+#: appEditors/AppGerberEditor.py:6208 appEditors/AppGerberEditor.py:6225
msgid "Enter a distance Value"
msgstr "Entrez une valeur de distance"
-#: appEditors/appGeoEditor.py:1470 appEditors/FlatCAMGrbEditor.py:6216
+#: appEditors/AppGeoEditor.py:1470 appEditors/AppGerberEditor.py:6216
msgid "Geometry shape offset on X axis done"
msgstr "Géométrie décalée sur l'axe des X effectuée"
-#: appEditors/appGeoEditor.py:1473 appEditors/FlatCAMGrbEditor.py:6219
+#: appEditors/AppGeoEditor.py:1473 appEditors/AppGerberEditor.py:6219
msgid "Geometry shape offset X cancelled"
msgstr "Décalage géométrique X annulé"
-#: appEditors/appGeoEditor.py:1478 appEditors/FlatCAMGrbEditor.py:6224
+#: appEditors/AppGeoEditor.py:1478 appEditors/AppGerberEditor.py:6224
msgid "Offset on Y axis ..."
msgstr "Décalage sur l'axe Y ..."
-#: appEditors/appGeoEditor.py:1487 appEditors/FlatCAMGrbEditor.py:6233
+#: appEditors/AppGeoEditor.py:1487 appEditors/AppGerberEditor.py:6233
msgid "Geometry shape offset on Y axis done"
msgstr "Géométrie décalée sur l'axe des Y effectuée"
-#: appEditors/appGeoEditor.py:1490
+#: appEditors/AppGeoEditor.py:1490
msgid "Geometry shape offset on Y axis canceled"
msgstr "Décalage de la forme de la géométrie sur l'axe des Y"
-#: appEditors/appGeoEditor.py:1493 appEditors/FlatCAMGrbEditor.py:6239
+#: appEditors/AppGeoEditor.py:1493 appEditors/AppGerberEditor.py:6239
msgid "Skew on X axis ..."
msgstr "Skew on X axis ..."
-#: appEditors/appGeoEditor.py:1502 appEditors/FlatCAMGrbEditor.py:6248
+#: appEditors/AppGeoEditor.py:1502 appEditors/AppGerberEditor.py:6248
msgid "Geometry shape skew on X axis done"
msgstr "Forme de la géométrie inclinée sur l'axe X terminée"
-#: appEditors/appGeoEditor.py:1505
+#: appEditors/AppGeoEditor.py:1505
msgid "Geometry shape skew on X axis canceled"
msgstr "Géométrie inclinée sur l'axe X annulée"
-#: appEditors/appGeoEditor.py:1508 appEditors/FlatCAMGrbEditor.py:6254
+#: appEditors/AppGeoEditor.py:1508 appEditors/AppGerberEditor.py:6254
msgid "Skew on Y axis ..."
msgstr "Inclinez sur l'axe Y ..."
-#: appEditors/appGeoEditor.py:1517 appEditors/FlatCAMGrbEditor.py:6263
+#: appEditors/AppGeoEditor.py:1517 appEditors/AppGerberEditor.py:6263
msgid "Geometry shape skew on Y axis done"
msgstr "Géométrie inclinée sur l'axe des Y"
-#: appEditors/appGeoEditor.py:1520
+#: appEditors/AppGeoEditor.py:1520
msgid "Geometry shape skew on Y axis canceled"
msgstr "Géométrie inclinée sur l'axe des Y oblitérée"
-#: appEditors/appGeoEditor.py:1950 appEditors/appGeoEditor.py:2021
-#: appEditors/FlatCAMGrbEditor.py:1444 appEditors/FlatCAMGrbEditor.py:1522
+#: appEditors/AppGeoEditor.py:1950 appEditors/AppGeoEditor.py:2021
+#: appEditors/AppGerberEditor.py:1444 appEditors/AppGerberEditor.py:1522
msgid "Click on Center point ..."
msgstr "Cliquez sur Point central ..."
-#: appEditors/appGeoEditor.py:1963 appEditors/FlatCAMGrbEditor.py:1454
+#: appEditors/AppGeoEditor.py:1963 appEditors/AppGerberEditor.py:1454
msgid "Click on Perimeter point to complete ..."
msgstr "Cliquez sur le point du périmètre pour terminer ..."
-#: appEditors/appGeoEditor.py:1995
+#: appEditors/AppGeoEditor.py:1995
msgid "Done. Adding Circle completed."
msgstr "Terminé. Ajout du cercle terminé."
-#: appEditors/appGeoEditor.py:2049 appEditors/FlatCAMGrbEditor.py:1555
+#: appEditors/AppGeoEditor.py:2049 appEditors/AppGerberEditor.py:1555
msgid "Click on Start point ..."
msgstr "Cliquez sur le point de départ ..."
-#: appEditors/appGeoEditor.py:2051 appEditors/FlatCAMGrbEditor.py:1557
+#: appEditors/AppGeoEditor.py:2051 appEditors/AppGerberEditor.py:1557
msgid "Click on Point3 ..."
msgstr "Cliquez sur le point 3 ..."
-#: appEditors/appGeoEditor.py:2053 appEditors/FlatCAMGrbEditor.py:1559
+#: appEditors/AppGeoEditor.py:2053 appEditors/AppGerberEditor.py:1559
msgid "Click on Stop point ..."
msgstr "Cliquez sur le point d'arrêt ..."
-#: appEditors/appGeoEditor.py:2058 appEditors/FlatCAMGrbEditor.py:1564
+#: appEditors/AppGeoEditor.py:2058 appEditors/AppGerberEditor.py:1564
msgid "Click on Stop point to complete ..."
msgstr "Cliquez sur le point d'arrêt pour terminer ..."
-#: appEditors/appGeoEditor.py:2060 appEditors/FlatCAMGrbEditor.py:1566
+#: appEditors/AppGeoEditor.py:2060 appEditors/AppGerberEditor.py:1566
msgid "Click on Point2 to complete ..."
msgstr "Cliquez sur le point 2 pour compléter ..."
-#: appEditors/appGeoEditor.py:2062 appEditors/FlatCAMGrbEditor.py:1568
+#: appEditors/AppGeoEditor.py:2062 appEditors/AppGerberEditor.py:1568
msgid "Click on Center point to complete ..."
msgstr "Cliquez sur le point central pour terminer ..."
-#: appEditors/appGeoEditor.py:2074
+#: appEditors/AppGeoEditor.py:2074
#, python-format
msgid "Direction: %s"
msgstr "Direction: %s"
-#: appEditors/appGeoEditor.py:2088 appEditors/FlatCAMGrbEditor.py:1594
+#: appEditors/AppGeoEditor.py:2088 appEditors/AppGerberEditor.py:1594
msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
msgstr ""
"Mode: Démarrer -> Arrêter -> Centre. Cliquez sur le point de départ ..."
-#: appEditors/appGeoEditor.py:2091 appEditors/FlatCAMGrbEditor.py:1597
+#: appEditors/AppGeoEditor.py:2091 appEditors/AppGerberEditor.py:1597
msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
msgstr "Mode: Point 1 -> Point 3 -> Point 2. Cliquez sur Point 1 ..."
-#: appEditors/appGeoEditor.py:2094 appEditors/FlatCAMGrbEditor.py:1600
+#: appEditors/AppGeoEditor.py:2094 appEditors/AppGerberEditor.py:1600
msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
msgstr "Mode: Centre -> Démarrer -> Arrêter. Cliquez sur Point central ..."
-#: appEditors/appGeoEditor.py:2235
+#: appEditors/AppGeoEditor.py:2235
msgid "Done. Arc completed."
msgstr "Terminé. Arc terminé."
-#: appEditors/appGeoEditor.py:2266 appEditors/appGeoEditor.py:2339
+#: appEditors/AppGeoEditor.py:2266 appEditors/AppGeoEditor.py:2339
msgid "Click on 1st corner ..."
msgstr "Cliquez sur le 1er coin ..."
-#: appEditors/appGeoEditor.py:2278
+#: appEditors/AppGeoEditor.py:2278
msgid "Click on opposite corner to complete ..."
msgstr "Cliquez sur le coin opposé pour terminer ..."
-#: appEditors/appGeoEditor.py:2308
+#: appEditors/AppGeoEditor.py:2308
msgid "Done. Rectangle completed."
msgstr "Terminé. Rectangle complété."
-#: appEditors/appGeoEditor.py:2383
+#: appEditors/AppGeoEditor.py:2383
msgid "Done. Polygon completed."
msgstr "Terminé. Le polygone est terminé."
-#: appEditors/appGeoEditor.py:2397 appEditors/appGeoEditor.py:2462
-#: appEditors/FlatCAMGrbEditor.py:1102 appEditors/FlatCAMGrbEditor.py:1322
+#: appEditors/AppGeoEditor.py:2397 appEditors/AppGeoEditor.py:2462
+#: appEditors/AppGerberEditor.py:1102 appEditors/AppGerberEditor.py:1322
msgid "Backtracked one point ..."
msgstr "Retracé un point ..."
-#: appEditors/appGeoEditor.py:2440
+#: appEditors/AppGeoEditor.py:2440
msgid "Done. Path completed."
msgstr "Terminé. Chemin complété."
-#: appEditors/appGeoEditor.py:2599
+#: appEditors/AppGeoEditor.py:2599
msgid "No shape selected. Select a shape to explode"
msgstr "Aucune forme sélectionnée. Sélectionnez une forme à exploser"
-#: appEditors/appGeoEditor.py:2632
+#: appEditors/AppGeoEditor.py:2632
msgid "Done. Polygons exploded into lines."
msgstr "Terminé. Les polygones ont explosé en lignes."
-#: appEditors/appGeoEditor.py:2664
+#: appEditors/AppGeoEditor.py:2664
msgid "MOVE: No shape selected. Select a shape to move"
msgstr "Déplacer: Aucune forme sélectionnée. Sélectionnez une forme à déplacer"
-#: appEditors/appGeoEditor.py:2667 appEditors/appGeoEditor.py:2687
+#: appEditors/AppGeoEditor.py:2667 appEditors/AppGeoEditor.py:2687
msgid " MOVE: Click on reference point ..."
msgstr " Déplacer: Cliquez sur le point de référence ..."
-#: appEditors/appGeoEditor.py:2672
+#: appEditors/AppGeoEditor.py:2672
msgid " Click on destination point ..."
msgstr " Cliquez sur le point de destination ..."
-#: appEditors/appGeoEditor.py:2712
+#: appEditors/AppGeoEditor.py:2712
msgid "Done. Geometry(s) Move completed."
msgstr "Terminé. Géométrie (s) Déplacement terminé."
-#: appEditors/appGeoEditor.py:2845
+#: appEditors/AppGeoEditor.py:2845
msgid "Done. Geometry(s) Copy completed."
msgstr "Terminé. Géométrie (s) Copie terminée."
-#: appEditors/appGeoEditor.py:2876 appEditors/FlatCAMGrbEditor.py:897
+#: appEditors/AppGeoEditor.py:2876 appEditors/AppGerberEditor.py:897
msgid "Click on 1st point ..."
msgstr "Cliquez sur le 1er point ..."
-#: appEditors/appGeoEditor.py:2900
+#: appEditors/AppGeoEditor.py:2900
msgid ""
"Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
"Error"
@@ -2715,83 +2715,83 @@ msgstr ""
"Police non supportée. Seuls les formats Normal, Gras, Italique et "
"GrasItalique sont pris en charge. Erreur"
-#: appEditors/appGeoEditor.py:2908
+#: appEditors/AppGeoEditor.py:2908
msgid "No text to add."
msgstr "Pas de texte à ajouter."
-#: appEditors/appGeoEditor.py:2918
+#: appEditors/AppGeoEditor.py:2918
msgid " Done. Adding Text completed."
msgstr " Terminé. Ajout de texte terminé."
-#: appEditors/appGeoEditor.py:2955
+#: appEditors/AppGeoEditor.py:2955
msgid "Create buffer geometry ..."
msgstr "Créer une géométrie tampon ..."
-#: appEditors/appGeoEditor.py:2990 appEditors/FlatCAMGrbEditor.py:5153
+#: appEditors/AppGeoEditor.py:2990 appEditors/AppGerberEditor.py:5153
msgid "Done. Buffer Tool completed."
msgstr "Terminé. L'outil Tampon est terminé."
-#: appEditors/appGeoEditor.py:3018
+#: appEditors/AppGeoEditor.py:3018
msgid "Done. Buffer Int Tool completed."
msgstr "Terminé. L'outil Intérieur du Tampon est terminé."
-#: appEditors/appGeoEditor.py:3046
+#: appEditors/AppGeoEditor.py:3046
msgid "Done. Buffer Ext Tool completed."
msgstr "Terminé. L'outil Extérieur du Tampon est terminé."
-#: appEditors/appGeoEditor.py:3095 appEditors/FlatCAMGrbEditor.py:2160
+#: appEditors/AppGeoEditor.py:3095 appEditors/AppGerberEditor.py:2160
msgid "Select a shape to act as deletion area ..."
msgstr "Sélectionnez une forme pour agir comme zone de suppression ..."
-#: appEditors/appGeoEditor.py:3097 appEditors/appGeoEditor.py:3123
-#: appEditors/appGeoEditor.py:3129 appEditors/FlatCAMGrbEditor.py:2162
+#: appEditors/AppGeoEditor.py:3097 appEditors/AppGeoEditor.py:3123
+#: appEditors/AppGeoEditor.py:3129 appEditors/AppGerberEditor.py:2162
msgid "Click to pick-up the erase shape..."
msgstr "Cliquez pour récupérer la forme à effacer ..."
-#: appEditors/appGeoEditor.py:3133 appEditors/FlatCAMGrbEditor.py:2221
+#: appEditors/AppGeoEditor.py:3133 appEditors/AppGerberEditor.py:2221
msgid "Click to erase ..."
msgstr "Cliquez pour effacer ..."
-#: appEditors/appGeoEditor.py:3162 appEditors/FlatCAMGrbEditor.py:2254
+#: appEditors/AppGeoEditor.py:3162 appEditors/AppGerberEditor.py:2254
msgid "Done. Eraser tool action completed."
msgstr "Terminé. Action de l’outil gomme terminée."
-#: appEditors/appGeoEditor.py:3212
+#: appEditors/AppGeoEditor.py:3212
msgid "Create Paint geometry ..."
msgstr "Créer une géométrie de peinture ..."
-#: appEditors/appGeoEditor.py:3225 appEditors/FlatCAMGrbEditor.py:2417
+#: appEditors/AppGeoEditor.py:3225 appEditors/AppGerberEditor.py:2417
msgid "Shape transformations ..."
msgstr "Transformations de forme ..."
-#: appEditors/appGeoEditor.py:3281
+#: appEditors/AppGeoEditor.py:3281
#: appGUI/preferences/geometry/GeometryEditorPrefGroupUI.py:27
msgid "Geometry Editor"
msgstr "Éditeur de Géométrie"
-#: appEditors/appGeoEditor.py:3287 appEditors/FlatCAMGrbEditor.py:2495
-#: appEditors/FlatCAMGrbEditor.py:3951 appGUI/ObjectUI.py:282
+#: appEditors/AppGeoEditor.py:3287 appEditors/AppGerberEditor.py:2495
+#: appEditors/AppGerberEditor.py:3951 appGUI/ObjectUI.py:282
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256 appTools/ToolCutOut.py:95
#: appTools/ToolTransform.py:92
msgid "Type"
msgstr "Type"
-#: appEditors/appGeoEditor.py:3287 appGUI/ObjectUI.py:221
+#: appEditors/AppGeoEditor.py:3287 appGUI/ObjectUI.py:221
#: appGUI/ObjectUI.py:521 appGUI/ObjectUI.py:1330 appGUI/ObjectUI.py:2165
#: appGUI/ObjectUI.py:2469 appGUI/ObjectUI.py:2536
#: appTools/ToolCalibration.py:234 appTools/ToolFiducials.py:70
msgid "Name"
msgstr "Nom"
-#: appEditors/appGeoEditor.py:3539
+#: appEditors/AppGeoEditor.py:3539
msgid "Ring"
msgstr "L'anneau"
-#: appEditors/appGeoEditor.py:3541
+#: appEditors/AppGeoEditor.py:3541
msgid "Line"
msgstr "Ligne"
-#: appEditors/appGeoEditor.py:3543 appGUI/MainGUI.py:1446
+#: appEditors/AppGeoEditor.py:3543 appGUI/MainGUI.py:1446
#: appGUI/ObjectUI.py:1150 appGUI/ObjectUI.py:2005
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:226
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:299
@@ -2802,47 +2802,47 @@ msgstr "Ligne"
msgid "Polygon"
msgstr "Polygone"
-#: appEditors/appGeoEditor.py:3545
+#: appEditors/AppGeoEditor.py:3545
msgid "Multi-Line"
msgstr "Multi-ligne"
-#: appEditors/appGeoEditor.py:3547
+#: appEditors/AppGeoEditor.py:3547
msgid "Multi-Polygon"
msgstr "Multi-polygone"
-#: appEditors/appGeoEditor.py:3554
+#: appEditors/AppGeoEditor.py:3554
msgid "Geo Elem"
msgstr "Élém. de Géo"
-#: appEditors/appGeoEditor.py:4007
+#: appEditors/AppGeoEditor.py:4007
msgid "Editing MultiGeo Geometry, tool"
msgstr "Modification de la géométrie MultiGeo, outil"
-#: appEditors/appGeoEditor.py:4009
+#: appEditors/AppGeoEditor.py:4009
msgid "with diameter"
msgstr "avec diamètre"
-#: appEditors/appGeoEditor.py:4081
+#: appEditors/AppGeoEditor.py:4081
msgid "Grid Snap enabled."
msgstr "Accrochage à la grille activé."
-#: appEditors/appGeoEditor.py:4085
+#: appEditors/AppGeoEditor.py:4085
msgid "Grid Snap disabled."
msgstr "Accrochage à la grille désactivé."
-#: appEditors/appGeoEditor.py:4446 appGUI/MainGUI.py:3046
+#: appEditors/AppGeoEditor.py:4446 appGUI/MainGUI.py:3046
#: appGUI/MainGUI.py:3092 appGUI/MainGUI.py:3110 appGUI/MainGUI.py:3254
#: appGUI/MainGUI.py:3293 appGUI/MainGUI.py:3305 appGUI/MainGUI.py:3322
msgid "Click on target point."
msgstr "Cliquez sur le point cible."
-#: appEditors/appGeoEditor.py:4762 appEditors/appGeoEditor.py:4797
+#: appEditors/AppGeoEditor.py:4762 appEditors/AppGeoEditor.py:4797
msgid "A selection of at least 2 geo items is required to do Intersection."
msgstr ""
"Une sélection d'au moins 2 éléments géographiques est requise pour effectuer "
"Intersection."
-#: appEditors/appGeoEditor.py:4883 appEditors/appGeoEditor.py:4987
+#: appEditors/AppGeoEditor.py:4883 appEditors/AppGeoEditor.py:4987
msgid ""
"Negative buffer value is not accepted. Use Buffer interior to generate an "
"'inside' shape"
@@ -2850,58 +2850,58 @@ msgstr ""
"La valeur de tampon négative n'est pas acceptée. Utiliser l'intérieur du "
"tampon pour générer une forme «intérieure»"
-#: appEditors/appGeoEditor.py:4893 appEditors/appGeoEditor.py:4946
-#: appEditors/appGeoEditor.py:4996
+#: appEditors/AppGeoEditor.py:4893 appEditors/AppGeoEditor.py:4946
+#: appEditors/AppGeoEditor.py:4996
msgid "Nothing selected for buffering."
msgstr "Aucune sélection pour la mise en mémoire tampon."
-#: appEditors/appGeoEditor.py:4898 appEditors/appGeoEditor.py:4950
-#: appEditors/appGeoEditor.py:5001
+#: appEditors/AppGeoEditor.py:4898 appEditors/AppGeoEditor.py:4950
+#: appEditors/AppGeoEditor.py:5001
msgid "Invalid distance for buffering."
msgstr "Distance non valide pour la mise en mémoire tampon."
-#: appEditors/appGeoEditor.py:4922 appEditors/appGeoEditor.py:5021
+#: appEditors/AppGeoEditor.py:4922 appEditors/AppGeoEditor.py:5021
msgid "Failed, the result is empty. Choose a different buffer value."
msgstr ""
"Echec, le résultat est vide. Choisissez une valeur de tampon différente."
-#: appEditors/appGeoEditor.py:4933
+#: appEditors/AppGeoEditor.py:4933
msgid "Full buffer geometry created."
msgstr "Géométrie de tampon complète créée."
-#: appEditors/appGeoEditor.py:4939
+#: appEditors/AppGeoEditor.py:4939
msgid "Negative buffer value is not accepted."
msgstr "La valeur de tampon négative n'est pas acceptée."
-#: appEditors/appGeoEditor.py:4970
+#: appEditors/AppGeoEditor.py:4970
msgid "Failed, the result is empty. Choose a smaller buffer value."
msgstr ""
"Echec, le résultat est vide. Choisissez une valeur de tampon plus petite."
-#: appEditors/appGeoEditor.py:4980
+#: appEditors/AppGeoEditor.py:4980
msgid "Interior buffer geometry created."
msgstr "Géométrie du tampon intérieur créée."
-#: appEditors/appGeoEditor.py:5031
+#: appEditors/AppGeoEditor.py:5031
msgid "Exterior buffer geometry created."
msgstr "Géométrie tampon externe créée."
-#: appEditors/appGeoEditor.py:5037
+#: appEditors/AppGeoEditor.py:5037
#, python-format
msgid "Could not do Paint. Overlap value has to be less than 100%%."
msgstr ""
"Impossible de peindre. La valeur de chevauchement doit être inférieure à 100 "
"%%."
-#: appEditors/appGeoEditor.py:5044
+#: appEditors/AppGeoEditor.py:5044
msgid "Nothing selected for painting."
msgstr "Rien de sélectionné pour la peinture."
-#: appEditors/appGeoEditor.py:5050
+#: appEditors/AppGeoEditor.py:5050
msgid "Invalid value for"
msgstr "Invalid value for"
-#: appEditors/appGeoEditor.py:5109
+#: appEditors/AppGeoEditor.py:5109
msgid ""
"Could not do Paint. Try a different combination of parameters. Or a "
"different method of Paint"
@@ -2909,160 +2909,160 @@ msgstr ""
"Impossible de faire de la peinture. Essayez une combinaison de paramètres "
"différente. Ou une autre méthode de peinture"
-#: appEditors/appGeoEditor.py:5120
+#: appEditors/AppGeoEditor.py:5120
msgid "Paint done."
msgstr "Peinture faite."
-#: appEditors/FlatCAMGrbEditor.py:211
+#: appEditors/AppGerberEditor.py:211
msgid "To add an Pad first select a aperture in Aperture Table"
msgstr ""
"Pour ajouter un Pad, sélectionnez d’abord une ouverture dans le tableau des "
"ouvertures"
-#: appEditors/FlatCAMGrbEditor.py:218 appEditors/FlatCAMGrbEditor.py:418
+#: appEditors/AppGerberEditor.py:218 appEditors/AppGerberEditor.py:418
msgid "Aperture size is zero. It needs to be greater than zero."
msgstr "La taille de l'ouverture est zéro. Il doit être supérieur à zéro."
-#: appEditors/FlatCAMGrbEditor.py:371 appEditors/FlatCAMGrbEditor.py:684
+#: appEditors/AppGerberEditor.py:371 appEditors/AppGerberEditor.py:684
msgid ""
"Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
msgstr ""
"Type d'ouverture incompatible. Sélectionnez une ouverture de type \"C\", \"R"
"\" ou \"O\"."
-#: appEditors/FlatCAMGrbEditor.py:383
+#: appEditors/AppGerberEditor.py:383
msgid "Done. Adding Pad completed."
msgstr "Terminé. Ajout du pad terminé."
-#: appEditors/FlatCAMGrbEditor.py:410
+#: appEditors/AppGerberEditor.py:410
msgid "To add an Pad Array first select a aperture in Aperture Table"
msgstr ""
"Pour ajouter un Tableau de pads, sélectionnez d’abord une ouverture dans le "
"tableau des ouvertures"
-#: appEditors/FlatCAMGrbEditor.py:490
+#: appEditors/AppGerberEditor.py:490
msgid "Click on the Pad Circular Array Start position"
msgstr "Cliquez sur le Tableau circulaire du Pad position de départ"
-#: appEditors/FlatCAMGrbEditor.py:710
+#: appEditors/AppGerberEditor.py:710
msgid "Too many Pads for the selected spacing angle."
msgstr "Trop de pads pour l'angle d'espacement sélectionné."
-#: appEditors/FlatCAMGrbEditor.py:733
+#: appEditors/AppGerberEditor.py:733
msgid "Done. Pad Array added."
msgstr "Terminé. Pad Tableau ajouté."
-#: appEditors/FlatCAMGrbEditor.py:758
+#: appEditors/AppGerberEditor.py:758
msgid "Select shape(s) and then click ..."
msgstr "Sélectionnez forme (s) puis cliquez sur ..."
-#: appEditors/FlatCAMGrbEditor.py:770
+#: appEditors/AppGerberEditor.py:770
msgid "Failed. Nothing selected."
msgstr "Échoué. Rien de sélectionné."
-#: appEditors/FlatCAMGrbEditor.py:786
+#: appEditors/AppGerberEditor.py:786
msgid ""
"Failed. Poligonize works only on geometries belonging to the same aperture."
msgstr ""
"Échoué. Poligonize ne fonctionne que sur les géométries appartenant à la "
"même ouverture."
-#: appEditors/FlatCAMGrbEditor.py:840
+#: appEditors/AppGerberEditor.py:840
msgid "Done. Poligonize completed."
msgstr "Terminé. Polygoniser terminé."
-#: appEditors/FlatCAMGrbEditor.py:895 appEditors/FlatCAMGrbEditor.py:1119
-#: appEditors/FlatCAMGrbEditor.py:1143
+#: appEditors/AppGerberEditor.py:895 appEditors/AppGerberEditor.py:1119
+#: appEditors/AppGerberEditor.py:1143
msgid "Corner Mode 1: 45 degrees ..."
msgstr "Mode d'angle 1: 45 degrés ..."
-#: appEditors/FlatCAMGrbEditor.py:907 appEditors/FlatCAMGrbEditor.py:1219
+#: appEditors/AppGerberEditor.py:907 appEditors/AppGerberEditor.py:1219
msgid "Click on next Point or click Right mouse button to complete ..."
msgstr ""
"Cliquez sur le prochain point ou cliquez avec le bouton droit de la souris "
"pour terminer ..."
-#: appEditors/FlatCAMGrbEditor.py:1107 appEditors/FlatCAMGrbEditor.py:1140
+#: appEditors/AppGerberEditor.py:1107 appEditors/AppGerberEditor.py:1140
msgid "Corner Mode 2: Reverse 45 degrees ..."
msgstr "Mode de Coin 2: Inverse de 45 degrés ..."
-#: appEditors/FlatCAMGrbEditor.py:1110 appEditors/FlatCAMGrbEditor.py:1137
+#: appEditors/AppGerberEditor.py:1110 appEditors/AppGerberEditor.py:1137
msgid "Corner Mode 3: 90 degrees ..."
msgstr "Mode de Coin 3: 90 degrés ..."
-#: appEditors/FlatCAMGrbEditor.py:1113 appEditors/FlatCAMGrbEditor.py:1134
+#: appEditors/AppGerberEditor.py:1113 appEditors/AppGerberEditor.py:1134
msgid "Corner Mode 4: Reverse 90 degrees ..."
msgstr "Mode de Coin 4: inverser de 90 degrés ..."
-#: appEditors/FlatCAMGrbEditor.py:1116 appEditors/FlatCAMGrbEditor.py:1131
+#: appEditors/AppGerberEditor.py:1116 appEditors/AppGerberEditor.py:1131
msgid "Corner Mode 5: Free angle ..."
msgstr "Mode de Coin 5: Angle libre ..."
-#: appEditors/FlatCAMGrbEditor.py:1193 appEditors/FlatCAMGrbEditor.py:1358
-#: appEditors/FlatCAMGrbEditor.py:1397
+#: appEditors/AppGerberEditor.py:1193 appEditors/AppGerberEditor.py:1358
+#: appEditors/AppGerberEditor.py:1397
msgid "Track Mode 1: 45 degrees ..."
msgstr "Mode de Piste 1: 45 degrés ..."
-#: appEditors/FlatCAMGrbEditor.py:1338 appEditors/FlatCAMGrbEditor.py:1392
+#: appEditors/AppGerberEditor.py:1338 appEditors/AppGerberEditor.py:1392
msgid "Track Mode 2: Reverse 45 degrees ..."
msgstr "Mode de Piste 2: Recul de 45 degrés ..."
-#: appEditors/FlatCAMGrbEditor.py:1343 appEditors/FlatCAMGrbEditor.py:1387
+#: appEditors/AppGerberEditor.py:1343 appEditors/AppGerberEditor.py:1387
msgid "Track Mode 3: 90 degrees ..."
msgstr "Mode de Piste 3: 90 degrés ..."
-#: appEditors/FlatCAMGrbEditor.py:1348 appEditors/FlatCAMGrbEditor.py:1382
+#: appEditors/AppGerberEditor.py:1348 appEditors/AppGerberEditor.py:1382
msgid "Track Mode 4: Reverse 90 degrees ..."
msgstr "Mode de Piste 4: Recul de 90 degrés ..."
-#: appEditors/FlatCAMGrbEditor.py:1353 appEditors/FlatCAMGrbEditor.py:1377
+#: appEditors/AppGerberEditor.py:1353 appEditors/AppGerberEditor.py:1377
msgid "Track Mode 5: Free angle ..."
msgstr "Mode de Piste 5: Angle libre ..."
-#: appEditors/FlatCAMGrbEditor.py:1787
+#: appEditors/AppGerberEditor.py:1787
msgid "Scale the selected Gerber apertures ..."
msgstr "Mettez à l'échelle les ouvertures de Gerber sélectionnées ..."
-#: appEditors/FlatCAMGrbEditor.py:1829
+#: appEditors/AppGerberEditor.py:1829
msgid "Buffer the selected apertures ..."
msgstr "Tamponner les ouvertures sélectionnées ..."
-#: appEditors/FlatCAMGrbEditor.py:1871
+#: appEditors/AppGerberEditor.py:1871
msgid "Mark polygon areas in the edited Gerber ..."
msgstr "Marquer les zones polygonales dans le Gerber édité ..."
-#: appEditors/FlatCAMGrbEditor.py:1937
+#: appEditors/AppGerberEditor.py:1937
msgid "Nothing selected to move"
msgstr "Rien de sélectionné pour bouger"
-#: appEditors/FlatCAMGrbEditor.py:2062
+#: appEditors/AppGerberEditor.py:2062
msgid "Done. Apertures Move completed."
msgstr "Terminé. Déplacement des ouvertures terminé."
-#: appEditors/FlatCAMGrbEditor.py:2144
+#: appEditors/AppGerberEditor.py:2144
msgid "Done. Apertures copied."
msgstr "Terminé. Ouvertures copiées."
-#: appEditors/FlatCAMGrbEditor.py:2462 appGUI/MainGUI.py:1477
+#: appEditors/AppGerberEditor.py:2462 appGUI/MainGUI.py:1477
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:27
msgid "Gerber Editor"
msgstr "Editeur Gerber"
-#: appEditors/FlatCAMGrbEditor.py:2482 appGUI/ObjectUI.py:247
+#: appEditors/AppGerberEditor.py:2482 appGUI/ObjectUI.py:247
#: appTools/ToolProperties.py:159
msgid "Apertures"
msgstr "Ouvertures"
-#: appEditors/FlatCAMGrbEditor.py:2484 appGUI/ObjectUI.py:249
+#: appEditors/AppGerberEditor.py:2484 appGUI/ObjectUI.py:249
msgid "Apertures Table for the Gerber Object."
msgstr "Tableau des Ouvertures pour l'objet Gerber."
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Code"
msgstr "Code"
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
#: appGUI/preferences/general/GeneralAPPSetGroupUI.py:103
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:167
@@ -3073,29 +3073,29 @@ msgstr "Code"
msgid "Size"
msgstr "Taille"
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Dim"
msgstr "Dim"
-#: appEditors/FlatCAMGrbEditor.py:2500 appGUI/ObjectUI.py:286
+#: appEditors/AppGerberEditor.py:2500 appGUI/ObjectUI.py:286
msgid "Index"
msgstr "Indice"
-#: appEditors/FlatCAMGrbEditor.py:2502 appEditors/FlatCAMGrbEditor.py:2531
+#: appEditors/AppGerberEditor.py:2502 appEditors/AppGerberEditor.py:2531
#: appGUI/ObjectUI.py:288
msgid "Aperture Code"
msgstr "Code d'Ouverture"
-#: appEditors/FlatCAMGrbEditor.py:2504 appGUI/ObjectUI.py:290
+#: appEditors/AppGerberEditor.py:2504 appGUI/ObjectUI.py:290
msgid "Type of aperture: circular, rectangle, macros etc"
msgstr "Type d'ouverture: circulaire, rectangle, macros, etc"
-#: appEditors/FlatCAMGrbEditor.py:2506 appGUI/ObjectUI.py:292
+#: appEditors/AppGerberEditor.py:2506 appGUI/ObjectUI.py:292
msgid "Aperture Size:"
msgstr "Taille d'Ouverture:"
-#: appEditors/FlatCAMGrbEditor.py:2508 appGUI/ObjectUI.py:294
+#: appEditors/AppGerberEditor.py:2508 appGUI/ObjectUI.py:294
msgid ""
"Aperture Dimensions:\n"
" - (width, height) for R, O type.\n"
@@ -3105,16 +3105,16 @@ msgstr ""
" - (largeur, hauteur) pour le type R, O.\n"
" - (dia, nVertices) pour le type P"
-#: appEditors/FlatCAMGrbEditor.py:2532
+#: appEditors/AppGerberEditor.py:2532
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:58
msgid "Code for the new aperture"
msgstr "Code pour la nouvelle ouverture"
-#: appEditors/FlatCAMGrbEditor.py:2541
+#: appEditors/AppGerberEditor.py:2541
msgid "Aperture Size"
msgstr "Taille d'ouverture"
-#: appEditors/FlatCAMGrbEditor.py:2543
+#: appEditors/AppGerberEditor.py:2543
msgid ""
"Size for the new aperture.\n"
"If aperture type is 'R' or 'O' then\n"
@@ -3128,11 +3128,11 @@ msgstr ""
"calculé comme:\n"
"sqrt (largeur ** 2 + hauteur ** 2)"
-#: appEditors/FlatCAMGrbEditor.py:2557
+#: appEditors/AppGerberEditor.py:2557
msgid "Aperture Type"
msgstr "Type d'ouverture"
-#: appEditors/FlatCAMGrbEditor.py:2559
+#: appEditors/AppGerberEditor.py:2559
msgid ""
"Select the type of new aperture. Can be:\n"
"C = circular\n"
@@ -3144,11 +3144,11 @@ msgstr ""
"R = rectangulaire\n"
"O = oblong"
-#: appEditors/FlatCAMGrbEditor.py:2570
+#: appEditors/AppGerberEditor.py:2570
msgid "Aperture Dim"
msgstr "Dim. d'Ouverture"
-#: appEditors/FlatCAMGrbEditor.py:2572
+#: appEditors/AppGerberEditor.py:2572
msgid ""
"Dimensions for the new aperture.\n"
"Active only for rectangular apertures (type R).\n"
@@ -3158,19 +3158,19 @@ msgstr ""
"Actif uniquement pour les ouvertures rectangulaires (type R).\n"
"Le format est (largeur, hauteur)"
-#: appEditors/FlatCAMGrbEditor.py:2581
+#: appEditors/AppGerberEditor.py:2581
msgid "Add/Delete Aperture"
msgstr "Ajouter / Supprimer une Sélection"
-#: appEditors/FlatCAMGrbEditor.py:2583
+#: appEditors/AppGerberEditor.py:2583
msgid "Add/Delete an aperture in the aperture table"
msgstr "Ajouter / Supprimer une ouverture dans la table des ouvertures"
-#: appEditors/FlatCAMGrbEditor.py:2592
+#: appEditors/AppGerberEditor.py:2592
msgid "Add a new aperture to the aperture list."
msgstr "Ajoutez une nouvelle ouverture à la liste des ouvertures."
-#: appEditors/FlatCAMGrbEditor.py:2595 appEditors/FlatCAMGrbEditor.py:2743
+#: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743
#: appGUI/MainGUI.py:748 appGUI/MainGUI.py:1068 appGUI/MainGUI.py:1527
#: appGUI/MainGUI.py:2099 appGUI/MainGUI.py:4514 appGUI/ObjectUI.py:1525
#: appObjects/FlatCAMGeometry.py:563 appTools/ToolIsolation.py:298
@@ -3181,28 +3181,28 @@ msgstr "Ajoutez une nouvelle ouverture à la liste des ouvertures."
msgid "Delete"
msgstr "Effacer"
-#: appEditors/FlatCAMGrbEditor.py:2597
+#: appEditors/AppGerberEditor.py:2597
msgid "Delete a aperture in the aperture list"
msgstr "Supprimer une ouverture dans la liste des ouvertures"
-#: appEditors/FlatCAMGrbEditor.py:2614
+#: appEditors/AppGerberEditor.py:2614
msgid "Buffer Aperture"
msgstr "Ouverture du Tampon"
-#: appEditors/FlatCAMGrbEditor.py:2616
+#: appEditors/AppGerberEditor.py:2616
msgid "Buffer a aperture in the aperture list"
msgstr "Buffer une ouverture dans la liste des ouvertures"
-#: appEditors/FlatCAMGrbEditor.py:2629
+#: appEditors/AppGerberEditor.py:2629
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:195
msgid "Buffer distance"
msgstr "Distance Tampon"
-#: appEditors/FlatCAMGrbEditor.py:2630
+#: appEditors/AppGerberEditor.py:2630
msgid "Buffer corner"
msgstr "Coin Tampon"
-#: appEditors/FlatCAMGrbEditor.py:2632
+#: appEditors/AppGerberEditor.py:2632
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded.\n"
@@ -3216,20 +3216,20 @@ msgstr ""
" - \"Biseauté:\" le coin est une ligne qui relie directement les "
"fonctionnalités réunies dans le coin"
-#: appEditors/FlatCAMGrbEditor.py:2662
+#: appEditors/AppGerberEditor.py:2662
msgid "Scale Aperture"
msgstr "Échelle d'Ouverture"
-#: appEditors/FlatCAMGrbEditor.py:2664
+#: appEditors/AppGerberEditor.py:2664
msgid "Scale a aperture in the aperture list"
msgstr "Mettre à l'échelle une ouverture dans la liste des ouvertures"
-#: appEditors/FlatCAMGrbEditor.py:2672
+#: appEditors/AppGerberEditor.py:2672
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:210
msgid "Scale factor"
msgstr "Facteur d'échelle"
-#: appEditors/FlatCAMGrbEditor.py:2674
+#: appEditors/AppGerberEditor.py:2674
msgid ""
"The factor by which to scale the selected aperture.\n"
"Values can be between 0.0000 and 999.9999"
@@ -3237,19 +3237,19 @@ msgstr ""
"Le facteur par lequel mettre à l'échelle l'ouverture sélectionnée.\n"
"Les valeurs peuvent être comprises entre 0,0000 et 999,9999"
-#: appEditors/FlatCAMGrbEditor.py:2702
+#: appEditors/AppGerberEditor.py:2702
msgid "Mark polygons"
msgstr "Marquer des polygones"
-#: appEditors/FlatCAMGrbEditor.py:2704
+#: appEditors/AppGerberEditor.py:2704
msgid "Mark the polygon areas."
msgstr "Marquez les zones polygonales."
-#: appEditors/FlatCAMGrbEditor.py:2712
+#: appEditors/AppGerberEditor.py:2712
msgid "Area UPPER threshold"
msgstr "Seuil de la zone supérieure"
-#: appEditors/FlatCAMGrbEditor.py:2714
+#: appEditors/AppGerberEditor.py:2714
msgid ""
"The threshold value, all areas less than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3257,11 +3257,11 @@ msgstr ""
"La valeur de seuil, toutes les zones inférieures à celle-ci sont marquées.\n"
"Peut avoir une valeur comprise entre 0.0000 et 9999.9999"
-#: appEditors/FlatCAMGrbEditor.py:2721
+#: appEditors/AppGerberEditor.py:2721
msgid "Area LOWER threshold"
msgstr "Zone inférieure seuil"
-#: appEditors/FlatCAMGrbEditor.py:2723
+#: appEditors/AppGerberEditor.py:2723
msgid ""
"The threshold value, all areas more than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3269,32 +3269,32 @@ msgstr ""
"La valeur de seuil, toutes les zones plus que cela sont marquées.\n"
"Peut avoir une valeur comprise entre 0.0000 et 9999.9999"
-#: appEditors/FlatCAMGrbEditor.py:2737
+#: appEditors/AppGerberEditor.py:2737
msgid "Mark"
msgstr "Marque"
-#: appEditors/FlatCAMGrbEditor.py:2739
+#: appEditors/AppGerberEditor.py:2739
msgid "Mark the polygons that fit within limits."
msgstr "Marquez les polygones qui correspondent aux limites."
-#: appEditors/FlatCAMGrbEditor.py:2745
+#: appEditors/AppGerberEditor.py:2745
msgid "Delete all the marked polygons."
msgstr "Supprimer tous les polygones marqués."
-#: appEditors/FlatCAMGrbEditor.py:2751
+#: appEditors/AppGerberEditor.py:2751
msgid "Clear all the markings."
msgstr "Effacer toutes les marques."
-#: appEditors/FlatCAMGrbEditor.py:2771 appGUI/MainGUI.py:1040
+#: appEditors/AppGerberEditor.py:2771 appGUI/MainGUI.py:1040
#: appGUI/MainGUI.py:2072 appGUI/MainGUI.py:4511
msgid "Add Pad Array"
msgstr "Ajouter un Tableau de Pads"
-#: appEditors/FlatCAMGrbEditor.py:2773
+#: appEditors/AppGerberEditor.py:2773
msgid "Add an array of pads (linear or circular array)"
msgstr "Ajouter un tableau de pads (tableau linéaire ou circulaire)"
-#: appEditors/FlatCAMGrbEditor.py:2779
+#: appEditors/AppGerberEditor.py:2779
msgid ""
"Select the type of pads array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -3302,17 +3302,17 @@ msgstr ""
"Sélectionnez le type de tableau de pads à créer.\n"
"Il peut être linéaire X (Y) ou circulaire"
-#: appEditors/FlatCAMGrbEditor.py:2790
+#: appEditors/AppGerberEditor.py:2790
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:95
msgid "Nr of pads"
msgstr "Nombre de pads"
-#: appEditors/FlatCAMGrbEditor.py:2792
+#: appEditors/AppGerberEditor.py:2792
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:97
msgid "Specify how many pads to be in the array."
msgstr "Spécifiez combien de pads doivent être dans le tableau."
-#: appEditors/FlatCAMGrbEditor.py:2841
+#: appEditors/AppGerberEditor.py:2841
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -3324,13 +3324,13 @@ msgstr ""
"La valeur minimale est: -359,99 degrés.\n"
"La valeur maximale est: 360,00 degrés."
-#: appEditors/FlatCAMGrbEditor.py:3335 appEditors/FlatCAMGrbEditor.py:3339
+#: appEditors/AppGerberEditor.py:3335 appEditors/AppGerberEditor.py:3339
msgid "Aperture code value is missing or wrong format. Add it and retry."
msgstr ""
"La valeur du code d'ouverture est manquante ou le format est incorrect. "
"Ajoutez-le et réessayez."
-#: appEditors/FlatCAMGrbEditor.py:3375
+#: appEditors/AppGerberEditor.py:3375
msgid ""
"Aperture dimensions value is missing or wrong format. Add it in format "
"(width, height) and retry."
@@ -3338,158 +3338,158 @@ msgstr ""
"La valeur des dimensions d’ouverture est manquante ou d’un format incorrect. "
"Ajoutez-le au format (largeur, hauteur) et réessayez."
-#: appEditors/FlatCAMGrbEditor.py:3388
+#: appEditors/AppGerberEditor.py:3388
msgid "Aperture size value is missing or wrong format. Add it and retry."
msgstr ""
"La valeur de la taille d’ouverture est manquante ou d’un format incorrect. "
"Ajoutez-le et réessayez."
-#: appEditors/FlatCAMGrbEditor.py:3399
+#: appEditors/AppGerberEditor.py:3399
msgid "Aperture already in the aperture table."
msgstr "Ouverture déjà dans la table des ouvertures."
-#: appEditors/FlatCAMGrbEditor.py:3406
+#: appEditors/AppGerberEditor.py:3406
msgid "Added new aperture with code"
msgstr "Ajout d'une nouvelle ouverture avec code"
-#: appEditors/FlatCAMGrbEditor.py:3438
+#: appEditors/AppGerberEditor.py:3438
msgid " Select an aperture in Aperture Table"
msgstr " Sélectionnez une ouverture dans le Tableau des Ouvertures"
-#: appEditors/FlatCAMGrbEditor.py:3446
+#: appEditors/AppGerberEditor.py:3446
msgid "Select an aperture in Aperture Table -->"
msgstr "Sélectionnez une ouverture dans le Tableau des Ouvertures -->"
-#: appEditors/FlatCAMGrbEditor.py:3460
+#: appEditors/AppGerberEditor.py:3460
msgid "Deleted aperture with code"
msgstr "Ouverture supprimée avec code"
-#: appEditors/FlatCAMGrbEditor.py:3528
+#: appEditors/AppGerberEditor.py:3528
msgid "Dimensions need two float values separated by comma."
msgstr ""
"Les dimensions nécessitent deux valeurs flottantes séparées par une virgule."
-#: appEditors/FlatCAMGrbEditor.py:3537
+#: appEditors/AppGerberEditor.py:3537
msgid "Dimensions edited."
msgstr "Dimensions modifiées."
-#: appEditors/FlatCAMGrbEditor.py:4066
+#: appEditors/AppGerberEditor.py:4066
msgid "Loading Gerber into Editor"
msgstr "Chargement de Gerber dans l'éditeur"
-#: appEditors/FlatCAMGrbEditor.py:4194
+#: appEditors/AppGerberEditor.py:4194
msgid "Setting up the UI"
msgstr "Configuration de IU"
-#: appEditors/FlatCAMGrbEditor.py:4195
+#: appEditors/AppGerberEditor.py:4195
msgid "Adding geometry finished. Preparing the GUI"
msgstr "Ajout de la géométrie terminé. Préparation de l'interface graphique"
-#: appEditors/FlatCAMGrbEditor.py:4204
+#: appEditors/AppGerberEditor.py:4204
msgid "Finished loading the Gerber object into the editor."
msgstr "Le chargement de l'objet Gerber dans l'éditeur est terminé."
-#: appEditors/FlatCAMGrbEditor.py:4345
+#: appEditors/AppGerberEditor.py:4345
msgid ""
"There are no Aperture definitions in the file. Aborting Gerber creation."
msgstr ""
"Il n'y a pas de définitions d'ouverture dans le fichier. Abandon de la "
"création de Gerber."
-#: appEditors/FlatCAMGrbEditor.py:4347 appObjects/AppObject.py:133
+#: appEditors/AppGerberEditor.py:4347 appObjects/AppObject.py:133
#: appObjects/FlatCAMGeometry.py:1786 appParsers/ParseExcellon.py:896
#: appTools/ToolPcbWizard.py:432 app_Main.py:8589 app_Main.py:8653
#: app_Main.py:8784 app_Main.py:8849 app_Main.py:9501
msgid "An internal error has occurred. See shell.\n"
msgstr "Une erreur interne s'est produite. Voir shell.\n"
-#: appEditors/FlatCAMGrbEditor.py:4355
+#: appEditors/AppGerberEditor.py:4355
msgid "Creating Gerber."
msgstr "Créer Gerber."
-#: appEditors/FlatCAMGrbEditor.py:4367
+#: appEditors/AppGerberEditor.py:4367
msgid "Done. Gerber editing finished."
msgstr "Terminé. Gerber édition terminée."
-#: appEditors/FlatCAMGrbEditor.py:4383
+#: appEditors/AppGerberEditor.py:4383
msgid "Cancelled. No aperture is selected"
msgstr "Annulé. Aucune ouverture n'est sélectionnée"
-#: appEditors/FlatCAMGrbEditor.py:4538 app_Main.py:6122
+#: appEditors/AppGerberEditor.py:4538 app_Main.py:6122
msgid "Coordinates copied to clipboard."
msgstr "Coordonnées copiées dans le presse-papier."
-#: appEditors/FlatCAMGrbEditor.py:4985
+#: appEditors/AppGerberEditor.py:4985
msgid "Failed. No aperture geometry is selected."
msgstr "Échoué. Aucune géométrie d'ouverture n'est sélectionnée."
-#: appEditors/FlatCAMGrbEditor.py:4994 appEditors/FlatCAMGrbEditor.py:5265
+#: appEditors/AppGerberEditor.py:4994 appEditors/AppGerberEditor.py:5265
msgid "Done. Apertures geometry deleted."
msgstr "Terminé. Géométrie des ouvertures supprimée."
-#: appEditors/FlatCAMGrbEditor.py:5137
+#: appEditors/AppGerberEditor.py:5137
msgid "No aperture to buffer. Select at least one aperture and try again."
msgstr ""
"Pas d'ouverture à tamponner. Sélectionnez au moins une ouverture et "
"réessayez."
-#: appEditors/FlatCAMGrbEditor.py:5149
+#: appEditors/AppGerberEditor.py:5149
msgid "Failed."
msgstr "Échoué."
-#: appEditors/FlatCAMGrbEditor.py:5168
+#: appEditors/AppGerberEditor.py:5168
msgid "Scale factor value is missing or wrong format. Add it and retry."
msgstr ""
"La valeur du facteur d'échelle est manquante ou d'un format incorrect. "
"Ajoutez-le et réessayez."
-#: appEditors/FlatCAMGrbEditor.py:5200
+#: appEditors/AppGerberEditor.py:5200
msgid "No aperture to scale. Select at least one aperture and try again."
msgstr ""
"Pas d'ouverture à l'échelle. Sélectionnez au moins une ouverture et "
"réessayez."
-#: appEditors/FlatCAMGrbEditor.py:5216
+#: appEditors/AppGerberEditor.py:5216
msgid "Done. Scale Tool completed."
msgstr "Terminé. Outil d'échelle terminé."
-#: appEditors/FlatCAMGrbEditor.py:5254
+#: appEditors/AppGerberEditor.py:5254
msgid "Polygons marked."
msgstr "Polygones marqués."
-#: appEditors/FlatCAMGrbEditor.py:5257
+#: appEditors/AppGerberEditor.py:5257
msgid "No polygons were marked. None fit within the limits."
msgstr "Aucun polygone n'a été marqué. Aucun ne rentre dans les limites."
-#: appEditors/FlatCAMGrbEditor.py:5985
+#: appEditors/AppGerberEditor.py:5985
msgid "Rotation action was not executed."
msgstr "L'action de rotation n'a pas été exécutée."
-#: appEditors/FlatCAMGrbEditor.py:6027 app_Main.py:5556 app_Main.py:5604
+#: appEditors/AppGerberEditor.py:6027 app_Main.py:5556 app_Main.py:5604
msgid "Flip action was not executed."
msgstr "La rotation n'a pas été exécutée."
-#: appEditors/FlatCAMGrbEditor.py:6067
+#: appEditors/AppGerberEditor.py:6067
msgid "Skew action was not executed."
msgstr "L'action fausser n'a pas été exécutée."
-#: appEditors/FlatCAMGrbEditor.py:6106
+#: appEditors/AppGerberEditor.py:6106
msgid "Scale action was not executed."
msgstr "L'action d'échelle n'a pas été exécutée."
-#: appEditors/FlatCAMGrbEditor.py:6150
+#: appEditors/AppGerberEditor.py:6150
msgid "Offset action was not executed."
msgstr "L'action decalage n'a pas été exécutée."
-#: appEditors/FlatCAMGrbEditor.py:6236
+#: appEditors/AppGerberEditor.py:6236
msgid "Geometry shape offset Y cancelled"
msgstr "Décalage géométrique de la forme Y annulé"
-#: appEditors/FlatCAMGrbEditor.py:6251
+#: appEditors/AppGerberEditor.py:6251
msgid "Geometry shape skew X cancelled"
msgstr "Inclinaison géométrique de la forme X annulé"
-#: appEditors/FlatCAMGrbEditor.py:6266
+#: appEditors/AppGerberEditor.py:6266
msgid "Geometry shape skew Y cancelled"
msgstr "Inclinaison géométrique de la forme Y annulé"
diff --git a/locale/hu/LC_MESSAGES/strings.po b/locale/hu/LC_MESSAGES/strings.po
index 2a4820da..c8dbc4c9 100644
--- a/locale/hu/LC_MESSAGES/strings.po
+++ b/locale/hu/LC_MESSAGES/strings.po
@@ -100,8 +100,8 @@ msgid "Bookmarks"
msgstr ""
#: Bookmark.py:300 Bookmark.py:342 appDatabase.py:665 appDatabase.py:711
-#: appDatabase.py:2279 appDatabase.py:2325 appEditors/FlatCAMExcEditor.py:1023
-#: appEditors/FlatCAMExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
+#: appDatabase.py:2279 appDatabase.py:2325 appEditors/AppExcEditor.py:1023
+#: appEditors/AppExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
#: appGUI/MainGUI.py:2730 appGUI/MainGUI.py:2952 appGUI/MainGUI.py:3167
#: appObjects/ObjectCollection.py:127 appTools/ToolFilm.py:739
#: appTools/ToolFilm.py:885 appTools/ToolImage.py:247 appTools/ToolMove.py:269
@@ -167,7 +167,7 @@ msgstr ""
msgid "Zone added. Click to start adding next zone or right click to finish."
msgstr ""
-#: Common.py:322 appEditors/appGeoEditor.py:2352
+#: Common.py:322 appEditors/AppGeoEditor.py:2352
#: appTools/ToolIsolation.py:2584 appTools/ToolNCC.py:1754
#: appTools/ToolPaint.py:1647
msgid "Click on next Point or click right mouse button to complete ..."
@@ -262,7 +262,7 @@ msgid "Tool Name"
msgstr ""
#: appDatabase.py:161 appDatabase.py:837 appDatabase.py:1119
-#: appEditors/FlatCAMExcEditor.py:1604 appGUI/ObjectUI.py:1226
+#: appEditors/AppExcEditor.py:1604 appGUI/ObjectUI.py:1226
#: appGUI/ObjectUI.py:1480
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:132
#: appTools/ToolIsolation.py:260 appTools/ToolNCC.py:278
@@ -733,7 +733,7 @@ msgid ""
"- Clear -> the regular non-copper clearing."
msgstr ""
-#: appDatabase.py:1427 appEditors/FlatCAMGrbEditor.py:2749
+#: appDatabase.py:1427 appEditors/AppGerberEditor.py:2749
#: appGUI/GUIElements.py:2765 appTools/ToolNCC.py:350
msgid "Clear"
msgstr ""
@@ -781,7 +781,7 @@ msgid "Conventional"
msgstr ""
#: appDatabase.py:1456 appDatabase.py:1565 appDatabase.py:1667
-#: appEditors/appGeoEditor.py:450
+#: appEditors/AppGeoEditor.py:450
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:167
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:182
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:163
@@ -802,7 +802,7 @@ msgid ""
"due of too many paths."
msgstr ""
-#: appDatabase.py:1477 appDatabase.py:1586 appEditors/appGeoEditor.py:470
+#: appDatabase.py:1477 appDatabase.py:1586 appEditors/AppGeoEditor.py:470
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:72
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:229
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:59
@@ -831,7 +831,7 @@ msgstr ""
msgid "Bounding box margin."
msgstr ""
-#: appDatabase.py:1490 appDatabase.py:1601 appEditors/appGeoEditor.py:484
+#: appDatabase.py:1490 appDatabase.py:1601 appEditors/AppGeoEditor.py:484
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:105
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:106
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:215
@@ -850,7 +850,7 @@ msgid ""
"- Line-based: Parallel lines."
msgstr ""
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2232 appTools/ToolNCC.py:2764
@@ -860,8 +860,8 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:568 appEditors/appGeoEditor.py:5091
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:568 appEditors/AppGeoEditor.py:5091
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2243 appTools/ToolNCC.py:2770
@@ -872,8 +872,8 @@ msgstr ""
msgid "Seed"
msgstr ""
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:5095
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:5095
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2254 appTools/ToolPaint.py:389
@@ -897,7 +897,7 @@ msgstr ""
msgid "Connect"
msgstr ""
-#: appDatabase.py:1512 appDatabase.py:1629 appEditors/appGeoEditor.py:507
+#: appDatabase.py:1512 appDatabase.py:1629 appEditors/AppGeoEditor.py:507
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:239
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:226
#: appTools/ToolNCC.py:443 appTools/ToolPaint.py:403
@@ -913,7 +913,7 @@ msgstr ""
msgid "Contour"
msgstr ""
-#: appDatabase.py:1522 appDatabase.py:1636 appEditors/appGeoEditor.py:517
+#: appDatabase.py:1522 appDatabase.py:1636 appEditors/AppGeoEditor.py:517
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:248
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:234
#: appTools/ToolNCC.py:453 appTools/ToolPaint.py:410
@@ -922,8 +922,8 @@ msgid ""
"to trim rough edges."
msgstr ""
-#: appDatabase.py:1528 appEditors/appGeoEditor.py:611
-#: appEditors/FlatCAMGrbEditor.py:5304 appGUI/ObjectUI.py:143
+#: appDatabase.py:1528 appEditors/AppGeoEditor.py:611
+#: appEditors/AppGerberEditor.py:5304 appGUI/ObjectUI.py:143
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:255
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:183
@@ -941,7 +941,7 @@ msgid ""
"The value can be between 0 and 10 FlatCAM units."
msgstr ""
-#: appDatabase.py:1567 appEditors/appGeoEditor.py:452
+#: appDatabase.py:1567 appEditors/AppGeoEditor.py:452
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:165
#: appTools/ToolPaint.py:330
msgid ""
@@ -954,7 +954,7 @@ msgid ""
"due of too many paths."
msgstr ""
-#: appDatabase.py:1588 appEditors/appGeoEditor.py:472
+#: appDatabase.py:1588 appEditors/AppGeoEditor.py:472
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:185
#: appTools/ToolPaint.py:351
msgid ""
@@ -1071,137 +1071,137 @@ msgid ""
"in the Tools Database."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:50 appEditors/FlatCAMExcEditor.py:74
-#: appEditors/FlatCAMExcEditor.py:168 appEditors/FlatCAMExcEditor.py:385
-#: appEditors/FlatCAMExcEditor.py:589 appEditors/FlatCAMGrbEditor.py:241
-#: appEditors/FlatCAMGrbEditor.py:248
+#: appEditors/AppExcEditor.py:50 appEditors/AppExcEditor.py:74
+#: appEditors/AppExcEditor.py:168 appEditors/AppExcEditor.py:385
+#: appEditors/AppExcEditor.py:589 appEditors/AppGerberEditor.py:241
+#: appEditors/AppGerberEditor.py:248
msgid "Click to place ..."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:58
+#: appEditors/AppExcEditor.py:58
msgid "To add a drill first select a tool"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:122
+#: appEditors/AppExcEditor.py:122
msgid "Done. Drill added."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:176
+#: appEditors/AppExcEditor.py:176
msgid "To add an Drill Array first select a tool in Tool Table"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:192 appEditors/FlatCAMExcEditor.py:415
-#: appEditors/FlatCAMExcEditor.py:636 appEditors/FlatCAMExcEditor.py:1151
-#: appEditors/FlatCAMExcEditor.py:1178 appEditors/FlatCAMGrbEditor.py:471
-#: appEditors/FlatCAMGrbEditor.py:1944 appEditors/FlatCAMGrbEditor.py:1974
+#: appEditors/AppExcEditor.py:192 appEditors/AppExcEditor.py:415
+#: appEditors/AppExcEditor.py:636 appEditors/AppExcEditor.py:1151
+#: appEditors/AppExcEditor.py:1178 appEditors/AppGerberEditor.py:471
+#: appEditors/AppGerberEditor.py:1944 appEditors/AppGerberEditor.py:1974
msgid "Click on target location ..."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:211
+#: appEditors/AppExcEditor.py:211
msgid "Click on the Drill Circular Array Start position"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:233 appEditors/FlatCAMExcEditor.py:677
-#: appEditors/FlatCAMGrbEditor.py:516
+#: appEditors/AppExcEditor.py:233 appEditors/AppExcEditor.py:677
+#: appEditors/AppGerberEditor.py:516
msgid "The value is not Float. Check for comma instead of dot separator."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:237
+#: appEditors/AppExcEditor.py:237
msgid "The value is mistyped. Check the value"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:336
+#: appEditors/AppExcEditor.py:336
msgid "Too many drills for the selected spacing angle."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:354
+#: appEditors/AppExcEditor.py:354
msgid "Done. Drill Array added."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:394
+#: appEditors/AppExcEditor.py:394
msgid "To add a slot first select a tool"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:454 appEditors/FlatCAMExcEditor.py:461
-#: appEditors/FlatCAMExcEditor.py:742 appEditors/FlatCAMExcEditor.py:749
+#: appEditors/AppExcEditor.py:454 appEditors/AppExcEditor.py:461
+#: appEditors/AppExcEditor.py:742 appEditors/AppExcEditor.py:749
msgid "Value is missing or wrong format. Add it and retry."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:559
+#: appEditors/AppExcEditor.py:559
msgid "Done. Adding Slot completed."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:597
+#: appEditors/AppExcEditor.py:597
msgid "To add an Slot Array first select a tool in Tool Table"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:655
+#: appEditors/AppExcEditor.py:655
msgid "Click on the Slot Circular Array Start position"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:680 appEditors/FlatCAMGrbEditor.py:519
+#: appEditors/AppExcEditor.py:680 appEditors/AppGerberEditor.py:519
msgid "The value is mistyped. Check the value."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:859
+#: appEditors/AppExcEditor.py:859
msgid "Too many Slots for the selected spacing angle."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:882
+#: appEditors/AppExcEditor.py:882
msgid "Done. Slot Array added."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:904
+#: appEditors/AppExcEditor.py:904
msgid "Click on the Drill(s) to resize ..."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:934
+#: appEditors/AppExcEditor.py:934
msgid "Resize drill(s) failed. Please enter a diameter for resize."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1112
+#: appEditors/AppExcEditor.py:1112
msgid "Done. Drill/Slot Resize completed."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1115
+#: appEditors/AppExcEditor.py:1115
msgid "Cancelled. No drills/slots selected for resize ..."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1153 appEditors/FlatCAMGrbEditor.py:1946
+#: appEditors/AppExcEditor.py:1153 appEditors/AppGerberEditor.py:1946
msgid "Click on reference location ..."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1210
+#: appEditors/AppExcEditor.py:1210
msgid "Done. Drill(s) Move completed."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1318
+#: appEditors/AppExcEditor.py:1318
msgid "Done. Drill(s) copied."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1557
+#: appEditors/AppExcEditor.py:1557
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:26
msgid "Excellon Editor"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1564 appEditors/FlatCAMGrbEditor.py:2469
+#: appEditors/AppExcEditor.py:1564 appEditors/AppGerberEditor.py:2469
msgid "Name:"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1570 appGUI/ObjectUI.py:540
+#: appEditors/AppExcEditor.py:1570 appGUI/ObjectUI.py:540
#: appGUI/ObjectUI.py:1362 appTools/ToolIsolation.py:118
#: appTools/ToolNCC.py:120 appTools/ToolPaint.py:114
#: appTools/ToolSolderPaste.py:79
msgid "Tools Table"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1572 appGUI/ObjectUI.py:542
+#: appEditors/AppExcEditor.py:1572 appGUI/ObjectUI.py:542
msgid ""
"Tools in this Excellon object\n"
"when are used for drilling."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1584 appEditors/FlatCAMExcEditor.py:3041
+#: appEditors/AppExcEditor.py:1584 appEditors/AppExcEditor.py:3041
#: appGUI/ObjectUI.py:560 appObjects/FlatCAMExcellon.py:1265
#: appObjects/FlatCAMExcellon.py:1368 appObjects/FlatCAMExcellon.py:1553
#: appTools/ToolIsolation.py:130 appTools/ToolNCC.py:132
@@ -1211,87 +1211,87 @@ msgstr ""
msgid "Diameter"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1592
+#: appEditors/AppExcEditor.py:1592
msgid "Add/Delete Tool"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1594
+#: appEditors/AppExcEditor.py:1594
msgid ""
"Add/Delete a tool to the tool list\n"
"for this Excellon object."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1606 appGUI/ObjectUI.py:1482
+#: appEditors/AppExcEditor.py:1606 appGUI/ObjectUI.py:1482
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:57
msgid "Diameter for the new tool"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1616
+#: appEditors/AppExcEditor.py:1616
msgid "Add Tool"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1618
+#: appEditors/AppExcEditor.py:1618
msgid ""
"Add a new tool to the tool list\n"
"with the diameter specified above."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1630
+#: appEditors/AppExcEditor.py:1630
msgid "Delete Tool"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1632
+#: appEditors/AppExcEditor.py:1632
msgid ""
"Delete a tool in the tool list\n"
"by selecting a row in the tool table."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1650 appGUI/MainGUI.py:4392
+#: appEditors/AppExcEditor.py:1650 appGUI/MainGUI.py:4392
msgid "Resize Drill(s)"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1652
+#: appEditors/AppExcEditor.py:1652
msgid "Resize a drill or a selection of drills."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1659
+#: appEditors/AppExcEditor.py:1659
msgid "Resize Dia"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1661
+#: appEditors/AppExcEditor.py:1661
msgid "Diameter to resize to."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1672
+#: appEditors/AppExcEditor.py:1672
msgid "Resize"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1674
+#: appEditors/AppExcEditor.py:1674
msgid "Resize drill(s)"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1699 appGUI/MainGUI.py:1514
+#: appEditors/AppExcEditor.py:1699 appGUI/MainGUI.py:1514
#: appGUI/MainGUI.py:4391
msgid "Add Drill Array"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1701
+#: appEditors/AppExcEditor.py:1701
msgid "Add an array of drills (linear or circular array)"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1707
+#: appEditors/AppExcEditor.py:1707
msgid ""
"Select the type of drills array to create.\n"
"It can be Linear X(Y) or Circular"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1710 appEditors/FlatCAMExcEditor.py:1924
-#: appEditors/FlatCAMGrbEditor.py:2782
+#: appEditors/AppExcEditor.py:1710 appEditors/AppExcEditor.py:1924
+#: appEditors/AppGerberEditor.py:2782
msgid "Linear"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1711 appEditors/FlatCAMExcEditor.py:1925
-#: appEditors/FlatCAMGrbEditor.py:2783
+#: appEditors/AppExcEditor.py:1711 appEditors/AppExcEditor.py:1925
+#: appEditors/AppGerberEditor.py:2783
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:52
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:149
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:107
@@ -1307,26 +1307,26 @@ msgstr ""
msgid "Circular"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1719
+#: appEditors/AppExcEditor.py:1719
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:68
msgid "Nr of drills"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1720
+#: appEditors/AppExcEditor.py:1720
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:70
msgid "Specify how many drills to be in the array."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1738 appEditors/FlatCAMExcEditor.py:1788
-#: appEditors/FlatCAMExcEditor.py:1860 appEditors/FlatCAMExcEditor.py:1953
-#: appEditors/FlatCAMExcEditor.py:2004 appEditors/FlatCAMGrbEditor.py:1580
-#: appEditors/FlatCAMGrbEditor.py:2811 appEditors/FlatCAMGrbEditor.py:2860
+#: appEditors/AppExcEditor.py:1738 appEditors/AppExcEditor.py:1788
+#: appEditors/AppExcEditor.py:1860 appEditors/AppExcEditor.py:1953
+#: appEditors/AppExcEditor.py:2004 appEditors/AppGerberEditor.py:1580
+#: appEditors/AppGerberEditor.py:2811 appEditors/AppGerberEditor.py:2860
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:178
msgid "Direction"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1740 appEditors/FlatCAMExcEditor.py:1955
-#: appEditors/FlatCAMGrbEditor.py:2813
+#: appEditors/AppExcEditor.py:1740 appEditors/AppExcEditor.py:1955
+#: appEditors/AppGerberEditor.py:2813
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:86
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:234
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:123
@@ -1337,8 +1337,8 @@ msgid ""
"- 'Angle' - a custom angle for the array inclination"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1747 appEditors/FlatCAMExcEditor.py:1869
-#: appEditors/FlatCAMExcEditor.py:1962 appEditors/FlatCAMGrbEditor.py:2820
+#: appEditors/AppExcEditor.py:1747 appEditors/AppExcEditor.py:1869
+#: appEditors/AppExcEditor.py:1962 appEditors/AppGerberEditor.py:2820
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:240
@@ -1348,8 +1348,8 @@ msgstr ""
msgid "X"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1748 appEditors/FlatCAMExcEditor.py:1870
-#: appEditors/FlatCAMExcEditor.py:1963 appEditors/FlatCAMGrbEditor.py:2821
+#: appEditors/AppExcEditor.py:1748 appEditors/AppExcEditor.py:1870
+#: appEditors/AppExcEditor.py:1963 appEditors/AppGerberEditor.py:2821
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:241
@@ -1359,13 +1359,13 @@ msgstr ""
msgid "Y"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1749 appEditors/FlatCAMExcEditor.py:1766
-#: appEditors/FlatCAMExcEditor.py:1800 appEditors/FlatCAMExcEditor.py:1871
-#: appEditors/FlatCAMExcEditor.py:1875 appEditors/FlatCAMExcEditor.py:1964
-#: appEditors/FlatCAMExcEditor.py:1982 appEditors/FlatCAMExcEditor.py:2016
-#: appEditors/appGeoEditor.py:683 appEditors/FlatCAMGrbEditor.py:2822
-#: appEditors/FlatCAMGrbEditor.py:2839 appEditors/FlatCAMGrbEditor.py:2875
-#: appEditors/FlatCAMGrbEditor.py:5376
+#: appEditors/AppExcEditor.py:1749 appEditors/AppExcEditor.py:1766
+#: appEditors/AppExcEditor.py:1800 appEditors/AppExcEditor.py:1871
+#: appEditors/AppExcEditor.py:1875 appEditors/AppExcEditor.py:1964
+#: appEditors/AppExcEditor.py:1982 appEditors/AppExcEditor.py:2016
+#: appEditors/AppGeoEditor.py:683 appEditors/AppGerberEditor.py:2822
+#: appEditors/AppGerberEditor.py:2839 appEditors/AppGerberEditor.py:2875
+#: appEditors/AppGerberEditor.py:5376
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:94
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:113
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:189
@@ -1380,23 +1380,23 @@ msgstr ""
msgid "Angle"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1753 appEditors/FlatCAMExcEditor.py:1968
-#: appEditors/FlatCAMGrbEditor.py:2826
+#: appEditors/AppExcEditor.py:1753 appEditors/AppExcEditor.py:1968
+#: appEditors/AppGerberEditor.py:2826
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:100
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:248
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:137
msgid "Pitch"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1755 appEditors/FlatCAMExcEditor.py:1970
-#: appEditors/FlatCAMGrbEditor.py:2828
+#: appEditors/AppExcEditor.py:1755 appEditors/AppExcEditor.py:1970
+#: appEditors/AppGerberEditor.py:2828
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:102
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:250
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:139
msgid "Pitch = Distance between elements of the array."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1768 appEditors/FlatCAMExcEditor.py:1984
+#: appEditors/AppExcEditor.py:1768 appEditors/AppExcEditor.py:1984
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1404,15 +1404,15 @@ msgid ""
"Max value is: 360.00 degrees."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1789 appEditors/FlatCAMExcEditor.py:2005
-#: appEditors/FlatCAMGrbEditor.py:2862
+#: appEditors/AppExcEditor.py:1789 appEditors/AppExcEditor.py:2005
+#: appEditors/AppGerberEditor.py:2862
msgid ""
"Direction for circular array.Can be CW = clockwise or CCW = counter "
"clockwise."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1796 appEditors/FlatCAMExcEditor.py:2012
-#: appEditors/FlatCAMGrbEditor.py:2870
+#: appEditors/AppExcEditor.py:1796 appEditors/AppExcEditor.py:2012
+#: appEditors/AppGerberEditor.py:2870
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:129
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:136
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:286
@@ -1421,8 +1421,8 @@ msgstr ""
msgid "CW"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1797 appEditors/FlatCAMExcEditor.py:2013
-#: appEditors/FlatCAMGrbEditor.py:2871
+#: appEditors/AppExcEditor.py:1797 appEditors/AppExcEditor.py:2013
+#: appEditors/AppGerberEditor.py:2871
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:130
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:137
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:287
@@ -1431,8 +1431,8 @@ msgstr ""
msgid "CCW"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1801 appEditors/FlatCAMExcEditor.py:2017
-#: appEditors/FlatCAMGrbEditor.py:2877
+#: appEditors/AppExcEditor.py:1801 appEditors/AppExcEditor.py:2017
+#: appEditors/AppGerberEditor.py:2877
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:115
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:145
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:265
@@ -1442,29 +1442,29 @@ msgstr ""
msgid "Angle at which each element in circular array is placed."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1835
+#: appEditors/AppExcEditor.py:1835
msgid "Slot Parameters"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1837
+#: appEditors/AppExcEditor.py:1837
msgid ""
"Parameters for adding a slot (hole with oval shape)\n"
"either single or as an part of an array."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1846
+#: appEditors/AppExcEditor.py:1846
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:162
#: appGUI/preferences/tools/ToolsCornersPrefGroupUI.py:56
#: appTools/ToolCorners.py:136 appTools/ToolProperties.py:559
msgid "Length"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1848
+#: appEditors/AppExcEditor.py:1848
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:164
msgid "Length = The length of the slot."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1862
+#: appEditors/AppExcEditor.py:1862
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:180
msgid ""
"Direction on which the slot is oriented:\n"
@@ -1473,7 +1473,7 @@ msgid ""
"- 'Angle' - a custom angle for the slot inclination"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1877
+#: appEditors/AppExcEditor.py:1877
msgid ""
"Angle at which the slot is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1481,39 +1481,39 @@ msgid ""
"Max value is: 360.00 degrees."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1910
+#: appEditors/AppExcEditor.py:1910
msgid "Slot Array Parameters"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1912
+#: appEditors/AppExcEditor.py:1912
msgid "Parameters for the array of slots (linear or circular array)"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1921
+#: appEditors/AppExcEditor.py:1921
msgid ""
"Select the type of slot array to create.\n"
"It can be Linear X(Y) or Circular"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1933
+#: appEditors/AppExcEditor.py:1933
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:219
msgid "Nr of slots"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1934
+#: appEditors/AppExcEditor.py:1934
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:221
msgid "Specify how many slots to be in the array."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
+#: appEditors/AppExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
msgid "Total Drills"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
+#: appEditors/AppExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
msgid "Total Slots"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
+#: appEditors/AppExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
#: appObjects/FlatCAMGeometry.py:1099 appObjects/FlatCAMGeometry.py:1841
#: appObjects/FlatCAMGeometry.py:2491 appTools/ToolIsolation.py:1526
#: appTools/ToolNCC.py:1516 appTools/ToolPaint.py:1268
@@ -1522,77 +1522,77 @@ msgstr ""
msgid "Wrong value format entered, use a number."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:2570
+#: appEditors/AppExcEditor.py:2570
msgid ""
"Tool already in the original or actual tool list.\n"
"Save and reedit Excellon if you need to add this tool. "
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:2579 appGUI/MainGUI.py:3364
+#: appEditors/AppExcEditor.py:2579 appGUI/MainGUI.py:3364
msgid "Added new tool with dia"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:2612
+#: appEditors/AppExcEditor.py:2612
msgid "Select a tool in Tool Table"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:2642
+#: appEditors/AppExcEditor.py:2642
msgid "Deleted tool with diameter"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:2790
+#: appEditors/AppExcEditor.py:2790
msgid "Done. Tool edit completed."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:3327
+#: appEditors/AppExcEditor.py:3327
msgid "There are no Tools definitions in the file. Aborting Excellon creation."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:3331
+#: appEditors/AppExcEditor.py:3331
msgid "An internal error has ocurred. See Shell.\n"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:3336
+#: appEditors/AppExcEditor.py:3336
msgid "Creating Excellon."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:3350
+#: appEditors/AppExcEditor.py:3350
msgid "Excellon editing finished."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:3367
+#: appEditors/AppExcEditor.py:3367
msgid "Cancelled. There is no Tool/Drill selected"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:3601 appEditors/FlatCAMExcEditor.py:3609
-#: appEditors/appGeoEditor.py:4286 appEditors/appGeoEditor.py:4300
-#: appEditors/FlatCAMGrbEditor.py:1085 appEditors/FlatCAMGrbEditor.py:1312
-#: appEditors/FlatCAMGrbEditor.py:1497 appEditors/FlatCAMGrbEditor.py:1766
-#: appEditors/FlatCAMGrbEditor.py:4608 appEditors/FlatCAMGrbEditor.py:4625
+#: appEditors/AppExcEditor.py:3601 appEditors/AppExcEditor.py:3609
+#: appEditors/AppGeoEditor.py:4286 appEditors/AppGeoEditor.py:4300
+#: appEditors/AppGerberEditor.py:1085 appEditors/AppGerberEditor.py:1312
+#: appEditors/AppGerberEditor.py:1497 appEditors/AppGerberEditor.py:1766
+#: appEditors/AppGerberEditor.py:4608 appEditors/AppGerberEditor.py:4625
#: appGUI/MainGUI.py:2711 appGUI/MainGUI.py:2723
#: appTools/ToolAlignObjects.py:393 appTools/ToolAlignObjects.py:415
#: app_Main.py:4800 app_Main.py:4954
msgid "Done."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:3984
+#: appEditors/AppExcEditor.py:3984
msgid "Done. Drill(s) deleted."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:4057 appEditors/FlatCAMExcEditor.py:4067
-#: appEditors/FlatCAMGrbEditor.py:5056
+#: appEditors/AppExcEditor.py:4057 appEditors/AppExcEditor.py:4067
+#: appEditors/AppGerberEditor.py:5056
msgid "Click on the circular array Center position"
msgstr ""
-#: appEditors/appGeoEditor.py:84
+#: appEditors/AppGeoEditor.py:84
msgid "Buffer distance:"
msgstr ""
-#: appEditors/appGeoEditor.py:85
+#: appEditors/AppGeoEditor.py:85
msgid "Buffer corner:"
msgstr ""
-#: appEditors/appGeoEditor.py:87
+#: appEditors/AppGeoEditor.py:87
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded for exterior buffer.\n"
@@ -1601,11 +1601,11 @@ msgid ""
"meeting in the corner"
msgstr ""
-#: appEditors/appGeoEditor.py:93 appEditors/FlatCAMGrbEditor.py:2638
+#: appEditors/AppGeoEditor.py:93 appEditors/AppGerberEditor.py:2638
msgid "Round"
msgstr ""
-#: appEditors/appGeoEditor.py:94 appEditors/FlatCAMGrbEditor.py:2639
+#: appEditors/AppGeoEditor.py:94 appEditors/AppGerberEditor.py:2639
#: appGUI/ObjectUI.py:1149 appGUI/ObjectUI.py:2004
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:225
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:68
@@ -1623,48 +1623,48 @@ msgstr ""
msgid "Square"
msgstr ""
-#: appEditors/appGeoEditor.py:95 appEditors/FlatCAMGrbEditor.py:2640
+#: appEditors/AppGeoEditor.py:95 appEditors/AppGerberEditor.py:2640
msgid "Beveled"
msgstr ""
-#: appEditors/appGeoEditor.py:102
+#: appEditors/AppGeoEditor.py:102
msgid "Buffer Interior"
msgstr ""
-#: appEditors/appGeoEditor.py:104
+#: appEditors/AppGeoEditor.py:104
msgid "Buffer Exterior"
msgstr ""
-#: appEditors/appGeoEditor.py:110
+#: appEditors/AppGeoEditor.py:110
msgid "Full Buffer"
msgstr ""
-#: appEditors/appGeoEditor.py:131 appEditors/appGeoEditor.py:2959
+#: appEditors/AppGeoEditor.py:131 appEditors/AppGeoEditor.py:2959
#: appGUI/MainGUI.py:4301
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:191
msgid "Buffer Tool"
msgstr ""
-#: appEditors/appGeoEditor.py:143 appEditors/appGeoEditor.py:160
-#: appEditors/appGeoEditor.py:177 appEditors/appGeoEditor.py:2978
-#: appEditors/appGeoEditor.py:3006 appEditors/appGeoEditor.py:3034
-#: appEditors/FlatCAMGrbEditor.py:5109
+#: appEditors/AppGeoEditor.py:143 appEditors/AppGeoEditor.py:160
+#: appEditors/AppGeoEditor.py:177 appEditors/AppGeoEditor.py:2978
+#: appEditors/AppGeoEditor.py:3006 appEditors/AppGeoEditor.py:3034
+#: appEditors/AppGerberEditor.py:5109
msgid "Buffer distance value is missing or wrong format. Add it and retry."
msgstr ""
-#: appEditors/appGeoEditor.py:241
+#: appEditors/AppGeoEditor.py:241
msgid "Font"
msgstr ""
-#: appEditors/appGeoEditor.py:322 appGUI/MainGUI.py:1452
+#: appEditors/AppGeoEditor.py:322 appGUI/MainGUI.py:1452
msgid "Text"
msgstr ""
-#: appEditors/appGeoEditor.py:348
+#: appEditors/AppGeoEditor.py:348
msgid "Text Tool"
msgstr ""
-#: appEditors/appGeoEditor.py:404 appGUI/MainGUI.py:502
+#: appEditors/AppGeoEditor.py:404 appGUI/MainGUI.py:502
#: appGUI/MainGUI.py:1199 appGUI/ObjectUI.py:597 appGUI/ObjectUI.py:1564
#: appObjects/FlatCAMExcellon.py:852 appObjects/FlatCAMExcellon.py:1242
#: appObjects/FlatCAMGeometry.py:825 appTools/ToolIsolation.py:313
@@ -1673,15 +1673,15 @@ msgstr ""
msgid "Tool"
msgstr ""
-#: appEditors/appGeoEditor.py:438
+#: appEditors/AppGeoEditor.py:438
msgid "Tool dia"
msgstr ""
-#: appEditors/appGeoEditor.py:440
+#: appEditors/AppGeoEditor.py:440
msgid "Diameter of the tool to be used in the operation."
msgstr ""
-#: appEditors/appGeoEditor.py:486
+#: appEditors/AppGeoEditor.py:486
msgid ""
"Algorithm to paint the polygons:\n"
"- Standard: Fixed step inwards.\n"
@@ -1689,58 +1689,58 @@ msgid ""
"- Line-based: Parallel lines."
msgstr ""
-#: appEditors/appGeoEditor.py:505
+#: appEditors/AppGeoEditor.py:505
msgid "Connect:"
msgstr ""
-#: appEditors/appGeoEditor.py:515
+#: appEditors/AppGeoEditor.py:515
msgid "Contour:"
msgstr ""
-#: appEditors/appGeoEditor.py:528 appGUI/MainGUI.py:1456
+#: appEditors/AppGeoEditor.py:528 appGUI/MainGUI.py:1456
msgid "Paint"
msgstr ""
-#: appEditors/appGeoEditor.py:546 appGUI/MainGUI.py:912
+#: appEditors/AppGeoEditor.py:546 appGUI/MainGUI.py:912
#: appGUI/MainGUI.py:1944 appGUI/ObjectUI.py:2069 appTools/ToolPaint.py:42
#: appTools/ToolPaint.py:737
msgid "Paint Tool"
msgstr ""
-#: appEditors/appGeoEditor.py:582 appEditors/appGeoEditor.py:1071
-#: appEditors/appGeoEditor.py:2966 appEditors/appGeoEditor.py:2994
-#: appEditors/appGeoEditor.py:3022 appEditors/appGeoEditor.py:4439
-#: appEditors/FlatCAMGrbEditor.py:5764
+#: appEditors/AppGeoEditor.py:582 appEditors/AppGeoEditor.py:1071
+#: appEditors/AppGeoEditor.py:2966 appEditors/AppGeoEditor.py:2994
+#: appEditors/AppGeoEditor.py:3022 appEditors/AppGeoEditor.py:4439
+#: appEditors/AppGerberEditor.py:5764
msgid "Cancelled. No shape selected."
msgstr ""
-#: appEditors/appGeoEditor.py:595 appEditors/appGeoEditor.py:2984
-#: appEditors/appGeoEditor.py:3012 appEditors/appGeoEditor.py:3040
+#: appEditors/AppGeoEditor.py:595 appEditors/AppGeoEditor.py:2984
+#: appEditors/AppGeoEditor.py:3012 appEditors/AppGeoEditor.py:3040
#: appGUI/preferences/geometry/GeometryGenPrefGroupUI.py:69
#: appTools/ToolProperties.py:117 appTools/ToolProperties.py:162
msgid "Tools"
msgstr ""
-#: appEditors/appGeoEditor.py:606 appEditors/appGeoEditor.py:1035
-#: appEditors/FlatCAMGrbEditor.py:5299 appEditors/FlatCAMGrbEditor.py:5728
+#: appEditors/AppGeoEditor.py:606 appEditors/AppGeoEditor.py:1035
+#: appEditors/AppGerberEditor.py:5299 appEditors/AppGerberEditor.py:5728
#: appGUI/MainGUI.py:935 appGUI/MainGUI.py:1967 appTools/ToolTransform.py:494
msgid "Transform Tool"
msgstr ""
-#: appEditors/appGeoEditor.py:607 appEditors/appGeoEditor.py:699
-#: appEditors/FlatCAMGrbEditor.py:5300 appEditors/FlatCAMGrbEditor.py:5392
+#: appEditors/AppGeoEditor.py:607 appEditors/AppGeoEditor.py:699
+#: appEditors/AppGerberEditor.py:5300 appEditors/AppGerberEditor.py:5392
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:88
#: appTools/ToolTransform.py:27 appTools/ToolTransform.py:146
msgid "Rotate"
msgstr ""
-#: appEditors/appGeoEditor.py:608 appEditors/FlatCAMGrbEditor.py:5301
+#: appEditors/AppGeoEditor.py:608 appEditors/AppGerberEditor.py:5301
#: appTools/ToolTransform.py:28
msgid "Skew/Shear"
msgstr ""
-#: appEditors/appGeoEditor.py:609 appEditors/FlatCAMGrbEditor.py:2687
-#: appEditors/FlatCAMGrbEditor.py:5302 appGUI/MainGUI.py:1057
+#: appEditors/AppGeoEditor.py:609 appEditors/AppGerberEditor.py:2687
+#: appEditors/AppGerberEditor.py:5302 appGUI/MainGUI.py:1057
#: appGUI/MainGUI.py:1499 appGUI/MainGUI.py:2089 appGUI/MainGUI.py:4513
#: appGUI/ObjectUI.py:125
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:147
@@ -1748,13 +1748,13 @@ msgstr ""
msgid "Scale"
msgstr ""
-#: appEditors/appGeoEditor.py:610 appEditors/FlatCAMGrbEditor.py:5303
+#: appEditors/AppGeoEditor.py:610 appEditors/AppGerberEditor.py:5303
#: appTools/ToolTransform.py:30
msgid "Mirror (Flip)"
msgstr ""
-#: appEditors/appGeoEditor.py:612 appEditors/FlatCAMGrbEditor.py:2647
-#: appEditors/FlatCAMGrbEditor.py:5305 appGUI/MainGUI.py:1055
+#: appEditors/AppGeoEditor.py:612 appEditors/AppGerberEditor.py:2647
+#: appEditors/AppGerberEditor.py:5305 appGUI/MainGUI.py:1055
#: appGUI/MainGUI.py:1454 appGUI/MainGUI.py:1497 appGUI/MainGUI.py:2087
#: appGUI/MainGUI.py:4511
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:212
@@ -1762,7 +1762,7 @@ msgstr ""
msgid "Buffer"
msgstr ""
-#: appEditors/appGeoEditor.py:643 appEditors/FlatCAMGrbEditor.py:5336
+#: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5336
#: appGUI/GUIElements.py:2701
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44
@@ -1771,7 +1771,7 @@ msgstr ""
msgid "Reference"
msgstr ""
-#: appEditors/appGeoEditor.py:645 appEditors/FlatCAMGrbEditor.py:5338
+#: appEditors/AppGeoEditor.py:645 appEditors/AppGerberEditor.py:5338
msgid ""
"The reference point for Rotate, Skew, Scale, Mirror.\n"
"Can be:\n"
@@ -1782,15 +1782,15 @@ msgid ""
"selection"
msgstr ""
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appTools/ToolCalibration.py:770 appTools/ToolCalibration.py:771
#: appTools/ToolTransform.py:70
msgid "Origin"
msgstr ""
-#: appEditors/appGeoEditor.py:653 appEditors/appGeoEditor.py:1044
-#: appEditors/FlatCAMGrbEditor.py:5346 appEditors/FlatCAMGrbEditor.py:5737
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGeoEditor.py:1044
+#: appEditors/AppGerberEditor.py:5346 appEditors/AppGerberEditor.py:5737
#: appGUI/preferences/general/GeneralGUIPrefGroupUI.py:250
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:275
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:311
@@ -1801,7 +1801,7 @@ msgstr ""
msgid "Selection"
msgstr ""
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/Tools2sidedPrefGroupUI.py:80
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:60
@@ -1809,12 +1809,12 @@ msgstr ""
msgid "Point"
msgstr ""
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
msgid "Minimum"
msgstr ""
-#: appEditors/appGeoEditor.py:659 appEditors/appGeoEditor.py:955
-#: appEditors/FlatCAMGrbEditor.py:5352 appEditors/FlatCAMGrbEditor.py:5648
+#: appEditors/AppGeoEditor.py:659 appEditors/AppGeoEditor.py:955
+#: appEditors/AppGerberEditor.py:5352 appEditors/AppGerberEditor.py:5648
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:131
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:133
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:243
@@ -1824,14 +1824,14 @@ msgstr ""
msgid "Value"
msgstr ""
-#: appEditors/appGeoEditor.py:661 appEditors/FlatCAMGrbEditor.py:5354
+#: appEditors/AppGeoEditor.py:661 appEditors/AppGerberEditor.py:5354
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:62
#: appTools/ToolTransform.py:78
msgid "A point of reference in format X,Y."
msgstr ""
-#: appEditors/appGeoEditor.py:668 appEditors/FlatCAMGrbEditor.py:2590
-#: appEditors/FlatCAMGrbEditor.py:5361 appGUI/ObjectUI.py:1494
+#: appEditors/AppGeoEditor.py:668 appEditors/AppGerberEditor.py:2590
+#: appEditors/AppGerberEditor.py:5361 appGUI/ObjectUI.py:1494
#: appTools/ToolDblSided.py:192 appTools/ToolDblSided.py:425
#: appTools/ToolIsolation.py:276 appTools/ToolIsolation.py:631
#: appTools/ToolNCC.py:294 appTools/ToolNCC.py:631 appTools/ToolPaint.py:276
@@ -1841,12 +1841,12 @@ msgstr ""
msgid "Add"
msgstr ""
-#: appEditors/appGeoEditor.py:670 appEditors/FlatCAMGrbEditor.py:5363
+#: appEditors/AppGeoEditor.py:670 appEditors/AppGerberEditor.py:5363
#: appTools/ToolTransform.py:87
msgid "Add point coordinates from clipboard."
msgstr ""
-#: appEditors/appGeoEditor.py:685 appEditors/FlatCAMGrbEditor.py:5378
+#: appEditors/AppGeoEditor.py:685 appEditors/AppGerberEditor.py:5378
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:98
#: appTools/ToolTransform.py:132
msgid ""
@@ -1856,7 +1856,7 @@ msgid ""
"Negative numbers for CCW motion."
msgstr ""
-#: appEditors/appGeoEditor.py:701 appEditors/FlatCAMGrbEditor.py:5394
+#: appEditors/AppGeoEditor.py:701 appEditors/AppGerberEditor.py:5394
#: appTools/ToolTransform.py:148
msgid ""
"Rotate the selected object(s).\n"
@@ -1864,44 +1864,44 @@ msgid ""
"the bounding box for all selected objects."
msgstr ""
-#: appEditors/appGeoEditor.py:721 appEditors/appGeoEditor.py:783
-#: appEditors/FlatCAMGrbEditor.py:5414 appEditors/FlatCAMGrbEditor.py:5476
+#: appEditors/AppGeoEditor.py:721 appEditors/AppGeoEditor.py:783
+#: appEditors/AppGerberEditor.py:5414 appEditors/AppGerberEditor.py:5476
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:112
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:151
#: appTools/ToolTransform.py:168 appTools/ToolTransform.py:230
msgid "Link"
msgstr ""
-#: appEditors/appGeoEditor.py:723 appEditors/appGeoEditor.py:785
-#: appEditors/FlatCAMGrbEditor.py:5416 appEditors/FlatCAMGrbEditor.py:5478
+#: appEditors/AppGeoEditor.py:723 appEditors/AppGeoEditor.py:785
+#: appEditors/AppGerberEditor.py:5416 appEditors/AppGerberEditor.py:5478
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:114
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:153
#: appTools/ToolTransform.py:170 appTools/ToolTransform.py:232
msgid "Link the Y entry to X entry and copy its content."
msgstr ""
-#: appEditors/appGeoEditor.py:728 appEditors/FlatCAMGrbEditor.py:5421
+#: appEditors/AppGeoEditor.py:728 appEditors/AppGerberEditor.py:5421
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:151
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:124
#: appTools/ToolFilm.py:184 appTools/ToolTransform.py:175
msgid "X angle"
msgstr ""
-#: appEditors/appGeoEditor.py:730 appEditors/appGeoEditor.py:751
-#: appEditors/FlatCAMGrbEditor.py:5423 appEditors/FlatCAMGrbEditor.py:5444
+#: appEditors/AppGeoEditor.py:730 appEditors/AppGeoEditor.py:751
+#: appEditors/AppGerberEditor.py:5423 appEditors/AppGerberEditor.py:5444
#: appTools/ToolTransform.py:177 appTools/ToolTransform.py:198
msgid ""
"Angle for Skew action, in degrees.\n"
"Float number between -360 and 360."
msgstr ""
-#: appEditors/appGeoEditor.py:738 appEditors/FlatCAMGrbEditor.py:5431
+#: appEditors/AppGeoEditor.py:738 appEditors/AppGerberEditor.py:5431
#: appTools/ToolTransform.py:185
msgid "Skew X"
msgstr ""
-#: appEditors/appGeoEditor.py:740 appEditors/appGeoEditor.py:761
-#: appEditors/FlatCAMGrbEditor.py:5433 appEditors/FlatCAMGrbEditor.py:5454
+#: appEditors/AppGeoEditor.py:740 appEditors/AppGeoEditor.py:761
+#: appEditors/AppGerberEditor.py:5433 appEditors/AppGerberEditor.py:5454
#: appTools/ToolTransform.py:187 appTools/ToolTransform.py:208
msgid ""
"Skew/shear the selected object(s).\n"
@@ -1909,38 +1909,38 @@ msgid ""
"the bounding box for all selected objects."
msgstr ""
-#: appEditors/appGeoEditor.py:749 appEditors/FlatCAMGrbEditor.py:5442
+#: appEditors/AppGeoEditor.py:749 appEditors/AppGerberEditor.py:5442
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:160
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:138
#: appTools/ToolFilm.py:193 appTools/ToolTransform.py:196
msgid "Y angle"
msgstr ""
-#: appEditors/appGeoEditor.py:759 appEditors/FlatCAMGrbEditor.py:5452
+#: appEditors/AppGeoEditor.py:759 appEditors/AppGerberEditor.py:5452
#: appTools/ToolTransform.py:206
msgid "Skew Y"
msgstr ""
-#: appEditors/appGeoEditor.py:790 appEditors/FlatCAMGrbEditor.py:5483
+#: appEditors/AppGeoEditor.py:790 appEditors/AppGerberEditor.py:5483
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:120
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:162
#: appTools/ToolFilm.py:145 appTools/ToolTransform.py:237
msgid "X factor"
msgstr ""
-#: appEditors/appGeoEditor.py:792 appEditors/FlatCAMGrbEditor.py:5485
+#: appEditors/AppGeoEditor.py:792 appEditors/AppGerberEditor.py:5485
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:164
#: appTools/ToolTransform.py:239
msgid "Factor for scaling on X axis."
msgstr ""
-#: appEditors/appGeoEditor.py:799 appEditors/FlatCAMGrbEditor.py:5492
+#: appEditors/AppGeoEditor.py:799 appEditors/AppGerberEditor.py:5492
#: appTools/ToolTransform.py:246
msgid "Scale X"
msgstr ""
-#: appEditors/appGeoEditor.py:801 appEditors/appGeoEditor.py:821
-#: appEditors/FlatCAMGrbEditor.py:5494 appEditors/FlatCAMGrbEditor.py:5514
+#: appEditors/AppGeoEditor.py:801 appEditors/AppGeoEditor.py:821
+#: appEditors/AppGerberEditor.py:5494 appEditors/AppGerberEditor.py:5514
#: appTools/ToolTransform.py:248 appTools/ToolTransform.py:268
msgid ""
"Scale the selected object(s).\n"
@@ -1948,59 +1948,59 @@ msgid ""
"the Scale reference checkbox state."
msgstr ""
-#: appEditors/appGeoEditor.py:810 appEditors/FlatCAMGrbEditor.py:5503
+#: appEditors/AppGeoEditor.py:810 appEditors/AppGerberEditor.py:5503
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:129
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:175
#: appTools/ToolFilm.py:154 appTools/ToolTransform.py:257
msgid "Y factor"
msgstr ""
-#: appEditors/appGeoEditor.py:812 appEditors/FlatCAMGrbEditor.py:5505
+#: appEditors/AppGeoEditor.py:812 appEditors/AppGerberEditor.py:5505
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:177
#: appTools/ToolTransform.py:259
msgid "Factor for scaling on Y axis."
msgstr ""
-#: appEditors/appGeoEditor.py:819 appEditors/FlatCAMGrbEditor.py:5512
+#: appEditors/AppGeoEditor.py:819 appEditors/AppGerberEditor.py:5512
#: appTools/ToolTransform.py:266
msgid "Scale Y"
msgstr ""
-#: appEditors/appGeoEditor.py:846 appEditors/FlatCAMGrbEditor.py:5539
+#: appEditors/AppGeoEditor.py:846 appEditors/AppGerberEditor.py:5539
#: appTools/ToolTransform.py:293
msgid "Flip on X"
msgstr ""
-#: appEditors/appGeoEditor.py:848 appEditors/appGeoEditor.py:853
-#: appEditors/FlatCAMGrbEditor.py:5541 appEditors/FlatCAMGrbEditor.py:5546
+#: appEditors/AppGeoEditor.py:848 appEditors/AppGeoEditor.py:853
+#: appEditors/AppGerberEditor.py:5541 appEditors/AppGerberEditor.py:5546
#: appTools/ToolTransform.py:295 appTools/ToolTransform.py:300
msgid "Flip the selected object(s) over the X axis."
msgstr ""
-#: appEditors/appGeoEditor.py:851 appEditors/FlatCAMGrbEditor.py:5544
+#: appEditors/AppGeoEditor.py:851 appEditors/AppGerberEditor.py:5544
#: appTools/ToolTransform.py:298
msgid "Flip on Y"
msgstr ""
-#: appEditors/appGeoEditor.py:871 appEditors/FlatCAMGrbEditor.py:5564
+#: appEditors/AppGeoEditor.py:871 appEditors/AppGerberEditor.py:5564
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:191
#: appTools/ToolTransform.py:318
msgid "X val"
msgstr ""
-#: appEditors/appGeoEditor.py:873 appEditors/FlatCAMGrbEditor.py:5566
+#: appEditors/AppGeoEditor.py:873 appEditors/AppGerberEditor.py:5566
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:193
#: appTools/ToolTransform.py:320
msgid "Distance to offset on X axis. In current units."
msgstr ""
-#: appEditors/appGeoEditor.py:880 appEditors/FlatCAMGrbEditor.py:5573
+#: appEditors/AppGeoEditor.py:880 appEditors/AppGerberEditor.py:5573
#: appTools/ToolTransform.py:327
msgid "Offset X"
msgstr ""
-#: appEditors/appGeoEditor.py:882 appEditors/appGeoEditor.py:902
-#: appEditors/FlatCAMGrbEditor.py:5575 appEditors/FlatCAMGrbEditor.py:5595
+#: appEditors/AppGeoEditor.py:882 appEditors/AppGeoEditor.py:902
+#: appEditors/AppGerberEditor.py:5575 appEditors/AppGerberEditor.py:5595
#: appTools/ToolTransform.py:329 appTools/ToolTransform.py:349
msgid ""
"Offset the selected object(s).\n"
@@ -2008,31 +2008,31 @@ msgid ""
"the bounding box for all selected objects.\n"
msgstr ""
-#: appEditors/appGeoEditor.py:891 appEditors/FlatCAMGrbEditor.py:5584
+#: appEditors/AppGeoEditor.py:891 appEditors/AppGerberEditor.py:5584
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:204
#: appTools/ToolTransform.py:338
msgid "Y val"
msgstr ""
-#: appEditors/appGeoEditor.py:893 appEditors/FlatCAMGrbEditor.py:5586
+#: appEditors/AppGeoEditor.py:893 appEditors/AppGerberEditor.py:5586
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:206
#: appTools/ToolTransform.py:340
msgid "Distance to offset on Y axis. In current units."
msgstr ""
-#: appEditors/appGeoEditor.py:900 appEditors/FlatCAMGrbEditor.py:5593
+#: appEditors/AppGeoEditor.py:900 appEditors/AppGerberEditor.py:5593
#: appTools/ToolTransform.py:347
msgid "Offset Y"
msgstr ""
-#: appEditors/appGeoEditor.py:920 appEditors/FlatCAMGrbEditor.py:5613
+#: appEditors/AppGeoEditor.py:920 appEditors/AppGerberEditor.py:5613
#: appGUI/preferences/tools/Tools2QRCodePrefGroupUI.py:142
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:216
#: appTools/ToolQRCode.py:206 appTools/ToolTransform.py:367
msgid "Rounded"
msgstr ""
-#: appEditors/appGeoEditor.py:922 appEditors/FlatCAMGrbEditor.py:5615
+#: appEditors/AppGeoEditor.py:922 appEditors/AppGerberEditor.py:5615
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:218
#: appTools/ToolTransform.py:369
msgid ""
@@ -2042,14 +2042,14 @@ msgid ""
"of the buffered shape."
msgstr ""
-#: appEditors/appGeoEditor.py:930 appEditors/FlatCAMGrbEditor.py:5623
+#: appEditors/AppGeoEditor.py:930 appEditors/AppGerberEditor.py:5623
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:226
#: appTools/ToolDistance.py:505 appTools/ToolDistanceMin.py:286
#: appTools/ToolTransform.py:377
msgid "Distance"
msgstr ""
-#: appEditors/appGeoEditor.py:932 appEditors/FlatCAMGrbEditor.py:5625
+#: appEditors/AppGeoEditor.py:932 appEditors/AppGerberEditor.py:5625
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:228
#: appTools/ToolTransform.py:379
msgid ""
@@ -2059,19 +2059,19 @@ msgid ""
"or decreased with the 'distance'."
msgstr ""
-#: appEditors/appGeoEditor.py:944 appEditors/FlatCAMGrbEditor.py:5637
+#: appEditors/AppGeoEditor.py:944 appEditors/AppGerberEditor.py:5637
#: appTools/ToolTransform.py:391
msgid "Buffer D"
msgstr ""
-#: appEditors/appGeoEditor.py:946 appEditors/FlatCAMGrbEditor.py:5639
+#: appEditors/AppGeoEditor.py:946 appEditors/AppGerberEditor.py:5639
#: appTools/ToolTransform.py:393
msgid ""
"Create the buffer effect on each geometry,\n"
"element from the selected object, using the distance."
msgstr ""
-#: appEditors/appGeoEditor.py:957 appEditors/FlatCAMGrbEditor.py:5650
+#: appEditors/AppGeoEditor.py:957 appEditors/AppGerberEditor.py:5650
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:245
#: appTools/ToolTransform.py:404
msgid ""
@@ -2082,19 +2082,19 @@ msgid ""
"of the initial dimension."
msgstr ""
-#: appEditors/appGeoEditor.py:970 appEditors/FlatCAMGrbEditor.py:5663
+#: appEditors/AppGeoEditor.py:970 appEditors/AppGerberEditor.py:5663
#: appTools/ToolTransform.py:417
msgid "Buffer F"
msgstr ""
-#: appEditors/appGeoEditor.py:972 appEditors/FlatCAMGrbEditor.py:5665
+#: appEditors/AppGeoEditor.py:972 appEditors/AppGerberEditor.py:5665
#: appTools/ToolTransform.py:419
msgid ""
"Create the buffer effect on each geometry,\n"
"element from the selected object, using the factor."
msgstr ""
-#: appEditors/appGeoEditor.py:1043 appEditors/FlatCAMGrbEditor.py:5736
+#: appEditors/AppGeoEditor.py:1043 appEditors/AppGerberEditor.py:5736
#: appGUI/ObjectUI.py:1103 appGUI/ObjectUI.py:1958
#: appGUI/preferences/tools/Tools2CalPrefGroupUI.py:48
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
@@ -2105,409 +2105,409 @@ msgstr ""
msgid "Object"
msgstr ""
-#: appEditors/appGeoEditor.py:1107 appEditors/appGeoEditor.py:1130
-#: appEditors/appGeoEditor.py:1276 appEditors/appGeoEditor.py:1301
-#: appEditors/appGeoEditor.py:1335 appEditors/appGeoEditor.py:1370
-#: appEditors/appGeoEditor.py:1401 appEditors/FlatCAMGrbEditor.py:5800
-#: appEditors/FlatCAMGrbEditor.py:5823 appEditors/FlatCAMGrbEditor.py:5968
-#: appEditors/FlatCAMGrbEditor.py:6001 appEditors/FlatCAMGrbEditor.py:6044
-#: appEditors/FlatCAMGrbEditor.py:6085 appEditors/FlatCAMGrbEditor.py:6121
+#: appEditors/AppGeoEditor.py:1107 appEditors/AppGeoEditor.py:1130
+#: appEditors/AppGeoEditor.py:1276 appEditors/AppGeoEditor.py:1301
+#: appEditors/AppGeoEditor.py:1335 appEditors/AppGeoEditor.py:1370
+#: appEditors/AppGeoEditor.py:1401 appEditors/AppGerberEditor.py:5800
+#: appEditors/AppGerberEditor.py:5823 appEditors/AppGerberEditor.py:5968
+#: appEditors/AppGerberEditor.py:6001 appEditors/AppGerberEditor.py:6044
+#: appEditors/AppGerberEditor.py:6085 appEditors/AppGerberEditor.py:6121
msgid "No shape selected."
msgstr ""
-#: appEditors/appGeoEditor.py:1115 appEditors/FlatCAMGrbEditor.py:5808
+#: appEditors/AppGeoEditor.py:1115 appEditors/AppGerberEditor.py:5808
#: appTools/ToolTransform.py:585
msgid "Incorrect format for Point value. Needs format X,Y"
msgstr ""
-#: appEditors/appGeoEditor.py:1140 appEditors/FlatCAMGrbEditor.py:5833
+#: appEditors/AppGeoEditor.py:1140 appEditors/AppGerberEditor.py:5833
#: appTools/ToolTransform.py:602
msgid "Rotate transformation can not be done for a value of 0."
msgstr ""
-#: appEditors/appGeoEditor.py:1198 appEditors/appGeoEditor.py:1219
-#: appEditors/FlatCAMGrbEditor.py:5891 appEditors/FlatCAMGrbEditor.py:5912
+#: appEditors/AppGeoEditor.py:1198 appEditors/AppGeoEditor.py:1219
+#: appEditors/AppGerberEditor.py:5891 appEditors/AppGerberEditor.py:5912
#: appTools/ToolTransform.py:660 appTools/ToolTransform.py:681
msgid "Scale transformation can not be done for a factor of 0 or 1."
msgstr ""
-#: appEditors/appGeoEditor.py:1232 appEditors/appGeoEditor.py:1241
-#: appEditors/FlatCAMGrbEditor.py:5925 appEditors/FlatCAMGrbEditor.py:5934
+#: appEditors/AppGeoEditor.py:1232 appEditors/AppGeoEditor.py:1241
+#: appEditors/AppGerberEditor.py:5925 appEditors/AppGerberEditor.py:5934
#: appTools/ToolTransform.py:694 appTools/ToolTransform.py:703
msgid "Offset transformation can not be done for a value of 0."
msgstr ""
-#: appEditors/appGeoEditor.py:1271 appEditors/FlatCAMGrbEditor.py:5971
+#: appEditors/AppGeoEditor.py:1271 appEditors/AppGerberEditor.py:5971
#: appTools/ToolTransform.py:731
msgid "Appying Rotate"
msgstr ""
-#: appEditors/appGeoEditor.py:1284 appEditors/FlatCAMGrbEditor.py:5983
+#: appEditors/AppGeoEditor.py:1284 appEditors/AppGerberEditor.py:5983
msgid "Done. Rotate completed."
msgstr ""
-#: appEditors/appGeoEditor.py:1286
+#: appEditors/AppGeoEditor.py:1286
msgid "Rotation action was not executed"
msgstr ""
-#: appEditors/appGeoEditor.py:1304 appEditors/FlatCAMGrbEditor.py:6004
+#: appEditors/AppGeoEditor.py:1304 appEditors/AppGerberEditor.py:6004
#: appTools/ToolTransform.py:757
msgid "Applying Flip"
msgstr ""
-#: appEditors/appGeoEditor.py:1312 appEditors/FlatCAMGrbEditor.py:6016
+#: appEditors/AppGeoEditor.py:1312 appEditors/AppGerberEditor.py:6016
#: appTools/ToolTransform.py:774
msgid "Flip on the Y axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1315 appEditors/FlatCAMGrbEditor.py:6024
+#: appEditors/AppGeoEditor.py:1315 appEditors/AppGerberEditor.py:6024
#: appTools/ToolTransform.py:783
msgid "Flip on the X axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1319
+#: appEditors/AppGeoEditor.py:1319
msgid "Flip action was not executed"
msgstr ""
-#: appEditors/appGeoEditor.py:1338 appEditors/FlatCAMGrbEditor.py:6047
+#: appEditors/AppGeoEditor.py:1338 appEditors/AppGerberEditor.py:6047
#: appTools/ToolTransform.py:804
msgid "Applying Skew"
msgstr ""
-#: appEditors/appGeoEditor.py:1347 appEditors/FlatCAMGrbEditor.py:6063
+#: appEditors/AppGeoEditor.py:1347 appEditors/AppGerberEditor.py:6063
msgid "Skew on the X axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1349 appEditors/FlatCAMGrbEditor.py:6065
+#: appEditors/AppGeoEditor.py:1349 appEditors/AppGerberEditor.py:6065
msgid "Skew on the Y axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1352
+#: appEditors/AppGeoEditor.py:1352
msgid "Skew action was not executed"
msgstr ""
-#: appEditors/appGeoEditor.py:1373 appEditors/FlatCAMGrbEditor.py:6088
+#: appEditors/AppGeoEditor.py:1373 appEditors/AppGerberEditor.py:6088
#: appTools/ToolTransform.py:831
msgid "Applying Scale"
msgstr ""
-#: appEditors/appGeoEditor.py:1382 appEditors/FlatCAMGrbEditor.py:6101
+#: appEditors/AppGeoEditor.py:1382 appEditors/AppGerberEditor.py:6101
msgid "Scale on the X axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1384 appEditors/FlatCAMGrbEditor.py:6103
+#: appEditors/AppGeoEditor.py:1384 appEditors/AppGerberEditor.py:6103
msgid "Scale on the Y axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1386
+#: appEditors/AppGeoEditor.py:1386
msgid "Scale action was not executed"
msgstr ""
-#: appEditors/appGeoEditor.py:1404 appEditors/FlatCAMGrbEditor.py:6124
+#: appEditors/AppGeoEditor.py:1404 appEditors/AppGerberEditor.py:6124
#: appTools/ToolTransform.py:859
msgid "Applying Offset"
msgstr ""
-#: appEditors/appGeoEditor.py:1414 appEditors/FlatCAMGrbEditor.py:6145
+#: appEditors/AppGeoEditor.py:1414 appEditors/AppGerberEditor.py:6145
msgid "Offset on the X axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1416 appEditors/FlatCAMGrbEditor.py:6147
+#: appEditors/AppGeoEditor.py:1416 appEditors/AppGerberEditor.py:6147
msgid "Offset on the Y axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1419
+#: appEditors/AppGeoEditor.py:1419
msgid "Offset action was not executed"
msgstr ""
-#: appEditors/appGeoEditor.py:1426 appEditors/FlatCAMGrbEditor.py:6157
+#: appEditors/AppGeoEditor.py:1426 appEditors/AppGerberEditor.py:6157
msgid "No shape selected"
msgstr ""
-#: appEditors/appGeoEditor.py:1429 appEditors/FlatCAMGrbEditor.py:6160
+#: appEditors/AppGeoEditor.py:1429 appEditors/AppGerberEditor.py:6160
#: appTools/ToolTransform.py:889
msgid "Applying Buffer"
msgstr ""
-#: appEditors/appGeoEditor.py:1436 appEditors/FlatCAMGrbEditor.py:6182
+#: appEditors/AppGeoEditor.py:1436 appEditors/AppGerberEditor.py:6182
#: appTools/ToolTransform.py:910
msgid "Buffer done"
msgstr ""
-#: appEditors/appGeoEditor.py:1440 appEditors/FlatCAMGrbEditor.py:6186
+#: appEditors/AppGeoEditor.py:1440 appEditors/AppGerberEditor.py:6186
#: appTools/ToolTransform.py:879 appTools/ToolTransform.py:915
msgid "Action was not executed, due of"
msgstr ""
-#: appEditors/appGeoEditor.py:1444 appEditors/FlatCAMGrbEditor.py:6190
+#: appEditors/AppGeoEditor.py:1444 appEditors/AppGerberEditor.py:6190
msgid "Rotate ..."
msgstr ""
-#: appEditors/appGeoEditor.py:1445 appEditors/appGeoEditor.py:1494
-#: appEditors/appGeoEditor.py:1509 appEditors/FlatCAMGrbEditor.py:6191
-#: appEditors/FlatCAMGrbEditor.py:6240 appEditors/FlatCAMGrbEditor.py:6255
+#: appEditors/AppGeoEditor.py:1445 appEditors/AppGeoEditor.py:1494
+#: appEditors/AppGeoEditor.py:1509 appEditors/AppGerberEditor.py:6191
+#: appEditors/AppGerberEditor.py:6240 appEditors/AppGerberEditor.py:6255
msgid "Enter an Angle Value (degrees)"
msgstr ""
-#: appEditors/appGeoEditor.py:1453 appEditors/FlatCAMGrbEditor.py:6199
+#: appEditors/AppGeoEditor.py:1453 appEditors/AppGerberEditor.py:6199
msgid "Geometry shape rotate done"
msgstr ""
-#: appEditors/appGeoEditor.py:1456 appEditors/FlatCAMGrbEditor.py:6202
+#: appEditors/AppGeoEditor.py:1456 appEditors/AppGerberEditor.py:6202
msgid "Geometry shape rotate cancelled"
msgstr ""
-#: appEditors/appGeoEditor.py:1461 appEditors/FlatCAMGrbEditor.py:6207
+#: appEditors/AppGeoEditor.py:1461 appEditors/AppGerberEditor.py:6207
msgid "Offset on X axis ..."
msgstr ""
-#: appEditors/appGeoEditor.py:1462 appEditors/appGeoEditor.py:1479
-#: appEditors/FlatCAMGrbEditor.py:6208 appEditors/FlatCAMGrbEditor.py:6225
+#: appEditors/AppGeoEditor.py:1462 appEditors/AppGeoEditor.py:1479
+#: appEditors/AppGerberEditor.py:6208 appEditors/AppGerberEditor.py:6225
msgid "Enter a distance Value"
msgstr ""
-#: appEditors/appGeoEditor.py:1470 appEditors/FlatCAMGrbEditor.py:6216
+#: appEditors/AppGeoEditor.py:1470 appEditors/AppGerberEditor.py:6216
msgid "Geometry shape offset on X axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1473 appEditors/FlatCAMGrbEditor.py:6219
+#: appEditors/AppGeoEditor.py:1473 appEditors/AppGerberEditor.py:6219
msgid "Geometry shape offset X cancelled"
msgstr ""
-#: appEditors/appGeoEditor.py:1478 appEditors/FlatCAMGrbEditor.py:6224
+#: appEditors/AppGeoEditor.py:1478 appEditors/AppGerberEditor.py:6224
msgid "Offset on Y axis ..."
msgstr ""
-#: appEditors/appGeoEditor.py:1487 appEditors/FlatCAMGrbEditor.py:6233
+#: appEditors/AppGeoEditor.py:1487 appEditors/AppGerberEditor.py:6233
msgid "Geometry shape offset on Y axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1490
+#: appEditors/AppGeoEditor.py:1490
msgid "Geometry shape offset on Y axis canceled"
msgstr ""
-#: appEditors/appGeoEditor.py:1493 appEditors/FlatCAMGrbEditor.py:6239
+#: appEditors/AppGeoEditor.py:1493 appEditors/AppGerberEditor.py:6239
msgid "Skew on X axis ..."
msgstr ""
-#: appEditors/appGeoEditor.py:1502 appEditors/FlatCAMGrbEditor.py:6248
+#: appEditors/AppGeoEditor.py:1502 appEditors/AppGerberEditor.py:6248
msgid "Geometry shape skew on X axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1505
+#: appEditors/AppGeoEditor.py:1505
msgid "Geometry shape skew on X axis canceled"
msgstr ""
-#: appEditors/appGeoEditor.py:1508 appEditors/FlatCAMGrbEditor.py:6254
+#: appEditors/AppGeoEditor.py:1508 appEditors/AppGerberEditor.py:6254
msgid "Skew on Y axis ..."
msgstr ""
-#: appEditors/appGeoEditor.py:1517 appEditors/FlatCAMGrbEditor.py:6263
+#: appEditors/AppGeoEditor.py:1517 appEditors/AppGerberEditor.py:6263
msgid "Geometry shape skew on Y axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1520
+#: appEditors/AppGeoEditor.py:1520
msgid "Geometry shape skew on Y axis canceled"
msgstr ""
-#: appEditors/appGeoEditor.py:1950 appEditors/appGeoEditor.py:2021
-#: appEditors/FlatCAMGrbEditor.py:1444 appEditors/FlatCAMGrbEditor.py:1522
+#: appEditors/AppGeoEditor.py:1950 appEditors/AppGeoEditor.py:2021
+#: appEditors/AppGerberEditor.py:1444 appEditors/AppGerberEditor.py:1522
msgid "Click on Center point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:1963 appEditors/FlatCAMGrbEditor.py:1454
+#: appEditors/AppGeoEditor.py:1963 appEditors/AppGerberEditor.py:1454
msgid "Click on Perimeter point to complete ..."
msgstr ""
-#: appEditors/appGeoEditor.py:1995
+#: appEditors/AppGeoEditor.py:1995
msgid "Done. Adding Circle completed."
msgstr ""
-#: appEditors/appGeoEditor.py:2049 appEditors/FlatCAMGrbEditor.py:1555
+#: appEditors/AppGeoEditor.py:2049 appEditors/AppGerberEditor.py:1555
msgid "Click on Start point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2051 appEditors/FlatCAMGrbEditor.py:1557
+#: appEditors/AppGeoEditor.py:2051 appEditors/AppGerberEditor.py:1557
msgid "Click on Point3 ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2053 appEditors/FlatCAMGrbEditor.py:1559
+#: appEditors/AppGeoEditor.py:2053 appEditors/AppGerberEditor.py:1559
msgid "Click on Stop point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2058 appEditors/FlatCAMGrbEditor.py:1564
+#: appEditors/AppGeoEditor.py:2058 appEditors/AppGerberEditor.py:1564
msgid "Click on Stop point to complete ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2060 appEditors/FlatCAMGrbEditor.py:1566
+#: appEditors/AppGeoEditor.py:2060 appEditors/AppGerberEditor.py:1566
msgid "Click on Point2 to complete ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2062 appEditors/FlatCAMGrbEditor.py:1568
+#: appEditors/AppGeoEditor.py:2062 appEditors/AppGerberEditor.py:1568
msgid "Click on Center point to complete ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2074
+#: appEditors/AppGeoEditor.py:2074
#, python-format
msgid "Direction: %s"
msgstr ""
-#: appEditors/appGeoEditor.py:2088 appEditors/FlatCAMGrbEditor.py:1594
+#: appEditors/AppGeoEditor.py:2088 appEditors/AppGerberEditor.py:1594
msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2091 appEditors/FlatCAMGrbEditor.py:1597
+#: appEditors/AppGeoEditor.py:2091 appEditors/AppGerberEditor.py:1597
msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2094 appEditors/FlatCAMGrbEditor.py:1600
+#: appEditors/AppGeoEditor.py:2094 appEditors/AppGerberEditor.py:1600
msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2235
+#: appEditors/AppGeoEditor.py:2235
msgid "Done. Arc completed."
msgstr ""
-#: appEditors/appGeoEditor.py:2266 appEditors/appGeoEditor.py:2339
+#: appEditors/AppGeoEditor.py:2266 appEditors/AppGeoEditor.py:2339
msgid "Click on 1st corner ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2278
+#: appEditors/AppGeoEditor.py:2278
msgid "Click on opposite corner to complete ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2308
+#: appEditors/AppGeoEditor.py:2308
msgid "Done. Rectangle completed."
msgstr ""
-#: appEditors/appGeoEditor.py:2383
+#: appEditors/AppGeoEditor.py:2383
msgid "Done. Polygon completed."
msgstr ""
-#: appEditors/appGeoEditor.py:2397 appEditors/appGeoEditor.py:2462
-#: appEditors/FlatCAMGrbEditor.py:1102 appEditors/FlatCAMGrbEditor.py:1322
+#: appEditors/AppGeoEditor.py:2397 appEditors/AppGeoEditor.py:2462
+#: appEditors/AppGerberEditor.py:1102 appEditors/AppGerberEditor.py:1322
msgid "Backtracked one point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2440
+#: appEditors/AppGeoEditor.py:2440
msgid "Done. Path completed."
msgstr ""
-#: appEditors/appGeoEditor.py:2599
+#: appEditors/AppGeoEditor.py:2599
msgid "No shape selected. Select a shape to explode"
msgstr ""
-#: appEditors/appGeoEditor.py:2632
+#: appEditors/AppGeoEditor.py:2632
msgid "Done. Polygons exploded into lines."
msgstr ""
-#: appEditors/appGeoEditor.py:2664
+#: appEditors/AppGeoEditor.py:2664
msgid "MOVE: No shape selected. Select a shape to move"
msgstr ""
-#: appEditors/appGeoEditor.py:2667 appEditors/appGeoEditor.py:2687
+#: appEditors/AppGeoEditor.py:2667 appEditors/AppGeoEditor.py:2687
msgid " MOVE: Click on reference point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2672
+#: appEditors/AppGeoEditor.py:2672
msgid " Click on destination point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2712
+#: appEditors/AppGeoEditor.py:2712
msgid "Done. Geometry(s) Move completed."
msgstr ""
-#: appEditors/appGeoEditor.py:2845
+#: appEditors/AppGeoEditor.py:2845
msgid "Done. Geometry(s) Copy completed."
msgstr ""
-#: appEditors/appGeoEditor.py:2876 appEditors/FlatCAMGrbEditor.py:897
+#: appEditors/AppGeoEditor.py:2876 appEditors/AppGerberEditor.py:897
msgid "Click on 1st point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2900
+#: appEditors/AppGeoEditor.py:2900
msgid ""
"Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
"Error"
msgstr ""
-#: appEditors/appGeoEditor.py:2908
+#: appEditors/AppGeoEditor.py:2908
msgid "No text to add."
msgstr ""
-#: appEditors/appGeoEditor.py:2918
+#: appEditors/AppGeoEditor.py:2918
msgid " Done. Adding Text completed."
msgstr ""
-#: appEditors/appGeoEditor.py:2955
+#: appEditors/AppGeoEditor.py:2955
msgid "Create buffer geometry ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2990 appEditors/FlatCAMGrbEditor.py:5153
+#: appEditors/AppGeoEditor.py:2990 appEditors/AppGerberEditor.py:5153
msgid "Done. Buffer Tool completed."
msgstr ""
-#: appEditors/appGeoEditor.py:3018
+#: appEditors/AppGeoEditor.py:3018
msgid "Done. Buffer Int Tool completed."
msgstr ""
-#: appEditors/appGeoEditor.py:3046
+#: appEditors/AppGeoEditor.py:3046
msgid "Done. Buffer Ext Tool completed."
msgstr ""
-#: appEditors/appGeoEditor.py:3095 appEditors/FlatCAMGrbEditor.py:2160
+#: appEditors/AppGeoEditor.py:3095 appEditors/AppGerberEditor.py:2160
msgid "Select a shape to act as deletion area ..."
msgstr ""
-#: appEditors/appGeoEditor.py:3097 appEditors/appGeoEditor.py:3123
-#: appEditors/appGeoEditor.py:3129 appEditors/FlatCAMGrbEditor.py:2162
+#: appEditors/AppGeoEditor.py:3097 appEditors/AppGeoEditor.py:3123
+#: appEditors/AppGeoEditor.py:3129 appEditors/AppGerberEditor.py:2162
msgid "Click to pick-up the erase shape..."
msgstr ""
-#: appEditors/appGeoEditor.py:3133 appEditors/FlatCAMGrbEditor.py:2221
+#: appEditors/AppGeoEditor.py:3133 appEditors/AppGerberEditor.py:2221
msgid "Click to erase ..."
msgstr ""
-#: appEditors/appGeoEditor.py:3162 appEditors/FlatCAMGrbEditor.py:2254
+#: appEditors/AppGeoEditor.py:3162 appEditors/AppGerberEditor.py:2254
msgid "Done. Eraser tool action completed."
msgstr ""
-#: appEditors/appGeoEditor.py:3212
+#: appEditors/AppGeoEditor.py:3212
msgid "Create Paint geometry ..."
msgstr ""
-#: appEditors/appGeoEditor.py:3225 appEditors/FlatCAMGrbEditor.py:2417
+#: appEditors/AppGeoEditor.py:3225 appEditors/AppGerberEditor.py:2417
msgid "Shape transformations ..."
msgstr ""
-#: appEditors/appGeoEditor.py:3281
+#: appEditors/AppGeoEditor.py:3281
#: appGUI/preferences/geometry/GeometryEditorPrefGroupUI.py:27
msgid "Geometry Editor"
msgstr ""
-#: appEditors/appGeoEditor.py:3287 appEditors/FlatCAMGrbEditor.py:2495
-#: appEditors/FlatCAMGrbEditor.py:3951 appGUI/ObjectUI.py:282
+#: appEditors/AppGeoEditor.py:3287 appEditors/AppGerberEditor.py:2495
+#: appEditors/AppGerberEditor.py:3951 appGUI/ObjectUI.py:282
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256 appTools/ToolCutOut.py:95
#: appTools/ToolTransform.py:92
msgid "Type"
msgstr ""
-#: appEditors/appGeoEditor.py:3287 appGUI/ObjectUI.py:221
+#: appEditors/AppGeoEditor.py:3287 appGUI/ObjectUI.py:221
#: appGUI/ObjectUI.py:521 appGUI/ObjectUI.py:1330 appGUI/ObjectUI.py:2165
#: appGUI/ObjectUI.py:2469 appGUI/ObjectUI.py:2536
#: appTools/ToolCalibration.py:234 appTools/ToolFiducials.py:70
msgid "Name"
msgstr ""
-#: appEditors/appGeoEditor.py:3539
+#: appEditors/AppGeoEditor.py:3539
msgid "Ring"
msgstr ""
-#: appEditors/appGeoEditor.py:3541
+#: appEditors/AppGeoEditor.py:3541
msgid "Line"
msgstr ""
-#: appEditors/appGeoEditor.py:3543 appGUI/MainGUI.py:1446
+#: appEditors/AppGeoEditor.py:3543 appGUI/MainGUI.py:1446
#: appGUI/ObjectUI.py:1150 appGUI/ObjectUI.py:2005
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:226
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:299
@@ -2518,247 +2518,247 @@ msgstr ""
msgid "Polygon"
msgstr ""
-#: appEditors/appGeoEditor.py:3545
+#: appEditors/AppGeoEditor.py:3545
msgid "Multi-Line"
msgstr ""
-#: appEditors/appGeoEditor.py:3547
+#: appEditors/AppGeoEditor.py:3547
msgid "Multi-Polygon"
msgstr ""
-#: appEditors/appGeoEditor.py:3554
+#: appEditors/AppGeoEditor.py:3554
msgid "Geo Elem"
msgstr ""
-#: appEditors/appGeoEditor.py:4007
+#: appEditors/AppGeoEditor.py:4007
msgid "Editing MultiGeo Geometry, tool"
msgstr ""
-#: appEditors/appGeoEditor.py:4009
+#: appEditors/AppGeoEditor.py:4009
msgid "with diameter"
msgstr ""
-#: appEditors/appGeoEditor.py:4081
+#: appEditors/AppGeoEditor.py:4081
msgid "Grid Snap enabled."
msgstr ""
-#: appEditors/appGeoEditor.py:4085
+#: appEditors/AppGeoEditor.py:4085
msgid "Grid Snap disabled."
msgstr ""
-#: appEditors/appGeoEditor.py:4446 appGUI/MainGUI.py:3046
+#: appEditors/AppGeoEditor.py:4446 appGUI/MainGUI.py:3046
#: appGUI/MainGUI.py:3092 appGUI/MainGUI.py:3110 appGUI/MainGUI.py:3254
#: appGUI/MainGUI.py:3293 appGUI/MainGUI.py:3305 appGUI/MainGUI.py:3322
msgid "Click on target point."
msgstr ""
-#: appEditors/appGeoEditor.py:4762 appEditors/appGeoEditor.py:4797
+#: appEditors/AppGeoEditor.py:4762 appEditors/AppGeoEditor.py:4797
msgid "A selection of at least 2 geo items is required to do Intersection."
msgstr ""
-#: appEditors/appGeoEditor.py:4883 appEditors/appGeoEditor.py:4987
+#: appEditors/AppGeoEditor.py:4883 appEditors/AppGeoEditor.py:4987
msgid ""
"Negative buffer value is not accepted. Use Buffer interior to generate an "
"'inside' shape"
msgstr ""
-#: appEditors/appGeoEditor.py:4893 appEditors/appGeoEditor.py:4946
-#: appEditors/appGeoEditor.py:4996
+#: appEditors/AppGeoEditor.py:4893 appEditors/AppGeoEditor.py:4946
+#: appEditors/AppGeoEditor.py:4996
msgid "Nothing selected for buffering."
msgstr ""
-#: appEditors/appGeoEditor.py:4898 appEditors/appGeoEditor.py:4950
-#: appEditors/appGeoEditor.py:5001
+#: appEditors/AppGeoEditor.py:4898 appEditors/AppGeoEditor.py:4950
+#: appEditors/AppGeoEditor.py:5001
msgid "Invalid distance for buffering."
msgstr ""
-#: appEditors/appGeoEditor.py:4922 appEditors/appGeoEditor.py:5021
+#: appEditors/AppGeoEditor.py:4922 appEditors/AppGeoEditor.py:5021
msgid "Failed, the result is empty. Choose a different buffer value."
msgstr ""
-#: appEditors/appGeoEditor.py:4933
+#: appEditors/AppGeoEditor.py:4933
msgid "Full buffer geometry created."
msgstr ""
-#: appEditors/appGeoEditor.py:4939
+#: appEditors/AppGeoEditor.py:4939
msgid "Negative buffer value is not accepted."
msgstr ""
-#: appEditors/appGeoEditor.py:4970
+#: appEditors/AppGeoEditor.py:4970
msgid "Failed, the result is empty. Choose a smaller buffer value."
msgstr ""
-#: appEditors/appGeoEditor.py:4980
+#: appEditors/AppGeoEditor.py:4980
msgid "Interior buffer geometry created."
msgstr ""
-#: appEditors/appGeoEditor.py:5031
+#: appEditors/AppGeoEditor.py:5031
msgid "Exterior buffer geometry created."
msgstr ""
-#: appEditors/appGeoEditor.py:5037
+#: appEditors/AppGeoEditor.py:5037
#, python-format
msgid "Could not do Paint. Overlap value has to be less than 100%%."
msgstr ""
-#: appEditors/appGeoEditor.py:5044
+#: appEditors/AppGeoEditor.py:5044
msgid "Nothing selected for painting."
msgstr ""
-#: appEditors/appGeoEditor.py:5050
+#: appEditors/AppGeoEditor.py:5050
msgid "Invalid value for"
msgstr ""
-#: appEditors/appGeoEditor.py:5109
+#: appEditors/AppGeoEditor.py:5109
msgid ""
"Could not do Paint. Try a different combination of parameters. Or a "
"different method of Paint"
msgstr ""
-#: appEditors/appGeoEditor.py:5120
+#: appEditors/AppGeoEditor.py:5120
msgid "Paint done."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:211
+#: appEditors/AppGerberEditor.py:211
msgid "To add an Pad first select a aperture in Aperture Table"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:218 appEditors/FlatCAMGrbEditor.py:418
+#: appEditors/AppGerberEditor.py:218 appEditors/AppGerberEditor.py:418
msgid "Aperture size is zero. It needs to be greater than zero."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:371 appEditors/FlatCAMGrbEditor.py:684
+#: appEditors/AppGerberEditor.py:371 appEditors/AppGerberEditor.py:684
msgid ""
"Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:383
+#: appEditors/AppGerberEditor.py:383
msgid "Done. Adding Pad completed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:410
+#: appEditors/AppGerberEditor.py:410
msgid "To add an Pad Array first select a aperture in Aperture Table"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:490
+#: appEditors/AppGerberEditor.py:490
msgid "Click on the Pad Circular Array Start position"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:710
+#: appEditors/AppGerberEditor.py:710
msgid "Too many Pads for the selected spacing angle."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:733
+#: appEditors/AppGerberEditor.py:733
msgid "Done. Pad Array added."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:758
+#: appEditors/AppGerberEditor.py:758
msgid "Select shape(s) and then click ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:770
+#: appEditors/AppGerberEditor.py:770
msgid "Failed. Nothing selected."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:786
+#: appEditors/AppGerberEditor.py:786
msgid ""
"Failed. Poligonize works only on geometries belonging to the same aperture."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:840
+#: appEditors/AppGerberEditor.py:840
msgid "Done. Poligonize completed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:895 appEditors/FlatCAMGrbEditor.py:1119
-#: appEditors/FlatCAMGrbEditor.py:1143
+#: appEditors/AppGerberEditor.py:895 appEditors/AppGerberEditor.py:1119
+#: appEditors/AppGerberEditor.py:1143
msgid "Corner Mode 1: 45 degrees ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:907 appEditors/FlatCAMGrbEditor.py:1219
+#: appEditors/AppGerberEditor.py:907 appEditors/AppGerberEditor.py:1219
msgid "Click on next Point or click Right mouse button to complete ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1107 appEditors/FlatCAMGrbEditor.py:1140
+#: appEditors/AppGerberEditor.py:1107 appEditors/AppGerberEditor.py:1140
msgid "Corner Mode 2: Reverse 45 degrees ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1110 appEditors/FlatCAMGrbEditor.py:1137
+#: appEditors/AppGerberEditor.py:1110 appEditors/AppGerberEditor.py:1137
msgid "Corner Mode 3: 90 degrees ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1113 appEditors/FlatCAMGrbEditor.py:1134
+#: appEditors/AppGerberEditor.py:1113 appEditors/AppGerberEditor.py:1134
msgid "Corner Mode 4: Reverse 90 degrees ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1116 appEditors/FlatCAMGrbEditor.py:1131
+#: appEditors/AppGerberEditor.py:1116 appEditors/AppGerberEditor.py:1131
msgid "Corner Mode 5: Free angle ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1193 appEditors/FlatCAMGrbEditor.py:1358
-#: appEditors/FlatCAMGrbEditor.py:1397
+#: appEditors/AppGerberEditor.py:1193 appEditors/AppGerberEditor.py:1358
+#: appEditors/AppGerberEditor.py:1397
msgid "Track Mode 1: 45 degrees ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1338 appEditors/FlatCAMGrbEditor.py:1392
+#: appEditors/AppGerberEditor.py:1338 appEditors/AppGerberEditor.py:1392
msgid "Track Mode 2: Reverse 45 degrees ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1343 appEditors/FlatCAMGrbEditor.py:1387
+#: appEditors/AppGerberEditor.py:1343 appEditors/AppGerberEditor.py:1387
msgid "Track Mode 3: 90 degrees ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1348 appEditors/FlatCAMGrbEditor.py:1382
+#: appEditors/AppGerberEditor.py:1348 appEditors/AppGerberEditor.py:1382
msgid "Track Mode 4: Reverse 90 degrees ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1353 appEditors/FlatCAMGrbEditor.py:1377
+#: appEditors/AppGerberEditor.py:1353 appEditors/AppGerberEditor.py:1377
msgid "Track Mode 5: Free angle ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1787
+#: appEditors/AppGerberEditor.py:1787
msgid "Scale the selected Gerber apertures ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1829
+#: appEditors/AppGerberEditor.py:1829
msgid "Buffer the selected apertures ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1871
+#: appEditors/AppGerberEditor.py:1871
msgid "Mark polygon areas in the edited Gerber ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1937
+#: appEditors/AppGerberEditor.py:1937
msgid "Nothing selected to move"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2062
+#: appEditors/AppGerberEditor.py:2062
msgid "Done. Apertures Move completed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2144
+#: appEditors/AppGerberEditor.py:2144
msgid "Done. Apertures copied."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2462 appGUI/MainGUI.py:1477
+#: appEditors/AppGerberEditor.py:2462 appGUI/MainGUI.py:1477
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:27
msgid "Gerber Editor"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2482 appGUI/ObjectUI.py:247
+#: appEditors/AppGerberEditor.py:2482 appGUI/ObjectUI.py:247
#: appTools/ToolProperties.py:159
msgid "Apertures"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2484 appGUI/ObjectUI.py:249
+#: appEditors/AppGerberEditor.py:2484 appGUI/ObjectUI.py:249
msgid "Apertures Table for the Gerber Object."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Code"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
#: appGUI/preferences/general/GeneralAPPSetGroupUI.py:103
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:167
@@ -2769,45 +2769,45 @@ msgstr ""
msgid "Size"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Dim"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2500 appGUI/ObjectUI.py:286
+#: appEditors/AppGerberEditor.py:2500 appGUI/ObjectUI.py:286
msgid "Index"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2502 appEditors/FlatCAMGrbEditor.py:2531
+#: appEditors/AppGerberEditor.py:2502 appEditors/AppGerberEditor.py:2531
#: appGUI/ObjectUI.py:288
msgid "Aperture Code"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2504 appGUI/ObjectUI.py:290
+#: appEditors/AppGerberEditor.py:2504 appGUI/ObjectUI.py:290
msgid "Type of aperture: circular, rectangle, macros etc"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2506 appGUI/ObjectUI.py:292
+#: appEditors/AppGerberEditor.py:2506 appGUI/ObjectUI.py:292
msgid "Aperture Size:"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2508 appGUI/ObjectUI.py:294
+#: appEditors/AppGerberEditor.py:2508 appGUI/ObjectUI.py:294
msgid ""
"Aperture Dimensions:\n"
" - (width, height) for R, O type.\n"
" - (dia, nVertices) for P type"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2532
+#: appEditors/AppGerberEditor.py:2532
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:58
msgid "Code for the new aperture"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2541
+#: appEditors/AppGerberEditor.py:2541
msgid "Aperture Size"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2543
+#: appEditors/AppGerberEditor.py:2543
msgid ""
"Size for the new aperture.\n"
"If aperture type is 'R' or 'O' then\n"
@@ -2816,11 +2816,11 @@ msgid ""
"sqrt(width**2 + height**2)"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2557
+#: appEditors/AppGerberEditor.py:2557
msgid "Aperture Type"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2559
+#: appEditors/AppGerberEditor.py:2559
msgid ""
"Select the type of new aperture. Can be:\n"
"C = circular\n"
@@ -2828,30 +2828,30 @@ msgid ""
"O = oblong"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2570
+#: appEditors/AppGerberEditor.py:2570
msgid "Aperture Dim"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2572
+#: appEditors/AppGerberEditor.py:2572
msgid ""
"Dimensions for the new aperture.\n"
"Active only for rectangular apertures (type R).\n"
"The format is (width, height)"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2581
+#: appEditors/AppGerberEditor.py:2581
msgid "Add/Delete Aperture"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2583
+#: appEditors/AppGerberEditor.py:2583
msgid "Add/Delete an aperture in the aperture table"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2592
+#: appEditors/AppGerberEditor.py:2592
msgid "Add a new aperture to the aperture list."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2595 appEditors/FlatCAMGrbEditor.py:2743
+#: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743
#: appGUI/MainGUI.py:748 appGUI/MainGUI.py:1068 appGUI/MainGUI.py:1527
#: appGUI/MainGUI.py:2099 appGUI/MainGUI.py:4514 appGUI/ObjectUI.py:1525
#: appObjects/FlatCAMGeometry.py:563 appTools/ToolIsolation.py:298
@@ -2862,28 +2862,28 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2597
+#: appEditors/AppGerberEditor.py:2597
msgid "Delete a aperture in the aperture list"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2614
+#: appEditors/AppGerberEditor.py:2614
msgid "Buffer Aperture"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2616
+#: appEditors/AppGerberEditor.py:2616
msgid "Buffer a aperture in the aperture list"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2629
+#: appEditors/AppGerberEditor.py:2629
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:195
msgid "Buffer distance"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2630
+#: appEditors/AppGerberEditor.py:2630
msgid "Buffer corner"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2632
+#: appEditors/AppGerberEditor.py:2632
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded.\n"
@@ -2892,95 +2892,95 @@ msgid ""
"meeting in the corner"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2662
+#: appEditors/AppGerberEditor.py:2662
msgid "Scale Aperture"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2664
+#: appEditors/AppGerberEditor.py:2664
msgid "Scale a aperture in the aperture list"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2672
+#: appEditors/AppGerberEditor.py:2672
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:210
msgid "Scale factor"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2674
+#: appEditors/AppGerberEditor.py:2674
msgid ""
"The factor by which to scale the selected aperture.\n"
"Values can be between 0.0000 and 999.9999"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2702
+#: appEditors/AppGerberEditor.py:2702
msgid "Mark polygons"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2704
+#: appEditors/AppGerberEditor.py:2704
msgid "Mark the polygon areas."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2712
+#: appEditors/AppGerberEditor.py:2712
msgid "Area UPPER threshold"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2714
+#: appEditors/AppGerberEditor.py:2714
msgid ""
"The threshold value, all areas less than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2721
+#: appEditors/AppGerberEditor.py:2721
msgid "Area LOWER threshold"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2723
+#: appEditors/AppGerberEditor.py:2723
msgid ""
"The threshold value, all areas more than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2737
+#: appEditors/AppGerberEditor.py:2737
msgid "Mark"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2739
+#: appEditors/AppGerberEditor.py:2739
msgid "Mark the polygons that fit within limits."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2745
+#: appEditors/AppGerberEditor.py:2745
msgid "Delete all the marked polygons."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2751
+#: appEditors/AppGerberEditor.py:2751
msgid "Clear all the markings."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2771 appGUI/MainGUI.py:1040
+#: appEditors/AppGerberEditor.py:2771 appGUI/MainGUI.py:1040
#: appGUI/MainGUI.py:2072 appGUI/MainGUI.py:4511
msgid "Add Pad Array"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2773
+#: appEditors/AppGerberEditor.py:2773
msgid "Add an array of pads (linear or circular array)"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2779
+#: appEditors/AppGerberEditor.py:2779
msgid ""
"Select the type of pads array to create.\n"
"It can be Linear X(Y) or Circular"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2790
+#: appEditors/AppGerberEditor.py:2790
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:95
msgid "Nr of pads"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2792
+#: appEditors/AppGerberEditor.py:2792
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:97
msgid "Specify how many pads to be in the array."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2841
+#: appEditors/AppGerberEditor.py:2841
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -2988,157 +2988,157 @@ msgid ""
"Max value is: 360.00 degrees."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3335 appEditors/FlatCAMGrbEditor.py:3339
+#: appEditors/AppGerberEditor.py:3335 appEditors/AppGerberEditor.py:3339
msgid "Aperture code value is missing or wrong format. Add it and retry."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3375
+#: appEditors/AppGerberEditor.py:3375
msgid ""
"Aperture dimensions value is missing or wrong format. Add it in format "
"(width, height) and retry."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3388
+#: appEditors/AppGerberEditor.py:3388
msgid "Aperture size value is missing or wrong format. Add it and retry."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3399
+#: appEditors/AppGerberEditor.py:3399
msgid "Aperture already in the aperture table."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3406
+#: appEditors/AppGerberEditor.py:3406
msgid "Added new aperture with code"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3438
+#: appEditors/AppGerberEditor.py:3438
msgid " Select an aperture in Aperture Table"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3446
+#: appEditors/AppGerberEditor.py:3446
msgid "Select an aperture in Aperture Table -->"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3460
+#: appEditors/AppGerberEditor.py:3460
msgid "Deleted aperture with code"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3528
+#: appEditors/AppGerberEditor.py:3528
msgid "Dimensions need two float values separated by comma."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3537
+#: appEditors/AppGerberEditor.py:3537
msgid "Dimensions edited."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4066
+#: appEditors/AppGerberEditor.py:4066
msgid "Loading Gerber into Editor"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4194
+#: appEditors/AppGerberEditor.py:4194
msgid "Setting up the UI"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4195
+#: appEditors/AppGerberEditor.py:4195
msgid "Adding geometry finished. Preparing the GUI"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4204
+#: appEditors/AppGerberEditor.py:4204
msgid "Finished loading the Gerber object into the editor."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4345
+#: appEditors/AppGerberEditor.py:4345
msgid ""
"There are no Aperture definitions in the file. Aborting Gerber creation."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4347 appObjects/AppObject.py:133
+#: appEditors/AppGerberEditor.py:4347 appObjects/AppObject.py:133
#: appObjects/FlatCAMGeometry.py:1786 appParsers/ParseExcellon.py:896
#: appTools/ToolPcbWizard.py:432 app_Main.py:8589 app_Main.py:8653
#: app_Main.py:8784 app_Main.py:8849 app_Main.py:9501
msgid "An internal error has occurred. See shell.\n"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4355
+#: appEditors/AppGerberEditor.py:4355
msgid "Creating Gerber."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4367
+#: appEditors/AppGerberEditor.py:4367
msgid "Done. Gerber editing finished."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4383
+#: appEditors/AppGerberEditor.py:4383
msgid "Cancelled. No aperture is selected"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4538 app_Main.py:6122
+#: appEditors/AppGerberEditor.py:4538 app_Main.py:6122
msgid "Coordinates copied to clipboard."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4985
+#: appEditors/AppGerberEditor.py:4985
msgid "Failed. No aperture geometry is selected."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4994 appEditors/FlatCAMGrbEditor.py:5265
+#: appEditors/AppGerberEditor.py:4994 appEditors/AppGerberEditor.py:5265
msgid "Done. Apertures geometry deleted."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:5137
+#: appEditors/AppGerberEditor.py:5137
msgid "No aperture to buffer. Select at least one aperture and try again."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:5149
+#: appEditors/AppGerberEditor.py:5149
msgid "Failed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:5168
+#: appEditors/AppGerberEditor.py:5168
msgid "Scale factor value is missing or wrong format. Add it and retry."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:5200
+#: appEditors/AppGerberEditor.py:5200
msgid "No aperture to scale. Select at least one aperture and try again."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:5216
+#: appEditors/AppGerberEditor.py:5216
msgid "Done. Scale Tool completed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:5254
+#: appEditors/AppGerberEditor.py:5254
msgid "Polygons marked."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:5257
+#: appEditors/AppGerberEditor.py:5257
msgid "No polygons were marked. None fit within the limits."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:5985
+#: appEditors/AppGerberEditor.py:5985
msgid "Rotation action was not executed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:6027 app_Main.py:5556 app_Main.py:5604
+#: appEditors/AppGerberEditor.py:6027 app_Main.py:5556 app_Main.py:5604
msgid "Flip action was not executed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:6067
+#: appEditors/AppGerberEditor.py:6067
msgid "Skew action was not executed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:6106
+#: appEditors/AppGerberEditor.py:6106
msgid "Scale action was not executed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:6150
+#: appEditors/AppGerberEditor.py:6150
msgid "Offset action was not executed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:6236
+#: appEditors/AppGerberEditor.py:6236
msgid "Geometry shape offset Y cancelled"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:6251
+#: appEditors/AppGerberEditor.py:6251
msgid "Geometry shape skew X cancelled"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:6266
+#: appEditors/AppGerberEditor.py:6266
msgid "Geometry shape skew Y cancelled"
msgstr ""
diff --git a/locale/it/LC_MESSAGES/strings.po b/locale/it/LC_MESSAGES/strings.po
index 686856d4..e410baca 100644
--- a/locale/it/LC_MESSAGES/strings.po
+++ b/locale/it/LC_MESSAGES/strings.po
@@ -105,8 +105,8 @@ msgid "Bookmarks"
msgstr "Segnalibri"
#: Bookmark.py:300 Bookmark.py:342 appDatabase.py:665 appDatabase.py:711
-#: appDatabase.py:2279 appDatabase.py:2325 appEditors/FlatCAMExcEditor.py:1023
-#: appEditors/FlatCAMExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
+#: appDatabase.py:2279 appDatabase.py:2325 appEditors/AppExcEditor.py:1023
+#: appEditors/AppExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
#: appGUI/MainGUI.py:2730 appGUI/MainGUI.py:2952 appGUI/MainGUI.py:3167
#: appObjects/ObjectCollection.py:127 appTools/ToolFilm.py:739
#: appTools/ToolFilm.py:885 appTools/ToolImage.py:247 appTools/ToolMove.py:269
@@ -176,7 +176,7 @@ msgstr ""
"Zona aggiunta. Fare clic per iniziare ad aggiungere la zona successiva o "
"fare clic con il tasto destro per terminare."
-#: Common.py:322 appEditors/appGeoEditor.py:2352
+#: Common.py:322 appEditors/AppGeoEditor.py:2352
#: appTools/ToolIsolation.py:2584 appTools/ToolNCC.py:1754
#: appTools/ToolPaint.py:1647
msgid "Click on next Point or click right mouse button to complete ..."
@@ -281,7 +281,7 @@ msgid "Tool Name"
msgstr "Nome utensile"
#: appDatabase.py:161 appDatabase.py:837 appDatabase.py:1119
-#: appEditors/FlatCAMExcEditor.py:1604 appGUI/ObjectUI.py:1226
+#: appEditors/AppExcEditor.py:1604 appGUI/ObjectUI.py:1226
#: appGUI/ObjectUI.py:1480
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:132
#: appTools/ToolIsolation.py:260 appTools/ToolNCC.py:278
@@ -838,7 +838,7 @@ msgstr ""
"Se non ha esito positivo, anche la pulizia non-rame avrà esito negativo.\n"
"- Cancella -> la normale pulizia non-rame."
-#: appDatabase.py:1427 appEditors/FlatCAMGrbEditor.py:2749
+#: appDatabase.py:1427 appEditors/AppGerberEditor.py:2749
#: appGUI/GUIElements.py:2765 appTools/ToolNCC.py:350
msgid "Clear"
msgstr "Pulisci"
@@ -890,7 +890,7 @@ msgid "Conventional"
msgstr "Convenzionale"
#: appDatabase.py:1456 appDatabase.py:1565 appDatabase.py:1667
-#: appEditors/appGeoEditor.py:450
+#: appEditors/AppGeoEditor.py:450
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:167
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:182
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:163
@@ -918,7 +918,7 @@ msgstr ""
"Valori più alti = elaborazione lenta ed esecuzione lenta su CNC\n"
"per i molti percorsi."
-#: appDatabase.py:1477 appDatabase.py:1586 appEditors/appGeoEditor.py:470
+#: appDatabase.py:1477 appDatabase.py:1586 appEditors/AppGeoEditor.py:470
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:72
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:229
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:59
@@ -947,7 +947,7 @@ msgstr "Margine"
msgid "Bounding box margin."
msgstr "Margine del riquadro di delimitazione."
-#: appDatabase.py:1490 appDatabase.py:1601 appEditors/appGeoEditor.py:484
+#: appDatabase.py:1490 appDatabase.py:1601 appEditors/AppGeoEditor.py:484
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:105
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:106
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:215
@@ -970,7 +970,7 @@ msgstr ""
"- A base di semi: verso l'esterno dal seme.\n"
"- Basato su linee: linee parallele."
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2232 appTools/ToolNCC.py:2764
@@ -980,8 +980,8 @@ msgstr ""
msgid "Standard"
msgstr "Standard"
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:568 appEditors/appGeoEditor.py:5091
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:568 appEditors/AppGeoEditor.py:5091
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2243 appTools/ToolNCC.py:2770
@@ -992,8 +992,8 @@ msgstr "Standard"
msgid "Seed"
msgstr "Seme"
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:5095
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:5095
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2254 appTools/ToolPaint.py:389
@@ -1017,7 +1017,7 @@ msgstr "Combinata"
msgid "Connect"
msgstr "Connetti"
-#: appDatabase.py:1512 appDatabase.py:1629 appEditors/appGeoEditor.py:507
+#: appDatabase.py:1512 appDatabase.py:1629 appEditors/AppGeoEditor.py:507
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:239
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:226
#: appTools/ToolNCC.py:443 appTools/ToolPaint.py:403
@@ -1035,7 +1035,7 @@ msgstr ""
msgid "Contour"
msgstr "Controno"
-#: appDatabase.py:1522 appDatabase.py:1636 appEditors/appGeoEditor.py:517
+#: appDatabase.py:1522 appDatabase.py:1636 appEditors/AppGeoEditor.py:517
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:248
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:234
#: appTools/ToolNCC.py:453 appTools/ToolPaint.py:410
@@ -1046,8 +1046,8 @@ msgstr ""
"Taglia attorno al perimetro del poligono\n"
"per rifinire bordi grezzi."
-#: appDatabase.py:1528 appEditors/appGeoEditor.py:611
-#: appEditors/FlatCAMGrbEditor.py:5304 appGUI/ObjectUI.py:143
+#: appDatabase.py:1528 appEditors/AppGeoEditor.py:611
+#: appEditors/AppGerberEditor.py:5304 appGUI/ObjectUI.py:143
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:255
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:183
@@ -1069,7 +1069,7 @@ msgstr ""
"dalle lavorazioni sul rame.\n"
"Il valore può essere compreso tra 0 e 10 unità FlatCAM."
-#: appDatabase.py:1567 appEditors/appGeoEditor.py:452
+#: appDatabase.py:1567 appEditors/AppGeoEditor.py:452
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:165
#: appTools/ToolPaint.py:330
msgid ""
@@ -1089,7 +1089,7 @@ msgstr ""
"esecuzione su CNC\n"
"causata dai troppo percorsi."
-#: appDatabase.py:1588 appEditors/appGeoEditor.py:472
+#: appDatabase.py:1588 appEditors/AppGeoEditor.py:472
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:185
#: appTools/ToolPaint.py:351
msgid ""
@@ -1236,133 +1236,133 @@ msgstr ""
"active Geometry object after selecting a tool\n"
"in the Tools Database."
-#: appEditors/FlatCAMExcEditor.py:50 appEditors/FlatCAMExcEditor.py:74
-#: appEditors/FlatCAMExcEditor.py:168 appEditors/FlatCAMExcEditor.py:385
-#: appEditors/FlatCAMExcEditor.py:589 appEditors/FlatCAMGrbEditor.py:241
-#: appEditors/FlatCAMGrbEditor.py:248
+#: appEditors/AppExcEditor.py:50 appEditors/AppExcEditor.py:74
+#: appEditors/AppExcEditor.py:168 appEditors/AppExcEditor.py:385
+#: appEditors/AppExcEditor.py:589 appEditors/AppGerberEditor.py:241
+#: appEditors/AppGerberEditor.py:248
msgid "Click to place ..."
msgstr "Clicca per posizionare ..."
-#: appEditors/FlatCAMExcEditor.py:58
+#: appEditors/AppExcEditor.py:58
msgid "To add a drill first select a tool"
msgstr "Per aggiungere un foro prima seleziona un utensile"
-#: appEditors/FlatCAMExcEditor.py:122
+#: appEditors/AppExcEditor.py:122
msgid "Done. Drill added."
msgstr "Fatto. Foro aggiunto."
-#: appEditors/FlatCAMExcEditor.py:176
+#: appEditors/AppExcEditor.py:176
msgid "To add an Drill Array first select a tool in Tool Table"
msgstr "Per aggiungere una matrice di punti prima seleziona un utensile"
-#: appEditors/FlatCAMExcEditor.py:192 appEditors/FlatCAMExcEditor.py:415
-#: appEditors/FlatCAMExcEditor.py:636 appEditors/FlatCAMExcEditor.py:1151
-#: appEditors/FlatCAMExcEditor.py:1178 appEditors/FlatCAMGrbEditor.py:471
-#: appEditors/FlatCAMGrbEditor.py:1944 appEditors/FlatCAMGrbEditor.py:1974
+#: appEditors/AppExcEditor.py:192 appEditors/AppExcEditor.py:415
+#: appEditors/AppExcEditor.py:636 appEditors/AppExcEditor.py:1151
+#: appEditors/AppExcEditor.py:1178 appEditors/AppGerberEditor.py:471
+#: appEditors/AppGerberEditor.py:1944 appEditors/AppGerberEditor.py:1974
msgid "Click on target location ..."
msgstr "Clicca sulla posizione di destinazione ..."
-#: appEditors/FlatCAMExcEditor.py:211
+#: appEditors/AppExcEditor.py:211
msgid "Click on the Drill Circular Array Start position"
msgstr "Clicca sulla posizione di inizio della matrice fori circolare"
-#: appEditors/FlatCAMExcEditor.py:233 appEditors/FlatCAMExcEditor.py:677
-#: appEditors/FlatCAMGrbEditor.py:516
+#: appEditors/AppExcEditor.py:233 appEditors/AppExcEditor.py:677
+#: appEditors/AppGerberEditor.py:516
msgid "The value is not Float. Check for comma instead of dot separator."
msgstr "Il valore non è float. Controlla che il punto non sia una virgola."
-#: appEditors/FlatCAMExcEditor.py:237
+#: appEditors/AppExcEditor.py:237
msgid "The value is mistyped. Check the value"
msgstr "Valore erroneo. Controlla il valore"
-#: appEditors/FlatCAMExcEditor.py:336
+#: appEditors/AppExcEditor.py:336
msgid "Too many drills for the selected spacing angle."
msgstr "Troppi fori per l'angolo selezionato."
-#: appEditors/FlatCAMExcEditor.py:354
+#: appEditors/AppExcEditor.py:354
msgid "Done. Drill Array added."
msgstr "Fatto. Matrice fori aggiunta."
-#: appEditors/FlatCAMExcEditor.py:394
+#: appEditors/AppExcEditor.py:394
msgid "To add a slot first select a tool"
msgstr "Per aggiungere uno slot prima seleziona un utensile"
-#: appEditors/FlatCAMExcEditor.py:454 appEditors/FlatCAMExcEditor.py:461
-#: appEditors/FlatCAMExcEditor.py:742 appEditors/FlatCAMExcEditor.py:749
+#: appEditors/AppExcEditor.py:454 appEditors/AppExcEditor.py:461
+#: appEditors/AppExcEditor.py:742 appEditors/AppExcEditor.py:749
msgid "Value is missing or wrong format. Add it and retry."
msgstr "Valore con formato errato o mancante. Aggiungilo e riprova."
-#: appEditors/FlatCAMExcEditor.py:559
+#: appEditors/AppExcEditor.py:559
msgid "Done. Adding Slot completed."
msgstr "Fatto. Slot aggiunto."
-#: appEditors/FlatCAMExcEditor.py:597
+#: appEditors/AppExcEditor.py:597
msgid "To add an Slot Array first select a tool in Tool Table"
msgstr ""
"Per aggiungere una matrice di slot seleziona prima un utensile dalla tabella"
-#: appEditors/FlatCAMExcEditor.py:655
+#: appEditors/AppExcEditor.py:655
msgid "Click on the Slot Circular Array Start position"
msgstr "Clicca sulla posizione iniziale della matrice circolare di slot"
-#: appEditors/FlatCAMExcEditor.py:680 appEditors/FlatCAMGrbEditor.py:519
+#: appEditors/AppExcEditor.py:680 appEditors/AppGerberEditor.py:519
msgid "The value is mistyped. Check the value."
msgstr "Valore errato. Controllalo."
-#: appEditors/FlatCAMExcEditor.py:859
+#: appEditors/AppExcEditor.py:859
msgid "Too many Slots for the selected spacing angle."
msgstr "Troppi slot per l'angolo selezionato."
-#: appEditors/FlatCAMExcEditor.py:882
+#: appEditors/AppExcEditor.py:882
msgid "Done. Slot Array added."
msgstr "Fatto. Matrice di slot aggiunta."
-#: appEditors/FlatCAMExcEditor.py:904
+#: appEditors/AppExcEditor.py:904
msgid "Click on the Drill(s) to resize ..."
msgstr "Clicca sul foro(i) da ridimensionare ..."
-#: appEditors/FlatCAMExcEditor.py:934
+#: appEditors/AppExcEditor.py:934
msgid "Resize drill(s) failed. Please enter a diameter for resize."
msgstr ""
"Ridimensionamento fallito. Inserisci un diametro per il ridimensionamento."
-#: appEditors/FlatCAMExcEditor.py:1112
+#: appEditors/AppExcEditor.py:1112
msgid "Done. Drill/Slot Resize completed."
msgstr "Fatto. Ridimensionamento Foro/Slot completato."
-#: appEditors/FlatCAMExcEditor.py:1115
+#: appEditors/AppExcEditor.py:1115
msgid "Cancelled. No drills/slots selected for resize ..."
msgstr "Cancellato. Nessun foro/slot selezionato per il ridimensionamento ..."
-#: appEditors/FlatCAMExcEditor.py:1153 appEditors/FlatCAMGrbEditor.py:1946
+#: appEditors/AppExcEditor.py:1153 appEditors/AppGerberEditor.py:1946
msgid "Click on reference location ..."
msgstr "Clicca sulla posizione di riferimento ..."
-#: appEditors/FlatCAMExcEditor.py:1210
+#: appEditors/AppExcEditor.py:1210
msgid "Done. Drill(s) Move completed."
msgstr "Fatto. Foro(i) spostato(i) correttamente."
-#: appEditors/FlatCAMExcEditor.py:1318
+#: appEditors/AppExcEditor.py:1318
msgid "Done. Drill(s) copied."
msgstr "Fatto. Foro(i) copiato(i)."
-#: appEditors/FlatCAMExcEditor.py:1557
+#: appEditors/AppExcEditor.py:1557
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:26
msgid "Excellon Editor"
msgstr "Editor Excellon"
-#: appEditors/FlatCAMExcEditor.py:1564 appEditors/FlatCAMGrbEditor.py:2469
+#: appEditors/AppExcEditor.py:1564 appEditors/AppGerberEditor.py:2469
msgid "Name:"
msgstr "Nome:"
-#: appEditors/FlatCAMExcEditor.py:1570 appGUI/ObjectUI.py:540
+#: appEditors/AppExcEditor.py:1570 appGUI/ObjectUI.py:540
#: appGUI/ObjectUI.py:1362 appTools/ToolIsolation.py:118
#: appTools/ToolNCC.py:120 appTools/ToolPaint.py:114
#: appTools/ToolSolderPaste.py:79
msgid "Tools Table"
msgstr "Tabella utensili"
-#: appEditors/FlatCAMExcEditor.py:1572 appGUI/ObjectUI.py:542
+#: appEditors/AppExcEditor.py:1572 appGUI/ObjectUI.py:542
msgid ""
"Tools in this Excellon object\n"
"when are used for drilling."
@@ -1370,7 +1370,7 @@ msgstr ""
"Utensili in questo oggetto Excellon\n"
"quando usati per la foratura."
-#: appEditors/FlatCAMExcEditor.py:1584 appEditors/FlatCAMExcEditor.py:3041
+#: appEditors/AppExcEditor.py:1584 appEditors/AppExcEditor.py:3041
#: appGUI/ObjectUI.py:560 appObjects/FlatCAMExcellon.py:1265
#: appObjects/FlatCAMExcellon.py:1368 appObjects/FlatCAMExcellon.py:1553
#: appTools/ToolIsolation.py:130 appTools/ToolNCC.py:132
@@ -1380,11 +1380,11 @@ msgstr ""
msgid "Diameter"
msgstr "Diametro"
-#: appEditors/FlatCAMExcEditor.py:1592
+#: appEditors/AppExcEditor.py:1592
msgid "Add/Delete Tool"
msgstr "Aggiungi/Modifica utensile"
-#: appEditors/FlatCAMExcEditor.py:1594
+#: appEditors/AppExcEditor.py:1594
msgid ""
"Add/Delete a tool to the tool list\n"
"for this Excellon object."
@@ -1392,16 +1392,16 @@ msgstr ""
"Aggiungi/Modifica un utensile dalla lista utensili\n"
"per questo oggetto Excellon."
-#: appEditors/FlatCAMExcEditor.py:1606 appGUI/ObjectUI.py:1482
+#: appEditors/AppExcEditor.py:1606 appGUI/ObjectUI.py:1482
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:57
msgid "Diameter for the new tool"
msgstr "Diametro del nuovo utensile"
-#: appEditors/FlatCAMExcEditor.py:1616
+#: appEditors/AppExcEditor.py:1616
msgid "Add Tool"
msgstr "Aggiunge utensile"
-#: appEditors/FlatCAMExcEditor.py:1618
+#: appEditors/AppExcEditor.py:1618
msgid ""
"Add a new tool to the tool list\n"
"with the diameter specified above."
@@ -1409,11 +1409,11 @@ msgstr ""
"Aggiungi un nuovo utensile alla lista\n"
"con il diametro specificato sopra."
-#: appEditors/FlatCAMExcEditor.py:1630
+#: appEditors/AppExcEditor.py:1630
msgid "Delete Tool"
msgstr "Cancella utensile"
-#: appEditors/FlatCAMExcEditor.py:1632
+#: appEditors/AppExcEditor.py:1632
msgid ""
"Delete a tool in the tool list\n"
"by selecting a row in the tool table."
@@ -1421,40 +1421,40 @@ msgstr ""
"Cancella un utensile dalla lista\n"
"selezionandone la riga nella tabella."
-#: appEditors/FlatCAMExcEditor.py:1650 appGUI/MainGUI.py:4392
+#: appEditors/AppExcEditor.py:1650 appGUI/MainGUI.py:4392
msgid "Resize Drill(s)"
msgstr "Ridimensiona foro(i)"
-#: appEditors/FlatCAMExcEditor.py:1652
+#: appEditors/AppExcEditor.py:1652
msgid "Resize a drill or a selection of drills."
msgstr "Ridimensiona un foro o una selezione di fori."
-#: appEditors/FlatCAMExcEditor.py:1659
+#: appEditors/AppExcEditor.py:1659
msgid "Resize Dia"
msgstr "Diametro ridimensionamento"
-#: appEditors/FlatCAMExcEditor.py:1661
+#: appEditors/AppExcEditor.py:1661
msgid "Diameter to resize to."
msgstr "Diametro al quale ridimensionare."
-#: appEditors/FlatCAMExcEditor.py:1672
+#: appEditors/AppExcEditor.py:1672
msgid "Resize"
msgstr "Ridimensiona"
-#: appEditors/FlatCAMExcEditor.py:1674
+#: appEditors/AppExcEditor.py:1674
msgid "Resize drill(s)"
msgstr "Ridimensiona foro(i)"
-#: appEditors/FlatCAMExcEditor.py:1699 appGUI/MainGUI.py:1514
+#: appEditors/AppExcEditor.py:1699 appGUI/MainGUI.py:1514
#: appGUI/MainGUI.py:4391
msgid "Add Drill Array"
msgstr "Aggiungi matrice di fori"
-#: appEditors/FlatCAMExcEditor.py:1701
+#: appEditors/AppExcEditor.py:1701
msgid "Add an array of drills (linear or circular array)"
msgstr "Aggiunge una matrice di fori (lineare o circolare)"
-#: appEditors/FlatCAMExcEditor.py:1707
+#: appEditors/AppExcEditor.py:1707
msgid ""
"Select the type of drills array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -1462,13 +1462,13 @@ msgstr ""
"Seleziona il tipo di matrice di fori da creare.\n"
"Può essere lineare X(Y) o circolare"
-#: appEditors/FlatCAMExcEditor.py:1710 appEditors/FlatCAMExcEditor.py:1924
-#: appEditors/FlatCAMGrbEditor.py:2782
+#: appEditors/AppExcEditor.py:1710 appEditors/AppExcEditor.py:1924
+#: appEditors/AppGerberEditor.py:2782
msgid "Linear"
msgstr "Lineare"
-#: appEditors/FlatCAMExcEditor.py:1711 appEditors/FlatCAMExcEditor.py:1925
-#: appEditors/FlatCAMGrbEditor.py:2783
+#: appEditors/AppExcEditor.py:1711 appEditors/AppExcEditor.py:1925
+#: appEditors/AppGerberEditor.py:2783
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:52
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:149
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:107
@@ -1484,26 +1484,26 @@ msgstr "Lineare"
msgid "Circular"
msgstr "Circolare"
-#: appEditors/FlatCAMExcEditor.py:1719
+#: appEditors/AppExcEditor.py:1719
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:68
msgid "Nr of drills"
msgstr "Numero di fori"
-#: appEditors/FlatCAMExcEditor.py:1720
+#: appEditors/AppExcEditor.py:1720
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:70
msgid "Specify how many drills to be in the array."
msgstr "Specifica quanti fori sono presenti nella matrice."
-#: appEditors/FlatCAMExcEditor.py:1738 appEditors/FlatCAMExcEditor.py:1788
-#: appEditors/FlatCAMExcEditor.py:1860 appEditors/FlatCAMExcEditor.py:1953
-#: appEditors/FlatCAMExcEditor.py:2004 appEditors/FlatCAMGrbEditor.py:1580
-#: appEditors/FlatCAMGrbEditor.py:2811 appEditors/FlatCAMGrbEditor.py:2860
+#: appEditors/AppExcEditor.py:1738 appEditors/AppExcEditor.py:1788
+#: appEditors/AppExcEditor.py:1860 appEditors/AppExcEditor.py:1953
+#: appEditors/AppExcEditor.py:2004 appEditors/AppGerberEditor.py:1580
+#: appEditors/AppGerberEditor.py:2811 appEditors/AppGerberEditor.py:2860
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:178
msgid "Direction"
msgstr "Direzione"
-#: appEditors/FlatCAMExcEditor.py:1740 appEditors/FlatCAMExcEditor.py:1955
-#: appEditors/FlatCAMGrbEditor.py:2813
+#: appEditors/AppExcEditor.py:1740 appEditors/AppExcEditor.py:1955
+#: appEditors/AppGerberEditor.py:2813
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:86
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:234
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:123
@@ -1518,8 +1518,8 @@ msgstr ""
"- 'Y' - asse verticale o\n"
"- 'Angolo' - angolo per l'inclinazione della matrice"
-#: appEditors/FlatCAMExcEditor.py:1747 appEditors/FlatCAMExcEditor.py:1869
-#: appEditors/FlatCAMExcEditor.py:1962 appEditors/FlatCAMGrbEditor.py:2820
+#: appEditors/AppExcEditor.py:1747 appEditors/AppExcEditor.py:1869
+#: appEditors/AppExcEditor.py:1962 appEditors/AppGerberEditor.py:2820
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:240
@@ -1529,8 +1529,8 @@ msgstr ""
msgid "X"
msgstr "X"
-#: appEditors/FlatCAMExcEditor.py:1748 appEditors/FlatCAMExcEditor.py:1870
-#: appEditors/FlatCAMExcEditor.py:1963 appEditors/FlatCAMGrbEditor.py:2821
+#: appEditors/AppExcEditor.py:1748 appEditors/AppExcEditor.py:1870
+#: appEditors/AppExcEditor.py:1963 appEditors/AppGerberEditor.py:2821
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:241
@@ -1540,13 +1540,13 @@ msgstr "X"
msgid "Y"
msgstr "Y"
-#: appEditors/FlatCAMExcEditor.py:1749 appEditors/FlatCAMExcEditor.py:1766
-#: appEditors/FlatCAMExcEditor.py:1800 appEditors/FlatCAMExcEditor.py:1871
-#: appEditors/FlatCAMExcEditor.py:1875 appEditors/FlatCAMExcEditor.py:1964
-#: appEditors/FlatCAMExcEditor.py:1982 appEditors/FlatCAMExcEditor.py:2016
-#: appEditors/appGeoEditor.py:683 appEditors/FlatCAMGrbEditor.py:2822
-#: appEditors/FlatCAMGrbEditor.py:2839 appEditors/FlatCAMGrbEditor.py:2875
-#: appEditors/FlatCAMGrbEditor.py:5376
+#: appEditors/AppExcEditor.py:1749 appEditors/AppExcEditor.py:1766
+#: appEditors/AppExcEditor.py:1800 appEditors/AppExcEditor.py:1871
+#: appEditors/AppExcEditor.py:1875 appEditors/AppExcEditor.py:1964
+#: appEditors/AppExcEditor.py:1982 appEditors/AppExcEditor.py:2016
+#: appEditors/AppGeoEditor.py:683 appEditors/AppGerberEditor.py:2822
+#: appEditors/AppGerberEditor.py:2839 appEditors/AppGerberEditor.py:2875
+#: appEditors/AppGerberEditor.py:5376
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:94
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:113
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:189
@@ -1561,23 +1561,23 @@ msgstr "Y"
msgid "Angle"
msgstr "Angolo"
-#: appEditors/FlatCAMExcEditor.py:1753 appEditors/FlatCAMExcEditor.py:1968
-#: appEditors/FlatCAMGrbEditor.py:2826
+#: appEditors/AppExcEditor.py:1753 appEditors/AppExcEditor.py:1968
+#: appEditors/AppGerberEditor.py:2826
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:100
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:248
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:137
msgid "Pitch"
msgstr "Passo"
-#: appEditors/FlatCAMExcEditor.py:1755 appEditors/FlatCAMExcEditor.py:1970
-#: appEditors/FlatCAMGrbEditor.py:2828
+#: appEditors/AppExcEditor.py:1755 appEditors/AppExcEditor.py:1970
+#: appEditors/AppGerberEditor.py:2828
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:102
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:250
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:139
msgid "Pitch = Distance between elements of the array."
msgstr "Passo = distanza tra due elementi della matrice."
-#: appEditors/FlatCAMExcEditor.py:1768 appEditors/FlatCAMExcEditor.py:1984
+#: appEditors/AppExcEditor.py:1768 appEditors/AppExcEditor.py:1984
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1589,8 +1589,8 @@ msgstr ""
"Valore minimo: -360 gradi.\n"
"Valore massimo: 360.00 gradi."
-#: appEditors/FlatCAMExcEditor.py:1789 appEditors/FlatCAMExcEditor.py:2005
-#: appEditors/FlatCAMGrbEditor.py:2862
+#: appEditors/AppExcEditor.py:1789 appEditors/AppExcEditor.py:2005
+#: appEditors/AppGerberEditor.py:2862
msgid ""
"Direction for circular array.Can be CW = clockwise or CCW = counter "
"clockwise."
@@ -1598,8 +1598,8 @@ msgstr ""
"Direzione matrice circolare. Può essere CW = senso orario o CCW = senso "
"antiorario."
-#: appEditors/FlatCAMExcEditor.py:1796 appEditors/FlatCAMExcEditor.py:2012
-#: appEditors/FlatCAMGrbEditor.py:2870
+#: appEditors/AppExcEditor.py:1796 appEditors/AppExcEditor.py:2012
+#: appEditors/AppGerberEditor.py:2870
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:129
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:136
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:286
@@ -1608,8 +1608,8 @@ msgstr ""
msgid "CW"
msgstr "CW"
-#: appEditors/FlatCAMExcEditor.py:1797 appEditors/FlatCAMExcEditor.py:2013
-#: appEditors/FlatCAMGrbEditor.py:2871
+#: appEditors/AppExcEditor.py:1797 appEditors/AppExcEditor.py:2013
+#: appEditors/AppGerberEditor.py:2871
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:130
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:137
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:287
@@ -1618,8 +1618,8 @@ msgstr "CW"
msgid "CCW"
msgstr "CCW"
-#: appEditors/FlatCAMExcEditor.py:1801 appEditors/FlatCAMExcEditor.py:2017
-#: appEditors/FlatCAMGrbEditor.py:2877
+#: appEditors/AppExcEditor.py:1801 appEditors/AppExcEditor.py:2017
+#: appEditors/AppGerberEditor.py:2877
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:115
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:145
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:265
@@ -1629,11 +1629,11 @@ msgstr "CCW"
msgid "Angle at which each element in circular array is placed."
msgstr "Angolo al quale è posizionato ogni elementodella matrice circolare."
-#: appEditors/FlatCAMExcEditor.py:1835
+#: appEditors/AppExcEditor.py:1835
msgid "Slot Parameters"
msgstr "Parametri Slot"
-#: appEditors/FlatCAMExcEditor.py:1837
+#: appEditors/AppExcEditor.py:1837
msgid ""
"Parameters for adding a slot (hole with oval shape)\n"
"either single or as an part of an array."
@@ -1641,19 +1641,19 @@ msgstr ""
"Parametri per aggiungere uno slot (foro con bordi ovali)\n"
"sia singolo sia come parte di una matrice."
-#: appEditors/FlatCAMExcEditor.py:1846
+#: appEditors/AppExcEditor.py:1846
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:162
#: appGUI/preferences/tools/ToolsCornersPrefGroupUI.py:56
#: appTools/ToolCorners.py:136 appTools/ToolProperties.py:559
msgid "Length"
msgstr "Lunghezza"
-#: appEditors/FlatCAMExcEditor.py:1848
+#: appEditors/AppExcEditor.py:1848
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:164
msgid "Length = The length of the slot."
msgstr "Lunghezza = lunghezza dello slot."
-#: appEditors/FlatCAMExcEditor.py:1862
+#: appEditors/AppExcEditor.py:1862
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:180
msgid ""
"Direction on which the slot is oriented:\n"
@@ -1666,7 +1666,7 @@ msgstr ""
"- 'Y' - asse verticale o \n"
"- 'Angolo' - ancolo per l'inclinazione dello slot"
-#: appEditors/FlatCAMExcEditor.py:1877
+#: appEditors/AppExcEditor.py:1877
msgid ""
"Angle at which the slot is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1678,15 +1678,15 @@ msgstr ""
"Valore minimo: -360 gradi.\n"
"Valore massimo: 360.00 gradi."
-#: appEditors/FlatCAMExcEditor.py:1910
+#: appEditors/AppExcEditor.py:1910
msgid "Slot Array Parameters"
msgstr "Parametri matrice slot"
-#: appEditors/FlatCAMExcEditor.py:1912
+#: appEditors/AppExcEditor.py:1912
msgid "Parameters for the array of slots (linear or circular array)"
msgstr "Parametri per la matrice di slot (matrice lineare o circolare)"
-#: appEditors/FlatCAMExcEditor.py:1921
+#: appEditors/AppExcEditor.py:1921
msgid ""
"Select the type of slot array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -1694,25 +1694,25 @@ msgstr ""
"Seleziona il tipo di matrice di slot da creare.\n"
"Può essere lineare (X,Y) o circolare"
-#: appEditors/FlatCAMExcEditor.py:1933
+#: appEditors/AppExcEditor.py:1933
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:219
msgid "Nr of slots"
msgstr "Numero di Slot"
-#: appEditors/FlatCAMExcEditor.py:1934
+#: appEditors/AppExcEditor.py:1934
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:221
msgid "Specify how many slots to be in the array."
msgstr "Specifica il numero di slot che comporranno la matrice."
-#: appEditors/FlatCAMExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
+#: appEditors/AppExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
msgid "Total Drills"
msgstr "Fori totali"
-#: appEditors/FlatCAMExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
+#: appEditors/AppExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
msgid "Total Slots"
msgstr "Slot totali"
-#: appEditors/FlatCAMExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
+#: appEditors/AppExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
#: appObjects/FlatCAMGeometry.py:1099 appObjects/FlatCAMGeometry.py:1841
#: appObjects/FlatCAMGeometry.py:2491 appTools/ToolIsolation.py:1526
#: appTools/ToolNCC.py:1516 appTools/ToolPaint.py:1268
@@ -1721,7 +1721,7 @@ msgstr "Slot totali"
msgid "Wrong value format entered, use a number."
msgstr "Formato valore errato, inserire un numero."
-#: appEditors/FlatCAMExcEditor.py:2570
+#: appEditors/AppExcEditor.py:2570
msgid ""
"Tool already in the original or actual tool list.\n"
"Save and reedit Excellon if you need to add this tool. "
@@ -1729,72 +1729,72 @@ msgstr ""
"Utensile già presente nella lista.\n"
"Salva e riedita l'Excellon se vuoi aggiungere questo utensile. "
-#: appEditors/FlatCAMExcEditor.py:2579 appGUI/MainGUI.py:3364
+#: appEditors/AppExcEditor.py:2579 appGUI/MainGUI.py:3364
msgid "Added new tool with dia"
msgstr "Aggiunto nuovo utensile con diametro"
-#: appEditors/FlatCAMExcEditor.py:2612
+#: appEditors/AppExcEditor.py:2612
msgid "Select a tool in Tool Table"
msgstr "Seleziona un utensile dalla tabella"
-#: appEditors/FlatCAMExcEditor.py:2642
+#: appEditors/AppExcEditor.py:2642
msgid "Deleted tool with diameter"
msgstr "Eliminato utensile con diametro"
-#: appEditors/FlatCAMExcEditor.py:2790
+#: appEditors/AppExcEditor.py:2790
msgid "Done. Tool edit completed."
msgstr "Fatto. Modifica utensile completata."
-#: appEditors/FlatCAMExcEditor.py:3327
+#: appEditors/AppExcEditor.py:3327
msgid "There are no Tools definitions in the file. Aborting Excellon creation."
msgstr ""
"Non ci sono definizioni di utensili nel file. Annullo creazione Excellon."
-#: appEditors/FlatCAMExcEditor.py:3331
+#: appEditors/AppExcEditor.py:3331
msgid "An internal error has ocurred. See Shell.\n"
msgstr "Errore interno. Vedi shell.\n"
-#: appEditors/FlatCAMExcEditor.py:3336
+#: appEditors/AppExcEditor.py:3336
msgid "Creating Excellon."
msgstr "Creazione Excellon."
-#: appEditors/FlatCAMExcEditor.py:3350
+#: appEditors/AppExcEditor.py:3350
msgid "Excellon editing finished."
msgstr "Modifica Excellon terminata."
-#: appEditors/FlatCAMExcEditor.py:3367
+#: appEditors/AppExcEditor.py:3367
msgid "Cancelled. There is no Tool/Drill selected"
msgstr "Errore: Nessun utensile/Foro selezionato"
-#: appEditors/FlatCAMExcEditor.py:3601 appEditors/FlatCAMExcEditor.py:3609
-#: appEditors/appGeoEditor.py:4286 appEditors/appGeoEditor.py:4300
-#: appEditors/FlatCAMGrbEditor.py:1085 appEditors/FlatCAMGrbEditor.py:1312
-#: appEditors/FlatCAMGrbEditor.py:1497 appEditors/FlatCAMGrbEditor.py:1766
-#: appEditors/FlatCAMGrbEditor.py:4608 appEditors/FlatCAMGrbEditor.py:4625
+#: appEditors/AppExcEditor.py:3601 appEditors/AppExcEditor.py:3609
+#: appEditors/AppGeoEditor.py:4286 appEditors/AppGeoEditor.py:4300
+#: appEditors/AppGerberEditor.py:1085 appEditors/AppGerberEditor.py:1312
+#: appEditors/AppGerberEditor.py:1497 appEditors/AppGerberEditor.py:1766
+#: appEditors/AppGerberEditor.py:4608 appEditors/AppGerberEditor.py:4625
#: appGUI/MainGUI.py:2711 appGUI/MainGUI.py:2723
#: appTools/ToolAlignObjects.py:393 appTools/ToolAlignObjects.py:415
#: app_Main.py:4800 app_Main.py:4954
msgid "Done."
msgstr "Fatto."
-#: appEditors/FlatCAMExcEditor.py:3984
+#: appEditors/AppExcEditor.py:3984
msgid "Done. Drill(s) deleted."
msgstr "Fatto. Foro(i) cancellato(i)."
-#: appEditors/FlatCAMExcEditor.py:4057 appEditors/FlatCAMExcEditor.py:4067
-#: appEditors/FlatCAMGrbEditor.py:5056
+#: appEditors/AppExcEditor.py:4057 appEditors/AppExcEditor.py:4067
+#: appEditors/AppGerberEditor.py:5056
msgid "Click on the circular array Center position"
msgstr "Clicca sulla posizione centrale della matrice circolare"
-#: appEditors/appGeoEditor.py:84
+#: appEditors/AppGeoEditor.py:84
msgid "Buffer distance:"
msgstr "Riempimento distanza:"
-#: appEditors/appGeoEditor.py:85
+#: appEditors/AppGeoEditor.py:85
msgid "Buffer corner:"
msgstr "Riempimento angolo:"
-#: appEditors/appGeoEditor.py:87
+#: appEditors/AppGeoEditor.py:87
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded for exterior buffer.\n"
@@ -1807,11 +1807,11 @@ msgstr ""
"- 'Squadrato': l'angolo fiene raggiunto con un angolo acuto.\n"
"- 'Smussato': l'angolo è una linea che connette direttamente le varie sezioni"
-#: appEditors/appGeoEditor.py:93 appEditors/FlatCAMGrbEditor.py:2638
+#: appEditors/AppGeoEditor.py:93 appEditors/AppGerberEditor.py:2638
msgid "Round"
msgstr "Arrotondato"
-#: appEditors/appGeoEditor.py:94 appEditors/FlatCAMGrbEditor.py:2639
+#: appEditors/AppGeoEditor.py:94 appEditors/AppGerberEditor.py:2639
#: appGUI/ObjectUI.py:1149 appGUI/ObjectUI.py:2004
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:225
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:68
@@ -1829,50 +1829,50 @@ msgstr "Arrotondato"
msgid "Square"
msgstr "Squadrato"
-#: appEditors/appGeoEditor.py:95 appEditors/FlatCAMGrbEditor.py:2640
+#: appEditors/AppGeoEditor.py:95 appEditors/AppGerberEditor.py:2640
msgid "Beveled"
msgstr "Smussato"
-#: appEditors/appGeoEditor.py:102
+#: appEditors/AppGeoEditor.py:102
msgid "Buffer Interior"
msgstr "Buffer Interiore"
-#: appEditors/appGeoEditor.py:104
+#: appEditors/AppGeoEditor.py:104
msgid "Buffer Exterior"
msgstr "Buffer Esteriore"
-#: appEditors/appGeoEditor.py:110
+#: appEditors/AppGeoEditor.py:110
msgid "Full Buffer"
msgstr "Buffer completo"
-#: appEditors/appGeoEditor.py:131 appEditors/appGeoEditor.py:2959
+#: appEditors/AppGeoEditor.py:131 appEditors/AppGeoEditor.py:2959
#: appGUI/MainGUI.py:4301
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:191
msgid "Buffer Tool"
msgstr "Utensile buffer"
-#: appEditors/appGeoEditor.py:143 appEditors/appGeoEditor.py:160
-#: appEditors/appGeoEditor.py:177 appEditors/appGeoEditor.py:2978
-#: appEditors/appGeoEditor.py:3006 appEditors/appGeoEditor.py:3034
-#: appEditors/FlatCAMGrbEditor.py:5109
+#: appEditors/AppGeoEditor.py:143 appEditors/AppGeoEditor.py:160
+#: appEditors/AppGeoEditor.py:177 appEditors/AppGeoEditor.py:2978
+#: appEditors/AppGeoEditor.py:3006 appEditors/AppGeoEditor.py:3034
+#: appEditors/AppGerberEditor.py:5109
msgid "Buffer distance value is missing or wrong format. Add it and retry."
msgstr ""
"Valore per la distanza buffer mancante o del formato errato. Aggiungilo e "
"riprova."
-#: appEditors/appGeoEditor.py:241
+#: appEditors/AppGeoEditor.py:241
msgid "Font"
msgstr "Font"
-#: appEditors/appGeoEditor.py:322 appGUI/MainGUI.py:1452
+#: appEditors/AppGeoEditor.py:322 appGUI/MainGUI.py:1452
msgid "Text"
msgstr "Testo"
-#: appEditors/appGeoEditor.py:348
+#: appEditors/AppGeoEditor.py:348
msgid "Text Tool"
msgstr "Utensile testo"
-#: appEditors/appGeoEditor.py:404 appGUI/MainGUI.py:502
+#: appEditors/AppGeoEditor.py:404 appGUI/MainGUI.py:502
#: appGUI/MainGUI.py:1199 appGUI/ObjectUI.py:597 appGUI/ObjectUI.py:1564
#: appObjects/FlatCAMExcellon.py:852 appObjects/FlatCAMExcellon.py:1242
#: appObjects/FlatCAMGeometry.py:825 appTools/ToolIsolation.py:313
@@ -1881,15 +1881,15 @@ msgstr "Utensile testo"
msgid "Tool"
msgstr "Strumenti"
-#: appEditors/appGeoEditor.py:438
+#: appEditors/AppGeoEditor.py:438
msgid "Tool dia"
msgstr "Diametro utensile"
-#: appEditors/appGeoEditor.py:440
+#: appEditors/AppGeoEditor.py:440
msgid "Diameter of the tool to be used in the operation."
msgstr "Diametro dell'utensile da usare per questa operazione."
-#: appEditors/appGeoEditor.py:486
+#: appEditors/AppGeoEditor.py:486
msgid ""
"Algorithm to paint the polygons:\n"
"- Standard: Fixed step inwards.\n"
@@ -1901,58 +1901,58 @@ msgstr ""
"- A base di semi: verso l'esterno dal seme.\n"
"- Basato su linee: linee parallele."
-#: appEditors/appGeoEditor.py:505
+#: appEditors/AppGeoEditor.py:505
msgid "Connect:"
msgstr "Connetti:"
-#: appEditors/appGeoEditor.py:515
+#: appEditors/AppGeoEditor.py:515
msgid "Contour:"
msgstr "Contorno:"
-#: appEditors/appGeoEditor.py:528 appGUI/MainGUI.py:1456
+#: appEditors/AppGeoEditor.py:528 appGUI/MainGUI.py:1456
msgid "Paint"
msgstr "Disegno"
-#: appEditors/appGeoEditor.py:546 appGUI/MainGUI.py:912
+#: appEditors/AppGeoEditor.py:546 appGUI/MainGUI.py:912
#: appGUI/MainGUI.py:1944 appGUI/ObjectUI.py:2069 appTools/ToolPaint.py:42
#: appTools/ToolPaint.py:737
msgid "Paint Tool"
msgstr "Strumento disegno"
-#: appEditors/appGeoEditor.py:582 appEditors/appGeoEditor.py:1071
-#: appEditors/appGeoEditor.py:2966 appEditors/appGeoEditor.py:2994
-#: appEditors/appGeoEditor.py:3022 appEditors/appGeoEditor.py:4439
-#: appEditors/FlatCAMGrbEditor.py:5764
+#: appEditors/AppGeoEditor.py:582 appEditors/AppGeoEditor.py:1071
+#: appEditors/AppGeoEditor.py:2966 appEditors/AppGeoEditor.py:2994
+#: appEditors/AppGeoEditor.py:3022 appEditors/AppGeoEditor.py:4439
+#: appEditors/AppGerberEditor.py:5764
msgid "Cancelled. No shape selected."
msgstr "Cancellato. Nessuna forma selezionata."
-#: appEditors/appGeoEditor.py:595 appEditors/appGeoEditor.py:2984
-#: appEditors/appGeoEditor.py:3012 appEditors/appGeoEditor.py:3040
+#: appEditors/AppGeoEditor.py:595 appEditors/AppGeoEditor.py:2984
+#: appEditors/AppGeoEditor.py:3012 appEditors/AppGeoEditor.py:3040
#: appGUI/preferences/geometry/GeometryGenPrefGroupUI.py:69
#: appTools/ToolProperties.py:117 appTools/ToolProperties.py:162
msgid "Tools"
msgstr "Strumento"
-#: appEditors/appGeoEditor.py:606 appEditors/appGeoEditor.py:1035
-#: appEditors/FlatCAMGrbEditor.py:5299 appEditors/FlatCAMGrbEditor.py:5728
+#: appEditors/AppGeoEditor.py:606 appEditors/AppGeoEditor.py:1035
+#: appEditors/AppGerberEditor.py:5299 appEditors/AppGerberEditor.py:5728
#: appGUI/MainGUI.py:935 appGUI/MainGUI.py:1967 appTools/ToolTransform.py:494
msgid "Transform Tool"
msgstr "Strumento trasformazione"
-#: appEditors/appGeoEditor.py:607 appEditors/appGeoEditor.py:699
-#: appEditors/FlatCAMGrbEditor.py:5300 appEditors/FlatCAMGrbEditor.py:5392
+#: appEditors/AppGeoEditor.py:607 appEditors/AppGeoEditor.py:699
+#: appEditors/AppGerberEditor.py:5300 appEditors/AppGerberEditor.py:5392
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:88
#: appTools/ToolTransform.py:27 appTools/ToolTransform.py:146
msgid "Rotate"
msgstr "Ruota"
-#: appEditors/appGeoEditor.py:608 appEditors/FlatCAMGrbEditor.py:5301
+#: appEditors/AppGeoEditor.py:608 appEditors/AppGerberEditor.py:5301
#: appTools/ToolTransform.py:28
msgid "Skew/Shear"
msgstr "Inclina/Taglia"
-#: appEditors/appGeoEditor.py:609 appEditors/FlatCAMGrbEditor.py:2687
-#: appEditors/FlatCAMGrbEditor.py:5302 appGUI/MainGUI.py:1057
+#: appEditors/AppGeoEditor.py:609 appEditors/AppGerberEditor.py:2687
+#: appEditors/AppGerberEditor.py:5302 appGUI/MainGUI.py:1057
#: appGUI/MainGUI.py:1499 appGUI/MainGUI.py:2089 appGUI/MainGUI.py:4513
#: appGUI/ObjectUI.py:125
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:147
@@ -1960,13 +1960,13 @@ msgstr "Inclina/Taglia"
msgid "Scale"
msgstr "Scala"
-#: appEditors/appGeoEditor.py:610 appEditors/FlatCAMGrbEditor.py:5303
+#: appEditors/AppGeoEditor.py:610 appEditors/AppGerberEditor.py:5303
#: appTools/ToolTransform.py:30
msgid "Mirror (Flip)"
msgstr "Specchia"
-#: appEditors/appGeoEditor.py:612 appEditors/FlatCAMGrbEditor.py:2647
-#: appEditors/FlatCAMGrbEditor.py:5305 appGUI/MainGUI.py:1055
+#: appEditors/AppGeoEditor.py:612 appEditors/AppGerberEditor.py:2647
+#: appEditors/AppGerberEditor.py:5305 appGUI/MainGUI.py:1055
#: appGUI/MainGUI.py:1454 appGUI/MainGUI.py:1497 appGUI/MainGUI.py:2087
#: appGUI/MainGUI.py:4511
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:212
@@ -1974,7 +1974,7 @@ msgstr "Specchia"
msgid "Buffer"
msgstr "Buffer"
-#: appEditors/appGeoEditor.py:643 appEditors/FlatCAMGrbEditor.py:5336
+#: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5336
#: appGUI/GUIElements.py:2701
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44
@@ -1983,7 +1983,7 @@ msgstr "Buffer"
msgid "Reference"
msgstr "Riferimento"
-#: appEditors/appGeoEditor.py:645 appEditors/FlatCAMGrbEditor.py:5338
+#: appEditors/AppGeoEditor.py:645 appEditors/AppGerberEditor.py:5338
msgid ""
"The reference point for Rotate, Skew, Scale, Mirror.\n"
"Can be:\n"
@@ -2000,15 +2000,15 @@ msgstr ""
"- Punto -> un punto custom definito dalle coordinate X,Y\n"
"- Selezione Min -> il punto (minx, miny) del contenitore della selezione"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appTools/ToolCalibration.py:770 appTools/ToolCalibration.py:771
#: appTools/ToolTransform.py:70
msgid "Origin"
msgstr "Origine"
-#: appEditors/appGeoEditor.py:653 appEditors/appGeoEditor.py:1044
-#: appEditors/FlatCAMGrbEditor.py:5346 appEditors/FlatCAMGrbEditor.py:5737
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGeoEditor.py:1044
+#: appEditors/AppGerberEditor.py:5346 appEditors/AppGerberEditor.py:5737
#: appGUI/preferences/general/GeneralGUIPrefGroupUI.py:250
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:275
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:311
@@ -2019,7 +2019,7 @@ msgstr "Origine"
msgid "Selection"
msgstr "Selezione"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/Tools2sidedPrefGroupUI.py:80
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:60
@@ -2027,12 +2027,12 @@ msgstr "Selezione"
msgid "Point"
msgstr "Punto"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
msgid "Minimum"
msgstr "Minimo"
-#: appEditors/appGeoEditor.py:659 appEditors/appGeoEditor.py:955
-#: appEditors/FlatCAMGrbEditor.py:5352 appEditors/FlatCAMGrbEditor.py:5648
+#: appEditors/AppGeoEditor.py:659 appEditors/AppGeoEditor.py:955
+#: appEditors/AppGerberEditor.py:5352 appEditors/AppGerberEditor.py:5648
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:131
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:133
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:243
@@ -2042,14 +2042,14 @@ msgstr "Minimo"
msgid "Value"
msgstr "Valore"
-#: appEditors/appGeoEditor.py:661 appEditors/FlatCAMGrbEditor.py:5354
+#: appEditors/AppGeoEditor.py:661 appEditors/AppGerberEditor.py:5354
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:62
#: appTools/ToolTransform.py:78
msgid "A point of reference in format X,Y."
msgstr "Un punto di riferimento nel formato X,Y."
-#: appEditors/appGeoEditor.py:668 appEditors/FlatCAMGrbEditor.py:2590
-#: appEditors/FlatCAMGrbEditor.py:5361 appGUI/ObjectUI.py:1494
+#: appEditors/AppGeoEditor.py:668 appEditors/AppGerberEditor.py:2590
+#: appEditors/AppGerberEditor.py:5361 appGUI/ObjectUI.py:1494
#: appTools/ToolDblSided.py:192 appTools/ToolDblSided.py:425
#: appTools/ToolIsolation.py:276 appTools/ToolIsolation.py:631
#: appTools/ToolNCC.py:294 appTools/ToolNCC.py:631 appTools/ToolPaint.py:276
@@ -2059,12 +2059,12 @@ msgstr "Un punto di riferimento nel formato X,Y."
msgid "Add"
msgstr "Aggiungi"
-#: appEditors/appGeoEditor.py:670 appEditors/FlatCAMGrbEditor.py:5363
+#: appEditors/AppGeoEditor.py:670 appEditors/AppGerberEditor.py:5363
#: appTools/ToolTransform.py:87
msgid "Add point coordinates from clipboard."
msgstr "Aggiungi coordinate del punto dagli appunti."
-#: appEditors/appGeoEditor.py:685 appEditors/FlatCAMGrbEditor.py:5378
+#: appEditors/AppGeoEditor.py:685 appEditors/AppGerberEditor.py:5378
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:98
#: appTools/ToolTransform.py:132
msgid ""
@@ -2078,7 +2078,7 @@ msgstr ""
"Numeri positivi per il senso orario.\n"
"Numeri negativi per il senso antiorario."
-#: appEditors/appGeoEditor.py:701 appEditors/FlatCAMGrbEditor.py:5394
+#: appEditors/AppGeoEditor.py:701 appEditors/AppGerberEditor.py:5394
#: appTools/ToolTransform.py:148
msgid ""
"Rotate the selected object(s).\n"
@@ -2089,31 +2089,31 @@ msgstr ""
"Il punto di riferimento è il centro del\n"
"rettangolo di selezione per tutti gli oggetti selezionati."
-#: appEditors/appGeoEditor.py:721 appEditors/appGeoEditor.py:783
-#: appEditors/FlatCAMGrbEditor.py:5414 appEditors/FlatCAMGrbEditor.py:5476
+#: appEditors/AppGeoEditor.py:721 appEditors/AppGeoEditor.py:783
+#: appEditors/AppGerberEditor.py:5414 appEditors/AppGerberEditor.py:5476
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:112
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:151
#: appTools/ToolTransform.py:168 appTools/ToolTransform.py:230
msgid "Link"
msgstr "Collegamento"
-#: appEditors/appGeoEditor.py:723 appEditors/appGeoEditor.py:785
-#: appEditors/FlatCAMGrbEditor.py:5416 appEditors/FlatCAMGrbEditor.py:5478
+#: appEditors/AppGeoEditor.py:723 appEditors/AppGeoEditor.py:785
+#: appEditors/AppGerberEditor.py:5416 appEditors/AppGerberEditor.py:5478
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:114
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:153
#: appTools/ToolTransform.py:170 appTools/ToolTransform.py:232
msgid "Link the Y entry to X entry and copy its content."
msgstr "Collega il valore di Y a quello di X e copia il contenuto."
-#: appEditors/appGeoEditor.py:728 appEditors/FlatCAMGrbEditor.py:5421
+#: appEditors/AppGeoEditor.py:728 appEditors/AppGerberEditor.py:5421
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:151
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:124
#: appTools/ToolFilm.py:184 appTools/ToolTransform.py:175
msgid "X angle"
msgstr "Angolo X"
-#: appEditors/appGeoEditor.py:730 appEditors/appGeoEditor.py:751
-#: appEditors/FlatCAMGrbEditor.py:5423 appEditors/FlatCAMGrbEditor.py:5444
+#: appEditors/AppGeoEditor.py:730 appEditors/AppGeoEditor.py:751
+#: appEditors/AppGerberEditor.py:5423 appEditors/AppGerberEditor.py:5444
#: appTools/ToolTransform.py:177 appTools/ToolTransform.py:198
msgid ""
"Angle for Skew action, in degrees.\n"
@@ -2122,13 +2122,13 @@ msgstr ""
"Angolo per l'azione di inclinazione, in gradi.\n"
"Numero float compreso tra -360 e 360."
-#: appEditors/appGeoEditor.py:738 appEditors/FlatCAMGrbEditor.py:5431
+#: appEditors/AppGeoEditor.py:738 appEditors/AppGerberEditor.py:5431
#: appTools/ToolTransform.py:185
msgid "Skew X"
msgstr "Inclinazione X"
-#: appEditors/appGeoEditor.py:740 appEditors/appGeoEditor.py:761
-#: appEditors/FlatCAMGrbEditor.py:5433 appEditors/FlatCAMGrbEditor.py:5454
+#: appEditors/AppGeoEditor.py:740 appEditors/AppGeoEditor.py:761
+#: appEditors/AppGerberEditor.py:5433 appEditors/AppGerberEditor.py:5454
#: appTools/ToolTransform.py:187 appTools/ToolTransform.py:208
msgid ""
"Skew/shear the selected object(s).\n"
@@ -2139,38 +2139,38 @@ msgstr ""
"Il punto di riferimento è il centro del\n"
"rettangolo di selezione per tutti gli oggetti selezionati."
-#: appEditors/appGeoEditor.py:749 appEditors/FlatCAMGrbEditor.py:5442
+#: appEditors/AppGeoEditor.py:749 appEditors/AppGerberEditor.py:5442
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:160
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:138
#: appTools/ToolFilm.py:193 appTools/ToolTransform.py:196
msgid "Y angle"
msgstr "Angolo Y"
-#: appEditors/appGeoEditor.py:759 appEditors/FlatCAMGrbEditor.py:5452
+#: appEditors/AppGeoEditor.py:759 appEditors/AppGerberEditor.py:5452
#: appTools/ToolTransform.py:206
msgid "Skew Y"
msgstr "Inclina Y"
-#: appEditors/appGeoEditor.py:790 appEditors/FlatCAMGrbEditor.py:5483
+#: appEditors/AppGeoEditor.py:790 appEditors/AppGerberEditor.py:5483
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:120
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:162
#: appTools/ToolFilm.py:145 appTools/ToolTransform.py:237
msgid "X factor"
msgstr "Fattore X"
-#: appEditors/appGeoEditor.py:792 appEditors/FlatCAMGrbEditor.py:5485
+#: appEditors/AppGeoEditor.py:792 appEditors/AppGerberEditor.py:5485
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:164
#: appTools/ToolTransform.py:239
msgid "Factor for scaling on X axis."
msgstr "Fattore di scala sull'asse X."
-#: appEditors/appGeoEditor.py:799 appEditors/FlatCAMGrbEditor.py:5492
+#: appEditors/AppGeoEditor.py:799 appEditors/AppGerberEditor.py:5492
#: appTools/ToolTransform.py:246
msgid "Scale X"
msgstr "Scala X"
-#: appEditors/appGeoEditor.py:801 appEditors/appGeoEditor.py:821
-#: appEditors/FlatCAMGrbEditor.py:5494 appEditors/FlatCAMGrbEditor.py:5514
+#: appEditors/AppGeoEditor.py:801 appEditors/AppGeoEditor.py:821
+#: appEditors/AppGerberEditor.py:5494 appEditors/AppGerberEditor.py:5514
#: appTools/ToolTransform.py:248 appTools/ToolTransform.py:268
msgid ""
"Scale the selected object(s).\n"
@@ -2181,59 +2181,59 @@ msgstr ""
"Il punto di riferimento dipende\n"
"dallo stato della casella di controllo Riferimento scala."
-#: appEditors/appGeoEditor.py:810 appEditors/FlatCAMGrbEditor.py:5503
+#: appEditors/AppGeoEditor.py:810 appEditors/AppGerberEditor.py:5503
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:129
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:175
#: appTools/ToolFilm.py:154 appTools/ToolTransform.py:257
msgid "Y factor"
msgstr "Fattore Y"
-#: appEditors/appGeoEditor.py:812 appEditors/FlatCAMGrbEditor.py:5505
+#: appEditors/AppGeoEditor.py:812 appEditors/AppGerberEditor.py:5505
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:177
#: appTools/ToolTransform.py:259
msgid "Factor for scaling on Y axis."
msgstr "Fattore di scala sull'asse Y."
-#: appEditors/appGeoEditor.py:819 appEditors/FlatCAMGrbEditor.py:5512
+#: appEditors/AppGeoEditor.py:819 appEditors/AppGerberEditor.py:5512
#: appTools/ToolTransform.py:266
msgid "Scale Y"
msgstr "Scala Y"
-#: appEditors/appGeoEditor.py:846 appEditors/FlatCAMGrbEditor.py:5539
+#: appEditors/AppGeoEditor.py:846 appEditors/AppGerberEditor.py:5539
#: appTools/ToolTransform.py:293
msgid "Flip on X"
msgstr "Capovolgi in X"
-#: appEditors/appGeoEditor.py:848 appEditors/appGeoEditor.py:853
-#: appEditors/FlatCAMGrbEditor.py:5541 appEditors/FlatCAMGrbEditor.py:5546
+#: appEditors/AppGeoEditor.py:848 appEditors/AppGeoEditor.py:853
+#: appEditors/AppGerberEditor.py:5541 appEditors/AppGerberEditor.py:5546
#: appTools/ToolTransform.py:295 appTools/ToolTransform.py:300
msgid "Flip the selected object(s) over the X axis."
msgstr "Capovolgi gli oggetti selezionati sull'asse X."
-#: appEditors/appGeoEditor.py:851 appEditors/FlatCAMGrbEditor.py:5544
+#: appEditors/AppGeoEditor.py:851 appEditors/AppGerberEditor.py:5544
#: appTools/ToolTransform.py:298
msgid "Flip on Y"
msgstr "Capovolgi in Y"
-#: appEditors/appGeoEditor.py:871 appEditors/FlatCAMGrbEditor.py:5564
+#: appEditors/AppGeoEditor.py:871 appEditors/AppGerberEditor.py:5564
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:191
#: appTools/ToolTransform.py:318
msgid "X val"
msgstr "Valore X"
-#: appEditors/appGeoEditor.py:873 appEditors/FlatCAMGrbEditor.py:5566
+#: appEditors/AppGeoEditor.py:873 appEditors/AppGerberEditor.py:5566
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:193
#: appTools/ToolTransform.py:320
msgid "Distance to offset on X axis. In current units."
msgstr "Distanza da applicare sull'asse X. In unità correnti."
-#: appEditors/appGeoEditor.py:880 appEditors/FlatCAMGrbEditor.py:5573
+#: appEditors/AppGeoEditor.py:880 appEditors/AppGerberEditor.py:5573
#: appTools/ToolTransform.py:327
msgid "Offset X"
msgstr "Offset X"
-#: appEditors/appGeoEditor.py:882 appEditors/appGeoEditor.py:902
-#: appEditors/FlatCAMGrbEditor.py:5575 appEditors/FlatCAMGrbEditor.py:5595
+#: appEditors/AppGeoEditor.py:882 appEditors/AppGeoEditor.py:902
+#: appEditors/AppGerberEditor.py:5575 appEditors/AppGerberEditor.py:5595
#: appTools/ToolTransform.py:329 appTools/ToolTransform.py:349
msgid ""
"Offset the selected object(s).\n"
@@ -2244,31 +2244,31 @@ msgstr ""
"Il punto di riferimento è il centro del\n"
"rettangolo di selezione per tutti gli oggetti selezionati.\n"
-#: appEditors/appGeoEditor.py:891 appEditors/FlatCAMGrbEditor.py:5584
+#: appEditors/AppGeoEditor.py:891 appEditors/AppGerberEditor.py:5584
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:204
#: appTools/ToolTransform.py:338
msgid "Y val"
msgstr "Valore Y"
-#: appEditors/appGeoEditor.py:893 appEditors/FlatCAMGrbEditor.py:5586
+#: appEditors/AppGeoEditor.py:893 appEditors/AppGerberEditor.py:5586
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:206
#: appTools/ToolTransform.py:340
msgid "Distance to offset on Y axis. In current units."
msgstr "Distanza da applicare sull'asse Y. In unità correnti."
-#: appEditors/appGeoEditor.py:900 appEditors/FlatCAMGrbEditor.py:5593
+#: appEditors/AppGeoEditor.py:900 appEditors/AppGerberEditor.py:5593
#: appTools/ToolTransform.py:347
msgid "Offset Y"
msgstr "Offset X"
-#: appEditors/appGeoEditor.py:920 appEditors/FlatCAMGrbEditor.py:5613
+#: appEditors/AppGeoEditor.py:920 appEditors/AppGerberEditor.py:5613
#: appGUI/preferences/tools/Tools2QRCodePrefGroupUI.py:142
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:216
#: appTools/ToolQRCode.py:206 appTools/ToolTransform.py:367
msgid "Rounded"
msgstr "Arrotondato"
-#: appEditors/appGeoEditor.py:922 appEditors/FlatCAMGrbEditor.py:5615
+#: appEditors/AppGeoEditor.py:922 appEditors/AppGerberEditor.py:5615
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:218
#: appTools/ToolTransform.py:369
msgid ""
@@ -2282,14 +2282,14 @@ msgstr ""
"Se non selezionato, il buffer seguirà l'esatta geometria\n"
"della forma bufferizzata."
-#: appEditors/appGeoEditor.py:930 appEditors/FlatCAMGrbEditor.py:5623
+#: appEditors/AppGeoEditor.py:930 appEditors/AppGerberEditor.py:5623
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:226
#: appTools/ToolDistance.py:505 appTools/ToolDistanceMin.py:286
#: appTools/ToolTransform.py:377
msgid "Distance"
msgstr "Distanza"
-#: appEditors/appGeoEditor.py:932 appEditors/FlatCAMGrbEditor.py:5625
+#: appEditors/AppGeoEditor.py:932 appEditors/AppGerberEditor.py:5625
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:228
#: appTools/ToolTransform.py:379
msgid ""
@@ -2303,12 +2303,12 @@ msgstr ""
"Ogni elemento della geometria dell'oggetto verrà aumentato\n"
"o diminuito con la 'distanza'."
-#: appEditors/appGeoEditor.py:944 appEditors/FlatCAMGrbEditor.py:5637
+#: appEditors/AppGeoEditor.py:944 appEditors/AppGerberEditor.py:5637
#: appTools/ToolTransform.py:391
msgid "Buffer D"
msgstr "Buffer D"
-#: appEditors/appGeoEditor.py:946 appEditors/FlatCAMGrbEditor.py:5639
+#: appEditors/AppGeoEditor.py:946 appEditors/AppGerberEditor.py:5639
#: appTools/ToolTransform.py:393
msgid ""
"Create the buffer effect on each geometry,\n"
@@ -2317,7 +2317,7 @@ msgstr ""
"Crea l'effetto buffer su ogni geometria,\n"
"elemento dall'oggetto selezionato, usando la distanza."
-#: appEditors/appGeoEditor.py:957 appEditors/FlatCAMGrbEditor.py:5650
+#: appEditors/AppGeoEditor.py:957 appEditors/AppGerberEditor.py:5650
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:245
#: appTools/ToolTransform.py:404
msgid ""
@@ -2332,12 +2332,12 @@ msgstr ""
"Ogni elemento della geometria dell'oggetto verrà aumentato\n"
"o diminuito in base al 'Valore'."
-#: appEditors/appGeoEditor.py:970 appEditors/FlatCAMGrbEditor.py:5663
+#: appEditors/AppGeoEditor.py:970 appEditors/AppGerberEditor.py:5663
#: appTools/ToolTransform.py:417
msgid "Buffer F"
msgstr "Buffer F"
-#: appEditors/appGeoEditor.py:972 appEditors/FlatCAMGrbEditor.py:5665
+#: appEditors/AppGeoEditor.py:972 appEditors/AppGerberEditor.py:5665
#: appTools/ToolTransform.py:419
msgid ""
"Create the buffer effect on each geometry,\n"
@@ -2346,7 +2346,7 @@ msgstr ""
"Crea l'effetto buffer su ogni geometria,\n"
"elemento dall'oggetto selezionato, usando il fattore."
-#: appEditors/appGeoEditor.py:1043 appEditors/FlatCAMGrbEditor.py:5736
+#: appEditors/AppGeoEditor.py:1043 appEditors/AppGerberEditor.py:5736
#: appGUI/ObjectUI.py:1103 appGUI/ObjectUI.py:1958
#: appGUI/preferences/tools/Tools2CalPrefGroupUI.py:48
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
@@ -2357,331 +2357,331 @@ msgstr ""
msgid "Object"
msgstr "Oggetto"
-#: appEditors/appGeoEditor.py:1107 appEditors/appGeoEditor.py:1130
-#: appEditors/appGeoEditor.py:1276 appEditors/appGeoEditor.py:1301
-#: appEditors/appGeoEditor.py:1335 appEditors/appGeoEditor.py:1370
-#: appEditors/appGeoEditor.py:1401 appEditors/FlatCAMGrbEditor.py:5800
-#: appEditors/FlatCAMGrbEditor.py:5823 appEditors/FlatCAMGrbEditor.py:5968
-#: appEditors/FlatCAMGrbEditor.py:6001 appEditors/FlatCAMGrbEditor.py:6044
-#: appEditors/FlatCAMGrbEditor.py:6085 appEditors/FlatCAMGrbEditor.py:6121
+#: appEditors/AppGeoEditor.py:1107 appEditors/AppGeoEditor.py:1130
+#: appEditors/AppGeoEditor.py:1276 appEditors/AppGeoEditor.py:1301
+#: appEditors/AppGeoEditor.py:1335 appEditors/AppGeoEditor.py:1370
+#: appEditors/AppGeoEditor.py:1401 appEditors/AppGerberEditor.py:5800
+#: appEditors/AppGerberEditor.py:5823 appEditors/AppGerberEditor.py:5968
+#: appEditors/AppGerberEditor.py:6001 appEditors/AppGerberEditor.py:6044
+#: appEditors/AppGerberEditor.py:6085 appEditors/AppGerberEditor.py:6121
msgid "No shape selected."
msgstr "Nessuna forma selezionata."
-#: appEditors/appGeoEditor.py:1115 appEditors/FlatCAMGrbEditor.py:5808
+#: appEditors/AppGeoEditor.py:1115 appEditors/AppGerberEditor.py:5808
#: appTools/ToolTransform.py:585
msgid "Incorrect format for Point value. Needs format X,Y"
msgstr "Valori del formato punto non corrette. Il formato è X,Y"
-#: appEditors/appGeoEditor.py:1140 appEditors/FlatCAMGrbEditor.py:5833
+#: appEditors/AppGeoEditor.py:1140 appEditors/AppGerberEditor.py:5833
#: appTools/ToolTransform.py:602
msgid "Rotate transformation can not be done for a value of 0."
msgstr ""
"La trasformazione di rotazione non può essere eseguita per un valore pari a "
"0."
-#: appEditors/appGeoEditor.py:1198 appEditors/appGeoEditor.py:1219
-#: appEditors/FlatCAMGrbEditor.py:5891 appEditors/FlatCAMGrbEditor.py:5912
+#: appEditors/AppGeoEditor.py:1198 appEditors/AppGeoEditor.py:1219
+#: appEditors/AppGerberEditor.py:5891 appEditors/AppGerberEditor.py:5912
#: appTools/ToolTransform.py:660 appTools/ToolTransform.py:681
msgid "Scale transformation can not be done for a factor of 0 or 1."
msgstr ""
"La trasformazione in scala non può essere eseguita per un fattore 0 o 1."
-#: appEditors/appGeoEditor.py:1232 appEditors/appGeoEditor.py:1241
-#: appEditors/FlatCAMGrbEditor.py:5925 appEditors/FlatCAMGrbEditor.py:5934
+#: appEditors/AppGeoEditor.py:1232 appEditors/AppGeoEditor.py:1241
+#: appEditors/AppGerberEditor.py:5925 appEditors/AppGerberEditor.py:5934
#: appTools/ToolTransform.py:694 appTools/ToolTransform.py:703
msgid "Offset transformation can not be done for a value of 0."
msgstr ""
"La trasformazione offset non può essere eseguita per un valore pari a 0."
-#: appEditors/appGeoEditor.py:1271 appEditors/FlatCAMGrbEditor.py:5971
+#: appEditors/AppGeoEditor.py:1271 appEditors/AppGerberEditor.py:5971
#: appTools/ToolTransform.py:731
msgid "Appying Rotate"
msgstr "Applico Rotazione"
-#: appEditors/appGeoEditor.py:1284 appEditors/FlatCAMGrbEditor.py:5983
+#: appEditors/AppGeoEditor.py:1284 appEditors/AppGerberEditor.py:5983
msgid "Done. Rotate completed."
msgstr "Fatto. Rotazione completata."
-#: appEditors/appGeoEditor.py:1286
+#: appEditors/AppGeoEditor.py:1286
msgid "Rotation action was not executed"
msgstr "Azione rotazione non effettuata"
-#: appEditors/appGeoEditor.py:1304 appEditors/FlatCAMGrbEditor.py:6004
+#: appEditors/AppGeoEditor.py:1304 appEditors/AppGerberEditor.py:6004
#: appTools/ToolTransform.py:757
msgid "Applying Flip"
msgstr "Applico il capovolgimento"
-#: appEditors/appGeoEditor.py:1312 appEditors/FlatCAMGrbEditor.py:6016
+#: appEditors/AppGeoEditor.py:1312 appEditors/AppGerberEditor.py:6016
#: appTools/ToolTransform.py:774
msgid "Flip on the Y axis done"
msgstr "Capovolgimento sull'asse Y effettuato"
-#: appEditors/appGeoEditor.py:1315 appEditors/FlatCAMGrbEditor.py:6024
+#: appEditors/AppGeoEditor.py:1315 appEditors/AppGerberEditor.py:6024
#: appTools/ToolTransform.py:783
msgid "Flip on the X axis done"
msgstr "Capovolgimento sull'asse X effettuato"
-#: appEditors/appGeoEditor.py:1319
+#: appEditors/AppGeoEditor.py:1319
msgid "Flip action was not executed"
msgstr "Azione capovolgimento non effettuata"
-#: appEditors/appGeoEditor.py:1338 appEditors/FlatCAMGrbEditor.py:6047
+#: appEditors/AppGeoEditor.py:1338 appEditors/AppGerberEditor.py:6047
#: appTools/ToolTransform.py:804
msgid "Applying Skew"
msgstr "Applico inclinazione"
-#: appEditors/appGeoEditor.py:1347 appEditors/FlatCAMGrbEditor.py:6063
+#: appEditors/AppGeoEditor.py:1347 appEditors/AppGerberEditor.py:6063
msgid "Skew on the X axis done"
msgstr "Inclinazione sull'asse X effettuata"
-#: appEditors/appGeoEditor.py:1349 appEditors/FlatCAMGrbEditor.py:6065
+#: appEditors/AppGeoEditor.py:1349 appEditors/AppGerberEditor.py:6065
msgid "Skew on the Y axis done"
msgstr "Inclinazione sull'asse Y effettuata"
-#: appEditors/appGeoEditor.py:1352
+#: appEditors/AppGeoEditor.py:1352
msgid "Skew action was not executed"
msgstr "Azione inclinazione non effettuata"
-#: appEditors/appGeoEditor.py:1373 appEditors/FlatCAMGrbEditor.py:6088
+#: appEditors/AppGeoEditor.py:1373 appEditors/AppGerberEditor.py:6088
#: appTools/ToolTransform.py:831
msgid "Applying Scale"
msgstr "Applicare scala"
-#: appEditors/appGeoEditor.py:1382 appEditors/FlatCAMGrbEditor.py:6101
+#: appEditors/AppGeoEditor.py:1382 appEditors/AppGerberEditor.py:6101
msgid "Scale on the X axis done"
msgstr "Riscalatura su asse X effettuata"
-#: appEditors/appGeoEditor.py:1384 appEditors/FlatCAMGrbEditor.py:6103
+#: appEditors/AppGeoEditor.py:1384 appEditors/AppGerberEditor.py:6103
msgid "Scale on the Y axis done"
msgstr "Riscalatura su asse Y effettuata"
-#: appEditors/appGeoEditor.py:1386
+#: appEditors/AppGeoEditor.py:1386
msgid "Scale action was not executed"
msgstr "Azione riscalatura non effettuata"
-#: appEditors/appGeoEditor.py:1404 appEditors/FlatCAMGrbEditor.py:6124
+#: appEditors/AppGeoEditor.py:1404 appEditors/AppGerberEditor.py:6124
#: appTools/ToolTransform.py:859
msgid "Applying Offset"
msgstr "Applicazione offset"
-#: appEditors/appGeoEditor.py:1414 appEditors/FlatCAMGrbEditor.py:6145
+#: appEditors/AppGeoEditor.py:1414 appEditors/AppGerberEditor.py:6145
msgid "Offset on the X axis done"
msgstr "Offset sull'asse X applicato"
-#: appEditors/appGeoEditor.py:1416 appEditors/FlatCAMGrbEditor.py:6147
+#: appEditors/AppGeoEditor.py:1416 appEditors/AppGerberEditor.py:6147
msgid "Offset on the Y axis done"
msgstr "Offset sull'asse Y applicato"
-#: appEditors/appGeoEditor.py:1419
+#: appEditors/AppGeoEditor.py:1419
msgid "Offset action was not executed"
msgstr "Offset non applicato"
-#: appEditors/appGeoEditor.py:1426 appEditors/FlatCAMGrbEditor.py:6157
+#: appEditors/AppGeoEditor.py:1426 appEditors/AppGerberEditor.py:6157
msgid "No shape selected"
msgstr "Nessuna forma selezionata"
-#: appEditors/appGeoEditor.py:1429 appEditors/FlatCAMGrbEditor.py:6160
+#: appEditors/AppGeoEditor.py:1429 appEditors/AppGerberEditor.py:6160
#: appTools/ToolTransform.py:889
msgid "Applying Buffer"
msgstr "Applicazione del buffer"
-#: appEditors/appGeoEditor.py:1436 appEditors/FlatCAMGrbEditor.py:6182
+#: appEditors/AppGeoEditor.py:1436 appEditors/AppGerberEditor.py:6182
#: appTools/ToolTransform.py:910
msgid "Buffer done"
msgstr "Bugger applicato"
-#: appEditors/appGeoEditor.py:1440 appEditors/FlatCAMGrbEditor.py:6186
+#: appEditors/AppGeoEditor.py:1440 appEditors/AppGerberEditor.py:6186
#: appTools/ToolTransform.py:879 appTools/ToolTransform.py:915
msgid "Action was not executed, due of"
msgstr "L'azione non è stata eseguita a causa di"
-#: appEditors/appGeoEditor.py:1444 appEditors/FlatCAMGrbEditor.py:6190
+#: appEditors/AppGeoEditor.py:1444 appEditors/AppGerberEditor.py:6190
msgid "Rotate ..."
msgstr "Ruota ..."
-#: appEditors/appGeoEditor.py:1445 appEditors/appGeoEditor.py:1494
-#: appEditors/appGeoEditor.py:1509 appEditors/FlatCAMGrbEditor.py:6191
-#: appEditors/FlatCAMGrbEditor.py:6240 appEditors/FlatCAMGrbEditor.py:6255
+#: appEditors/AppGeoEditor.py:1445 appEditors/AppGeoEditor.py:1494
+#: appEditors/AppGeoEditor.py:1509 appEditors/AppGerberEditor.py:6191
+#: appEditors/AppGerberEditor.py:6240 appEditors/AppGerberEditor.py:6255
msgid "Enter an Angle Value (degrees)"
msgstr "Inserire un angolo (in gradi)"
-#: appEditors/appGeoEditor.py:1453 appEditors/FlatCAMGrbEditor.py:6199
+#: appEditors/AppGeoEditor.py:1453 appEditors/AppGerberEditor.py:6199
msgid "Geometry shape rotate done"
msgstr "Forme geometriche ruotate"
-#: appEditors/appGeoEditor.py:1456 appEditors/FlatCAMGrbEditor.py:6202
+#: appEditors/AppGeoEditor.py:1456 appEditors/AppGerberEditor.py:6202
msgid "Geometry shape rotate cancelled"
msgstr "Forme geometriche NON ruotate"
-#: appEditors/appGeoEditor.py:1461 appEditors/FlatCAMGrbEditor.py:6207
+#: appEditors/AppGeoEditor.py:1461 appEditors/AppGerberEditor.py:6207
msgid "Offset on X axis ..."
msgstr "Offset su asse X ..."
-#: appEditors/appGeoEditor.py:1462 appEditors/appGeoEditor.py:1479
-#: appEditors/FlatCAMGrbEditor.py:6208 appEditors/FlatCAMGrbEditor.py:6225
+#: appEditors/AppGeoEditor.py:1462 appEditors/AppGeoEditor.py:1479
+#: appEditors/AppGerberEditor.py:6208 appEditors/AppGerberEditor.py:6225
msgid "Enter a distance Value"
msgstr "Valore di distanza"
-#: appEditors/appGeoEditor.py:1470 appEditors/FlatCAMGrbEditor.py:6216
+#: appEditors/AppGeoEditor.py:1470 appEditors/AppGerberEditor.py:6216
msgid "Geometry shape offset on X axis done"
msgstr "Offset su forme geometria su asse X applicato"
-#: appEditors/appGeoEditor.py:1473 appEditors/FlatCAMGrbEditor.py:6219
+#: appEditors/AppGeoEditor.py:1473 appEditors/AppGerberEditor.py:6219
msgid "Geometry shape offset X cancelled"
msgstr "Offset su forme geometria su asse X annullato"
-#: appEditors/appGeoEditor.py:1478 appEditors/FlatCAMGrbEditor.py:6224
+#: appEditors/AppGeoEditor.py:1478 appEditors/AppGerberEditor.py:6224
msgid "Offset on Y axis ..."
msgstr "Offset su asse Y ..."
-#: appEditors/appGeoEditor.py:1487 appEditors/FlatCAMGrbEditor.py:6233
+#: appEditors/AppGeoEditor.py:1487 appEditors/AppGerberEditor.py:6233
msgid "Geometry shape offset on Y axis done"
msgstr "Offset su forme geometria su asse Y applicato"
-#: appEditors/appGeoEditor.py:1490
+#: appEditors/AppGeoEditor.py:1490
msgid "Geometry shape offset on Y axis canceled"
msgstr "Offset su forme geometria su asse Y annullato"
-#: appEditors/appGeoEditor.py:1493 appEditors/FlatCAMGrbEditor.py:6239
+#: appEditors/AppGeoEditor.py:1493 appEditors/AppGerberEditor.py:6239
msgid "Skew on X axis ..."
msgstr "Inclinazione su asse Y ..."
-#: appEditors/appGeoEditor.py:1502 appEditors/FlatCAMGrbEditor.py:6248
+#: appEditors/AppGeoEditor.py:1502 appEditors/AppGerberEditor.py:6248
msgid "Geometry shape skew on X axis done"
msgstr "Inclinazione su asse X effettuato"
-#: appEditors/appGeoEditor.py:1505
+#: appEditors/AppGeoEditor.py:1505
msgid "Geometry shape skew on X axis canceled"
msgstr "Inclinazione su asse X annullata"
-#: appEditors/appGeoEditor.py:1508 appEditors/FlatCAMGrbEditor.py:6254
+#: appEditors/AppGeoEditor.py:1508 appEditors/AppGerberEditor.py:6254
msgid "Skew on Y axis ..."
msgstr "Inclinazione su asse Y ..."
-#: appEditors/appGeoEditor.py:1517 appEditors/FlatCAMGrbEditor.py:6263
+#: appEditors/AppGeoEditor.py:1517 appEditors/AppGerberEditor.py:6263
msgid "Geometry shape skew on Y axis done"
msgstr "Inclinazione su asse Y effettuato"
-#: appEditors/appGeoEditor.py:1520
+#: appEditors/AppGeoEditor.py:1520
msgid "Geometry shape skew on Y axis canceled"
msgstr "Inclinazione su asse Y annullata"
-#: appEditors/appGeoEditor.py:1950 appEditors/appGeoEditor.py:2021
-#: appEditors/FlatCAMGrbEditor.py:1444 appEditors/FlatCAMGrbEditor.py:1522
+#: appEditors/AppGeoEditor.py:1950 appEditors/AppGeoEditor.py:2021
+#: appEditors/AppGerberEditor.py:1444 appEditors/AppGerberEditor.py:1522
msgid "Click on Center point ..."
msgstr "Clicca sul punto centrale ..."
-#: appEditors/appGeoEditor.py:1963 appEditors/FlatCAMGrbEditor.py:1454
+#: appEditors/AppGeoEditor.py:1963 appEditors/AppGerberEditor.py:1454
msgid "Click on Perimeter point to complete ..."
msgstr "Fare clic sul punto perimetrale per completare ..."
-#: appEditors/appGeoEditor.py:1995
+#: appEditors/AppGeoEditor.py:1995
msgid "Done. Adding Circle completed."
msgstr "Fatto. Aggiungi cerchio completato."
-#: appEditors/appGeoEditor.py:2049 appEditors/FlatCAMGrbEditor.py:1555
+#: appEditors/AppGeoEditor.py:2049 appEditors/AppGerberEditor.py:1555
msgid "Click on Start point ..."
msgstr "Fare clic sul punto iniziale ..."
-#: appEditors/appGeoEditor.py:2051 appEditors/FlatCAMGrbEditor.py:1557
+#: appEditors/AppGeoEditor.py:2051 appEditors/AppGerberEditor.py:1557
msgid "Click on Point3 ..."
msgstr "Clicca sul punto 3 ..."
-#: appEditors/appGeoEditor.py:2053 appEditors/FlatCAMGrbEditor.py:1559
+#: appEditors/AppGeoEditor.py:2053 appEditors/AppGerberEditor.py:1559
msgid "Click on Stop point ..."
msgstr "Clicca sul punto di stop ..."
-#: appEditors/appGeoEditor.py:2058 appEditors/FlatCAMGrbEditor.py:1564
+#: appEditors/AppGeoEditor.py:2058 appEditors/AppGerberEditor.py:1564
msgid "Click on Stop point to complete ..."
msgstr "Clicca sul punto di stop per completare ..."
-#: appEditors/appGeoEditor.py:2060 appEditors/FlatCAMGrbEditor.py:1566
+#: appEditors/AppGeoEditor.py:2060 appEditors/AppGerberEditor.py:1566
msgid "Click on Point2 to complete ..."
msgstr "Clicca sul punto 2 per completare ..."
-#: appEditors/appGeoEditor.py:2062 appEditors/FlatCAMGrbEditor.py:1568
+#: appEditors/AppGeoEditor.py:2062 appEditors/AppGerberEditor.py:1568
msgid "Click on Center point to complete ..."
msgstr "Clicca sul punto centrale per completare ..."
-#: appEditors/appGeoEditor.py:2074
+#: appEditors/AppGeoEditor.py:2074
#, python-format
msgid "Direction: %s"
msgstr "Direzione: %s"
-#: appEditors/appGeoEditor.py:2088 appEditors/FlatCAMGrbEditor.py:1594
+#: appEditors/AppGeoEditor.py:2088 appEditors/AppGerberEditor.py:1594
msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
msgstr "Modo: Start -> Stop -> Centro. Clicca sul punto di partenza ..."
-#: appEditors/appGeoEditor.py:2091 appEditors/FlatCAMGrbEditor.py:1597
+#: appEditors/AppGeoEditor.py:2091 appEditors/AppGerberEditor.py:1597
msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
msgstr "Modo: Punto1 -> Punto3 -> Punto2. Clicca sul punto1 ..."
-#: appEditors/appGeoEditor.py:2094 appEditors/FlatCAMGrbEditor.py:1600
+#: appEditors/AppGeoEditor.py:2094 appEditors/AppGerberEditor.py:1600
msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
msgstr "Modo: Centro -> Start -> Stop. Clicca sul punto centrale ..."
-#: appEditors/appGeoEditor.py:2235
+#: appEditors/AppGeoEditor.py:2235
msgid "Done. Arc completed."
msgstr "Fatto. Arco completato."
-#: appEditors/appGeoEditor.py:2266 appEditors/appGeoEditor.py:2339
+#: appEditors/AppGeoEditor.py:2266 appEditors/AppGeoEditor.py:2339
msgid "Click on 1st corner ..."
msgstr "Clicca sul primo angolo ..."
-#: appEditors/appGeoEditor.py:2278
+#: appEditors/AppGeoEditor.py:2278
msgid "Click on opposite corner to complete ..."
msgstr "Clicca sull'angolo opposto per completare ..."
-#: appEditors/appGeoEditor.py:2308
+#: appEditors/AppGeoEditor.py:2308
msgid "Done. Rectangle completed."
msgstr "Fatto. Rettangolo completato."
-#: appEditors/appGeoEditor.py:2383
+#: appEditors/AppGeoEditor.py:2383
msgid "Done. Polygon completed."
msgstr "Fatto. Poligono completato."
-#: appEditors/appGeoEditor.py:2397 appEditors/appGeoEditor.py:2462
-#: appEditors/FlatCAMGrbEditor.py:1102 appEditors/FlatCAMGrbEditor.py:1322
+#: appEditors/AppGeoEditor.py:2397 appEditors/AppGeoEditor.py:2462
+#: appEditors/AppGerberEditor.py:1102 appEditors/AppGerberEditor.py:1322
msgid "Backtracked one point ..."
msgstr "Indietro di un punto ..."
-#: appEditors/appGeoEditor.py:2440
+#: appEditors/AppGeoEditor.py:2440
msgid "Done. Path completed."
msgstr "Fatto. Percorso completato."
-#: appEditors/appGeoEditor.py:2599
+#: appEditors/AppGeoEditor.py:2599
msgid "No shape selected. Select a shape to explode"
msgstr "Nessuna forma selezionata. Seleziona una forma da esplodere"
-#: appEditors/appGeoEditor.py:2632
+#: appEditors/AppGeoEditor.py:2632
msgid "Done. Polygons exploded into lines."
msgstr "Fatto. Poligono esploso in linee."
-#: appEditors/appGeoEditor.py:2664
+#: appEditors/AppGeoEditor.py:2664
msgid "MOVE: No shape selected. Select a shape to move"
msgstr "SPOSTA: nessuna forma selezionata. Seleziona una forma da spostare"
-#: appEditors/appGeoEditor.py:2667 appEditors/appGeoEditor.py:2687
+#: appEditors/AppGeoEditor.py:2667 appEditors/AppGeoEditor.py:2687
msgid " MOVE: Click on reference point ..."
msgstr " SPOSTA: fare clic sul punto di riferimento ..."
-#: appEditors/appGeoEditor.py:2672
+#: appEditors/AppGeoEditor.py:2672
msgid " Click on destination point ..."
msgstr " Clicca sul punto di riferimento ..."
-#: appEditors/appGeoEditor.py:2712
+#: appEditors/AppGeoEditor.py:2712
msgid "Done. Geometry(s) Move completed."
msgstr "Fatto. Spostamento geometria(e) completato."
-#: appEditors/appGeoEditor.py:2845
+#: appEditors/AppGeoEditor.py:2845
msgid "Done. Geometry(s) Copy completed."
msgstr "Fatto. Copia geometria(e) completata."
-#: appEditors/appGeoEditor.py:2876 appEditors/FlatCAMGrbEditor.py:897
+#: appEditors/AppGeoEditor.py:2876 appEditors/AppGerberEditor.py:897
msgid "Click on 1st point ..."
msgstr "Clicca sul primo punto ..."
-#: appEditors/appGeoEditor.py:2900
+#: appEditors/AppGeoEditor.py:2900
msgid ""
"Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
"Error"
@@ -2689,83 +2689,83 @@ msgstr ""
"Font (carattere) non supportato. Sono supportati solo Regular, Bold, Italic "
"e BoldItalic. Errore"
-#: appEditors/appGeoEditor.py:2908
+#: appEditors/AppGeoEditor.py:2908
msgid "No text to add."
msgstr "Nessun testo da aggiungere."
-#: appEditors/appGeoEditor.py:2918
+#: appEditors/AppGeoEditor.py:2918
msgid " Done. Adding Text completed."
msgstr " Fatto. Testo aggiunto."
-#: appEditors/appGeoEditor.py:2955
+#: appEditors/AppGeoEditor.py:2955
msgid "Create buffer geometry ..."
msgstr "Crea geometria buffer ..."
-#: appEditors/appGeoEditor.py:2990 appEditors/FlatCAMGrbEditor.py:5153
+#: appEditors/AppGeoEditor.py:2990 appEditors/AppGerberEditor.py:5153
msgid "Done. Buffer Tool completed."
msgstr "Fatto. Strumento buffer completato."
-#: appEditors/appGeoEditor.py:3018
+#: appEditors/AppGeoEditor.py:3018
msgid "Done. Buffer Int Tool completed."
msgstr "Fatto. Strumento buffer interno completato."
-#: appEditors/appGeoEditor.py:3046
+#: appEditors/AppGeoEditor.py:3046
msgid "Done. Buffer Ext Tool completed."
msgstr "Fatto. Strumento buffer esterno completato."
-#: appEditors/appGeoEditor.py:3095 appEditors/FlatCAMGrbEditor.py:2160
+#: appEditors/AppGeoEditor.py:3095 appEditors/AppGerberEditor.py:2160
msgid "Select a shape to act as deletion area ..."
msgstr "Seleziona una forma da utilizzare come area di eliminazione ..."
-#: appEditors/appGeoEditor.py:3097 appEditors/appGeoEditor.py:3123
-#: appEditors/appGeoEditor.py:3129 appEditors/FlatCAMGrbEditor.py:2162
+#: appEditors/AppGeoEditor.py:3097 appEditors/AppGeoEditor.py:3123
+#: appEditors/AppGeoEditor.py:3129 appEditors/AppGerberEditor.py:2162
msgid "Click to pick-up the erase shape..."
msgstr "Fai clic per selezionare la forma di cancellazione ..."
-#: appEditors/appGeoEditor.py:3133 appEditors/FlatCAMGrbEditor.py:2221
+#: appEditors/AppGeoEditor.py:3133 appEditors/AppGerberEditor.py:2221
msgid "Click to erase ..."
msgstr "Clicca per cancellare ..."
-#: appEditors/appGeoEditor.py:3162 appEditors/FlatCAMGrbEditor.py:2254
+#: appEditors/AppGeoEditor.py:3162 appEditors/AppGerberEditor.py:2254
msgid "Done. Eraser tool action completed."
msgstr "Fatto. Azione dello strumento gomma completata."
-#: appEditors/appGeoEditor.py:3212
+#: appEditors/AppGeoEditor.py:3212
msgid "Create Paint geometry ..."
msgstr "Crea geometria di disegno ..."
-#: appEditors/appGeoEditor.py:3225 appEditors/FlatCAMGrbEditor.py:2417
+#: appEditors/AppGeoEditor.py:3225 appEditors/AppGerberEditor.py:2417
msgid "Shape transformations ..."
msgstr "Trasformazioni di forma ..."
-#: appEditors/appGeoEditor.py:3281
+#: appEditors/AppGeoEditor.py:3281
#: appGUI/preferences/geometry/GeometryEditorPrefGroupUI.py:27
msgid "Geometry Editor"
msgstr "Editor Geometrie"
-#: appEditors/appGeoEditor.py:3287 appEditors/FlatCAMGrbEditor.py:2495
-#: appEditors/FlatCAMGrbEditor.py:3951 appGUI/ObjectUI.py:282
+#: appEditors/AppGeoEditor.py:3287 appEditors/AppGerberEditor.py:2495
+#: appEditors/AppGerberEditor.py:3951 appGUI/ObjectUI.py:282
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256 appTools/ToolCutOut.py:95
#: appTools/ToolTransform.py:92
msgid "Type"
msgstr "Tipo"
-#: appEditors/appGeoEditor.py:3287 appGUI/ObjectUI.py:221
+#: appEditors/AppGeoEditor.py:3287 appGUI/ObjectUI.py:221
#: appGUI/ObjectUI.py:521 appGUI/ObjectUI.py:1330 appGUI/ObjectUI.py:2165
#: appGUI/ObjectUI.py:2469 appGUI/ObjectUI.py:2536
#: appTools/ToolCalibration.py:234 appTools/ToolFiducials.py:70
msgid "Name"
msgstr "Nome"
-#: appEditors/appGeoEditor.py:3539
+#: appEditors/AppGeoEditor.py:3539
msgid "Ring"
msgstr "Anello"
-#: appEditors/appGeoEditor.py:3541
+#: appEditors/AppGeoEditor.py:3541
msgid "Line"
msgstr "Linea"
-#: appEditors/appGeoEditor.py:3543 appGUI/MainGUI.py:1446
+#: appEditors/AppGeoEditor.py:3543 appGUI/MainGUI.py:1446
#: appGUI/ObjectUI.py:1150 appGUI/ObjectUI.py:2005
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:226
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:299
@@ -2776,47 +2776,47 @@ msgstr "Linea"
msgid "Polygon"
msgstr "Poligono"
-#: appEditors/appGeoEditor.py:3545
+#: appEditors/AppGeoEditor.py:3545
msgid "Multi-Line"
msgstr "Multi-Linea"
-#: appEditors/appGeoEditor.py:3547
+#: appEditors/AppGeoEditor.py:3547
msgid "Multi-Polygon"
msgstr "Multi-Poligono"
-#: appEditors/appGeoEditor.py:3554
+#: appEditors/AppGeoEditor.py:3554
msgid "Geo Elem"
msgstr "Elemento Geom"
-#: appEditors/appGeoEditor.py:4007
+#: appEditors/AppGeoEditor.py:4007
msgid "Editing MultiGeo Geometry, tool"
msgstr "Modifica di Geometria MultiGeo, strumento"
-#: appEditors/appGeoEditor.py:4009
+#: appEditors/AppGeoEditor.py:4009
msgid "with diameter"
msgstr "con diametro"
-#: appEditors/appGeoEditor.py:4081
+#: appEditors/AppGeoEditor.py:4081
msgid "Grid Snap enabled."
msgstr "Snap alla griglia abilitato."
-#: appEditors/appGeoEditor.py:4085
+#: appEditors/AppGeoEditor.py:4085
msgid "Grid Snap disabled."
msgstr "Snap alla griglia disabilitato."
-#: appEditors/appGeoEditor.py:4446 appGUI/MainGUI.py:3046
+#: appEditors/AppGeoEditor.py:4446 appGUI/MainGUI.py:3046
#: appGUI/MainGUI.py:3092 appGUI/MainGUI.py:3110 appGUI/MainGUI.py:3254
#: appGUI/MainGUI.py:3293 appGUI/MainGUI.py:3305 appGUI/MainGUI.py:3322
msgid "Click on target point."
msgstr "Fai clic sul punto target."
-#: appEditors/appGeoEditor.py:4762 appEditors/appGeoEditor.py:4797
+#: appEditors/AppGeoEditor.py:4762 appEditors/AppGeoEditor.py:4797
msgid "A selection of at least 2 geo items is required to do Intersection."
msgstr ""
"Per effettuare l'intersezione è necessaria una selezione di almeno 2 "
"elementi geometrici."
-#: appEditors/appGeoEditor.py:4883 appEditors/appGeoEditor.py:4987
+#: appEditors/AppGeoEditor.py:4883 appEditors/AppGeoEditor.py:4987
msgid ""
"Negative buffer value is not accepted. Use Buffer interior to generate an "
"'inside' shape"
@@ -2824,56 +2824,56 @@ msgstr ""
"Valore di buffer negativi non accettati. Usa l'interno del buffer per "
"generare una forma \"interna\""
-#: appEditors/appGeoEditor.py:4893 appEditors/appGeoEditor.py:4946
-#: appEditors/appGeoEditor.py:4996
+#: appEditors/AppGeoEditor.py:4893 appEditors/AppGeoEditor.py:4946
+#: appEditors/AppGeoEditor.py:4996
msgid "Nothing selected for buffering."
msgstr "Niente di selezionato per il buffering."
-#: appEditors/appGeoEditor.py:4898 appEditors/appGeoEditor.py:4950
-#: appEditors/appGeoEditor.py:5001
+#: appEditors/AppGeoEditor.py:4898 appEditors/AppGeoEditor.py:4950
+#: appEditors/AppGeoEditor.py:5001
msgid "Invalid distance for buffering."
msgstr "Distanza non valida per il buffering."
-#: appEditors/appGeoEditor.py:4922 appEditors/appGeoEditor.py:5021
+#: appEditors/AppGeoEditor.py:4922 appEditors/AppGeoEditor.py:5021
msgid "Failed, the result is empty. Choose a different buffer value."
msgstr "Fallito, il risultato è vuoto. Scegli un valore di buffer diverso."
-#: appEditors/appGeoEditor.py:4933
+#: appEditors/AppGeoEditor.py:4933
msgid "Full buffer geometry created."
msgstr "Geometria buffer completa creata."
-#: appEditors/appGeoEditor.py:4939
+#: appEditors/AppGeoEditor.py:4939
msgid "Negative buffer value is not accepted."
msgstr "Il valore negativo del buffer non è accettato."
-#: appEditors/appGeoEditor.py:4970
+#: appEditors/AppGeoEditor.py:4970
msgid "Failed, the result is empty. Choose a smaller buffer value."
msgstr "Fallito, il risultato è vuoto. Scegli un valore di buffer più piccolo."
-#: appEditors/appGeoEditor.py:4980
+#: appEditors/AppGeoEditor.py:4980
msgid "Interior buffer geometry created."
msgstr "Geometria del buffer interno creata."
-#: appEditors/appGeoEditor.py:5031
+#: appEditors/AppGeoEditor.py:5031
msgid "Exterior buffer geometry created."
msgstr "Geometria del buffer esterno creata."
-#: appEditors/appGeoEditor.py:5037
+#: appEditors/AppGeoEditor.py:5037
#, python-format
msgid "Could not do Paint. Overlap value has to be less than 100%%."
msgstr ""
"Impossibile fare Paint. Il valore di sovrapposizione deve essere inferiore a "
"100%%."
-#: appEditors/appGeoEditor.py:5044
+#: appEditors/AppGeoEditor.py:5044
msgid "Nothing selected for painting."
msgstr "Nulla di selezionato per Paint."
-#: appEditors/appGeoEditor.py:5050
+#: appEditors/AppGeoEditor.py:5050
msgid "Invalid value for"
msgstr "Valore non valido per"
-#: appEditors/appGeoEditor.py:5109
+#: appEditors/AppGeoEditor.py:5109
msgid ""
"Could not do Paint. Try a different combination of parameters. Or a "
"different method of Paint"
@@ -2881,159 +2881,159 @@ msgstr ""
"Impossibile fare Paint. Prova una diversa combinazione di parametri. O un "
"metodo diverso di Paint"
-#: appEditors/appGeoEditor.py:5120
+#: appEditors/AppGeoEditor.py:5120
msgid "Paint done."
msgstr "Paint fatto."
-#: appEditors/FlatCAMGrbEditor.py:211
+#: appEditors/AppGerberEditor.py:211
msgid "To add an Pad first select a aperture in Aperture Table"
msgstr ""
"Per aggiungere un pad, seleziona prima un'apertura nella tabella Aperture"
-#: appEditors/FlatCAMGrbEditor.py:218 appEditors/FlatCAMGrbEditor.py:418
+#: appEditors/AppGerberEditor.py:218 appEditors/AppGerberEditor.py:418
msgid "Aperture size is zero. It needs to be greater than zero."
msgstr "La dimensione dell'apertura è zero. Deve essere maggiore di zero."
-#: appEditors/FlatCAMGrbEditor.py:371 appEditors/FlatCAMGrbEditor.py:684
+#: appEditors/AppGerberEditor.py:371 appEditors/AppGerberEditor.py:684
msgid ""
"Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
msgstr ""
"Tipo di apertura incompatibile. Seleziona un'apertura con tipo 'C', 'R' o "
"'O'."
-#: appEditors/FlatCAMGrbEditor.py:383
+#: appEditors/AppGerberEditor.py:383
msgid "Done. Adding Pad completed."
msgstr "Fatto. Aggiunta del pad completata."
-#: appEditors/FlatCAMGrbEditor.py:410
+#: appEditors/AppGerberEditor.py:410
msgid "To add an Pad Array first select a aperture in Aperture Table"
msgstr ""
"Per aggiungere una matrice pad, selezionare prima un'apertura nella tabella "
"Aperture"
-#: appEditors/FlatCAMGrbEditor.py:490
+#: appEditors/AppGerberEditor.py:490
msgid "Click on the Pad Circular Array Start position"
msgstr "Fare clic sulla posizione iniziale della matrice circolare del pad"
-#: appEditors/FlatCAMGrbEditor.py:710
+#: appEditors/AppGerberEditor.py:710
msgid "Too many Pads for the selected spacing angle."
msgstr "Troppi pad per l'angolo di spaziatura selezionato."
-#: appEditors/FlatCAMGrbEditor.py:733
+#: appEditors/AppGerberEditor.py:733
msgid "Done. Pad Array added."
msgstr "Fatto. Matrice di Pad aggiunta."
-#: appEditors/FlatCAMGrbEditor.py:758
+#: appEditors/AppGerberEditor.py:758
msgid "Select shape(s) and then click ..."
msgstr "Seleziona la forma(e) e quindi fai clic su ..."
-#: appEditors/FlatCAMGrbEditor.py:770
+#: appEditors/AppGerberEditor.py:770
msgid "Failed. Nothing selected."
msgstr "Errore. Niente di selezionato."
-#: appEditors/FlatCAMGrbEditor.py:786
+#: appEditors/AppGerberEditor.py:786
msgid ""
"Failed. Poligonize works only on geometries belonging to the same aperture."
msgstr ""
"Errore. Poligonizza funziona solo su geometrie appartenenti alla stessa "
"apertura."
-#: appEditors/FlatCAMGrbEditor.py:840
+#: appEditors/AppGerberEditor.py:840
msgid "Done. Poligonize completed."
msgstr "Fatto. Poligonizza completata."
-#: appEditors/FlatCAMGrbEditor.py:895 appEditors/FlatCAMGrbEditor.py:1119
-#: appEditors/FlatCAMGrbEditor.py:1143
+#: appEditors/AppGerberEditor.py:895 appEditors/AppGerberEditor.py:1119
+#: appEditors/AppGerberEditor.py:1143
msgid "Corner Mode 1: 45 degrees ..."
msgstr "Modalità angolo 1: 45 gradi ..."
-#: appEditors/FlatCAMGrbEditor.py:907 appEditors/FlatCAMGrbEditor.py:1219
+#: appEditors/AppGerberEditor.py:907 appEditors/AppGerberEditor.py:1219
msgid "Click on next Point or click Right mouse button to complete ..."
msgstr ""
"Fare clic sul punto successivo o fare clic con il pulsante destro del mouse "
"per completare ..."
-#: appEditors/FlatCAMGrbEditor.py:1107 appEditors/FlatCAMGrbEditor.py:1140
+#: appEditors/AppGerberEditor.py:1107 appEditors/AppGerberEditor.py:1140
msgid "Corner Mode 2: Reverse 45 degrees ..."
msgstr "Modalità angolo 2: indietro di 45 gradi ..."
-#: appEditors/FlatCAMGrbEditor.py:1110 appEditors/FlatCAMGrbEditor.py:1137
+#: appEditors/AppGerberEditor.py:1110 appEditors/AppGerberEditor.py:1137
msgid "Corner Mode 3: 90 degrees ..."
msgstr "Modalità angolo 3: 90 gradi ..."
-#: appEditors/FlatCAMGrbEditor.py:1113 appEditors/FlatCAMGrbEditor.py:1134
+#: appEditors/AppGerberEditor.py:1113 appEditors/AppGerberEditor.py:1134
msgid "Corner Mode 4: Reverse 90 degrees ..."
msgstr "Modalità angolo 4: indietro di 90 gradi ..."
-#: appEditors/FlatCAMGrbEditor.py:1116 appEditors/FlatCAMGrbEditor.py:1131
+#: appEditors/AppGerberEditor.py:1116 appEditors/AppGerberEditor.py:1131
msgid "Corner Mode 5: Free angle ..."
msgstr "Modalità angolo 5: angolo libero ..."
-#: appEditors/FlatCAMGrbEditor.py:1193 appEditors/FlatCAMGrbEditor.py:1358
-#: appEditors/FlatCAMGrbEditor.py:1397
+#: appEditors/AppGerberEditor.py:1193 appEditors/AppGerberEditor.py:1358
+#: appEditors/AppGerberEditor.py:1397
msgid "Track Mode 1: 45 degrees ..."
msgstr "Traccia modalità 1: 45 gradi ..."
-#: appEditors/FlatCAMGrbEditor.py:1338 appEditors/FlatCAMGrbEditor.py:1392
+#: appEditors/AppGerberEditor.py:1338 appEditors/AppGerberEditor.py:1392
msgid "Track Mode 2: Reverse 45 degrees ..."
msgstr "Traccia modalità 2: indietro 45 gradi ..."
-#: appEditors/FlatCAMGrbEditor.py:1343 appEditors/FlatCAMGrbEditor.py:1387
+#: appEditors/AppGerberEditor.py:1343 appEditors/AppGerberEditor.py:1387
msgid "Track Mode 3: 90 degrees ..."
msgstr "Traccia modalità 3: 90 gradi ..."
-#: appEditors/FlatCAMGrbEditor.py:1348 appEditors/FlatCAMGrbEditor.py:1382
+#: appEditors/AppGerberEditor.py:1348 appEditors/AppGerberEditor.py:1382
msgid "Track Mode 4: Reverse 90 degrees ..."
msgstr "Traccia modalità 4: indietro 90 gradi ..."
-#: appEditors/FlatCAMGrbEditor.py:1353 appEditors/FlatCAMGrbEditor.py:1377
+#: appEditors/AppGerberEditor.py:1353 appEditors/AppGerberEditor.py:1377
msgid "Track Mode 5: Free angle ..."
msgstr "Traccia modalità 5: angolo libero ..."
-#: appEditors/FlatCAMGrbEditor.py:1787
+#: appEditors/AppGerberEditor.py:1787
msgid "Scale the selected Gerber apertures ..."
msgstr "Ridimensiona le aperture Gerber selezionate ..."
-#: appEditors/FlatCAMGrbEditor.py:1829
+#: appEditors/AppGerberEditor.py:1829
msgid "Buffer the selected apertures ..."
msgstr "Buffer delle aperture selezionate ..."
-#: appEditors/FlatCAMGrbEditor.py:1871
+#: appEditors/AppGerberEditor.py:1871
msgid "Mark polygon areas in the edited Gerber ..."
msgstr "Contrassegna le aree poligonali nel Gerber modificato ..."
-#: appEditors/FlatCAMGrbEditor.py:1937
+#: appEditors/AppGerberEditor.py:1937
msgid "Nothing selected to move"
msgstr "Nulla di selezionato da spostare"
-#: appEditors/FlatCAMGrbEditor.py:2062
+#: appEditors/AppGerberEditor.py:2062
msgid "Done. Apertures Move completed."
msgstr "Fatto. Spostamento aperture completato."
-#: appEditors/FlatCAMGrbEditor.py:2144
+#: appEditors/AppGerberEditor.py:2144
msgid "Done. Apertures copied."
msgstr "Fatto. Aperture copiate."
-#: appEditors/FlatCAMGrbEditor.py:2462 appGUI/MainGUI.py:1477
+#: appEditors/AppGerberEditor.py:2462 appGUI/MainGUI.py:1477
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:27
msgid "Gerber Editor"
msgstr "Editor Gerber"
-#: appEditors/FlatCAMGrbEditor.py:2482 appGUI/ObjectUI.py:247
+#: appEditors/AppGerberEditor.py:2482 appGUI/ObjectUI.py:247
#: appTools/ToolProperties.py:159
msgid "Apertures"
msgstr "Aperture"
-#: appEditors/FlatCAMGrbEditor.py:2484 appGUI/ObjectUI.py:249
+#: appEditors/AppGerberEditor.py:2484 appGUI/ObjectUI.py:249
msgid "Apertures Table for the Gerber Object."
msgstr "Tabella delle aperture per l'oggetto Gerber."
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Code"
msgstr "Codice"
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
#: appGUI/preferences/general/GeneralAPPSetGroupUI.py:103
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:167
@@ -3044,29 +3044,29 @@ msgstr "Codice"
msgid "Size"
msgstr "Dimensione"
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Dim"
msgstr "Dim"
-#: appEditors/FlatCAMGrbEditor.py:2500 appGUI/ObjectUI.py:286
+#: appEditors/AppGerberEditor.py:2500 appGUI/ObjectUI.py:286
msgid "Index"
msgstr "Indice"
-#: appEditors/FlatCAMGrbEditor.py:2502 appEditors/FlatCAMGrbEditor.py:2531
+#: appEditors/AppGerberEditor.py:2502 appEditors/AppGerberEditor.py:2531
#: appGUI/ObjectUI.py:288
msgid "Aperture Code"
msgstr "Codice apertura"
-#: appEditors/FlatCAMGrbEditor.py:2504 appGUI/ObjectUI.py:290
+#: appEditors/AppGerberEditor.py:2504 appGUI/ObjectUI.py:290
msgid "Type of aperture: circular, rectangle, macros etc"
msgstr "Tipo di apertura: circolare, rettangolo, macro ecc"
-#: appEditors/FlatCAMGrbEditor.py:2506 appGUI/ObjectUI.py:292
+#: appEditors/AppGerberEditor.py:2506 appGUI/ObjectUI.py:292
msgid "Aperture Size:"
msgstr "Dimensione apertura:"
-#: appEditors/FlatCAMGrbEditor.py:2508 appGUI/ObjectUI.py:294
+#: appEditors/AppGerberEditor.py:2508 appGUI/ObjectUI.py:294
msgid ""
"Aperture Dimensions:\n"
" - (width, height) for R, O type.\n"
@@ -3076,16 +3076,16 @@ msgstr ""
"- (larghezza, altezza) per tipo R, O.\n"
"- (diametro, nVertices) per il tipo P"
-#: appEditors/FlatCAMGrbEditor.py:2532
+#: appEditors/AppGerberEditor.py:2532
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:58
msgid "Code for the new aperture"
msgstr "Codice della nuova apertura"
-#: appEditors/FlatCAMGrbEditor.py:2541
+#: appEditors/AppGerberEditor.py:2541
msgid "Aperture Size"
msgstr "Dimensione apertura"
-#: appEditors/FlatCAMGrbEditor.py:2543
+#: appEditors/AppGerberEditor.py:2543
msgid ""
"Size for the new aperture.\n"
"If aperture type is 'R' or 'O' then\n"
@@ -3099,11 +3099,11 @@ msgstr ""
"calcolato come:\n"
"sqrt (larghezza**2 + altezza**2)"
-#: appEditors/FlatCAMGrbEditor.py:2557
+#: appEditors/AppGerberEditor.py:2557
msgid "Aperture Type"
msgstr "Tipo apertura"
-#: appEditors/FlatCAMGrbEditor.py:2559
+#: appEditors/AppGerberEditor.py:2559
msgid ""
"Select the type of new aperture. Can be:\n"
"C = circular\n"
@@ -3115,11 +3115,11 @@ msgstr ""
"R = rettangolare\n"
"O = oblungo"
-#: appEditors/FlatCAMGrbEditor.py:2570
+#: appEditors/AppGerberEditor.py:2570
msgid "Aperture Dim"
msgstr "Dim apertura"
-#: appEditors/FlatCAMGrbEditor.py:2572
+#: appEditors/AppGerberEditor.py:2572
msgid ""
"Dimensions for the new aperture.\n"
"Active only for rectangular apertures (type R).\n"
@@ -3129,19 +3129,19 @@ msgstr ""
"Attivo solo per aperture rettangolari (tipo R).\n"
"Il formato è (larghezza, altezza)"
-#: appEditors/FlatCAMGrbEditor.py:2581
+#: appEditors/AppGerberEditor.py:2581
msgid "Add/Delete Aperture"
msgstr "Aggiungi/Cancella apertura"
-#: appEditors/FlatCAMGrbEditor.py:2583
+#: appEditors/AppGerberEditor.py:2583
msgid "Add/Delete an aperture in the aperture table"
msgstr "Aggiungi/Cancella apertura dalla tabella"
-#: appEditors/FlatCAMGrbEditor.py:2592
+#: appEditors/AppGerberEditor.py:2592
msgid "Add a new aperture to the aperture list."
msgstr "Aggiungi una apertura nella lista aperture."
-#: appEditors/FlatCAMGrbEditor.py:2595 appEditors/FlatCAMGrbEditor.py:2743
+#: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743
#: appGUI/MainGUI.py:748 appGUI/MainGUI.py:1068 appGUI/MainGUI.py:1527
#: appGUI/MainGUI.py:2099 appGUI/MainGUI.py:4514 appGUI/ObjectUI.py:1525
#: appObjects/FlatCAMGeometry.py:563 appTools/ToolIsolation.py:298
@@ -3152,28 +3152,28 @@ msgstr "Aggiungi una apertura nella lista aperture."
msgid "Delete"
msgstr "Cancella"
-#: appEditors/FlatCAMGrbEditor.py:2597
+#: appEditors/AppGerberEditor.py:2597
msgid "Delete a aperture in the aperture list"
msgstr "Cancella una apertura dalla lista aperture"
-#: appEditors/FlatCAMGrbEditor.py:2614
+#: appEditors/AppGerberEditor.py:2614
msgid "Buffer Aperture"
msgstr "Aperture buffer"
-#: appEditors/FlatCAMGrbEditor.py:2616
+#: appEditors/AppGerberEditor.py:2616
msgid "Buffer a aperture in the aperture list"
msgstr "Buffer di un'apertura nella lista aperture"
-#: appEditors/FlatCAMGrbEditor.py:2629
+#: appEditors/AppGerberEditor.py:2629
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:195
msgid "Buffer distance"
msgstr "Buffer distanza"
-#: appEditors/FlatCAMGrbEditor.py:2630
+#: appEditors/AppGerberEditor.py:2630
msgid "Buffer corner"
msgstr "Buffer angolo"
-#: appEditors/FlatCAMGrbEditor.py:2632
+#: appEditors/AppGerberEditor.py:2632
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded.\n"
@@ -3187,20 +3187,20 @@ msgstr ""
"- \"Smussato\": l'angolo è una linea che collega direttamente le funzioni "
"che si incontrano nell'angolo"
-#: appEditors/FlatCAMGrbEditor.py:2662
+#: appEditors/AppGerberEditor.py:2662
msgid "Scale Aperture"
msgstr "Scala apertura"
-#: appEditors/FlatCAMGrbEditor.py:2664
+#: appEditors/AppGerberEditor.py:2664
msgid "Scale a aperture in the aperture list"
msgstr "Scala apertura nella lista aperture"
-#: appEditors/FlatCAMGrbEditor.py:2672
+#: appEditors/AppGerberEditor.py:2672
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:210
msgid "Scale factor"
msgstr "Fattore di scala"
-#: appEditors/FlatCAMGrbEditor.py:2674
+#: appEditors/AppGerberEditor.py:2674
msgid ""
"The factor by which to scale the selected aperture.\n"
"Values can be between 0.0000 and 999.9999"
@@ -3208,19 +3208,19 @@ msgstr ""
"Il fattore in base al quale ridimensionare l'apertura selezionata.\n"
"I valori possono essere compresi tra 0,0000 e 999,9999"
-#: appEditors/FlatCAMGrbEditor.py:2702
+#: appEditors/AppGerberEditor.py:2702
msgid "Mark polygons"
msgstr "Marchia poligoni"
-#: appEditors/FlatCAMGrbEditor.py:2704
+#: appEditors/AppGerberEditor.py:2704
msgid "Mark the polygon areas."
msgstr "Marchia aree poligoni."
-#: appEditors/FlatCAMGrbEditor.py:2712
+#: appEditors/AppGerberEditor.py:2712
msgid "Area UPPER threshold"
msgstr "Area Soglia SUPERIORE"
-#: appEditors/FlatCAMGrbEditor.py:2714
+#: appEditors/AppGerberEditor.py:2714
msgid ""
"The threshold value, all areas less than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3228,11 +3228,11 @@ msgstr ""
"Il valore di soglia, tutte le aree inferiori a questa sono contrassegnate.\n"
"Può avere un valore compreso tra 0,0000 e 9999,9999"
-#: appEditors/FlatCAMGrbEditor.py:2721
+#: appEditors/AppGerberEditor.py:2721
msgid "Area LOWER threshold"
msgstr "Area Soglia INFERIORE"
-#: appEditors/FlatCAMGrbEditor.py:2723
+#: appEditors/AppGerberEditor.py:2723
msgid ""
"The threshold value, all areas more than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3240,32 +3240,32 @@ msgstr ""
"Il valore di soglia, tutte le aree più di questa sono contrassegnate.\n"
"Può avere un valore compreso tra 0,0000 e 9999,9999"
-#: appEditors/FlatCAMGrbEditor.py:2737
+#: appEditors/AppGerberEditor.py:2737
msgid "Mark"
msgstr "Contrassegna"
-#: appEditors/FlatCAMGrbEditor.py:2739
+#: appEditors/AppGerberEditor.py:2739
msgid "Mark the polygons that fit within limits."
msgstr "Contrassegna i poligoni che rientrano nei limiti."
-#: appEditors/FlatCAMGrbEditor.py:2745
+#: appEditors/AppGerberEditor.py:2745
msgid "Delete all the marked polygons."
msgstr "Cancella i poligoni contrassegnati."
-#: appEditors/FlatCAMGrbEditor.py:2751
+#: appEditors/AppGerberEditor.py:2751
msgid "Clear all the markings."
msgstr "Pulisci tutte le marchiature."
-#: appEditors/FlatCAMGrbEditor.py:2771 appGUI/MainGUI.py:1040
+#: appEditors/AppGerberEditor.py:2771 appGUI/MainGUI.py:1040
#: appGUI/MainGUI.py:2072 appGUI/MainGUI.py:4511
msgid "Add Pad Array"
msgstr "Aggiungi matrice di pad"
-#: appEditors/FlatCAMGrbEditor.py:2773
+#: appEditors/AppGerberEditor.py:2773
msgid "Add an array of pads (linear or circular array)"
msgstr "Aggiunge una matrice di pad (lineare o circolare)"
-#: appEditors/FlatCAMGrbEditor.py:2779
+#: appEditors/AppGerberEditor.py:2779
msgid ""
"Select the type of pads array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -3273,17 +3273,17 @@ msgstr ""
"Seleziona il tipo di array di pad da creare.\n"
"Può essere lineare X(Y) o circolare"
-#: appEditors/FlatCAMGrbEditor.py:2790
+#: appEditors/AppGerberEditor.py:2790
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:95
msgid "Nr of pads"
msgstr "Numero di pad"
-#: appEditors/FlatCAMGrbEditor.py:2792
+#: appEditors/AppGerberEditor.py:2792
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:97
msgid "Specify how many pads to be in the array."
msgstr "Specifica quanti pad inserire nella matrice."
-#: appEditors/FlatCAMGrbEditor.py:2841
+#: appEditors/AppGerberEditor.py:2841
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -3295,13 +3295,13 @@ msgstr ""
"Il valore minimo è: -359,99 gradi.\n"
"Il valore massimo è: 360,00 gradi."
-#: appEditors/FlatCAMGrbEditor.py:3335 appEditors/FlatCAMGrbEditor.py:3339
+#: appEditors/AppGerberEditor.py:3335 appEditors/AppGerberEditor.py:3339
msgid "Aperture code value is missing or wrong format. Add it and retry."
msgstr ""
"Il valore del codice di apertura è mancante o nel formato errato. Aggiungilo "
"e riprova."
-#: appEditors/FlatCAMGrbEditor.py:3375
+#: appEditors/AppGerberEditor.py:3375
msgid ""
"Aperture dimensions value is missing or wrong format. Add it in format "
"(width, height) and retry."
@@ -3309,153 +3309,153 @@ msgstr ""
"Il valore delle dimensioni dell'apertura è mancante o nel formato errato. "
"Aggiungilo nel formato (larghezza, altezza) e riprova."
-#: appEditors/FlatCAMGrbEditor.py:3388
+#: appEditors/AppGerberEditor.py:3388
msgid "Aperture size value is missing or wrong format. Add it and retry."
msgstr ""
"Il valore della dimensione dell'apertura è mancante o nel formato errato. "
"Aggiungilo e riprova."
-#: appEditors/FlatCAMGrbEditor.py:3399
+#: appEditors/AppGerberEditor.py:3399
msgid "Aperture already in the aperture table."
msgstr "Apertura già nella tabella di apertura."
-#: appEditors/FlatCAMGrbEditor.py:3406
+#: appEditors/AppGerberEditor.py:3406
msgid "Added new aperture with code"
msgstr "Aggiunta nuova apertura con codice"
-#: appEditors/FlatCAMGrbEditor.py:3438
+#: appEditors/AppGerberEditor.py:3438
msgid " Select an aperture in Aperture Table"
msgstr " Seleziona un'apertura nella tabella Aperture"
-#: appEditors/FlatCAMGrbEditor.py:3446
+#: appEditors/AppGerberEditor.py:3446
msgid "Select an aperture in Aperture Table -->"
msgstr "Seleziona un'apertura in Tabella apertura ->"
-#: appEditors/FlatCAMGrbEditor.py:3460
+#: appEditors/AppGerberEditor.py:3460
msgid "Deleted aperture with code"
msgstr "Apertura eliminata con codice"
-#: appEditors/FlatCAMGrbEditor.py:3528
+#: appEditors/AppGerberEditor.py:3528
msgid "Dimensions need two float values separated by comma."
msgstr "Le dimensioni necessitano di valori float separati da una virgola."
-#: appEditors/FlatCAMGrbEditor.py:3537
+#: appEditors/AppGerberEditor.py:3537
msgid "Dimensions edited."
msgstr "Dimensioni modificate."
-#: appEditors/FlatCAMGrbEditor.py:4066
+#: appEditors/AppGerberEditor.py:4066
msgid "Loading Gerber into Editor"
msgstr "Caricamento Gerber in Editor"
-#: appEditors/FlatCAMGrbEditor.py:4194
+#: appEditors/AppGerberEditor.py:4194
msgid "Setting up the UI"
msgstr "Impostazione della UI"
-#: appEditors/FlatCAMGrbEditor.py:4195
+#: appEditors/AppGerberEditor.py:4195
msgid "Adding geometry finished. Preparing the GUI"
msgstr "Aggiunta della geometria terminata. Preparazione della GUI"
-#: appEditors/FlatCAMGrbEditor.py:4204
+#: appEditors/AppGerberEditor.py:4204
msgid "Finished loading the Gerber object into the editor."
msgstr "Terminato il caricamento dell'oggetto Gerber nell'editor."
-#: appEditors/FlatCAMGrbEditor.py:4345
+#: appEditors/AppGerberEditor.py:4345
msgid ""
"There are no Aperture definitions in the file. Aborting Gerber creation."
msgstr ""
"Non ci sono definizioni di Aperture nel file. Interruzione della creazione "
"di Gerber."
-#: appEditors/FlatCAMGrbEditor.py:4347 appObjects/AppObject.py:133
+#: appEditors/AppGerberEditor.py:4347 appObjects/AppObject.py:133
#: appObjects/FlatCAMGeometry.py:1786 appParsers/ParseExcellon.py:896
#: appTools/ToolPcbWizard.py:432 app_Main.py:8589 app_Main.py:8653
#: app_Main.py:8784 app_Main.py:8849 app_Main.py:9501
msgid "An internal error has occurred. See shell.\n"
msgstr "Errore interno. Vedi shell.\n"
-#: appEditors/FlatCAMGrbEditor.py:4355
+#: appEditors/AppGerberEditor.py:4355
msgid "Creating Gerber."
msgstr "Creazioen Gerber."
-#: appEditors/FlatCAMGrbEditor.py:4367
+#: appEditors/AppGerberEditor.py:4367
msgid "Done. Gerber editing finished."
msgstr "Fatto. Modifica di Gerber terminata."
-#: appEditors/FlatCAMGrbEditor.py:4383
+#: appEditors/AppGerberEditor.py:4383
msgid "Cancelled. No aperture is selected"
msgstr "Annullato. Nessuna apertura selezionata"
-#: appEditors/FlatCAMGrbEditor.py:4538 app_Main.py:6122
+#: appEditors/AppGerberEditor.py:4538 app_Main.py:6122
msgid "Coordinates copied to clipboard."
msgstr "Coordinate copiate negli appunti."
-#: appEditors/FlatCAMGrbEditor.py:4985
+#: appEditors/AppGerberEditor.py:4985
msgid "Failed. No aperture geometry is selected."
msgstr "Impossibile. Nessuna geometria di apertura selezionata."
-#: appEditors/FlatCAMGrbEditor.py:4994 appEditors/FlatCAMGrbEditor.py:5265
+#: appEditors/AppGerberEditor.py:4994 appEditors/AppGerberEditor.py:5265
msgid "Done. Apertures geometry deleted."
msgstr "Fatto. Geometria delle aperture cancellata."
-#: appEditors/FlatCAMGrbEditor.py:5137
+#: appEditors/AppGerberEditor.py:5137
msgid "No aperture to buffer. Select at least one aperture and try again."
msgstr "Nessuna apertura al buffer. Seleziona almeno un'apertura e riprova."
-#: appEditors/FlatCAMGrbEditor.py:5149
+#: appEditors/AppGerberEditor.py:5149
msgid "Failed."
msgstr "Fallito."
-#: appEditors/FlatCAMGrbEditor.py:5168
+#: appEditors/AppGerberEditor.py:5168
msgid "Scale factor value is missing or wrong format. Add it and retry."
msgstr ""
"Valore del fattore di scala mancante o formato errato. Aggiungilo e riprova."
-#: appEditors/FlatCAMGrbEditor.py:5200
+#: appEditors/AppGerberEditor.py:5200
msgid "No aperture to scale. Select at least one aperture and try again."
msgstr ""
"Nessuna apertura da ridimensionare. Seleziona almeno un'apertura e riprova."
-#: appEditors/FlatCAMGrbEditor.py:5216
+#: appEditors/AppGerberEditor.py:5216
msgid "Done. Scale Tool completed."
msgstr "Fatto. Strumento buffer completato."
-#: appEditors/FlatCAMGrbEditor.py:5254
+#: appEditors/AppGerberEditor.py:5254
msgid "Polygons marked."
msgstr "Poligoni contrassegnati."
-#: appEditors/FlatCAMGrbEditor.py:5257
+#: appEditors/AppGerberEditor.py:5257
msgid "No polygons were marked. None fit within the limits."
msgstr "Nessun poligono contrassegnato. Nessuno risponde ai criteri."
-#: appEditors/FlatCAMGrbEditor.py:5985
+#: appEditors/AppGerberEditor.py:5985
msgid "Rotation action was not executed."
msgstr "Azione rotazione non effettuata."
-#: appEditors/FlatCAMGrbEditor.py:6027 app_Main.py:5556 app_Main.py:5604
+#: appEditors/AppGerberEditor.py:6027 app_Main.py:5556 app_Main.py:5604
msgid "Flip action was not executed."
msgstr "Capovolgimento non eseguito."
-#: appEditors/FlatCAMGrbEditor.py:6067
+#: appEditors/AppGerberEditor.py:6067
msgid "Skew action was not executed."
msgstr "Azione inclinazione non effettuata."
-#: appEditors/FlatCAMGrbEditor.py:6106
+#: appEditors/AppGerberEditor.py:6106
msgid "Scale action was not executed."
msgstr "Azione riscalatura non effettuata."
-#: appEditors/FlatCAMGrbEditor.py:6150
+#: appEditors/AppGerberEditor.py:6150
msgid "Offset action was not executed."
msgstr "Offset non applicato."
-#: appEditors/FlatCAMGrbEditor.py:6236
+#: appEditors/AppGerberEditor.py:6236
msgid "Geometry shape offset Y cancelled"
msgstr "Offset su forme geometria su asse Y annullato"
-#: appEditors/FlatCAMGrbEditor.py:6251
+#: appEditors/AppGerberEditor.py:6251
msgid "Geometry shape skew X cancelled"
msgstr "Offset su forme geometria su asse X annullato"
-#: appEditors/FlatCAMGrbEditor.py:6266
+#: appEditors/AppGerberEditor.py:6266
msgid "Geometry shape skew Y cancelled"
msgstr "Inclinazione su asse Y annullato"
diff --git a/locale/pt_BR/LC_MESSAGES/strings.po b/locale/pt_BR/LC_MESSAGES/strings.po
index a0c5b555..2ed7206d 100644
--- a/locale/pt_BR/LC_MESSAGES/strings.po
+++ b/locale/pt_BR/LC_MESSAGES/strings.po
@@ -101,8 +101,8 @@ msgid "Bookmarks"
msgstr "Favoritos"
#: Bookmark.py:300 Bookmark.py:342 appDatabase.py:665 appDatabase.py:711
-#: appDatabase.py:2279 appDatabase.py:2325 appEditors/FlatCAMExcEditor.py:1023
-#: appEditors/FlatCAMExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
+#: appDatabase.py:2279 appDatabase.py:2325 appEditors/AppExcEditor.py:1023
+#: appEditors/AppExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
#: appGUI/MainGUI.py:2730 appGUI/MainGUI.py:2952 appGUI/MainGUI.py:3167
#: appObjects/ObjectCollection.py:127 appTools/ToolFilm.py:739
#: appTools/ToolFilm.py:885 appTools/ToolImage.py:247 appTools/ToolMove.py:269
@@ -173,7 +173,7 @@ msgstr ""
"Zona adicionada. Clique para iniciar a adição da próxima zona ou clique com "
"o botão direito para terminar."
-#: Common.py:322 appEditors/appGeoEditor.py:2352
+#: Common.py:322 appEditors/AppGeoEditor.py:2352
#: appTools/ToolIsolation.py:2584 appTools/ToolNCC.py:1754
#: appTools/ToolPaint.py:1647
msgid "Click on next Point or click right mouse button to complete ..."
@@ -281,7 +281,7 @@ msgid "Tool Name"
msgstr "Nome da Ferramenta"
#: appDatabase.py:161 appDatabase.py:837 appDatabase.py:1119
-#: appEditors/FlatCAMExcEditor.py:1604 appGUI/ObjectUI.py:1226
+#: appEditors/AppExcEditor.py:1604 appGUI/ObjectUI.py:1226
#: appGUI/ObjectUI.py:1480
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:132
#: appTools/ToolIsolation.py:260 appTools/ToolNCC.py:278
@@ -841,7 +841,7 @@ msgstr ""
"Se não for bem-sucedida, a retirada de cobre também falhará.\n"
"- Limpar -> retirada de cobre padrão."
-#: appDatabase.py:1427 appEditors/FlatCAMGrbEditor.py:2749
+#: appDatabase.py:1427 appEditors/AppGerberEditor.py:2749
#: appGUI/GUIElements.py:2765 appTools/ToolNCC.py:350
msgid "Clear"
msgstr "Limpar"
@@ -893,7 +893,7 @@ msgid "Conventional"
msgstr "Convencional"
#: appDatabase.py:1456 appDatabase.py:1565 appDatabase.py:1667
-#: appEditors/appGeoEditor.py:450
+#: appEditors/AppGeoEditor.py:450
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:167
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:182
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:163
@@ -921,7 +921,7 @@ msgstr ""
"Valores maiores = processamento lento e execução lenta no CNC devido\n"
"ao número de caminhos."
-#: appDatabase.py:1477 appDatabase.py:1586 appEditors/appGeoEditor.py:470
+#: appDatabase.py:1477 appDatabase.py:1586 appEditors/AppGeoEditor.py:470
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:72
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:229
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:59
@@ -950,7 +950,7 @@ msgstr "Margem"
msgid "Bounding box margin."
msgstr "Margem da caixa delimitadora."
-#: appDatabase.py:1490 appDatabase.py:1601 appEditors/appGeoEditor.py:484
+#: appDatabase.py:1490 appDatabase.py:1601 appEditors/AppGeoEditor.py:484
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:105
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:106
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:215
@@ -973,7 +973,7 @@ msgstr ""
"- Baseado em semente: Para fora a partir de uma semente.\n"
"- Linhas retas: Linhas paralelas."
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2232 appTools/ToolNCC.py:2764
@@ -983,8 +983,8 @@ msgstr ""
msgid "Standard"
msgstr "Padrão"
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:568 appEditors/appGeoEditor.py:5091
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:568 appEditors/AppGeoEditor.py:5091
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2243 appTools/ToolNCC.py:2770
@@ -995,8 +995,8 @@ msgstr "Padrão"
msgid "Seed"
msgstr "Semente"
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:5095
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:5095
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2254 appTools/ToolPaint.py:389
@@ -1020,7 +1020,7 @@ msgstr "Combo"
msgid "Connect"
msgstr "Conectar"
-#: appDatabase.py:1512 appDatabase.py:1629 appEditors/appGeoEditor.py:507
+#: appDatabase.py:1512 appDatabase.py:1629 appEditors/AppGeoEditor.py:507
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:239
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:226
#: appTools/ToolNCC.py:443 appTools/ToolPaint.py:403
@@ -1038,7 +1038,7 @@ msgstr ""
msgid "Contour"
msgstr "Contorno"
-#: appDatabase.py:1522 appDatabase.py:1636 appEditors/appGeoEditor.py:517
+#: appDatabase.py:1522 appDatabase.py:1636 appEditors/AppGeoEditor.py:517
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:248
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:234
#: appTools/ToolNCC.py:453 appTools/ToolPaint.py:410
@@ -1047,8 +1047,8 @@ msgid ""
"to trim rough edges."
msgstr "Corta no perímetro do polígono para retirar as arestas."
-#: appDatabase.py:1528 appEditors/appGeoEditor.py:611
-#: appEditors/FlatCAMGrbEditor.py:5304 appGUI/ObjectUI.py:143
+#: appDatabase.py:1528 appEditors/AppGeoEditor.py:611
+#: appEditors/AppGerberEditor.py:5304 appGUI/ObjectUI.py:143
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:255
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:183
@@ -1069,7 +1069,7 @@ msgstr ""
"A retirada de cobre terminará a uma distância dos recursos de cobre.\n"
"O valor pode estar entre 0 e 10 unidades FlatCAM."
-#: appDatabase.py:1567 appEditors/appGeoEditor.py:452
+#: appDatabase.py:1567 appEditors/AppGeoEditor.py:452
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:165
#: appTools/ToolPaint.py:330
msgid ""
@@ -1089,7 +1089,7 @@ msgstr ""
"Valores maiores = processamento lento e execução lenta no CNC \n"
"devido ao número de caminhos."
-#: appDatabase.py:1588 appEditors/appGeoEditor.py:472
+#: appDatabase.py:1588 appEditors/AppGeoEditor.py:472
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:185
#: appTools/ToolPaint.py:351
msgid ""
@@ -1235,139 +1235,139 @@ msgstr ""
"objeto/aplicação após selecionar uma ferramenta\n"
"no banco de dados de ferramentas."
-#: appEditors/FlatCAMExcEditor.py:50 appEditors/FlatCAMExcEditor.py:74
-#: appEditors/FlatCAMExcEditor.py:168 appEditors/FlatCAMExcEditor.py:385
-#: appEditors/FlatCAMExcEditor.py:589 appEditors/FlatCAMGrbEditor.py:241
-#: appEditors/FlatCAMGrbEditor.py:248
+#: appEditors/AppExcEditor.py:50 appEditors/AppExcEditor.py:74
+#: appEditors/AppExcEditor.py:168 appEditors/AppExcEditor.py:385
+#: appEditors/AppExcEditor.py:589 appEditors/AppGerberEditor.py:241
+#: appEditors/AppGerberEditor.py:248
msgid "Click to place ..."
msgstr "Clique para colocar ..."
-#: appEditors/FlatCAMExcEditor.py:58
+#: appEditors/AppExcEditor.py:58
msgid "To add a drill first select a tool"
msgstr "Para adicionar um furo, primeiro selecione uma ferramenta"
-#: appEditors/FlatCAMExcEditor.py:122
+#: appEditors/AppExcEditor.py:122
msgid "Done. Drill added."
msgstr "Feito. Furo adicionado."
-#: appEditors/FlatCAMExcEditor.py:176
+#: appEditors/AppExcEditor.py:176
msgid "To add an Drill Array first select a tool in Tool Table"
msgstr ""
"Para adicionar um Matriz de Furos, primeiro selecione uma ferramenta na "
"Tabela de Ferramentas"
-#: appEditors/FlatCAMExcEditor.py:192 appEditors/FlatCAMExcEditor.py:415
-#: appEditors/FlatCAMExcEditor.py:636 appEditors/FlatCAMExcEditor.py:1151
-#: appEditors/FlatCAMExcEditor.py:1178 appEditors/FlatCAMGrbEditor.py:471
-#: appEditors/FlatCAMGrbEditor.py:1944 appEditors/FlatCAMGrbEditor.py:1974
+#: appEditors/AppExcEditor.py:192 appEditors/AppExcEditor.py:415
+#: appEditors/AppExcEditor.py:636 appEditors/AppExcEditor.py:1151
+#: appEditors/AppExcEditor.py:1178 appEditors/AppGerberEditor.py:471
+#: appEditors/AppGerberEditor.py:1944 appEditors/AppGerberEditor.py:1974
msgid "Click on target location ..."
msgstr "Clique no local de destino ..."
-#: appEditors/FlatCAMExcEditor.py:211
+#: appEditors/AppExcEditor.py:211
msgid "Click on the Drill Circular Array Start position"
msgstr "Clique na posição inicial da Matriz Circular de Furos"
-#: appEditors/FlatCAMExcEditor.py:233 appEditors/FlatCAMExcEditor.py:677
-#: appEditors/FlatCAMGrbEditor.py:516
+#: appEditors/AppExcEditor.py:233 appEditors/AppExcEditor.py:677
+#: appEditors/AppGerberEditor.py:516
msgid "The value is not Float. Check for comma instead of dot separator."
msgstr ""
"O valor não é flutuante. Verifique se há uma vírgula em vez do ponto no "
"separador decimal."
-#: appEditors/FlatCAMExcEditor.py:237
+#: appEditors/AppExcEditor.py:237
msgid "The value is mistyped. Check the value"
msgstr "O valor foi digitado incorretamente. Verifique o valor"
-#: appEditors/FlatCAMExcEditor.py:336
+#: appEditors/AppExcEditor.py:336
msgid "Too many drills for the selected spacing angle."
msgstr "Muitos furos para o ângulo de espaçamento selecionado."
-#: appEditors/FlatCAMExcEditor.py:354
+#: appEditors/AppExcEditor.py:354
msgid "Done. Drill Array added."
msgstr "Matriz de Furos adicionada."
-#: appEditors/FlatCAMExcEditor.py:394
+#: appEditors/AppExcEditor.py:394
msgid "To add a slot first select a tool"
msgstr "Para adicionar um ranhura, primeiro selecione uma ferramenta"
-#: appEditors/FlatCAMExcEditor.py:454 appEditors/FlatCAMExcEditor.py:461
-#: appEditors/FlatCAMExcEditor.py:742 appEditors/FlatCAMExcEditor.py:749
+#: appEditors/AppExcEditor.py:454 appEditors/AppExcEditor.py:461
+#: appEditors/AppExcEditor.py:742 appEditors/AppExcEditor.py:749
msgid "Value is missing or wrong format. Add it and retry."
msgstr "Valor está faltando ou formato errado. Adicione e tente novamente."
-#: appEditors/FlatCAMExcEditor.py:559
+#: appEditors/AppExcEditor.py:559
msgid "Done. Adding Slot completed."
msgstr "Feito. Ranhura adicionada."
-#: appEditors/FlatCAMExcEditor.py:597
+#: appEditors/AppExcEditor.py:597
msgid "To add an Slot Array first select a tool in Tool Table"
msgstr ""
"Para adicionar uma matriz de ranhuras, primeiro selecione uma ferramenta na "
"Tabela de Ferramentas"
-#: appEditors/FlatCAMExcEditor.py:655
+#: appEditors/AppExcEditor.py:655
msgid "Click on the Slot Circular Array Start position"
msgstr "Clique na posição inicial da matriz circular da ranhura"
-#: appEditors/FlatCAMExcEditor.py:680 appEditors/FlatCAMGrbEditor.py:519
+#: appEditors/AppExcEditor.py:680 appEditors/AppGerberEditor.py:519
msgid "The value is mistyped. Check the value."
msgstr "O valor digitado está incorreto. Verifique o valor."
-#: appEditors/FlatCAMExcEditor.py:859
+#: appEditors/AppExcEditor.py:859
msgid "Too many Slots for the selected spacing angle."
msgstr "Muitas Ranhuras para o ângulo de espaçamento selecionado."
-#: appEditors/FlatCAMExcEditor.py:882
+#: appEditors/AppExcEditor.py:882
msgid "Done. Slot Array added."
msgstr "Feito. Matriz de Ranhuras adicionada."
-#: appEditors/FlatCAMExcEditor.py:904
+#: appEditors/AppExcEditor.py:904
msgid "Click on the Drill(s) to resize ..."
msgstr "Clique no(s) Furo(s) para redimensionar ..."
-#: appEditors/FlatCAMExcEditor.py:934
+#: appEditors/AppExcEditor.py:934
msgid "Resize drill(s) failed. Please enter a diameter for resize."
msgstr ""
"Redimensionar furo(s) falhou. Por favor insira um diâmetro para "
"redimensionar."
-#: appEditors/FlatCAMExcEditor.py:1112
+#: appEditors/AppExcEditor.py:1112
msgid "Done. Drill/Slot Resize completed."
msgstr "Redimensionamento de furo/ranhura concluído."
-#: appEditors/FlatCAMExcEditor.py:1115
+#: appEditors/AppExcEditor.py:1115
msgid "Cancelled. No drills/slots selected for resize ..."
msgstr "Cancelado. Nenhum furo/ranhura selecionado para redimensionar ..."
-#: appEditors/FlatCAMExcEditor.py:1153 appEditors/FlatCAMGrbEditor.py:1946
+#: appEditors/AppExcEditor.py:1153 appEditors/AppGerberEditor.py:1946
msgid "Click on reference location ..."
msgstr "Clique no local de referência ..."
-#: appEditors/FlatCAMExcEditor.py:1210
+#: appEditors/AppExcEditor.py:1210
msgid "Done. Drill(s) Move completed."
msgstr "Movimento do Furo realizado."
-#: appEditors/FlatCAMExcEditor.py:1318
+#: appEditors/AppExcEditor.py:1318
msgid "Done. Drill(s) copied."
msgstr "Furo(s) copiado(s)."
-#: appEditors/FlatCAMExcEditor.py:1557
+#: appEditors/AppExcEditor.py:1557
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:26
msgid "Excellon Editor"
msgstr "Editor Excellon"
-#: appEditors/FlatCAMExcEditor.py:1564 appEditors/FlatCAMGrbEditor.py:2469
+#: appEditors/AppExcEditor.py:1564 appEditors/AppGerberEditor.py:2469
msgid "Name:"
msgstr "Nome:"
-#: appEditors/FlatCAMExcEditor.py:1570 appGUI/ObjectUI.py:540
+#: appEditors/AppExcEditor.py:1570 appGUI/ObjectUI.py:540
#: appGUI/ObjectUI.py:1362 appTools/ToolIsolation.py:118
#: appTools/ToolNCC.py:120 appTools/ToolPaint.py:114
#: appTools/ToolSolderPaste.py:79
msgid "Tools Table"
msgstr "Tabela de Ferramentas"
-#: appEditors/FlatCAMExcEditor.py:1572 appGUI/ObjectUI.py:542
+#: appEditors/AppExcEditor.py:1572 appGUI/ObjectUI.py:542
msgid ""
"Tools in this Excellon object\n"
"when are used for drilling."
@@ -1375,7 +1375,7 @@ msgstr ""
"Ferramentas neste objeto Excellon \n"
"quando são usadas para perfuração."
-#: appEditors/FlatCAMExcEditor.py:1584 appEditors/FlatCAMExcEditor.py:3041
+#: appEditors/AppExcEditor.py:1584 appEditors/AppExcEditor.py:3041
#: appGUI/ObjectUI.py:560 appObjects/FlatCAMExcellon.py:1265
#: appObjects/FlatCAMExcellon.py:1368 appObjects/FlatCAMExcellon.py:1553
#: appTools/ToolIsolation.py:130 appTools/ToolNCC.py:132
@@ -1385,11 +1385,11 @@ msgstr ""
msgid "Diameter"
msgstr "Diâmetro"
-#: appEditors/FlatCAMExcEditor.py:1592
+#: appEditors/AppExcEditor.py:1592
msgid "Add/Delete Tool"
msgstr "Adicionar/Excluir Ferramenta"
-#: appEditors/FlatCAMExcEditor.py:1594
+#: appEditors/AppExcEditor.py:1594
msgid ""
"Add/Delete a tool to the tool list\n"
"for this Excellon object."
@@ -1397,16 +1397,16 @@ msgstr ""
"Adicionar/Excluir uma ferramenta para a lista de ferramentas\n"
"para este objeto Excellon."
-#: appEditors/FlatCAMExcEditor.py:1606 appGUI/ObjectUI.py:1482
+#: appEditors/AppExcEditor.py:1606 appGUI/ObjectUI.py:1482
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:57
msgid "Diameter for the new tool"
msgstr "Diâmetro da nova ferramenta"
-#: appEditors/FlatCAMExcEditor.py:1616
+#: appEditors/AppExcEditor.py:1616
msgid "Add Tool"
msgstr "Adicionar Ferramenta"
-#: appEditors/FlatCAMExcEditor.py:1618
+#: appEditors/AppExcEditor.py:1618
msgid ""
"Add a new tool to the tool list\n"
"with the diameter specified above."
@@ -1414,11 +1414,11 @@ msgstr ""
"Adiciona uma nova ferramenta à lista de ferramentas\n"
"com o diâmetro especificado acima."
-#: appEditors/FlatCAMExcEditor.py:1630
+#: appEditors/AppExcEditor.py:1630
msgid "Delete Tool"
msgstr "Excluir Ferramenta"
-#: appEditors/FlatCAMExcEditor.py:1632
+#: appEditors/AppExcEditor.py:1632
msgid ""
"Delete a tool in the tool list\n"
"by selecting a row in the tool table."
@@ -1426,40 +1426,40 @@ msgstr ""
"Exclui uma ferramenta da lista de ferramentas selecionando uma linha na "
"tabela de ferramentas."
-#: appEditors/FlatCAMExcEditor.py:1650 appGUI/MainGUI.py:4392
+#: appEditors/AppExcEditor.py:1650 appGUI/MainGUI.py:4392
msgid "Resize Drill(s)"
msgstr "Redimensionar Furo(s)"
-#: appEditors/FlatCAMExcEditor.py:1652
+#: appEditors/AppExcEditor.py:1652
msgid "Resize a drill or a selection of drills."
msgstr "Redimensiona um furo ou uma seleção de furos."
-#: appEditors/FlatCAMExcEditor.py:1659
+#: appEditors/AppExcEditor.py:1659
msgid "Resize Dia"
msgstr "Novo Diâmetro"
-#: appEditors/FlatCAMExcEditor.py:1661
+#: appEditors/AppExcEditor.py:1661
msgid "Diameter to resize to."
msgstr "Novo diâmetro para redimensionar."
-#: appEditors/FlatCAMExcEditor.py:1672
+#: appEditors/AppExcEditor.py:1672
msgid "Resize"
msgstr "Redimensionar"
-#: appEditors/FlatCAMExcEditor.py:1674
+#: appEditors/AppExcEditor.py:1674
msgid "Resize drill(s)"
msgstr "Redimensionar furo(s)"
-#: appEditors/FlatCAMExcEditor.py:1699 appGUI/MainGUI.py:1514
+#: appEditors/AppExcEditor.py:1699 appGUI/MainGUI.py:1514
#: appGUI/MainGUI.py:4391
msgid "Add Drill Array"
msgstr "Adicionar Matriz de Furos"
-#: appEditors/FlatCAMExcEditor.py:1701
+#: appEditors/AppExcEditor.py:1701
msgid "Add an array of drills (linear or circular array)"
msgstr "Adiciona uma matriz de furos (matriz linear ou circular)"
-#: appEditors/FlatCAMExcEditor.py:1707
+#: appEditors/AppExcEditor.py:1707
msgid ""
"Select the type of drills array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -1467,13 +1467,13 @@ msgstr ""
"Selecione o tipo de matriz de furos para criar.\n"
"Pode ser Linear X(Y) ou Circular"
-#: appEditors/FlatCAMExcEditor.py:1710 appEditors/FlatCAMExcEditor.py:1924
-#: appEditors/FlatCAMGrbEditor.py:2782
+#: appEditors/AppExcEditor.py:1710 appEditors/AppExcEditor.py:1924
+#: appEditors/AppGerberEditor.py:2782
msgid "Linear"
msgstr "Linear"
-#: appEditors/FlatCAMExcEditor.py:1711 appEditors/FlatCAMExcEditor.py:1925
-#: appEditors/FlatCAMGrbEditor.py:2783
+#: appEditors/AppExcEditor.py:1711 appEditors/AppExcEditor.py:1925
+#: appEditors/AppGerberEditor.py:2783
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:52
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:149
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:107
@@ -1489,26 +1489,26 @@ msgstr "Linear"
msgid "Circular"
msgstr "Circular"
-#: appEditors/FlatCAMExcEditor.py:1719
+#: appEditors/AppExcEditor.py:1719
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:68
msgid "Nr of drills"
msgstr "Nº de furos"
-#: appEditors/FlatCAMExcEditor.py:1720
+#: appEditors/AppExcEditor.py:1720
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:70
msgid "Specify how many drills to be in the array."
msgstr "Especifique quantos furos devem estar na matriz."
-#: appEditors/FlatCAMExcEditor.py:1738 appEditors/FlatCAMExcEditor.py:1788
-#: appEditors/FlatCAMExcEditor.py:1860 appEditors/FlatCAMExcEditor.py:1953
-#: appEditors/FlatCAMExcEditor.py:2004 appEditors/FlatCAMGrbEditor.py:1580
-#: appEditors/FlatCAMGrbEditor.py:2811 appEditors/FlatCAMGrbEditor.py:2860
+#: appEditors/AppExcEditor.py:1738 appEditors/AppExcEditor.py:1788
+#: appEditors/AppExcEditor.py:1860 appEditors/AppExcEditor.py:1953
+#: appEditors/AppExcEditor.py:2004 appEditors/AppGerberEditor.py:1580
+#: appEditors/AppGerberEditor.py:2811 appEditors/AppGerberEditor.py:2860
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:178
msgid "Direction"
msgstr "Direção"
-#: appEditors/FlatCAMExcEditor.py:1740 appEditors/FlatCAMExcEditor.py:1955
-#: appEditors/FlatCAMGrbEditor.py:2813
+#: appEditors/AppExcEditor.py:1740 appEditors/AppExcEditor.py:1955
+#: appEditors/AppGerberEditor.py:2813
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:86
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:234
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:123
@@ -1523,8 +1523,8 @@ msgstr ""
"- 'Y' - eixo vertical ou\n"
"- 'Ângulo' - um ângulo personalizado para a inclinação da matriz"
-#: appEditors/FlatCAMExcEditor.py:1747 appEditors/FlatCAMExcEditor.py:1869
-#: appEditors/FlatCAMExcEditor.py:1962 appEditors/FlatCAMGrbEditor.py:2820
+#: appEditors/AppExcEditor.py:1747 appEditors/AppExcEditor.py:1869
+#: appEditors/AppExcEditor.py:1962 appEditors/AppGerberEditor.py:2820
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:240
@@ -1534,8 +1534,8 @@ msgstr ""
msgid "X"
msgstr "X"
-#: appEditors/FlatCAMExcEditor.py:1748 appEditors/FlatCAMExcEditor.py:1870
-#: appEditors/FlatCAMExcEditor.py:1963 appEditors/FlatCAMGrbEditor.py:2821
+#: appEditors/AppExcEditor.py:1748 appEditors/AppExcEditor.py:1870
+#: appEditors/AppExcEditor.py:1963 appEditors/AppGerberEditor.py:2821
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:241
@@ -1545,13 +1545,13 @@ msgstr "X"
msgid "Y"
msgstr "Y"
-#: appEditors/FlatCAMExcEditor.py:1749 appEditors/FlatCAMExcEditor.py:1766
-#: appEditors/FlatCAMExcEditor.py:1800 appEditors/FlatCAMExcEditor.py:1871
-#: appEditors/FlatCAMExcEditor.py:1875 appEditors/FlatCAMExcEditor.py:1964
-#: appEditors/FlatCAMExcEditor.py:1982 appEditors/FlatCAMExcEditor.py:2016
-#: appEditors/appGeoEditor.py:683 appEditors/FlatCAMGrbEditor.py:2822
-#: appEditors/FlatCAMGrbEditor.py:2839 appEditors/FlatCAMGrbEditor.py:2875
-#: appEditors/FlatCAMGrbEditor.py:5376
+#: appEditors/AppExcEditor.py:1749 appEditors/AppExcEditor.py:1766
+#: appEditors/AppExcEditor.py:1800 appEditors/AppExcEditor.py:1871
+#: appEditors/AppExcEditor.py:1875 appEditors/AppExcEditor.py:1964
+#: appEditors/AppExcEditor.py:1982 appEditors/AppExcEditor.py:2016
+#: appEditors/AppGeoEditor.py:683 appEditors/AppGerberEditor.py:2822
+#: appEditors/AppGerberEditor.py:2839 appEditors/AppGerberEditor.py:2875
+#: appEditors/AppGerberEditor.py:5376
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:94
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:113
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:189
@@ -1566,23 +1566,23 @@ msgstr "Y"
msgid "Angle"
msgstr "Ângulo"
-#: appEditors/FlatCAMExcEditor.py:1753 appEditors/FlatCAMExcEditor.py:1968
-#: appEditors/FlatCAMGrbEditor.py:2826
+#: appEditors/AppExcEditor.py:1753 appEditors/AppExcEditor.py:1968
+#: appEditors/AppGerberEditor.py:2826
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:100
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:248
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:137
msgid "Pitch"
msgstr "Passo"
-#: appEditors/FlatCAMExcEditor.py:1755 appEditors/FlatCAMExcEditor.py:1970
-#: appEditors/FlatCAMGrbEditor.py:2828
+#: appEditors/AppExcEditor.py:1755 appEditors/AppExcEditor.py:1970
+#: appEditors/AppGerberEditor.py:2828
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:102
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:250
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:139
msgid "Pitch = Distance between elements of the array."
msgstr "Passo = Distância entre os elementos da matriz."
-#: appEditors/FlatCAMExcEditor.py:1768 appEditors/FlatCAMExcEditor.py:1984
+#: appEditors/AppExcEditor.py:1768 appEditors/AppExcEditor.py:1984
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1594,16 +1594,16 @@ msgstr ""
"Valor mínimo: -360.00 graus.\n"
"Valor máximo: 360.00 graus."
-#: appEditors/FlatCAMExcEditor.py:1789 appEditors/FlatCAMExcEditor.py:2005
-#: appEditors/FlatCAMGrbEditor.py:2862
+#: appEditors/AppExcEditor.py:1789 appEditors/AppExcEditor.py:2005
+#: appEditors/AppGerberEditor.py:2862
msgid ""
"Direction for circular array.Can be CW = clockwise or CCW = counter "
"clockwise."
msgstr ""
"Sentido da matriz circular. Pode ser CW = horário ou CCW = anti-horário."
-#: appEditors/FlatCAMExcEditor.py:1796 appEditors/FlatCAMExcEditor.py:2012
-#: appEditors/FlatCAMGrbEditor.py:2870
+#: appEditors/AppExcEditor.py:1796 appEditors/AppExcEditor.py:2012
+#: appEditors/AppGerberEditor.py:2870
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:129
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:136
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:286
@@ -1612,8 +1612,8 @@ msgstr ""
msgid "CW"
msgstr "CW"
-#: appEditors/FlatCAMExcEditor.py:1797 appEditors/FlatCAMExcEditor.py:2013
-#: appEditors/FlatCAMGrbEditor.py:2871
+#: appEditors/AppExcEditor.py:1797 appEditors/AppExcEditor.py:2013
+#: appEditors/AppGerberEditor.py:2871
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:130
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:137
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:287
@@ -1622,8 +1622,8 @@ msgstr "CW"
msgid "CCW"
msgstr "CCW"
-#: appEditors/FlatCAMExcEditor.py:1801 appEditors/FlatCAMExcEditor.py:2017
-#: appEditors/FlatCAMGrbEditor.py:2877
+#: appEditors/AppExcEditor.py:1801 appEditors/AppExcEditor.py:2017
+#: appEditors/AppGerberEditor.py:2877
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:115
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:145
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:265
@@ -1633,11 +1633,11 @@ msgstr "CCW"
msgid "Angle at which each element in circular array is placed."
msgstr "Ângulo no qual cada elemento na matriz circular é colocado."
-#: appEditors/FlatCAMExcEditor.py:1835
+#: appEditors/AppExcEditor.py:1835
msgid "Slot Parameters"
msgstr "Parâmetros de Ranhura"
-#: appEditors/FlatCAMExcEditor.py:1837
+#: appEditors/AppExcEditor.py:1837
msgid ""
"Parameters for adding a slot (hole with oval shape)\n"
"either single or as an part of an array."
@@ -1645,19 +1645,19 @@ msgstr ""
"Parâmetros para adicionar uma ranhura (furo com forma oval),\n"
"tanto única quanto parte de uma matriz."
-#: appEditors/FlatCAMExcEditor.py:1846
+#: appEditors/AppExcEditor.py:1846
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:162
#: appGUI/preferences/tools/ToolsCornersPrefGroupUI.py:56
#: appTools/ToolCorners.py:136 appTools/ToolProperties.py:559
msgid "Length"
msgstr "Comprimento"
-#: appEditors/FlatCAMExcEditor.py:1848
+#: appEditors/AppExcEditor.py:1848
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:164
msgid "Length = The length of the slot."
msgstr "Comprimento = o comprimento da ranhura."
-#: appEditors/FlatCAMExcEditor.py:1862
+#: appEditors/AppExcEditor.py:1862
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:180
msgid ""
"Direction on which the slot is oriented:\n"
@@ -1670,7 +1670,7 @@ msgstr ""
"- 'Y' - eixo vertical ou\n"
"- 'Angle' - um ângulo personalizado para a inclinação da ranhura"
-#: appEditors/FlatCAMExcEditor.py:1877
+#: appEditors/AppExcEditor.py:1877
msgid ""
"Angle at which the slot is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1682,15 +1682,15 @@ msgstr ""
"Valor mínimo: -360.00 graus.\n"
"Valor máximo: 360.00 graus."
-#: appEditors/FlatCAMExcEditor.py:1910
+#: appEditors/AppExcEditor.py:1910
msgid "Slot Array Parameters"
msgstr "Parâm. da matriz de ranhuras"
-#: appEditors/FlatCAMExcEditor.py:1912
+#: appEditors/AppExcEditor.py:1912
msgid "Parameters for the array of slots (linear or circular array)"
msgstr "Parâmetros da matriz de ranhuras (matriz linear ou circular)"
-#: appEditors/FlatCAMExcEditor.py:1921
+#: appEditors/AppExcEditor.py:1921
msgid ""
"Select the type of slot array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -1698,25 +1698,25 @@ msgstr ""
"Selecione o tipo de matriz de ranhuras para criar.\n"
"Pode ser Linear X(Y) ou Circular"
-#: appEditors/FlatCAMExcEditor.py:1933
+#: appEditors/AppExcEditor.py:1933
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:219
msgid "Nr of slots"
msgstr "Nº de ranhuras"
-#: appEditors/FlatCAMExcEditor.py:1934
+#: appEditors/AppExcEditor.py:1934
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:221
msgid "Specify how many slots to be in the array."
msgstr "Especifique o número de ranhuras da matriz."
-#: appEditors/FlatCAMExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
+#: appEditors/AppExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
msgid "Total Drills"
msgstr "N° Furos"
-#: appEditors/FlatCAMExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
+#: appEditors/AppExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
msgid "Total Slots"
msgstr "N° Ranhuras"
-#: appEditors/FlatCAMExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
+#: appEditors/AppExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
#: appObjects/FlatCAMGeometry.py:1099 appObjects/FlatCAMGeometry.py:1841
#: appObjects/FlatCAMGeometry.py:2491 appTools/ToolIsolation.py:1526
#: appTools/ToolNCC.py:1516 appTools/ToolPaint.py:1268
@@ -1725,7 +1725,7 @@ msgstr "N° Ranhuras"
msgid "Wrong value format entered, use a number."
msgstr "Formato incorreto, use um número."
-#: appEditors/FlatCAMExcEditor.py:2570
+#: appEditors/AppExcEditor.py:2570
msgid ""
"Tool already in the original or actual tool list.\n"
"Save and reedit Excellon if you need to add this tool. "
@@ -1733,72 +1733,72 @@ msgstr ""
"Ferramenta já na lista de ferramentas original ou atual.\n"
"Salve e reedite Excellon se precisar adicionar essa ferramenta. "
-#: appEditors/FlatCAMExcEditor.py:2579 appGUI/MainGUI.py:3364
+#: appEditors/AppExcEditor.py:2579 appGUI/MainGUI.py:3364
msgid "Added new tool with dia"
msgstr "Adicionada nova ferramenta com diâmetro"
-#: appEditors/FlatCAMExcEditor.py:2612
+#: appEditors/AppExcEditor.py:2612
msgid "Select a tool in Tool Table"
msgstr "Selecione uma ferramenta na Tabela de Ferramentas"
-#: appEditors/FlatCAMExcEditor.py:2642
+#: appEditors/AppExcEditor.py:2642
msgid "Deleted tool with diameter"
msgstr "Ferramenta excluída com diâmetro"
-#: appEditors/FlatCAMExcEditor.py:2790
+#: appEditors/AppExcEditor.py:2790
msgid "Done. Tool edit completed."
msgstr "Edição de ferramenta concluída."
-#: appEditors/FlatCAMExcEditor.py:3327
+#: appEditors/AppExcEditor.py:3327
msgid "There are no Tools definitions in the file. Aborting Excellon creation."
msgstr ""
"Não há definições de ferramentas no arquivo. Abortando a criação do Excellon."
-#: appEditors/FlatCAMExcEditor.py:3331
+#: appEditors/AppExcEditor.py:3331
msgid "An internal error has ocurred. See Shell.\n"
msgstr "Ocorreu um erro interno. Veja shell (linha de comando).\n"
-#: appEditors/FlatCAMExcEditor.py:3336
+#: appEditors/AppExcEditor.py:3336
msgid "Creating Excellon."
msgstr "Criando Excellon."
-#: appEditors/FlatCAMExcEditor.py:3350
+#: appEditors/AppExcEditor.py:3350
msgid "Excellon editing finished."
msgstr "Edição de Excellon concluída."
-#: appEditors/FlatCAMExcEditor.py:3367
+#: appEditors/AppExcEditor.py:3367
msgid "Cancelled. There is no Tool/Drill selected"
msgstr "Cancelado. Não há ferramenta/broca selecionada"
-#: appEditors/FlatCAMExcEditor.py:3601 appEditors/FlatCAMExcEditor.py:3609
-#: appEditors/appGeoEditor.py:4286 appEditors/appGeoEditor.py:4300
-#: appEditors/FlatCAMGrbEditor.py:1085 appEditors/FlatCAMGrbEditor.py:1312
-#: appEditors/FlatCAMGrbEditor.py:1497 appEditors/FlatCAMGrbEditor.py:1766
-#: appEditors/FlatCAMGrbEditor.py:4608 appEditors/FlatCAMGrbEditor.py:4625
+#: appEditors/AppExcEditor.py:3601 appEditors/AppExcEditor.py:3609
+#: appEditors/AppGeoEditor.py:4286 appEditors/AppGeoEditor.py:4300
+#: appEditors/AppGerberEditor.py:1085 appEditors/AppGerberEditor.py:1312
+#: appEditors/AppGerberEditor.py:1497 appEditors/AppGerberEditor.py:1766
+#: appEditors/AppGerberEditor.py:4608 appEditors/AppGerberEditor.py:4625
#: appGUI/MainGUI.py:2711 appGUI/MainGUI.py:2723
#: appTools/ToolAlignObjects.py:393 appTools/ToolAlignObjects.py:415
#: app_Main.py:4800 app_Main.py:4954
msgid "Done."
msgstr "Pronto."
-#: appEditors/FlatCAMExcEditor.py:3984
+#: appEditors/AppExcEditor.py:3984
msgid "Done. Drill(s) deleted."
msgstr "Furo(s) excluída(s)."
-#: appEditors/FlatCAMExcEditor.py:4057 appEditors/FlatCAMExcEditor.py:4067
-#: appEditors/FlatCAMGrbEditor.py:5056
+#: appEditors/AppExcEditor.py:4057 appEditors/AppExcEditor.py:4067
+#: appEditors/AppGerberEditor.py:5056
msgid "Click on the circular array Center position"
msgstr "Clique na posição central da matriz circular"
-#: appEditors/appGeoEditor.py:84
+#: appEditors/AppGeoEditor.py:84
msgid "Buffer distance:"
msgstr "Distância do buffer:"
-#: appEditors/appGeoEditor.py:85
+#: appEditors/AppGeoEditor.py:85
msgid "Buffer corner:"
msgstr "Canto do buffer:"
-#: appEditors/appGeoEditor.py:87
+#: appEditors/AppGeoEditor.py:87
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded for exterior buffer.\n"
@@ -1812,11 +1812,11 @@ msgstr ""
"- 'Chanfrado:' o canto é uma linha que conecta diretamente os recursos "
"encontrados no canto"
-#: appEditors/appGeoEditor.py:93 appEditors/FlatCAMGrbEditor.py:2638
+#: appEditors/AppGeoEditor.py:93 appEditors/AppGerberEditor.py:2638
msgid "Round"
msgstr "Redondo"
-#: appEditors/appGeoEditor.py:94 appEditors/FlatCAMGrbEditor.py:2639
+#: appEditors/AppGeoEditor.py:94 appEditors/AppGerberEditor.py:2639
#: appGUI/ObjectUI.py:1149 appGUI/ObjectUI.py:2004
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:225
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:68
@@ -1834,50 +1834,50 @@ msgstr "Redondo"
msgid "Square"
msgstr "Quadrado"
-#: appEditors/appGeoEditor.py:95 appEditors/FlatCAMGrbEditor.py:2640
+#: appEditors/AppGeoEditor.py:95 appEditors/AppGerberEditor.py:2640
msgid "Beveled"
msgstr "Chanfrado"
-#: appEditors/appGeoEditor.py:102
+#: appEditors/AppGeoEditor.py:102
msgid "Buffer Interior"
msgstr "Buffer Interior"
-#: appEditors/appGeoEditor.py:104
+#: appEditors/AppGeoEditor.py:104
msgid "Buffer Exterior"
msgstr "Buffer Exterior"
-#: appEditors/appGeoEditor.py:110
+#: appEditors/AppGeoEditor.py:110
msgid "Full Buffer"
msgstr "Buffer Completo"
-#: appEditors/appGeoEditor.py:131 appEditors/appGeoEditor.py:2959
+#: appEditors/AppGeoEditor.py:131 appEditors/AppGeoEditor.py:2959
#: appGUI/MainGUI.py:4301
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:191
msgid "Buffer Tool"
msgstr "Ferramenta Buffer"
-#: appEditors/appGeoEditor.py:143 appEditors/appGeoEditor.py:160
-#: appEditors/appGeoEditor.py:177 appEditors/appGeoEditor.py:2978
-#: appEditors/appGeoEditor.py:3006 appEditors/appGeoEditor.py:3034
-#: appEditors/FlatCAMGrbEditor.py:5109
+#: appEditors/AppGeoEditor.py:143 appEditors/AppGeoEditor.py:160
+#: appEditors/AppGeoEditor.py:177 appEditors/AppGeoEditor.py:2978
+#: appEditors/AppGeoEditor.py:3006 appEditors/AppGeoEditor.py:3034
+#: appEditors/AppGerberEditor.py:5109
msgid "Buffer distance value is missing or wrong format. Add it and retry."
msgstr ""
"O valor da distância do buffer está ausente ou em formato incorreto. Altere "
"e tente novamente."
-#: appEditors/appGeoEditor.py:241
+#: appEditors/AppGeoEditor.py:241
msgid "Font"
msgstr "Fonte"
-#: appEditors/appGeoEditor.py:322 appGUI/MainGUI.py:1452
+#: appEditors/AppGeoEditor.py:322 appGUI/MainGUI.py:1452
msgid "Text"
msgstr "Texto"
-#: appEditors/appGeoEditor.py:348
+#: appEditors/AppGeoEditor.py:348
msgid "Text Tool"
msgstr "Ferramenta de Texto"
-#: appEditors/appGeoEditor.py:404 appGUI/MainGUI.py:502
+#: appEditors/AppGeoEditor.py:404 appGUI/MainGUI.py:502
#: appGUI/MainGUI.py:1199 appGUI/ObjectUI.py:597 appGUI/ObjectUI.py:1564
#: appObjects/FlatCAMExcellon.py:852 appObjects/FlatCAMExcellon.py:1242
#: appObjects/FlatCAMGeometry.py:825 appTools/ToolIsolation.py:313
@@ -1886,15 +1886,15 @@ msgstr "Ferramenta de Texto"
msgid "Tool"
msgstr "Ferramenta"
-#: appEditors/appGeoEditor.py:438
+#: appEditors/AppGeoEditor.py:438
msgid "Tool dia"
msgstr "Diâmetro da Ferramenta"
-#: appEditors/appGeoEditor.py:440
+#: appEditors/AppGeoEditor.py:440
msgid "Diameter of the tool to be used in the operation."
msgstr "Diâmetro da ferramenta para usar na operação."
-#: appEditors/appGeoEditor.py:486
+#: appEditors/AppGeoEditor.py:486
msgid ""
"Algorithm to paint the polygons:\n"
"- Standard: Fixed step inwards.\n"
@@ -1906,58 +1906,58 @@ msgstr ""
"- Baseado em semeste: Para fora a partir de uma semente.\n"
"- Linhas retas: Linhas paralelas."
-#: appEditors/appGeoEditor.py:505
+#: appEditors/AppGeoEditor.py:505
msgid "Connect:"
msgstr "Conectar:"
-#: appEditors/appGeoEditor.py:515
+#: appEditors/AppGeoEditor.py:515
msgid "Contour:"
msgstr "Contorno:"
-#: appEditors/appGeoEditor.py:528 appGUI/MainGUI.py:1456
+#: appEditors/AppGeoEditor.py:528 appGUI/MainGUI.py:1456
msgid "Paint"
msgstr "Pintura"
-#: appEditors/appGeoEditor.py:546 appGUI/MainGUI.py:912
+#: appEditors/AppGeoEditor.py:546 appGUI/MainGUI.py:912
#: appGUI/MainGUI.py:1944 appGUI/ObjectUI.py:2069 appTools/ToolPaint.py:42
#: appTools/ToolPaint.py:737
msgid "Paint Tool"
msgstr "Ferramenta de Pintura"
-#: appEditors/appGeoEditor.py:582 appEditors/appGeoEditor.py:1071
-#: appEditors/appGeoEditor.py:2966 appEditors/appGeoEditor.py:2994
-#: appEditors/appGeoEditor.py:3022 appEditors/appGeoEditor.py:4439
-#: appEditors/FlatCAMGrbEditor.py:5764
+#: appEditors/AppGeoEditor.py:582 appEditors/AppGeoEditor.py:1071
+#: appEditors/AppGeoEditor.py:2966 appEditors/AppGeoEditor.py:2994
+#: appEditors/AppGeoEditor.py:3022 appEditors/AppGeoEditor.py:4439
+#: appEditors/AppGerberEditor.py:5764
msgid "Cancelled. No shape selected."
msgstr "Cancelado. Nenhuma forma selecionada."
-#: appEditors/appGeoEditor.py:595 appEditors/appGeoEditor.py:2984
-#: appEditors/appGeoEditor.py:3012 appEditors/appGeoEditor.py:3040
+#: appEditors/AppGeoEditor.py:595 appEditors/AppGeoEditor.py:2984
+#: appEditors/AppGeoEditor.py:3012 appEditors/AppGeoEditor.py:3040
#: appGUI/preferences/geometry/GeometryGenPrefGroupUI.py:69
#: appTools/ToolProperties.py:117 appTools/ToolProperties.py:162
msgid "Tools"
msgstr "Ferramentas"
-#: appEditors/appGeoEditor.py:606 appEditors/appGeoEditor.py:1035
-#: appEditors/FlatCAMGrbEditor.py:5299 appEditors/FlatCAMGrbEditor.py:5728
+#: appEditors/AppGeoEditor.py:606 appEditors/AppGeoEditor.py:1035
+#: appEditors/AppGerberEditor.py:5299 appEditors/AppGerberEditor.py:5728
#: appGUI/MainGUI.py:935 appGUI/MainGUI.py:1967 appTools/ToolTransform.py:494
msgid "Transform Tool"
msgstr "Ferramenta Transformar"
-#: appEditors/appGeoEditor.py:607 appEditors/appGeoEditor.py:699
-#: appEditors/FlatCAMGrbEditor.py:5300 appEditors/FlatCAMGrbEditor.py:5392
+#: appEditors/AppGeoEditor.py:607 appEditors/AppGeoEditor.py:699
+#: appEditors/AppGerberEditor.py:5300 appEditors/AppGerberEditor.py:5392
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:88
#: appTools/ToolTransform.py:27 appTools/ToolTransform.py:146
msgid "Rotate"
msgstr "Girar"
-#: appEditors/appGeoEditor.py:608 appEditors/FlatCAMGrbEditor.py:5301
+#: appEditors/AppGeoEditor.py:608 appEditors/AppGerberEditor.py:5301
#: appTools/ToolTransform.py:28
msgid "Skew/Shear"
msgstr "Inclinar"
-#: appEditors/appGeoEditor.py:609 appEditors/FlatCAMGrbEditor.py:2687
-#: appEditors/FlatCAMGrbEditor.py:5302 appGUI/MainGUI.py:1057
+#: appEditors/AppGeoEditor.py:609 appEditors/AppGerberEditor.py:2687
+#: appEditors/AppGerberEditor.py:5302 appGUI/MainGUI.py:1057
#: appGUI/MainGUI.py:1499 appGUI/MainGUI.py:2089 appGUI/MainGUI.py:4513
#: appGUI/ObjectUI.py:125
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:147
@@ -1965,13 +1965,13 @@ msgstr "Inclinar"
msgid "Scale"
msgstr "Redimensionar"
-#: appEditors/appGeoEditor.py:610 appEditors/FlatCAMGrbEditor.py:5303
+#: appEditors/AppGeoEditor.py:610 appEditors/AppGerberEditor.py:5303
#: appTools/ToolTransform.py:30
msgid "Mirror (Flip)"
msgstr "Espelhar (Flip)"
-#: appEditors/appGeoEditor.py:612 appEditors/FlatCAMGrbEditor.py:2647
-#: appEditors/FlatCAMGrbEditor.py:5305 appGUI/MainGUI.py:1055
+#: appEditors/AppGeoEditor.py:612 appEditors/AppGerberEditor.py:2647
+#: appEditors/AppGerberEditor.py:5305 appGUI/MainGUI.py:1055
#: appGUI/MainGUI.py:1454 appGUI/MainGUI.py:1497 appGUI/MainGUI.py:2087
#: appGUI/MainGUI.py:4511
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:212
@@ -1979,7 +1979,7 @@ msgstr "Espelhar (Flip)"
msgid "Buffer"
msgstr "Buffer"
-#: appEditors/appGeoEditor.py:643 appEditors/FlatCAMGrbEditor.py:5336
+#: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5336
#: appGUI/GUIElements.py:2701
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44
@@ -1988,7 +1988,7 @@ msgstr "Buffer"
msgid "Reference"
msgstr "Referência"
-#: appEditors/appGeoEditor.py:645 appEditors/FlatCAMGrbEditor.py:5338
+#: appEditors/AppGeoEditor.py:645 appEditors/AppGerberEditor.py:5338
msgid ""
"The reference point for Rotate, Skew, Scale, Mirror.\n"
"Can be:\n"
@@ -2005,15 +2005,15 @@ msgstr ""
"- Ponto -> um ponto personalizado definido pelas coordenadas X, Y\n"
"- Seleção mínima -> o ponto (minx, miny) da caixa delimitadora da seleção"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appTools/ToolCalibration.py:770 appTools/ToolCalibration.py:771
#: appTools/ToolTransform.py:70
msgid "Origin"
msgstr "Origem"
-#: appEditors/appGeoEditor.py:653 appEditors/appGeoEditor.py:1044
-#: appEditors/FlatCAMGrbEditor.py:5346 appEditors/FlatCAMGrbEditor.py:5737
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGeoEditor.py:1044
+#: appEditors/AppGerberEditor.py:5346 appEditors/AppGerberEditor.py:5737
#: appGUI/preferences/general/GeneralGUIPrefGroupUI.py:250
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:275
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:311
@@ -2024,7 +2024,7 @@ msgstr "Origem"
msgid "Selection"
msgstr "Seleção"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/Tools2sidedPrefGroupUI.py:80
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:60
@@ -2032,12 +2032,12 @@ msgstr "Seleção"
msgid "Point"
msgstr "Ponto"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
msgid "Minimum"
msgstr "Mínimo"
-#: appEditors/appGeoEditor.py:659 appEditors/appGeoEditor.py:955
-#: appEditors/FlatCAMGrbEditor.py:5352 appEditors/FlatCAMGrbEditor.py:5648
+#: appEditors/AppGeoEditor.py:659 appEditors/AppGeoEditor.py:955
+#: appEditors/AppGerberEditor.py:5352 appEditors/AppGerberEditor.py:5648
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:131
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:133
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:243
@@ -2047,14 +2047,14 @@ msgstr "Mínimo"
msgid "Value"
msgstr "Valor"
-#: appEditors/appGeoEditor.py:661 appEditors/FlatCAMGrbEditor.py:5354
+#: appEditors/AppGeoEditor.py:661 appEditors/AppGerberEditor.py:5354
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:62
#: appTools/ToolTransform.py:78
msgid "A point of reference in format X,Y."
msgstr "Um ponto de referência no formato X,Y."
-#: appEditors/appGeoEditor.py:668 appEditors/FlatCAMGrbEditor.py:2590
-#: appEditors/FlatCAMGrbEditor.py:5361 appGUI/ObjectUI.py:1494
+#: appEditors/AppGeoEditor.py:668 appEditors/AppGerberEditor.py:2590
+#: appEditors/AppGerberEditor.py:5361 appGUI/ObjectUI.py:1494
#: appTools/ToolDblSided.py:192 appTools/ToolDblSided.py:425
#: appTools/ToolIsolation.py:276 appTools/ToolIsolation.py:631
#: appTools/ToolNCC.py:294 appTools/ToolNCC.py:631 appTools/ToolPaint.py:276
@@ -2064,12 +2064,12 @@ msgstr "Um ponto de referência no formato X,Y."
msgid "Add"
msgstr "Adicionar"
-#: appEditors/appGeoEditor.py:670 appEditors/FlatCAMGrbEditor.py:5363
+#: appEditors/AppGeoEditor.py:670 appEditors/AppGerberEditor.py:5363
#: appTools/ToolTransform.py:87
msgid "Add point coordinates from clipboard."
msgstr "Coordenadas copiadas da área de transferência."
-#: appEditors/appGeoEditor.py:685 appEditors/FlatCAMGrbEditor.py:5378
+#: appEditors/AppGeoEditor.py:685 appEditors/AppGerberEditor.py:5378
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:98
#: appTools/ToolTransform.py:132
msgid ""
@@ -2083,7 +2083,7 @@ msgstr ""
"Números positivos para movimento horário. \n"
"Números negativos para movimento anti-horário."
-#: appEditors/appGeoEditor.py:701 appEditors/FlatCAMGrbEditor.py:5394
+#: appEditors/AppGeoEditor.py:701 appEditors/AppGerberEditor.py:5394
#: appTools/ToolTransform.py:148
msgid ""
"Rotate the selected object(s).\n"
@@ -2094,31 +2094,31 @@ msgstr ""
"O ponto de referência é o meio da\n"
"caixa delimitadora para todos os objetos selecionados."
-#: appEditors/appGeoEditor.py:721 appEditors/appGeoEditor.py:783
-#: appEditors/FlatCAMGrbEditor.py:5414 appEditors/FlatCAMGrbEditor.py:5476
+#: appEditors/AppGeoEditor.py:721 appEditors/AppGeoEditor.py:783
+#: appEditors/AppGerberEditor.py:5414 appEditors/AppGerberEditor.py:5476
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:112
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:151
#: appTools/ToolTransform.py:168 appTools/ToolTransform.py:230
msgid "Link"
msgstr "Fixar Taxa"
-#: appEditors/appGeoEditor.py:723 appEditors/appGeoEditor.py:785
-#: appEditors/FlatCAMGrbEditor.py:5416 appEditors/FlatCAMGrbEditor.py:5478
+#: appEditors/AppGeoEditor.py:723 appEditors/AppGeoEditor.py:785
+#: appEditors/AppGerberEditor.py:5416 appEditors/AppGerberEditor.py:5478
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:114
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:153
#: appTools/ToolTransform.py:170 appTools/ToolTransform.py:232
msgid "Link the Y entry to X entry and copy its content."
msgstr "Vincula a entrada Y à entrada X e copia seu conteúdo."
-#: appEditors/appGeoEditor.py:728 appEditors/FlatCAMGrbEditor.py:5421
+#: appEditors/AppGeoEditor.py:728 appEditors/AppGerberEditor.py:5421
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:151
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:124
#: appTools/ToolFilm.py:184 appTools/ToolTransform.py:175
msgid "X angle"
msgstr "Ângulo X"
-#: appEditors/appGeoEditor.py:730 appEditors/appGeoEditor.py:751
-#: appEditors/FlatCAMGrbEditor.py:5423 appEditors/FlatCAMGrbEditor.py:5444
+#: appEditors/AppGeoEditor.py:730 appEditors/AppGeoEditor.py:751
+#: appEditors/AppGerberEditor.py:5423 appEditors/AppGerberEditor.py:5444
#: appTools/ToolTransform.py:177 appTools/ToolTransform.py:198
msgid ""
"Angle for Skew action, in degrees.\n"
@@ -2127,13 +2127,13 @@ msgstr ""
"Ângulo de inclinação, em graus.\n"
"Número flutuante entre -360 e 360."
-#: appEditors/appGeoEditor.py:738 appEditors/FlatCAMGrbEditor.py:5431
+#: appEditors/AppGeoEditor.py:738 appEditors/AppGerberEditor.py:5431
#: appTools/ToolTransform.py:185
msgid "Skew X"
msgstr "Inclinar X"
-#: appEditors/appGeoEditor.py:740 appEditors/appGeoEditor.py:761
-#: appEditors/FlatCAMGrbEditor.py:5433 appEditors/FlatCAMGrbEditor.py:5454
+#: appEditors/AppGeoEditor.py:740 appEditors/AppGeoEditor.py:761
+#: appEditors/AppGerberEditor.py:5433 appEditors/AppGerberEditor.py:5454
#: appTools/ToolTransform.py:187 appTools/ToolTransform.py:208
msgid ""
"Skew/shear the selected object(s).\n"
@@ -2144,38 +2144,38 @@ msgstr ""
"O ponto de referência é o meio da\n"
"caixa delimitadora para todos os objetos selecionados."
-#: appEditors/appGeoEditor.py:749 appEditors/FlatCAMGrbEditor.py:5442
+#: appEditors/AppGeoEditor.py:749 appEditors/AppGerberEditor.py:5442
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:160
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:138
#: appTools/ToolFilm.py:193 appTools/ToolTransform.py:196
msgid "Y angle"
msgstr "Ângulo Y"
-#: appEditors/appGeoEditor.py:759 appEditors/FlatCAMGrbEditor.py:5452
+#: appEditors/AppGeoEditor.py:759 appEditors/AppGerberEditor.py:5452
#: appTools/ToolTransform.py:206
msgid "Skew Y"
msgstr "Inclinar Y"
-#: appEditors/appGeoEditor.py:790 appEditors/FlatCAMGrbEditor.py:5483
+#: appEditors/AppGeoEditor.py:790 appEditors/AppGerberEditor.py:5483
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:120
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:162
#: appTools/ToolFilm.py:145 appTools/ToolTransform.py:237
msgid "X factor"
msgstr "Fator X"
-#: appEditors/appGeoEditor.py:792 appEditors/FlatCAMGrbEditor.py:5485
+#: appEditors/AppGeoEditor.py:792 appEditors/AppGerberEditor.py:5485
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:164
#: appTools/ToolTransform.py:239
msgid "Factor for scaling on X axis."
msgstr "Fator para redimensionamento no eixo X."
-#: appEditors/appGeoEditor.py:799 appEditors/FlatCAMGrbEditor.py:5492
+#: appEditors/AppGeoEditor.py:799 appEditors/AppGerberEditor.py:5492
#: appTools/ToolTransform.py:246
msgid "Scale X"
msgstr "Redimensionar X"
-#: appEditors/appGeoEditor.py:801 appEditors/appGeoEditor.py:821
-#: appEditors/FlatCAMGrbEditor.py:5494 appEditors/FlatCAMGrbEditor.py:5514
+#: appEditors/AppGeoEditor.py:801 appEditors/AppGeoEditor.py:821
+#: appEditors/AppGerberEditor.py:5494 appEditors/AppGerberEditor.py:5514
#: appTools/ToolTransform.py:248 appTools/ToolTransform.py:268
msgid ""
"Scale the selected object(s).\n"
@@ -2186,59 +2186,59 @@ msgstr ""
"O ponto de referência depende\n"
"do estado da caixa de seleção Escala de referência."
-#: appEditors/appGeoEditor.py:810 appEditors/FlatCAMGrbEditor.py:5503
+#: appEditors/AppGeoEditor.py:810 appEditors/AppGerberEditor.py:5503
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:129
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:175
#: appTools/ToolFilm.py:154 appTools/ToolTransform.py:257
msgid "Y factor"
msgstr "Fator Y"
-#: appEditors/appGeoEditor.py:812 appEditors/FlatCAMGrbEditor.py:5505
+#: appEditors/AppGeoEditor.py:812 appEditors/AppGerberEditor.py:5505
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:177
#: appTools/ToolTransform.py:259
msgid "Factor for scaling on Y axis."
msgstr "Fator para redimensionamento no eixo Y."
-#: appEditors/appGeoEditor.py:819 appEditors/FlatCAMGrbEditor.py:5512
+#: appEditors/AppGeoEditor.py:819 appEditors/AppGerberEditor.py:5512
#: appTools/ToolTransform.py:266
msgid "Scale Y"
msgstr "Redimensionar Y"
-#: appEditors/appGeoEditor.py:846 appEditors/FlatCAMGrbEditor.py:5539
+#: appEditors/AppGeoEditor.py:846 appEditors/AppGerberEditor.py:5539
#: appTools/ToolTransform.py:293
msgid "Flip on X"
msgstr "Espelhar no X"
-#: appEditors/appGeoEditor.py:848 appEditors/appGeoEditor.py:853
-#: appEditors/FlatCAMGrbEditor.py:5541 appEditors/FlatCAMGrbEditor.py:5546
+#: appEditors/AppGeoEditor.py:848 appEditors/AppGeoEditor.py:853
+#: appEditors/AppGerberEditor.py:5541 appEditors/AppGerberEditor.py:5546
#: appTools/ToolTransform.py:295 appTools/ToolTransform.py:300
msgid "Flip the selected object(s) over the X axis."
msgstr "Espelha o(s) objeto(s) selecionado(s) no eixo X."
-#: appEditors/appGeoEditor.py:851 appEditors/FlatCAMGrbEditor.py:5544
+#: appEditors/AppGeoEditor.py:851 appEditors/AppGerberEditor.py:5544
#: appTools/ToolTransform.py:298
msgid "Flip on Y"
msgstr "Espelhar no Y"
-#: appEditors/appGeoEditor.py:871 appEditors/FlatCAMGrbEditor.py:5564
+#: appEditors/AppGeoEditor.py:871 appEditors/AppGerberEditor.py:5564
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:191
#: appTools/ToolTransform.py:318
msgid "X val"
msgstr "X"
-#: appEditors/appGeoEditor.py:873 appEditors/FlatCAMGrbEditor.py:5566
+#: appEditors/AppGeoEditor.py:873 appEditors/AppGerberEditor.py:5566
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:193
#: appTools/ToolTransform.py:320
msgid "Distance to offset on X axis. In current units."
msgstr "Distância para deslocar no eixo X, nas unidades atuais."
-#: appEditors/appGeoEditor.py:880 appEditors/FlatCAMGrbEditor.py:5573
+#: appEditors/AppGeoEditor.py:880 appEditors/AppGerberEditor.py:5573
#: appTools/ToolTransform.py:327
msgid "Offset X"
msgstr "Deslocar X"
-#: appEditors/appGeoEditor.py:882 appEditors/appGeoEditor.py:902
-#: appEditors/FlatCAMGrbEditor.py:5575 appEditors/FlatCAMGrbEditor.py:5595
+#: appEditors/AppGeoEditor.py:882 appEditors/AppGeoEditor.py:902
+#: appEditors/AppGerberEditor.py:5575 appEditors/AppGerberEditor.py:5595
#: appTools/ToolTransform.py:329 appTools/ToolTransform.py:349
msgid ""
"Offset the selected object(s).\n"
@@ -2249,31 +2249,31 @@ msgstr ""
"O ponto de referência é o meio da\n"
"caixa delimitadora para todos os objetos selecionados.\n"
-#: appEditors/appGeoEditor.py:891 appEditors/FlatCAMGrbEditor.py:5584
+#: appEditors/AppGeoEditor.py:891 appEditors/AppGerberEditor.py:5584
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:204
#: appTools/ToolTransform.py:338
msgid "Y val"
msgstr "Y"
-#: appEditors/appGeoEditor.py:893 appEditors/FlatCAMGrbEditor.py:5586
+#: appEditors/AppGeoEditor.py:893 appEditors/AppGerberEditor.py:5586
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:206
#: appTools/ToolTransform.py:340
msgid "Distance to offset on Y axis. In current units."
msgstr "Distância para deslocar no eixo Y, nas unidades atuais."
-#: appEditors/appGeoEditor.py:900 appEditors/FlatCAMGrbEditor.py:5593
+#: appEditors/AppGeoEditor.py:900 appEditors/AppGerberEditor.py:5593
#: appTools/ToolTransform.py:347
msgid "Offset Y"
msgstr "Deslocar Y"
-#: appEditors/appGeoEditor.py:920 appEditors/FlatCAMGrbEditor.py:5613
+#: appEditors/AppGeoEditor.py:920 appEditors/AppGerberEditor.py:5613
#: appGUI/preferences/tools/Tools2QRCodePrefGroupUI.py:142
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:216
#: appTools/ToolQRCode.py:206 appTools/ToolTransform.py:367
msgid "Rounded"
msgstr "Arredondado"
-#: appEditors/appGeoEditor.py:922 appEditors/FlatCAMGrbEditor.py:5615
+#: appEditors/AppGeoEditor.py:922 appEditors/AppGerberEditor.py:5615
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:218
#: appTools/ToolTransform.py:369
msgid ""
@@ -2287,14 +2287,14 @@ msgstr ""
"Se não marcado, o buffer seguirá a geometria exata\n"
"da forma em buffer."
-#: appEditors/appGeoEditor.py:930 appEditors/FlatCAMGrbEditor.py:5623
+#: appEditors/AppGeoEditor.py:930 appEditors/AppGerberEditor.py:5623
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:226
#: appTools/ToolDistance.py:505 appTools/ToolDistanceMin.py:286
#: appTools/ToolTransform.py:377
msgid "Distance"
msgstr "Distância"
-#: appEditors/appGeoEditor.py:932 appEditors/FlatCAMGrbEditor.py:5625
+#: appEditors/AppGeoEditor.py:932 appEditors/AppGerberEditor.py:5625
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:228
#: appTools/ToolTransform.py:379
msgid ""
@@ -2308,12 +2308,12 @@ msgstr ""
"Cada elemento geométrico do objeto será aumentado\n"
"ou diminuiu com a 'distância'."
-#: appEditors/appGeoEditor.py:944 appEditors/FlatCAMGrbEditor.py:5637
+#: appEditors/AppGeoEditor.py:944 appEditors/AppGerberEditor.py:5637
#: appTools/ToolTransform.py:391
msgid "Buffer D"
msgstr "Buffer D"
-#: appEditors/appGeoEditor.py:946 appEditors/FlatCAMGrbEditor.py:5639
+#: appEditors/AppGeoEditor.py:946 appEditors/AppGerberEditor.py:5639
#: appTools/ToolTransform.py:393
msgid ""
"Create the buffer effect on each geometry,\n"
@@ -2322,7 +2322,7 @@ msgstr ""
"Crie o efeito de buffer em cada geometria,\n"
"elemento do objeto selecionado, usando a distância."
-#: appEditors/appGeoEditor.py:957 appEditors/FlatCAMGrbEditor.py:5650
+#: appEditors/AppGeoEditor.py:957 appEditors/AppGerberEditor.py:5650
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:245
#: appTools/ToolTransform.py:404
msgid ""
@@ -2338,12 +2338,12 @@ msgstr ""
"ou diminuído com a 'distância'. Esse valor é um\n"
"percentual da dimensão inicial."
-#: appEditors/appGeoEditor.py:970 appEditors/FlatCAMGrbEditor.py:5663
+#: appEditors/AppGeoEditor.py:970 appEditors/AppGerberEditor.py:5663
#: appTools/ToolTransform.py:417
msgid "Buffer F"
msgstr "Buffer F"
-#: appEditors/appGeoEditor.py:972 appEditors/FlatCAMGrbEditor.py:5665
+#: appEditors/AppGeoEditor.py:972 appEditors/AppGerberEditor.py:5665
#: appTools/ToolTransform.py:419
msgid ""
"Create the buffer effect on each geometry,\n"
@@ -2352,7 +2352,7 @@ msgstr ""
"Crie o efeito de buffer em cada geometria,\n"
"elemento do objeto selecionado, usando o fator."
-#: appEditors/appGeoEditor.py:1043 appEditors/FlatCAMGrbEditor.py:5736
+#: appEditors/AppGeoEditor.py:1043 appEditors/AppGerberEditor.py:5736
#: appGUI/ObjectUI.py:1103 appGUI/ObjectUI.py:1958
#: appGUI/preferences/tools/Tools2CalPrefGroupUI.py:48
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
@@ -2363,327 +2363,327 @@ msgstr ""
msgid "Object"
msgstr "Objeto"
-#: appEditors/appGeoEditor.py:1107 appEditors/appGeoEditor.py:1130
-#: appEditors/appGeoEditor.py:1276 appEditors/appGeoEditor.py:1301
-#: appEditors/appGeoEditor.py:1335 appEditors/appGeoEditor.py:1370
-#: appEditors/appGeoEditor.py:1401 appEditors/FlatCAMGrbEditor.py:5800
-#: appEditors/FlatCAMGrbEditor.py:5823 appEditors/FlatCAMGrbEditor.py:5968
-#: appEditors/FlatCAMGrbEditor.py:6001 appEditors/FlatCAMGrbEditor.py:6044
-#: appEditors/FlatCAMGrbEditor.py:6085 appEditors/FlatCAMGrbEditor.py:6121
+#: appEditors/AppGeoEditor.py:1107 appEditors/AppGeoEditor.py:1130
+#: appEditors/AppGeoEditor.py:1276 appEditors/AppGeoEditor.py:1301
+#: appEditors/AppGeoEditor.py:1335 appEditors/AppGeoEditor.py:1370
+#: appEditors/AppGeoEditor.py:1401 appEditors/AppGerberEditor.py:5800
+#: appEditors/AppGerberEditor.py:5823 appEditors/AppGerberEditor.py:5968
+#: appEditors/AppGerberEditor.py:6001 appEditors/AppGerberEditor.py:6044
+#: appEditors/AppGerberEditor.py:6085 appEditors/AppGerberEditor.py:6121
msgid "No shape selected."
msgstr "Nenhuma forma selecionada."
-#: appEditors/appGeoEditor.py:1115 appEditors/FlatCAMGrbEditor.py:5808
+#: appEditors/AppGeoEditor.py:1115 appEditors/AppGerberEditor.py:5808
#: appTools/ToolTransform.py:585
msgid "Incorrect format for Point value. Needs format X,Y"
msgstr "Formato incorreto para o ponto. Precisa ser no formato X, Y"
-#: appEditors/appGeoEditor.py:1140 appEditors/FlatCAMGrbEditor.py:5833
+#: appEditors/AppGeoEditor.py:1140 appEditors/AppGerberEditor.py:5833
#: appTools/ToolTransform.py:602
msgid "Rotate transformation can not be done for a value of 0."
msgstr "A rotação não pode ser feita para um valor 0."
-#: appEditors/appGeoEditor.py:1198 appEditors/appGeoEditor.py:1219
-#: appEditors/FlatCAMGrbEditor.py:5891 appEditors/FlatCAMGrbEditor.py:5912
+#: appEditors/AppGeoEditor.py:1198 appEditors/AppGeoEditor.py:1219
+#: appEditors/AppGerberEditor.py:5891 appEditors/AppGerberEditor.py:5912
#: appTools/ToolTransform.py:660 appTools/ToolTransform.py:681
msgid "Scale transformation can not be done for a factor of 0 or 1."
msgstr "O redimensionamento não pode ser feito para um fator 0 ou 1."
-#: appEditors/appGeoEditor.py:1232 appEditors/appGeoEditor.py:1241
-#: appEditors/FlatCAMGrbEditor.py:5925 appEditors/FlatCAMGrbEditor.py:5934
+#: appEditors/AppGeoEditor.py:1232 appEditors/AppGeoEditor.py:1241
+#: appEditors/AppGerberEditor.py:5925 appEditors/AppGerberEditor.py:5934
#: appTools/ToolTransform.py:694 appTools/ToolTransform.py:703
msgid "Offset transformation can not be done for a value of 0."
msgstr "O deslocamento não pode ser feito para um valor 0."
-#: appEditors/appGeoEditor.py:1271 appEditors/FlatCAMGrbEditor.py:5971
+#: appEditors/AppGeoEditor.py:1271 appEditors/AppGerberEditor.py:5971
#: appTools/ToolTransform.py:731
msgid "Appying Rotate"
msgstr "Aplicando Girar"
-#: appEditors/appGeoEditor.py:1284 appEditors/FlatCAMGrbEditor.py:5983
+#: appEditors/AppGeoEditor.py:1284 appEditors/AppGerberEditor.py:5983
msgid "Done. Rotate completed."
msgstr "Girar concluído."
-#: appEditors/appGeoEditor.py:1286
+#: appEditors/AppGeoEditor.py:1286
msgid "Rotation action was not executed"
msgstr "O giro não foi executado"
-#: appEditors/appGeoEditor.py:1304 appEditors/FlatCAMGrbEditor.py:6004
+#: appEditors/AppGeoEditor.py:1304 appEditors/AppGerberEditor.py:6004
#: appTools/ToolTransform.py:757
msgid "Applying Flip"
msgstr "Aplicando Espelhamento"
-#: appEditors/appGeoEditor.py:1312 appEditors/FlatCAMGrbEditor.py:6016
+#: appEditors/AppGeoEditor.py:1312 appEditors/AppGerberEditor.py:6016
#: appTools/ToolTransform.py:774
msgid "Flip on the Y axis done"
msgstr "Concluído o espelhamento no eixo Y"
-#: appEditors/appGeoEditor.py:1315 appEditors/FlatCAMGrbEditor.py:6024
+#: appEditors/AppGeoEditor.py:1315 appEditors/AppGerberEditor.py:6024
#: appTools/ToolTransform.py:783
msgid "Flip on the X axis done"
msgstr "Concluído o espelhamento no eixo Y"
-#: appEditors/appGeoEditor.py:1319
+#: appEditors/AppGeoEditor.py:1319
msgid "Flip action was not executed"
msgstr "O espelhamento não foi executado"
-#: appEditors/appGeoEditor.py:1338 appEditors/FlatCAMGrbEditor.py:6047
+#: appEditors/AppGeoEditor.py:1338 appEditors/AppGerberEditor.py:6047
#: appTools/ToolTransform.py:804
msgid "Applying Skew"
msgstr "Inclinando"
-#: appEditors/appGeoEditor.py:1347 appEditors/FlatCAMGrbEditor.py:6063
+#: appEditors/AppGeoEditor.py:1347 appEditors/AppGerberEditor.py:6063
msgid "Skew on the X axis done"
msgstr "Inclinação no eixo X concluída"
-#: appEditors/appGeoEditor.py:1349 appEditors/FlatCAMGrbEditor.py:6065
+#: appEditors/AppGeoEditor.py:1349 appEditors/AppGerberEditor.py:6065
msgid "Skew on the Y axis done"
msgstr "Inclinação no eixo Y concluída"
-#: appEditors/appGeoEditor.py:1352
+#: appEditors/AppGeoEditor.py:1352
msgid "Skew action was not executed"
msgstr "A inclinação não foi executada"
-#: appEditors/appGeoEditor.py:1373 appEditors/FlatCAMGrbEditor.py:6088
+#: appEditors/AppGeoEditor.py:1373 appEditors/AppGerberEditor.py:6088
#: appTools/ToolTransform.py:831
msgid "Applying Scale"
msgstr "Redimensionando"
-#: appEditors/appGeoEditor.py:1382 appEditors/FlatCAMGrbEditor.py:6101
+#: appEditors/AppGeoEditor.py:1382 appEditors/AppGerberEditor.py:6101
msgid "Scale on the X axis done"
msgstr "Redimensionamento no eixo X concluído"
-#: appEditors/appGeoEditor.py:1384 appEditors/FlatCAMGrbEditor.py:6103
+#: appEditors/AppGeoEditor.py:1384 appEditors/AppGerberEditor.py:6103
msgid "Scale on the Y axis done"
msgstr "Redimensionamento no eixo Y concluído"
-#: appEditors/appGeoEditor.py:1386
+#: appEditors/AppGeoEditor.py:1386
msgid "Scale action was not executed"
msgstr "O redimensionamento não foi executado"
-#: appEditors/appGeoEditor.py:1404 appEditors/FlatCAMGrbEditor.py:6124
+#: appEditors/AppGeoEditor.py:1404 appEditors/AppGerberEditor.py:6124
#: appTools/ToolTransform.py:859
msgid "Applying Offset"
msgstr "Deslocando"
-#: appEditors/appGeoEditor.py:1414 appEditors/FlatCAMGrbEditor.py:6145
+#: appEditors/AppGeoEditor.py:1414 appEditors/AppGerberEditor.py:6145
msgid "Offset on the X axis done"
msgstr "Deslocamento no eixo X concluído"
-#: appEditors/appGeoEditor.py:1416 appEditors/FlatCAMGrbEditor.py:6147
+#: appEditors/AppGeoEditor.py:1416 appEditors/AppGerberEditor.py:6147
msgid "Offset on the Y axis done"
msgstr "Deslocamento no eixo Y concluído"
-#: appEditors/appGeoEditor.py:1419
+#: appEditors/AppGeoEditor.py:1419
msgid "Offset action was not executed"
msgstr "O deslocamento não foi executado"
-#: appEditors/appGeoEditor.py:1426 appEditors/FlatCAMGrbEditor.py:6157
+#: appEditors/AppGeoEditor.py:1426 appEditors/AppGerberEditor.py:6157
msgid "No shape selected"
msgstr "Nenhuma forma selecionada"
-#: appEditors/appGeoEditor.py:1429 appEditors/FlatCAMGrbEditor.py:6160
+#: appEditors/AppGeoEditor.py:1429 appEditors/AppGerberEditor.py:6160
#: appTools/ToolTransform.py:889
msgid "Applying Buffer"
msgstr "Aplicando Buffer"
-#: appEditors/appGeoEditor.py:1436 appEditors/FlatCAMGrbEditor.py:6182
+#: appEditors/AppGeoEditor.py:1436 appEditors/AppGerberEditor.py:6182
#: appTools/ToolTransform.py:910
msgid "Buffer done"
msgstr "Buffer concluído"
-#: appEditors/appGeoEditor.py:1440 appEditors/FlatCAMGrbEditor.py:6186
+#: appEditors/AppGeoEditor.py:1440 appEditors/AppGerberEditor.py:6186
#: appTools/ToolTransform.py:879 appTools/ToolTransform.py:915
msgid "Action was not executed, due of"
msgstr "A ação não foi realizada. devido"
-#: appEditors/appGeoEditor.py:1444 appEditors/FlatCAMGrbEditor.py:6190
+#: appEditors/AppGeoEditor.py:1444 appEditors/AppGerberEditor.py:6190
msgid "Rotate ..."
msgstr "Girar ..."
-#: appEditors/appGeoEditor.py:1445 appEditors/appGeoEditor.py:1494
-#: appEditors/appGeoEditor.py:1509 appEditors/FlatCAMGrbEditor.py:6191
-#: appEditors/FlatCAMGrbEditor.py:6240 appEditors/FlatCAMGrbEditor.py:6255
+#: appEditors/AppGeoEditor.py:1445 appEditors/AppGeoEditor.py:1494
+#: appEditors/AppGeoEditor.py:1509 appEditors/AppGerberEditor.py:6191
+#: appEditors/AppGerberEditor.py:6240 appEditors/AppGerberEditor.py:6255
msgid "Enter an Angle Value (degrees)"
msgstr "Digite um valor para o ângulo (graus)"
-#: appEditors/appGeoEditor.py:1453 appEditors/FlatCAMGrbEditor.py:6199
+#: appEditors/AppGeoEditor.py:1453 appEditors/AppGerberEditor.py:6199
msgid "Geometry shape rotate done"
msgstr "Rotação da geometria concluída"
-#: appEditors/appGeoEditor.py:1456 appEditors/FlatCAMGrbEditor.py:6202
+#: appEditors/AppGeoEditor.py:1456 appEditors/AppGerberEditor.py:6202
msgid "Geometry shape rotate cancelled"
msgstr "Rotação da geometria cancelada"
-#: appEditors/appGeoEditor.py:1461 appEditors/FlatCAMGrbEditor.py:6207
+#: appEditors/AppGeoEditor.py:1461 appEditors/AppGerberEditor.py:6207
msgid "Offset on X axis ..."
msgstr "Deslocamento no eixo X ..."
-#: appEditors/appGeoEditor.py:1462 appEditors/appGeoEditor.py:1479
-#: appEditors/FlatCAMGrbEditor.py:6208 appEditors/FlatCAMGrbEditor.py:6225
+#: appEditors/AppGeoEditor.py:1462 appEditors/AppGeoEditor.py:1479
+#: appEditors/AppGerberEditor.py:6208 appEditors/AppGerberEditor.py:6225
msgid "Enter a distance Value"
msgstr "Digite um valor para a distância"
-#: appEditors/appGeoEditor.py:1470 appEditors/FlatCAMGrbEditor.py:6216
+#: appEditors/AppGeoEditor.py:1470 appEditors/AppGerberEditor.py:6216
msgid "Geometry shape offset on X axis done"
msgstr "Deslocamento da forma no eixo X concluído"
-#: appEditors/appGeoEditor.py:1473 appEditors/FlatCAMGrbEditor.py:6219
+#: appEditors/AppGeoEditor.py:1473 appEditors/AppGerberEditor.py:6219
msgid "Geometry shape offset X cancelled"
msgstr "Deslocamento da forma no eixo X cancelado"
-#: appEditors/appGeoEditor.py:1478 appEditors/FlatCAMGrbEditor.py:6224
+#: appEditors/AppGeoEditor.py:1478 appEditors/AppGerberEditor.py:6224
msgid "Offset on Y axis ..."
msgstr "Deslocamento no eixo Y ..."
-#: appEditors/appGeoEditor.py:1487 appEditors/FlatCAMGrbEditor.py:6233
+#: appEditors/AppGeoEditor.py:1487 appEditors/AppGerberEditor.py:6233
msgid "Geometry shape offset on Y axis done"
msgstr "Deslocamento da forma no eixo Y concluído"
-#: appEditors/appGeoEditor.py:1490
+#: appEditors/AppGeoEditor.py:1490
msgid "Geometry shape offset on Y axis canceled"
msgstr "Deslocamento da forma no eixo Y cancelado"
-#: appEditors/appGeoEditor.py:1493 appEditors/FlatCAMGrbEditor.py:6239
+#: appEditors/AppGeoEditor.py:1493 appEditors/AppGerberEditor.py:6239
msgid "Skew on X axis ..."
msgstr "Inclinação no eixo X ..."
-#: appEditors/appGeoEditor.py:1502 appEditors/FlatCAMGrbEditor.py:6248
+#: appEditors/AppGeoEditor.py:1502 appEditors/AppGerberEditor.py:6248
msgid "Geometry shape skew on X axis done"
msgstr "Inclinação no eixo X concluída"
-#: appEditors/appGeoEditor.py:1505
+#: appEditors/AppGeoEditor.py:1505
msgid "Geometry shape skew on X axis canceled"
msgstr "Inclinação no eixo X cancelada"
-#: appEditors/appGeoEditor.py:1508 appEditors/FlatCAMGrbEditor.py:6254
+#: appEditors/AppGeoEditor.py:1508 appEditors/AppGerberEditor.py:6254
msgid "Skew on Y axis ..."
msgstr "Inclinação no eixo Y ..."
-#: appEditors/appGeoEditor.py:1517 appEditors/FlatCAMGrbEditor.py:6263
+#: appEditors/AppGeoEditor.py:1517 appEditors/AppGerberEditor.py:6263
msgid "Geometry shape skew on Y axis done"
msgstr "Inclinação no eixo Y concluída"
-#: appEditors/appGeoEditor.py:1520
+#: appEditors/AppGeoEditor.py:1520
msgid "Geometry shape skew on Y axis canceled"
msgstr "Inclinação no eixo Y cancelada"
-#: appEditors/appGeoEditor.py:1950 appEditors/appGeoEditor.py:2021
-#: appEditors/FlatCAMGrbEditor.py:1444 appEditors/FlatCAMGrbEditor.py:1522
+#: appEditors/AppGeoEditor.py:1950 appEditors/AppGeoEditor.py:2021
+#: appEditors/AppGerberEditor.py:1444 appEditors/AppGerberEditor.py:1522
msgid "Click on Center point ..."
msgstr "Clique no ponto central ..."
-#: appEditors/appGeoEditor.py:1963 appEditors/FlatCAMGrbEditor.py:1454
+#: appEditors/AppGeoEditor.py:1963 appEditors/AppGerberEditor.py:1454
msgid "Click on Perimeter point to complete ..."
msgstr "Clique no ponto Perímetro para completar ..."
-#: appEditors/appGeoEditor.py:1995
+#: appEditors/AppGeoEditor.py:1995
msgid "Done. Adding Circle completed."
msgstr "Círculo adicionado."
-#: appEditors/appGeoEditor.py:2049 appEditors/FlatCAMGrbEditor.py:1555
+#: appEditors/AppGeoEditor.py:2049 appEditors/AppGerberEditor.py:1555
msgid "Click on Start point ..."
msgstr "Clique no ponto inicial ..."
-#: appEditors/appGeoEditor.py:2051 appEditors/FlatCAMGrbEditor.py:1557
+#: appEditors/AppGeoEditor.py:2051 appEditors/AppGerberEditor.py:1557
msgid "Click on Point3 ..."
msgstr "Clique no ponto 3 ..."
-#: appEditors/appGeoEditor.py:2053 appEditors/FlatCAMGrbEditor.py:1559
+#: appEditors/AppGeoEditor.py:2053 appEditors/AppGerberEditor.py:1559
msgid "Click on Stop point ..."
msgstr "Clique no ponto de parada ..."
-#: appEditors/appGeoEditor.py:2058 appEditors/FlatCAMGrbEditor.py:1564
+#: appEditors/AppGeoEditor.py:2058 appEditors/AppGerberEditor.py:1564
msgid "Click on Stop point to complete ..."
msgstr "Clique no ponto de parada para completar ..."
-#: appEditors/appGeoEditor.py:2060 appEditors/FlatCAMGrbEditor.py:1566
+#: appEditors/AppGeoEditor.py:2060 appEditors/AppGerberEditor.py:1566
msgid "Click on Point2 to complete ..."
msgstr "Clique no ponto 2 para completar ..."
-#: appEditors/appGeoEditor.py:2062 appEditors/FlatCAMGrbEditor.py:1568
+#: appEditors/AppGeoEditor.py:2062 appEditors/AppGerberEditor.py:1568
msgid "Click on Center point to complete ..."
msgstr "Clique no ponto central para completar ..."
-#: appEditors/appGeoEditor.py:2074
+#: appEditors/AppGeoEditor.py:2074
#, python-format
msgid "Direction: %s"
msgstr "Direção: %s"
-#: appEditors/appGeoEditor.py:2088 appEditors/FlatCAMGrbEditor.py:1594
+#: appEditors/AppGeoEditor.py:2088 appEditors/AppGerberEditor.py:1594
msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
msgstr "Modo: Iniciar -> Parar -> Centro. Clique no ponto inicial ..."
-#: appEditors/appGeoEditor.py:2091 appEditors/FlatCAMGrbEditor.py:1597
+#: appEditors/AppGeoEditor.py:2091 appEditors/AppGerberEditor.py:1597
msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
msgstr "Modo: Ponto 1 -> Ponto 3 -> Ponto 2. Clique no Ponto 1 ..."
-#: appEditors/appGeoEditor.py:2094 appEditors/FlatCAMGrbEditor.py:1600
+#: appEditors/AppGeoEditor.py:2094 appEditors/AppGerberEditor.py:1600
msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
msgstr "Modo: Centro -> Iniciar -> Parar. Clique no ponto central ..."
-#: appEditors/appGeoEditor.py:2235
+#: appEditors/AppGeoEditor.py:2235
msgid "Done. Arc completed."
msgstr "Arco adicionado."
-#: appEditors/appGeoEditor.py:2266 appEditors/appGeoEditor.py:2339
+#: appEditors/AppGeoEditor.py:2266 appEditors/AppGeoEditor.py:2339
msgid "Click on 1st corner ..."
msgstr "Clique no primeiro canto ..."
-#: appEditors/appGeoEditor.py:2278
+#: appEditors/AppGeoEditor.py:2278
msgid "Click on opposite corner to complete ..."
msgstr "Clique no canto oposto para completar ..."
-#: appEditors/appGeoEditor.py:2308
+#: appEditors/AppGeoEditor.py:2308
msgid "Done. Rectangle completed."
msgstr "Retângulo adicionado."
-#: appEditors/appGeoEditor.py:2383
+#: appEditors/AppGeoEditor.py:2383
msgid "Done. Polygon completed."
msgstr "Polígono adicionado."
-#: appEditors/appGeoEditor.py:2397 appEditors/appGeoEditor.py:2462
-#: appEditors/FlatCAMGrbEditor.py:1102 appEditors/FlatCAMGrbEditor.py:1322
+#: appEditors/AppGeoEditor.py:2397 appEditors/AppGeoEditor.py:2462
+#: appEditors/AppGerberEditor.py:1102 appEditors/AppGerberEditor.py:1322
msgid "Backtracked one point ..."
msgstr "Retrocedeu um ponto ..."
-#: appEditors/appGeoEditor.py:2440
+#: appEditors/AppGeoEditor.py:2440
msgid "Done. Path completed."
msgstr "Caminho concluído."
-#: appEditors/appGeoEditor.py:2599
+#: appEditors/AppGeoEditor.py:2599
msgid "No shape selected. Select a shape to explode"
msgstr "Nenhuma forma selecionada. Selecione uma forma para explodir"
-#: appEditors/appGeoEditor.py:2632
+#: appEditors/AppGeoEditor.py:2632
msgid "Done. Polygons exploded into lines."
msgstr "Polígono explodido em linhas."
-#: appEditors/appGeoEditor.py:2664
+#: appEditors/AppGeoEditor.py:2664
msgid "MOVE: No shape selected. Select a shape to move"
msgstr "MOVER: Nenhuma forma selecionada. Selecione uma forma para mover"
-#: appEditors/appGeoEditor.py:2667 appEditors/appGeoEditor.py:2687
+#: appEditors/AppGeoEditor.py:2667 appEditors/AppGeoEditor.py:2687
msgid " MOVE: Click on reference point ..."
msgstr " MOVER: Clique no ponto de referência ..."
-#: appEditors/appGeoEditor.py:2672
+#: appEditors/AppGeoEditor.py:2672
msgid " Click on destination point ..."
msgstr " Clique no ponto de destino ..."
-#: appEditors/appGeoEditor.py:2712
+#: appEditors/AppGeoEditor.py:2712
msgid "Done. Geometry(s) Move completed."
msgstr "Movimento de Geometria(s) concluído."
-#: appEditors/appGeoEditor.py:2845
+#: appEditors/AppGeoEditor.py:2845
msgid "Done. Geometry(s) Copy completed."
msgstr "Geometria(s) copiada(s)."
-#: appEditors/appGeoEditor.py:2876 appEditors/FlatCAMGrbEditor.py:897
+#: appEditors/AppGeoEditor.py:2876 appEditors/AppGerberEditor.py:897
msgid "Click on 1st point ..."
msgstr "Clique no primeiro ponto ..."
-#: appEditors/appGeoEditor.py:2900
+#: appEditors/AppGeoEditor.py:2900
msgid ""
"Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
"Error"
@@ -2691,83 +2691,83 @@ msgstr ""
"Fonte não suportada. Apenas Regular, Bold, Italic e BoldItalic são "
"suportados. Erro"
-#: appEditors/appGeoEditor.py:2908
+#: appEditors/AppGeoEditor.py:2908
msgid "No text to add."
msgstr "Nenhum texto para adicionar."
-#: appEditors/appGeoEditor.py:2918
+#: appEditors/AppGeoEditor.py:2918
msgid " Done. Adding Text completed."
msgstr " Texto adicionado."
-#: appEditors/appGeoEditor.py:2955
+#: appEditors/AppGeoEditor.py:2955
msgid "Create buffer geometry ..."
msgstr "Criar buffer de geometria ..."
-#: appEditors/appGeoEditor.py:2990 appEditors/FlatCAMGrbEditor.py:5153
+#: appEditors/AppGeoEditor.py:2990 appEditors/AppGerberEditor.py:5153
msgid "Done. Buffer Tool completed."
msgstr "Buffer concluído."
-#: appEditors/appGeoEditor.py:3018
+#: appEditors/AppGeoEditor.py:3018
msgid "Done. Buffer Int Tool completed."
msgstr "Buffer Interno concluído."
-#: appEditors/appGeoEditor.py:3046
+#: appEditors/AppGeoEditor.py:3046
msgid "Done. Buffer Ext Tool completed."
msgstr "Buffer Externo concluído."
-#: appEditors/appGeoEditor.py:3095 appEditors/FlatCAMGrbEditor.py:2160
+#: appEditors/AppGeoEditor.py:3095 appEditors/AppGerberEditor.py:2160
msgid "Select a shape to act as deletion area ..."
msgstr "Selecione uma forma para atuar como área de exclusão ..."
-#: appEditors/appGeoEditor.py:3097 appEditors/appGeoEditor.py:3123
-#: appEditors/appGeoEditor.py:3129 appEditors/FlatCAMGrbEditor.py:2162
+#: appEditors/AppGeoEditor.py:3097 appEditors/AppGeoEditor.py:3123
+#: appEditors/AppGeoEditor.py:3129 appEditors/AppGerberEditor.py:2162
msgid "Click to pick-up the erase shape..."
msgstr "Clique para pegar a forma a apagar ..."
-#: appEditors/appGeoEditor.py:3133 appEditors/FlatCAMGrbEditor.py:2221
+#: appEditors/AppGeoEditor.py:3133 appEditors/AppGerberEditor.py:2221
msgid "Click to erase ..."
msgstr "Clique para apagar ..."
-#: appEditors/appGeoEditor.py:3162 appEditors/FlatCAMGrbEditor.py:2254
+#: appEditors/AppGeoEditor.py:3162 appEditors/AppGerberEditor.py:2254
msgid "Done. Eraser tool action completed."
msgstr "Apagado."
-#: appEditors/appGeoEditor.py:3212
+#: appEditors/AppGeoEditor.py:3212
msgid "Create Paint geometry ..."
msgstr "Criar geometria de pintura ..."
-#: appEditors/appGeoEditor.py:3225 appEditors/FlatCAMGrbEditor.py:2417
+#: appEditors/AppGeoEditor.py:3225 appEditors/AppGerberEditor.py:2417
msgid "Shape transformations ..."
msgstr "Transformações de forma ..."
-#: appEditors/appGeoEditor.py:3281
+#: appEditors/AppGeoEditor.py:3281
#: appGUI/preferences/geometry/GeometryEditorPrefGroupUI.py:27
msgid "Geometry Editor"
msgstr "Editor de Geometria"
-#: appEditors/appGeoEditor.py:3287 appEditors/FlatCAMGrbEditor.py:2495
-#: appEditors/FlatCAMGrbEditor.py:3951 appGUI/ObjectUI.py:282
+#: appEditors/AppGeoEditor.py:3287 appEditors/AppGerberEditor.py:2495
+#: appEditors/AppGerberEditor.py:3951 appGUI/ObjectUI.py:282
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256 appTools/ToolCutOut.py:95
#: appTools/ToolTransform.py:92
msgid "Type"
msgstr "Tipo"
-#: appEditors/appGeoEditor.py:3287 appGUI/ObjectUI.py:221
+#: appEditors/AppGeoEditor.py:3287 appGUI/ObjectUI.py:221
#: appGUI/ObjectUI.py:521 appGUI/ObjectUI.py:1330 appGUI/ObjectUI.py:2165
#: appGUI/ObjectUI.py:2469 appGUI/ObjectUI.py:2536
#: appTools/ToolCalibration.py:234 appTools/ToolFiducials.py:70
msgid "Name"
msgstr "Nome"
-#: appEditors/appGeoEditor.py:3539
+#: appEditors/AppGeoEditor.py:3539
msgid "Ring"
msgstr "Anel"
-#: appEditors/appGeoEditor.py:3541
+#: appEditors/AppGeoEditor.py:3541
msgid "Line"
msgstr "Linha"
-#: appEditors/appGeoEditor.py:3543 appGUI/MainGUI.py:1446
+#: appEditors/AppGeoEditor.py:3543 appGUI/MainGUI.py:1446
#: appGUI/ObjectUI.py:1150 appGUI/ObjectUI.py:2005
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:226
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:299
@@ -2778,47 +2778,47 @@ msgstr "Linha"
msgid "Polygon"
msgstr "Polígono"
-#: appEditors/appGeoEditor.py:3545
+#: appEditors/AppGeoEditor.py:3545
msgid "Multi-Line"
msgstr "Múlti-Linha"
-#: appEditors/appGeoEditor.py:3547
+#: appEditors/AppGeoEditor.py:3547
msgid "Multi-Polygon"
msgstr "Múlti-Polígono"
-#: appEditors/appGeoEditor.py:3554
+#: appEditors/AppGeoEditor.py:3554
msgid "Geo Elem"
msgstr "Elem Geo"
-#: appEditors/appGeoEditor.py:4007
+#: appEditors/AppGeoEditor.py:4007
msgid "Editing MultiGeo Geometry, tool"
msgstr "Editando Geometria MultiGeo, ferramenta"
-#: appEditors/appGeoEditor.py:4009
+#: appEditors/AppGeoEditor.py:4009
msgid "with diameter"
msgstr "com diâmetro"
-#: appEditors/appGeoEditor.py:4081
+#: appEditors/AppGeoEditor.py:4081
msgid "Grid Snap enabled."
msgstr "Encaixar à grade ativado."
-#: appEditors/appGeoEditor.py:4085
+#: appEditors/AppGeoEditor.py:4085
msgid "Grid Snap disabled."
msgstr "Encaixar à grade desativado."
-#: appEditors/appGeoEditor.py:4446 appGUI/MainGUI.py:3046
+#: appEditors/AppGeoEditor.py:4446 appGUI/MainGUI.py:3046
#: appGUI/MainGUI.py:3092 appGUI/MainGUI.py:3110 appGUI/MainGUI.py:3254
#: appGUI/MainGUI.py:3293 appGUI/MainGUI.py:3305 appGUI/MainGUI.py:3322
msgid "Click on target point."
msgstr "Clique no ponto alvo."
-#: appEditors/appGeoEditor.py:4762 appEditors/appGeoEditor.py:4797
+#: appEditors/AppGeoEditor.py:4762 appEditors/AppGeoEditor.py:4797
msgid "A selection of at least 2 geo items is required to do Intersection."
msgstr ""
"É necessária uma seleção de pelo menos 2 itens geométricos para fazer a "
"interseção."
-#: appEditors/appGeoEditor.py:4883 appEditors/appGeoEditor.py:4987
+#: appEditors/AppGeoEditor.py:4883 appEditors/AppGeoEditor.py:4987
msgid ""
"Negative buffer value is not accepted. Use Buffer interior to generate an "
"'inside' shape"
@@ -2826,56 +2826,56 @@ msgstr ""
"Valor de buffer negativo não é aceito. Use o Buffer interior para gerar uma "
"forma 'interna'"
-#: appEditors/appGeoEditor.py:4893 appEditors/appGeoEditor.py:4946
-#: appEditors/appGeoEditor.py:4996
+#: appEditors/AppGeoEditor.py:4893 appEditors/AppGeoEditor.py:4946
+#: appEditors/AppGeoEditor.py:4996
msgid "Nothing selected for buffering."
msgstr "Nada selecionado para armazenamento em buffer."
-#: appEditors/appGeoEditor.py:4898 appEditors/appGeoEditor.py:4950
-#: appEditors/appGeoEditor.py:5001
+#: appEditors/AppGeoEditor.py:4898 appEditors/AppGeoEditor.py:4950
+#: appEditors/AppGeoEditor.py:5001
msgid "Invalid distance for buffering."
msgstr "Distância inválida para armazenamento em buffer."
-#: appEditors/appGeoEditor.py:4922 appEditors/appGeoEditor.py:5021
+#: appEditors/AppGeoEditor.py:4922 appEditors/AppGeoEditor.py:5021
msgid "Failed, the result is empty. Choose a different buffer value."
msgstr ""
"Falhou, o resultado está vazio. Escolha um valor diferente para o buffer."
-#: appEditors/appGeoEditor.py:4933
+#: appEditors/AppGeoEditor.py:4933
msgid "Full buffer geometry created."
msgstr "Buffer de geometria completa criado."
-#: appEditors/appGeoEditor.py:4939
+#: appEditors/AppGeoEditor.py:4939
msgid "Negative buffer value is not accepted."
msgstr "Valor de buffer negativo não é aceito."
-#: appEditors/appGeoEditor.py:4970
+#: appEditors/AppGeoEditor.py:4970
msgid "Failed, the result is empty. Choose a smaller buffer value."
msgstr "Falhou, o resultado está vazio. Escolha um valor menor para o buffer."
-#: appEditors/appGeoEditor.py:4980
+#: appEditors/AppGeoEditor.py:4980
msgid "Interior buffer geometry created."
msgstr "Buffer de Geometria interna criado."
-#: appEditors/appGeoEditor.py:5031
+#: appEditors/AppGeoEditor.py:5031
msgid "Exterior buffer geometry created."
msgstr "Buffer de Geometria externa criado."
-#: appEditors/appGeoEditor.py:5037
+#: appEditors/AppGeoEditor.py:5037
#, python-format
msgid "Could not do Paint. Overlap value has to be less than 100%%."
msgstr ""
"Não foi possível Pintar. O valor de sobreposição deve ser menor do que 100%%."
-#: appEditors/appGeoEditor.py:5044
+#: appEditors/AppGeoEditor.py:5044
msgid "Nothing selected for painting."
msgstr "Nada selecionado para pintura."
-#: appEditors/appGeoEditor.py:5050
+#: appEditors/AppGeoEditor.py:5050
msgid "Invalid value for"
msgstr "Valor inválido para"
-#: appEditors/appGeoEditor.py:5109
+#: appEditors/AppGeoEditor.py:5109
msgid ""
"Could not do Paint. Try a different combination of parameters. Or a "
"different method of Paint"
@@ -2883,159 +2883,159 @@ msgstr ""
"Não foi possível pintar. Tente uma combinação diferente de parâmetros, ou um "
"método diferente de Pintura"
-#: appEditors/appGeoEditor.py:5120
+#: appEditors/AppGeoEditor.py:5120
msgid "Paint done."
msgstr "Pintura concluída."
-#: appEditors/FlatCAMGrbEditor.py:211
+#: appEditors/AppGerberEditor.py:211
msgid "To add an Pad first select a aperture in Aperture Table"
msgstr ""
"Para adicionar um Pad, primeiro selecione uma abertura na Tabela de Aberturas"
-#: appEditors/FlatCAMGrbEditor.py:218 appEditors/FlatCAMGrbEditor.py:418
+#: appEditors/AppGerberEditor.py:218 appEditors/AppGerberEditor.py:418
msgid "Aperture size is zero. It needs to be greater than zero."
msgstr "O tamanho da abertura é zero. Precisa ser maior que zero."
-#: appEditors/FlatCAMGrbEditor.py:371 appEditors/FlatCAMGrbEditor.py:684
+#: appEditors/AppGerberEditor.py:371 appEditors/AppGerberEditor.py:684
msgid ""
"Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
msgstr ""
"Tipo de abertura incompatível. Selecione uma abertura do tipo 'C', 'R' ou "
"'O'."
-#: appEditors/FlatCAMGrbEditor.py:383
+#: appEditors/AppGerberEditor.py:383
msgid "Done. Adding Pad completed."
msgstr "Pad adicionado."
-#: appEditors/FlatCAMGrbEditor.py:410
+#: appEditors/AppGerberEditor.py:410
msgid "To add an Pad Array first select a aperture in Aperture Table"
msgstr ""
"Para adicionar uma Matriz de Pads, primeiro selecione uma abertura na Tabela "
"de Aberturas"
-#: appEditors/FlatCAMGrbEditor.py:490
+#: appEditors/AppGerberEditor.py:490
msgid "Click on the Pad Circular Array Start position"
msgstr "Clique na posição inicial da Matriz Circular de Pads"
-#: appEditors/FlatCAMGrbEditor.py:710
+#: appEditors/AppGerberEditor.py:710
msgid "Too many Pads for the selected spacing angle."
msgstr "Muitos Pads para o ângulo de espaçamento selecionado."
-#: appEditors/FlatCAMGrbEditor.py:733
+#: appEditors/AppGerberEditor.py:733
msgid "Done. Pad Array added."
msgstr "Matriz de pads adicionada."
-#: appEditors/FlatCAMGrbEditor.py:758
+#: appEditors/AppGerberEditor.py:758
msgid "Select shape(s) and then click ..."
msgstr "Selecione a(s) forma(s) e então clique ..."
-#: appEditors/FlatCAMGrbEditor.py:770
+#: appEditors/AppGerberEditor.py:770
msgid "Failed. Nothing selected."
msgstr "Falhou. Nada selecionado."
-#: appEditors/FlatCAMGrbEditor.py:786
+#: appEditors/AppGerberEditor.py:786
msgid ""
"Failed. Poligonize works only on geometries belonging to the same aperture."
msgstr ""
"Falhou. Poligonize funciona apenas em geometrias pertencentes à mesma "
"abertura."
-#: appEditors/FlatCAMGrbEditor.py:840
+#: appEditors/AppGerberEditor.py:840
msgid "Done. Poligonize completed."
msgstr "Poligonizar concluído."
-#: appEditors/FlatCAMGrbEditor.py:895 appEditors/FlatCAMGrbEditor.py:1119
-#: appEditors/FlatCAMGrbEditor.py:1143
+#: appEditors/AppGerberEditor.py:895 appEditors/AppGerberEditor.py:1119
+#: appEditors/AppGerberEditor.py:1143
msgid "Corner Mode 1: 45 degrees ..."
msgstr "Canto Modo 1: 45 graus ..."
-#: appEditors/FlatCAMGrbEditor.py:907 appEditors/FlatCAMGrbEditor.py:1219
+#: appEditors/AppGerberEditor.py:907 appEditors/AppGerberEditor.py:1219
msgid "Click on next Point or click Right mouse button to complete ..."
msgstr ""
"Clique no próximo ponto ou clique com o botão direito do mouse para "
"completar ..."
-#: appEditors/FlatCAMGrbEditor.py:1107 appEditors/FlatCAMGrbEditor.py:1140
+#: appEditors/AppGerberEditor.py:1107 appEditors/AppGerberEditor.py:1140
msgid "Corner Mode 2: Reverse 45 degrees ..."
msgstr "Canto Modo 2: 45 graus invertido ..."
-#: appEditors/FlatCAMGrbEditor.py:1110 appEditors/FlatCAMGrbEditor.py:1137
+#: appEditors/AppGerberEditor.py:1110 appEditors/AppGerberEditor.py:1137
msgid "Corner Mode 3: 90 degrees ..."
msgstr "Canto Modo 3: 90 graus ..."
-#: appEditors/FlatCAMGrbEditor.py:1113 appEditors/FlatCAMGrbEditor.py:1134
+#: appEditors/AppGerberEditor.py:1113 appEditors/AppGerberEditor.py:1134
msgid "Corner Mode 4: Reverse 90 degrees ..."
msgstr "Canto Modo 4: 90 graus invertido ..."
-#: appEditors/FlatCAMGrbEditor.py:1116 appEditors/FlatCAMGrbEditor.py:1131
+#: appEditors/AppGerberEditor.py:1116 appEditors/AppGerberEditor.py:1131
msgid "Corner Mode 5: Free angle ..."
msgstr "Canto Modo 5: Ângulo livre ..."
-#: appEditors/FlatCAMGrbEditor.py:1193 appEditors/FlatCAMGrbEditor.py:1358
-#: appEditors/FlatCAMGrbEditor.py:1397
+#: appEditors/AppGerberEditor.py:1193 appEditors/AppGerberEditor.py:1358
+#: appEditors/AppGerberEditor.py:1397
msgid "Track Mode 1: 45 degrees ..."
msgstr "Trilha Modo 1: 45 graus ..."
-#: appEditors/FlatCAMGrbEditor.py:1338 appEditors/FlatCAMGrbEditor.py:1392
+#: appEditors/AppGerberEditor.py:1338 appEditors/AppGerberEditor.py:1392
msgid "Track Mode 2: Reverse 45 degrees ..."
msgstr "Trilha Modo 2: 45 graus invertido ..."
-#: appEditors/FlatCAMGrbEditor.py:1343 appEditors/FlatCAMGrbEditor.py:1387
+#: appEditors/AppGerberEditor.py:1343 appEditors/AppGerberEditor.py:1387
msgid "Track Mode 3: 90 degrees ..."
msgstr "Trilha Modo 3: 90 graus ..."
-#: appEditors/FlatCAMGrbEditor.py:1348 appEditors/FlatCAMGrbEditor.py:1382
+#: appEditors/AppGerberEditor.py:1348 appEditors/AppGerberEditor.py:1382
msgid "Track Mode 4: Reverse 90 degrees ..."
msgstr "Trilha Modo 4: 90 graus invertido ..."
-#: appEditors/FlatCAMGrbEditor.py:1353 appEditors/FlatCAMGrbEditor.py:1377
+#: appEditors/AppGerberEditor.py:1353 appEditors/AppGerberEditor.py:1377
msgid "Track Mode 5: Free angle ..."
msgstr "Trilha Modo 5: Ângulo livre ..."
-#: appEditors/FlatCAMGrbEditor.py:1787
+#: appEditors/AppGerberEditor.py:1787
msgid "Scale the selected Gerber apertures ..."
msgstr "Redimensiona as aberturas de Gerber selecionadas ..."
-#: appEditors/FlatCAMGrbEditor.py:1829
+#: appEditors/AppGerberEditor.py:1829
msgid "Buffer the selected apertures ..."
msgstr "Buffer das aberturas selecionadas ..."
-#: appEditors/FlatCAMGrbEditor.py:1871
+#: appEditors/AppGerberEditor.py:1871
msgid "Mark polygon areas in the edited Gerber ..."
msgstr "Marca áreas de polígonos no Gerber editado..."
-#: appEditors/FlatCAMGrbEditor.py:1937
+#: appEditors/AppGerberEditor.py:1937
msgid "Nothing selected to move"
msgstr "Nada selecionado para mover"
-#: appEditors/FlatCAMGrbEditor.py:2062
+#: appEditors/AppGerberEditor.py:2062
msgid "Done. Apertures Move completed."
msgstr "Aberturas movidas."
-#: appEditors/FlatCAMGrbEditor.py:2144
+#: appEditors/AppGerberEditor.py:2144
msgid "Done. Apertures copied."
msgstr "Aberturas copiadas."
-#: appEditors/FlatCAMGrbEditor.py:2462 appGUI/MainGUI.py:1477
+#: appEditors/AppGerberEditor.py:2462 appGUI/MainGUI.py:1477
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:27
msgid "Gerber Editor"
msgstr "Editor Gerber"
-#: appEditors/FlatCAMGrbEditor.py:2482 appGUI/ObjectUI.py:247
+#: appEditors/AppGerberEditor.py:2482 appGUI/ObjectUI.py:247
#: appTools/ToolProperties.py:159
msgid "Apertures"
msgstr "Aberturas"
-#: appEditors/FlatCAMGrbEditor.py:2484 appGUI/ObjectUI.py:249
+#: appEditors/AppGerberEditor.py:2484 appGUI/ObjectUI.py:249
msgid "Apertures Table for the Gerber Object."
msgstr "Tabela de Aberturas para o Objeto Gerber."
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Code"
msgstr "Código"
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
#: appGUI/preferences/general/GeneralAPPSetGroupUI.py:103
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:167
@@ -3046,29 +3046,29 @@ msgstr "Código"
msgid "Size"
msgstr "Tamanho"
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Dim"
msgstr "Dim"
-#: appEditors/FlatCAMGrbEditor.py:2500 appGUI/ObjectUI.py:286
+#: appEditors/AppGerberEditor.py:2500 appGUI/ObjectUI.py:286
msgid "Index"
msgstr "Índice"
-#: appEditors/FlatCAMGrbEditor.py:2502 appEditors/FlatCAMGrbEditor.py:2531
+#: appEditors/AppGerberEditor.py:2502 appEditors/AppGerberEditor.py:2531
#: appGUI/ObjectUI.py:288
msgid "Aperture Code"
msgstr "Código de Abertura"
-#: appEditors/FlatCAMGrbEditor.py:2504 appGUI/ObjectUI.py:290
+#: appEditors/AppGerberEditor.py:2504 appGUI/ObjectUI.py:290
msgid "Type of aperture: circular, rectangle, macros etc"
msgstr "Tipo de abertura: circular, retângulo, macros etc"
-#: appEditors/FlatCAMGrbEditor.py:2506 appGUI/ObjectUI.py:292
+#: appEditors/AppGerberEditor.py:2506 appGUI/ObjectUI.py:292
msgid "Aperture Size:"
msgstr "Tamanho da abertura:"
-#: appEditors/FlatCAMGrbEditor.py:2508 appGUI/ObjectUI.py:294
+#: appEditors/AppGerberEditor.py:2508 appGUI/ObjectUI.py:294
msgid ""
"Aperture Dimensions:\n"
" - (width, height) for R, O type.\n"
@@ -3078,16 +3078,16 @@ msgstr ""
" - (largura, altura) para o tipo R, O. \n"
" - (dia, nVertices) para o tipo P"
-#: appEditors/FlatCAMGrbEditor.py:2532
+#: appEditors/AppGerberEditor.py:2532
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:58
msgid "Code for the new aperture"
msgstr "Código para a nova abertura"
-#: appEditors/FlatCAMGrbEditor.py:2541
+#: appEditors/AppGerberEditor.py:2541
msgid "Aperture Size"
msgstr "Tamanho da abertura"
-#: appEditors/FlatCAMGrbEditor.py:2543
+#: appEditors/AppGerberEditor.py:2543
msgid ""
"Size for the new aperture.\n"
"If aperture type is 'R' or 'O' then\n"
@@ -3101,11 +3101,11 @@ msgstr ""
"calculado como:\n"
"sqrt(largura^2 + altura^2)"
-#: appEditors/FlatCAMGrbEditor.py:2557
+#: appEditors/AppGerberEditor.py:2557
msgid "Aperture Type"
msgstr "Tipo de Abertura"
-#: appEditors/FlatCAMGrbEditor.py:2559
+#: appEditors/AppGerberEditor.py:2559
msgid ""
"Select the type of new aperture. Can be:\n"
"C = circular\n"
@@ -3117,11 +3117,11 @@ msgstr ""
"R = retangular \n"
"O = oblongo"
-#: appEditors/FlatCAMGrbEditor.py:2570
+#: appEditors/AppGerberEditor.py:2570
msgid "Aperture Dim"
msgstr "Dim Abertura"
-#: appEditors/FlatCAMGrbEditor.py:2572
+#: appEditors/AppGerberEditor.py:2572
msgid ""
"Dimensions for the new aperture.\n"
"Active only for rectangular apertures (type R).\n"
@@ -3131,19 +3131,19 @@ msgstr ""
"Ativa apenas para aberturas retangulares (tipo R).\n"
"O formato é (largura, altura)"
-#: appEditors/FlatCAMGrbEditor.py:2581
+#: appEditors/AppGerberEditor.py:2581
msgid "Add/Delete Aperture"
msgstr "Adicionar/Excluir Abertura"
-#: appEditors/FlatCAMGrbEditor.py:2583
+#: appEditors/AppGerberEditor.py:2583
msgid "Add/Delete an aperture in the aperture table"
msgstr "Adicionar/Excluir uma abertura na tabela de aberturas"
-#: appEditors/FlatCAMGrbEditor.py:2592
+#: appEditors/AppGerberEditor.py:2592
msgid "Add a new aperture to the aperture list."
msgstr "Adiciona uma nova abertura à lista de aberturas."
-#: appEditors/FlatCAMGrbEditor.py:2595 appEditors/FlatCAMGrbEditor.py:2743
+#: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743
#: appGUI/MainGUI.py:748 appGUI/MainGUI.py:1068 appGUI/MainGUI.py:1527
#: appGUI/MainGUI.py:2099 appGUI/MainGUI.py:4514 appGUI/ObjectUI.py:1525
#: appObjects/FlatCAMGeometry.py:563 appTools/ToolIsolation.py:298
@@ -3154,28 +3154,28 @@ msgstr "Adiciona uma nova abertura à lista de aberturas."
msgid "Delete"
msgstr "Excluir"
-#: appEditors/FlatCAMGrbEditor.py:2597
+#: appEditors/AppGerberEditor.py:2597
msgid "Delete a aperture in the aperture list"
msgstr "Exclui uma abertura da lista de aberturas"
-#: appEditors/FlatCAMGrbEditor.py:2614
+#: appEditors/AppGerberEditor.py:2614
msgid "Buffer Aperture"
msgstr "Buffer Abertura"
-#: appEditors/FlatCAMGrbEditor.py:2616
+#: appEditors/AppGerberEditor.py:2616
msgid "Buffer a aperture in the aperture list"
msgstr "Buffer de uma abertura na lista de aberturas"
-#: appEditors/FlatCAMGrbEditor.py:2629
+#: appEditors/AppGerberEditor.py:2629
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:195
msgid "Buffer distance"
msgstr "Distância do buffer"
-#: appEditors/FlatCAMGrbEditor.py:2630
+#: appEditors/AppGerberEditor.py:2630
msgid "Buffer corner"
msgstr "Canto do buffer"
-#: appEditors/FlatCAMGrbEditor.py:2632
+#: appEditors/AppGerberEditor.py:2632
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded.\n"
@@ -3189,20 +3189,20 @@ msgstr ""
"- 'Chanfrado:' o canto é uma linha que conecta diretamente os recursos "
"reunidos no canto"
-#: appEditors/FlatCAMGrbEditor.py:2662
+#: appEditors/AppGerberEditor.py:2662
msgid "Scale Aperture"
msgstr "Redim. Abertura"
-#: appEditors/FlatCAMGrbEditor.py:2664
+#: appEditors/AppGerberEditor.py:2664
msgid "Scale a aperture in the aperture list"
msgstr "Redimensiona uma abertura na lista de aberturas"
-#: appEditors/FlatCAMGrbEditor.py:2672
+#: appEditors/AppGerberEditor.py:2672
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:210
msgid "Scale factor"
msgstr "Fator de Escala"
-#: appEditors/FlatCAMGrbEditor.py:2674
+#: appEditors/AppGerberEditor.py:2674
msgid ""
"The factor by which to scale the selected aperture.\n"
"Values can be between 0.0000 and 999.9999"
@@ -3210,19 +3210,19 @@ msgstr ""
"O fator para redimensionar a abertura selecionada. \n"
"Os valores podem estar entre 0.0000 e 999.9999"
-#: appEditors/FlatCAMGrbEditor.py:2702
+#: appEditors/AppGerberEditor.py:2702
msgid "Mark polygons"
msgstr "Marcar polígonos"
-#: appEditors/FlatCAMGrbEditor.py:2704
+#: appEditors/AppGerberEditor.py:2704
msgid "Mark the polygon areas."
msgstr "Marcar as áreas de polígonos."
-#: appEditors/FlatCAMGrbEditor.py:2712
+#: appEditors/AppGerberEditor.py:2712
msgid "Area UPPER threshold"
msgstr "Limite de área SUPERIOR"
-#: appEditors/FlatCAMGrbEditor.py:2714
+#: appEditors/AppGerberEditor.py:2714
msgid ""
"The threshold value, all areas less than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3230,11 +3230,11 @@ msgstr ""
"Valor limite, todas as áreas menores que isso são marcadas.\n"
"Pode ser um valor entre 0.0000 e 9999.9999"
-#: appEditors/FlatCAMGrbEditor.py:2721
+#: appEditors/AppGerberEditor.py:2721
msgid "Area LOWER threshold"
msgstr "Limite de área INFERIOR"
-#: appEditors/FlatCAMGrbEditor.py:2723
+#: appEditors/AppGerberEditor.py:2723
msgid ""
"The threshold value, all areas more than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3242,32 +3242,32 @@ msgstr ""
"Valor limite, todas as áreas maiores que isso são marcadas.\n"
"Pode ser um valor entre 0.0000 e 9999.9999"
-#: appEditors/FlatCAMGrbEditor.py:2737
+#: appEditors/AppGerberEditor.py:2737
msgid "Mark"
msgstr "Marcar"
-#: appEditors/FlatCAMGrbEditor.py:2739
+#: appEditors/AppGerberEditor.py:2739
msgid "Mark the polygons that fit within limits."
msgstr "Marcar os polígonos que se encaixam dentro dos limites."
-#: appEditors/FlatCAMGrbEditor.py:2745
+#: appEditors/AppGerberEditor.py:2745
msgid "Delete all the marked polygons."
msgstr "Excluir todos os polígonos marcados."
-#: appEditors/FlatCAMGrbEditor.py:2751
+#: appEditors/AppGerberEditor.py:2751
msgid "Clear all the markings."
msgstr "Limpar todas as marcações."
-#: appEditors/FlatCAMGrbEditor.py:2771 appGUI/MainGUI.py:1040
+#: appEditors/AppGerberEditor.py:2771 appGUI/MainGUI.py:1040
#: appGUI/MainGUI.py:2072 appGUI/MainGUI.py:4511
msgid "Add Pad Array"
msgstr "Adicionar Matriz de Pads"
-#: appEditors/FlatCAMGrbEditor.py:2773
+#: appEditors/AppGerberEditor.py:2773
msgid "Add an array of pads (linear or circular array)"
msgstr "Adicione uma matriz de pads (matriz linear ou circular)"
-#: appEditors/FlatCAMGrbEditor.py:2779
+#: appEditors/AppGerberEditor.py:2779
msgid ""
"Select the type of pads array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -3275,17 +3275,17 @@ msgstr ""
"Selecione o tipo de matriz de pads para criar.\n"
"Pode ser Linear X(Y) ou Circular"
-#: appEditors/FlatCAMGrbEditor.py:2790
+#: appEditors/AppGerberEditor.py:2790
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:95
msgid "Nr of pads"
msgstr "Nº de pads"
-#: appEditors/FlatCAMGrbEditor.py:2792
+#: appEditors/AppGerberEditor.py:2792
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:97
msgid "Specify how many pads to be in the array."
msgstr "Especifique quantos pads devem estar na matriz."
-#: appEditors/FlatCAMGrbEditor.py:2841
+#: appEditors/AppGerberEditor.py:2841
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -3297,13 +3297,13 @@ msgstr ""
"Valor mínimo: -359.99 graus.\n"
"Valor máximo: 360.00 graus."
-#: appEditors/FlatCAMGrbEditor.py:3335 appEditors/FlatCAMGrbEditor.py:3339
+#: appEditors/AppGerberEditor.py:3335 appEditors/AppGerberEditor.py:3339
msgid "Aperture code value is missing or wrong format. Add it and retry."
msgstr ""
"O valor do código de abertura está ausente ou em formato incorreto. Altere e "
"tente novamente."
-#: appEditors/FlatCAMGrbEditor.py:3375
+#: appEditors/AppGerberEditor.py:3375
msgid ""
"Aperture dimensions value is missing or wrong format. Add it in format "
"(width, height) and retry."
@@ -3311,157 +3311,157 @@ msgstr ""
"O valor das dimensões da abertura está ausente ou está no formato errado. "
"Altere (largura, altura) e tente novamente."
-#: appEditors/FlatCAMGrbEditor.py:3388
+#: appEditors/AppGerberEditor.py:3388
msgid "Aperture size value is missing or wrong format. Add it and retry."
msgstr ""
"O valor do tamanho da abertura está ausente ou está no formato errado. "
"Altere e tente novamente."
-#: appEditors/FlatCAMGrbEditor.py:3399
+#: appEditors/AppGerberEditor.py:3399
msgid "Aperture already in the aperture table."
msgstr "Abertura já na tabela de aberturas."
-#: appEditors/FlatCAMGrbEditor.py:3406
+#: appEditors/AppGerberEditor.py:3406
msgid "Added new aperture with code"
msgstr "Adicionada nova abertura com código"
-#: appEditors/FlatCAMGrbEditor.py:3438
+#: appEditors/AppGerberEditor.py:3438
msgid " Select an aperture in Aperture Table"
msgstr " Selecione uma abertura na Tabela de Aberturas"
-#: appEditors/FlatCAMGrbEditor.py:3446
+#: appEditors/AppGerberEditor.py:3446
msgid "Select an aperture in Aperture Table -->"
msgstr "Selecione uma abertura na Tabela de Aberturas ->"
-#: appEditors/FlatCAMGrbEditor.py:3460
+#: appEditors/AppGerberEditor.py:3460
msgid "Deleted aperture with code"
msgstr "Abertura excluída com código"
-#: appEditors/FlatCAMGrbEditor.py:3528
+#: appEditors/AppGerberEditor.py:3528
msgid "Dimensions need two float values separated by comma."
msgstr ""
"As dimensões precisam de dois valores flutuantes separados por vírgula."
-#: appEditors/FlatCAMGrbEditor.py:3537
+#: appEditors/AppGerberEditor.py:3537
msgid "Dimensions edited."
msgstr "Dimensões editadas."
-#: appEditors/FlatCAMGrbEditor.py:4066
+#: appEditors/AppGerberEditor.py:4066
msgid "Loading Gerber into Editor"
msgstr "Lendo Gerber no Editor"
-#: appEditors/FlatCAMGrbEditor.py:4194
+#: appEditors/AppGerberEditor.py:4194
msgid "Setting up the UI"
msgstr "Configurando a interface do usuário"
-#: appEditors/FlatCAMGrbEditor.py:4195
+#: appEditors/AppGerberEditor.py:4195
msgid "Adding geometry finished. Preparing the GUI"
msgstr "Geometria adicionada. Preparando a GUI"
-#: appEditors/FlatCAMGrbEditor.py:4204
+#: appEditors/AppGerberEditor.py:4204
msgid "Finished loading the Gerber object into the editor."
msgstr "Carregamento do objeto Gerber no editor concluído."
-#: appEditors/FlatCAMGrbEditor.py:4345
+#: appEditors/AppGerberEditor.py:4345
msgid ""
"There are no Aperture definitions in the file. Aborting Gerber creation."
msgstr ""
"Não há definições da Abertura no arquivo. Abortando a criação de Gerber."
-#: appEditors/FlatCAMGrbEditor.py:4347 appObjects/AppObject.py:133
+#: appEditors/AppGerberEditor.py:4347 appObjects/AppObject.py:133
#: appObjects/FlatCAMGeometry.py:1786 appParsers/ParseExcellon.py:896
#: appTools/ToolPcbWizard.py:432 app_Main.py:8589 app_Main.py:8653
#: app_Main.py:8784 app_Main.py:8849 app_Main.py:9501
msgid "An internal error has occurred. See shell.\n"
msgstr "Ocorreu um erro interno. Veja shell (linha de comando).\n"
-#: appEditors/FlatCAMGrbEditor.py:4355
+#: appEditors/AppGerberEditor.py:4355
msgid "Creating Gerber."
msgstr "Criando Gerber."
-#: appEditors/FlatCAMGrbEditor.py:4367
+#: appEditors/AppGerberEditor.py:4367
msgid "Done. Gerber editing finished."
msgstr "Edição de Gerber concluída."
-#: appEditors/FlatCAMGrbEditor.py:4383
+#: appEditors/AppGerberEditor.py:4383
msgid "Cancelled. No aperture is selected"
msgstr "Cancelado. Nenhuma abertura selecionada"
-#: appEditors/FlatCAMGrbEditor.py:4538 app_Main.py:6122
+#: appEditors/AppGerberEditor.py:4538 app_Main.py:6122
msgid "Coordinates copied to clipboard."
msgstr "Coordenadas copiadas para a área de transferência."
-#: appEditors/FlatCAMGrbEditor.py:4985
+#: appEditors/AppGerberEditor.py:4985
msgid "Failed. No aperture geometry is selected."
msgstr "Cancelado. Nenhuma abertura selecionada."
-#: appEditors/FlatCAMGrbEditor.py:4994 appEditors/FlatCAMGrbEditor.py:5265
+#: appEditors/AppGerberEditor.py:4994 appEditors/AppGerberEditor.py:5265
msgid "Done. Apertures geometry deleted."
msgstr "Abertura excluída."
-#: appEditors/FlatCAMGrbEditor.py:5137
+#: appEditors/AppGerberEditor.py:5137
msgid "No aperture to buffer. Select at least one aperture and try again."
msgstr ""
"Nenhuma abertura para buffer. Selecione pelo menos uma abertura e tente "
"novamente."
-#: appEditors/FlatCAMGrbEditor.py:5149
+#: appEditors/AppGerberEditor.py:5149
msgid "Failed."
msgstr "Falhou."
-#: appEditors/FlatCAMGrbEditor.py:5168
+#: appEditors/AppGerberEditor.py:5168
msgid "Scale factor value is missing or wrong format. Add it and retry."
msgstr ""
"O valor do fator de escala está ausente ou está em formato incorreto. Altere "
"e tente novamente."
-#: appEditors/FlatCAMGrbEditor.py:5200
+#: appEditors/AppGerberEditor.py:5200
msgid "No aperture to scale. Select at least one aperture and try again."
msgstr ""
"Nenhuma abertura para redimensionar. Selecione pelo menos uma abertura e "
"tente novamente."
-#: appEditors/FlatCAMGrbEditor.py:5216
+#: appEditors/AppGerberEditor.py:5216
msgid "Done. Scale Tool completed."
msgstr "Redimensionamento concluído."
-#: appEditors/FlatCAMGrbEditor.py:5254
+#: appEditors/AppGerberEditor.py:5254
msgid "Polygons marked."
msgstr "Polígonos marcados."
-#: appEditors/FlatCAMGrbEditor.py:5257
+#: appEditors/AppGerberEditor.py:5257
msgid "No polygons were marked. None fit within the limits."
msgstr "Nenhum polígono foi marcado. Nenhum se encaixa dentro dos limites."
-#: appEditors/FlatCAMGrbEditor.py:5985
+#: appEditors/AppGerberEditor.py:5985
msgid "Rotation action was not executed."
msgstr "A rotação não foi executada."
-#: appEditors/FlatCAMGrbEditor.py:6027 app_Main.py:5556 app_Main.py:5604
+#: appEditors/AppGerberEditor.py:6027 app_Main.py:5556 app_Main.py:5604
msgid "Flip action was not executed."
msgstr "A ação de espelhamento não foi executada."
-#: appEditors/FlatCAMGrbEditor.py:6067
+#: appEditors/AppGerberEditor.py:6067
msgid "Skew action was not executed."
msgstr "A inclinação não foi executada."
-#: appEditors/FlatCAMGrbEditor.py:6106
+#: appEditors/AppGerberEditor.py:6106
msgid "Scale action was not executed."
msgstr "O redimensionamento não foi executado."
-#: appEditors/FlatCAMGrbEditor.py:6150
+#: appEditors/AppGerberEditor.py:6150
msgid "Offset action was not executed."
msgstr "O deslocamento não foi executado."
-#: appEditors/FlatCAMGrbEditor.py:6236
+#: appEditors/AppGerberEditor.py:6236
msgid "Geometry shape offset Y cancelled"
msgstr "Deslocamento Y cancelado"
-#: appEditors/FlatCAMGrbEditor.py:6251
+#: appEditors/AppGerberEditor.py:6251
msgid "Geometry shape skew X cancelled"
msgstr "Inclinação X cancelada"
-#: appEditors/FlatCAMGrbEditor.py:6266
+#: appEditors/AppGerberEditor.py:6266
msgid "Geometry shape skew Y cancelled"
msgstr "Inclinação Y cancelada"
diff --git a/locale/ro/LC_MESSAGES/strings.po b/locale/ro/LC_MESSAGES/strings.po
index 9acdeb90..f0e2d9b4 100644
--- a/locale/ro/LC_MESSAGES/strings.po
+++ b/locale/ro/LC_MESSAGES/strings.po
@@ -106,8 +106,8 @@ msgid "Bookmarks"
msgstr "Bookmarks"
#: Bookmark.py:300 Bookmark.py:342 appDatabase.py:665 appDatabase.py:711
-#: appDatabase.py:2279 appDatabase.py:2325 appEditors/FlatCAMExcEditor.py:1023
-#: appEditors/FlatCAMExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
+#: appDatabase.py:2279 appDatabase.py:2325 appEditors/AppExcEditor.py:1023
+#: appEditors/AppExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
#: appGUI/MainGUI.py:2730 appGUI/MainGUI.py:2952 appGUI/MainGUI.py:3167
#: appObjects/ObjectCollection.py:127 appTools/ToolFilm.py:739
#: appTools/ToolFilm.py:885 appTools/ToolImage.py:247 appTools/ToolMove.py:269
@@ -177,7 +177,7 @@ msgstr ""
"Zona adăugată. Faceți clic stanga pt a continua adăugarea de zone sau click "
"dreapta pentru a termina."
-#: Common.py:322 appEditors/appGeoEditor.py:2352
+#: Common.py:322 appEditors/AppGeoEditor.py:2352
#: appTools/ToolIsolation.py:2584 appTools/ToolNCC.py:1754
#: appTools/ToolPaint.py:1647
msgid "Click on next Point or click right mouse button to complete ..."
@@ -280,7 +280,7 @@ msgid "Tool Name"
msgstr "Nume unealtă"
#: appDatabase.py:161 appDatabase.py:837 appDatabase.py:1119
-#: appEditors/FlatCAMExcEditor.py:1604 appGUI/ObjectUI.py:1226
+#: appEditors/AppExcEditor.py:1604 appGUI/ObjectUI.py:1226
#: appGUI/ObjectUI.py:1480
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:132
#: appTools/ToolIsolation.py:260 appTools/ToolNCC.py:278
@@ -839,7 +839,7 @@ msgstr ""
"Dacă nu are succes, atunci curățarea din cupru nu va reuși.\n"
"- Curățare -> curățarea obișnuită de cupru."
-#: appDatabase.py:1427 appEditors/FlatCAMGrbEditor.py:2749
+#: appDatabase.py:1427 appEditors/AppGerberEditor.py:2749
#: appGUI/GUIElements.py:2765 appTools/ToolNCC.py:350
msgid "Clear"
msgstr "Șterge"
@@ -891,7 +891,7 @@ msgid "Conventional"
msgstr "Convenţional"
#: appDatabase.py:1456 appDatabase.py:1565 appDatabase.py:1667
-#: appEditors/appGeoEditor.py:450
+#: appEditors/AppGeoEditor.py:450
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:167
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:182
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:163
@@ -920,7 +920,7 @@ msgstr ""
"Valori mari= procesare lentă cât și o execuţie la fel de lentă a PCB-ului,\n"
"datorită numărului mai mare de treceri-tăiere."
-#: appDatabase.py:1477 appDatabase.py:1586 appEditors/appGeoEditor.py:470
+#: appDatabase.py:1477 appDatabase.py:1586 appEditors/AppGeoEditor.py:470
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:72
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:229
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:59
@@ -949,7 +949,7 @@ msgstr "Margine"
msgid "Bounding box margin."
msgstr "Marginea pentru forma înconjurătoare."
-#: appDatabase.py:1490 appDatabase.py:1601 appEditors/appGeoEditor.py:484
+#: appDatabase.py:1490 appDatabase.py:1601 appEditors/AppGeoEditor.py:484
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:105
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:106
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:215
@@ -972,7 +972,7 @@ msgstr ""
"- Punct-origine: înspre exterior porning de la punctul sămanță.\n"
"- Linii: linii paralele."
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2232 appTools/ToolNCC.py:2764
@@ -982,8 +982,8 @@ msgstr ""
msgid "Standard"
msgstr "Standard"
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:568 appEditors/appGeoEditor.py:5091
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:568 appEditors/AppGeoEditor.py:5091
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2243 appTools/ToolNCC.py:2770
@@ -994,8 +994,8 @@ msgstr "Standard"
msgid "Seed"
msgstr "Punct_arbitrar"
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:5095
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:5095
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2254 appTools/ToolPaint.py:389
@@ -1019,7 +1019,7 @@ msgstr "Combinat"
msgid "Connect"
msgstr "Conectează"
-#: appDatabase.py:1512 appDatabase.py:1629 appEditors/appGeoEditor.py:507
+#: appDatabase.py:1512 appDatabase.py:1629 appEditors/AppGeoEditor.py:507
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:239
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:226
#: appTools/ToolNCC.py:443 appTools/ToolPaint.py:403
@@ -1038,7 +1038,7 @@ msgstr ""
msgid "Contour"
msgstr "Contur"
-#: appDatabase.py:1522 appDatabase.py:1636 appEditors/appGeoEditor.py:517
+#: appDatabase.py:1522 appDatabase.py:1636 appEditors/AppGeoEditor.py:517
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:248
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:234
#: appTools/ToolNCC.py:453 appTools/ToolPaint.py:410
@@ -1049,8 +1049,8 @@ msgstr ""
"Taie de-a lungul perimetrului poligonului\n"
"pentru a elimina bavurile."
-#: appDatabase.py:1528 appEditors/appGeoEditor.py:611
-#: appEditors/FlatCAMGrbEditor.py:5304 appGUI/ObjectUI.py:143
+#: appDatabase.py:1528 appEditors/AppGeoEditor.py:611
+#: appEditors/AppGerberEditor.py:5304 appGUI/ObjectUI.py:143
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:255
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:183
@@ -1072,7 +1072,7 @@ msgstr ""
"de traseele de cupru.\n"
"Valoarea poate fi cuprinsă între 0 și 10 unități FlatCAM."
-#: appDatabase.py:1567 appEditors/appGeoEditor.py:452
+#: appDatabase.py:1567 appEditors/AppGeoEditor.py:452
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:165
#: appTools/ToolPaint.py:330
msgid ""
@@ -1093,7 +1093,7 @@ msgstr ""
"Valori mari= procesare lentă cat și o execuţie la fel de lentă a PCB-ului,\n"
"datorită numărului mai mare de treceri-tăiere."
-#: appDatabase.py:1588 appEditors/appGeoEditor.py:472
+#: appDatabase.py:1588 appEditors/AppGeoEditor.py:472
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:185
#: appTools/ToolPaint.py:351
msgid ""
@@ -1239,143 +1239,143 @@ msgstr ""
"Introduceți o unealtă nouă în tabela de Unelte a obiectului / Unealta "
"aplicației după selectarea unei unelte în baza de date a Uneltelor."
-#: appEditors/FlatCAMExcEditor.py:50 appEditors/FlatCAMExcEditor.py:74
-#: appEditors/FlatCAMExcEditor.py:168 appEditors/FlatCAMExcEditor.py:385
-#: appEditors/FlatCAMExcEditor.py:589 appEditors/FlatCAMGrbEditor.py:241
-#: appEditors/FlatCAMGrbEditor.py:248
+#: appEditors/AppExcEditor.py:50 appEditors/AppExcEditor.py:74
+#: appEditors/AppExcEditor.py:168 appEditors/AppExcEditor.py:385
+#: appEditors/AppExcEditor.py:589 appEditors/AppGerberEditor.py:241
+#: appEditors/AppGerberEditor.py:248
msgid "Click to place ..."
msgstr "Click pt a plasa ..."
-#: appEditors/FlatCAMExcEditor.py:58
+#: appEditors/AppExcEditor.py:58
msgid "To add a drill first select a tool"
msgstr ""
"Pentru a adăuga o operaţie de găurire mai intai selectează un burghiu "
"(unealtă)"
-#: appEditors/FlatCAMExcEditor.py:122
+#: appEditors/AppExcEditor.py:122
msgid "Done. Drill added."
msgstr "Executat. Operaţie de găurire adăugată."
-#: appEditors/FlatCAMExcEditor.py:176
+#: appEditors/AppExcEditor.py:176
msgid "To add an Drill Array first select a tool in Tool Table"
msgstr ""
"Pentru a adăuga o arie de operațiuni de găurire mai intai selectează un "
"burghiu (unealtă)"
-#: appEditors/FlatCAMExcEditor.py:192 appEditors/FlatCAMExcEditor.py:415
-#: appEditors/FlatCAMExcEditor.py:636 appEditors/FlatCAMExcEditor.py:1151
-#: appEditors/FlatCAMExcEditor.py:1178 appEditors/FlatCAMGrbEditor.py:471
-#: appEditors/FlatCAMGrbEditor.py:1944 appEditors/FlatCAMGrbEditor.py:1974
+#: appEditors/AppExcEditor.py:192 appEditors/AppExcEditor.py:415
+#: appEditors/AppExcEditor.py:636 appEditors/AppExcEditor.py:1151
+#: appEditors/AppExcEditor.py:1178 appEditors/AppGerberEditor.py:471
+#: appEditors/AppGerberEditor.py:1944 appEditors/AppGerberEditor.py:1974
msgid "Click on target location ..."
msgstr "Click pe locatia tintă ..."
-#: appEditors/FlatCAMExcEditor.py:211
+#: appEditors/AppExcEditor.py:211
msgid "Click on the Drill Circular Array Start position"
msgstr "Click pe punctul de Start al ariei de operațiuni de găurire"
-#: appEditors/FlatCAMExcEditor.py:233 appEditors/FlatCAMExcEditor.py:677
-#: appEditors/FlatCAMGrbEditor.py:516
+#: appEditors/AppExcEditor.py:233 appEditors/AppExcEditor.py:677
+#: appEditors/AppGerberEditor.py:516
msgid "The value is not Float. Check for comma instead of dot separator."
msgstr ""
"Valoarea nu este număr Real. Verifică să nu fi folosit virgula in loc de "
"punct ca și separator decimal."
-#: appEditors/FlatCAMExcEditor.py:237
+#: appEditors/AppExcEditor.py:237
msgid "The value is mistyped. Check the value"
msgstr "Valoarea este gresită. Verifică ce ai introdus"
-#: appEditors/FlatCAMExcEditor.py:336
+#: appEditors/AppExcEditor.py:336
msgid "Too many drills for the selected spacing angle."
msgstr "Prea multe operațiuni de găurire pentru unghiul selectat."
-#: appEditors/FlatCAMExcEditor.py:354
+#: appEditors/AppExcEditor.py:354
msgid "Done. Drill Array added."
msgstr "Executat. Aria de operațiuni de găurire a fost adăugată."
-#: appEditors/FlatCAMExcEditor.py:394
+#: appEditors/AppExcEditor.py:394
msgid "To add a slot first select a tool"
msgstr "Pentru a adăuga un slot mai întâi, selectați o unealtă"
-#: appEditors/FlatCAMExcEditor.py:454 appEditors/FlatCAMExcEditor.py:461
-#: appEditors/FlatCAMExcEditor.py:742 appEditors/FlatCAMExcEditor.py:749
+#: appEditors/AppExcEditor.py:454 appEditors/AppExcEditor.py:461
+#: appEditors/AppExcEditor.py:742 appEditors/AppExcEditor.py:749
msgid "Value is missing or wrong format. Add it and retry."
msgstr ""
"Valoarea lipsește sau formatul greșit. Adăugați-l și încercați din nou."
-#: appEditors/FlatCAMExcEditor.py:559
+#: appEditors/AppExcEditor.py:559
msgid "Done. Adding Slot completed."
msgstr "Terminat. Adăugarea slotului finalizată."
-#: appEditors/FlatCAMExcEditor.py:597
+#: appEditors/AppExcEditor.py:597
msgid "To add an Slot Array first select a tool in Tool Table"
msgstr ""
"Pentru a adăuga o arie de sloturi, selectați mai întâi o unealtă din tabelul "
"de unelte"
-#: appEditors/FlatCAMExcEditor.py:655
+#: appEditors/AppExcEditor.py:655
msgid "Click on the Slot Circular Array Start position"
msgstr "Faceți clic pe poziția de pornire a ariei circulare de slotuluri"
-#: appEditors/FlatCAMExcEditor.py:680 appEditors/FlatCAMGrbEditor.py:519
+#: appEditors/AppExcEditor.py:680 appEditors/AppGerberEditor.py:519
msgid "The value is mistyped. Check the value."
msgstr "Valoarea este gresită. Verifică ce ai introdus."
-#: appEditors/FlatCAMExcEditor.py:859
+#: appEditors/AppExcEditor.py:859
msgid "Too many Slots for the selected spacing angle."
msgstr "Prea multe sloturi pentru unghiul de distanțare selectat."
-#: appEditors/FlatCAMExcEditor.py:882
+#: appEditors/AppExcEditor.py:882
msgid "Done. Slot Array added."
msgstr "Terminat. S-a adăugat aria de sloturi."
-#: appEditors/FlatCAMExcEditor.py:904
+#: appEditors/AppExcEditor.py:904
msgid "Click on the Drill(s) to resize ..."
msgstr ""
"Click pe operațiunile de găurire care se dorește să fie redimensionate ..."
-#: appEditors/FlatCAMExcEditor.py:934
+#: appEditors/AppExcEditor.py:934
msgid "Resize drill(s) failed. Please enter a diameter for resize."
msgstr ""
"Redimensionarea operațiunilor de găurire a eșuat. Adaugă o valoare pentru "
"dimetrul la care se face redimensionarea."
-#: appEditors/FlatCAMExcEditor.py:1112
+#: appEditors/AppExcEditor.py:1112
msgid "Done. Drill/Slot Resize completed."
msgstr "Executat. Redimensionarea Perforării / slotului finalizată."
-#: appEditors/FlatCAMExcEditor.py:1115
+#: appEditors/AppExcEditor.py:1115
msgid "Cancelled. No drills/slots selected for resize ..."
msgstr "Anulat. Nu au fost selectate găuri / sloturi pentru redimensionare ..."
-#: appEditors/FlatCAMExcEditor.py:1153 appEditors/FlatCAMGrbEditor.py:1946
+#: appEditors/AppExcEditor.py:1153 appEditors/AppGerberEditor.py:1946
msgid "Click on reference location ..."
msgstr "Click pe locatia de referinţă ..."
-#: appEditors/FlatCAMExcEditor.py:1210
+#: appEditors/AppExcEditor.py:1210
msgid "Done. Drill(s) Move completed."
msgstr "Executat. Operatiile de găurire au fost mutate."
-#: appEditors/FlatCAMExcEditor.py:1318
+#: appEditors/AppExcEditor.py:1318
msgid "Done. Drill(s) copied."
msgstr "Executat. Operatiile de găurire au fost copiate."
-#: appEditors/FlatCAMExcEditor.py:1557
+#: appEditors/AppExcEditor.py:1557
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:26
msgid "Excellon Editor"
msgstr "Editor Excellon"
-#: appEditors/FlatCAMExcEditor.py:1564 appEditors/FlatCAMGrbEditor.py:2469
+#: appEditors/AppExcEditor.py:1564 appEditors/AppGerberEditor.py:2469
msgid "Name:"
msgstr "Nume:"
-#: appEditors/FlatCAMExcEditor.py:1570 appGUI/ObjectUI.py:540
+#: appEditors/AppExcEditor.py:1570 appGUI/ObjectUI.py:540
#: appGUI/ObjectUI.py:1362 appTools/ToolIsolation.py:118
#: appTools/ToolNCC.py:120 appTools/ToolPaint.py:114
#: appTools/ToolSolderPaste.py:79
msgid "Tools Table"
msgstr "Tabela Unelte"
-#: appEditors/FlatCAMExcEditor.py:1572 appGUI/ObjectUI.py:542
+#: appEditors/AppExcEditor.py:1572 appGUI/ObjectUI.py:542
msgid ""
"Tools in this Excellon object\n"
"when are used for drilling."
@@ -1383,7 +1383,7 @@ msgstr ""
"Burghie (unelte) in acest obiect Excellon\n"
"când se face găurire."
-#: appEditors/FlatCAMExcEditor.py:1584 appEditors/FlatCAMExcEditor.py:3041
+#: appEditors/AppExcEditor.py:1584 appEditors/AppExcEditor.py:3041
#: appGUI/ObjectUI.py:560 appObjects/FlatCAMExcellon.py:1265
#: appObjects/FlatCAMExcellon.py:1368 appObjects/FlatCAMExcellon.py:1553
#: appTools/ToolIsolation.py:130 appTools/ToolNCC.py:132
@@ -1393,11 +1393,11 @@ msgstr ""
msgid "Diameter"
msgstr "Diametru"
-#: appEditors/FlatCAMExcEditor.py:1592
+#: appEditors/AppExcEditor.py:1592
msgid "Add/Delete Tool"
msgstr "Adaugă/Șterge Unealta"
-#: appEditors/FlatCAMExcEditor.py:1594
+#: appEditors/AppExcEditor.py:1594
msgid ""
"Add/Delete a tool to the tool list\n"
"for this Excellon object."
@@ -1405,16 +1405,16 @@ msgstr ""
"Adaugă/Șterge o unealtă la lista de unelte\n"
"pentru acest obiect Excellon."
-#: appEditors/FlatCAMExcEditor.py:1606 appGUI/ObjectUI.py:1482
+#: appEditors/AppExcEditor.py:1606 appGUI/ObjectUI.py:1482
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:57
msgid "Diameter for the new tool"
msgstr "Diametru pentru noua unealtă (burghiu, freza)"
-#: appEditors/FlatCAMExcEditor.py:1616
+#: appEditors/AppExcEditor.py:1616
msgid "Add Tool"
msgstr "Adaugă Unealta"
-#: appEditors/FlatCAMExcEditor.py:1618
+#: appEditors/AppExcEditor.py:1618
msgid ""
"Add a new tool to the tool list\n"
"with the diameter specified above."
@@ -1422,11 +1422,11 @@ msgstr ""
"Adaugă o unealtă noua la lista de unelte\n"
"cu diametrul specificat deasupra."
-#: appEditors/FlatCAMExcEditor.py:1630
+#: appEditors/AppExcEditor.py:1630
msgid "Delete Tool"
msgstr "Șterge Unealta"
-#: appEditors/FlatCAMExcEditor.py:1632
+#: appEditors/AppExcEditor.py:1632
msgid ""
"Delete a tool in the tool list\n"
"by selecting a row in the tool table."
@@ -1434,42 +1434,42 @@ msgstr ""
"Șterge o unealtă in lista de unelte\n"
"prin selectarea unei linii in tabela de unelte."
-#: appEditors/FlatCAMExcEditor.py:1650 appGUI/MainGUI.py:4392
+#: appEditors/AppExcEditor.py:1650 appGUI/MainGUI.py:4392
msgid "Resize Drill(s)"
msgstr "Redimensionare operațiuni de găurire"
-#: appEditors/FlatCAMExcEditor.py:1652
+#: appEditors/AppExcEditor.py:1652
msgid "Resize a drill or a selection of drills."
msgstr ""
"Redimensionează o operaţie de găurire sau o selecţie de operațiuni de "
"găurire."
-#: appEditors/FlatCAMExcEditor.py:1659
+#: appEditors/AppExcEditor.py:1659
msgid "Resize Dia"
msgstr "Redimens. Dia"
-#: appEditors/FlatCAMExcEditor.py:1661
+#: appEditors/AppExcEditor.py:1661
msgid "Diameter to resize to."
msgstr "Diametrul la care se face redimensionarea."
-#: appEditors/FlatCAMExcEditor.py:1672
+#: appEditors/AppExcEditor.py:1672
msgid "Resize"
msgstr "Redimensionează"
-#: appEditors/FlatCAMExcEditor.py:1674
+#: appEditors/AppExcEditor.py:1674
msgid "Resize drill(s)"
msgstr "Redimensionează op. de găurire."
-#: appEditors/FlatCAMExcEditor.py:1699 appGUI/MainGUI.py:1514
+#: appEditors/AppExcEditor.py:1699 appGUI/MainGUI.py:1514
#: appGUI/MainGUI.py:4391
msgid "Add Drill Array"
msgstr "Adaugă o arie de op. găurire"
-#: appEditors/FlatCAMExcEditor.py:1701
+#: appEditors/AppExcEditor.py:1701
msgid "Add an array of drills (linear or circular array)"
msgstr "Adaugă o arie de operațiuni de găurire (arie lineara sau circulara)."
-#: appEditors/FlatCAMExcEditor.py:1707
+#: appEditors/AppExcEditor.py:1707
msgid ""
"Select the type of drills array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -1477,13 +1477,13 @@ msgstr ""
"Selectează tipul de arii de operațiuni de găurire.\n"
"Poate fi Liniar X(Y) sau Circular"
-#: appEditors/FlatCAMExcEditor.py:1710 appEditors/FlatCAMExcEditor.py:1924
-#: appEditors/FlatCAMGrbEditor.py:2782
+#: appEditors/AppExcEditor.py:1710 appEditors/AppExcEditor.py:1924
+#: appEditors/AppGerberEditor.py:2782
msgid "Linear"
msgstr "Liniar"
-#: appEditors/FlatCAMExcEditor.py:1711 appEditors/FlatCAMExcEditor.py:1925
-#: appEditors/FlatCAMGrbEditor.py:2783
+#: appEditors/AppExcEditor.py:1711 appEditors/AppExcEditor.py:1925
+#: appEditors/AppGerberEditor.py:2783
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:52
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:149
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:107
@@ -1499,26 +1499,26 @@ msgstr "Liniar"
msgid "Circular"
msgstr "Circular"
-#: appEditors/FlatCAMExcEditor.py:1719
+#: appEditors/AppExcEditor.py:1719
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:68
msgid "Nr of drills"
msgstr "Nr. op. găurire"
-#: appEditors/FlatCAMExcEditor.py:1720
+#: appEditors/AppExcEditor.py:1720
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:70
msgid "Specify how many drills to be in the array."
msgstr "Specifica cate operațiuni de găurire să fie incluse in arie."
-#: appEditors/FlatCAMExcEditor.py:1738 appEditors/FlatCAMExcEditor.py:1788
-#: appEditors/FlatCAMExcEditor.py:1860 appEditors/FlatCAMExcEditor.py:1953
-#: appEditors/FlatCAMExcEditor.py:2004 appEditors/FlatCAMGrbEditor.py:1580
-#: appEditors/FlatCAMGrbEditor.py:2811 appEditors/FlatCAMGrbEditor.py:2860
+#: appEditors/AppExcEditor.py:1738 appEditors/AppExcEditor.py:1788
+#: appEditors/AppExcEditor.py:1860 appEditors/AppExcEditor.py:1953
+#: appEditors/AppExcEditor.py:2004 appEditors/AppGerberEditor.py:1580
+#: appEditors/AppGerberEditor.py:2811 appEditors/AppGerberEditor.py:2860
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:178
msgid "Direction"
msgstr "Direcţie"
-#: appEditors/FlatCAMExcEditor.py:1740 appEditors/FlatCAMExcEditor.py:1955
-#: appEditors/FlatCAMGrbEditor.py:2813
+#: appEditors/AppExcEditor.py:1740 appEditors/AppExcEditor.py:1955
+#: appEditors/AppGerberEditor.py:2813
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:86
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:234
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:123
@@ -1533,8 +1533,8 @@ msgstr ""
"- 'Y' - pe axa verticala sau \n"
"- 'Unghi' - un unghi particular pentru inclinatia ariei"
-#: appEditors/FlatCAMExcEditor.py:1747 appEditors/FlatCAMExcEditor.py:1869
-#: appEditors/FlatCAMExcEditor.py:1962 appEditors/FlatCAMGrbEditor.py:2820
+#: appEditors/AppExcEditor.py:1747 appEditors/AppExcEditor.py:1869
+#: appEditors/AppExcEditor.py:1962 appEditors/AppGerberEditor.py:2820
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:240
@@ -1544,8 +1544,8 @@ msgstr ""
msgid "X"
msgstr "X"
-#: appEditors/FlatCAMExcEditor.py:1748 appEditors/FlatCAMExcEditor.py:1870
-#: appEditors/FlatCAMExcEditor.py:1963 appEditors/FlatCAMGrbEditor.py:2821
+#: appEditors/AppExcEditor.py:1748 appEditors/AppExcEditor.py:1870
+#: appEditors/AppExcEditor.py:1963 appEditors/AppGerberEditor.py:2821
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:241
@@ -1555,13 +1555,13 @@ msgstr "X"
msgid "Y"
msgstr "Y"
-#: appEditors/FlatCAMExcEditor.py:1749 appEditors/FlatCAMExcEditor.py:1766
-#: appEditors/FlatCAMExcEditor.py:1800 appEditors/FlatCAMExcEditor.py:1871
-#: appEditors/FlatCAMExcEditor.py:1875 appEditors/FlatCAMExcEditor.py:1964
-#: appEditors/FlatCAMExcEditor.py:1982 appEditors/FlatCAMExcEditor.py:2016
-#: appEditors/appGeoEditor.py:683 appEditors/FlatCAMGrbEditor.py:2822
-#: appEditors/FlatCAMGrbEditor.py:2839 appEditors/FlatCAMGrbEditor.py:2875
-#: appEditors/FlatCAMGrbEditor.py:5376
+#: appEditors/AppExcEditor.py:1749 appEditors/AppExcEditor.py:1766
+#: appEditors/AppExcEditor.py:1800 appEditors/AppExcEditor.py:1871
+#: appEditors/AppExcEditor.py:1875 appEditors/AppExcEditor.py:1964
+#: appEditors/AppExcEditor.py:1982 appEditors/AppExcEditor.py:2016
+#: appEditors/AppGeoEditor.py:683 appEditors/AppGerberEditor.py:2822
+#: appEditors/AppGerberEditor.py:2839 appEditors/AppGerberEditor.py:2875
+#: appEditors/AppGerberEditor.py:5376
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:94
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:113
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:189
@@ -1576,23 +1576,23 @@ msgstr "Y"
msgid "Angle"
msgstr "Unghi"
-#: appEditors/FlatCAMExcEditor.py:1753 appEditors/FlatCAMExcEditor.py:1968
-#: appEditors/FlatCAMGrbEditor.py:2826
+#: appEditors/AppExcEditor.py:1753 appEditors/AppExcEditor.py:1968
+#: appEditors/AppGerberEditor.py:2826
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:100
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:248
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:137
msgid "Pitch"
msgstr "Pas"
-#: appEditors/FlatCAMExcEditor.py:1755 appEditors/FlatCAMExcEditor.py:1970
-#: appEditors/FlatCAMGrbEditor.py:2828
+#: appEditors/AppExcEditor.py:1755 appEditors/AppExcEditor.py:1970
+#: appEditors/AppGerberEditor.py:2828
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:102
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:250
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:139
msgid "Pitch = Distance between elements of the array."
msgstr "Pas = Distanta între elementele ariei."
-#: appEditors/FlatCAMExcEditor.py:1768 appEditors/FlatCAMExcEditor.py:1984
+#: appEditors/AppExcEditor.py:1768 appEditors/AppExcEditor.py:1984
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1604,8 +1604,8 @@ msgstr ""
"Val minima este: -360grade.\n"
"Val maxima este: 360.00 grade."
-#: appEditors/FlatCAMExcEditor.py:1789 appEditors/FlatCAMExcEditor.py:2005
-#: appEditors/FlatCAMGrbEditor.py:2862
+#: appEditors/AppExcEditor.py:1789 appEditors/AppExcEditor.py:2005
+#: appEditors/AppGerberEditor.py:2862
msgid ""
"Direction for circular array.Can be CW = clockwise or CCW = counter "
"clockwise."
@@ -1613,8 +1613,8 @@ msgstr ""
"Directia pentru aria circulară. Poate fi CW = in sensul acelor de ceasornic "
"sau CCW = invers acelor de ceasornic."
-#: appEditors/FlatCAMExcEditor.py:1796 appEditors/FlatCAMExcEditor.py:2012
-#: appEditors/FlatCAMGrbEditor.py:2870
+#: appEditors/AppExcEditor.py:1796 appEditors/AppExcEditor.py:2012
+#: appEditors/AppGerberEditor.py:2870
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:129
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:136
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:286
@@ -1623,8 +1623,8 @@ msgstr ""
msgid "CW"
msgstr "Orar"
-#: appEditors/FlatCAMExcEditor.py:1797 appEditors/FlatCAMExcEditor.py:2013
-#: appEditors/FlatCAMGrbEditor.py:2871
+#: appEditors/AppExcEditor.py:1797 appEditors/AppExcEditor.py:2013
+#: appEditors/AppGerberEditor.py:2871
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:130
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:137
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:287
@@ -1633,8 +1633,8 @@ msgstr "Orar"
msgid "CCW"
msgstr "Antiorar"
-#: appEditors/FlatCAMExcEditor.py:1801 appEditors/FlatCAMExcEditor.py:2017
-#: appEditors/FlatCAMGrbEditor.py:2877
+#: appEditors/AppExcEditor.py:1801 appEditors/AppExcEditor.py:2017
+#: appEditors/AppGerberEditor.py:2877
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:115
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:145
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:265
@@ -1646,11 +1646,11 @@ msgstr ""
"Unghiul la care fiecare element al ariei circulare este plasat fata de "
"originea ariei."
-#: appEditors/FlatCAMExcEditor.py:1835
+#: appEditors/AppExcEditor.py:1835
msgid "Slot Parameters"
msgstr "Parametrii pt slot"
-#: appEditors/FlatCAMExcEditor.py:1837
+#: appEditors/AppExcEditor.py:1837
msgid ""
"Parameters for adding a slot (hole with oval shape)\n"
"either single or as an part of an array."
@@ -1658,19 +1658,19 @@ msgstr ""
"Parametri pentru adăugarea unui slot (gaură cu formă ovală)\n"
"fie single sau ca parte a unei arii."
-#: appEditors/FlatCAMExcEditor.py:1846
+#: appEditors/AppExcEditor.py:1846
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:162
#: appGUI/preferences/tools/ToolsCornersPrefGroupUI.py:56
#: appTools/ToolCorners.py:136 appTools/ToolProperties.py:559
msgid "Length"
msgstr "Lungime"
-#: appEditors/FlatCAMExcEditor.py:1848
+#: appEditors/AppExcEditor.py:1848
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:164
msgid "Length = The length of the slot."
msgstr "Lungime = Lungimea slotului."
-#: appEditors/FlatCAMExcEditor.py:1862
+#: appEditors/AppExcEditor.py:1862
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:180
msgid ""
"Direction on which the slot is oriented:\n"
@@ -1683,7 +1683,7 @@ msgstr ""
"- „Y” - axa verticală sau\n"
"- „Unghi” - un unghi personalizat pentru înclinarea slotului"
-#: appEditors/FlatCAMExcEditor.py:1877
+#: appEditors/AppExcEditor.py:1877
msgid ""
"Angle at which the slot is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1695,15 +1695,15 @@ msgstr ""
"Valoarea minimă este: -360 grade.\n"
"Valoarea maximă este: 360.00 grade."
-#: appEditors/FlatCAMExcEditor.py:1910
+#: appEditors/AppExcEditor.py:1910
msgid "Slot Array Parameters"
msgstr "Parametri Arie sloturi"
-#: appEditors/FlatCAMExcEditor.py:1912
+#: appEditors/AppExcEditor.py:1912
msgid "Parameters for the array of slots (linear or circular array)"
msgstr "Parametri pentru Aria de sloturi (arie circulară sau liniară)"
-#: appEditors/FlatCAMExcEditor.py:1921
+#: appEditors/AppExcEditor.py:1921
msgid ""
"Select the type of slot array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -1711,25 +1711,25 @@ msgstr ""
"Selectați tipul de slot pentru creare.\n"
"Poate fi liniar X (Y) sau circular"
-#: appEditors/FlatCAMExcEditor.py:1933
+#: appEditors/AppExcEditor.py:1933
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:219
msgid "Nr of slots"
msgstr "Nr de sloturi"
-#: appEditors/FlatCAMExcEditor.py:1934
+#: appEditors/AppExcEditor.py:1934
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:221
msgid "Specify how many slots to be in the array."
msgstr "Specificați câte sloturi trebuie să fie în arie."
-#: appEditors/FlatCAMExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
+#: appEditors/AppExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
msgid "Total Drills"
msgstr "Nr. Tot. Op. Găurire"
-#: appEditors/FlatCAMExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
+#: appEditors/AppExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
msgid "Total Slots"
msgstr "Nr. Tot. Sloturi"
-#: appEditors/FlatCAMExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
+#: appEditors/AppExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
#: appObjects/FlatCAMGeometry.py:1099 appObjects/FlatCAMGeometry.py:1841
#: appObjects/FlatCAMGeometry.py:2491 appTools/ToolIsolation.py:1526
#: appTools/ToolNCC.py:1516 appTools/ToolPaint.py:1268
@@ -1738,7 +1738,7 @@ msgstr "Nr. Tot. Sloturi"
msgid "Wrong value format entered, use a number."
msgstr "Valoare in format incorect, foloseşte un număr."
-#: appEditors/FlatCAMExcEditor.py:2570
+#: appEditors/AppExcEditor.py:2570
msgid ""
"Tool already in the original or actual tool list.\n"
"Save and reedit Excellon if you need to add this tool. "
@@ -1747,74 +1747,74 @@ msgstr ""
"Salvează și reeditează obiectul Excellon dacă ai nevoie să adaugi această "
"unealtă. "
-#: appEditors/FlatCAMExcEditor.py:2579 appGUI/MainGUI.py:3364
+#: appEditors/AppExcEditor.py:2579 appGUI/MainGUI.py:3364
msgid "Added new tool with dia"
msgstr "O nouă unealtă este adăugată cu diametrul"
-#: appEditors/FlatCAMExcEditor.py:2612
+#: appEditors/AppExcEditor.py:2612
msgid "Select a tool in Tool Table"
msgstr "Selectează o unealtă in Tabela de Unelte"
-#: appEditors/FlatCAMExcEditor.py:2642
+#: appEditors/AppExcEditor.py:2642
msgid "Deleted tool with diameter"
msgstr "Unealtă ștearsă cu diametrul"
-#: appEditors/FlatCAMExcEditor.py:2790
+#: appEditors/AppExcEditor.py:2790
msgid "Done. Tool edit completed."
msgstr "Terminat. Editarea uneltei a fost finalizată."
-#: appEditors/FlatCAMExcEditor.py:3327
+#: appEditors/AppExcEditor.py:3327
msgid "There are no Tools definitions in the file. Aborting Excellon creation."
msgstr ""
"Nu exista definitii de unelte in fişier. Se anulează crearea de obiect "
"Excellon."
-#: appEditors/FlatCAMExcEditor.py:3331
+#: appEditors/AppExcEditor.py:3331
msgid "An internal error has ocurred. See Shell.\n"
msgstr ""
"A apărut o eroare internă. Verifică in TCL Shell pt mai multe detalii.\n"
-#: appEditors/FlatCAMExcEditor.py:3336
+#: appEditors/AppExcEditor.py:3336
msgid "Creating Excellon."
msgstr "In curs de creere Excellon."
-#: appEditors/FlatCAMExcEditor.py:3350
+#: appEditors/AppExcEditor.py:3350
msgid "Excellon editing finished."
msgstr "Editarea Excellon a fost terminată."
-#: appEditors/FlatCAMExcEditor.py:3367
+#: appEditors/AppExcEditor.py:3367
msgid "Cancelled. There is no Tool/Drill selected"
msgstr "Anulat. Nu este selectată nici-o unealtă sau op. de găurire"
-#: appEditors/FlatCAMExcEditor.py:3601 appEditors/FlatCAMExcEditor.py:3609
-#: appEditors/appGeoEditor.py:4286 appEditors/appGeoEditor.py:4300
-#: appEditors/FlatCAMGrbEditor.py:1085 appEditors/FlatCAMGrbEditor.py:1312
-#: appEditors/FlatCAMGrbEditor.py:1497 appEditors/FlatCAMGrbEditor.py:1766
-#: appEditors/FlatCAMGrbEditor.py:4608 appEditors/FlatCAMGrbEditor.py:4625
+#: appEditors/AppExcEditor.py:3601 appEditors/AppExcEditor.py:3609
+#: appEditors/AppGeoEditor.py:4286 appEditors/AppGeoEditor.py:4300
+#: appEditors/AppGerberEditor.py:1085 appEditors/AppGerberEditor.py:1312
+#: appEditors/AppGerberEditor.py:1497 appEditors/AppGerberEditor.py:1766
+#: appEditors/AppGerberEditor.py:4608 appEditors/AppGerberEditor.py:4625
#: appGUI/MainGUI.py:2711 appGUI/MainGUI.py:2723
#: appTools/ToolAlignObjects.py:393 appTools/ToolAlignObjects.py:415
#: app_Main.py:4800 app_Main.py:4954
msgid "Done."
msgstr "Executat."
-#: appEditors/FlatCAMExcEditor.py:3984
+#: appEditors/AppExcEditor.py:3984
msgid "Done. Drill(s) deleted."
msgstr "Executat. Operatiile de găurire șterse."
-#: appEditors/FlatCAMExcEditor.py:4057 appEditors/FlatCAMExcEditor.py:4067
-#: appEditors/FlatCAMGrbEditor.py:5056
+#: appEditors/AppExcEditor.py:4057 appEditors/AppExcEditor.py:4067
+#: appEditors/AppGerberEditor.py:5056
msgid "Click on the circular array Center position"
msgstr "Click pe punctul de Centru al ariei circulare"
-#: appEditors/appGeoEditor.py:84
+#: appEditors/AppGeoEditor.py:84
msgid "Buffer distance:"
msgstr "Distanta pt bufer:"
-#: appEditors/appGeoEditor.py:85
+#: appEditors/AppGeoEditor.py:85
msgid "Buffer corner:"
msgstr "Coltul pt bufer:"
-#: appEditors/appGeoEditor.py:87
+#: appEditors/AppGeoEditor.py:87
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded for exterior buffer.\n"
@@ -1828,11 +1828,11 @@ msgstr ""
"- 'Beveled:' coltul este inlocuit cu o linie care uneste capetele liniilor "
"care formează coltul"
-#: appEditors/appGeoEditor.py:93 appEditors/FlatCAMGrbEditor.py:2638
+#: appEditors/AppGeoEditor.py:93 appEditors/AppGerberEditor.py:2638
msgid "Round"
msgstr "Rotund"
-#: appEditors/appGeoEditor.py:94 appEditors/FlatCAMGrbEditor.py:2639
+#: appEditors/AppGeoEditor.py:94 appEditors/AppGerberEditor.py:2639
#: appGUI/ObjectUI.py:1149 appGUI/ObjectUI.py:2004
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:225
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:68
@@ -1850,50 +1850,50 @@ msgstr "Rotund"
msgid "Square"
msgstr "Patrat"
-#: appEditors/appGeoEditor.py:95 appEditors/FlatCAMGrbEditor.py:2640
+#: appEditors/AppGeoEditor.py:95 appEditors/AppGerberEditor.py:2640
msgid "Beveled"
msgstr "Beveled"
-#: appEditors/appGeoEditor.py:102
+#: appEditors/AppGeoEditor.py:102
msgid "Buffer Interior"
msgstr "Bufer interior"
-#: appEditors/appGeoEditor.py:104
+#: appEditors/AppGeoEditor.py:104
msgid "Buffer Exterior"
msgstr "Bufer Exterior"
-#: appEditors/appGeoEditor.py:110
+#: appEditors/AppGeoEditor.py:110
msgid "Full Buffer"
msgstr "Bufer complet"
-#: appEditors/appGeoEditor.py:131 appEditors/appGeoEditor.py:2959
+#: appEditors/AppGeoEditor.py:131 appEditors/AppGeoEditor.py:2959
#: appGUI/MainGUI.py:4301
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:191
msgid "Buffer Tool"
msgstr "Unealta Bufer"
-#: appEditors/appGeoEditor.py:143 appEditors/appGeoEditor.py:160
-#: appEditors/appGeoEditor.py:177 appEditors/appGeoEditor.py:2978
-#: appEditors/appGeoEditor.py:3006 appEditors/appGeoEditor.py:3034
-#: appEditors/FlatCAMGrbEditor.py:5109
+#: appEditors/AppGeoEditor.py:143 appEditors/AppGeoEditor.py:160
+#: appEditors/AppGeoEditor.py:177 appEditors/AppGeoEditor.py:2978
+#: appEditors/AppGeoEditor.py:3006 appEditors/AppGeoEditor.py:3034
+#: appEditors/AppGerberEditor.py:5109
msgid "Buffer distance value is missing or wrong format. Add it and retry."
msgstr ""
"Valoarea distantei bufer lipseste sau este intr-un format gresit. Adaugă din "
"nou și reîncearcă."
-#: appEditors/appGeoEditor.py:241
+#: appEditors/AppGeoEditor.py:241
msgid "Font"
msgstr "Font"
-#: appEditors/appGeoEditor.py:322 appGUI/MainGUI.py:1452
+#: appEditors/AppGeoEditor.py:322 appGUI/MainGUI.py:1452
msgid "Text"
msgstr "Text"
-#: appEditors/appGeoEditor.py:348
+#: appEditors/AppGeoEditor.py:348
msgid "Text Tool"
msgstr "Unealta Text"
-#: appEditors/appGeoEditor.py:404 appGUI/MainGUI.py:502
+#: appEditors/AppGeoEditor.py:404 appGUI/MainGUI.py:502
#: appGUI/MainGUI.py:1199 appGUI/ObjectUI.py:597 appGUI/ObjectUI.py:1564
#: appObjects/FlatCAMExcellon.py:852 appObjects/FlatCAMExcellon.py:1242
#: appObjects/FlatCAMGeometry.py:825 appTools/ToolIsolation.py:313
@@ -1902,15 +1902,15 @@ msgstr "Unealta Text"
msgid "Tool"
msgstr "Unealta"
-#: appEditors/appGeoEditor.py:438
+#: appEditors/AppGeoEditor.py:438
msgid "Tool dia"
msgstr "Dia unealtă"
-#: appEditors/appGeoEditor.py:440
+#: appEditors/AppGeoEditor.py:440
msgid "Diameter of the tool to be used in the operation."
msgstr "Diametrul uneltei care este utilizata in operaţie."
-#: appEditors/appGeoEditor.py:486
+#: appEditors/AppGeoEditor.py:486
msgid ""
"Algorithm to paint the polygons:\n"
"- Standard: Fixed step inwards.\n"
@@ -1922,58 +1922,58 @@ msgstr ""
"- Semințe: înspre exterior porning de la punctul sămanță.\n"
"- Linii: linii paralele."
-#: appEditors/appGeoEditor.py:505
+#: appEditors/AppGeoEditor.py:505
msgid "Connect:"
msgstr "Conectează:"
-#: appEditors/appGeoEditor.py:515
+#: appEditors/AppGeoEditor.py:515
msgid "Contour:"
msgstr "Contur:"
-#: appEditors/appGeoEditor.py:528 appGUI/MainGUI.py:1456
+#: appEditors/AppGeoEditor.py:528 appGUI/MainGUI.py:1456
msgid "Paint"
msgstr "Pictează"
-#: appEditors/appGeoEditor.py:546 appGUI/MainGUI.py:912
+#: appEditors/AppGeoEditor.py:546 appGUI/MainGUI.py:912
#: appGUI/MainGUI.py:1944 appGUI/ObjectUI.py:2069 appTools/ToolPaint.py:42
#: appTools/ToolPaint.py:737
msgid "Paint Tool"
msgstr "Unealta Paint"
-#: appEditors/appGeoEditor.py:582 appEditors/appGeoEditor.py:1071
-#: appEditors/appGeoEditor.py:2966 appEditors/appGeoEditor.py:2994
-#: appEditors/appGeoEditor.py:3022 appEditors/appGeoEditor.py:4439
-#: appEditors/FlatCAMGrbEditor.py:5764
+#: appEditors/AppGeoEditor.py:582 appEditors/AppGeoEditor.py:1071
+#: appEditors/AppGeoEditor.py:2966 appEditors/AppGeoEditor.py:2994
+#: appEditors/AppGeoEditor.py:3022 appEditors/AppGeoEditor.py:4439
+#: appEditors/AppGerberEditor.py:5764
msgid "Cancelled. No shape selected."
msgstr "Anulat. Nici-o forma geometrică nu este selectată."
-#: appEditors/appGeoEditor.py:595 appEditors/appGeoEditor.py:2984
-#: appEditors/appGeoEditor.py:3012 appEditors/appGeoEditor.py:3040
+#: appEditors/AppGeoEditor.py:595 appEditors/AppGeoEditor.py:2984
+#: appEditors/AppGeoEditor.py:3012 appEditors/AppGeoEditor.py:3040
#: appGUI/preferences/geometry/GeometryGenPrefGroupUI.py:69
#: appTools/ToolProperties.py:117 appTools/ToolProperties.py:162
msgid "Tools"
msgstr "Unelte"
-#: appEditors/appGeoEditor.py:606 appEditors/appGeoEditor.py:1035
-#: appEditors/FlatCAMGrbEditor.py:5299 appEditors/FlatCAMGrbEditor.py:5728
+#: appEditors/AppGeoEditor.py:606 appEditors/AppGeoEditor.py:1035
+#: appEditors/AppGerberEditor.py:5299 appEditors/AppGerberEditor.py:5728
#: appGUI/MainGUI.py:935 appGUI/MainGUI.py:1967 appTools/ToolTransform.py:494
msgid "Transform Tool"
msgstr "Unealta Transformare"
-#: appEditors/appGeoEditor.py:607 appEditors/appGeoEditor.py:699
-#: appEditors/FlatCAMGrbEditor.py:5300 appEditors/FlatCAMGrbEditor.py:5392
+#: appEditors/AppGeoEditor.py:607 appEditors/AppGeoEditor.py:699
+#: appEditors/AppGerberEditor.py:5300 appEditors/AppGerberEditor.py:5392
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:88
#: appTools/ToolTransform.py:27 appTools/ToolTransform.py:146
msgid "Rotate"
msgstr "Rotaţie"
-#: appEditors/appGeoEditor.py:608 appEditors/FlatCAMGrbEditor.py:5301
+#: appEditors/AppGeoEditor.py:608 appEditors/AppGerberEditor.py:5301
#: appTools/ToolTransform.py:28
msgid "Skew/Shear"
msgstr "Deformare"
-#: appEditors/appGeoEditor.py:609 appEditors/FlatCAMGrbEditor.py:2687
-#: appEditors/FlatCAMGrbEditor.py:5302 appGUI/MainGUI.py:1057
+#: appEditors/AppGeoEditor.py:609 appEditors/AppGerberEditor.py:2687
+#: appEditors/AppGerberEditor.py:5302 appGUI/MainGUI.py:1057
#: appGUI/MainGUI.py:1499 appGUI/MainGUI.py:2089 appGUI/MainGUI.py:4513
#: appGUI/ObjectUI.py:125
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:147
@@ -1981,13 +1981,13 @@ msgstr "Deformare"
msgid "Scale"
msgstr "Scalare"
-#: appEditors/appGeoEditor.py:610 appEditors/FlatCAMGrbEditor.py:5303
+#: appEditors/AppGeoEditor.py:610 appEditors/AppGerberEditor.py:5303
#: appTools/ToolTransform.py:30
msgid "Mirror (Flip)"
msgstr "Oglindire"
-#: appEditors/appGeoEditor.py:612 appEditors/FlatCAMGrbEditor.py:2647
-#: appEditors/FlatCAMGrbEditor.py:5305 appGUI/MainGUI.py:1055
+#: appEditors/AppGeoEditor.py:612 appEditors/AppGerberEditor.py:2647
+#: appEditors/AppGerberEditor.py:5305 appGUI/MainGUI.py:1055
#: appGUI/MainGUI.py:1454 appGUI/MainGUI.py:1497 appGUI/MainGUI.py:2087
#: appGUI/MainGUI.py:4511
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:212
@@ -1995,7 +1995,7 @@ msgstr "Oglindire"
msgid "Buffer"
msgstr "Bufer"
-#: appEditors/appGeoEditor.py:643 appEditors/FlatCAMGrbEditor.py:5336
+#: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5336
#: appGUI/GUIElements.py:2701
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44
@@ -2004,7 +2004,7 @@ msgstr "Bufer"
msgid "Reference"
msgstr "Referinţă"
-#: appEditors/appGeoEditor.py:645 appEditors/FlatCAMGrbEditor.py:5338
+#: appEditors/AppGeoEditor.py:645 appEditors/AppGerberEditor.py:5338
msgid ""
"The reference point for Rotate, Skew, Scale, Mirror.\n"
"Can be:\n"
@@ -2021,15 +2021,15 @@ msgstr ""
"- Punct -> punct personalizat definit de coordonatele X, Y\n"
"- Selectie Min-> punctul (minx, miny) al casetei de delimitare a selectiei"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appTools/ToolCalibration.py:770 appTools/ToolCalibration.py:771
#: appTools/ToolTransform.py:70
msgid "Origin"
msgstr "Originea"
-#: appEditors/appGeoEditor.py:653 appEditors/appGeoEditor.py:1044
-#: appEditors/FlatCAMGrbEditor.py:5346 appEditors/FlatCAMGrbEditor.py:5737
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGeoEditor.py:1044
+#: appEditors/AppGerberEditor.py:5346 appEditors/AppGerberEditor.py:5737
#: appGUI/preferences/general/GeneralGUIPrefGroupUI.py:250
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:275
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:311
@@ -2040,7 +2040,7 @@ msgstr "Originea"
msgid "Selection"
msgstr "Selecţie"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/Tools2sidedPrefGroupUI.py:80
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:60
@@ -2048,12 +2048,12 @@ msgstr "Selecţie"
msgid "Point"
msgstr "Punct"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
msgid "Minimum"
msgstr "Minim"
-#: appEditors/appGeoEditor.py:659 appEditors/appGeoEditor.py:955
-#: appEditors/FlatCAMGrbEditor.py:5352 appEditors/FlatCAMGrbEditor.py:5648
+#: appEditors/AppGeoEditor.py:659 appEditors/AppGeoEditor.py:955
+#: appEditors/AppGerberEditor.py:5352 appEditors/AppGerberEditor.py:5648
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:131
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:133
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:243
@@ -2063,14 +2063,14 @@ msgstr "Minim"
msgid "Value"
msgstr "Valoare"
-#: appEditors/appGeoEditor.py:661 appEditors/FlatCAMGrbEditor.py:5354
+#: appEditors/AppGeoEditor.py:661 appEditors/AppGerberEditor.py:5354
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:62
#: appTools/ToolTransform.py:78
msgid "A point of reference in format X,Y."
msgstr "Un punct de referință în format X, Y."
-#: appEditors/appGeoEditor.py:668 appEditors/FlatCAMGrbEditor.py:2590
-#: appEditors/FlatCAMGrbEditor.py:5361 appGUI/ObjectUI.py:1494
+#: appEditors/AppGeoEditor.py:668 appEditors/AppGerberEditor.py:2590
+#: appEditors/AppGerberEditor.py:5361 appGUI/ObjectUI.py:1494
#: appTools/ToolDblSided.py:192 appTools/ToolDblSided.py:425
#: appTools/ToolIsolation.py:276 appTools/ToolIsolation.py:631
#: appTools/ToolNCC.py:294 appTools/ToolNCC.py:631 appTools/ToolPaint.py:276
@@ -2080,12 +2080,12 @@ msgstr "Un punct de referință în format X, Y."
msgid "Add"
msgstr "Adaugă"
-#: appEditors/appGeoEditor.py:670 appEditors/FlatCAMGrbEditor.py:5363
+#: appEditors/AppGeoEditor.py:670 appEditors/AppGerberEditor.py:5363
#: appTools/ToolTransform.py:87
msgid "Add point coordinates from clipboard."
msgstr "Adăugați coordonatele de punct din clipboard."
-#: appEditors/appGeoEditor.py:685 appEditors/FlatCAMGrbEditor.py:5378
+#: appEditors/AppGeoEditor.py:685 appEditors/AppGerberEditor.py:5378
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:98
#: appTools/ToolTransform.py:132
msgid ""
@@ -2098,7 +2098,7 @@ msgstr ""
"Numerele pozitive inseamna o mișcare in sens ace ceasornic.\n"
"Numerele negative inseamna o mișcare in sens invers ace ceasornic."
-#: appEditors/appGeoEditor.py:701 appEditors/FlatCAMGrbEditor.py:5394
+#: appEditors/AppGeoEditor.py:701 appEditors/AppGerberEditor.py:5394
#: appTools/ToolTransform.py:148
msgid ""
"Rotate the selected object(s).\n"
@@ -2109,16 +2109,16 @@ msgstr ""
"Punctul de referinţă este mijlocul \n"
"formei înconjurătoare pt toate obiectele."
-#: appEditors/appGeoEditor.py:721 appEditors/appGeoEditor.py:783
-#: appEditors/FlatCAMGrbEditor.py:5414 appEditors/FlatCAMGrbEditor.py:5476
+#: appEditors/AppGeoEditor.py:721 appEditors/AppGeoEditor.py:783
+#: appEditors/AppGerberEditor.py:5414 appEditors/AppGerberEditor.py:5476
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:112
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:151
#: appTools/ToolTransform.py:168 appTools/ToolTransform.py:230
msgid "Link"
msgstr "Legatura"
-#: appEditors/appGeoEditor.py:723 appEditors/appGeoEditor.py:785
-#: appEditors/FlatCAMGrbEditor.py:5416 appEditors/FlatCAMGrbEditor.py:5478
+#: appEditors/AppGeoEditor.py:723 appEditors/AppGeoEditor.py:785
+#: appEditors/AppGerberEditor.py:5416 appEditors/AppGerberEditor.py:5478
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:114
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:153
#: appTools/ToolTransform.py:170 appTools/ToolTransform.py:232
@@ -2126,15 +2126,15 @@ msgid "Link the Y entry to X entry and copy its content."
msgstr ""
"Conectați campul Y la campul X și copiați conținutul acestuia din X in Y."
-#: appEditors/appGeoEditor.py:728 appEditors/FlatCAMGrbEditor.py:5421
+#: appEditors/AppGeoEditor.py:728 appEditors/AppGerberEditor.py:5421
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:151
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:124
#: appTools/ToolFilm.py:184 appTools/ToolTransform.py:175
msgid "X angle"
msgstr "Unghi X"
-#: appEditors/appGeoEditor.py:730 appEditors/appGeoEditor.py:751
-#: appEditors/FlatCAMGrbEditor.py:5423 appEditors/FlatCAMGrbEditor.py:5444
+#: appEditors/AppGeoEditor.py:730 appEditors/AppGeoEditor.py:751
+#: appEditors/AppGerberEditor.py:5423 appEditors/AppGerberEditor.py:5444
#: appTools/ToolTransform.py:177 appTools/ToolTransform.py:198
msgid ""
"Angle for Skew action, in degrees.\n"
@@ -2143,13 +2143,13 @@ msgstr ""
"Valoarea unghiului de Deformare, in grade.\n"
"Ia valori Reale între -360 si 360 grade."
-#: appEditors/appGeoEditor.py:738 appEditors/FlatCAMGrbEditor.py:5431
+#: appEditors/AppGeoEditor.py:738 appEditors/AppGerberEditor.py:5431
#: appTools/ToolTransform.py:185
msgid "Skew X"
msgstr "Deformare X"
-#: appEditors/appGeoEditor.py:740 appEditors/appGeoEditor.py:761
-#: appEditors/FlatCAMGrbEditor.py:5433 appEditors/FlatCAMGrbEditor.py:5454
+#: appEditors/AppGeoEditor.py:740 appEditors/AppGeoEditor.py:761
+#: appEditors/AppGerberEditor.py:5433 appEditors/AppGerberEditor.py:5454
#: appTools/ToolTransform.py:187 appTools/ToolTransform.py:208
msgid ""
"Skew/shear the selected object(s).\n"
@@ -2160,38 +2160,38 @@ msgstr ""
"Punctul de referinţă este mijlocul \n"
"formei înconjurătoare pt toate obiectele."
-#: appEditors/appGeoEditor.py:749 appEditors/FlatCAMGrbEditor.py:5442
+#: appEditors/AppGeoEditor.py:749 appEditors/AppGerberEditor.py:5442
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:160
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:138
#: appTools/ToolFilm.py:193 appTools/ToolTransform.py:196
msgid "Y angle"
msgstr "Unghi Y"
-#: appEditors/appGeoEditor.py:759 appEditors/FlatCAMGrbEditor.py:5452
+#: appEditors/AppGeoEditor.py:759 appEditors/AppGerberEditor.py:5452
#: appTools/ToolTransform.py:206
msgid "Skew Y"
msgstr "Deformare Y"
-#: appEditors/appGeoEditor.py:790 appEditors/FlatCAMGrbEditor.py:5483
+#: appEditors/AppGeoEditor.py:790 appEditors/AppGerberEditor.py:5483
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:120
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:162
#: appTools/ToolFilm.py:145 appTools/ToolTransform.py:237
msgid "X factor"
msgstr "Factor X"
-#: appEditors/appGeoEditor.py:792 appEditors/FlatCAMGrbEditor.py:5485
+#: appEditors/AppGeoEditor.py:792 appEditors/AppGerberEditor.py:5485
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:164
#: appTools/ToolTransform.py:239
msgid "Factor for scaling on X axis."
msgstr "Factor de scalare pe axa X."
-#: appEditors/appGeoEditor.py:799 appEditors/FlatCAMGrbEditor.py:5492
+#: appEditors/AppGeoEditor.py:799 appEditors/AppGerberEditor.py:5492
#: appTools/ToolTransform.py:246
msgid "Scale X"
msgstr "Scalează X"
-#: appEditors/appGeoEditor.py:801 appEditors/appGeoEditor.py:821
-#: appEditors/FlatCAMGrbEditor.py:5494 appEditors/FlatCAMGrbEditor.py:5514
+#: appEditors/AppGeoEditor.py:801 appEditors/AppGeoEditor.py:821
+#: appEditors/AppGerberEditor.py:5494 appEditors/AppGerberEditor.py:5514
#: appTools/ToolTransform.py:248 appTools/ToolTransform.py:268
msgid ""
"Scale the selected object(s).\n"
@@ -2202,59 +2202,59 @@ msgstr ""
"Punctul de referinţă depinde de\n"
"starea checkbox-ului >Referința Scalare<."
-#: appEditors/appGeoEditor.py:810 appEditors/FlatCAMGrbEditor.py:5503
+#: appEditors/AppGeoEditor.py:810 appEditors/AppGerberEditor.py:5503
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:129
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:175
#: appTools/ToolFilm.py:154 appTools/ToolTransform.py:257
msgid "Y factor"
msgstr "Factor Y"
-#: appEditors/appGeoEditor.py:812 appEditors/FlatCAMGrbEditor.py:5505
+#: appEditors/AppGeoEditor.py:812 appEditors/AppGerberEditor.py:5505
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:177
#: appTools/ToolTransform.py:259
msgid "Factor for scaling on Y axis."
msgstr "Factor de scalare pe axa Y."
-#: appEditors/appGeoEditor.py:819 appEditors/FlatCAMGrbEditor.py:5512
+#: appEditors/AppGeoEditor.py:819 appEditors/AppGerberEditor.py:5512
#: appTools/ToolTransform.py:266
msgid "Scale Y"
msgstr "Scalează Y"
-#: appEditors/appGeoEditor.py:846 appEditors/FlatCAMGrbEditor.py:5539
+#: appEditors/AppGeoEditor.py:846 appEditors/AppGerberEditor.py:5539
#: appTools/ToolTransform.py:293
msgid "Flip on X"
msgstr "Oglindește pe X"
-#: appEditors/appGeoEditor.py:848 appEditors/appGeoEditor.py:853
-#: appEditors/FlatCAMGrbEditor.py:5541 appEditors/FlatCAMGrbEditor.py:5546
+#: appEditors/AppGeoEditor.py:848 appEditors/AppGeoEditor.py:853
+#: appEditors/AppGerberEditor.py:5541 appEditors/AppGerberEditor.py:5546
#: appTools/ToolTransform.py:295 appTools/ToolTransform.py:300
msgid "Flip the selected object(s) over the X axis."
msgstr "Oglindește obiectele selectate pe axa X."
-#: appEditors/appGeoEditor.py:851 appEditors/FlatCAMGrbEditor.py:5544
+#: appEditors/AppGeoEditor.py:851 appEditors/AppGerberEditor.py:5544
#: appTools/ToolTransform.py:298
msgid "Flip on Y"
msgstr "Oglindește pe Y"
-#: appEditors/appGeoEditor.py:871 appEditors/FlatCAMGrbEditor.py:5564
+#: appEditors/AppGeoEditor.py:871 appEditors/AppGerberEditor.py:5564
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:191
#: appTools/ToolTransform.py:318
msgid "X val"
msgstr "Val X"
-#: appEditors/appGeoEditor.py:873 appEditors/FlatCAMGrbEditor.py:5566
+#: appEditors/AppGeoEditor.py:873 appEditors/AppGerberEditor.py:5566
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:193
#: appTools/ToolTransform.py:320
msgid "Distance to offset on X axis. In current units."
msgstr "Distanta la care se face ofset pe axa X. In unitatile curente."
-#: appEditors/appGeoEditor.py:880 appEditors/FlatCAMGrbEditor.py:5573
+#: appEditors/AppGeoEditor.py:880 appEditors/AppGerberEditor.py:5573
#: appTools/ToolTransform.py:327
msgid "Offset X"
msgstr "Ofset pe X"
-#: appEditors/appGeoEditor.py:882 appEditors/appGeoEditor.py:902
-#: appEditors/FlatCAMGrbEditor.py:5575 appEditors/FlatCAMGrbEditor.py:5595
+#: appEditors/AppGeoEditor.py:882 appEditors/AppGeoEditor.py:902
+#: appEditors/AppGerberEditor.py:5575 appEditors/AppGerberEditor.py:5595
#: appTools/ToolTransform.py:329 appTools/ToolTransform.py:349
msgid ""
"Offset the selected object(s).\n"
@@ -2265,31 +2265,31 @@ msgstr ""
"Punctul de referinţă este mijlocul formei înconjurătoare\n"
"pentru toate obiectele selectate.\n"
-#: appEditors/appGeoEditor.py:891 appEditors/FlatCAMGrbEditor.py:5584
+#: appEditors/AppGeoEditor.py:891 appEditors/AppGerberEditor.py:5584
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:204
#: appTools/ToolTransform.py:338
msgid "Y val"
msgstr "Val Y"
-#: appEditors/appGeoEditor.py:893 appEditors/FlatCAMGrbEditor.py:5586
+#: appEditors/AppGeoEditor.py:893 appEditors/AppGerberEditor.py:5586
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:206
#: appTools/ToolTransform.py:340
msgid "Distance to offset on Y axis. In current units."
msgstr "Distanta la care se face ofset pe axa Y. In unitatile curente."
-#: appEditors/appGeoEditor.py:900 appEditors/FlatCAMGrbEditor.py:5593
+#: appEditors/AppGeoEditor.py:900 appEditors/AppGerberEditor.py:5593
#: appTools/ToolTransform.py:347
msgid "Offset Y"
msgstr "Ofset pe Y"
-#: appEditors/appGeoEditor.py:920 appEditors/FlatCAMGrbEditor.py:5613
+#: appEditors/AppGeoEditor.py:920 appEditors/AppGerberEditor.py:5613
#: appGUI/preferences/tools/Tools2QRCodePrefGroupUI.py:142
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:216
#: appTools/ToolQRCode.py:206 appTools/ToolTransform.py:367
msgid "Rounded"
msgstr "Rotunjit"
-#: appEditors/appGeoEditor.py:922 appEditors/FlatCAMGrbEditor.py:5615
+#: appEditors/AppGeoEditor.py:922 appEditors/AppGerberEditor.py:5615
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:218
#: appTools/ToolTransform.py:369
msgid ""
@@ -2303,14 +2303,14 @@ msgstr ""
"Dacă nu este bifat, bufferul va urma geometria exactă\n"
"de forma tamponată."
-#: appEditors/appGeoEditor.py:930 appEditors/FlatCAMGrbEditor.py:5623
+#: appEditors/AppGeoEditor.py:930 appEditors/AppGerberEditor.py:5623
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:226
#: appTools/ToolDistance.py:505 appTools/ToolDistanceMin.py:286
#: appTools/ToolTransform.py:377
msgid "Distance"
msgstr "Distanță"
-#: appEditors/appGeoEditor.py:932 appEditors/FlatCAMGrbEditor.py:5625
+#: appEditors/AppGeoEditor.py:932 appEditors/AppGerberEditor.py:5625
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:228
#: appTools/ToolTransform.py:379
msgid ""
@@ -2324,12 +2324,12 @@ msgstr ""
"Fiecare element de geometrie al obiectului va fi mărit\n"
"sau scăzut proportional cu „distanța”."
-#: appEditors/appGeoEditor.py:944 appEditors/FlatCAMGrbEditor.py:5637
+#: appEditors/AppGeoEditor.py:944 appEditors/AppGerberEditor.py:5637
#: appTools/ToolTransform.py:391
msgid "Buffer D"
msgstr "Bufer D"
-#: appEditors/appGeoEditor.py:946 appEditors/FlatCAMGrbEditor.py:5639
+#: appEditors/AppGeoEditor.py:946 appEditors/AppGerberEditor.py:5639
#: appTools/ToolTransform.py:393
msgid ""
"Create the buffer effect on each geometry,\n"
@@ -2338,7 +2338,7 @@ msgstr ""
"Creați efectul buffer pe fiecare geometrie,\n"
"element din obiectul selectat, folosind distanta."
-#: appEditors/appGeoEditor.py:957 appEditors/FlatCAMGrbEditor.py:5650
+#: appEditors/AppGeoEditor.py:957 appEditors/AppGerberEditor.py:5650
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:245
#: appTools/ToolTransform.py:404
msgid ""
@@ -2354,12 +2354,12 @@ msgstr ""
"sau scăzut proportional cu „distanța”. Valoarea este\n"
"un procent din dimensiunea initială."
-#: appEditors/appGeoEditor.py:970 appEditors/FlatCAMGrbEditor.py:5663
+#: appEditors/AppGeoEditor.py:970 appEditors/AppGerberEditor.py:5663
#: appTools/ToolTransform.py:417
msgid "Buffer F"
msgstr "Bufer F"
-#: appEditors/appGeoEditor.py:972 appEditors/FlatCAMGrbEditor.py:5665
+#: appEditors/AppGeoEditor.py:972 appEditors/AppGerberEditor.py:5665
#: appTools/ToolTransform.py:419
msgid ""
"Create the buffer effect on each geometry,\n"
@@ -2368,7 +2368,7 @@ msgstr ""
"Creați efectul buffer pe fiecare geometrie,\n"
"element din obiectul selectat, folosing un factor."
-#: appEditors/appGeoEditor.py:1043 appEditors/FlatCAMGrbEditor.py:5736
+#: appEditors/AppGeoEditor.py:1043 appEditors/AppGerberEditor.py:5736
#: appGUI/ObjectUI.py:1103 appGUI/ObjectUI.py:1958
#: appGUI/preferences/tools/Tools2CalPrefGroupUI.py:48
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
@@ -2379,329 +2379,329 @@ msgstr ""
msgid "Object"
msgstr "Obiect"
-#: appEditors/appGeoEditor.py:1107 appEditors/appGeoEditor.py:1130
-#: appEditors/appGeoEditor.py:1276 appEditors/appGeoEditor.py:1301
-#: appEditors/appGeoEditor.py:1335 appEditors/appGeoEditor.py:1370
-#: appEditors/appGeoEditor.py:1401 appEditors/FlatCAMGrbEditor.py:5800
-#: appEditors/FlatCAMGrbEditor.py:5823 appEditors/FlatCAMGrbEditor.py:5968
-#: appEditors/FlatCAMGrbEditor.py:6001 appEditors/FlatCAMGrbEditor.py:6044
-#: appEditors/FlatCAMGrbEditor.py:6085 appEditors/FlatCAMGrbEditor.py:6121
+#: appEditors/AppGeoEditor.py:1107 appEditors/AppGeoEditor.py:1130
+#: appEditors/AppGeoEditor.py:1276 appEditors/AppGeoEditor.py:1301
+#: appEditors/AppGeoEditor.py:1335 appEditors/AppGeoEditor.py:1370
+#: appEditors/AppGeoEditor.py:1401 appEditors/AppGerberEditor.py:5800
+#: appEditors/AppGerberEditor.py:5823 appEditors/AppGerberEditor.py:5968
+#: appEditors/AppGerberEditor.py:6001 appEditors/AppGerberEditor.py:6044
+#: appEditors/AppGerberEditor.py:6085 appEditors/AppGerberEditor.py:6121
msgid "No shape selected."
msgstr "Nicio formă selectată."
-#: appEditors/appGeoEditor.py:1115 appEditors/FlatCAMGrbEditor.py:5808
+#: appEditors/AppGeoEditor.py:1115 appEditors/AppGerberEditor.py:5808
#: appTools/ToolTransform.py:585
msgid "Incorrect format for Point value. Needs format X,Y"
msgstr "Format incorect pentru valoarea punctului. Necesită formatul X, Y"
-#: appEditors/appGeoEditor.py:1140 appEditors/FlatCAMGrbEditor.py:5833
+#: appEditors/AppGeoEditor.py:1140 appEditors/AppGerberEditor.py:5833
#: appTools/ToolTransform.py:602
msgid "Rotate transformation can not be done for a value of 0."
msgstr "Transformarea Rotire nu se poate face pentru o valoare de 0."
-#: appEditors/appGeoEditor.py:1198 appEditors/appGeoEditor.py:1219
-#: appEditors/FlatCAMGrbEditor.py:5891 appEditors/FlatCAMGrbEditor.py:5912
+#: appEditors/AppGeoEditor.py:1198 appEditors/AppGeoEditor.py:1219
+#: appEditors/AppGerberEditor.py:5891 appEditors/AppGerberEditor.py:5912
#: appTools/ToolTransform.py:660 appTools/ToolTransform.py:681
msgid "Scale transformation can not be done for a factor of 0 or 1."
msgstr "Transformarea Scalare nu se poate face pentru un factor de 0 sau 1."
-#: appEditors/appGeoEditor.py:1232 appEditors/appGeoEditor.py:1241
-#: appEditors/FlatCAMGrbEditor.py:5925 appEditors/FlatCAMGrbEditor.py:5934
+#: appEditors/AppGeoEditor.py:1232 appEditors/AppGeoEditor.py:1241
+#: appEditors/AppGerberEditor.py:5925 appEditors/AppGerberEditor.py:5934
#: appTools/ToolTransform.py:694 appTools/ToolTransform.py:703
msgid "Offset transformation can not be done for a value of 0."
msgstr "Transformarea Deplasare nu se poate face pentru o valoare de 0."
-#: appEditors/appGeoEditor.py:1271 appEditors/FlatCAMGrbEditor.py:5971
+#: appEditors/AppGeoEditor.py:1271 appEditors/AppGerberEditor.py:5971
#: appTools/ToolTransform.py:731
msgid "Appying Rotate"
msgstr "Execuţie Rotaţie"
-#: appEditors/appGeoEditor.py:1284 appEditors/FlatCAMGrbEditor.py:5983
+#: appEditors/AppGeoEditor.py:1284 appEditors/AppGerberEditor.py:5983
msgid "Done. Rotate completed."
msgstr "Executat. Rotaţie finalizată."
-#: appEditors/appGeoEditor.py:1286
+#: appEditors/AppGeoEditor.py:1286
msgid "Rotation action was not executed"
msgstr "Actiunea de rotatie nu a fost efectuată"
-#: appEditors/appGeoEditor.py:1304 appEditors/FlatCAMGrbEditor.py:6004
+#: appEditors/AppGeoEditor.py:1304 appEditors/AppGerberEditor.py:6004
#: appTools/ToolTransform.py:757
msgid "Applying Flip"
msgstr "Execuţie Oglindire"
-#: appEditors/appGeoEditor.py:1312 appEditors/FlatCAMGrbEditor.py:6016
+#: appEditors/AppGeoEditor.py:1312 appEditors/AppGerberEditor.py:6016
#: appTools/ToolTransform.py:774
msgid "Flip on the Y axis done"
msgstr "Oglindire pe axa Y executată"
-#: appEditors/appGeoEditor.py:1315 appEditors/FlatCAMGrbEditor.py:6024
+#: appEditors/AppGeoEditor.py:1315 appEditors/AppGerberEditor.py:6024
#: appTools/ToolTransform.py:783
msgid "Flip on the X axis done"
msgstr "Oglindire pe axa X executată"
-#: appEditors/appGeoEditor.py:1319
+#: appEditors/AppGeoEditor.py:1319
msgid "Flip action was not executed"
msgstr "Actiunea de oglindire nu a fost efectuată"
-#: appEditors/appGeoEditor.py:1338 appEditors/FlatCAMGrbEditor.py:6047
+#: appEditors/AppGeoEditor.py:1338 appEditors/AppGerberEditor.py:6047
#: appTools/ToolTransform.py:804
msgid "Applying Skew"
msgstr "Execuţie Deformare"
-#: appEditors/appGeoEditor.py:1347 appEditors/FlatCAMGrbEditor.py:6063
+#: appEditors/AppGeoEditor.py:1347 appEditors/AppGerberEditor.py:6063
msgid "Skew on the X axis done"
msgstr "Oglindire pe axa X executată"
-#: appEditors/appGeoEditor.py:1349 appEditors/FlatCAMGrbEditor.py:6065
+#: appEditors/AppGeoEditor.py:1349 appEditors/AppGerberEditor.py:6065
msgid "Skew on the Y axis done"
msgstr "Oglindire pe axa Y executată"
-#: appEditors/appGeoEditor.py:1352
+#: appEditors/AppGeoEditor.py:1352
msgid "Skew action was not executed"
msgstr "Actiunea de deformare nu a fost efectuată"
-#: appEditors/appGeoEditor.py:1373 appEditors/FlatCAMGrbEditor.py:6088
+#: appEditors/AppGeoEditor.py:1373 appEditors/AppGerberEditor.py:6088
#: appTools/ToolTransform.py:831
msgid "Applying Scale"
msgstr "Execuţie Scalare"
-#: appEditors/appGeoEditor.py:1382 appEditors/FlatCAMGrbEditor.py:6101
+#: appEditors/AppGeoEditor.py:1382 appEditors/AppGerberEditor.py:6101
msgid "Scale on the X axis done"
msgstr "Scalarea pe axa X executată"
-#: appEditors/appGeoEditor.py:1384 appEditors/FlatCAMGrbEditor.py:6103
+#: appEditors/AppGeoEditor.py:1384 appEditors/AppGerberEditor.py:6103
msgid "Scale on the Y axis done"
msgstr "Scalarea pe axa Y executată"
-#: appEditors/appGeoEditor.py:1386
+#: appEditors/AppGeoEditor.py:1386
msgid "Scale action was not executed"
msgstr "Scalarea nu a fost efectuată"
-#: appEditors/appGeoEditor.py:1404 appEditors/FlatCAMGrbEditor.py:6124
+#: appEditors/AppGeoEditor.py:1404 appEditors/AppGerberEditor.py:6124
#: appTools/ToolTransform.py:859
msgid "Applying Offset"
msgstr "Execuţie Ofset"
-#: appEditors/appGeoEditor.py:1414 appEditors/FlatCAMGrbEditor.py:6145
+#: appEditors/AppGeoEditor.py:1414 appEditors/AppGerberEditor.py:6145
msgid "Offset on the X axis done"
msgstr "Ofset pe axa X efectuat"
-#: appEditors/appGeoEditor.py:1416 appEditors/FlatCAMGrbEditor.py:6147
+#: appEditors/AppGeoEditor.py:1416 appEditors/AppGerberEditor.py:6147
msgid "Offset on the Y axis done"
msgstr "Ofset pe axa Y efectuat"
-#: appEditors/appGeoEditor.py:1419
+#: appEditors/AppGeoEditor.py:1419
msgid "Offset action was not executed"
msgstr "Actiuena de Ofset nu a fost efectuată"
-#: appEditors/appGeoEditor.py:1426 appEditors/FlatCAMGrbEditor.py:6157
+#: appEditors/AppGeoEditor.py:1426 appEditors/AppGerberEditor.py:6157
msgid "No shape selected"
msgstr "Nicio formă selectată"
-#: appEditors/appGeoEditor.py:1429 appEditors/FlatCAMGrbEditor.py:6160
+#: appEditors/AppGeoEditor.py:1429 appEditors/AppGerberEditor.py:6160
#: appTools/ToolTransform.py:889
msgid "Applying Buffer"
msgstr "Aplicarea tampon (Buffer)"
-#: appEditors/appGeoEditor.py:1436 appEditors/FlatCAMGrbEditor.py:6182
+#: appEditors/AppGeoEditor.py:1436 appEditors/AppGerberEditor.py:6182
#: appTools/ToolTransform.py:910
msgid "Buffer done"
msgstr "Buffer finalizat"
-#: appEditors/appGeoEditor.py:1440 appEditors/FlatCAMGrbEditor.py:6186
+#: appEditors/AppGeoEditor.py:1440 appEditors/AppGerberEditor.py:6186
#: appTools/ToolTransform.py:879 appTools/ToolTransform.py:915
msgid "Action was not executed, due of"
msgstr "Acțiunea nu a fost executată, din cauza"
-#: appEditors/appGeoEditor.py:1444 appEditors/FlatCAMGrbEditor.py:6190
+#: appEditors/AppGeoEditor.py:1444 appEditors/AppGerberEditor.py:6190
msgid "Rotate ..."
msgstr "Rotaţie ..."
-#: appEditors/appGeoEditor.py:1445 appEditors/appGeoEditor.py:1494
-#: appEditors/appGeoEditor.py:1509 appEditors/FlatCAMGrbEditor.py:6191
-#: appEditors/FlatCAMGrbEditor.py:6240 appEditors/FlatCAMGrbEditor.py:6255
+#: appEditors/AppGeoEditor.py:1445 appEditors/AppGeoEditor.py:1494
+#: appEditors/AppGeoEditor.py:1509 appEditors/AppGerberEditor.py:6191
+#: appEditors/AppGerberEditor.py:6240 appEditors/AppGerberEditor.py:6255
msgid "Enter an Angle Value (degrees)"
msgstr "Introdu o valoare in grade pt Unghi"
-#: appEditors/appGeoEditor.py:1453 appEditors/FlatCAMGrbEditor.py:6199
+#: appEditors/AppGeoEditor.py:1453 appEditors/AppGerberEditor.py:6199
msgid "Geometry shape rotate done"
msgstr "Rotatia formei geometrice executată"
-#: appEditors/appGeoEditor.py:1456 appEditors/FlatCAMGrbEditor.py:6202
+#: appEditors/AppGeoEditor.py:1456 appEditors/AppGerberEditor.py:6202
msgid "Geometry shape rotate cancelled"
msgstr "Rotatia formei geometrice anulată"
-#: appEditors/appGeoEditor.py:1461 appEditors/FlatCAMGrbEditor.py:6207
+#: appEditors/AppGeoEditor.py:1461 appEditors/AppGerberEditor.py:6207
msgid "Offset on X axis ..."
msgstr "Ofset pe axa X ..."
-#: appEditors/appGeoEditor.py:1462 appEditors/appGeoEditor.py:1479
-#: appEditors/FlatCAMGrbEditor.py:6208 appEditors/FlatCAMGrbEditor.py:6225
+#: appEditors/AppGeoEditor.py:1462 appEditors/AppGeoEditor.py:1479
+#: appEditors/AppGerberEditor.py:6208 appEditors/AppGerberEditor.py:6225
msgid "Enter a distance Value"
msgstr "Introdu of valoare pt Distantă"
-#: appEditors/appGeoEditor.py:1470 appEditors/FlatCAMGrbEditor.py:6216
+#: appEditors/AppGeoEditor.py:1470 appEditors/AppGerberEditor.py:6216
msgid "Geometry shape offset on X axis done"
msgstr "Ofset pe axa X executat"
-#: appEditors/appGeoEditor.py:1473 appEditors/FlatCAMGrbEditor.py:6219
+#: appEditors/AppGeoEditor.py:1473 appEditors/AppGerberEditor.py:6219
msgid "Geometry shape offset X cancelled"
msgstr "Ofset pe axa X anulat"
-#: appEditors/appGeoEditor.py:1478 appEditors/FlatCAMGrbEditor.py:6224
+#: appEditors/AppGeoEditor.py:1478 appEditors/AppGerberEditor.py:6224
msgid "Offset on Y axis ..."
msgstr "Ofset pe axa Y ..."
-#: appEditors/appGeoEditor.py:1487 appEditors/FlatCAMGrbEditor.py:6233
+#: appEditors/AppGeoEditor.py:1487 appEditors/AppGerberEditor.py:6233
msgid "Geometry shape offset on Y axis done"
msgstr "Ofset pe axa Y executat"
-#: appEditors/appGeoEditor.py:1490
+#: appEditors/AppGeoEditor.py:1490
msgid "Geometry shape offset on Y axis canceled"
msgstr "Ofset pe axa Y anulat"
-#: appEditors/appGeoEditor.py:1493 appEditors/FlatCAMGrbEditor.py:6239
+#: appEditors/AppGeoEditor.py:1493 appEditors/AppGerberEditor.py:6239
msgid "Skew on X axis ..."
msgstr "Deformare pe axa X ..."
-#: appEditors/appGeoEditor.py:1502 appEditors/FlatCAMGrbEditor.py:6248
+#: appEditors/AppGeoEditor.py:1502 appEditors/AppGerberEditor.py:6248
msgid "Geometry shape skew on X axis done"
msgstr "Deformarea pe axa X executată"
-#: appEditors/appGeoEditor.py:1505
+#: appEditors/AppGeoEditor.py:1505
msgid "Geometry shape skew on X axis canceled"
msgstr "Deformarea pe axa X anulată"
-#: appEditors/appGeoEditor.py:1508 appEditors/FlatCAMGrbEditor.py:6254
+#: appEditors/AppGeoEditor.py:1508 appEditors/AppGerberEditor.py:6254
msgid "Skew on Y axis ..."
msgstr "Deformare pe axa Y ..."
-#: appEditors/appGeoEditor.py:1517 appEditors/FlatCAMGrbEditor.py:6263
+#: appEditors/AppGeoEditor.py:1517 appEditors/AppGerberEditor.py:6263
msgid "Geometry shape skew on Y axis done"
msgstr "Deformarea pe axa Y executată"
-#: appEditors/appGeoEditor.py:1520
+#: appEditors/AppGeoEditor.py:1520
msgid "Geometry shape skew on Y axis canceled"
msgstr "Deformarea pe axa Y anulată"
-#: appEditors/appGeoEditor.py:1950 appEditors/appGeoEditor.py:2021
-#: appEditors/FlatCAMGrbEditor.py:1444 appEditors/FlatCAMGrbEditor.py:1522
+#: appEditors/AppGeoEditor.py:1950 appEditors/AppGeoEditor.py:2021
+#: appEditors/AppGerberEditor.py:1444 appEditors/AppGerberEditor.py:1522
msgid "Click on Center point ..."
msgstr "Click pe punctul de Centru ..."
-#: appEditors/appGeoEditor.py:1963 appEditors/FlatCAMGrbEditor.py:1454
+#: appEditors/AppGeoEditor.py:1963 appEditors/AppGerberEditor.py:1454
msgid "Click on Perimeter point to complete ..."
msgstr "Click pe un punct aflat pe Circumferintă pentru terminare ..."
-#: appEditors/appGeoEditor.py:1995
+#: appEditors/AppGeoEditor.py:1995
msgid "Done. Adding Circle completed."
msgstr "Executat. Adăugarea unei forme Cerc terminată."
-#: appEditors/appGeoEditor.py:2049 appEditors/FlatCAMGrbEditor.py:1555
+#: appEditors/AppGeoEditor.py:2049 appEditors/AppGerberEditor.py:1555
msgid "Click on Start point ..."
msgstr "Click pe punctul de Start ..."
-#: appEditors/appGeoEditor.py:2051 appEditors/FlatCAMGrbEditor.py:1557
+#: appEditors/AppGeoEditor.py:2051 appEditors/AppGerberEditor.py:1557
msgid "Click on Point3 ..."
msgstr "Click pe Punctul3 ..."
-#: appEditors/appGeoEditor.py:2053 appEditors/FlatCAMGrbEditor.py:1559
+#: appEditors/AppGeoEditor.py:2053 appEditors/AppGerberEditor.py:1559
msgid "Click on Stop point ..."
msgstr "Click pe punctulde Stop ..."
-#: appEditors/appGeoEditor.py:2058 appEditors/FlatCAMGrbEditor.py:1564
+#: appEditors/AppGeoEditor.py:2058 appEditors/AppGerberEditor.py:1564
msgid "Click on Stop point to complete ..."
msgstr "Click pe punctul de Stop pentru terminare ..."
-#: appEditors/appGeoEditor.py:2060 appEditors/FlatCAMGrbEditor.py:1566
+#: appEditors/AppGeoEditor.py:2060 appEditors/AppGerberEditor.py:1566
msgid "Click on Point2 to complete ..."
msgstr "Click pe Punctul2 pentru terminare ..."
-#: appEditors/appGeoEditor.py:2062 appEditors/FlatCAMGrbEditor.py:1568
+#: appEditors/AppGeoEditor.py:2062 appEditors/AppGerberEditor.py:1568
msgid "Click on Center point to complete ..."
msgstr "Click pe punctul de Centru pentru terminare ..."
-#: appEditors/appGeoEditor.py:2074
+#: appEditors/AppGeoEditor.py:2074
#, python-format
msgid "Direction: %s"
msgstr "Direcţie: %s"
-#: appEditors/appGeoEditor.py:2088 appEditors/FlatCAMGrbEditor.py:1594
+#: appEditors/AppGeoEditor.py:2088 appEditors/AppGerberEditor.py:1594
msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
msgstr "Mod: Start -> Stop -> Centru. Click pe punctul de Start ..."
-#: appEditors/appGeoEditor.py:2091 appEditors/FlatCAMGrbEditor.py:1597
+#: appEditors/AppGeoEditor.py:2091 appEditors/AppGerberEditor.py:1597
msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
msgstr "Mod: Point1 -> Point3 -> Point2. Click pe Punctul1 ..."
-#: appEditors/appGeoEditor.py:2094 appEditors/FlatCAMGrbEditor.py:1600
+#: appEditors/AppGeoEditor.py:2094 appEditors/AppGerberEditor.py:1600
msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
msgstr "Mod: Center -> Start -> Stop. Click pe punctul de Centru ..."
-#: appEditors/appGeoEditor.py:2235
+#: appEditors/AppGeoEditor.py:2235
msgid "Done. Arc completed."
msgstr "Executat. Adăugarea unei forme Arc terminată."
-#: appEditors/appGeoEditor.py:2266 appEditors/appGeoEditor.py:2339
+#: appEditors/AppGeoEditor.py:2266 appEditors/AppGeoEditor.py:2339
msgid "Click on 1st corner ..."
msgstr "Click pe primul colt ..."
-#: appEditors/appGeoEditor.py:2278
+#: appEditors/AppGeoEditor.py:2278
msgid "Click on opposite corner to complete ..."
msgstr "Click pe punctul opus pentru terminare ..."
-#: appEditors/appGeoEditor.py:2308
+#: appEditors/AppGeoEditor.py:2308
msgid "Done. Rectangle completed."
msgstr "Executat. Adăugare Pătrat terminată."
-#: appEditors/appGeoEditor.py:2383
+#: appEditors/AppGeoEditor.py:2383
msgid "Done. Polygon completed."
msgstr "Executat. Adăugarea unei forme Poligon terminată."
-#: appEditors/appGeoEditor.py:2397 appEditors/appGeoEditor.py:2462
-#: appEditors/FlatCAMGrbEditor.py:1102 appEditors/FlatCAMGrbEditor.py:1322
+#: appEditors/AppGeoEditor.py:2397 appEditors/AppGeoEditor.py:2462
+#: appEditors/AppGerberEditor.py:1102 appEditors/AppGerberEditor.py:1322
msgid "Backtracked one point ..."
msgstr "Revenit la penultimul Punct ..."
-#: appEditors/appGeoEditor.py:2440
+#: appEditors/AppGeoEditor.py:2440
msgid "Done. Path completed."
msgstr "Executat. Traseu finalizat."
-#: appEditors/appGeoEditor.py:2599
+#: appEditors/AppGeoEditor.py:2599
msgid "No shape selected. Select a shape to explode"
msgstr "Nicio formă selectată. Selectați o formă pentru a o exploda"
-#: appEditors/appGeoEditor.py:2632
+#: appEditors/AppGeoEditor.py:2632
msgid "Done. Polygons exploded into lines."
msgstr "Terminat. Poligoanele au fost descompuse în linii."
-#: appEditors/appGeoEditor.py:2664
+#: appEditors/AppGeoEditor.py:2664
msgid "MOVE: No shape selected. Select a shape to move"
msgstr ""
"MUTARE: Nici-o formă nu este selectată. Selectează o formă pentru a putea "
"face deplasare"
-#: appEditors/appGeoEditor.py:2667 appEditors/appGeoEditor.py:2687
+#: appEditors/AppGeoEditor.py:2667 appEditors/AppGeoEditor.py:2687
msgid " MOVE: Click on reference point ..."
msgstr " MUTARE: Click pe punctul de referinţă ..."
-#: appEditors/appGeoEditor.py:2672
+#: appEditors/AppGeoEditor.py:2672
msgid " Click on destination point ..."
msgstr " Click pe punctul de Destinaţie ..."
-#: appEditors/appGeoEditor.py:2712
+#: appEditors/AppGeoEditor.py:2712
msgid "Done. Geometry(s) Move completed."
msgstr "Executat. Mutarea Geometriilor terminată."
-#: appEditors/appGeoEditor.py:2845
+#: appEditors/AppGeoEditor.py:2845
msgid "Done. Geometry(s) Copy completed."
msgstr "Executat. Copierea Geometriilor terminată."
-#: appEditors/appGeoEditor.py:2876 appEditors/FlatCAMGrbEditor.py:897
+#: appEditors/AppGeoEditor.py:2876 appEditors/AppGerberEditor.py:897
msgid "Click on 1st point ..."
msgstr "Click pe primul punct ..."
-#: appEditors/appGeoEditor.py:2900
+#: appEditors/AppGeoEditor.py:2900
msgid ""
"Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
"Error"
@@ -2709,83 +2709,83 @@ msgstr ""
"Fontul nu este compatibil. Doar cele tip: Regular, Bold, Italic și "
"BoldItalic sunt acceptate. Eroarea"
-#: appEditors/appGeoEditor.py:2908
+#: appEditors/AppGeoEditor.py:2908
msgid "No text to add."
msgstr "Niciun text de adăugat."
-#: appEditors/appGeoEditor.py:2918
+#: appEditors/AppGeoEditor.py:2918
msgid " Done. Adding Text completed."
msgstr " Executat. Adăugarea de Text terminată."
-#: appEditors/appGeoEditor.py:2955
+#: appEditors/AppGeoEditor.py:2955
msgid "Create buffer geometry ..."
msgstr "Crează o geometrie de tipe Bufer ..."
-#: appEditors/appGeoEditor.py:2990 appEditors/FlatCAMGrbEditor.py:5153
+#: appEditors/AppGeoEditor.py:2990 appEditors/AppGerberEditor.py:5153
msgid "Done. Buffer Tool completed."
msgstr "Executat. Unealta Bufer terminată."
-#: appEditors/appGeoEditor.py:3018
+#: appEditors/AppGeoEditor.py:3018
msgid "Done. Buffer Int Tool completed."
msgstr "Executat. Unealta Bufer Intern terminată."
-#: appEditors/appGeoEditor.py:3046
+#: appEditors/AppGeoEditor.py:3046
msgid "Done. Buffer Ext Tool completed."
msgstr "Executat. Unealta Bufer Extern terminată."
-#: appEditors/appGeoEditor.py:3095 appEditors/FlatCAMGrbEditor.py:2160
+#: appEditors/AppGeoEditor.py:3095 appEditors/AppGerberEditor.py:2160
msgid "Select a shape to act as deletion area ..."
msgstr "Selectează o formă geometrică ca formă de stergere ..."
-#: appEditors/appGeoEditor.py:3097 appEditors/appGeoEditor.py:3123
-#: appEditors/appGeoEditor.py:3129 appEditors/FlatCAMGrbEditor.py:2162
+#: appEditors/AppGeoEditor.py:3097 appEditors/AppGeoEditor.py:3123
+#: appEditors/AppGeoEditor.py:3129 appEditors/AppGerberEditor.py:2162
msgid "Click to pick-up the erase shape..."
msgstr "Click pentru a activa forma de stergere..."
-#: appEditors/appGeoEditor.py:3133 appEditors/FlatCAMGrbEditor.py:2221
+#: appEditors/AppGeoEditor.py:3133 appEditors/AppGerberEditor.py:2221
msgid "Click to erase ..."
msgstr "Click pt a sterge ..."
-#: appEditors/appGeoEditor.py:3162 appEditors/FlatCAMGrbEditor.py:2254
+#: appEditors/AppGeoEditor.py:3162 appEditors/AppGerberEditor.py:2254
msgid "Done. Eraser tool action completed."
msgstr "Executat. Unealta Stergere s-a terminat."
-#: appEditors/appGeoEditor.py:3212
+#: appEditors/AppGeoEditor.py:3212
msgid "Create Paint geometry ..."
msgstr "Crează o geometrie Paint ..."
-#: appEditors/appGeoEditor.py:3225 appEditors/FlatCAMGrbEditor.py:2417
+#: appEditors/AppGeoEditor.py:3225 appEditors/AppGerberEditor.py:2417
msgid "Shape transformations ..."
msgstr "Transformări de forme geometrice ..."
-#: appEditors/appGeoEditor.py:3281
+#: appEditors/AppGeoEditor.py:3281
#: appGUI/preferences/geometry/GeometryEditorPrefGroupUI.py:27
msgid "Geometry Editor"
msgstr "Editor Geometrii"
-#: appEditors/appGeoEditor.py:3287 appEditors/FlatCAMGrbEditor.py:2495
-#: appEditors/FlatCAMGrbEditor.py:3951 appGUI/ObjectUI.py:282
+#: appEditors/AppGeoEditor.py:3287 appEditors/AppGerberEditor.py:2495
+#: appEditors/AppGerberEditor.py:3951 appGUI/ObjectUI.py:282
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256 appTools/ToolCutOut.py:95
#: appTools/ToolTransform.py:92
msgid "Type"
msgstr "Tip"
-#: appEditors/appGeoEditor.py:3287 appGUI/ObjectUI.py:221
+#: appEditors/AppGeoEditor.py:3287 appGUI/ObjectUI.py:221
#: appGUI/ObjectUI.py:521 appGUI/ObjectUI.py:1330 appGUI/ObjectUI.py:2165
#: appGUI/ObjectUI.py:2469 appGUI/ObjectUI.py:2536
#: appTools/ToolCalibration.py:234 appTools/ToolFiducials.py:70
msgid "Name"
msgstr "Nume"
-#: appEditors/appGeoEditor.py:3539
+#: appEditors/AppGeoEditor.py:3539
msgid "Ring"
msgstr "Inel"
-#: appEditors/appGeoEditor.py:3541
+#: appEditors/AppGeoEditor.py:3541
msgid "Line"
msgstr "Linie"
-#: appEditors/appGeoEditor.py:3543 appGUI/MainGUI.py:1446
+#: appEditors/AppGeoEditor.py:3543 appGUI/MainGUI.py:1446
#: appGUI/ObjectUI.py:1150 appGUI/ObjectUI.py:2005
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:226
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:299
@@ -2796,47 +2796,47 @@ msgstr "Linie"
msgid "Polygon"
msgstr "Poligon"
-#: appEditors/appGeoEditor.py:3545
+#: appEditors/AppGeoEditor.py:3545
msgid "Multi-Line"
msgstr "Multi-Linie"
-#: appEditors/appGeoEditor.py:3547
+#: appEditors/AppGeoEditor.py:3547
msgid "Multi-Polygon"
msgstr "Multi-Poligon"
-#: appEditors/appGeoEditor.py:3554
+#: appEditors/AppGeoEditor.py:3554
msgid "Geo Elem"
msgstr "Element Geo"
-#: appEditors/appGeoEditor.py:4007
+#: appEditors/AppGeoEditor.py:4007
msgid "Editing MultiGeo Geometry, tool"
msgstr "Se editează Geometrie tip MultiGeo. unealta"
-#: appEditors/appGeoEditor.py:4009
+#: appEditors/AppGeoEditor.py:4009
msgid "with diameter"
msgstr "cu diametrul"
-#: appEditors/appGeoEditor.py:4081
+#: appEditors/AppGeoEditor.py:4081
msgid "Grid Snap enabled."
msgstr "Captura pr grilă activată."
-#: appEditors/appGeoEditor.py:4085
+#: appEditors/AppGeoEditor.py:4085
msgid "Grid Snap disabled."
msgstr "Captura pe grilă dezactivată."
-#: appEditors/appGeoEditor.py:4446 appGUI/MainGUI.py:3046
+#: appEditors/AppGeoEditor.py:4446 appGUI/MainGUI.py:3046
#: appGUI/MainGUI.py:3092 appGUI/MainGUI.py:3110 appGUI/MainGUI.py:3254
#: appGUI/MainGUI.py:3293 appGUI/MainGUI.py:3305 appGUI/MainGUI.py:3322
msgid "Click on target point."
msgstr "Click pe punctul tinta."
-#: appEditors/appGeoEditor.py:4762 appEditors/appGeoEditor.py:4797
+#: appEditors/AppGeoEditor.py:4762 appEditors/AppGeoEditor.py:4797
msgid "A selection of at least 2 geo items is required to do Intersection."
msgstr ""
"Cel puțin o selecţie de doua forme geometrice este necesară pentru a face o "
"Intersecţie."
-#: appEditors/appGeoEditor.py:4883 appEditors/appGeoEditor.py:4987
+#: appEditors/AppGeoEditor.py:4883 appEditors/AppGeoEditor.py:4987
msgid ""
"Negative buffer value is not accepted. Use Buffer interior to generate an "
"'inside' shape"
@@ -2844,56 +2844,56 @@ msgstr ""
"O valoare de bufer negativă nu se acceptă. Foloseste Bufer Interior pentru a "
"genera o formă geo. interioară"
-#: appEditors/appGeoEditor.py:4893 appEditors/appGeoEditor.py:4946
-#: appEditors/appGeoEditor.py:4996
+#: appEditors/AppGeoEditor.py:4893 appEditors/AppGeoEditor.py:4946
+#: appEditors/AppGeoEditor.py:4996
msgid "Nothing selected for buffering."
msgstr "Nici-o forma geometrică nu este selectată pentru a face Bufer."
-#: appEditors/appGeoEditor.py:4898 appEditors/appGeoEditor.py:4950
-#: appEditors/appGeoEditor.py:5001
+#: appEditors/AppGeoEditor.py:4898 appEditors/AppGeoEditor.py:4950
+#: appEditors/AppGeoEditor.py:5001
msgid "Invalid distance for buffering."
msgstr "Distanta invalida pentru a face Bufer."
-#: appEditors/appGeoEditor.py:4922 appEditors/appGeoEditor.py:5021
+#: appEditors/AppGeoEditor.py:4922 appEditors/AppGeoEditor.py:5021
msgid "Failed, the result is empty. Choose a different buffer value."
msgstr "Eșuat, rezultatul este gol. Foloseşte o valoare diferita pentru Bufer."
-#: appEditors/appGeoEditor.py:4933
+#: appEditors/AppGeoEditor.py:4933
msgid "Full buffer geometry created."
msgstr "Geometrie tip Bufer Complet creată."
-#: appEditors/appGeoEditor.py:4939
+#: appEditors/AppGeoEditor.py:4939
msgid "Negative buffer value is not accepted."
msgstr "Valoarea bufer negativă nu este acceptată."
-#: appEditors/appGeoEditor.py:4970
+#: appEditors/AppGeoEditor.py:4970
msgid "Failed, the result is empty. Choose a smaller buffer value."
msgstr "Eșuat, rezultatul este gol. Foloseşte of valoare mai mica pt. Bufer."
-#: appEditors/appGeoEditor.py:4980
+#: appEditors/AppGeoEditor.py:4980
msgid "Interior buffer geometry created."
msgstr "Geometrie Bufer interior creată."
-#: appEditors/appGeoEditor.py:5031
+#: appEditors/AppGeoEditor.py:5031
msgid "Exterior buffer geometry created."
msgstr "Geometrie Bufer Exterior creată."
-#: appEditors/appGeoEditor.py:5037
+#: appEditors/AppGeoEditor.py:5037
#, python-format
msgid "Could not do Paint. Overlap value has to be less than 100%%."
msgstr ""
"Nu se poate face Paint. Valoarea de suprapunere trebuie să fie mai puțin de "
"100%%."
-#: appEditors/appGeoEditor.py:5044
+#: appEditors/AppGeoEditor.py:5044
msgid "Nothing selected for painting."
msgstr "Nici-o forma geometrică nu este selectată pentru Paint."
-#: appEditors/appGeoEditor.py:5050
+#: appEditors/AppGeoEditor.py:5050
msgid "Invalid value for"
msgstr "Valoare invalida pentru"
-#: appEditors/appGeoEditor.py:5109
+#: appEditors/AppGeoEditor.py:5109
msgid ""
"Could not do Paint. Try a different combination of parameters. Or a "
"different method of Paint"
@@ -2901,160 +2901,160 @@ msgstr ""
"Nu se poate face Paint. Incearcă o combinaţie diferita de parametri. Or o "
"metoda diferita de Paint"
-#: appEditors/appGeoEditor.py:5120
+#: appEditors/AppGeoEditor.py:5120
msgid "Paint done."
msgstr "Pictare executata."
-#: appEditors/FlatCAMGrbEditor.py:211
+#: appEditors/AppGerberEditor.py:211
msgid "To add an Pad first select a aperture in Aperture Table"
msgstr ""
"Pentru a adăuga un Pad mai intai selectează o apertură (unealtă) in Tabela "
"de Aperturi"
-#: appEditors/FlatCAMGrbEditor.py:218 appEditors/FlatCAMGrbEditor.py:418
+#: appEditors/AppGerberEditor.py:218 appEditors/AppGerberEditor.py:418
msgid "Aperture size is zero. It needs to be greater than zero."
msgstr "Dimens. aperturii este zero. Trebuie sa fie mai mare ca zero."
-#: appEditors/FlatCAMGrbEditor.py:371 appEditors/FlatCAMGrbEditor.py:684
+#: appEditors/AppGerberEditor.py:371 appEditors/AppGerberEditor.py:684
msgid ""
"Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
msgstr ""
"Tip de apertură incompatibil. Selectează o apertură cu tipul 'C', 'R' sau "
"'O'."
-#: appEditors/FlatCAMGrbEditor.py:383
+#: appEditors/AppGerberEditor.py:383
msgid "Done. Adding Pad completed."
msgstr "Executat. Adăugarea padului terminată."
-#: appEditors/FlatCAMGrbEditor.py:410
+#: appEditors/AppGerberEditor.py:410
msgid "To add an Pad Array first select a aperture in Aperture Table"
msgstr ""
"Pentru a adăuga o arie de paduri mai intai selectează o apertura (unealtă) "
"in Tabela de Aperturi"
-#: appEditors/FlatCAMGrbEditor.py:490
+#: appEditors/AppGerberEditor.py:490
msgid "Click on the Pad Circular Array Start position"
msgstr "Click pe punctul de Start al ariei de paduri"
-#: appEditors/FlatCAMGrbEditor.py:710
+#: appEditors/AppGerberEditor.py:710
msgid "Too many Pads for the selected spacing angle."
msgstr "Prea multe paduri pentru unghiul selectat."
-#: appEditors/FlatCAMGrbEditor.py:733
+#: appEditors/AppGerberEditor.py:733
msgid "Done. Pad Array added."
msgstr "Executat. Aria de paduri a fost adăugată."
-#: appEditors/FlatCAMGrbEditor.py:758
+#: appEditors/AppGerberEditor.py:758
msgid "Select shape(s) and then click ..."
msgstr "Selectează formele si apoi click ..."
-#: appEditors/FlatCAMGrbEditor.py:770
+#: appEditors/AppGerberEditor.py:770
msgid "Failed. Nothing selected."
msgstr "Eșuat. Nu este nimic selectat."
-#: appEditors/FlatCAMGrbEditor.py:786
+#: appEditors/AppGerberEditor.py:786
msgid ""
"Failed. Poligonize works only on geometries belonging to the same aperture."
msgstr ""
"Esuat. Poligonizarea lucrează doar asupra geometriilor care apartin aceleasi "
"aperturi."
-#: appEditors/FlatCAMGrbEditor.py:840
+#: appEditors/AppGerberEditor.py:840
msgid "Done. Poligonize completed."
msgstr "Executat. Poligonizare completă."
-#: appEditors/FlatCAMGrbEditor.py:895 appEditors/FlatCAMGrbEditor.py:1119
-#: appEditors/FlatCAMGrbEditor.py:1143
+#: appEditors/AppGerberEditor.py:895 appEditors/AppGerberEditor.py:1119
+#: appEditors/AppGerberEditor.py:1143
msgid "Corner Mode 1: 45 degrees ..."
msgstr "Mod Colt 1: 45 grade ..."
-#: appEditors/FlatCAMGrbEditor.py:907 appEditors/FlatCAMGrbEditor.py:1219
+#: appEditors/AppGerberEditor.py:907 appEditors/AppGerberEditor.py:1219
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 ..."
-#: appEditors/FlatCAMGrbEditor.py:1107 appEditors/FlatCAMGrbEditor.py:1140
+#: appEditors/AppGerberEditor.py:1107 appEditors/AppGerberEditor.py:1140
msgid "Corner Mode 2: Reverse 45 degrees ..."
msgstr "Mod Colt 2: Invers 45 grade ..."
-#: appEditors/FlatCAMGrbEditor.py:1110 appEditors/FlatCAMGrbEditor.py:1137
+#: appEditors/AppGerberEditor.py:1110 appEditors/AppGerberEditor.py:1137
msgid "Corner Mode 3: 90 degrees ..."
msgstr "Mod Colt 3: 90 grade ..."
-#: appEditors/FlatCAMGrbEditor.py:1113 appEditors/FlatCAMGrbEditor.py:1134
+#: appEditors/AppGerberEditor.py:1113 appEditors/AppGerberEditor.py:1134
msgid "Corner Mode 4: Reverse 90 degrees ..."
msgstr "Mod Colt 4: Invers 90 grade ..."
-#: appEditors/FlatCAMGrbEditor.py:1116 appEditors/FlatCAMGrbEditor.py:1131
+#: appEditors/AppGerberEditor.py:1116 appEditors/AppGerberEditor.py:1131
msgid "Corner Mode 5: Free angle ..."
msgstr "Mod Colt 5: Unghi liber ..."
-#: appEditors/FlatCAMGrbEditor.py:1193 appEditors/FlatCAMGrbEditor.py:1358
-#: appEditors/FlatCAMGrbEditor.py:1397
+#: appEditors/AppGerberEditor.py:1193 appEditors/AppGerberEditor.py:1358
+#: appEditors/AppGerberEditor.py:1397
msgid "Track Mode 1: 45 degrees ..."
msgstr "Mod Traseu 1: 45 grade ..."
-#: appEditors/FlatCAMGrbEditor.py:1338 appEditors/FlatCAMGrbEditor.py:1392
+#: appEditors/AppGerberEditor.py:1338 appEditors/AppGerberEditor.py:1392
msgid "Track Mode 2: Reverse 45 degrees ..."
msgstr "Mod Traseu 2: Invers 45 grade ..."
-#: appEditors/FlatCAMGrbEditor.py:1343 appEditors/FlatCAMGrbEditor.py:1387
+#: appEditors/AppGerberEditor.py:1343 appEditors/AppGerberEditor.py:1387
msgid "Track Mode 3: 90 degrees ..."
msgstr "Mod Traseu 3: 90 grade ..."
-#: appEditors/FlatCAMGrbEditor.py:1348 appEditors/FlatCAMGrbEditor.py:1382
+#: appEditors/AppGerberEditor.py:1348 appEditors/AppGerberEditor.py:1382
msgid "Track Mode 4: Reverse 90 degrees ..."
msgstr "Mod Traseu 4: Invers 90 grade ..."
-#: appEditors/FlatCAMGrbEditor.py:1353 appEditors/FlatCAMGrbEditor.py:1377
+#: appEditors/AppGerberEditor.py:1353 appEditors/AppGerberEditor.py:1377
msgid "Track Mode 5: Free angle ..."
msgstr "Mod Traseu 5: Unghi liber ..."
-#: appEditors/FlatCAMGrbEditor.py:1787
+#: appEditors/AppGerberEditor.py:1787
msgid "Scale the selected Gerber apertures ..."
msgstr "Șterge aperturile Gerber selectate ..."
-#: appEditors/FlatCAMGrbEditor.py:1829
+#: appEditors/AppGerberEditor.py:1829
msgid "Buffer the selected apertures ..."
msgstr "Bufereaza aperturile selectate."
-#: appEditors/FlatCAMGrbEditor.py:1871
+#: appEditors/AppGerberEditor.py:1871
msgid "Mark polygon areas in the edited Gerber ..."
msgstr "Marchează ariile poligonale in obiectul Gerber editat ..."
-#: appEditors/FlatCAMGrbEditor.py:1937
+#: appEditors/AppGerberEditor.py:1937
msgid "Nothing selected to move"
msgstr "Nimic nu este selectat pentru mutare"
-#: appEditors/FlatCAMGrbEditor.py:2062
+#: appEditors/AppGerberEditor.py:2062
msgid "Done. Apertures Move completed."
msgstr "Executat. Mutarea Aperturilor terminată."
-#: appEditors/FlatCAMGrbEditor.py:2144
+#: appEditors/AppGerberEditor.py:2144
msgid "Done. Apertures copied."
msgstr "Executat. Aperturile au fost copiate."
-#: appEditors/FlatCAMGrbEditor.py:2462 appGUI/MainGUI.py:1477
+#: appEditors/AppGerberEditor.py:2462 appGUI/MainGUI.py:1477
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:27
msgid "Gerber Editor"
msgstr "Editor Gerber"
-#: appEditors/FlatCAMGrbEditor.py:2482 appGUI/ObjectUI.py:247
+#: appEditors/AppGerberEditor.py:2482 appGUI/ObjectUI.py:247
#: appTools/ToolProperties.py:159
msgid "Apertures"
msgstr "Aperturi"
-#: appEditors/FlatCAMGrbEditor.py:2484 appGUI/ObjectUI.py:249
+#: appEditors/AppGerberEditor.py:2484 appGUI/ObjectUI.py:249
msgid "Apertures Table for the Gerber Object."
msgstr "Tabela de aperturi pt obiectul Gerber."
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Code"
msgstr "Cod"
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
#: appGUI/preferences/general/GeneralAPPSetGroupUI.py:103
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:167
@@ -3065,21 +3065,21 @@ msgstr "Cod"
msgid "Size"
msgstr "Dimensiune"
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Dim"
msgstr "Dim"
-#: appEditors/FlatCAMGrbEditor.py:2500 appGUI/ObjectUI.py:286
+#: appEditors/AppGerberEditor.py:2500 appGUI/ObjectUI.py:286
msgid "Index"
msgstr "Index"
-#: appEditors/FlatCAMGrbEditor.py:2502 appEditors/FlatCAMGrbEditor.py:2531
+#: appEditors/AppGerberEditor.py:2502 appEditors/AppGerberEditor.py:2531
#: appGUI/ObjectUI.py:288
msgid "Aperture Code"
msgstr "Cod"
-#: appEditors/FlatCAMGrbEditor.py:2504 appGUI/ObjectUI.py:290
+#: appEditors/AppGerberEditor.py:2504 appGUI/ObjectUI.py:290
msgid "Type of aperture: circular, rectangle, macros etc"
msgstr ""
"Tipul aperturilor:\n"
@@ -3088,11 +3088,11 @@ msgstr ""
"- macro-uri\n"
"etc"
-#: appEditors/FlatCAMGrbEditor.py:2506 appGUI/ObjectUI.py:292
+#: appEditors/AppGerberEditor.py:2506 appGUI/ObjectUI.py:292
msgid "Aperture Size:"
msgstr "Dim. aper.:"
-#: appEditors/FlatCAMGrbEditor.py:2508 appGUI/ObjectUI.py:294
+#: appEditors/AppGerberEditor.py:2508 appGUI/ObjectUI.py:294
msgid ""
"Aperture Dimensions:\n"
" - (width, height) for R, O type.\n"
@@ -3102,16 +3102,16 @@ msgstr ""
"- (latime, inaltime) pt tipurile R, O.\n"
"- (diametru, nVertices) pt tipul P"
-#: appEditors/FlatCAMGrbEditor.py:2532
+#: appEditors/AppGerberEditor.py:2532
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:58
msgid "Code for the new aperture"
msgstr "Diametru pentru noua apertură"
-#: appEditors/FlatCAMGrbEditor.py:2541
+#: appEditors/AppGerberEditor.py:2541
msgid "Aperture Size"
msgstr "Dim. aper"
-#: appEditors/FlatCAMGrbEditor.py:2543
+#: appEditors/AppGerberEditor.py:2543
msgid ""
"Size for the new aperture.\n"
"If aperture type is 'R' or 'O' then\n"
@@ -3124,11 +3124,11 @@ msgstr ""
"valoarea este calculată automat prin:\n"
"sqrt(lătime**2 + inăltime**2)"
-#: appEditors/FlatCAMGrbEditor.py:2557
+#: appEditors/AppGerberEditor.py:2557
msgid "Aperture Type"
msgstr "Tip aper"
-#: appEditors/FlatCAMGrbEditor.py:2559
+#: appEditors/AppGerberEditor.py:2559
msgid ""
"Select the type of new aperture. Can be:\n"
"C = circular\n"
@@ -3140,11 +3140,11 @@ msgstr ""
"R = rectangular\n"
"O = oval"
-#: appEditors/FlatCAMGrbEditor.py:2570
+#: appEditors/AppGerberEditor.py:2570
msgid "Aperture Dim"
msgstr "Dim. aper"
-#: appEditors/FlatCAMGrbEditor.py:2572
+#: appEditors/AppGerberEditor.py:2572
msgid ""
"Dimensions for the new aperture.\n"
"Active only for rectangular apertures (type R).\n"
@@ -3154,19 +3154,19 @@ msgstr ""
"Activă doar pentru aperturile rectangulare (tip 'R').\n"
"Formatul este (lătime, inăltime)"
-#: appEditors/FlatCAMGrbEditor.py:2581
+#: appEditors/AppGerberEditor.py:2581
msgid "Add/Delete Aperture"
msgstr "Adaugă/Șterge apertură"
-#: appEditors/FlatCAMGrbEditor.py:2583
+#: appEditors/AppGerberEditor.py:2583
msgid "Add/Delete an aperture in the aperture table"
msgstr "Adaugă/Șterge o apertură din lista de aperturi"
-#: appEditors/FlatCAMGrbEditor.py:2592
+#: appEditors/AppGerberEditor.py:2592
msgid "Add a new aperture to the aperture list."
msgstr "Adaugă o nouă apertură in lista de aperturi."
-#: appEditors/FlatCAMGrbEditor.py:2595 appEditors/FlatCAMGrbEditor.py:2743
+#: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743
#: appGUI/MainGUI.py:748 appGUI/MainGUI.py:1068 appGUI/MainGUI.py:1527
#: appGUI/MainGUI.py:2099 appGUI/MainGUI.py:4514 appGUI/ObjectUI.py:1525
#: appObjects/FlatCAMGeometry.py:563 appTools/ToolIsolation.py:298
@@ -3177,28 +3177,28 @@ msgstr "Adaugă o nouă apertură in lista de aperturi."
msgid "Delete"
msgstr "Șterge"
-#: appEditors/FlatCAMGrbEditor.py:2597
+#: appEditors/AppGerberEditor.py:2597
msgid "Delete a aperture in the aperture list"
msgstr "Șterge o apertură din lista de aperturi"
-#: appEditors/FlatCAMGrbEditor.py:2614
+#: appEditors/AppGerberEditor.py:2614
msgid "Buffer Aperture"
msgstr "Bufer pt apertură"
-#: appEditors/FlatCAMGrbEditor.py:2616
+#: appEditors/AppGerberEditor.py:2616
msgid "Buffer a aperture in the aperture list"
msgstr "Fă bufer pt o apertură din lista de aperturi"
-#: appEditors/FlatCAMGrbEditor.py:2629
+#: appEditors/AppGerberEditor.py:2629
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:195
msgid "Buffer distance"
msgstr "Distanta pt bufer"
-#: appEditors/FlatCAMGrbEditor.py:2630
+#: appEditors/AppGerberEditor.py:2630
msgid "Buffer corner"
msgstr "Coltul pt bufer"
-#: appEditors/FlatCAMGrbEditor.py:2632
+#: appEditors/AppGerberEditor.py:2632
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded.\n"
@@ -3212,20 +3212,20 @@ msgstr ""
"- 'Beveled:' coltul este inlocuit cu o linie care uneste capetele liniilor "
"care formează coltul"
-#: appEditors/FlatCAMGrbEditor.py:2662
+#: appEditors/AppGerberEditor.py:2662
msgid "Scale Aperture"
msgstr "Scalează aper"
-#: appEditors/FlatCAMGrbEditor.py:2664
+#: appEditors/AppGerberEditor.py:2664
msgid "Scale a aperture in the aperture list"
msgstr "Scalează o apertură in lista de aperturi"
-#: appEditors/FlatCAMGrbEditor.py:2672
+#: appEditors/AppGerberEditor.py:2672
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:210
msgid "Scale factor"
msgstr "Factor Scalare"
-#: appEditors/FlatCAMGrbEditor.py:2674
+#: appEditors/AppGerberEditor.py:2674
msgid ""
"The factor by which to scale the selected aperture.\n"
"Values can be between 0.0000 and 999.9999"
@@ -3233,19 +3233,19 @@ msgstr ""
"Factorul cu care se va face scalarea aperturii selectate.\n"
"Poate lua valori intre: 0.000 si 999.9999"
-#: appEditors/FlatCAMGrbEditor.py:2702
+#: appEditors/AppGerberEditor.py:2702
msgid "Mark polygons"
msgstr "Marchează poligoanele"
-#: appEditors/FlatCAMGrbEditor.py:2704
+#: appEditors/AppGerberEditor.py:2704
msgid "Mark the polygon areas."
msgstr "Marchează ariile poligonale."
-#: appEditors/FlatCAMGrbEditor.py:2712
+#: appEditors/AppGerberEditor.py:2712
msgid "Area UPPER threshold"
msgstr "Pragul de sus pt. arie"
-#: appEditors/FlatCAMGrbEditor.py:2714
+#: appEditors/AppGerberEditor.py:2714
msgid ""
"The threshold value, all areas less than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3253,11 +3253,11 @@ msgstr ""
"Valoare de prag, toate poligoanele cu arii mai mici vor fi marcate.\n"
"Poate lua valori intre: 0.000 si 999.9999"
-#: appEditors/FlatCAMGrbEditor.py:2721
+#: appEditors/AppGerberEditor.py:2721
msgid "Area LOWER threshold"
msgstr "Pragul de jos pt. arie"
-#: appEditors/FlatCAMGrbEditor.py:2723
+#: appEditors/AppGerberEditor.py:2723
msgid ""
"The threshold value, all areas more than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3265,32 +3265,32 @@ msgstr ""
"Valoare de prag, toate poligoanele cu arii mai mari vor fi marcate.\n"
"Poate lua valori intre: 0.000 si 999.9999"
-#: appEditors/FlatCAMGrbEditor.py:2737
+#: appEditors/AppGerberEditor.py:2737
msgid "Mark"
msgstr "Marchează"
-#: appEditors/FlatCAMGrbEditor.py:2739
+#: appEditors/AppGerberEditor.py:2739
msgid "Mark the polygons that fit within limits."
msgstr "Marcați poligoanele care se încadrează în limite."
-#: appEditors/FlatCAMGrbEditor.py:2745
+#: appEditors/AppGerberEditor.py:2745
msgid "Delete all the marked polygons."
msgstr "Ștergeți toate poligoanele marcate."
-#: appEditors/FlatCAMGrbEditor.py:2751
+#: appEditors/AppGerberEditor.py:2751
msgid "Clear all the markings."
msgstr "Ștergeți toate marcajele."
-#: appEditors/FlatCAMGrbEditor.py:2771 appGUI/MainGUI.py:1040
+#: appEditors/AppGerberEditor.py:2771 appGUI/MainGUI.py:1040
#: appGUI/MainGUI.py:2072 appGUI/MainGUI.py:4511
msgid "Add Pad Array"
msgstr "Adaugă o arie de paduri"
-#: appEditors/FlatCAMGrbEditor.py:2773
+#: appEditors/AppGerberEditor.py:2773
msgid "Add an array of pads (linear or circular array)"
msgstr "Adaugă o arie de paduri (arie lineara sau circulara)."
-#: appEditors/FlatCAMGrbEditor.py:2779
+#: appEditors/AppGerberEditor.py:2779
msgid ""
"Select the type of pads array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -3298,17 +3298,17 @@ msgstr ""
"Selectează tipul de arii de paduri.\n"
"Poate fi Liniar X(Y) sau Circular"
-#: appEditors/FlatCAMGrbEditor.py:2790
+#: appEditors/AppGerberEditor.py:2790
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:95
msgid "Nr of pads"
msgstr "Nr. paduri"
-#: appEditors/FlatCAMGrbEditor.py:2792
+#: appEditors/AppGerberEditor.py:2792
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:97
msgid "Specify how many pads to be in the array."
msgstr "Specifica cate paduri să fie incluse in arie."
-#: appEditors/FlatCAMGrbEditor.py:2841
+#: appEditors/AppGerberEditor.py:2841
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -3320,13 +3320,13 @@ msgstr ""
"Val minima este: -359.99 grade.\n"
"Val maxima este: 360.00 grade."
-#: appEditors/FlatCAMGrbEditor.py:3335 appEditors/FlatCAMGrbEditor.py:3339
+#: appEditors/AppGerberEditor.py:3335 appEditors/AppGerberEditor.py:3339
msgid "Aperture code value is missing or wrong format. Add it and retry."
msgstr ""
"Valoarea codului aperturii lipseste sau este in format greșit. Adaugă din "
"nou și reîncearcă."
-#: appEditors/FlatCAMGrbEditor.py:3375
+#: appEditors/AppGerberEditor.py:3375
msgid ""
"Aperture dimensions value is missing or wrong format. Add it in format "
"(width, height) and retry."
@@ -3334,64 +3334,64 @@ msgstr ""
"Dimensiunile aperturii lipsesc sau sunt intr-un format greșit. Adaugă din "
"nou și reîncearcă."
-#: appEditors/FlatCAMGrbEditor.py:3388
+#: appEditors/AppGerberEditor.py:3388
msgid "Aperture size value is missing or wrong format. Add it and retry."
msgstr ""
"Valoarea mărimii aperturii lipseste sau este in format greșit. Adaugă din "
"nou și reîncearcă."
-#: appEditors/FlatCAMGrbEditor.py:3399
+#: appEditors/AppGerberEditor.py:3399
msgid "Aperture already in the aperture table."
msgstr "Apertura este deja in lista de aperturi."
-#: appEditors/FlatCAMGrbEditor.py:3406
+#: appEditors/AppGerberEditor.py:3406
msgid "Added new aperture with code"
msgstr "O nouă apertură este adăugată cu codul"
-#: appEditors/FlatCAMGrbEditor.py:3438
+#: appEditors/AppGerberEditor.py:3438
msgid " Select an aperture in Aperture Table"
msgstr " Selectează o unealtă in Tabela de Aperturi"
-#: appEditors/FlatCAMGrbEditor.py:3446
+#: appEditors/AppGerberEditor.py:3446
msgid "Select an aperture in Aperture Table -->"
msgstr "Selectează o unealtă in Tabela de Aperturi -->"
-#: appEditors/FlatCAMGrbEditor.py:3460
+#: appEditors/AppGerberEditor.py:3460
msgid "Deleted aperture with code"
msgstr "A fost stearsă unealta cu codul"
-#: appEditors/FlatCAMGrbEditor.py:3528
+#: appEditors/AppGerberEditor.py:3528
msgid "Dimensions need two float values separated by comma."
msgstr "Dimensiunile au nevoie de două valori float separate prin virgulă."
-#: appEditors/FlatCAMGrbEditor.py:3537
+#: appEditors/AppGerberEditor.py:3537
msgid "Dimensions edited."
msgstr "Dimensiuni editate."
-#: appEditors/FlatCAMGrbEditor.py:4066
+#: appEditors/AppGerberEditor.py:4066
msgid "Loading Gerber into Editor"
msgstr "Se încarcă Gerber în editor"
-#: appEditors/FlatCAMGrbEditor.py:4194
+#: appEditors/AppGerberEditor.py:4194
msgid "Setting up the UI"
msgstr "Configurarea UI"
-#: appEditors/FlatCAMGrbEditor.py:4195
+#: appEditors/AppGerberEditor.py:4195
msgid "Adding geometry finished. Preparing the GUI"
msgstr "Adăugarea geometriei terminate. Pregătirea GUI"
-#: appEditors/FlatCAMGrbEditor.py:4204
+#: appEditors/AppGerberEditor.py:4204
msgid "Finished loading the Gerber object into the editor."
msgstr "S-a terminat încărcarea obiectului Gerber în editor."
-#: appEditors/FlatCAMGrbEditor.py:4345
+#: appEditors/AppGerberEditor.py:4345
msgid ""
"There are no Aperture definitions in the file. Aborting Gerber creation."
msgstr ""
"Nu există definitii de aperturi in fişier. Se anulează crearea de obiect "
"Gerber."
-#: appEditors/FlatCAMGrbEditor.py:4347 appObjects/AppObject.py:133
+#: appEditors/AppGerberEditor.py:4347 appObjects/AppObject.py:133
#: appObjects/FlatCAMGeometry.py:1786 appParsers/ParseExcellon.py:896
#: appTools/ToolPcbWizard.py:432 app_Main.py:8589 app_Main.py:8653
#: app_Main.py:8784 app_Main.py:8849 app_Main.py:9501
@@ -3399,93 +3399,93 @@ msgid "An internal error has occurred. See shell.\n"
msgstr ""
"A apărut o eroare internă. Verifică in TCL Shell pt mai multe detalii.\n"
-#: appEditors/FlatCAMGrbEditor.py:4355
+#: appEditors/AppGerberEditor.py:4355
msgid "Creating Gerber."
msgstr "Gerber in curs de creare."
-#: appEditors/FlatCAMGrbEditor.py:4367
+#: appEditors/AppGerberEditor.py:4367
msgid "Done. Gerber editing finished."
msgstr "Editarea Gerber a fost terminată."
-#: appEditors/FlatCAMGrbEditor.py:4383
+#: appEditors/AppGerberEditor.py:4383
msgid "Cancelled. No aperture is selected"
msgstr "Anulat. Nici-o apertură nu este selectată"
-#: appEditors/FlatCAMGrbEditor.py:4538 app_Main.py:6122
+#: appEditors/AppGerberEditor.py:4538 app_Main.py:6122
msgid "Coordinates copied to clipboard."
msgstr "Coordonatele au fost copiate in clipboard."
-#: appEditors/FlatCAMGrbEditor.py:4985
+#: appEditors/AppGerberEditor.py:4985
msgid "Failed. No aperture geometry is selected."
msgstr "Anulat. Nici-o geometrie de apertură nu este selectată."
-#: appEditors/FlatCAMGrbEditor.py:4994 appEditors/FlatCAMGrbEditor.py:5265
+#: appEditors/AppGerberEditor.py:4994 appEditors/AppGerberEditor.py:5265
msgid "Done. Apertures geometry deleted."
msgstr "Executat. Geometriile aperturilor au fost șterse."
-#: appEditors/FlatCAMGrbEditor.py:5137
+#: appEditors/AppGerberEditor.py:5137
msgid "No aperture to buffer. Select at least one aperture and try again."
msgstr ""
"Nici-o apertură sel. pt a face bufer. Selectează cel puțin o apertură și "
"încearcă din nou."
-#: appEditors/FlatCAMGrbEditor.py:5149
+#: appEditors/AppGerberEditor.py:5149
msgid "Failed."
msgstr "Esuat."
-#: appEditors/FlatCAMGrbEditor.py:5168
+#: appEditors/AppGerberEditor.py:5168
msgid "Scale factor value is missing or wrong format. Add it and retry."
msgstr ""
"Valoarea factorului de scalare lipseste sau este in format gresit. Adaugă "
"din nou și reîncearcă."
-#: appEditors/FlatCAMGrbEditor.py:5200
+#: appEditors/AppGerberEditor.py:5200
msgid "No aperture to scale. Select at least one aperture and try again."
msgstr ""
"Nici-o apertură sel. pt scalare. Selectează cel puțin o apertură și încearcă "
"din nou."
-#: appEditors/FlatCAMGrbEditor.py:5216
+#: appEditors/AppGerberEditor.py:5216
msgid "Done. Scale Tool completed."
msgstr "Executat. Unealta Scalare a terminat."
-#: appEditors/FlatCAMGrbEditor.py:5254
+#: appEditors/AppGerberEditor.py:5254
msgid "Polygons marked."
msgstr "Poligoanele sunt marcate."
-#: appEditors/FlatCAMGrbEditor.py:5257
+#: appEditors/AppGerberEditor.py:5257
msgid "No polygons were marked. None fit within the limits."
msgstr "Nu au fost marcate poligoane. Niciunul nu se încadrează în limite."
-#: appEditors/FlatCAMGrbEditor.py:5985
+#: appEditors/AppGerberEditor.py:5985
msgid "Rotation action was not executed."
msgstr "Actiuena de rotatie nu a fost efectuatăt."
-#: appEditors/FlatCAMGrbEditor.py:6027 app_Main.py:5556 app_Main.py:5604
+#: appEditors/AppGerberEditor.py:6027 app_Main.py:5556 app_Main.py:5604
msgid "Flip action was not executed."
msgstr "Acțiunea de Oglindire nu a fost executată."
-#: appEditors/FlatCAMGrbEditor.py:6067
+#: appEditors/AppGerberEditor.py:6067
msgid "Skew action was not executed."
msgstr "Actiunea de deformare nu a fost efectuată."
-#: appEditors/FlatCAMGrbEditor.py:6106
+#: appEditors/AppGerberEditor.py:6106
msgid "Scale action was not executed."
msgstr "Actiuena de scalare nu a fost efectuată."
-#: appEditors/FlatCAMGrbEditor.py:6150
+#: appEditors/AppGerberEditor.py:6150
msgid "Offset action was not executed."
msgstr "Actiuena de offset nu a fost efectuată."
-#: appEditors/FlatCAMGrbEditor.py:6236
+#: appEditors/AppGerberEditor.py:6236
msgid "Geometry shape offset Y cancelled"
msgstr "Deplasarea formei geometrice pe axa Y anulată"
-#: appEditors/FlatCAMGrbEditor.py:6251
+#: appEditors/AppGerberEditor.py:6251
msgid "Geometry shape skew X cancelled"
msgstr "Deformarea formei geometrice pe axa X anulată"
-#: appEditors/FlatCAMGrbEditor.py:6266
+#: appEditors/AppGerberEditor.py:6266
msgid "Geometry shape skew Y cancelled"
msgstr "Deformarea formei geometrice pe axa Y executată"
diff --git a/locale/ru/LC_MESSAGES/strings.po b/locale/ru/LC_MESSAGES/strings.po
index 2008a988..0ea270db 100644
--- a/locale/ru/LC_MESSAGES/strings.po
+++ b/locale/ru/LC_MESSAGES/strings.po
@@ -103,8 +103,8 @@ msgid "Bookmarks"
msgstr "Закладки"
#: Bookmark.py:300 Bookmark.py:342 appDatabase.py:665 appDatabase.py:711
-#: appDatabase.py:2279 appDatabase.py:2325 appEditors/FlatCAMExcEditor.py:1023
-#: appEditors/FlatCAMExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
+#: appDatabase.py:2279 appDatabase.py:2325 appEditors/AppExcEditor.py:1023
+#: appEditors/AppExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
#: appGUI/MainGUI.py:2730 appGUI/MainGUI.py:2952 appGUI/MainGUI.py:3167
#: appObjects/ObjectCollection.py:127 appTools/ToolFilm.py:739
#: appTools/ToolFilm.py:885 appTools/ToolImage.py:247 appTools/ToolMove.py:269
@@ -172,7 +172,7 @@ msgstr "Нажмите на конечную точку области."
msgid "Zone added. Click to start adding next zone or right click to finish."
msgstr "Зона добавлена. Щелкните правой кнопкой мыши для завершения."
-#: Common.py:322 appEditors/appGeoEditor.py:2352
+#: Common.py:322 appEditors/AppGeoEditor.py:2352
#: appTools/ToolIsolation.py:2584 appTools/ToolNCC.py:1754
#: appTools/ToolPaint.py:1647
msgid "Click on next Point or click right mouse button to complete ..."
@@ -278,7 +278,7 @@ msgid "Tool Name"
msgstr "Название инструмента"
#: appDatabase.py:161 appDatabase.py:837 appDatabase.py:1119
-#: appEditors/FlatCAMExcEditor.py:1604 appGUI/ObjectUI.py:1226
+#: appEditors/AppExcEditor.py:1604 appGUI/ObjectUI.py:1226
#: appGUI/ObjectUI.py:1480
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:132
#: appTools/ToolIsolation.py:260 appTools/ToolNCC.py:278
@@ -839,7 +839,7 @@ msgstr ""
"Если это не удастся, то очистка от меди также потерпит неудачу.\n"
"- Очистка - > обычная очистка от меди."
-#: appDatabase.py:1427 appEditors/FlatCAMGrbEditor.py:2749
+#: appDatabase.py:1427 appEditors/AppGerberEditor.py:2749
#: appGUI/GUIElements.py:2765 appTools/ToolNCC.py:350
msgid "Clear"
msgstr "Сбросить"
@@ -891,7 +891,7 @@ msgid "Conventional"
msgstr "Обычный"
#: appDatabase.py:1456 appDatabase.py:1565 appDatabase.py:1667
-#: appEditors/appGeoEditor.py:450
+#: appEditors/AppGeoEditor.py:450
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:167
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:182
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:163
@@ -921,7 +921,7 @@ msgstr ""
"Более высокие значения = медленная обработка и медленное выполнение на ЧПУ\n"
"из-за большого количества путей."
-#: appDatabase.py:1477 appDatabase.py:1586 appEditors/appGeoEditor.py:470
+#: appDatabase.py:1477 appDatabase.py:1586 appEditors/AppGeoEditor.py:470
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:72
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:229
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:59
@@ -950,7 +950,7 @@ msgstr "Отступ"
msgid "Bounding box margin."
msgstr "Граница рамки."
-#: appDatabase.py:1490 appDatabase.py:1601 appEditors/appGeoEditor.py:484
+#: appDatabase.py:1490 appDatabase.py:1601 appEditors/AppGeoEditor.py:484
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:105
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:106
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:215
@@ -973,7 +973,7 @@ msgstr ""
"- Круговой: наружу от центра.\n"
"- Линейный: параллельные линии."
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2232 appTools/ToolNCC.py:2764
@@ -983,8 +983,8 @@ msgstr ""
msgid "Standard"
msgstr "Стандартный"
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:568 appEditors/appGeoEditor.py:5091
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:568 appEditors/AppGeoEditor.py:5091
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2243 appTools/ToolNCC.py:2770
@@ -995,8 +995,8 @@ msgstr "Стандартный"
msgid "Seed"
msgstr "По кругу"
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:5095
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:5095
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217
#: appTools/ToolNCC.py:431 appTools/ToolNCC.py:2254 appTools/ToolPaint.py:389
@@ -1020,7 +1020,7 @@ msgstr "Комбо"
msgid "Connect"
msgstr "Подключение"
-#: appDatabase.py:1512 appDatabase.py:1629 appEditors/appGeoEditor.py:507
+#: appDatabase.py:1512 appDatabase.py:1629 appEditors/AppGeoEditor.py:507
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:239
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:226
#: appTools/ToolNCC.py:443 appTools/ToolPaint.py:403
@@ -1038,7 +1038,7 @@ msgstr ""
msgid "Contour"
msgstr "Контур"
-#: appDatabase.py:1522 appDatabase.py:1636 appEditors/appGeoEditor.py:517
+#: appDatabase.py:1522 appDatabase.py:1636 appEditors/AppGeoEditor.py:517
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:248
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:234
#: appTools/ToolNCC.py:453 appTools/ToolPaint.py:410
@@ -1049,8 +1049,8 @@ msgstr ""
"Обрезка по периметру полигона\n"
"для зачистки неровных краёв."
-#: appDatabase.py:1528 appEditors/appGeoEditor.py:611
-#: appEditors/FlatCAMGrbEditor.py:5304 appGUI/ObjectUI.py:143
+#: appDatabase.py:1528 appEditors/AppGeoEditor.py:611
+#: appEditors/AppGerberEditor.py:5304 appGUI/ObjectUI.py:143
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:255
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:183
@@ -1072,7 +1072,7 @@ msgstr ""
"из медных штучек.\n"
"Значение может быть от 0 до 10 единиц FlatCAM."
-#: appDatabase.py:1567 appEditors/appGeoEditor.py:452
+#: appDatabase.py:1567 appEditors/AppGeoEditor.py:452
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:165
#: appTools/ToolPaint.py:330
msgid ""
@@ -1094,7 +1094,7 @@ msgstr ""
"Более высокие значения = медленная обработка и медленное выполнение на ЧПУ\n"
"из-за большого количества путей."
-#: appDatabase.py:1588 appEditors/appGeoEditor.py:472
+#: appDatabase.py:1588 appEditors/AppGeoEditor.py:472
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:185
#: appTools/ToolPaint.py:351
msgid ""
@@ -1238,141 +1238,141 @@ msgstr ""
"активной геометрии после выбора инструмента\n"
"в базе данных."
-#: appEditors/FlatCAMExcEditor.py:50 appEditors/FlatCAMExcEditor.py:74
-#: appEditors/FlatCAMExcEditor.py:168 appEditors/FlatCAMExcEditor.py:385
-#: appEditors/FlatCAMExcEditor.py:589 appEditors/FlatCAMGrbEditor.py:241
-#: appEditors/FlatCAMGrbEditor.py:248
+#: appEditors/AppExcEditor.py:50 appEditors/AppExcEditor.py:74
+#: appEditors/AppExcEditor.py:168 appEditors/AppExcEditor.py:385
+#: appEditors/AppExcEditor.py:589 appEditors/AppGerberEditor.py:241
+#: appEditors/AppGerberEditor.py:248
msgid "Click to place ..."
msgstr "Нажмите для размещения ..."
-#: appEditors/FlatCAMExcEditor.py:58
+#: appEditors/AppExcEditor.py:58
msgid "To add a drill first select a tool"
msgstr "Чтобы добавить отверстие, сначала выберите инструмент"
-#: appEditors/FlatCAMExcEditor.py:122
+#: appEditors/AppExcEditor.py:122
msgid "Done. Drill added."
msgstr "Готово. Сверло добавлено."
-#: appEditors/FlatCAMExcEditor.py:176
+#: appEditors/AppExcEditor.py:176
msgid "To add an Drill Array first select a tool in Tool Table"
msgstr ""
"Чтобы добавить массив отверстий, сначала выберите инструмент в таблице "
"инструментов"
-#: appEditors/FlatCAMExcEditor.py:192 appEditors/FlatCAMExcEditor.py:415
-#: appEditors/FlatCAMExcEditor.py:636 appEditors/FlatCAMExcEditor.py:1151
-#: appEditors/FlatCAMExcEditor.py:1178 appEditors/FlatCAMGrbEditor.py:471
-#: appEditors/FlatCAMGrbEditor.py:1944 appEditors/FlatCAMGrbEditor.py:1974
+#: appEditors/AppExcEditor.py:192 appEditors/AppExcEditor.py:415
+#: appEditors/AppExcEditor.py:636 appEditors/AppExcEditor.py:1151
+#: appEditors/AppExcEditor.py:1178 appEditors/AppGerberEditor.py:471
+#: appEditors/AppGerberEditor.py:1944 appEditors/AppGerberEditor.py:1974
msgid "Click on target location ..."
msgstr "Нажмите на целевой точке ..."
-#: appEditors/FlatCAMExcEditor.py:211
+#: appEditors/AppExcEditor.py:211
msgid "Click on the Drill Circular Array Start position"
msgstr "Нажмите на начальную позицию кругового массива отверстий"
-#: appEditors/FlatCAMExcEditor.py:233 appEditors/FlatCAMExcEditor.py:677
-#: appEditors/FlatCAMGrbEditor.py:516
+#: appEditors/AppExcEditor.py:233 appEditors/AppExcEditor.py:677
+#: appEditors/AppGerberEditor.py:516
msgid "The value is not Float. Check for comma instead of dot separator."
msgstr ""
"Это не значение с плавающей точкой. Проверьте наличие запятой в качестве "
"разделителя."
-#: appEditors/FlatCAMExcEditor.py:237
+#: appEditors/AppExcEditor.py:237
msgid "The value is mistyped. Check the value"
msgstr "Значение введено с ошибкой. Проверьте значение"
-#: appEditors/FlatCAMExcEditor.py:336
+#: appEditors/AppExcEditor.py:336
msgid "Too many drills for the selected spacing angle."
msgstr "Слишком много отверстий для выбранного интервала угла ."
-#: appEditors/FlatCAMExcEditor.py:354
+#: appEditors/AppExcEditor.py:354
msgid "Done. Drill Array added."
msgstr "Готово. Массив отверстий добавлен."
-#: appEditors/FlatCAMExcEditor.py:394
+#: appEditors/AppExcEditor.py:394
msgid "To add a slot first select a tool"
msgstr "Чтобы добавить паз, сначала выберите инструмент"
-#: appEditors/FlatCAMExcEditor.py:454 appEditors/FlatCAMExcEditor.py:461
-#: appEditors/FlatCAMExcEditor.py:742 appEditors/FlatCAMExcEditor.py:749
+#: appEditors/AppExcEditor.py:454 appEditors/AppExcEditor.py:461
+#: appEditors/AppExcEditor.py:742 appEditors/AppExcEditor.py:749
msgid "Value is missing or wrong format. Add it and retry."
msgstr ""
"Значение отсутствует или имеет неправильный формат. Добавьте его и повторите "
"попытку."
-#: appEditors/FlatCAMExcEditor.py:559
+#: appEditors/AppExcEditor.py:559
msgid "Done. Adding Slot completed."
msgstr "Готово. Добавление слота завершено."
-#: appEditors/FlatCAMExcEditor.py:597
+#: appEditors/AppExcEditor.py:597
msgid "To add an Slot Array first select a tool in Tool Table"
msgstr ""
"Чтобы добавить массив пазов сначала выберите инструмент в таблице "
"инструментов"
-#: appEditors/FlatCAMExcEditor.py:655
+#: appEditors/AppExcEditor.py:655
msgid "Click on the Slot Circular Array Start position"
msgstr "Нажмите на начальную позицию круглого массива слота"
-#: appEditors/FlatCAMExcEditor.py:680 appEditors/FlatCAMGrbEditor.py:519
+#: appEditors/AppExcEditor.py:680 appEditors/AppGerberEditor.py:519
msgid "The value is mistyped. Check the value."
msgstr "Значение введено с ошибкой. Проверьте значение."
-#: appEditors/FlatCAMExcEditor.py:859
+#: appEditors/AppExcEditor.py:859
msgid "Too many Slots for the selected spacing angle."
msgstr "Слишком много пазов для выбранного расстояния."
-#: appEditors/FlatCAMExcEditor.py:882
+#: appEditors/AppExcEditor.py:882
msgid "Done. Slot Array added."
msgstr "Готово. Массив пазов добавлен."
-#: appEditors/FlatCAMExcEditor.py:904
+#: appEditors/AppExcEditor.py:904
msgid "Click on the Drill(s) to resize ..."
msgstr "Нажмите на сверло для изменения размера ..."
-#: appEditors/FlatCAMExcEditor.py:934
+#: appEditors/AppExcEditor.py:934
msgid "Resize drill(s) failed. Please enter a diameter for resize."
msgstr ""
"Не удалось изменить размер отверстий. Пожалуйста введите диаметр для "
"изменения размера."
-#: appEditors/FlatCAMExcEditor.py:1112
+#: appEditors/AppExcEditor.py:1112
msgid "Done. Drill/Slot Resize completed."
msgstr "Готово. Изменение размера отверстия/паза завершено."
-#: appEditors/FlatCAMExcEditor.py:1115
+#: appEditors/AppExcEditor.py:1115
msgid "Cancelled. No drills/slots selected for resize ..."
msgstr "Отменено. Не выбраны дрели / слоты для изменения размера ..."
-#: appEditors/FlatCAMExcEditor.py:1153 appEditors/FlatCAMGrbEditor.py:1946
+#: appEditors/AppExcEditor.py:1153 appEditors/AppGerberEditor.py:1946
msgid "Click on reference location ..."
msgstr "Кликните на конечную точку ..."
-#: appEditors/FlatCAMExcEditor.py:1210
+#: appEditors/AppExcEditor.py:1210
msgid "Done. Drill(s) Move completed."
msgstr "Готово. Перемещение отверстий завершено."
-#: appEditors/FlatCAMExcEditor.py:1318
+#: appEditors/AppExcEditor.py:1318
msgid "Done. Drill(s) copied."
msgstr "Готово. Отверстия скопированы."
-#: appEditors/FlatCAMExcEditor.py:1557
+#: appEditors/AppExcEditor.py:1557
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:26
msgid "Excellon Editor"
msgstr "Редактор Excellon"
-#: appEditors/FlatCAMExcEditor.py:1564 appEditors/FlatCAMGrbEditor.py:2469
+#: appEditors/AppExcEditor.py:1564 appEditors/AppGerberEditor.py:2469
msgid "Name:"
msgstr "Имя:"
-#: appEditors/FlatCAMExcEditor.py:1570 appGUI/ObjectUI.py:540
+#: appEditors/AppExcEditor.py:1570 appGUI/ObjectUI.py:540
#: appGUI/ObjectUI.py:1362 appTools/ToolIsolation.py:118
#: appTools/ToolNCC.py:120 appTools/ToolPaint.py:114
#: appTools/ToolSolderPaste.py:79
msgid "Tools Table"
msgstr "Таблица инструментов"
-#: appEditors/FlatCAMExcEditor.py:1572 appGUI/ObjectUI.py:542
+#: appEditors/AppExcEditor.py:1572 appGUI/ObjectUI.py:542
msgid ""
"Tools in this Excellon object\n"
"when are used for drilling."
@@ -1380,7 +1380,7 @@ msgstr ""
"Инструменты для Excellon объекта\n"
"используемые для сверления."
-#: appEditors/FlatCAMExcEditor.py:1584 appEditors/FlatCAMExcEditor.py:3041
+#: appEditors/AppExcEditor.py:1584 appEditors/AppExcEditor.py:3041
#: appGUI/ObjectUI.py:560 appObjects/FlatCAMExcellon.py:1265
#: appObjects/FlatCAMExcellon.py:1368 appObjects/FlatCAMExcellon.py:1553
#: appTools/ToolIsolation.py:130 appTools/ToolNCC.py:132
@@ -1390,11 +1390,11 @@ msgstr ""
msgid "Diameter"
msgstr "Диаметр"
-#: appEditors/FlatCAMExcEditor.py:1592
+#: appEditors/AppExcEditor.py:1592
msgid "Add/Delete Tool"
msgstr "Добавить/Удалить инструмент"
-#: appEditors/FlatCAMExcEditor.py:1594
+#: appEditors/AppExcEditor.py:1594
msgid ""
"Add/Delete a tool to the tool list\n"
"for this Excellon object."
@@ -1402,16 +1402,16 @@ msgstr ""
"Добавляет/Удаляет инструмент в списоке инструментов\n"
"для этого Excellon объекта ."
-#: appEditors/FlatCAMExcEditor.py:1606 appGUI/ObjectUI.py:1482
+#: appEditors/AppExcEditor.py:1606 appGUI/ObjectUI.py:1482
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:57
msgid "Diameter for the new tool"
msgstr "Диаметр нового инструмента"
-#: appEditors/FlatCAMExcEditor.py:1616
+#: appEditors/AppExcEditor.py:1616
msgid "Add Tool"
msgstr "Добавить"
-#: appEditors/FlatCAMExcEditor.py:1618
+#: appEditors/AppExcEditor.py:1618
msgid ""
"Add a new tool to the tool list\n"
"with the diameter specified above."
@@ -1419,11 +1419,11 @@ msgstr ""
"Добавляет новый инструмент в список инструментов\n"
"с диаметром, указанным выше."
-#: appEditors/FlatCAMExcEditor.py:1630
+#: appEditors/AppExcEditor.py:1630
msgid "Delete Tool"
msgstr "Удалить инструмент"
-#: appEditors/FlatCAMExcEditor.py:1632
+#: appEditors/AppExcEditor.py:1632
msgid ""
"Delete a tool in the tool list\n"
"by selecting a row in the tool table."
@@ -1431,40 +1431,40 @@ msgstr ""
"Удаляет инструмент из списка инструментов\n"
"в выбранной строке таблицы инструментов."
-#: appEditors/FlatCAMExcEditor.py:1650 appGUI/MainGUI.py:4392
+#: appEditors/AppExcEditor.py:1650 appGUI/MainGUI.py:4392
msgid "Resize Drill(s)"
msgstr "Изменить размер сверла"
-#: appEditors/FlatCAMExcEditor.py:1652
+#: appEditors/AppExcEditor.py:1652
msgid "Resize a drill or a selection of drills."
msgstr "Изменяет размер сверла или выбранных свёрел."
-#: appEditors/FlatCAMExcEditor.py:1659
+#: appEditors/AppExcEditor.py:1659
msgid "Resize Dia"
msgstr "Изменить диаметр"
-#: appEditors/FlatCAMExcEditor.py:1661
+#: appEditors/AppExcEditor.py:1661
msgid "Diameter to resize to."
msgstr "Диаметр для изменения."
-#: appEditors/FlatCAMExcEditor.py:1672
+#: appEditors/AppExcEditor.py:1672
msgid "Resize"
msgstr "Изменить"
-#: appEditors/FlatCAMExcEditor.py:1674
+#: appEditors/AppExcEditor.py:1674
msgid "Resize drill(s)"
msgstr "Изменить размер сверла"
-#: appEditors/FlatCAMExcEditor.py:1699 appGUI/MainGUI.py:1514
+#: appEditors/AppExcEditor.py:1699 appGUI/MainGUI.py:1514
#: appGUI/MainGUI.py:4391
msgid "Add Drill Array"
msgstr "Добавить массив отверстий"
-#: appEditors/FlatCAMExcEditor.py:1701
+#: appEditors/AppExcEditor.py:1701
msgid "Add an array of drills (linear or circular array)"
msgstr "Добавляет массив свёрел (линейный или круговой массив)"
-#: appEditors/FlatCAMExcEditor.py:1707
+#: appEditors/AppExcEditor.py:1707
msgid ""
"Select the type of drills array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -1472,13 +1472,13 @@ msgstr ""
"Выберите тип массива свёрел для создания.\n"
"Это может быть линейный X (Y) или круговой"
-#: appEditors/FlatCAMExcEditor.py:1710 appEditors/FlatCAMExcEditor.py:1924
-#: appEditors/FlatCAMGrbEditor.py:2782
+#: appEditors/AppExcEditor.py:1710 appEditors/AppExcEditor.py:1924
+#: appEditors/AppGerberEditor.py:2782
msgid "Linear"
msgstr "Линейный"
-#: appEditors/FlatCAMExcEditor.py:1711 appEditors/FlatCAMExcEditor.py:1925
-#: appEditors/FlatCAMGrbEditor.py:2783
+#: appEditors/AppExcEditor.py:1711 appEditors/AppExcEditor.py:1925
+#: appEditors/AppGerberEditor.py:2783
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:52
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:149
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:107
@@ -1494,26 +1494,26 @@ msgstr "Линейный"
msgid "Circular"
msgstr "Круг"
-#: appEditors/FlatCAMExcEditor.py:1719
+#: appEditors/AppExcEditor.py:1719
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:68
msgid "Nr of drills"
msgstr "Количество отверстий"
-#: appEditors/FlatCAMExcEditor.py:1720
+#: appEditors/AppExcEditor.py:1720
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:70
msgid "Specify how many drills to be in the array."
msgstr "Укажите, сколько свёрел должно быть в массиве."
-#: appEditors/FlatCAMExcEditor.py:1738 appEditors/FlatCAMExcEditor.py:1788
-#: appEditors/FlatCAMExcEditor.py:1860 appEditors/FlatCAMExcEditor.py:1953
-#: appEditors/FlatCAMExcEditor.py:2004 appEditors/FlatCAMGrbEditor.py:1580
-#: appEditors/FlatCAMGrbEditor.py:2811 appEditors/FlatCAMGrbEditor.py:2860
+#: appEditors/AppExcEditor.py:1738 appEditors/AppExcEditor.py:1788
+#: appEditors/AppExcEditor.py:1860 appEditors/AppExcEditor.py:1953
+#: appEditors/AppExcEditor.py:2004 appEditors/AppGerberEditor.py:1580
+#: appEditors/AppGerberEditor.py:2811 appEditors/AppGerberEditor.py:2860
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:178
msgid "Direction"
msgstr "Направление"
-#: appEditors/FlatCAMExcEditor.py:1740 appEditors/FlatCAMExcEditor.py:1955
-#: appEditors/FlatCAMGrbEditor.py:2813
+#: appEditors/AppExcEditor.py:1740 appEditors/AppExcEditor.py:1955
+#: appEditors/AppGerberEditor.py:2813
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:86
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:234
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:123
@@ -1528,8 +1528,8 @@ msgstr ""
"- 'Y' - вертикальная ось или\n"
"- 'Угол' - произвольный угол наклона массива"
-#: appEditors/FlatCAMExcEditor.py:1747 appEditors/FlatCAMExcEditor.py:1869
-#: appEditors/FlatCAMExcEditor.py:1962 appEditors/FlatCAMGrbEditor.py:2820
+#: appEditors/AppExcEditor.py:1747 appEditors/AppExcEditor.py:1869
+#: appEditors/AppExcEditor.py:1962 appEditors/AppGerberEditor.py:2820
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:240
@@ -1539,8 +1539,8 @@ msgstr ""
msgid "X"
msgstr "X"
-#: appEditors/FlatCAMExcEditor.py:1748 appEditors/FlatCAMExcEditor.py:1870
-#: appEditors/FlatCAMExcEditor.py:1963 appEditors/FlatCAMGrbEditor.py:2821
+#: appEditors/AppExcEditor.py:1748 appEditors/AppExcEditor.py:1870
+#: appEditors/AppExcEditor.py:1963 appEditors/AppGerberEditor.py:2821
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:241
@@ -1550,13 +1550,13 @@ msgstr "X"
msgid "Y"
msgstr "Y"
-#: appEditors/FlatCAMExcEditor.py:1749 appEditors/FlatCAMExcEditor.py:1766
-#: appEditors/FlatCAMExcEditor.py:1800 appEditors/FlatCAMExcEditor.py:1871
-#: appEditors/FlatCAMExcEditor.py:1875 appEditors/FlatCAMExcEditor.py:1964
-#: appEditors/FlatCAMExcEditor.py:1982 appEditors/FlatCAMExcEditor.py:2016
-#: appEditors/appGeoEditor.py:683 appEditors/FlatCAMGrbEditor.py:2822
-#: appEditors/FlatCAMGrbEditor.py:2839 appEditors/FlatCAMGrbEditor.py:2875
-#: appEditors/FlatCAMGrbEditor.py:5376
+#: appEditors/AppExcEditor.py:1749 appEditors/AppExcEditor.py:1766
+#: appEditors/AppExcEditor.py:1800 appEditors/AppExcEditor.py:1871
+#: appEditors/AppExcEditor.py:1875 appEditors/AppExcEditor.py:1964
+#: appEditors/AppExcEditor.py:1982 appEditors/AppExcEditor.py:2016
+#: appEditors/AppGeoEditor.py:683 appEditors/AppGerberEditor.py:2822
+#: appEditors/AppGerberEditor.py:2839 appEditors/AppGerberEditor.py:2875
+#: appEditors/AppGerberEditor.py:5376
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:94
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:113
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:189
@@ -1571,23 +1571,23 @@ msgstr "Y"
msgid "Angle"
msgstr "Угол"
-#: appEditors/FlatCAMExcEditor.py:1753 appEditors/FlatCAMExcEditor.py:1968
-#: appEditors/FlatCAMGrbEditor.py:2826
+#: appEditors/AppExcEditor.py:1753 appEditors/AppExcEditor.py:1968
+#: appEditors/AppGerberEditor.py:2826
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:100
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:248
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:137
msgid "Pitch"
msgstr "Шаг"
-#: appEditors/FlatCAMExcEditor.py:1755 appEditors/FlatCAMExcEditor.py:1970
-#: appEditors/FlatCAMGrbEditor.py:2828
+#: appEditors/AppExcEditor.py:1755 appEditors/AppExcEditor.py:1970
+#: appEditors/AppGerberEditor.py:2828
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:102
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:250
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:139
msgid "Pitch = Distance between elements of the array."
msgstr "Подача = Расстояние между элементами массива."
-#: appEditors/FlatCAMExcEditor.py:1768 appEditors/FlatCAMExcEditor.py:1984
+#: appEditors/AppExcEditor.py:1768 appEditors/AppExcEditor.py:1984
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1599,8 +1599,8 @@ msgstr ""
"Минимальное значение: -359.99 градусов.\n"
"Максимальное значение: 360.00 градусов."
-#: appEditors/FlatCAMExcEditor.py:1789 appEditors/FlatCAMExcEditor.py:2005
-#: appEditors/FlatCAMGrbEditor.py:2862
+#: appEditors/AppExcEditor.py:1789 appEditors/AppExcEditor.py:2005
+#: appEditors/AppGerberEditor.py:2862
msgid ""
"Direction for circular array.Can be CW = clockwise or CCW = counter "
"clockwise."
@@ -1608,8 +1608,8 @@ msgstr ""
"Направление для кругового массива. Может быть CW = по часовой стрелке или "
"CCW = против часовой стрелки."
-#: appEditors/FlatCAMExcEditor.py:1796 appEditors/FlatCAMExcEditor.py:2012
-#: appEditors/FlatCAMGrbEditor.py:2870
+#: appEditors/AppExcEditor.py:1796 appEditors/AppExcEditor.py:2012
+#: appEditors/AppGerberEditor.py:2870
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:129
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:136
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:286
@@ -1618,8 +1618,8 @@ msgstr ""
msgid "CW"
msgstr "CW"
-#: appEditors/FlatCAMExcEditor.py:1797 appEditors/FlatCAMExcEditor.py:2013
-#: appEditors/FlatCAMGrbEditor.py:2871
+#: appEditors/AppExcEditor.py:1797 appEditors/AppExcEditor.py:2013
+#: appEditors/AppGerberEditor.py:2871
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:130
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:137
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:287
@@ -1628,8 +1628,8 @@ msgstr "CW"
msgid "CCW"
msgstr "CCW"
-#: appEditors/FlatCAMExcEditor.py:1801 appEditors/FlatCAMExcEditor.py:2017
-#: appEditors/FlatCAMGrbEditor.py:2877
+#: appEditors/AppExcEditor.py:1801 appEditors/AppExcEditor.py:2017
+#: appEditors/AppGerberEditor.py:2877
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:115
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:145
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:265
@@ -1639,11 +1639,11 @@ msgstr "CCW"
msgid "Angle at which each element in circular array is placed."
msgstr "Угол, под которым расположен каждый элемент в круговом массиве."
-#: appEditors/FlatCAMExcEditor.py:1835
+#: appEditors/AppExcEditor.py:1835
msgid "Slot Parameters"
msgstr "Параметры слота"
-#: appEditors/FlatCAMExcEditor.py:1837
+#: appEditors/AppExcEditor.py:1837
msgid ""
"Parameters for adding a slot (hole with oval shape)\n"
"either single or as an part of an array."
@@ -1651,19 +1651,19 @@ msgstr ""
"Параметры для добавления прорези (отверстие овальной формы)\n"
"либо один, либо как часть массива."
-#: appEditors/FlatCAMExcEditor.py:1846
+#: appEditors/AppExcEditor.py:1846
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:162
#: appGUI/preferences/tools/ToolsCornersPrefGroupUI.py:56
#: appTools/ToolCorners.py:136 appTools/ToolProperties.py:559
msgid "Length"
msgstr "Длина"
-#: appEditors/FlatCAMExcEditor.py:1848
+#: appEditors/AppExcEditor.py:1848
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:164
msgid "Length = The length of the slot."
msgstr "Длина = длина слота."
-#: appEditors/FlatCAMExcEditor.py:1862
+#: appEditors/AppExcEditor.py:1862
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:180
msgid ""
"Direction on which the slot is oriented:\n"
@@ -1676,7 +1676,7 @@ msgstr ""
"- 'Y' - вертикальная ось или\n"
"- «Угол» - произвольный угол наклона паза"
-#: appEditors/FlatCAMExcEditor.py:1877
+#: appEditors/AppExcEditor.py:1877
msgid ""
"Angle at which the slot is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1688,15 +1688,15 @@ msgstr ""
"Минимальное значение: -359,99 градусов.\n"
"Максимальное значение: 360,00 градусов."
-#: appEditors/FlatCAMExcEditor.py:1910
+#: appEditors/AppExcEditor.py:1910
msgid "Slot Array Parameters"
msgstr "Параметры массива пазов"
-#: appEditors/FlatCAMExcEditor.py:1912
+#: appEditors/AppExcEditor.py:1912
msgid "Parameters for the array of slots (linear or circular array)"
msgstr "Параметры для массива пазов(линейный или круговой массив)"
-#: appEditors/FlatCAMExcEditor.py:1921
+#: appEditors/AppExcEditor.py:1921
msgid ""
"Select the type of slot array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -1704,25 +1704,25 @@ msgstr ""
"Выберите тип массива пазов для создания.\n"
"Это может быть линейный X (Y) или круговой"
-#: appEditors/FlatCAMExcEditor.py:1933
+#: appEditors/AppExcEditor.py:1933
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:219
msgid "Nr of slots"
msgstr "Количество пазов"
-#: appEditors/FlatCAMExcEditor.py:1934
+#: appEditors/AppExcEditor.py:1934
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:221
msgid "Specify how many slots to be in the array."
msgstr "Укажите, сколько пазов должно быть в массиве."
-#: appEditors/FlatCAMExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
+#: appEditors/AppExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
msgid "Total Drills"
msgstr "Всего отверстий"
-#: appEditors/FlatCAMExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
+#: appEditors/AppExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
msgid "Total Slots"
msgstr "Всего пазов"
-#: appEditors/FlatCAMExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
+#: appEditors/AppExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
#: appObjects/FlatCAMGeometry.py:1099 appObjects/FlatCAMGeometry.py:1841
#: appObjects/FlatCAMGeometry.py:2491 appTools/ToolIsolation.py:1526
#: appTools/ToolNCC.py:1516 appTools/ToolPaint.py:1268
@@ -1731,7 +1731,7 @@ msgstr "Всего пазов"
msgid "Wrong value format entered, use a number."
msgstr "Неправильно введен формат значения, используйте числа."
-#: appEditors/FlatCAMExcEditor.py:2570
+#: appEditors/AppExcEditor.py:2570
msgid ""
"Tool already in the original or actual tool list.\n"
"Save and reedit Excellon if you need to add this tool. "
@@ -1740,73 +1740,73 @@ msgstr ""
"Сохраните и повторно отредактируйте Excellon, если вам нужно добавить этот "
"инструмент. "
-#: appEditors/FlatCAMExcEditor.py:2579 appGUI/MainGUI.py:3364
+#: appEditors/AppExcEditor.py:2579 appGUI/MainGUI.py:3364
msgid "Added new tool with dia"
msgstr "Добавлен новый инструмент с диаметром"
-#: appEditors/FlatCAMExcEditor.py:2612
+#: appEditors/AppExcEditor.py:2612
msgid "Select a tool in Tool Table"
msgstr "Выберите инструмент в таблице инструментов"
-#: appEditors/FlatCAMExcEditor.py:2642
+#: appEditors/AppExcEditor.py:2642
msgid "Deleted tool with diameter"
msgstr "Удалён инструмент с диаметром"
-#: appEditors/FlatCAMExcEditor.py:2790
+#: appEditors/AppExcEditor.py:2790
msgid "Done. Tool edit completed."
msgstr "Готово. Редактирование инструмента завершено."
-#: appEditors/FlatCAMExcEditor.py:3327
+#: appEditors/AppExcEditor.py:3327
msgid "There are no Tools definitions in the file. Aborting Excellon creation."
msgstr "В файле нет инструментов. Прерывание создания Excellon."
-#: appEditors/FlatCAMExcEditor.py:3331
+#: appEditors/AppExcEditor.py:3331
msgid "An internal error has ocurred. See Shell.\n"
msgstr ""
"Произошла внутренняя ошибка. Смотрите командную строку.\n"
"\n"
-#: appEditors/FlatCAMExcEditor.py:3336
+#: appEditors/AppExcEditor.py:3336
msgid "Creating Excellon."
msgstr "Создание Excellon."
-#: appEditors/FlatCAMExcEditor.py:3350
+#: appEditors/AppExcEditor.py:3350
msgid "Excellon editing finished."
msgstr "Редактирование Excellon завершено."
-#: appEditors/FlatCAMExcEditor.py:3367
+#: appEditors/AppExcEditor.py:3367
msgid "Cancelled. There is no Tool/Drill selected"
msgstr "Отмена. Инструмент/сверло не выбрано"
-#: appEditors/FlatCAMExcEditor.py:3601 appEditors/FlatCAMExcEditor.py:3609
-#: appEditors/appGeoEditor.py:4286 appEditors/appGeoEditor.py:4300
-#: appEditors/FlatCAMGrbEditor.py:1085 appEditors/FlatCAMGrbEditor.py:1312
-#: appEditors/FlatCAMGrbEditor.py:1497 appEditors/FlatCAMGrbEditor.py:1766
-#: appEditors/FlatCAMGrbEditor.py:4608 appEditors/FlatCAMGrbEditor.py:4625
+#: appEditors/AppExcEditor.py:3601 appEditors/AppExcEditor.py:3609
+#: appEditors/AppGeoEditor.py:4286 appEditors/AppGeoEditor.py:4300
+#: appEditors/AppGerberEditor.py:1085 appEditors/AppGerberEditor.py:1312
+#: appEditors/AppGerberEditor.py:1497 appEditors/AppGerberEditor.py:1766
+#: appEditors/AppGerberEditor.py:4608 appEditors/AppGerberEditor.py:4625
#: appGUI/MainGUI.py:2711 appGUI/MainGUI.py:2723
#: appTools/ToolAlignObjects.py:393 appTools/ToolAlignObjects.py:415
#: app_Main.py:4800 app_Main.py:4954
msgid "Done."
msgstr "Готово."
-#: appEditors/FlatCAMExcEditor.py:3984
+#: appEditors/AppExcEditor.py:3984
msgid "Done. Drill(s) deleted."
msgstr "Готово. Отверстия удалены."
-#: appEditors/FlatCAMExcEditor.py:4057 appEditors/FlatCAMExcEditor.py:4067
-#: appEditors/FlatCAMGrbEditor.py:5056
+#: appEditors/AppExcEditor.py:4057 appEditors/AppExcEditor.py:4067
+#: appEditors/AppGerberEditor.py:5056
msgid "Click on the circular array Center position"
msgstr "Нажмите на центральную позицию кругового массива"
-#: appEditors/appGeoEditor.py:84
+#: appEditors/AppGeoEditor.py:84
msgid "Buffer distance:"
msgstr "Расстояние буфера:"
-#: appEditors/appGeoEditor.py:85
+#: appEditors/AppGeoEditor.py:85
msgid "Buffer corner:"
msgstr "Угол буфера:"
-#: appEditors/appGeoEditor.py:87
+#: appEditors/AppGeoEditor.py:87
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded for exterior buffer.\n"
@@ -1819,11 +1819,11 @@ msgstr ""
"- 'Квадрат:' угол встречается под острым углом для внешнего буфера.\n"
"- 'Скошенный:' линия, напрямую соединяющая элементы, встречающиеся в углу"
-#: appEditors/appGeoEditor.py:93 appEditors/FlatCAMGrbEditor.py:2638
+#: appEditors/AppGeoEditor.py:93 appEditors/AppGerberEditor.py:2638
msgid "Round"
msgstr "Круглый"
-#: appEditors/appGeoEditor.py:94 appEditors/FlatCAMGrbEditor.py:2639
+#: appEditors/AppGeoEditor.py:94 appEditors/AppGerberEditor.py:2639
#: appGUI/ObjectUI.py:1149 appGUI/ObjectUI.py:2004
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:225
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:68
@@ -1841,50 +1841,50 @@ msgstr "Круглый"
msgid "Square"
msgstr "Квадрат"
-#: appEditors/appGeoEditor.py:95 appEditors/FlatCAMGrbEditor.py:2640
+#: appEditors/AppGeoEditor.py:95 appEditors/AppGerberEditor.py:2640
msgid "Beveled"
msgstr "Скошенный"
-#: appEditors/appGeoEditor.py:102
+#: appEditors/AppGeoEditor.py:102
msgid "Buffer Interior"
msgstr "Буфер внутри"
-#: appEditors/appGeoEditor.py:104
+#: appEditors/AppGeoEditor.py:104
msgid "Buffer Exterior"
msgstr "Буфер снаружи"
-#: appEditors/appGeoEditor.py:110
+#: appEditors/AppGeoEditor.py:110
msgid "Full Buffer"
msgstr "Полный буфер"
-#: appEditors/appGeoEditor.py:131 appEditors/appGeoEditor.py:2959
+#: appEditors/AppGeoEditor.py:131 appEditors/AppGeoEditor.py:2959
#: appGUI/MainGUI.py:4301
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:191
msgid "Buffer Tool"
msgstr "Буфер"
-#: appEditors/appGeoEditor.py:143 appEditors/appGeoEditor.py:160
-#: appEditors/appGeoEditor.py:177 appEditors/appGeoEditor.py:2978
-#: appEditors/appGeoEditor.py:3006 appEditors/appGeoEditor.py:3034
-#: appEditors/FlatCAMGrbEditor.py:5109
+#: appEditors/AppGeoEditor.py:143 appEditors/AppGeoEditor.py:160
+#: appEditors/AppGeoEditor.py:177 appEditors/AppGeoEditor.py:2978
+#: appEditors/AppGeoEditor.py:3006 appEditors/AppGeoEditor.py:3034
+#: appEditors/AppGerberEditor.py:5109
msgid "Buffer distance value is missing or wrong format. Add it and retry."
msgstr ""
"Отсутствует значение расстояния буфера или оно имеет неправильный формат. "
"Добавьте его и повторите попытку."
-#: appEditors/appGeoEditor.py:241
+#: appEditors/AppGeoEditor.py:241
msgid "Font"
msgstr "Шрифт"
-#: appEditors/appGeoEditor.py:322 appGUI/MainGUI.py:1452
+#: appEditors/AppGeoEditor.py:322 appGUI/MainGUI.py:1452
msgid "Text"
msgstr "Tекст"
-#: appEditors/appGeoEditor.py:348
+#: appEditors/AppGeoEditor.py:348
msgid "Text Tool"
msgstr "Текст"
-#: appEditors/appGeoEditor.py:404 appGUI/MainGUI.py:502
+#: appEditors/AppGeoEditor.py:404 appGUI/MainGUI.py:502
#: appGUI/MainGUI.py:1199 appGUI/ObjectUI.py:597 appGUI/ObjectUI.py:1564
#: appObjects/FlatCAMExcellon.py:852 appObjects/FlatCAMExcellon.py:1242
#: appObjects/FlatCAMGeometry.py:825 appTools/ToolIsolation.py:313
@@ -1893,15 +1893,15 @@ msgstr "Текст"
msgid "Tool"
msgstr "Инструменты"
-#: appEditors/appGeoEditor.py:438
+#: appEditors/AppGeoEditor.py:438
msgid "Tool dia"
msgstr "Диаметр инструмента"
-#: appEditors/appGeoEditor.py:440
+#: appEditors/AppGeoEditor.py:440
msgid "Diameter of the tool to be used in the operation."
msgstr "Диаметр инструмента используемого в этой операции."
-#: appEditors/appGeoEditor.py:486
+#: appEditors/AppGeoEditor.py:486
msgid ""
"Algorithm to paint the polygons:\n"
"- Standard: Fixed step inwards.\n"
@@ -1913,58 +1913,58 @@ msgstr ""
"- Круговой: наружу от центра.\n"
"- Линейный: параллельные линии."
-#: appEditors/appGeoEditor.py:505
+#: appEditors/AppGeoEditor.py:505
msgid "Connect:"
msgstr "Подключение:"
-#: appEditors/appGeoEditor.py:515
+#: appEditors/AppGeoEditor.py:515
msgid "Contour:"
msgstr "Контур:"
-#: appEditors/appGeoEditor.py:528 appGUI/MainGUI.py:1456
+#: appEditors/AppGeoEditor.py:528 appGUI/MainGUI.py:1456
msgid "Paint"
msgstr "Нарисовать"
-#: appEditors/appGeoEditor.py:546 appGUI/MainGUI.py:912
+#: appEditors/AppGeoEditor.py:546 appGUI/MainGUI.py:912
#: appGUI/MainGUI.py:1944 appGUI/ObjectUI.py:2069 appTools/ToolPaint.py:42
#: appTools/ToolPaint.py:737
msgid "Paint Tool"
msgstr "Рисование"
-#: appEditors/appGeoEditor.py:582 appEditors/appGeoEditor.py:1071
-#: appEditors/appGeoEditor.py:2966 appEditors/appGeoEditor.py:2994
-#: appEditors/appGeoEditor.py:3022 appEditors/appGeoEditor.py:4439
-#: appEditors/FlatCAMGrbEditor.py:5764
+#: appEditors/AppGeoEditor.py:582 appEditors/AppGeoEditor.py:1071
+#: appEditors/AppGeoEditor.py:2966 appEditors/AppGeoEditor.py:2994
+#: appEditors/AppGeoEditor.py:3022 appEditors/AppGeoEditor.py:4439
+#: appEditors/AppGerberEditor.py:5764
msgid "Cancelled. No shape selected."
msgstr "Отменено. Форма не выбрана."
-#: appEditors/appGeoEditor.py:595 appEditors/appGeoEditor.py:2984
-#: appEditors/appGeoEditor.py:3012 appEditors/appGeoEditor.py:3040
+#: appEditors/AppGeoEditor.py:595 appEditors/AppGeoEditor.py:2984
+#: appEditors/AppGeoEditor.py:3012 appEditors/AppGeoEditor.py:3040
#: appGUI/preferences/geometry/GeometryGenPrefGroupUI.py:69
#: appTools/ToolProperties.py:117 appTools/ToolProperties.py:162
msgid "Tools"
msgstr "Инструменты"
-#: appEditors/appGeoEditor.py:606 appEditors/appGeoEditor.py:1035
-#: appEditors/FlatCAMGrbEditor.py:5299 appEditors/FlatCAMGrbEditor.py:5728
+#: appEditors/AppGeoEditor.py:606 appEditors/AppGeoEditor.py:1035
+#: appEditors/AppGerberEditor.py:5299 appEditors/AppGerberEditor.py:5728
#: appGUI/MainGUI.py:935 appGUI/MainGUI.py:1967 appTools/ToolTransform.py:494
msgid "Transform Tool"
msgstr "Трансформация"
-#: appEditors/appGeoEditor.py:607 appEditors/appGeoEditor.py:699
-#: appEditors/FlatCAMGrbEditor.py:5300 appEditors/FlatCAMGrbEditor.py:5392
+#: appEditors/AppGeoEditor.py:607 appEditors/AppGeoEditor.py:699
+#: appEditors/AppGerberEditor.py:5300 appEditors/AppGerberEditor.py:5392
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:88
#: appTools/ToolTransform.py:27 appTools/ToolTransform.py:146
msgid "Rotate"
msgstr "Вращение"
-#: appEditors/appGeoEditor.py:608 appEditors/FlatCAMGrbEditor.py:5301
+#: appEditors/AppGeoEditor.py:608 appEditors/AppGerberEditor.py:5301
#: appTools/ToolTransform.py:28
msgid "Skew/Shear"
msgstr "Наклон/Сдвиг"
-#: appEditors/appGeoEditor.py:609 appEditors/FlatCAMGrbEditor.py:2687
-#: appEditors/FlatCAMGrbEditor.py:5302 appGUI/MainGUI.py:1057
+#: appEditors/AppGeoEditor.py:609 appEditors/AppGerberEditor.py:2687
+#: appEditors/AppGerberEditor.py:5302 appGUI/MainGUI.py:1057
#: appGUI/MainGUI.py:1499 appGUI/MainGUI.py:2089 appGUI/MainGUI.py:4513
#: appGUI/ObjectUI.py:125
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:147
@@ -1972,13 +1972,13 @@ msgstr "Наклон/Сдвиг"
msgid "Scale"
msgstr "Масштаб"
-#: appEditors/appGeoEditor.py:610 appEditors/FlatCAMGrbEditor.py:5303
+#: appEditors/AppGeoEditor.py:610 appEditors/AppGerberEditor.py:5303
#: appTools/ToolTransform.py:30
msgid "Mirror (Flip)"
msgstr "Зеркалирование (отражение)"
-#: appEditors/appGeoEditor.py:612 appEditors/FlatCAMGrbEditor.py:2647
-#: appEditors/FlatCAMGrbEditor.py:5305 appGUI/MainGUI.py:1055
+#: appEditors/AppGeoEditor.py:612 appEditors/AppGerberEditor.py:2647
+#: appEditors/AppGerberEditor.py:5305 appGUI/MainGUI.py:1055
#: appGUI/MainGUI.py:1454 appGUI/MainGUI.py:1497 appGUI/MainGUI.py:2087
#: appGUI/MainGUI.py:4511
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:212
@@ -1986,7 +1986,7 @@ msgstr "Зеркалирование (отражение)"
msgid "Buffer"
msgstr "Буфер"
-#: appEditors/appGeoEditor.py:643 appEditors/FlatCAMGrbEditor.py:5336
+#: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5336
#: appGUI/GUIElements.py:2701
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44
@@ -1995,7 +1995,7 @@ msgstr "Буфер"
msgid "Reference"
msgstr "Ссылка"
-#: appEditors/appGeoEditor.py:645 appEditors/FlatCAMGrbEditor.py:5338
+#: appEditors/AppGeoEditor.py:645 appEditors/AppGerberEditor.py:5338
msgid ""
"The reference point for Rotate, Skew, Scale, Mirror.\n"
"Can be:\n"
@@ -2012,15 +2012,15 @@ msgstr ""
"- Точка -> пользовательская точка, заданная координатами X,Y.\n"
"- Мин Выделение -> точка (minx, miny) ограничивающего поля выделения"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appTools/ToolCalibration.py:770 appTools/ToolCalibration.py:771
#: appTools/ToolTransform.py:70
msgid "Origin"
msgstr "Источник"
-#: appEditors/appGeoEditor.py:653 appEditors/appGeoEditor.py:1044
-#: appEditors/FlatCAMGrbEditor.py:5346 appEditors/FlatCAMGrbEditor.py:5737
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGeoEditor.py:1044
+#: appEditors/AppGerberEditor.py:5346 appEditors/AppGerberEditor.py:5737
#: appGUI/preferences/general/GeneralGUIPrefGroupUI.py:250
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:275
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:311
@@ -2031,7 +2031,7 @@ msgstr "Источник"
msgid "Selection"
msgstr "Выбор"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/Tools2sidedPrefGroupUI.py:80
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:60
@@ -2039,12 +2039,12 @@ msgstr "Выбор"
msgid "Point"
msgstr "Точка"
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
msgid "Minimum"
msgstr "Минимальное расстояние"
-#: appEditors/appGeoEditor.py:659 appEditors/appGeoEditor.py:955
-#: appEditors/FlatCAMGrbEditor.py:5352 appEditors/FlatCAMGrbEditor.py:5648
+#: appEditors/AppGeoEditor.py:659 appEditors/AppGeoEditor.py:955
+#: appEditors/AppGerberEditor.py:5352 appEditors/AppGerberEditor.py:5648
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:131
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:133
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:243
@@ -2054,14 +2054,14 @@ msgstr "Минимальное расстояние"
msgid "Value"
msgstr "Значение"
-#: appEditors/appGeoEditor.py:661 appEditors/FlatCAMGrbEditor.py:5354
+#: appEditors/AppGeoEditor.py:661 appEditors/AppGerberEditor.py:5354
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:62
#: appTools/ToolTransform.py:78
msgid "A point of reference in format X,Y."
msgstr "Точка привязки в формате X,Y."
-#: appEditors/appGeoEditor.py:668 appEditors/FlatCAMGrbEditor.py:2590
-#: appEditors/FlatCAMGrbEditor.py:5361 appGUI/ObjectUI.py:1494
+#: appEditors/AppGeoEditor.py:668 appEditors/AppGerberEditor.py:2590
+#: appEditors/AppGerberEditor.py:5361 appGUI/ObjectUI.py:1494
#: appTools/ToolDblSided.py:192 appTools/ToolDblSided.py:425
#: appTools/ToolIsolation.py:276 appTools/ToolIsolation.py:631
#: appTools/ToolNCC.py:294 appTools/ToolNCC.py:631 appTools/ToolPaint.py:276
@@ -2071,12 +2071,12 @@ msgstr "Точка привязки в формате X,Y."
msgid "Add"
msgstr "Добавить"
-#: appEditors/appGeoEditor.py:670 appEditors/FlatCAMGrbEditor.py:5363
+#: appEditors/AppGeoEditor.py:670 appEditors/AppGerberEditor.py:5363
#: appTools/ToolTransform.py:87
msgid "Add point coordinates from clipboard."
msgstr "Координаты скопированы в буфер обмена."
-#: appEditors/appGeoEditor.py:685 appEditors/FlatCAMGrbEditor.py:5378
+#: appEditors/AppGeoEditor.py:685 appEditors/AppGerberEditor.py:5378
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:98
#: appTools/ToolTransform.py:132
msgid ""
@@ -2090,7 +2090,7 @@ msgstr ""
"Положительные числа для движения по часовой стрелке.\n"
"Отрицательные числа для движения против часовой стрелки."
-#: appEditors/appGeoEditor.py:701 appEditors/FlatCAMGrbEditor.py:5394
+#: appEditors/AppGeoEditor.py:701 appEditors/AppGerberEditor.py:5394
#: appTools/ToolTransform.py:148
msgid ""
"Rotate the selected object(s).\n"
@@ -2101,31 +2101,31 @@ msgstr ""
"Точкой отсчета является середина\n"
"ограничительная рамка для всех выбранных объектов."
-#: appEditors/appGeoEditor.py:721 appEditors/appGeoEditor.py:783
-#: appEditors/FlatCAMGrbEditor.py:5414 appEditors/FlatCAMGrbEditor.py:5476
+#: appEditors/AppGeoEditor.py:721 appEditors/AppGeoEditor.py:783
+#: appEditors/AppGerberEditor.py:5414 appEditors/AppGerberEditor.py:5476
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:112
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:151
#: appTools/ToolTransform.py:168 appTools/ToolTransform.py:230
msgid "Link"
msgstr "Ссылка"
-#: appEditors/appGeoEditor.py:723 appEditors/appGeoEditor.py:785
-#: appEditors/FlatCAMGrbEditor.py:5416 appEditors/FlatCAMGrbEditor.py:5478
+#: appEditors/AppGeoEditor.py:723 appEditors/AppGeoEditor.py:785
+#: appEditors/AppGerberEditor.py:5416 appEditors/AppGerberEditor.py:5478
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:114
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:153
#: appTools/ToolTransform.py:170 appTools/ToolTransform.py:232
msgid "Link the Y entry to X entry and copy its content."
msgstr "Соедините запись Y с записью X и скопируйте ее содержимое."
-#: appEditors/appGeoEditor.py:728 appEditors/FlatCAMGrbEditor.py:5421
+#: appEditors/AppGeoEditor.py:728 appEditors/AppGerberEditor.py:5421
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:151
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:124
#: appTools/ToolFilm.py:184 appTools/ToolTransform.py:175
msgid "X angle"
msgstr "Угол наклона X"
-#: appEditors/appGeoEditor.py:730 appEditors/appGeoEditor.py:751
-#: appEditors/FlatCAMGrbEditor.py:5423 appEditors/FlatCAMGrbEditor.py:5444
+#: appEditors/AppGeoEditor.py:730 appEditors/AppGeoEditor.py:751
+#: appEditors/AppGerberEditor.py:5423 appEditors/AppGerberEditor.py:5444
#: appTools/ToolTransform.py:177 appTools/ToolTransform.py:198
msgid ""
"Angle for Skew action, in degrees.\n"
@@ -2134,13 +2134,13 @@ msgstr ""
"Угол наклона в градусах.\n"
"Число с плавающей запятой между -360 и 360."
-#: appEditors/appGeoEditor.py:738 appEditors/FlatCAMGrbEditor.py:5431
+#: appEditors/AppGeoEditor.py:738 appEditors/AppGerberEditor.py:5431
#: appTools/ToolTransform.py:185
msgid "Skew X"
msgstr "Наклон X"
-#: appEditors/appGeoEditor.py:740 appEditors/appGeoEditor.py:761
-#: appEditors/FlatCAMGrbEditor.py:5433 appEditors/FlatCAMGrbEditor.py:5454
+#: appEditors/AppGeoEditor.py:740 appEditors/AppGeoEditor.py:761
+#: appEditors/AppGerberEditor.py:5433 appEditors/AppGerberEditor.py:5454
#: appTools/ToolTransform.py:187 appTools/ToolTransform.py:208
msgid ""
"Skew/shear the selected object(s).\n"
@@ -2151,38 +2151,38 @@ msgstr ""
"Точка отсчета - середина\n"
"ограничительной рамки для всех выбранных объектов."
-#: appEditors/appGeoEditor.py:749 appEditors/FlatCAMGrbEditor.py:5442
+#: appEditors/AppGeoEditor.py:749 appEditors/AppGerberEditor.py:5442
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:160
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:138
#: appTools/ToolFilm.py:193 appTools/ToolTransform.py:196
msgid "Y angle"
msgstr "Угол наклона Y"
-#: appEditors/appGeoEditor.py:759 appEditors/FlatCAMGrbEditor.py:5452
+#: appEditors/AppGeoEditor.py:759 appEditors/AppGerberEditor.py:5452
#: appTools/ToolTransform.py:206
msgid "Skew Y"
msgstr "Наклон Y"
-#: appEditors/appGeoEditor.py:790 appEditors/FlatCAMGrbEditor.py:5483
+#: appEditors/AppGeoEditor.py:790 appEditors/AppGerberEditor.py:5483
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:120
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:162
#: appTools/ToolFilm.py:145 appTools/ToolTransform.py:237
msgid "X factor"
msgstr "Коэффициент X"
-#: appEditors/appGeoEditor.py:792 appEditors/FlatCAMGrbEditor.py:5485
+#: appEditors/AppGeoEditor.py:792 appEditors/AppGerberEditor.py:5485
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:164
#: appTools/ToolTransform.py:239
msgid "Factor for scaling on X axis."
msgstr "Коэффициент масштабирования по оси X."
-#: appEditors/appGeoEditor.py:799 appEditors/FlatCAMGrbEditor.py:5492
+#: appEditors/AppGeoEditor.py:799 appEditors/AppGerberEditor.py:5492
#: appTools/ToolTransform.py:246
msgid "Scale X"
msgstr "Масштаб Х"
-#: appEditors/appGeoEditor.py:801 appEditors/appGeoEditor.py:821
-#: appEditors/FlatCAMGrbEditor.py:5494 appEditors/FlatCAMGrbEditor.py:5514
+#: appEditors/AppGeoEditor.py:801 appEditors/AppGeoEditor.py:821
+#: appEditors/AppGerberEditor.py:5494 appEditors/AppGerberEditor.py:5514
#: appTools/ToolTransform.py:248 appTools/ToolTransform.py:268
msgid ""
"Scale the selected object(s).\n"
@@ -2193,59 +2193,59 @@ msgstr ""
"Точка отсчета зависит от\n"
"состояние флажка Scale Reference."
-#: appEditors/appGeoEditor.py:810 appEditors/FlatCAMGrbEditor.py:5503
+#: appEditors/AppGeoEditor.py:810 appEditors/AppGerberEditor.py:5503
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:129
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:175
#: appTools/ToolFilm.py:154 appTools/ToolTransform.py:257
msgid "Y factor"
msgstr "Коэффициент Y"
-#: appEditors/appGeoEditor.py:812 appEditors/FlatCAMGrbEditor.py:5505
+#: appEditors/AppGeoEditor.py:812 appEditors/AppGerberEditor.py:5505
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:177
#: appTools/ToolTransform.py:259
msgid "Factor for scaling on Y axis."
msgstr "Коэффициент масштабирования по оси Y."
-#: appEditors/appGeoEditor.py:819 appEditors/FlatCAMGrbEditor.py:5512
+#: appEditors/AppGeoEditor.py:819 appEditors/AppGerberEditor.py:5512
#: appTools/ToolTransform.py:266
msgid "Scale Y"
msgstr "Масштаб Y"
-#: appEditors/appGeoEditor.py:846 appEditors/FlatCAMGrbEditor.py:5539
+#: appEditors/AppGeoEditor.py:846 appEditors/AppGerberEditor.py:5539
#: appTools/ToolTransform.py:293
msgid "Flip on X"
msgstr "Отразить по X"
-#: appEditors/appGeoEditor.py:848 appEditors/appGeoEditor.py:853
-#: appEditors/FlatCAMGrbEditor.py:5541 appEditors/FlatCAMGrbEditor.py:5546
+#: appEditors/AppGeoEditor.py:848 appEditors/AppGeoEditor.py:853
+#: appEditors/AppGerberEditor.py:5541 appEditors/AppGerberEditor.py:5546
#: appTools/ToolTransform.py:295 appTools/ToolTransform.py:300
msgid "Flip the selected object(s) over the X axis."
msgstr "Отражает выбранные фигуры по оси X."
-#: appEditors/appGeoEditor.py:851 appEditors/FlatCAMGrbEditor.py:5544
+#: appEditors/AppGeoEditor.py:851 appEditors/AppGerberEditor.py:5544
#: appTools/ToolTransform.py:298
msgid "Flip on Y"
msgstr "Отразить по Y"
-#: appEditors/appGeoEditor.py:871 appEditors/FlatCAMGrbEditor.py:5564
+#: appEditors/AppGeoEditor.py:871 appEditors/AppGerberEditor.py:5564
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:191
#: appTools/ToolTransform.py:318
msgid "X val"
msgstr "Значение X"
-#: appEditors/appGeoEditor.py:873 appEditors/FlatCAMGrbEditor.py:5566
+#: appEditors/AppGeoEditor.py:873 appEditors/AppGerberEditor.py:5566
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:193
#: appTools/ToolTransform.py:320
msgid "Distance to offset on X axis. In current units."
msgstr "Расстояние смещения по оси X. В текущих единицах."
-#: appEditors/appGeoEditor.py:880 appEditors/FlatCAMGrbEditor.py:5573
+#: appEditors/AppGeoEditor.py:880 appEditors/AppGerberEditor.py:5573
#: appTools/ToolTransform.py:327
msgid "Offset X"
msgstr "Смещение Х"
-#: appEditors/appGeoEditor.py:882 appEditors/appGeoEditor.py:902
-#: appEditors/FlatCAMGrbEditor.py:5575 appEditors/FlatCAMGrbEditor.py:5595
+#: appEditors/AppGeoEditor.py:882 appEditors/AppGeoEditor.py:902
+#: appEditors/AppGerberEditor.py:5575 appEditors/AppGerberEditor.py:5595
#: appTools/ToolTransform.py:329 appTools/ToolTransform.py:349
msgid ""
"Offset the selected object(s).\n"
@@ -2256,31 +2256,31 @@ msgstr ""
"Точка отсчета - середина\n"
"ограничительной рамки для всех выбранных объектов.\n"
-#: appEditors/appGeoEditor.py:891 appEditors/FlatCAMGrbEditor.py:5584
+#: appEditors/AppGeoEditor.py:891 appEditors/AppGerberEditor.py:5584
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:204
#: appTools/ToolTransform.py:338
msgid "Y val"
msgstr "Значение Y"
-#: appEditors/appGeoEditor.py:893 appEditors/FlatCAMGrbEditor.py:5586
+#: appEditors/AppGeoEditor.py:893 appEditors/AppGerberEditor.py:5586
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:206
#: appTools/ToolTransform.py:340
msgid "Distance to offset on Y axis. In current units."
msgstr "Расстояние смещения по оси Y. В текущих единицах."
-#: appEditors/appGeoEditor.py:900 appEditors/FlatCAMGrbEditor.py:5593
+#: appEditors/AppGeoEditor.py:900 appEditors/AppGerberEditor.py:5593
#: appTools/ToolTransform.py:347
msgid "Offset Y"
msgstr "Смещение Y"
-#: appEditors/appGeoEditor.py:920 appEditors/FlatCAMGrbEditor.py:5613
+#: appEditors/AppGeoEditor.py:920 appEditors/AppGerberEditor.py:5613
#: appGUI/preferences/tools/Tools2QRCodePrefGroupUI.py:142
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:216
#: appTools/ToolQRCode.py:206 appTools/ToolTransform.py:367
msgid "Rounded"
msgstr "Закругленный"
-#: appEditors/appGeoEditor.py:922 appEditors/FlatCAMGrbEditor.py:5615
+#: appEditors/AppGeoEditor.py:922 appEditors/AppGerberEditor.py:5615
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:218
#: appTools/ToolTransform.py:369
msgid ""
@@ -2294,14 +2294,14 @@ msgstr ""
"Если не проверить, то буфер будет следовать точной геометрии\n"
"буферизованной формы."
-#: appEditors/appGeoEditor.py:930 appEditors/FlatCAMGrbEditor.py:5623
+#: appEditors/AppGeoEditor.py:930 appEditors/AppGerberEditor.py:5623
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:226
#: appTools/ToolDistance.py:505 appTools/ToolDistanceMin.py:286
#: appTools/ToolTransform.py:377
msgid "Distance"
msgstr "Расстояние"
-#: appEditors/appGeoEditor.py:932 appEditors/FlatCAMGrbEditor.py:5625
+#: appEditors/AppGeoEditor.py:932 appEditors/AppGerberEditor.py:5625
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:228
#: appTools/ToolTransform.py:379
msgid ""
@@ -2315,12 +2315,12 @@ msgstr ""
"Каждый геометрический элемент объекта будет увеличен\n"
"или уменьшается с помощью \"расстояния\"."
-#: appEditors/appGeoEditor.py:944 appEditors/FlatCAMGrbEditor.py:5637
+#: appEditors/AppGeoEditor.py:944 appEditors/AppGerberEditor.py:5637
#: appTools/ToolTransform.py:391
msgid "Buffer D"
msgstr "Буфер D"
-#: appEditors/appGeoEditor.py:946 appEditors/FlatCAMGrbEditor.py:5639
+#: appEditors/AppGeoEditor.py:946 appEditors/AppGerberEditor.py:5639
#: appTools/ToolTransform.py:393
msgid ""
"Create the buffer effect on each geometry,\n"
@@ -2329,7 +2329,7 @@ msgstr ""
"Создаёт буферный эффект для каждой геометрии,\n"
"элемента из выбранного объекта, используя расстояние."
-#: appEditors/appGeoEditor.py:957 appEditors/FlatCAMGrbEditor.py:5650
+#: appEditors/AppGeoEditor.py:957 appEditors/AppGerberEditor.py:5650
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:245
#: appTools/ToolTransform.py:404
msgid ""
@@ -2345,12 +2345,12 @@ msgstr ""
"или уменьшен, чтобы соответствовать \"Значению\". Значение в процентах\n"
"исходного размера."
-#: appEditors/appGeoEditor.py:970 appEditors/FlatCAMGrbEditor.py:5663
+#: appEditors/AppGeoEditor.py:970 appEditors/AppGerberEditor.py:5663
#: appTools/ToolTransform.py:417
msgid "Buffer F"
msgstr "Буфер F"
-#: appEditors/appGeoEditor.py:972 appEditors/FlatCAMGrbEditor.py:5665
+#: appEditors/AppGeoEditor.py:972 appEditors/AppGerberEditor.py:5665
#: appTools/ToolTransform.py:419
msgid ""
"Create the buffer effect on each geometry,\n"
@@ -2359,7 +2359,7 @@ msgstr ""
"Создаёт буферный эффект для каждой геометрии,\n"
"элемента из выбранного объекта, используя коэффициент."
-#: appEditors/appGeoEditor.py:1043 appEditors/FlatCAMGrbEditor.py:5736
+#: appEditors/AppGeoEditor.py:1043 appEditors/AppGerberEditor.py:5736
#: appGUI/ObjectUI.py:1103 appGUI/ObjectUI.py:1958
#: appGUI/preferences/tools/Tools2CalPrefGroupUI.py:48
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
@@ -2370,328 +2370,328 @@ msgstr ""
msgid "Object"
msgstr "Объект"
-#: appEditors/appGeoEditor.py:1107 appEditors/appGeoEditor.py:1130
-#: appEditors/appGeoEditor.py:1276 appEditors/appGeoEditor.py:1301
-#: appEditors/appGeoEditor.py:1335 appEditors/appGeoEditor.py:1370
-#: appEditors/appGeoEditor.py:1401 appEditors/FlatCAMGrbEditor.py:5800
-#: appEditors/FlatCAMGrbEditor.py:5823 appEditors/FlatCAMGrbEditor.py:5968
-#: appEditors/FlatCAMGrbEditor.py:6001 appEditors/FlatCAMGrbEditor.py:6044
-#: appEditors/FlatCAMGrbEditor.py:6085 appEditors/FlatCAMGrbEditor.py:6121
+#: appEditors/AppGeoEditor.py:1107 appEditors/AppGeoEditor.py:1130
+#: appEditors/AppGeoEditor.py:1276 appEditors/AppGeoEditor.py:1301
+#: appEditors/AppGeoEditor.py:1335 appEditors/AppGeoEditor.py:1370
+#: appEditors/AppGeoEditor.py:1401 appEditors/AppGerberEditor.py:5800
+#: appEditors/AppGerberEditor.py:5823 appEditors/AppGerberEditor.py:5968
+#: appEditors/AppGerberEditor.py:6001 appEditors/AppGerberEditor.py:6044
+#: appEditors/AppGerberEditor.py:6085 appEditors/AppGerberEditor.py:6121
msgid "No shape selected."
msgstr "Фигура не выбрана."
-#: appEditors/appGeoEditor.py:1115 appEditors/FlatCAMGrbEditor.py:5808
+#: appEditors/AppGeoEditor.py:1115 appEditors/AppGerberEditor.py:5808
#: appTools/ToolTransform.py:585
msgid "Incorrect format for Point value. Needs format X,Y"
msgstr "Неправильный формат для значения точки. Требуется формат X,Y"
-#: appEditors/appGeoEditor.py:1140 appEditors/FlatCAMGrbEditor.py:5833
+#: appEditors/AppGeoEditor.py:1140 appEditors/AppGerberEditor.py:5833
#: appTools/ToolTransform.py:602
msgid "Rotate transformation can not be done for a value of 0."
msgstr "Трансформация поворота не может быть выполнена для значения 0."
-#: appEditors/appGeoEditor.py:1198 appEditors/appGeoEditor.py:1219
-#: appEditors/FlatCAMGrbEditor.py:5891 appEditors/FlatCAMGrbEditor.py:5912
+#: appEditors/AppGeoEditor.py:1198 appEditors/AppGeoEditor.py:1219
+#: appEditors/AppGerberEditor.py:5891 appEditors/AppGerberEditor.py:5912
#: appTools/ToolTransform.py:660 appTools/ToolTransform.py:681
msgid "Scale transformation can not be done for a factor of 0 or 1."
msgstr ""
"Преобразование масштаба не может быть выполнено с коэффициентом 0 или 1."
-#: appEditors/appGeoEditor.py:1232 appEditors/appGeoEditor.py:1241
-#: appEditors/FlatCAMGrbEditor.py:5925 appEditors/FlatCAMGrbEditor.py:5934
+#: appEditors/AppGeoEditor.py:1232 appEditors/AppGeoEditor.py:1241
+#: appEditors/AppGerberEditor.py:5925 appEditors/AppGerberEditor.py:5934
#: appTools/ToolTransform.py:694 appTools/ToolTransform.py:703
msgid "Offset transformation can not be done for a value of 0."
msgstr "Трансформация смещения не может быть выполнена для значения 0."
-#: appEditors/appGeoEditor.py:1271 appEditors/FlatCAMGrbEditor.py:5971
+#: appEditors/AppGeoEditor.py:1271 appEditors/AppGerberEditor.py:5971
#: appTools/ToolTransform.py:731
msgid "Appying Rotate"
msgstr "Применение поворота"
-#: appEditors/appGeoEditor.py:1284 appEditors/FlatCAMGrbEditor.py:5983
+#: appEditors/AppGeoEditor.py:1284 appEditors/AppGerberEditor.py:5983
msgid "Done. Rotate completed."
msgstr "Готово. Поворот выполнен."
-#: appEditors/appGeoEditor.py:1286
+#: appEditors/AppGeoEditor.py:1286
msgid "Rotation action was not executed"
msgstr "Вращение не было выполнено"
-#: appEditors/appGeoEditor.py:1304 appEditors/FlatCAMGrbEditor.py:6004
+#: appEditors/AppGeoEditor.py:1304 appEditors/AppGerberEditor.py:6004
#: appTools/ToolTransform.py:757
msgid "Applying Flip"
msgstr "Применение отражения"
-#: appEditors/appGeoEditor.py:1312 appEditors/FlatCAMGrbEditor.py:6016
+#: appEditors/AppGeoEditor.py:1312 appEditors/AppGerberEditor.py:6016
#: appTools/ToolTransform.py:774
msgid "Flip on the Y axis done"
msgstr "Отражение по оси Y завершено"
-#: appEditors/appGeoEditor.py:1315 appEditors/FlatCAMGrbEditor.py:6024
+#: appEditors/AppGeoEditor.py:1315 appEditors/AppGerberEditor.py:6024
#: appTools/ToolTransform.py:783
msgid "Flip on the X axis done"
msgstr "Отражение по оси Х завершёно"
-#: appEditors/appGeoEditor.py:1319
+#: appEditors/AppGeoEditor.py:1319
msgid "Flip action was not executed"
msgstr "Операция переворота не была выполнена"
-#: appEditors/appGeoEditor.py:1338 appEditors/FlatCAMGrbEditor.py:6047
+#: appEditors/AppGeoEditor.py:1338 appEditors/AppGerberEditor.py:6047
#: appTools/ToolTransform.py:804
msgid "Applying Skew"
msgstr "Применение наклона"
-#: appEditors/appGeoEditor.py:1347 appEditors/FlatCAMGrbEditor.py:6063
+#: appEditors/AppGeoEditor.py:1347 appEditors/AppGerberEditor.py:6063
msgid "Skew on the X axis done"
msgstr "Наклон по оси X выполнен"
-#: appEditors/appGeoEditor.py:1349 appEditors/FlatCAMGrbEditor.py:6065
+#: appEditors/AppGeoEditor.py:1349 appEditors/AppGerberEditor.py:6065
msgid "Skew on the Y axis done"
msgstr "Наклон по оси Y выполнен"
-#: appEditors/appGeoEditor.py:1352
+#: appEditors/AppGeoEditor.py:1352
msgid "Skew action was not executed"
msgstr "Наклон не был выполнен"
-#: appEditors/appGeoEditor.py:1373 appEditors/FlatCAMGrbEditor.py:6088
+#: appEditors/AppGeoEditor.py:1373 appEditors/AppGerberEditor.py:6088
#: appTools/ToolTransform.py:831
msgid "Applying Scale"
msgstr "Применение масштабирования"
-#: appEditors/appGeoEditor.py:1382 appEditors/FlatCAMGrbEditor.py:6101
+#: appEditors/AppGeoEditor.py:1382 appEditors/AppGerberEditor.py:6101
msgid "Scale on the X axis done"
msgstr "Масштабирование по оси X выполнено"
-#: appEditors/appGeoEditor.py:1384 appEditors/FlatCAMGrbEditor.py:6103
+#: appEditors/AppGeoEditor.py:1384 appEditors/AppGerberEditor.py:6103
msgid "Scale on the Y axis done"
msgstr "Масштабирование по оси Y выполнено"
-#: appEditors/appGeoEditor.py:1386
+#: appEditors/AppGeoEditor.py:1386
msgid "Scale action was not executed"
msgstr "Операция масштабирования не была выполнена"
-#: appEditors/appGeoEditor.py:1404 appEditors/FlatCAMGrbEditor.py:6124
+#: appEditors/AppGeoEditor.py:1404 appEditors/AppGerberEditor.py:6124
#: appTools/ToolTransform.py:859
msgid "Applying Offset"
msgstr "Применение смещения"
-#: appEditors/appGeoEditor.py:1414 appEditors/FlatCAMGrbEditor.py:6145
+#: appEditors/AppGeoEditor.py:1414 appEditors/AppGerberEditor.py:6145
msgid "Offset on the X axis done"
msgstr "Смещение формы по оси X выполнено"
-#: appEditors/appGeoEditor.py:1416 appEditors/FlatCAMGrbEditor.py:6147
+#: appEditors/AppGeoEditor.py:1416 appEditors/AppGerberEditor.py:6147
msgid "Offset on the Y axis done"
msgstr "Смещение формы по оси Y выполнено"
-#: appEditors/appGeoEditor.py:1419
+#: appEditors/AppGeoEditor.py:1419
msgid "Offset action was not executed"
msgstr "Операция смещения не была выполнена"
-#: appEditors/appGeoEditor.py:1426 appEditors/FlatCAMGrbEditor.py:6157
+#: appEditors/AppGeoEditor.py:1426 appEditors/AppGerberEditor.py:6157
msgid "No shape selected"
msgstr "Фигура не выбрана"
-#: appEditors/appGeoEditor.py:1429 appEditors/FlatCAMGrbEditor.py:6160
+#: appEditors/AppGeoEditor.py:1429 appEditors/AppGerberEditor.py:6160
#: appTools/ToolTransform.py:889
msgid "Applying Buffer"
msgstr "Применение буфера"
-#: appEditors/appGeoEditor.py:1436 appEditors/FlatCAMGrbEditor.py:6182
+#: appEditors/AppGeoEditor.py:1436 appEditors/AppGerberEditor.py:6182
#: appTools/ToolTransform.py:910
msgid "Buffer done"
msgstr "Буфер готов"
-#: appEditors/appGeoEditor.py:1440 appEditors/FlatCAMGrbEditor.py:6186
+#: appEditors/AppGeoEditor.py:1440 appEditors/AppGerberEditor.py:6186
#: appTools/ToolTransform.py:879 appTools/ToolTransform.py:915
msgid "Action was not executed, due of"
msgstr "Действие не было выполнено, в связи с"
-#: appEditors/appGeoEditor.py:1444 appEditors/FlatCAMGrbEditor.py:6190
+#: appEditors/AppGeoEditor.py:1444 appEditors/AppGerberEditor.py:6190
msgid "Rotate ..."
msgstr "Поворот ..."
-#: appEditors/appGeoEditor.py:1445 appEditors/appGeoEditor.py:1494
-#: appEditors/appGeoEditor.py:1509 appEditors/FlatCAMGrbEditor.py:6191
-#: appEditors/FlatCAMGrbEditor.py:6240 appEditors/FlatCAMGrbEditor.py:6255
+#: appEditors/AppGeoEditor.py:1445 appEditors/AppGeoEditor.py:1494
+#: appEditors/AppGeoEditor.py:1509 appEditors/AppGerberEditor.py:6191
+#: appEditors/AppGerberEditor.py:6240 appEditors/AppGerberEditor.py:6255
msgid "Enter an Angle Value (degrees)"
msgstr "Введите значение угла (градусы)"
-#: appEditors/appGeoEditor.py:1453 appEditors/FlatCAMGrbEditor.py:6199
+#: appEditors/AppGeoEditor.py:1453 appEditors/AppGerberEditor.py:6199
msgid "Geometry shape rotate done"
msgstr "Вращение фигуры выполнено"
-#: appEditors/appGeoEditor.py:1456 appEditors/FlatCAMGrbEditor.py:6202
+#: appEditors/AppGeoEditor.py:1456 appEditors/AppGerberEditor.py:6202
msgid "Geometry shape rotate cancelled"
msgstr "Вращение фигуры отменено"
-#: appEditors/appGeoEditor.py:1461 appEditors/FlatCAMGrbEditor.py:6207
+#: appEditors/AppGeoEditor.py:1461 appEditors/AppGerberEditor.py:6207
msgid "Offset on X axis ..."
msgstr "Смещение по оси X ..."
-#: appEditors/appGeoEditor.py:1462 appEditors/appGeoEditor.py:1479
-#: appEditors/FlatCAMGrbEditor.py:6208 appEditors/FlatCAMGrbEditor.py:6225
+#: appEditors/AppGeoEditor.py:1462 appEditors/AppGeoEditor.py:1479
+#: appEditors/AppGerberEditor.py:6208 appEditors/AppGerberEditor.py:6225
msgid "Enter a distance Value"
msgstr "Введите значение расстояния"
-#: appEditors/appGeoEditor.py:1470 appEditors/FlatCAMGrbEditor.py:6216
+#: appEditors/AppGeoEditor.py:1470 appEditors/AppGerberEditor.py:6216
msgid "Geometry shape offset on X axis done"
msgstr "Смещение формы по оси X выполнено"
-#: appEditors/appGeoEditor.py:1473 appEditors/FlatCAMGrbEditor.py:6219
+#: appEditors/AppGeoEditor.py:1473 appEditors/AppGerberEditor.py:6219
msgid "Geometry shape offset X cancelled"
msgstr "Смещение формы по оси X отменено"
-#: appEditors/appGeoEditor.py:1478 appEditors/FlatCAMGrbEditor.py:6224
+#: appEditors/AppGeoEditor.py:1478 appEditors/AppGerberEditor.py:6224
msgid "Offset on Y axis ..."
msgstr "Смещение по оси Y ..."
-#: appEditors/appGeoEditor.py:1487 appEditors/FlatCAMGrbEditor.py:6233
+#: appEditors/AppGeoEditor.py:1487 appEditors/AppGerberEditor.py:6233
msgid "Geometry shape offset on Y axis done"
msgstr "Смещение формы по оси Y выполнено"
-#: appEditors/appGeoEditor.py:1490
+#: appEditors/AppGeoEditor.py:1490
msgid "Geometry shape offset on Y axis canceled"
msgstr "Смещение формы по оси Y отменено"
-#: appEditors/appGeoEditor.py:1493 appEditors/FlatCAMGrbEditor.py:6239
+#: appEditors/AppGeoEditor.py:1493 appEditors/AppGerberEditor.py:6239
msgid "Skew on X axis ..."
msgstr "Наклон по оси X ..."
-#: appEditors/appGeoEditor.py:1502 appEditors/FlatCAMGrbEditor.py:6248
+#: appEditors/AppGeoEditor.py:1502 appEditors/AppGerberEditor.py:6248
msgid "Geometry shape skew on X axis done"
msgstr "Наклон формы по оси X выполнен"
-#: appEditors/appGeoEditor.py:1505
+#: appEditors/AppGeoEditor.py:1505
msgid "Geometry shape skew on X axis canceled"
msgstr "Наклон формы по оси X отменён"
-#: appEditors/appGeoEditor.py:1508 appEditors/FlatCAMGrbEditor.py:6254
+#: appEditors/AppGeoEditor.py:1508 appEditors/AppGerberEditor.py:6254
msgid "Skew on Y axis ..."
msgstr "Наклон по оси Y ..."
-#: appEditors/appGeoEditor.py:1517 appEditors/FlatCAMGrbEditor.py:6263
+#: appEditors/AppGeoEditor.py:1517 appEditors/AppGerberEditor.py:6263
msgid "Geometry shape skew on Y axis done"
msgstr "Наклон формы по оси Y выполнен"
-#: appEditors/appGeoEditor.py:1520
+#: appEditors/AppGeoEditor.py:1520
msgid "Geometry shape skew on Y axis canceled"
msgstr "Наклон формы по оси Y отменён"
-#: appEditors/appGeoEditor.py:1950 appEditors/appGeoEditor.py:2021
-#: appEditors/FlatCAMGrbEditor.py:1444 appEditors/FlatCAMGrbEditor.py:1522
+#: appEditors/AppGeoEditor.py:1950 appEditors/AppGeoEditor.py:2021
+#: appEditors/AppGerberEditor.py:1444 appEditors/AppGerberEditor.py:1522
msgid "Click on Center point ..."
msgstr "Нажмите на центральную точку ..."
-#: appEditors/appGeoEditor.py:1963 appEditors/FlatCAMGrbEditor.py:1454
+#: appEditors/AppGeoEditor.py:1963 appEditors/AppGerberEditor.py:1454
msgid "Click on Perimeter point to complete ..."
msgstr "Для завершения щелкните по периметру ..."
-#: appEditors/appGeoEditor.py:1995
+#: appEditors/AppGeoEditor.py:1995
msgid "Done. Adding Circle completed."
msgstr "Готово. Добавление круга завершено."
-#: appEditors/appGeoEditor.py:2049 appEditors/FlatCAMGrbEditor.py:1555
+#: appEditors/AppGeoEditor.py:2049 appEditors/AppGerberEditor.py:1555
msgid "Click on Start point ..."
msgstr "Нажмите на точку начала отсчета..."
-#: appEditors/appGeoEditor.py:2051 appEditors/FlatCAMGrbEditor.py:1557
+#: appEditors/AppGeoEditor.py:2051 appEditors/AppGerberEditor.py:1557
msgid "Click on Point3 ..."
msgstr "Нажмите на 3-ю точку ..."
-#: appEditors/appGeoEditor.py:2053 appEditors/FlatCAMGrbEditor.py:1559
+#: appEditors/AppGeoEditor.py:2053 appEditors/AppGerberEditor.py:1559
msgid "Click on Stop point ..."
msgstr "Нажмите на конечную точку ..."
-#: appEditors/appGeoEditor.py:2058 appEditors/FlatCAMGrbEditor.py:1564
+#: appEditors/AppGeoEditor.py:2058 appEditors/AppGerberEditor.py:1564
msgid "Click on Stop point to complete ..."
msgstr "Нажмите на конечную точку для завершения ..."
-#: appEditors/appGeoEditor.py:2060 appEditors/FlatCAMGrbEditor.py:1566
+#: appEditors/AppGeoEditor.py:2060 appEditors/AppGerberEditor.py:1566
msgid "Click on Point2 to complete ..."
msgstr "Нажмите на 2-ю точку для завершения ..."
-#: appEditors/appGeoEditor.py:2062 appEditors/FlatCAMGrbEditor.py:1568
+#: appEditors/AppGeoEditor.py:2062 appEditors/AppGerberEditor.py:1568
msgid "Click on Center point to complete ..."
msgstr "Нажмите на центральную точку для завершения..."
-#: appEditors/appGeoEditor.py:2074
+#: appEditors/AppGeoEditor.py:2074
#, python-format
msgid "Direction: %s"
msgstr "Направление: %s"
-#: appEditors/appGeoEditor.py:2088 appEditors/FlatCAMGrbEditor.py:1594
+#: appEditors/AppGeoEditor.py:2088 appEditors/AppGerberEditor.py:1594
msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
msgstr "Режим: Старт -> Стоп -> Центр. Нажмите на начальную точку ..."
-#: appEditors/appGeoEditor.py:2091 appEditors/FlatCAMGrbEditor.py:1597
+#: appEditors/AppGeoEditor.py:2091 appEditors/AppGerberEditor.py:1597
msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
msgstr "Режим: Точка1 -> Точка3 -> Точка2. Нажмите на Точку1 ..."
-#: appEditors/appGeoEditor.py:2094 appEditors/FlatCAMGrbEditor.py:1600
+#: appEditors/AppGeoEditor.py:2094 appEditors/AppGerberEditor.py:1600
msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
msgstr "Режим: Центр -> Старт -> Стоп. Нажмите на центральную точку ..."
-#: appEditors/appGeoEditor.py:2235
+#: appEditors/AppGeoEditor.py:2235
msgid "Done. Arc completed."
msgstr "Готово. Дуга завершена."
-#: appEditors/appGeoEditor.py:2266 appEditors/appGeoEditor.py:2339
+#: appEditors/AppGeoEditor.py:2266 appEditors/AppGeoEditor.py:2339
msgid "Click on 1st corner ..."
msgstr "Нажмите на 1-ый угол ..."
-#: appEditors/appGeoEditor.py:2278
+#: appEditors/AppGeoEditor.py:2278
msgid "Click on opposite corner to complete ..."
msgstr "Нажмите на противоположном углу для завершения ..."
-#: appEditors/appGeoEditor.py:2308
+#: appEditors/AppGeoEditor.py:2308
msgid "Done. Rectangle completed."
msgstr "Готово. Прямоугольник завершен."
-#: appEditors/appGeoEditor.py:2383
+#: appEditors/AppGeoEditor.py:2383
msgid "Done. Polygon completed."
msgstr "Готово. Полигон завершен."
-#: appEditors/appGeoEditor.py:2397 appEditors/appGeoEditor.py:2462
-#: appEditors/FlatCAMGrbEditor.py:1102 appEditors/FlatCAMGrbEditor.py:1322
+#: appEditors/AppGeoEditor.py:2397 appEditors/AppGeoEditor.py:2462
+#: appEditors/AppGerberEditor.py:1102 appEditors/AppGerberEditor.py:1322
msgid "Backtracked one point ..."
msgstr "Отступ на одну точку ..."
-#: appEditors/appGeoEditor.py:2440
+#: appEditors/AppGeoEditor.py:2440
msgid "Done. Path completed."
msgstr "Готово. Путь завершен."
-#: appEditors/appGeoEditor.py:2599
+#: appEditors/AppGeoEditor.py:2599
msgid "No shape selected. Select a shape to explode"
msgstr "Фигура не выбрана. Выберите фигуру для разделения"
-#: appEditors/appGeoEditor.py:2632
+#: appEditors/AppGeoEditor.py:2632
msgid "Done. Polygons exploded into lines."
msgstr "Готово. Полигоны разделены на линии."
-#: appEditors/appGeoEditor.py:2664
+#: appEditors/AppGeoEditor.py:2664
msgid "MOVE: No shape selected. Select a shape to move"
msgstr "ПЕРЕМЕЩЕНИЕ: Фигура не выбрана. Выберите фигуру для перемещения"
-#: appEditors/appGeoEditor.py:2667 appEditors/appGeoEditor.py:2687
+#: appEditors/AppGeoEditor.py:2667 appEditors/AppGeoEditor.py:2687
msgid " MOVE: Click on reference point ..."
msgstr " Перемещение: Нажмите на исходную точку ..."
-#: appEditors/appGeoEditor.py:2672
+#: appEditors/AppGeoEditor.py:2672
msgid " Click on destination point ..."
msgstr " Нажмите на конечную точку ..."
-#: appEditors/appGeoEditor.py:2712
+#: appEditors/AppGeoEditor.py:2712
msgid "Done. Geometry(s) Move completed."
msgstr "Готово. Перемещение Geometry завершено."
-#: appEditors/appGeoEditor.py:2845
+#: appEditors/AppGeoEditor.py:2845
msgid "Done. Geometry(s) Copy completed."
msgstr "Готово. Копирование Geometry завершено."
-#: appEditors/appGeoEditor.py:2876 appEditors/FlatCAMGrbEditor.py:897
+#: appEditors/AppGeoEditor.py:2876 appEditors/AppGerberEditor.py:897
msgid "Click on 1st point ..."
msgstr "Нажмите на 1-й точке ..."
-#: appEditors/appGeoEditor.py:2900
+#: appEditors/AppGeoEditor.py:2900
msgid ""
"Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
"Error"
@@ -2699,83 +2699,83 @@ msgstr ""
"Шрифт не поддерживается. Поддерживаются только обычный, полужирный, курсив и "
"полужирный курсив. Ошибка"
-#: appEditors/appGeoEditor.py:2908
+#: appEditors/AppGeoEditor.py:2908
msgid "No text to add."
msgstr "Нет текста для добавления."
-#: appEditors/appGeoEditor.py:2918
+#: appEditors/AppGeoEditor.py:2918
msgid " Done. Adding Text completed."
msgstr " Готово. Добавление текста завершено."
-#: appEditors/appGeoEditor.py:2955
+#: appEditors/AppGeoEditor.py:2955
msgid "Create buffer geometry ..."
msgstr "Создание геометрии буфера ..."
-#: appEditors/appGeoEditor.py:2990 appEditors/FlatCAMGrbEditor.py:5153
+#: appEditors/AppGeoEditor.py:2990 appEditors/AppGerberEditor.py:5153
msgid "Done. Buffer Tool completed."
msgstr "Готово. Создание буфера завершено."
-#: appEditors/appGeoEditor.py:3018
+#: appEditors/AppGeoEditor.py:3018
msgid "Done. Buffer Int Tool completed."
msgstr "Готово. Внутренний буфер создан."
-#: appEditors/appGeoEditor.py:3046
+#: appEditors/AppGeoEditor.py:3046
msgid "Done. Buffer Ext Tool completed."
msgstr "Готово. Внешний буфер создан."
-#: appEditors/appGeoEditor.py:3095 appEditors/FlatCAMGrbEditor.py:2160
+#: appEditors/AppGeoEditor.py:3095 appEditors/AppGerberEditor.py:2160
msgid "Select a shape to act as deletion area ..."
msgstr "Выберите фигуру в качестве области для удаления ..."
-#: appEditors/appGeoEditor.py:3097 appEditors/appGeoEditor.py:3123
-#: appEditors/appGeoEditor.py:3129 appEditors/FlatCAMGrbEditor.py:2162
+#: appEditors/AppGeoEditor.py:3097 appEditors/AppGeoEditor.py:3123
+#: appEditors/AppGeoEditor.py:3129 appEditors/AppGerberEditor.py:2162
msgid "Click to pick-up the erase shape..."
msgstr "Кликните, что бы выбрать фигуру для стирания ..."
-#: appEditors/appGeoEditor.py:3133 appEditors/FlatCAMGrbEditor.py:2221
+#: appEditors/AppGeoEditor.py:3133 appEditors/AppGerberEditor.py:2221
msgid "Click to erase ..."
msgstr "Нажмите для очистки ..."
-#: appEditors/appGeoEditor.py:3162 appEditors/FlatCAMGrbEditor.py:2254
+#: appEditors/AppGeoEditor.py:3162 appEditors/AppGerberEditor.py:2254
msgid "Done. Eraser tool action completed."
msgstr "Готово. Действие инструмента стирания завершено.."
-#: appEditors/appGeoEditor.py:3212
+#: appEditors/AppGeoEditor.py:3212
msgid "Create Paint geometry ..."
msgstr "Создать геометрию окрашивания ..."
-#: appEditors/appGeoEditor.py:3225 appEditors/FlatCAMGrbEditor.py:2417
+#: appEditors/AppGeoEditor.py:3225 appEditors/AppGerberEditor.py:2417
msgid "Shape transformations ..."
msgstr "Преобразования фигуры ..."
-#: appEditors/appGeoEditor.py:3281
+#: appEditors/AppGeoEditor.py:3281
#: appGUI/preferences/geometry/GeometryEditorPrefGroupUI.py:27
msgid "Geometry Editor"
msgstr "Редактор Geometry"
-#: appEditors/appGeoEditor.py:3287 appEditors/FlatCAMGrbEditor.py:2495
-#: appEditors/FlatCAMGrbEditor.py:3951 appGUI/ObjectUI.py:282
+#: appEditors/AppGeoEditor.py:3287 appEditors/AppGerberEditor.py:2495
+#: appEditors/AppGerberEditor.py:3951 appGUI/ObjectUI.py:282
#: appGUI/ObjectUI.py:1394 appGUI/ObjectUI.py:2256 appTools/ToolCutOut.py:95
#: appTools/ToolTransform.py:92
msgid "Type"
msgstr "Тип"
-#: appEditors/appGeoEditor.py:3287 appGUI/ObjectUI.py:221
+#: appEditors/AppGeoEditor.py:3287 appGUI/ObjectUI.py:221
#: appGUI/ObjectUI.py:521 appGUI/ObjectUI.py:1330 appGUI/ObjectUI.py:2165
#: appGUI/ObjectUI.py:2469 appGUI/ObjectUI.py:2536
#: appTools/ToolCalibration.py:234 appTools/ToolFiducials.py:70
msgid "Name"
msgstr "Имя"
-#: appEditors/appGeoEditor.py:3539
+#: appEditors/AppGeoEditor.py:3539
msgid "Ring"
msgstr "Кольцо"
-#: appEditors/appGeoEditor.py:3541
+#: appEditors/AppGeoEditor.py:3541
msgid "Line"
msgstr "Линия"
-#: appEditors/appGeoEditor.py:3543 appGUI/MainGUI.py:1446
+#: appEditors/AppGeoEditor.py:3543 appGUI/MainGUI.py:1446
#: appGUI/ObjectUI.py:1150 appGUI/ObjectUI.py:2005
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:226
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:299
@@ -2786,45 +2786,45 @@ msgstr "Линия"
msgid "Polygon"
msgstr "Полигон"
-#: appEditors/appGeoEditor.py:3545
+#: appEditors/AppGeoEditor.py:3545
msgid "Multi-Line"
msgstr "Multi-Line"
-#: appEditors/appGeoEditor.py:3547
+#: appEditors/AppGeoEditor.py:3547
msgid "Multi-Polygon"
msgstr "Multi-Polygon"
-#: appEditors/appGeoEditor.py:3554
+#: appEditors/AppGeoEditor.py:3554
msgid "Geo Elem"
msgstr "Элемент Geo"
-#: appEditors/appGeoEditor.py:4007
+#: appEditors/AppGeoEditor.py:4007
msgid "Editing MultiGeo Geometry, tool"
msgstr "Редактирование MultiGeo Geometry, инструментом"
-#: appEditors/appGeoEditor.py:4009
+#: appEditors/AppGeoEditor.py:4009
msgid "with diameter"
msgstr "с диаметром"
-#: appEditors/appGeoEditor.py:4081
+#: appEditors/AppGeoEditor.py:4081
msgid "Grid Snap enabled."
msgstr "Привязка к сетке включена."
-#: appEditors/appGeoEditor.py:4085
+#: appEditors/AppGeoEditor.py:4085
msgid "Grid Snap disabled."
msgstr "Привязка к сетке отключена."
-#: appEditors/appGeoEditor.py:4446 appGUI/MainGUI.py:3046
+#: appEditors/AppGeoEditor.py:4446 appGUI/MainGUI.py:3046
#: appGUI/MainGUI.py:3092 appGUI/MainGUI.py:3110 appGUI/MainGUI.py:3254
#: appGUI/MainGUI.py:3293 appGUI/MainGUI.py:3305 appGUI/MainGUI.py:3322
msgid "Click on target point."
msgstr "Нажмите на целевой точке."
-#: appEditors/appGeoEditor.py:4762 appEditors/appGeoEditor.py:4797
+#: appEditors/AppGeoEditor.py:4762 appEditors/AppGeoEditor.py:4797
msgid "A selection of at least 2 geo items is required to do Intersection."
msgstr "Выберите по крайней мере 2 элемента геометрии для пересечения."
-#: appEditors/appGeoEditor.py:4883 appEditors/appGeoEditor.py:4987
+#: appEditors/AppGeoEditor.py:4883 appEditors/AppGeoEditor.py:4987
msgid ""
"Negative buffer value is not accepted. Use Buffer interior to generate an "
"'inside' shape"
@@ -2832,54 +2832,54 @@ msgstr ""
"Отрицательное значение буфера не принимается. Используйте внутренний буфер "
"для создания \"внутри\" формы"
-#: appEditors/appGeoEditor.py:4893 appEditors/appGeoEditor.py:4946
-#: appEditors/appGeoEditor.py:4996
+#: appEditors/AppGeoEditor.py:4893 appEditors/AppGeoEditor.py:4946
+#: appEditors/AppGeoEditor.py:4996
msgid "Nothing selected for buffering."
msgstr "Ничего не выбрано для создания буфера."
-#: appEditors/appGeoEditor.py:4898 appEditors/appGeoEditor.py:4950
-#: appEditors/appGeoEditor.py:5001
+#: appEditors/AppGeoEditor.py:4898 appEditors/AppGeoEditor.py:4950
+#: appEditors/AppGeoEditor.py:5001
msgid "Invalid distance for buffering."
msgstr "Недопустимое расстояние для создания буфера."
-#: appEditors/appGeoEditor.py:4922 appEditors/appGeoEditor.py:5021
+#: appEditors/AppGeoEditor.py:4922 appEditors/AppGeoEditor.py:5021
msgid "Failed, the result is empty. Choose a different buffer value."
msgstr "Ошибка, результат нулевой. Выберите другое значение буфера."
-#: appEditors/appGeoEditor.py:4933
+#: appEditors/AppGeoEditor.py:4933
msgid "Full buffer geometry created."
msgstr "Создана геометрия полного буфера."
-#: appEditors/appGeoEditor.py:4939
+#: appEditors/AppGeoEditor.py:4939
msgid "Negative buffer value is not accepted."
msgstr "Отрицательное значение буфера не принимается."
-#: appEditors/appGeoEditor.py:4970
+#: appEditors/AppGeoEditor.py:4970
msgid "Failed, the result is empty. Choose a smaller buffer value."
msgstr "Ошибка, результат нулевой. Выберите меньшее значение буфера."
-#: appEditors/appGeoEditor.py:4980
+#: appEditors/AppGeoEditor.py:4980
msgid "Interior buffer geometry created."
msgstr "Создана геометрия внутреннего буфера."
-#: appEditors/appGeoEditor.py:5031
+#: appEditors/AppGeoEditor.py:5031
msgid "Exterior buffer geometry created."
msgstr "Создана геометрия внешнего буфера."
-#: appEditors/appGeoEditor.py:5037
+#: appEditors/AppGeoEditor.py:5037
#, python-format
msgid "Could not do Paint. Overlap value has to be less than 100%%."
msgstr "Окраска не выполнена. Значение перекрытия должно быть меньше 100%%."
-#: appEditors/appGeoEditor.py:5044
+#: appEditors/AppGeoEditor.py:5044
msgid "Nothing selected for painting."
msgstr "Ничего не выбрано для рисования."
-#: appEditors/appGeoEditor.py:5050
+#: appEditors/AppGeoEditor.py:5050
msgid "Invalid value for"
msgstr "Недопустимые значения для"
-#: appEditors/appGeoEditor.py:5109
+#: appEditors/AppGeoEditor.py:5109
msgid ""
"Could not do Paint. Try a different combination of parameters. Or a "
"different method of Paint"
@@ -2887,158 +2887,158 @@ msgstr ""
"Окраска не выполнена. Попробуйте другую комбинацию параметров или другой "
"способ рисования"
-#: appEditors/appGeoEditor.py:5120
+#: appEditors/AppGeoEditor.py:5120
msgid "Paint done."
msgstr "Окраска завершена."
-#: appEditors/FlatCAMGrbEditor.py:211
+#: appEditors/AppGerberEditor.py:211
msgid "To add an Pad first select a aperture in Aperture Table"
msgstr ""
"Чтобы добавить площадку, сначала выберите отверстие в таблице отверстий"
-#: appEditors/FlatCAMGrbEditor.py:218 appEditors/FlatCAMGrbEditor.py:418
+#: appEditors/AppGerberEditor.py:218 appEditors/AppGerberEditor.py:418
msgid "Aperture size is zero. It needs to be greater than zero."
msgstr "Размер отверстия равен нулю. Он должен быть больше нуля."
-#: appEditors/FlatCAMGrbEditor.py:371 appEditors/FlatCAMGrbEditor.py:684
+#: appEditors/AppGerberEditor.py:371 appEditors/AppGerberEditor.py:684
msgid ""
"Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
msgstr ""
"Несовместимый тип отверстия. Выберите отверстие с типом 'C', 'R' или 'O'."
-#: appEditors/FlatCAMGrbEditor.py:383
+#: appEditors/AppGerberEditor.py:383
msgid "Done. Adding Pad completed."
msgstr "Готово. Добавление площадки завершено."
-#: appEditors/FlatCAMGrbEditor.py:410
+#: appEditors/AppGerberEditor.py:410
msgid "To add an Pad Array first select a aperture in Aperture Table"
msgstr ""
"Чтобы добавить массив площадок, сначала выберите отверстие в таблице "
"отверстий"
-#: appEditors/FlatCAMGrbEditor.py:490
+#: appEditors/AppGerberEditor.py:490
msgid "Click on the Pad Circular Array Start position"
msgstr "Нажмите на начальную точку кругового массива контактных площадок"
-#: appEditors/FlatCAMGrbEditor.py:710
+#: appEditors/AppGerberEditor.py:710
msgid "Too many Pads for the selected spacing angle."
msgstr "Слишком много площадок для выбранного интервала угла."
-#: appEditors/FlatCAMGrbEditor.py:733
+#: appEditors/AppGerberEditor.py:733
msgid "Done. Pad Array added."
msgstr "Готово. Массив площадок добавлен."
-#: appEditors/FlatCAMGrbEditor.py:758
+#: appEditors/AppGerberEditor.py:758
msgid "Select shape(s) and then click ..."
msgstr "Выберите фигуры, а затем нажмите ..."
-#: appEditors/FlatCAMGrbEditor.py:770
+#: appEditors/AppGerberEditor.py:770
msgid "Failed. Nothing selected."
msgstr "Ошибка. Ничего не выбрано."
-#: appEditors/FlatCAMGrbEditor.py:786
+#: appEditors/AppGerberEditor.py:786
msgid ""
"Failed. Poligonize works only on geometries belonging to the same aperture."
msgstr ""
"Неудача. Полигонизация работает только с геометриями, принадлежащими к "
"одному отверстию."
-#: appEditors/FlatCAMGrbEditor.py:840
+#: appEditors/AppGerberEditor.py:840
msgid "Done. Poligonize completed."
msgstr "Готово. Полигонизация выполнена."
-#: appEditors/FlatCAMGrbEditor.py:895 appEditors/FlatCAMGrbEditor.py:1119
-#: appEditors/FlatCAMGrbEditor.py:1143
+#: appEditors/AppGerberEditor.py:895 appEditors/AppGerberEditor.py:1119
+#: appEditors/AppGerberEditor.py:1143
msgid "Corner Mode 1: 45 degrees ..."
msgstr "Угловой режим 1: 45 градусов ..."
-#: appEditors/FlatCAMGrbEditor.py:907 appEditors/FlatCAMGrbEditor.py:1219
+#: appEditors/AppGerberEditor.py:907 appEditors/AppGerberEditor.py:1219
msgid "Click on next Point or click Right mouse button to complete ..."
msgstr ""
"Нажмите на следующую точку или щелкните правой кнопкой мыши для "
"завершения ..."
-#: appEditors/FlatCAMGrbEditor.py:1107 appEditors/FlatCAMGrbEditor.py:1140
+#: appEditors/AppGerberEditor.py:1107 appEditors/AppGerberEditor.py:1140
msgid "Corner Mode 2: Reverse 45 degrees ..."
msgstr "Угловой режим 2: реверс 45 градусов ..."
-#: appEditors/FlatCAMGrbEditor.py:1110 appEditors/FlatCAMGrbEditor.py:1137
+#: appEditors/AppGerberEditor.py:1110 appEditors/AppGerberEditor.py:1137
msgid "Corner Mode 3: 90 degrees ..."
msgstr "Угловой режим 3: 90 градусов ..."
-#: appEditors/FlatCAMGrbEditor.py:1113 appEditors/FlatCAMGrbEditor.py:1134
+#: appEditors/AppGerberEditor.py:1113 appEditors/AppGerberEditor.py:1134
msgid "Corner Mode 4: Reverse 90 degrees ..."
msgstr "Угловой режим 4: реверс 90 градусов ..."
-#: appEditors/FlatCAMGrbEditor.py:1116 appEditors/FlatCAMGrbEditor.py:1131
+#: appEditors/AppGerberEditor.py:1116 appEditors/AppGerberEditor.py:1131
msgid "Corner Mode 5: Free angle ..."
msgstr "Угловой режим 5: свободный угол ..."
-#: appEditors/FlatCAMGrbEditor.py:1193 appEditors/FlatCAMGrbEditor.py:1358
-#: appEditors/FlatCAMGrbEditor.py:1397
+#: appEditors/AppGerberEditor.py:1193 appEditors/AppGerberEditor.py:1358
+#: appEditors/AppGerberEditor.py:1397
msgid "Track Mode 1: 45 degrees ..."
msgstr "Режим дорожки 1: 45 градусов ..."
-#: appEditors/FlatCAMGrbEditor.py:1338 appEditors/FlatCAMGrbEditor.py:1392
+#: appEditors/AppGerberEditor.py:1338 appEditors/AppGerberEditor.py:1392
msgid "Track Mode 2: Reverse 45 degrees ..."
msgstr "Режим дорожки 2: реверс 45 градусов ..."
-#: appEditors/FlatCAMGrbEditor.py:1343 appEditors/FlatCAMGrbEditor.py:1387
+#: appEditors/AppGerberEditor.py:1343 appEditors/AppGerberEditor.py:1387
msgid "Track Mode 3: 90 degrees ..."
msgstr "Режим дорожки 3: 90 градусов ..."
-#: appEditors/FlatCAMGrbEditor.py:1348 appEditors/FlatCAMGrbEditor.py:1382
+#: appEditors/AppGerberEditor.py:1348 appEditors/AppGerberEditor.py:1382
msgid "Track Mode 4: Reverse 90 degrees ..."
msgstr "Режим дорожки 4: реверс 90 градусов ..."
-#: appEditors/FlatCAMGrbEditor.py:1353 appEditors/FlatCAMGrbEditor.py:1377
+#: appEditors/AppGerberEditor.py:1353 appEditors/AppGerberEditor.py:1377
msgid "Track Mode 5: Free angle ..."
msgstr "Режим дорожки 5: свободный угол ..."
-#: appEditors/FlatCAMGrbEditor.py:1787
+#: appEditors/AppGerberEditor.py:1787
msgid "Scale the selected Gerber apertures ..."
msgstr "Масштабирование выбранных отверстий Gerber ..."
-#: appEditors/FlatCAMGrbEditor.py:1829
+#: appEditors/AppGerberEditor.py:1829
msgid "Buffer the selected apertures ..."
msgstr "Создание буфера для выбранных отверстий ..."
-#: appEditors/FlatCAMGrbEditor.py:1871
+#: appEditors/AppGerberEditor.py:1871
msgid "Mark polygon areas in the edited Gerber ..."
msgstr "Отметьте полигональные области в отредактированном Gerber ..."
-#: appEditors/FlatCAMGrbEditor.py:1937
+#: appEditors/AppGerberEditor.py:1937
msgid "Nothing selected to move"
msgstr "Отменено. Ничего не выбрано для перемещения"
-#: appEditors/FlatCAMGrbEditor.py:2062
+#: appEditors/AppGerberEditor.py:2062
msgid "Done. Apertures Move completed."
msgstr "Готово. Перемещение отверстий завершено."
-#: appEditors/FlatCAMGrbEditor.py:2144
+#: appEditors/AppGerberEditor.py:2144
msgid "Done. Apertures copied."
msgstr "Готово. Отверстия скопированы."
-#: appEditors/FlatCAMGrbEditor.py:2462 appGUI/MainGUI.py:1477
+#: appEditors/AppGerberEditor.py:2462 appGUI/MainGUI.py:1477
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:27
msgid "Gerber Editor"
msgstr "Редактор Gerber"
-#: appEditors/FlatCAMGrbEditor.py:2482 appGUI/ObjectUI.py:247
+#: appEditors/AppGerberEditor.py:2482 appGUI/ObjectUI.py:247
#: appTools/ToolProperties.py:159
msgid "Apertures"
msgstr "Oтверстие"
-#: appEditors/FlatCAMGrbEditor.py:2484 appGUI/ObjectUI.py:249
+#: appEditors/AppGerberEditor.py:2484 appGUI/ObjectUI.py:249
msgid "Apertures Table for the Gerber Object."
msgstr "Таблица отверстий для объекта Gerber."
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Code"
msgstr "Код"
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
#: appGUI/preferences/general/GeneralAPPSetGroupUI.py:103
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:167
@@ -3049,29 +3049,29 @@ msgstr "Код"
msgid "Size"
msgstr "Размер"
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Dim"
msgstr "Диаметр"
-#: appEditors/FlatCAMGrbEditor.py:2500 appGUI/ObjectUI.py:286
+#: appEditors/AppGerberEditor.py:2500 appGUI/ObjectUI.py:286
msgid "Index"
msgstr "Индекс"
-#: appEditors/FlatCAMGrbEditor.py:2502 appEditors/FlatCAMGrbEditor.py:2531
+#: appEditors/AppGerberEditor.py:2502 appEditors/AppGerberEditor.py:2531
#: appGUI/ObjectUI.py:288
msgid "Aperture Code"
msgstr "Код отверстия"
-#: appEditors/FlatCAMGrbEditor.py:2504 appGUI/ObjectUI.py:290
+#: appEditors/AppGerberEditor.py:2504 appGUI/ObjectUI.py:290
msgid "Type of aperture: circular, rectangle, macros etc"
msgstr "Тип отверстия: круг, прямоугольник, макросы и так далее"
-#: appEditors/FlatCAMGrbEditor.py:2506 appGUI/ObjectUI.py:292
+#: appEditors/AppGerberEditor.py:2506 appGUI/ObjectUI.py:292
msgid "Aperture Size:"
msgstr "Размер отверстия:"
-#: appEditors/FlatCAMGrbEditor.py:2508 appGUI/ObjectUI.py:294
+#: appEditors/AppGerberEditor.py:2508 appGUI/ObjectUI.py:294
msgid ""
"Aperture Dimensions:\n"
" - (width, height) for R, O type.\n"
@@ -3081,16 +3081,16 @@ msgstr ""
" - (ширина, высота) для типа R, O.\n"
" - (диам., nVertices) для типа P"
-#: appEditors/FlatCAMGrbEditor.py:2532
+#: appEditors/AppGerberEditor.py:2532
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:58
msgid "Code for the new aperture"
msgstr "Код для нового отверстия"
-#: appEditors/FlatCAMGrbEditor.py:2541
+#: appEditors/AppGerberEditor.py:2541
msgid "Aperture Size"
msgstr "Размер отверстия"
-#: appEditors/FlatCAMGrbEditor.py:2543
+#: appEditors/AppGerberEditor.py:2543
msgid ""
"Size for the new aperture.\n"
"If aperture type is 'R' or 'O' then\n"
@@ -3104,11 +3104,11 @@ msgstr ""
"рассчитывается как:\n"
"sqrt(ширина ** 2 + высота ** 2)"
-#: appEditors/FlatCAMGrbEditor.py:2557
+#: appEditors/AppGerberEditor.py:2557
msgid "Aperture Type"
msgstr "Тип отверстия"
-#: appEditors/FlatCAMGrbEditor.py:2559
+#: appEditors/AppGerberEditor.py:2559
msgid ""
"Select the type of new aperture. Can be:\n"
"C = circular\n"
@@ -3120,11 +3120,11 @@ msgstr ""
"R = прямоугольник\n"
"O = продолговатое"
-#: appEditors/FlatCAMGrbEditor.py:2570
+#: appEditors/AppGerberEditor.py:2570
msgid "Aperture Dim"
msgstr "Размер нового отверстия"
-#: appEditors/FlatCAMGrbEditor.py:2572
+#: appEditors/AppGerberEditor.py:2572
msgid ""
"Dimensions for the new aperture.\n"
"Active only for rectangular apertures (type R).\n"
@@ -3134,19 +3134,19 @@ msgstr ""
"Активен только для прямоугольных отверстий (тип R).\n"
"Формат (ширина, высота)"
-#: appEditors/FlatCAMGrbEditor.py:2581
+#: appEditors/AppGerberEditor.py:2581
msgid "Add/Delete Aperture"
msgstr "Добавить/Удалить отверстие"
-#: appEditors/FlatCAMGrbEditor.py:2583
+#: appEditors/AppGerberEditor.py:2583
msgid "Add/Delete an aperture in the aperture table"
msgstr "Добавляет/Удаляет отверстие в таблице отверстий"
-#: appEditors/FlatCAMGrbEditor.py:2592
+#: appEditors/AppGerberEditor.py:2592
msgid "Add a new aperture to the aperture list."
msgstr "Добавляет новое отверстие в список отверстий."
-#: appEditors/FlatCAMGrbEditor.py:2595 appEditors/FlatCAMGrbEditor.py:2743
+#: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743
#: appGUI/MainGUI.py:748 appGUI/MainGUI.py:1068 appGUI/MainGUI.py:1527
#: appGUI/MainGUI.py:2099 appGUI/MainGUI.py:4514 appGUI/ObjectUI.py:1525
#: appObjects/FlatCAMGeometry.py:563 appTools/ToolIsolation.py:298
@@ -3157,28 +3157,28 @@ msgstr "Добавляет новое отверстие в список отв
msgid "Delete"
msgstr "Удалить"
-#: appEditors/FlatCAMGrbEditor.py:2597
+#: appEditors/AppGerberEditor.py:2597
msgid "Delete a aperture in the aperture list"
msgstr "Удаляет отверстие в таблице отверстий"
-#: appEditors/FlatCAMGrbEditor.py:2614
+#: appEditors/AppGerberEditor.py:2614
msgid "Buffer Aperture"
msgstr "Буфер отверстия"
-#: appEditors/FlatCAMGrbEditor.py:2616
+#: appEditors/AppGerberEditor.py:2616
msgid "Buffer a aperture in the aperture list"
msgstr "Создаёт буфер для отверстия в списке отверстий"
-#: appEditors/FlatCAMGrbEditor.py:2629
+#: appEditors/AppGerberEditor.py:2629
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:195
msgid "Buffer distance"
msgstr "Расстояние буфера"
-#: appEditors/FlatCAMGrbEditor.py:2630
+#: appEditors/AppGerberEditor.py:2630
msgid "Buffer corner"
msgstr "Угол буфера"
-#: appEditors/FlatCAMGrbEditor.py:2632
+#: appEditors/AppGerberEditor.py:2632
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded.\n"
@@ -3192,20 +3192,20 @@ msgstr ""
"- 'Скошенный:' угол-это линия, которая непосредственно соединяет элементы, "
"встречающиеся в углу"
-#: appEditors/FlatCAMGrbEditor.py:2662
+#: appEditors/AppGerberEditor.py:2662
msgid "Scale Aperture"
msgstr "Масштабирование отверстий"
-#: appEditors/FlatCAMGrbEditor.py:2664
+#: appEditors/AppGerberEditor.py:2664
msgid "Scale a aperture in the aperture list"
msgstr "Масштабирование отверстия в списке отверстий"
-#: appEditors/FlatCAMGrbEditor.py:2672
+#: appEditors/AppGerberEditor.py:2672
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:210
msgid "Scale factor"
msgstr "Коэффициент масштабирования"
-#: appEditors/FlatCAMGrbEditor.py:2674
+#: appEditors/AppGerberEditor.py:2674
msgid ""
"The factor by which to scale the selected aperture.\n"
"Values can be between 0.0000 and 999.9999"
@@ -3213,19 +3213,19 @@ msgstr ""
"Коэффициент масштабирования выбранного отверстия.\n"
"Значения могут быть между 0.0000 и 999.9999"
-#: appEditors/FlatCAMGrbEditor.py:2702
+#: appEditors/AppGerberEditor.py:2702
msgid "Mark polygons"
msgstr "Отметить полигоны"
-#: appEditors/FlatCAMGrbEditor.py:2704
+#: appEditors/AppGerberEditor.py:2704
msgid "Mark the polygon areas."
msgstr "Отметьте полигональные области."
-#: appEditors/FlatCAMGrbEditor.py:2712
+#: appEditors/AppGerberEditor.py:2712
msgid "Area UPPER threshold"
msgstr "Верхней части порога"
-#: appEditors/FlatCAMGrbEditor.py:2714
+#: appEditors/AppGerberEditor.py:2714
msgid ""
"The threshold value, all areas less than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3233,11 +3233,11 @@ msgstr ""
"Пороговое значение, всех участков за вычетом отмеченных.\n"
"Может иметь значение от 0,0000 до 9999,9999"
-#: appEditors/FlatCAMGrbEditor.py:2721
+#: appEditors/AppGerberEditor.py:2721
msgid "Area LOWER threshold"
msgstr "Площадь НИЖНЕГО порога"
-#: appEditors/FlatCAMGrbEditor.py:2723
+#: appEditors/AppGerberEditor.py:2723
msgid ""
"The threshold value, all areas more than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3245,32 +3245,32 @@ msgstr ""
"Пороговое значение, всех участков больше отмеченых.\n"
"Может иметь значение от 0,0000 до 9999,9999"
-#: appEditors/FlatCAMGrbEditor.py:2737
+#: appEditors/AppGerberEditor.py:2737
msgid "Mark"
msgstr "Отметка"
-#: appEditors/FlatCAMGrbEditor.py:2739
+#: appEditors/AppGerberEditor.py:2739
msgid "Mark the polygons that fit within limits."
msgstr "Отмечает полигоны, которые вписываются в пределы."
-#: appEditors/FlatCAMGrbEditor.py:2745
+#: appEditors/AppGerberEditor.py:2745
msgid "Delete all the marked polygons."
msgstr "Удаление всех отмеченных полигонов."
-#: appEditors/FlatCAMGrbEditor.py:2751
+#: appEditors/AppGerberEditor.py:2751
msgid "Clear all the markings."
msgstr "Очистить все маркировки."
-#: appEditors/FlatCAMGrbEditor.py:2771 appGUI/MainGUI.py:1040
+#: appEditors/AppGerberEditor.py:2771 appGUI/MainGUI.py:1040
#: appGUI/MainGUI.py:2072 appGUI/MainGUI.py:4511
msgid "Add Pad Array"
msgstr "Добавить массив контактных площадок"
-#: appEditors/FlatCAMGrbEditor.py:2773
+#: appEditors/AppGerberEditor.py:2773
msgid "Add an array of pads (linear or circular array)"
msgstr "Добавляет массив контактных площадок (линейный или круговой массив)"
-#: appEditors/FlatCAMGrbEditor.py:2779
+#: appEditors/AppGerberEditor.py:2779
msgid ""
"Select the type of pads array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -3278,17 +3278,17 @@ msgstr ""
"Выбор типа массива контактных площадок.\n"
"Он может быть линейным X (Y) или круговым"
-#: appEditors/FlatCAMGrbEditor.py:2790
+#: appEditors/AppGerberEditor.py:2790
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:95
msgid "Nr of pads"
msgstr "Количество площадок"
-#: appEditors/FlatCAMGrbEditor.py:2792
+#: appEditors/AppGerberEditor.py:2792
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:97
msgid "Specify how many pads to be in the array."
msgstr "Укажите, сколько контактных площадок должно быть в массиве."
-#: appEditors/FlatCAMGrbEditor.py:2841
+#: appEditors/AppGerberEditor.py:2841
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -3300,13 +3300,13 @@ msgstr ""
"Минимальное значение: -359.99 градусов.\n"
"Максимальное значение: 360.00 градусов."
-#: appEditors/FlatCAMGrbEditor.py:3335 appEditors/FlatCAMGrbEditor.py:3339
+#: appEditors/AppGerberEditor.py:3335 appEditors/AppGerberEditor.py:3339
msgid "Aperture code value is missing or wrong format. Add it and retry."
msgstr ""
"Отсутствует значение кода отверстия или оно имеет неправильный формат. "
"Добавьте его и повторите попытку."
-#: appEditors/FlatCAMGrbEditor.py:3375
+#: appEditors/AppGerberEditor.py:3375
msgid ""
"Aperture dimensions value is missing or wrong format. Add it in format "
"(width, height) and retry."
@@ -3314,158 +3314,158 @@ msgstr ""
"Отсутствует значение размера отверстия или оно имеет неправильный формат. "
"Добавьте его в формате (ширина, высота) и повторите попытку."
-#: appEditors/FlatCAMGrbEditor.py:3388
+#: appEditors/AppGerberEditor.py:3388
msgid "Aperture size value is missing or wrong format. Add it and retry."
msgstr ""
"Отсутствует значение размера отверстия или оно имеет неправильный формат. "
"Добавьте его и повторите попытку."
-#: appEditors/FlatCAMGrbEditor.py:3399
+#: appEditors/AppGerberEditor.py:3399
msgid "Aperture already in the aperture table."
msgstr "Отверстие уже присутствует в таблице отверстий."
-#: appEditors/FlatCAMGrbEditor.py:3406
+#: appEditors/AppGerberEditor.py:3406
msgid "Added new aperture with code"
msgstr "Добавлено новое отверстие с кодом"
-#: appEditors/FlatCAMGrbEditor.py:3438
+#: appEditors/AppGerberEditor.py:3438
msgid " Select an aperture in Aperture Table"
msgstr " Выберите отверстие в таблице отверстий"
-#: appEditors/FlatCAMGrbEditor.py:3446
+#: appEditors/AppGerberEditor.py:3446
msgid "Select an aperture in Aperture Table -->"
msgstr "Выберите отверстие в таблице отверстий-->"
-#: appEditors/FlatCAMGrbEditor.py:3460
+#: appEditors/AppGerberEditor.py:3460
msgid "Deleted aperture with code"
msgstr "Удалено отверстие с кодом"
-#: appEditors/FlatCAMGrbEditor.py:3528
+#: appEditors/AppGerberEditor.py:3528
msgid "Dimensions need two float values separated by comma."
msgstr ""
"Размеры должны иметь два значения с плавающей запятой, разделенные запятой."
-#: appEditors/FlatCAMGrbEditor.py:3537
+#: appEditors/AppGerberEditor.py:3537
msgid "Dimensions edited."
msgstr "Размеры отредактированы."
-#: appEditors/FlatCAMGrbEditor.py:4066
+#: appEditors/AppGerberEditor.py:4066
msgid "Loading Gerber into Editor"
msgstr "Загрузка Gerber в редактор"
-#: appEditors/FlatCAMGrbEditor.py:4194
+#: appEditors/AppGerberEditor.py:4194
msgid "Setting up the UI"
msgstr "Настройка пользовательского интерфейса"
-#: appEditors/FlatCAMGrbEditor.py:4195
+#: appEditors/AppGerberEditor.py:4195
msgid "Adding geometry finished. Preparing the GUI"
msgstr ""
"Добавление геометрии закончено. Подготовка графического интерфейса "
"пользователя"
-#: appEditors/FlatCAMGrbEditor.py:4204
+#: appEditors/AppGerberEditor.py:4204
msgid "Finished loading the Gerber object into the editor."
msgstr "Завершена загрузка объекта Gerber в редактор."
-#: appEditors/FlatCAMGrbEditor.py:4345
+#: appEditors/AppGerberEditor.py:4345
msgid ""
"There are no Aperture definitions in the file. Aborting Gerber creation."
msgstr "В файле нет отверстий. Прерывание создания Gerber."
-#: appEditors/FlatCAMGrbEditor.py:4347 appObjects/AppObject.py:133
+#: appEditors/AppGerberEditor.py:4347 appObjects/AppObject.py:133
#: appObjects/FlatCAMGeometry.py:1786 appParsers/ParseExcellon.py:896
#: appTools/ToolPcbWizard.py:432 app_Main.py:8589 app_Main.py:8653
#: app_Main.py:8784 app_Main.py:8849 app_Main.py:9501
msgid "An internal error has occurred. See shell.\n"
msgstr "Произошла внутренняя ошибка. Смотрите командную строку.\n"
-#: appEditors/FlatCAMGrbEditor.py:4355
+#: appEditors/AppGerberEditor.py:4355
msgid "Creating Gerber."
msgstr "Создание Gerber."
-#: appEditors/FlatCAMGrbEditor.py:4367
+#: appEditors/AppGerberEditor.py:4367
msgid "Done. Gerber editing finished."
msgstr "Редактирование Gerber завершено."
-#: appEditors/FlatCAMGrbEditor.py:4383
+#: appEditors/AppGerberEditor.py:4383
msgid "Cancelled. No aperture is selected"
msgstr "Отмена. Нет выбранных отверстий"
-#: appEditors/FlatCAMGrbEditor.py:4538 app_Main.py:6122
+#: appEditors/AppGerberEditor.py:4538 app_Main.py:6122
msgid "Coordinates copied to clipboard."
msgstr "Координаты скопированы в буфер обмена."
-#: appEditors/FlatCAMGrbEditor.py:4985
+#: appEditors/AppGerberEditor.py:4985
msgid "Failed. No aperture geometry is selected."
msgstr "Ошибка. Не выбрана геометрия отверстий."
-#: appEditors/FlatCAMGrbEditor.py:4994 appEditors/FlatCAMGrbEditor.py:5265
+#: appEditors/AppGerberEditor.py:4994 appEditors/AppGerberEditor.py:5265
msgid "Done. Apertures geometry deleted."
msgstr "Готово. Геометрия отверстий удалена."
-#: appEditors/FlatCAMGrbEditor.py:5137
+#: appEditors/AppGerberEditor.py:5137
msgid "No aperture to buffer. Select at least one aperture and try again."
msgstr ""
"Нет отверстий для создания буфера. Выберите хотя бы одно отверстие и "
"повторите попытку."
-#: appEditors/FlatCAMGrbEditor.py:5149
+#: appEditors/AppGerberEditor.py:5149
msgid "Failed."
msgstr "Неудачно."
-#: appEditors/FlatCAMGrbEditor.py:5168
+#: appEditors/AppGerberEditor.py:5168
msgid "Scale factor value is missing or wrong format. Add it and retry."
msgstr ""
"Отсутствует значение коэффициента масштабирования или оно имеет неправильный "
"формат. Добавьте его и повторите попытку."
-#: appEditors/FlatCAMGrbEditor.py:5200
+#: appEditors/AppGerberEditor.py:5200
msgid "No aperture to scale. Select at least one aperture and try again."
msgstr ""
"Нет отверстий для масштабирования. Выберите хотя бы одно отверстие и "
"повторите попытку."
-#: appEditors/FlatCAMGrbEditor.py:5216
+#: appEditors/AppGerberEditor.py:5216
msgid "Done. Scale Tool completed."
msgstr "Готово. Масштабирование выполнено."
-#: appEditors/FlatCAMGrbEditor.py:5254
+#: appEditors/AppGerberEditor.py:5254
msgid "Polygons marked."
msgstr "Полигонов отмечено."
-#: appEditors/FlatCAMGrbEditor.py:5257
+#: appEditors/AppGerberEditor.py:5257
msgid "No polygons were marked. None fit within the limits."
msgstr "Полигоны не были отмечены. Ни один не укладывается в пределы."
-#: appEditors/FlatCAMGrbEditor.py:5985
+#: appEditors/AppGerberEditor.py:5985
msgid "Rotation action was not executed."
msgstr "Вращение не было выполнено."
-#: appEditors/FlatCAMGrbEditor.py:6027 app_Main.py:5556 app_Main.py:5604
+#: appEditors/AppGerberEditor.py:6027 app_Main.py:5556 app_Main.py:5604
msgid "Flip action was not executed."
msgstr "Операция переворота не была выполнена."
-#: appEditors/FlatCAMGrbEditor.py:6067
+#: appEditors/AppGerberEditor.py:6067
msgid "Skew action was not executed."
msgstr "Наклон не был выполнен."
-#: appEditors/FlatCAMGrbEditor.py:6106
+#: appEditors/AppGerberEditor.py:6106
msgid "Scale action was not executed."
msgstr "Операция масштабирования не была выполнена."
-#: appEditors/FlatCAMGrbEditor.py:6150
+#: appEditors/AppGerberEditor.py:6150
msgid "Offset action was not executed."
msgstr "Операция смещения не была выполнена."
-#: appEditors/FlatCAMGrbEditor.py:6236
+#: appEditors/AppGerberEditor.py:6236
msgid "Geometry shape offset Y cancelled"
msgstr "Смещение формы по оси Y отменено"
-#: appEditors/FlatCAMGrbEditor.py:6251
+#: appEditors/AppGerberEditor.py:6251
msgid "Geometry shape skew X cancelled"
msgstr "Наклон формы по оси X отменён"
-#: appEditors/FlatCAMGrbEditor.py:6266
+#: appEditors/AppGerberEditor.py:6266
msgid "Geometry shape skew Y cancelled"
msgstr "Наклон формы по оси Y отменён"
diff --git a/locale_template/strings.pot b/locale_template/strings.pot
index 331243eb..2a97dc26 100644
--- a/locale_template/strings.pot
+++ b/locale_template/strings.pot
@@ -101,8 +101,8 @@ msgid "Bookmarks"
msgstr ""
#: Bookmark.py:300 Bookmark.py:342 appDatabase.py:665 appDatabase.py:711 appDatabase.py:2279
-#: appDatabase.py:2325 appEditors/FlatCAMExcEditor.py:1023
-#: appEditors/FlatCAMExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
+#: appDatabase.py:2325 appEditors/AppExcEditor.py:1023
+#: appEditors/AppExcEditor.py:1091 appEditors/FlatCAMTextEditor.py:223
#: appGUI/MainGUI.py:2730 appGUI/MainGUI.py:2952 appGUI/MainGUI.py:3167
#: appObjects/ObjectCollection.py:127 appTools/ToolFilm.py:739 appTools/ToolFilm.py:885
#: appTools/ToolImage.py:247 appTools/ToolMove.py:269 appTools/ToolPcbWizard.py:301
@@ -164,7 +164,7 @@ msgstr ""
msgid "Zone added. Click to start adding next zone or right click to finish."
msgstr ""
-#: Common.py:322 appEditors/appGeoEditor.py:2352 appTools/ToolIsolation.py:2584
+#: Common.py:322 appEditors/AppGeoEditor.py:2352 appTools/ToolIsolation.py:2584
#: appTools/ToolNCC.py:1754 appTools/ToolPaint.py:1647
msgid "Click on next Point or click right mouse button to complete ..."
msgstr ""
@@ -258,7 +258,7 @@ msgid "Tool Name"
msgstr ""
#: appDatabase.py:161 appDatabase.py:837 appDatabase.py:1119
-#: appEditors/FlatCAMExcEditor.py:1604 appGUI/ObjectUI.py:1226 appGUI/ObjectUI.py:1480
+#: appEditors/AppExcEditor.py:1604 appGUI/ObjectUI.py:1226 appGUI/ObjectUI.py:1480
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:132 appTools/ToolIsolation.py:260
#: appTools/ToolNCC.py:278 appTools/ToolNCC.py:287 appTools/ToolPaint.py:260
msgid "Tool Dia"
@@ -717,7 +717,7 @@ msgid ""
"- Clear -> the regular non-copper clearing."
msgstr ""
-#: appDatabase.py:1427 appEditors/FlatCAMGrbEditor.py:2749 appGUI/GUIElements.py:2765
+#: appDatabase.py:1427 appEditors/AppGerberEditor.py:2749 appGUI/GUIElements.py:2765
#: appTools/ToolNCC.py:350
msgid "Clear"
msgstr ""
@@ -764,7 +764,7 @@ msgid "Conventional"
msgstr ""
#: appDatabase.py:1456 appDatabase.py:1565 appDatabase.py:1667
-#: appEditors/appGeoEditor.py:450 appGUI/preferences/tools/ToolsISOPrefGroupUI.py:167
+#: appEditors/AppGeoEditor.py:450 appGUI/preferences/tools/ToolsISOPrefGroupUI.py:167
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:182
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:163 appTools/ToolIsolation.py:336
#: appTools/ToolNCC.py:382 appTools/ToolPaint.py:328
@@ -783,7 +783,7 @@ msgid ""
"due of too many paths."
msgstr ""
-#: appDatabase.py:1477 appDatabase.py:1586 appEditors/appGeoEditor.py:470
+#: appDatabase.py:1477 appDatabase.py:1586 appEditors/AppGeoEditor.py:470
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:72
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:229
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:59
@@ -808,7 +808,7 @@ msgstr ""
msgid "Bounding box margin."
msgstr ""
-#: appDatabase.py:1490 appDatabase.py:1601 appEditors/appGeoEditor.py:484
+#: appDatabase.py:1490 appDatabase.py:1601 appEditors/AppGeoEditor.py:484
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:105
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:106
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:215
@@ -826,7 +826,7 @@ msgid ""
"- Line-based: Parallel lines."
msgstr ""
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217 appTools/ToolNCC.py:431
#: appTools/ToolNCC.py:2232 appTools/ToolNCC.py:2764 appTools/ToolNCC.py:2796
@@ -836,8 +836,8 @@ msgstr ""
msgid "Standard"
msgstr ""
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:568 appEditors/appGeoEditor.py:5091
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:568 appEditors/AppGeoEditor.py:5091
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217 appTools/ToolNCC.py:431
#: appTools/ToolNCC.py:2243 appTools/ToolNCC.py:2770 appTools/ToolNCC.py:2802
@@ -847,8 +847,8 @@ msgstr ""
msgid "Seed"
msgstr ""
-#: appDatabase.py:1500 appDatabase.py:1615 appEditors/appGeoEditor.py:498
-#: appEditors/appGeoEditor.py:5095 appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
+#: appDatabase.py:1500 appDatabase.py:1615 appEditors/AppGeoEditor.py:498
+#: appEditors/AppGeoEditor.py:5095 appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:230
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:217 appTools/ToolNCC.py:431
#: appTools/ToolNCC.py:2254 appTools/ToolPaint.py:389 appTools/ToolPaint.py:698
#: appTools/ToolPaint.py:1887 tclCommands/TclCommandCopperClear.py:130
@@ -871,7 +871,7 @@ msgstr ""
msgid "Connect"
msgstr ""
-#: appDatabase.py:1512 appDatabase.py:1629 appEditors/appGeoEditor.py:507
+#: appDatabase.py:1512 appDatabase.py:1629 appEditors/AppGeoEditor.py:507
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:239
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:226 appTools/ToolNCC.py:443
#: appTools/ToolPaint.py:403
@@ -887,7 +887,7 @@ msgstr ""
msgid "Contour"
msgstr ""
-#: appDatabase.py:1522 appDatabase.py:1636 appEditors/appGeoEditor.py:517
+#: appDatabase.py:1522 appDatabase.py:1636 appEditors/AppGeoEditor.py:517
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:248
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:234 appTools/ToolNCC.py:453
#: appTools/ToolPaint.py:410
@@ -896,8 +896,8 @@ msgid ""
"to trim rough edges."
msgstr ""
-#: appDatabase.py:1528 appEditors/appGeoEditor.py:611
-#: appEditors/FlatCAMGrbEditor.py:5304 appGUI/ObjectUI.py:143 appGUI/ObjectUI.py:1394
+#: appDatabase.py:1528 appEditors/AppGeoEditor.py:611
+#: appEditors/AppGerberEditor.py:5304 appGUI/ObjectUI.py:143 appGUI/ObjectUI.py:1394
#: appGUI/ObjectUI.py:2256 appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:255
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:183
#: appTools/ToolEtchCompensation.py:199 appTools/ToolEtchCompensation.py:207
@@ -914,7 +914,7 @@ msgid ""
"The value can be between 0 and 10 FlatCAM units."
msgstr ""
-#: appDatabase.py:1567 appEditors/appGeoEditor.py:452
+#: appDatabase.py:1567 appEditors/AppGeoEditor.py:452
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:165 appTools/ToolPaint.py:330
msgid ""
"How much (percentage) of the tool width to overlap each tool pass.\n"
@@ -926,7 +926,7 @@ msgid ""
"due of too many paths."
msgstr ""
-#: appDatabase.py:1588 appEditors/appGeoEditor.py:472
+#: appDatabase.py:1588 appEditors/AppGeoEditor.py:472
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:185 appTools/ToolPaint.py:351
msgid ""
"Distance by which to avoid\n"
@@ -1039,136 +1039,136 @@ msgid ""
"in the Tools Database."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:50 appEditors/FlatCAMExcEditor.py:74
-#: appEditors/FlatCAMExcEditor.py:168 appEditors/FlatCAMExcEditor.py:385
-#: appEditors/FlatCAMExcEditor.py:589 appEditors/FlatCAMGrbEditor.py:241
-#: appEditors/FlatCAMGrbEditor.py:248
+#: appEditors/AppExcEditor.py:50 appEditors/AppExcEditor.py:74
+#: appEditors/AppExcEditor.py:168 appEditors/AppExcEditor.py:385
+#: appEditors/AppExcEditor.py:589 appEditors/AppGerberEditor.py:241
+#: appEditors/AppGerberEditor.py:248
msgid "Click to place ..."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:58
+#: appEditors/AppExcEditor.py:58
msgid "To add a drill first select a tool"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:122
+#: appEditors/AppExcEditor.py:122
msgid "Done. Drill added."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:176
+#: appEditors/AppExcEditor.py:176
msgid "To add an Drill Array first select a tool in Tool Table"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:192 appEditors/FlatCAMExcEditor.py:415
-#: appEditors/FlatCAMExcEditor.py:636 appEditors/FlatCAMExcEditor.py:1151
-#: appEditors/FlatCAMExcEditor.py:1178 appEditors/FlatCAMGrbEditor.py:471
-#: appEditors/FlatCAMGrbEditor.py:1944 appEditors/FlatCAMGrbEditor.py:1974
+#: appEditors/AppExcEditor.py:192 appEditors/AppExcEditor.py:415
+#: appEditors/AppExcEditor.py:636 appEditors/AppExcEditor.py:1151
+#: appEditors/AppExcEditor.py:1178 appEditors/AppGerberEditor.py:471
+#: appEditors/AppGerberEditor.py:1944 appEditors/AppGerberEditor.py:1974
msgid "Click on target location ..."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:211
+#: appEditors/AppExcEditor.py:211
msgid "Click on the Drill Circular Array Start position"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:233 appEditors/FlatCAMExcEditor.py:677
-#: appEditors/FlatCAMGrbEditor.py:516
+#: appEditors/AppExcEditor.py:233 appEditors/AppExcEditor.py:677
+#: appEditors/AppGerberEditor.py:516
msgid "The value is not Float. Check for comma instead of dot separator."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:237
+#: appEditors/AppExcEditor.py:237
msgid "The value is mistyped. Check the value"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:336
+#: appEditors/AppExcEditor.py:336
msgid "Too many drills for the selected spacing angle."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:354
+#: appEditors/AppExcEditor.py:354
msgid "Done. Drill Array added."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:394
+#: appEditors/AppExcEditor.py:394
msgid "To add a slot first select a tool"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:454 appEditors/FlatCAMExcEditor.py:461
-#: appEditors/FlatCAMExcEditor.py:742 appEditors/FlatCAMExcEditor.py:749
+#: appEditors/AppExcEditor.py:454 appEditors/AppExcEditor.py:461
+#: appEditors/AppExcEditor.py:742 appEditors/AppExcEditor.py:749
msgid "Value is missing or wrong format. Add it and retry."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:559
+#: appEditors/AppExcEditor.py:559
msgid "Done. Adding Slot completed."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:597
+#: appEditors/AppExcEditor.py:597
msgid "To add an Slot Array first select a tool in Tool Table"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:655
+#: appEditors/AppExcEditor.py:655
msgid "Click on the Slot Circular Array Start position"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:680 appEditors/FlatCAMGrbEditor.py:519
+#: appEditors/AppExcEditor.py:680 appEditors/AppGerberEditor.py:519
msgid "The value is mistyped. Check the value."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:859
+#: appEditors/AppExcEditor.py:859
msgid "Too many Slots for the selected spacing angle."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:882
+#: appEditors/AppExcEditor.py:882
msgid "Done. Slot Array added."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:904
+#: appEditors/AppExcEditor.py:904
msgid "Click on the Drill(s) to resize ..."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:934
+#: appEditors/AppExcEditor.py:934
msgid "Resize drill(s) failed. Please enter a diameter for resize."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1112
+#: appEditors/AppExcEditor.py:1112
msgid "Done. Drill/Slot Resize completed."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1115
+#: appEditors/AppExcEditor.py:1115
msgid "Cancelled. No drills/slots selected for resize ..."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1153 appEditors/FlatCAMGrbEditor.py:1946
+#: appEditors/AppExcEditor.py:1153 appEditors/AppGerberEditor.py:1946
msgid "Click on reference location ..."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1210
+#: appEditors/AppExcEditor.py:1210
msgid "Done. Drill(s) Move completed."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1318
+#: appEditors/AppExcEditor.py:1318
msgid "Done. Drill(s) copied."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1557
+#: appEditors/AppExcEditor.py:1557
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:26
msgid "Excellon Editor"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1564 appEditors/FlatCAMGrbEditor.py:2469
+#: appEditors/AppExcEditor.py:1564 appEditors/AppGerberEditor.py:2469
msgid "Name:"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1570 appGUI/ObjectUI.py:540 appGUI/ObjectUI.py:1362
+#: appEditors/AppExcEditor.py:1570 appGUI/ObjectUI.py:540 appGUI/ObjectUI.py:1362
#: appTools/ToolIsolation.py:118 appTools/ToolNCC.py:120 appTools/ToolPaint.py:114
#: appTools/ToolSolderPaste.py:79
msgid "Tools Table"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1572 appGUI/ObjectUI.py:542
+#: appEditors/AppExcEditor.py:1572 appGUI/ObjectUI.py:542
msgid ""
"Tools in this Excellon object\n"
"when are used for drilling."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1584 appEditors/FlatCAMExcEditor.py:3041
+#: appEditors/AppExcEditor.py:1584 appEditors/AppExcEditor.py:3041
#: appGUI/ObjectUI.py:560 appObjects/FlatCAMExcellon.py:1265
#: appObjects/FlatCAMExcellon.py:1368 appObjects/FlatCAMExcellon.py:1553
#: appTools/ToolIsolation.py:130 appTools/ToolNCC.py:132 appTools/ToolPaint.py:127
@@ -1178,86 +1178,86 @@ msgstr ""
msgid "Diameter"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1592
+#: appEditors/AppExcEditor.py:1592
msgid "Add/Delete Tool"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1594
+#: appEditors/AppExcEditor.py:1594
msgid ""
"Add/Delete a tool to the tool list\n"
"for this Excellon object."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1606 appGUI/ObjectUI.py:1482
+#: appEditors/AppExcEditor.py:1606 appGUI/ObjectUI.py:1482
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:57
msgid "Diameter for the new tool"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1616
+#: appEditors/AppExcEditor.py:1616
msgid "Add Tool"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1618
+#: appEditors/AppExcEditor.py:1618
msgid ""
"Add a new tool to the tool list\n"
"with the diameter specified above."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1630
+#: appEditors/AppExcEditor.py:1630
msgid "Delete Tool"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1632
+#: appEditors/AppExcEditor.py:1632
msgid ""
"Delete a tool in the tool list\n"
"by selecting a row in the tool table."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1650 appGUI/MainGUI.py:4392
+#: appEditors/AppExcEditor.py:1650 appGUI/MainGUI.py:4392
msgid "Resize Drill(s)"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1652
+#: appEditors/AppExcEditor.py:1652
msgid "Resize a drill or a selection of drills."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1659
+#: appEditors/AppExcEditor.py:1659
msgid "Resize Dia"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1661
+#: appEditors/AppExcEditor.py:1661
msgid "Diameter to resize to."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1672
+#: appEditors/AppExcEditor.py:1672
msgid "Resize"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1674
+#: appEditors/AppExcEditor.py:1674
msgid "Resize drill(s)"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1699 appGUI/MainGUI.py:1514 appGUI/MainGUI.py:4391
+#: appEditors/AppExcEditor.py:1699 appGUI/MainGUI.py:1514 appGUI/MainGUI.py:4391
msgid "Add Drill Array"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1701
+#: appEditors/AppExcEditor.py:1701
msgid "Add an array of drills (linear or circular array)"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1707
+#: appEditors/AppExcEditor.py:1707
msgid ""
"Select the type of drills array to create.\n"
"It can be Linear X(Y) or Circular"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1710 appEditors/FlatCAMExcEditor.py:1924
-#: appEditors/FlatCAMGrbEditor.py:2782
+#: appEditors/AppExcEditor.py:1710 appEditors/AppExcEditor.py:1924
+#: appEditors/AppGerberEditor.py:2782
msgid "Linear"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1711 appEditors/FlatCAMExcEditor.py:1925
-#: appEditors/FlatCAMGrbEditor.py:2783
+#: appEditors/AppExcEditor.py:1711 appEditors/AppExcEditor.py:1925
+#: appEditors/AppGerberEditor.py:2783
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:52
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:149
#: appGUI/preferences/tools/Tools2FiducialsPrefGroupUI.py:107
@@ -1272,26 +1272,26 @@ msgstr ""
msgid "Circular"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1719
+#: appEditors/AppExcEditor.py:1719
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:68
msgid "Nr of drills"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1720
+#: appEditors/AppExcEditor.py:1720
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:70
msgid "Specify how many drills to be in the array."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1738 appEditors/FlatCAMExcEditor.py:1788
-#: appEditors/FlatCAMExcEditor.py:1860 appEditors/FlatCAMExcEditor.py:1953
-#: appEditors/FlatCAMExcEditor.py:2004 appEditors/FlatCAMGrbEditor.py:1580
-#: appEditors/FlatCAMGrbEditor.py:2811 appEditors/FlatCAMGrbEditor.py:2860
+#: appEditors/AppExcEditor.py:1738 appEditors/AppExcEditor.py:1788
+#: appEditors/AppExcEditor.py:1860 appEditors/AppExcEditor.py:1953
+#: appEditors/AppExcEditor.py:2004 appEditors/AppGerberEditor.py:1580
+#: appEditors/AppGerberEditor.py:2811 appEditors/AppGerberEditor.py:2860
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:178
msgid "Direction"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1740 appEditors/FlatCAMExcEditor.py:1955
-#: appEditors/FlatCAMGrbEditor.py:2813
+#: appEditors/AppExcEditor.py:1740 appEditors/AppExcEditor.py:1955
+#: appEditors/AppGerberEditor.py:2813
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:86
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:234
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:123
@@ -1302,8 +1302,8 @@ msgid ""
"- 'Angle' - a custom angle for the array inclination"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1747 appEditors/FlatCAMExcEditor.py:1869
-#: appEditors/FlatCAMExcEditor.py:1962 appEditors/FlatCAMGrbEditor.py:2820
+#: appEditors/AppExcEditor.py:1747 appEditors/AppExcEditor.py:1869
+#: appEditors/AppExcEditor.py:1962 appEditors/AppGerberEditor.py:2820
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:240
@@ -1312,8 +1312,8 @@ msgstr ""
msgid "X"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1748 appEditors/FlatCAMExcEditor.py:1870
-#: appEditors/FlatCAMExcEditor.py:1963 appEditors/FlatCAMGrbEditor.py:2821
+#: appEditors/AppExcEditor.py:1748 appEditors/AppExcEditor.py:1870
+#: appEditors/AppExcEditor.py:1963 appEditors/AppGerberEditor.py:2821
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:241
@@ -1322,13 +1322,13 @@ msgstr ""
msgid "Y"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1749 appEditors/FlatCAMExcEditor.py:1766
-#: appEditors/FlatCAMExcEditor.py:1800 appEditors/FlatCAMExcEditor.py:1871
-#: appEditors/FlatCAMExcEditor.py:1875 appEditors/FlatCAMExcEditor.py:1964
-#: appEditors/FlatCAMExcEditor.py:1982 appEditors/FlatCAMExcEditor.py:2016
-#: appEditors/appGeoEditor.py:683 appEditors/FlatCAMGrbEditor.py:2822
-#: appEditors/FlatCAMGrbEditor.py:2839 appEditors/FlatCAMGrbEditor.py:2875
-#: appEditors/FlatCAMGrbEditor.py:5376
+#: appEditors/AppExcEditor.py:1749 appEditors/AppExcEditor.py:1766
+#: appEditors/AppExcEditor.py:1800 appEditors/AppExcEditor.py:1871
+#: appEditors/AppExcEditor.py:1875 appEditors/AppExcEditor.py:1964
+#: appEditors/AppExcEditor.py:1982 appEditors/AppExcEditor.py:2016
+#: appEditors/AppGeoEditor.py:683 appEditors/AppGerberEditor.py:2822
+#: appEditors/AppGerberEditor.py:2839 appEditors/AppGerberEditor.py:2875
+#: appEditors/AppGerberEditor.py:5376
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:94
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:113
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:189
@@ -1342,23 +1342,23 @@ msgstr ""
msgid "Angle"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1753 appEditors/FlatCAMExcEditor.py:1968
-#: appEditors/FlatCAMGrbEditor.py:2826
+#: appEditors/AppExcEditor.py:1753 appEditors/AppExcEditor.py:1968
+#: appEditors/AppGerberEditor.py:2826
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:100
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:248
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:137
msgid "Pitch"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1755 appEditors/FlatCAMExcEditor.py:1970
-#: appEditors/FlatCAMGrbEditor.py:2828
+#: appEditors/AppExcEditor.py:1755 appEditors/AppExcEditor.py:1970
+#: appEditors/AppGerberEditor.py:2828
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:102
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:250
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:139
msgid "Pitch = Distance between elements of the array."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1768 appEditors/FlatCAMExcEditor.py:1984
+#: appEditors/AppExcEditor.py:1768 appEditors/AppExcEditor.py:1984
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1366,13 +1366,13 @@ msgid ""
"Max value is: 360.00 degrees."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1789 appEditors/FlatCAMExcEditor.py:2005
-#: appEditors/FlatCAMGrbEditor.py:2862
+#: appEditors/AppExcEditor.py:1789 appEditors/AppExcEditor.py:2005
+#: appEditors/AppGerberEditor.py:2862
msgid "Direction for circular array.Can be CW = clockwise or CCW = counter clockwise."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1796 appEditors/FlatCAMExcEditor.py:2012
-#: appEditors/FlatCAMGrbEditor.py:2870
+#: appEditors/AppExcEditor.py:1796 appEditors/AppExcEditor.py:2012
+#: appEditors/AppGerberEditor.py:2870
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:129
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:136
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:286
@@ -1381,8 +1381,8 @@ msgstr ""
msgid "CW"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1797 appEditors/FlatCAMExcEditor.py:2013
-#: appEditors/FlatCAMGrbEditor.py:2871
+#: appEditors/AppExcEditor.py:1797 appEditors/AppExcEditor.py:2013
+#: appEditors/AppGerberEditor.py:2871
#: appGUI/preferences/excellon/ExcellonAdvOptPrefGroupUI.py:130
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:137
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:287
@@ -1391,8 +1391,8 @@ msgstr ""
msgid "CCW"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1801 appEditors/FlatCAMExcEditor.py:2017
-#: appEditors/FlatCAMGrbEditor.py:2877
+#: appEditors/AppExcEditor.py:1801 appEditors/AppExcEditor.py:2017
+#: appEditors/AppGerberEditor.py:2877
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:115
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:145
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:265
@@ -1402,29 +1402,29 @@ msgstr ""
msgid "Angle at which each element in circular array is placed."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1835
+#: appEditors/AppExcEditor.py:1835
msgid "Slot Parameters"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1837
+#: appEditors/AppExcEditor.py:1837
msgid ""
"Parameters for adding a slot (hole with oval shape)\n"
"either single or as an part of an array."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1846
+#: appEditors/AppExcEditor.py:1846
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:162
#: appGUI/preferences/tools/ToolsCornersPrefGroupUI.py:56 appTools/ToolCorners.py:136
#: appTools/ToolProperties.py:559
msgid "Length"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1848
+#: appEditors/AppExcEditor.py:1848
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:164
msgid "Length = The length of the slot."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1862
+#: appEditors/AppExcEditor.py:1862
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:180
msgid ""
"Direction on which the slot is oriented:\n"
@@ -1433,7 +1433,7 @@ msgid ""
"- 'Angle' - a custom angle for the slot inclination"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1877
+#: appEditors/AppExcEditor.py:1877
msgid ""
"Angle at which the slot is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -1441,39 +1441,39 @@ msgid ""
"Max value is: 360.00 degrees."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1910
+#: appEditors/AppExcEditor.py:1910
msgid "Slot Array Parameters"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1912
+#: appEditors/AppExcEditor.py:1912
msgid "Parameters for the array of slots (linear or circular array)"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1921
+#: appEditors/AppExcEditor.py:1921
msgid ""
"Select the type of slot array to create.\n"
"It can be Linear X(Y) or Circular"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1933
+#: appEditors/AppExcEditor.py:1933
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:219
msgid "Nr of slots"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:1934
+#: appEditors/AppExcEditor.py:1934
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:221
msgid "Specify how many slots to be in the array."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
+#: appEditors/AppExcEditor.py:2452 appObjects/FlatCAMExcellon.py:433
msgid "Total Drills"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
+#: appEditors/AppExcEditor.py:2484 appObjects/FlatCAMExcellon.py:464
msgid "Total Slots"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
+#: appEditors/AppExcEditor.py:2559 appObjects/FlatCAMGeometry.py:664
#: appObjects/FlatCAMGeometry.py:1099 appObjects/FlatCAMGeometry.py:1841
#: appObjects/FlatCAMGeometry.py:2491 appTools/ToolIsolation.py:1526
#: appTools/ToolNCC.py:1516 appTools/ToolPaint.py:1268 appTools/ToolPaint.py:1439
@@ -1481,76 +1481,76 @@ msgstr ""
msgid "Wrong value format entered, use a number."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:2570
+#: appEditors/AppExcEditor.py:2570
msgid ""
"Tool already in the original or actual tool list.\n"
"Save and reedit Excellon if you need to add this tool. "
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:2579 appGUI/MainGUI.py:3364
+#: appEditors/AppExcEditor.py:2579 appGUI/MainGUI.py:3364
msgid "Added new tool with dia"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:2612
+#: appEditors/AppExcEditor.py:2612
msgid "Select a tool in Tool Table"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:2642
+#: appEditors/AppExcEditor.py:2642
msgid "Deleted tool with diameter"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:2790
+#: appEditors/AppExcEditor.py:2790
msgid "Done. Tool edit completed."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:3327
+#: appEditors/AppExcEditor.py:3327
msgid "There are no Tools definitions in the file. Aborting Excellon creation."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:3331
+#: appEditors/AppExcEditor.py:3331
msgid "An internal error has ocurred. See Shell.\n"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:3336
+#: appEditors/AppExcEditor.py:3336
msgid "Creating Excellon."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:3350
+#: appEditors/AppExcEditor.py:3350
msgid "Excellon editing finished."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:3367
+#: appEditors/AppExcEditor.py:3367
msgid "Cancelled. There is no Tool/Drill selected"
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:3601 appEditors/FlatCAMExcEditor.py:3609
-#: appEditors/appGeoEditor.py:4286 appEditors/appGeoEditor.py:4300
-#: appEditors/FlatCAMGrbEditor.py:1085 appEditors/FlatCAMGrbEditor.py:1312
-#: appEditors/FlatCAMGrbEditor.py:1497 appEditors/FlatCAMGrbEditor.py:1766
-#: appEditors/FlatCAMGrbEditor.py:4608 appEditors/FlatCAMGrbEditor.py:4625
+#: appEditors/AppExcEditor.py:3601 appEditors/AppExcEditor.py:3609
+#: appEditors/AppGeoEditor.py:4286 appEditors/AppGeoEditor.py:4300
+#: appEditors/AppGerberEditor.py:1085 appEditors/AppGerberEditor.py:1312
+#: appEditors/AppGerberEditor.py:1497 appEditors/AppGerberEditor.py:1766
+#: appEditors/AppGerberEditor.py:4608 appEditors/AppGerberEditor.py:4625
#: appGUI/MainGUI.py:2711 appGUI/MainGUI.py:2723 appTools/ToolAlignObjects.py:393
#: appTools/ToolAlignObjects.py:415 app_Main.py:4800 app_Main.py:4954
msgid "Done."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:3984
+#: appEditors/AppExcEditor.py:3984
msgid "Done. Drill(s) deleted."
msgstr ""
-#: appEditors/FlatCAMExcEditor.py:4057 appEditors/FlatCAMExcEditor.py:4067
-#: appEditors/FlatCAMGrbEditor.py:5056
+#: appEditors/AppExcEditor.py:4057 appEditors/AppExcEditor.py:4067
+#: appEditors/AppGerberEditor.py:5056
msgid "Click on the circular array Center position"
msgstr ""
-#: appEditors/appGeoEditor.py:84
+#: appEditors/AppGeoEditor.py:84
msgid "Buffer distance:"
msgstr ""
-#: appEditors/appGeoEditor.py:85
+#: appEditors/AppGeoEditor.py:85
msgid "Buffer corner:"
msgstr ""
-#: appEditors/appGeoEditor.py:87
+#: appEditors/AppGeoEditor.py:87
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded for exterior buffer.\n"
@@ -1559,11 +1559,11 @@ msgid ""
"corner"
msgstr ""
-#: appEditors/appGeoEditor.py:93 appEditors/FlatCAMGrbEditor.py:2638
+#: appEditors/AppGeoEditor.py:93 appEditors/AppGerberEditor.py:2638
msgid "Round"
msgstr ""
-#: appEditors/appGeoEditor.py:94 appEditors/FlatCAMGrbEditor.py:2639
+#: appEditors/AppGeoEditor.py:94 appEditors/AppGerberEditor.py:2639
#: appGUI/ObjectUI.py:1149 appGUI/ObjectUI.py:2004
#: appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:225
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:68
@@ -1580,47 +1580,47 @@ msgstr ""
msgid "Square"
msgstr ""
-#: appEditors/appGeoEditor.py:95 appEditors/FlatCAMGrbEditor.py:2640
+#: appEditors/AppGeoEditor.py:95 appEditors/AppGerberEditor.py:2640
msgid "Beveled"
msgstr ""
-#: appEditors/appGeoEditor.py:102
+#: appEditors/AppGeoEditor.py:102
msgid "Buffer Interior"
msgstr ""
-#: appEditors/appGeoEditor.py:104
+#: appEditors/AppGeoEditor.py:104
msgid "Buffer Exterior"
msgstr ""
-#: appEditors/appGeoEditor.py:110
+#: appEditors/AppGeoEditor.py:110
msgid "Full Buffer"
msgstr ""
-#: appEditors/appGeoEditor.py:131 appEditors/appGeoEditor.py:2959
+#: appEditors/AppGeoEditor.py:131 appEditors/AppGeoEditor.py:2959
#: appGUI/MainGUI.py:4301 appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:191
msgid "Buffer Tool"
msgstr ""
-#: appEditors/appGeoEditor.py:143 appEditors/appGeoEditor.py:160
-#: appEditors/appGeoEditor.py:177 appEditors/appGeoEditor.py:2978
-#: appEditors/appGeoEditor.py:3006 appEditors/appGeoEditor.py:3034
-#: appEditors/FlatCAMGrbEditor.py:5109
+#: appEditors/AppGeoEditor.py:143 appEditors/AppGeoEditor.py:160
+#: appEditors/AppGeoEditor.py:177 appEditors/AppGeoEditor.py:2978
+#: appEditors/AppGeoEditor.py:3006 appEditors/AppGeoEditor.py:3034
+#: appEditors/AppGerberEditor.py:5109
msgid "Buffer distance value is missing or wrong format. Add it and retry."
msgstr ""
-#: appEditors/appGeoEditor.py:241
+#: appEditors/AppGeoEditor.py:241
msgid "Font"
msgstr ""
-#: appEditors/appGeoEditor.py:322 appGUI/MainGUI.py:1452
+#: appEditors/AppGeoEditor.py:322 appGUI/MainGUI.py:1452
msgid "Text"
msgstr ""
-#: appEditors/appGeoEditor.py:348
+#: appEditors/AppGeoEditor.py:348
msgid "Text Tool"
msgstr ""
-#: appEditors/appGeoEditor.py:404 appGUI/MainGUI.py:502 appGUI/MainGUI.py:1199
+#: appEditors/AppGeoEditor.py:404 appGUI/MainGUI.py:502 appGUI/MainGUI.py:1199
#: appGUI/ObjectUI.py:597 appGUI/ObjectUI.py:1564 appObjects/FlatCAMExcellon.py:852
#: appObjects/FlatCAMExcellon.py:1242 appObjects/FlatCAMGeometry.py:825
#: appTools/ToolIsolation.py:313 appTools/ToolIsolation.py:1196 appTools/ToolNCC.py:331
@@ -1628,15 +1628,15 @@ msgstr ""
msgid "Tool"
msgstr ""
-#: appEditors/appGeoEditor.py:438
+#: appEditors/AppGeoEditor.py:438
msgid "Tool dia"
msgstr ""
-#: appEditors/appGeoEditor.py:440
+#: appEditors/AppGeoEditor.py:440
msgid "Diameter of the tool to be used in the operation."
msgstr ""
-#: appEditors/appGeoEditor.py:486
+#: appEditors/AppGeoEditor.py:486
msgid ""
"Algorithm to paint the polygons:\n"
"- Standard: Fixed step inwards.\n"
@@ -1644,82 +1644,82 @@ msgid ""
"- Line-based: Parallel lines."
msgstr ""
-#: appEditors/appGeoEditor.py:505
+#: appEditors/AppGeoEditor.py:505
msgid "Connect:"
msgstr ""
-#: appEditors/appGeoEditor.py:515
+#: appEditors/AppGeoEditor.py:515
msgid "Contour:"
msgstr ""
-#: appEditors/appGeoEditor.py:528 appGUI/MainGUI.py:1456
+#: appEditors/AppGeoEditor.py:528 appGUI/MainGUI.py:1456
msgid "Paint"
msgstr ""
-#: appEditors/appGeoEditor.py:546 appGUI/MainGUI.py:912 appGUI/MainGUI.py:1944
+#: appEditors/AppGeoEditor.py:546 appGUI/MainGUI.py:912 appGUI/MainGUI.py:1944
#: appGUI/ObjectUI.py:2069 appTools/ToolPaint.py:42 appTools/ToolPaint.py:737
msgid "Paint Tool"
msgstr ""
-#: appEditors/appGeoEditor.py:582 appEditors/appGeoEditor.py:1071
-#: appEditors/appGeoEditor.py:2966 appEditors/appGeoEditor.py:2994
-#: appEditors/appGeoEditor.py:3022 appEditors/appGeoEditor.py:4439
-#: appEditors/FlatCAMGrbEditor.py:5764
+#: appEditors/AppGeoEditor.py:582 appEditors/AppGeoEditor.py:1071
+#: appEditors/AppGeoEditor.py:2966 appEditors/AppGeoEditor.py:2994
+#: appEditors/AppGeoEditor.py:3022 appEditors/AppGeoEditor.py:4439
+#: appEditors/AppGerberEditor.py:5764
msgid "Cancelled. No shape selected."
msgstr ""
-#: appEditors/appGeoEditor.py:595 appEditors/appGeoEditor.py:2984
-#: appEditors/appGeoEditor.py:3012 appEditors/appGeoEditor.py:3040
+#: appEditors/AppGeoEditor.py:595 appEditors/AppGeoEditor.py:2984
+#: appEditors/AppGeoEditor.py:3012 appEditors/AppGeoEditor.py:3040
#: appGUI/preferences/geometry/GeometryGenPrefGroupUI.py:69 appTools/ToolProperties.py:117
#: appTools/ToolProperties.py:162
msgid "Tools"
msgstr ""
-#: appEditors/appGeoEditor.py:606 appEditors/appGeoEditor.py:1035
-#: appEditors/FlatCAMGrbEditor.py:5299 appEditors/FlatCAMGrbEditor.py:5728
+#: appEditors/AppGeoEditor.py:606 appEditors/AppGeoEditor.py:1035
+#: appEditors/AppGerberEditor.py:5299 appEditors/AppGerberEditor.py:5728
#: appGUI/MainGUI.py:935 appGUI/MainGUI.py:1967 appTools/ToolTransform.py:494
msgid "Transform Tool"
msgstr ""
-#: appEditors/appGeoEditor.py:607 appEditors/appGeoEditor.py:699
-#: appEditors/FlatCAMGrbEditor.py:5300 appEditors/FlatCAMGrbEditor.py:5392
+#: appEditors/AppGeoEditor.py:607 appEditors/AppGeoEditor.py:699
+#: appEditors/AppGerberEditor.py:5300 appEditors/AppGerberEditor.py:5392
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:88 appTools/ToolTransform.py:27
#: appTools/ToolTransform.py:146
msgid "Rotate"
msgstr ""
-#: appEditors/appGeoEditor.py:608 appEditors/FlatCAMGrbEditor.py:5301
+#: appEditors/AppGeoEditor.py:608 appEditors/AppGerberEditor.py:5301
#: appTools/ToolTransform.py:28
msgid "Skew/Shear"
msgstr ""
-#: appEditors/appGeoEditor.py:609 appEditors/FlatCAMGrbEditor.py:2687
-#: appEditors/FlatCAMGrbEditor.py:5302 appGUI/MainGUI.py:1057 appGUI/MainGUI.py:1499
+#: appEditors/AppGeoEditor.py:609 appEditors/AppGerberEditor.py:2687
+#: appEditors/AppGerberEditor.py:5302 appGUI/MainGUI.py:1057 appGUI/MainGUI.py:1499
#: appGUI/MainGUI.py:2089 appGUI/MainGUI.py:4513 appGUI/ObjectUI.py:125
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:147 appTools/ToolTransform.py:29
msgid "Scale"
msgstr ""
-#: appEditors/appGeoEditor.py:610 appEditors/FlatCAMGrbEditor.py:5303
+#: appEditors/AppGeoEditor.py:610 appEditors/AppGerberEditor.py:5303
#: appTools/ToolTransform.py:30
msgid "Mirror (Flip)"
msgstr ""
-#: appEditors/appGeoEditor.py:612 appEditors/FlatCAMGrbEditor.py:2647
-#: appEditors/FlatCAMGrbEditor.py:5305 appGUI/MainGUI.py:1055 appGUI/MainGUI.py:1454
+#: appEditors/AppGeoEditor.py:612 appEditors/AppGerberEditor.py:2647
+#: appEditors/AppGerberEditor.py:5305 appGUI/MainGUI.py:1055 appGUI/MainGUI.py:1454
#: appGUI/MainGUI.py:1497 appGUI/MainGUI.py:2087 appGUI/MainGUI.py:4511
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:212 appTools/ToolTransform.py:32
msgid "Buffer"
msgstr ""
-#: appEditors/appGeoEditor.py:643 appEditors/FlatCAMGrbEditor.py:5336
+#: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5336
#: appGUI/GUIElements.py:2701 appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44 appTools/ToolDblSided.py:173
#: appTools/ToolDblSided.py:388 appTools/ToolFilm.py:202 appTools/ToolTransform.py:60
msgid "Reference"
msgstr ""
-#: appEditors/appGeoEditor.py:645 appEditors/FlatCAMGrbEditor.py:5338
+#: appEditors/AppGeoEditor.py:645 appEditors/AppGerberEditor.py:5338
msgid ""
"The reference point for Rotate, Skew, Scale, Mirror.\n"
"Can be:\n"
@@ -1729,14 +1729,14 @@ msgid ""
"- Min Selection -> the point (minx, miny) of the bounding box of the selection"
msgstr ""
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54 appTools/ToolCalibration.py:770
#: appTools/ToolCalibration.py:771 appTools/ToolTransform.py:70
msgid "Origin"
msgstr ""
-#: appEditors/appGeoEditor.py:653 appEditors/appGeoEditor.py:1044
-#: appEditors/FlatCAMGrbEditor.py:5346 appEditors/FlatCAMGrbEditor.py:5737
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGeoEditor.py:1044
+#: appEditors/AppGerberEditor.py:5346 appEditors/AppGerberEditor.py:5737
#: appGUI/preferences/general/GeneralGUIPrefGroupUI.py:250
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:275
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:311
@@ -1747,7 +1747,7 @@ msgstr ""
msgid "Selection"
msgstr ""
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
#: appGUI/preferences/tools/Tools2sidedPrefGroupUI.py:80
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:60 appTools/ToolDblSided.py:181
@@ -1755,12 +1755,12 @@ msgstr ""
msgid "Point"
msgstr ""
-#: appEditors/appGeoEditor.py:653 appEditors/FlatCAMGrbEditor.py:5346
+#: appEditors/AppGeoEditor.py:653 appEditors/AppGerberEditor.py:5346
msgid "Minimum"
msgstr ""
-#: appEditors/appGeoEditor.py:659 appEditors/appGeoEditor.py:955
-#: appEditors/FlatCAMGrbEditor.py:5352 appEditors/FlatCAMGrbEditor.py:5648
+#: appEditors/AppGeoEditor.py:659 appEditors/AppGeoEditor.py:955
+#: appEditors/AppGerberEditor.py:5352 appEditors/AppGerberEditor.py:5648
#: appGUI/preferences/tools/Tools2EDrillsPrefGroupUI.py:131
#: appGUI/preferences/tools/Tools2PunchGerberPrefGroupUI.py:133
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:243
@@ -1770,13 +1770,13 @@ msgstr ""
msgid "Value"
msgstr ""
-#: appEditors/appGeoEditor.py:661 appEditors/FlatCAMGrbEditor.py:5354
+#: appEditors/AppGeoEditor.py:661 appEditors/AppGerberEditor.py:5354
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:62 appTools/ToolTransform.py:78
msgid "A point of reference in format X,Y."
msgstr ""
-#: appEditors/appGeoEditor.py:668 appEditors/FlatCAMGrbEditor.py:2590
-#: appEditors/FlatCAMGrbEditor.py:5361 appGUI/ObjectUI.py:1494 appTools/ToolDblSided.py:192
+#: appEditors/AppGeoEditor.py:668 appEditors/AppGerberEditor.py:2590
+#: appEditors/AppGerberEditor.py:5361 appGUI/ObjectUI.py:1494 appTools/ToolDblSided.py:192
#: appTools/ToolDblSided.py:425 appTools/ToolIsolation.py:276 appTools/ToolIsolation.py:631
#: appTools/ToolNCC.py:294 appTools/ToolNCC.py:631 appTools/ToolPaint.py:276
#: appTools/ToolPaint.py:675 appTools/ToolSolderPaste.py:127 appTools/ToolSolderPaste.py:605
@@ -1784,12 +1784,12 @@ msgstr ""
msgid "Add"
msgstr ""
-#: appEditors/appGeoEditor.py:670 appEditors/FlatCAMGrbEditor.py:5363
+#: appEditors/AppGeoEditor.py:670 appEditors/AppGerberEditor.py:5363
#: appTools/ToolTransform.py:87
msgid "Add point coordinates from clipboard."
msgstr ""
-#: appEditors/appGeoEditor.py:685 appEditors/FlatCAMGrbEditor.py:5378
+#: appEditors/AppGeoEditor.py:685 appEditors/AppGerberEditor.py:5378
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:98 appTools/ToolTransform.py:132
msgid ""
"Angle for Rotation action, in degrees.\n"
@@ -1798,7 +1798,7 @@ msgid ""
"Negative numbers for CCW motion."
msgstr ""
-#: appEditors/appGeoEditor.py:701 appEditors/FlatCAMGrbEditor.py:5394
+#: appEditors/AppGeoEditor.py:701 appEditors/AppGerberEditor.py:5394
#: appTools/ToolTransform.py:148
msgid ""
"Rotate the selected object(s).\n"
@@ -1806,44 +1806,44 @@ msgid ""
"the bounding box for all selected objects."
msgstr ""
-#: appEditors/appGeoEditor.py:721 appEditors/appGeoEditor.py:783
-#: appEditors/FlatCAMGrbEditor.py:5414 appEditors/FlatCAMGrbEditor.py:5476
+#: appEditors/AppGeoEditor.py:721 appEditors/AppGeoEditor.py:783
+#: appEditors/AppGerberEditor.py:5414 appEditors/AppGerberEditor.py:5476
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:112
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:151 appTools/ToolTransform.py:168
#: appTools/ToolTransform.py:230
msgid "Link"
msgstr ""
-#: appEditors/appGeoEditor.py:723 appEditors/appGeoEditor.py:785
-#: appEditors/FlatCAMGrbEditor.py:5416 appEditors/FlatCAMGrbEditor.py:5478
+#: appEditors/AppGeoEditor.py:723 appEditors/AppGeoEditor.py:785
+#: appEditors/AppGerberEditor.py:5416 appEditors/AppGerberEditor.py:5478
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:114
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:153 appTools/ToolTransform.py:170
#: appTools/ToolTransform.py:232
msgid "Link the Y entry to X entry and copy its content."
msgstr ""
-#: appEditors/appGeoEditor.py:728 appEditors/FlatCAMGrbEditor.py:5421
+#: appEditors/AppGeoEditor.py:728 appEditors/AppGerberEditor.py:5421
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:151
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:124 appTools/ToolFilm.py:184
#: appTools/ToolTransform.py:175
msgid "X angle"
msgstr ""
-#: appEditors/appGeoEditor.py:730 appEditors/appGeoEditor.py:751
-#: appEditors/FlatCAMGrbEditor.py:5423 appEditors/FlatCAMGrbEditor.py:5444
+#: appEditors/AppGeoEditor.py:730 appEditors/AppGeoEditor.py:751
+#: appEditors/AppGerberEditor.py:5423 appEditors/AppGerberEditor.py:5444
#: appTools/ToolTransform.py:177 appTools/ToolTransform.py:198
msgid ""
"Angle for Skew action, in degrees.\n"
"Float number between -360 and 360."
msgstr ""
-#: appEditors/appGeoEditor.py:738 appEditors/FlatCAMGrbEditor.py:5431
+#: appEditors/AppGeoEditor.py:738 appEditors/AppGerberEditor.py:5431
#: appTools/ToolTransform.py:185
msgid "Skew X"
msgstr ""
-#: appEditors/appGeoEditor.py:740 appEditors/appGeoEditor.py:761
-#: appEditors/FlatCAMGrbEditor.py:5433 appEditors/FlatCAMGrbEditor.py:5454
+#: appEditors/AppGeoEditor.py:740 appEditors/AppGeoEditor.py:761
+#: appEditors/AppGerberEditor.py:5433 appEditors/AppGerberEditor.py:5454
#: appTools/ToolTransform.py:187 appTools/ToolTransform.py:208
msgid ""
"Skew/shear the selected object(s).\n"
@@ -1851,37 +1851,37 @@ msgid ""
"the bounding box for all selected objects."
msgstr ""
-#: appEditors/appGeoEditor.py:749 appEditors/FlatCAMGrbEditor.py:5442
+#: appEditors/AppGeoEditor.py:749 appEditors/AppGerberEditor.py:5442
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:160
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:138 appTools/ToolFilm.py:193
#: appTools/ToolTransform.py:196
msgid "Y angle"
msgstr ""
-#: appEditors/appGeoEditor.py:759 appEditors/FlatCAMGrbEditor.py:5452
+#: appEditors/AppGeoEditor.py:759 appEditors/AppGerberEditor.py:5452
#: appTools/ToolTransform.py:206
msgid "Skew Y"
msgstr ""
-#: appEditors/appGeoEditor.py:790 appEditors/FlatCAMGrbEditor.py:5483
+#: appEditors/AppGeoEditor.py:790 appEditors/AppGerberEditor.py:5483
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:120
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:162 appTools/ToolFilm.py:145
#: appTools/ToolTransform.py:237
msgid "X factor"
msgstr ""
-#: appEditors/appGeoEditor.py:792 appEditors/FlatCAMGrbEditor.py:5485
+#: appEditors/AppGeoEditor.py:792 appEditors/AppGerberEditor.py:5485
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:164 appTools/ToolTransform.py:239
msgid "Factor for scaling on X axis."
msgstr ""
-#: appEditors/appGeoEditor.py:799 appEditors/FlatCAMGrbEditor.py:5492
+#: appEditors/AppGeoEditor.py:799 appEditors/AppGerberEditor.py:5492
#: appTools/ToolTransform.py:246
msgid "Scale X"
msgstr ""
-#: appEditors/appGeoEditor.py:801 appEditors/appGeoEditor.py:821
-#: appEditors/FlatCAMGrbEditor.py:5494 appEditors/FlatCAMGrbEditor.py:5514
+#: appEditors/AppGeoEditor.py:801 appEditors/AppGeoEditor.py:821
+#: appEditors/AppGerberEditor.py:5494 appEditors/AppGerberEditor.py:5514
#: appTools/ToolTransform.py:248 appTools/ToolTransform.py:268
msgid ""
"Scale the selected object(s).\n"
@@ -1889,56 +1889,56 @@ msgid ""
"the Scale reference checkbox state."
msgstr ""
-#: appEditors/appGeoEditor.py:810 appEditors/FlatCAMGrbEditor.py:5503
+#: appEditors/AppGeoEditor.py:810 appEditors/AppGerberEditor.py:5503
#: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:129
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:175 appTools/ToolFilm.py:154
#: appTools/ToolTransform.py:257
msgid "Y factor"
msgstr ""
-#: appEditors/appGeoEditor.py:812 appEditors/FlatCAMGrbEditor.py:5505
+#: appEditors/AppGeoEditor.py:812 appEditors/AppGerberEditor.py:5505
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:177 appTools/ToolTransform.py:259
msgid "Factor for scaling on Y axis."
msgstr ""
-#: appEditors/appGeoEditor.py:819 appEditors/FlatCAMGrbEditor.py:5512
+#: appEditors/AppGeoEditor.py:819 appEditors/AppGerberEditor.py:5512
#: appTools/ToolTransform.py:266
msgid "Scale Y"
msgstr ""
-#: appEditors/appGeoEditor.py:846 appEditors/FlatCAMGrbEditor.py:5539
+#: appEditors/AppGeoEditor.py:846 appEditors/AppGerberEditor.py:5539
#: appTools/ToolTransform.py:293
msgid "Flip on X"
msgstr ""
-#: appEditors/appGeoEditor.py:848 appEditors/appGeoEditor.py:853
-#: appEditors/FlatCAMGrbEditor.py:5541 appEditors/FlatCAMGrbEditor.py:5546
+#: appEditors/AppGeoEditor.py:848 appEditors/AppGeoEditor.py:853
+#: appEditors/AppGerberEditor.py:5541 appEditors/AppGerberEditor.py:5546
#: appTools/ToolTransform.py:295 appTools/ToolTransform.py:300
msgid "Flip the selected object(s) over the X axis."
msgstr ""
-#: appEditors/appGeoEditor.py:851 appEditors/FlatCAMGrbEditor.py:5544
+#: appEditors/AppGeoEditor.py:851 appEditors/AppGerberEditor.py:5544
#: appTools/ToolTransform.py:298
msgid "Flip on Y"
msgstr ""
-#: appEditors/appGeoEditor.py:871 appEditors/FlatCAMGrbEditor.py:5564
+#: appEditors/AppGeoEditor.py:871 appEditors/AppGerberEditor.py:5564
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:191 appTools/ToolTransform.py:318
msgid "X val"
msgstr ""
-#: appEditors/appGeoEditor.py:873 appEditors/FlatCAMGrbEditor.py:5566
+#: appEditors/AppGeoEditor.py:873 appEditors/AppGerberEditor.py:5566
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:193 appTools/ToolTransform.py:320
msgid "Distance to offset on X axis. In current units."
msgstr ""
-#: appEditors/appGeoEditor.py:880 appEditors/FlatCAMGrbEditor.py:5573
+#: appEditors/AppGeoEditor.py:880 appEditors/AppGerberEditor.py:5573
#: appTools/ToolTransform.py:327
msgid "Offset X"
msgstr ""
-#: appEditors/appGeoEditor.py:882 appEditors/appGeoEditor.py:902
-#: appEditors/FlatCAMGrbEditor.py:5575 appEditors/FlatCAMGrbEditor.py:5595
+#: appEditors/AppGeoEditor.py:882 appEditors/AppGeoEditor.py:902
+#: appEditors/AppGerberEditor.py:5575 appEditors/AppGerberEditor.py:5595
#: appTools/ToolTransform.py:329 appTools/ToolTransform.py:349
msgid ""
"Offset the selected object(s).\n"
@@ -1946,29 +1946,29 @@ msgid ""
"the bounding box for all selected objects.\n"
msgstr ""
-#: appEditors/appGeoEditor.py:891 appEditors/FlatCAMGrbEditor.py:5584
+#: appEditors/AppGeoEditor.py:891 appEditors/AppGerberEditor.py:5584
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:204 appTools/ToolTransform.py:338
msgid "Y val"
msgstr ""
-#: appEditors/appGeoEditor.py:893 appEditors/FlatCAMGrbEditor.py:5586
+#: appEditors/AppGeoEditor.py:893 appEditors/AppGerberEditor.py:5586
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:206 appTools/ToolTransform.py:340
msgid "Distance to offset on Y axis. In current units."
msgstr ""
-#: appEditors/appGeoEditor.py:900 appEditors/FlatCAMGrbEditor.py:5593
+#: appEditors/AppGeoEditor.py:900 appEditors/AppGerberEditor.py:5593
#: appTools/ToolTransform.py:347
msgid "Offset Y"
msgstr ""
-#: appEditors/appGeoEditor.py:920 appEditors/FlatCAMGrbEditor.py:5613
+#: appEditors/AppGeoEditor.py:920 appEditors/AppGerberEditor.py:5613
#: appGUI/preferences/tools/Tools2QRCodePrefGroupUI.py:142
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:216 appTools/ToolQRCode.py:206
#: appTools/ToolTransform.py:367
msgid "Rounded"
msgstr ""
-#: appEditors/appGeoEditor.py:922 appEditors/FlatCAMGrbEditor.py:5615
+#: appEditors/AppGeoEditor.py:922 appEditors/AppGerberEditor.py:5615
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:218 appTools/ToolTransform.py:369
msgid ""
"If checked then the buffer will surround the buffered shape,\n"
@@ -1977,13 +1977,13 @@ msgid ""
"of the buffered shape."
msgstr ""
-#: appEditors/appGeoEditor.py:930 appEditors/FlatCAMGrbEditor.py:5623
+#: appEditors/AppGeoEditor.py:930 appEditors/AppGerberEditor.py:5623
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:226 appTools/ToolDistance.py:505
#: appTools/ToolDistanceMin.py:286 appTools/ToolTransform.py:377
msgid "Distance"
msgstr ""
-#: appEditors/appGeoEditor.py:932 appEditors/FlatCAMGrbEditor.py:5625
+#: appEditors/AppGeoEditor.py:932 appEditors/AppGerberEditor.py:5625
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:228 appTools/ToolTransform.py:379
msgid ""
"A positive value will create the effect of dilation,\n"
@@ -1992,19 +1992,19 @@ msgid ""
"or decreased with the 'distance'."
msgstr ""
-#: appEditors/appGeoEditor.py:944 appEditors/FlatCAMGrbEditor.py:5637
+#: appEditors/AppGeoEditor.py:944 appEditors/AppGerberEditor.py:5637
#: appTools/ToolTransform.py:391
msgid "Buffer D"
msgstr ""
-#: appEditors/appGeoEditor.py:946 appEditors/FlatCAMGrbEditor.py:5639
+#: appEditors/AppGeoEditor.py:946 appEditors/AppGerberEditor.py:5639
#: appTools/ToolTransform.py:393
msgid ""
"Create the buffer effect on each geometry,\n"
"element from the selected object, using the distance."
msgstr ""
-#: appEditors/appGeoEditor.py:957 appEditors/FlatCAMGrbEditor.py:5650
+#: appEditors/AppGeoEditor.py:957 appEditors/AppGerberEditor.py:5650
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:245 appTools/ToolTransform.py:404
msgid ""
"A positive value will create the effect of dilation,\n"
@@ -2014,19 +2014,19 @@ msgid ""
"of the initial dimension."
msgstr ""
-#: appEditors/appGeoEditor.py:970 appEditors/FlatCAMGrbEditor.py:5663
+#: appEditors/AppGeoEditor.py:970 appEditors/AppGerberEditor.py:5663
#: appTools/ToolTransform.py:417
msgid "Buffer F"
msgstr ""
-#: appEditors/appGeoEditor.py:972 appEditors/FlatCAMGrbEditor.py:5665
+#: appEditors/AppGeoEditor.py:972 appEditors/AppGerberEditor.py:5665
#: appTools/ToolTransform.py:419
msgid ""
"Create the buffer effect on each geometry,\n"
"element from the selected object, using the factor."
msgstr ""
-#: appEditors/appGeoEditor.py:1043 appEditors/FlatCAMGrbEditor.py:5736
+#: appEditors/AppGeoEditor.py:1043 appEditors/AppGerberEditor.py:5736
#: appGUI/ObjectUI.py:1103 appGUI/ObjectUI.py:1958
#: appGUI/preferences/tools/Tools2CalPrefGroupUI.py:48
#: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:54
@@ -2036,405 +2036,405 @@ msgstr ""
msgid "Object"
msgstr ""
-#: appEditors/appGeoEditor.py:1107 appEditors/appGeoEditor.py:1130
-#: appEditors/appGeoEditor.py:1276 appEditors/appGeoEditor.py:1301
-#: appEditors/appGeoEditor.py:1335 appEditors/appGeoEditor.py:1370
-#: appEditors/appGeoEditor.py:1401 appEditors/FlatCAMGrbEditor.py:5800
-#: appEditors/FlatCAMGrbEditor.py:5823 appEditors/FlatCAMGrbEditor.py:5968
-#: appEditors/FlatCAMGrbEditor.py:6001 appEditors/FlatCAMGrbEditor.py:6044
-#: appEditors/FlatCAMGrbEditor.py:6085 appEditors/FlatCAMGrbEditor.py:6121
+#: appEditors/AppGeoEditor.py:1107 appEditors/AppGeoEditor.py:1130
+#: appEditors/AppGeoEditor.py:1276 appEditors/AppGeoEditor.py:1301
+#: appEditors/AppGeoEditor.py:1335 appEditors/AppGeoEditor.py:1370
+#: appEditors/AppGeoEditor.py:1401 appEditors/AppGerberEditor.py:5800
+#: appEditors/AppGerberEditor.py:5823 appEditors/AppGerberEditor.py:5968
+#: appEditors/AppGerberEditor.py:6001 appEditors/AppGerberEditor.py:6044
+#: appEditors/AppGerberEditor.py:6085 appEditors/AppGerberEditor.py:6121
msgid "No shape selected."
msgstr ""
-#: appEditors/appGeoEditor.py:1115 appEditors/FlatCAMGrbEditor.py:5808
+#: appEditors/AppGeoEditor.py:1115 appEditors/AppGerberEditor.py:5808
#: appTools/ToolTransform.py:585
msgid "Incorrect format for Point value. Needs format X,Y"
msgstr ""
-#: appEditors/appGeoEditor.py:1140 appEditors/FlatCAMGrbEditor.py:5833
+#: appEditors/AppGeoEditor.py:1140 appEditors/AppGerberEditor.py:5833
#: appTools/ToolTransform.py:602
msgid "Rotate transformation can not be done for a value of 0."
msgstr ""
-#: appEditors/appGeoEditor.py:1198 appEditors/appGeoEditor.py:1219
-#: appEditors/FlatCAMGrbEditor.py:5891 appEditors/FlatCAMGrbEditor.py:5912
+#: appEditors/AppGeoEditor.py:1198 appEditors/AppGeoEditor.py:1219
+#: appEditors/AppGerberEditor.py:5891 appEditors/AppGerberEditor.py:5912
#: appTools/ToolTransform.py:660 appTools/ToolTransform.py:681
msgid "Scale transformation can not be done for a factor of 0 or 1."
msgstr ""
-#: appEditors/appGeoEditor.py:1232 appEditors/appGeoEditor.py:1241
-#: appEditors/FlatCAMGrbEditor.py:5925 appEditors/FlatCAMGrbEditor.py:5934
+#: appEditors/AppGeoEditor.py:1232 appEditors/AppGeoEditor.py:1241
+#: appEditors/AppGerberEditor.py:5925 appEditors/AppGerberEditor.py:5934
#: appTools/ToolTransform.py:694 appTools/ToolTransform.py:703
msgid "Offset transformation can not be done for a value of 0."
msgstr ""
-#: appEditors/appGeoEditor.py:1271 appEditors/FlatCAMGrbEditor.py:5971
+#: appEditors/AppGeoEditor.py:1271 appEditors/AppGerberEditor.py:5971
#: appTools/ToolTransform.py:731
msgid "Appying Rotate"
msgstr ""
-#: appEditors/appGeoEditor.py:1284 appEditors/FlatCAMGrbEditor.py:5983
+#: appEditors/AppGeoEditor.py:1284 appEditors/AppGerberEditor.py:5983
msgid "Done. Rotate completed."
msgstr ""
-#: appEditors/appGeoEditor.py:1286
+#: appEditors/AppGeoEditor.py:1286
msgid "Rotation action was not executed"
msgstr ""
-#: appEditors/appGeoEditor.py:1304 appEditors/FlatCAMGrbEditor.py:6004
+#: appEditors/AppGeoEditor.py:1304 appEditors/AppGerberEditor.py:6004
#: appTools/ToolTransform.py:757
msgid "Applying Flip"
msgstr ""
-#: appEditors/appGeoEditor.py:1312 appEditors/FlatCAMGrbEditor.py:6016
+#: appEditors/AppGeoEditor.py:1312 appEditors/AppGerberEditor.py:6016
#: appTools/ToolTransform.py:774
msgid "Flip on the Y axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1315 appEditors/FlatCAMGrbEditor.py:6024
+#: appEditors/AppGeoEditor.py:1315 appEditors/AppGerberEditor.py:6024
#: appTools/ToolTransform.py:783
msgid "Flip on the X axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1319
+#: appEditors/AppGeoEditor.py:1319
msgid "Flip action was not executed"
msgstr ""
-#: appEditors/appGeoEditor.py:1338 appEditors/FlatCAMGrbEditor.py:6047
+#: appEditors/AppGeoEditor.py:1338 appEditors/AppGerberEditor.py:6047
#: appTools/ToolTransform.py:804
msgid "Applying Skew"
msgstr ""
-#: appEditors/appGeoEditor.py:1347 appEditors/FlatCAMGrbEditor.py:6063
+#: appEditors/AppGeoEditor.py:1347 appEditors/AppGerberEditor.py:6063
msgid "Skew on the X axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1349 appEditors/FlatCAMGrbEditor.py:6065
+#: appEditors/AppGeoEditor.py:1349 appEditors/AppGerberEditor.py:6065
msgid "Skew on the Y axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1352
+#: appEditors/AppGeoEditor.py:1352
msgid "Skew action was not executed"
msgstr ""
-#: appEditors/appGeoEditor.py:1373 appEditors/FlatCAMGrbEditor.py:6088
+#: appEditors/AppGeoEditor.py:1373 appEditors/AppGerberEditor.py:6088
#: appTools/ToolTransform.py:831
msgid "Applying Scale"
msgstr ""
-#: appEditors/appGeoEditor.py:1382 appEditors/FlatCAMGrbEditor.py:6101
+#: appEditors/AppGeoEditor.py:1382 appEditors/AppGerberEditor.py:6101
msgid "Scale on the X axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1384 appEditors/FlatCAMGrbEditor.py:6103
+#: appEditors/AppGeoEditor.py:1384 appEditors/AppGerberEditor.py:6103
msgid "Scale on the Y axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1386
+#: appEditors/AppGeoEditor.py:1386
msgid "Scale action was not executed"
msgstr ""
-#: appEditors/appGeoEditor.py:1404 appEditors/FlatCAMGrbEditor.py:6124
+#: appEditors/AppGeoEditor.py:1404 appEditors/AppGerberEditor.py:6124
#: appTools/ToolTransform.py:859
msgid "Applying Offset"
msgstr ""
-#: appEditors/appGeoEditor.py:1414 appEditors/FlatCAMGrbEditor.py:6145
+#: appEditors/AppGeoEditor.py:1414 appEditors/AppGerberEditor.py:6145
msgid "Offset on the X axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1416 appEditors/FlatCAMGrbEditor.py:6147
+#: appEditors/AppGeoEditor.py:1416 appEditors/AppGerberEditor.py:6147
msgid "Offset on the Y axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1419
+#: appEditors/AppGeoEditor.py:1419
msgid "Offset action was not executed"
msgstr ""
-#: appEditors/appGeoEditor.py:1426 appEditors/FlatCAMGrbEditor.py:6157
+#: appEditors/AppGeoEditor.py:1426 appEditors/AppGerberEditor.py:6157
msgid "No shape selected"
msgstr ""
-#: appEditors/appGeoEditor.py:1429 appEditors/FlatCAMGrbEditor.py:6160
+#: appEditors/AppGeoEditor.py:1429 appEditors/AppGerberEditor.py:6160
#: appTools/ToolTransform.py:889
msgid "Applying Buffer"
msgstr ""
-#: appEditors/appGeoEditor.py:1436 appEditors/FlatCAMGrbEditor.py:6182
+#: appEditors/AppGeoEditor.py:1436 appEditors/AppGerberEditor.py:6182
#: appTools/ToolTransform.py:910
msgid "Buffer done"
msgstr ""
-#: appEditors/appGeoEditor.py:1440 appEditors/FlatCAMGrbEditor.py:6186
+#: appEditors/AppGeoEditor.py:1440 appEditors/AppGerberEditor.py:6186
#: appTools/ToolTransform.py:879 appTools/ToolTransform.py:915
msgid "Action was not executed, due of"
msgstr ""
-#: appEditors/appGeoEditor.py:1444 appEditors/FlatCAMGrbEditor.py:6190
+#: appEditors/AppGeoEditor.py:1444 appEditors/AppGerberEditor.py:6190
msgid "Rotate ..."
msgstr ""
-#: appEditors/appGeoEditor.py:1445 appEditors/appGeoEditor.py:1494
-#: appEditors/appGeoEditor.py:1509 appEditors/FlatCAMGrbEditor.py:6191
-#: appEditors/FlatCAMGrbEditor.py:6240 appEditors/FlatCAMGrbEditor.py:6255
+#: appEditors/AppGeoEditor.py:1445 appEditors/AppGeoEditor.py:1494
+#: appEditors/AppGeoEditor.py:1509 appEditors/AppGerberEditor.py:6191
+#: appEditors/AppGerberEditor.py:6240 appEditors/AppGerberEditor.py:6255
msgid "Enter an Angle Value (degrees)"
msgstr ""
-#: appEditors/appGeoEditor.py:1453 appEditors/FlatCAMGrbEditor.py:6199
+#: appEditors/AppGeoEditor.py:1453 appEditors/AppGerberEditor.py:6199
msgid "Geometry shape rotate done"
msgstr ""
-#: appEditors/appGeoEditor.py:1456 appEditors/FlatCAMGrbEditor.py:6202
+#: appEditors/AppGeoEditor.py:1456 appEditors/AppGerberEditor.py:6202
msgid "Geometry shape rotate cancelled"
msgstr ""
-#: appEditors/appGeoEditor.py:1461 appEditors/FlatCAMGrbEditor.py:6207
+#: appEditors/AppGeoEditor.py:1461 appEditors/AppGerberEditor.py:6207
msgid "Offset on X axis ..."
msgstr ""
-#: appEditors/appGeoEditor.py:1462 appEditors/appGeoEditor.py:1479
-#: appEditors/FlatCAMGrbEditor.py:6208 appEditors/FlatCAMGrbEditor.py:6225
+#: appEditors/AppGeoEditor.py:1462 appEditors/AppGeoEditor.py:1479
+#: appEditors/AppGerberEditor.py:6208 appEditors/AppGerberEditor.py:6225
msgid "Enter a distance Value"
msgstr ""
-#: appEditors/appGeoEditor.py:1470 appEditors/FlatCAMGrbEditor.py:6216
+#: appEditors/AppGeoEditor.py:1470 appEditors/AppGerberEditor.py:6216
msgid "Geometry shape offset on X axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1473 appEditors/FlatCAMGrbEditor.py:6219
+#: appEditors/AppGeoEditor.py:1473 appEditors/AppGerberEditor.py:6219
msgid "Geometry shape offset X cancelled"
msgstr ""
-#: appEditors/appGeoEditor.py:1478 appEditors/FlatCAMGrbEditor.py:6224
+#: appEditors/AppGeoEditor.py:1478 appEditors/AppGerberEditor.py:6224
msgid "Offset on Y axis ..."
msgstr ""
-#: appEditors/appGeoEditor.py:1487 appEditors/FlatCAMGrbEditor.py:6233
+#: appEditors/AppGeoEditor.py:1487 appEditors/AppGerberEditor.py:6233
msgid "Geometry shape offset on Y axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1490
+#: appEditors/AppGeoEditor.py:1490
msgid "Geometry shape offset on Y axis canceled"
msgstr ""
-#: appEditors/appGeoEditor.py:1493 appEditors/FlatCAMGrbEditor.py:6239
+#: appEditors/AppGeoEditor.py:1493 appEditors/AppGerberEditor.py:6239
msgid "Skew on X axis ..."
msgstr ""
-#: appEditors/appGeoEditor.py:1502 appEditors/FlatCAMGrbEditor.py:6248
+#: appEditors/AppGeoEditor.py:1502 appEditors/AppGerberEditor.py:6248
msgid "Geometry shape skew on X axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1505
+#: appEditors/AppGeoEditor.py:1505
msgid "Geometry shape skew on X axis canceled"
msgstr ""
-#: appEditors/appGeoEditor.py:1508 appEditors/FlatCAMGrbEditor.py:6254
+#: appEditors/AppGeoEditor.py:1508 appEditors/AppGerberEditor.py:6254
msgid "Skew on Y axis ..."
msgstr ""
-#: appEditors/appGeoEditor.py:1517 appEditors/FlatCAMGrbEditor.py:6263
+#: appEditors/AppGeoEditor.py:1517 appEditors/AppGerberEditor.py:6263
msgid "Geometry shape skew on Y axis done"
msgstr ""
-#: appEditors/appGeoEditor.py:1520
+#: appEditors/AppGeoEditor.py:1520
msgid "Geometry shape skew on Y axis canceled"
msgstr ""
-#: appEditors/appGeoEditor.py:1950 appEditors/appGeoEditor.py:2021
-#: appEditors/FlatCAMGrbEditor.py:1444 appEditors/FlatCAMGrbEditor.py:1522
+#: appEditors/AppGeoEditor.py:1950 appEditors/AppGeoEditor.py:2021
+#: appEditors/AppGerberEditor.py:1444 appEditors/AppGerberEditor.py:1522
msgid "Click on Center point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:1963 appEditors/FlatCAMGrbEditor.py:1454
+#: appEditors/AppGeoEditor.py:1963 appEditors/AppGerberEditor.py:1454
msgid "Click on Perimeter point to complete ..."
msgstr ""
-#: appEditors/appGeoEditor.py:1995
+#: appEditors/AppGeoEditor.py:1995
msgid "Done. Adding Circle completed."
msgstr ""
-#: appEditors/appGeoEditor.py:2049 appEditors/FlatCAMGrbEditor.py:1555
+#: appEditors/AppGeoEditor.py:2049 appEditors/AppGerberEditor.py:1555
msgid "Click on Start point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2051 appEditors/FlatCAMGrbEditor.py:1557
+#: appEditors/AppGeoEditor.py:2051 appEditors/AppGerberEditor.py:1557
msgid "Click on Point3 ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2053 appEditors/FlatCAMGrbEditor.py:1559
+#: appEditors/AppGeoEditor.py:2053 appEditors/AppGerberEditor.py:1559
msgid "Click on Stop point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2058 appEditors/FlatCAMGrbEditor.py:1564
+#: appEditors/AppGeoEditor.py:2058 appEditors/AppGerberEditor.py:1564
msgid "Click on Stop point to complete ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2060 appEditors/FlatCAMGrbEditor.py:1566
+#: appEditors/AppGeoEditor.py:2060 appEditors/AppGerberEditor.py:1566
msgid "Click on Point2 to complete ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2062 appEditors/FlatCAMGrbEditor.py:1568
+#: appEditors/AppGeoEditor.py:2062 appEditors/AppGerberEditor.py:1568
msgid "Click on Center point to complete ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2074
+#: appEditors/AppGeoEditor.py:2074
#, python-format
msgid "Direction: %s"
msgstr ""
-#: appEditors/appGeoEditor.py:2088 appEditors/FlatCAMGrbEditor.py:1594
+#: appEditors/AppGeoEditor.py:2088 appEditors/AppGerberEditor.py:1594
msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2091 appEditors/FlatCAMGrbEditor.py:1597
+#: appEditors/AppGeoEditor.py:2091 appEditors/AppGerberEditor.py:1597
msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2094 appEditors/FlatCAMGrbEditor.py:1600
+#: appEditors/AppGeoEditor.py:2094 appEditors/AppGerberEditor.py:1600
msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2235
+#: appEditors/AppGeoEditor.py:2235
msgid "Done. Arc completed."
msgstr ""
-#: appEditors/appGeoEditor.py:2266 appEditors/appGeoEditor.py:2339
+#: appEditors/AppGeoEditor.py:2266 appEditors/AppGeoEditor.py:2339
msgid "Click on 1st corner ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2278
+#: appEditors/AppGeoEditor.py:2278
msgid "Click on opposite corner to complete ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2308
+#: appEditors/AppGeoEditor.py:2308
msgid "Done. Rectangle completed."
msgstr ""
-#: appEditors/appGeoEditor.py:2383
+#: appEditors/AppGeoEditor.py:2383
msgid "Done. Polygon completed."
msgstr ""
-#: appEditors/appGeoEditor.py:2397 appEditors/appGeoEditor.py:2462
-#: appEditors/FlatCAMGrbEditor.py:1102 appEditors/FlatCAMGrbEditor.py:1322
+#: appEditors/AppGeoEditor.py:2397 appEditors/AppGeoEditor.py:2462
+#: appEditors/AppGerberEditor.py:1102 appEditors/AppGerberEditor.py:1322
msgid "Backtracked one point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2440
+#: appEditors/AppGeoEditor.py:2440
msgid "Done. Path completed."
msgstr ""
-#: appEditors/appGeoEditor.py:2599
+#: appEditors/AppGeoEditor.py:2599
msgid "No shape selected. Select a shape to explode"
msgstr ""
-#: appEditors/appGeoEditor.py:2632
+#: appEditors/AppGeoEditor.py:2632
msgid "Done. Polygons exploded into lines."
msgstr ""
-#: appEditors/appGeoEditor.py:2664
+#: appEditors/AppGeoEditor.py:2664
msgid "MOVE: No shape selected. Select a shape to move"
msgstr ""
-#: appEditors/appGeoEditor.py:2667 appEditors/appGeoEditor.py:2687
+#: appEditors/AppGeoEditor.py:2667 appEditors/AppGeoEditor.py:2687
msgid " MOVE: Click on reference point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2672
+#: appEditors/AppGeoEditor.py:2672
msgid " Click on destination point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2712
+#: appEditors/AppGeoEditor.py:2712
msgid "Done. Geometry(s) Move completed."
msgstr ""
-#: appEditors/appGeoEditor.py:2845
+#: appEditors/AppGeoEditor.py:2845
msgid "Done. Geometry(s) Copy completed."
msgstr ""
-#: appEditors/appGeoEditor.py:2876 appEditors/FlatCAMGrbEditor.py:897
+#: appEditors/AppGeoEditor.py:2876 appEditors/AppGerberEditor.py:897
msgid "Click on 1st point ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2900
+#: appEditors/AppGeoEditor.py:2900
msgid "Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. Error"
msgstr ""
-#: appEditors/appGeoEditor.py:2908
+#: appEditors/AppGeoEditor.py:2908
msgid "No text to add."
msgstr ""
-#: appEditors/appGeoEditor.py:2918
+#: appEditors/AppGeoEditor.py:2918
msgid " Done. Adding Text completed."
msgstr ""
-#: appEditors/appGeoEditor.py:2955
+#: appEditors/AppGeoEditor.py:2955
msgid "Create buffer geometry ..."
msgstr ""
-#: appEditors/appGeoEditor.py:2990 appEditors/FlatCAMGrbEditor.py:5153
+#: appEditors/AppGeoEditor.py:2990 appEditors/AppGerberEditor.py:5153
msgid "Done. Buffer Tool completed."
msgstr ""
-#: appEditors/appGeoEditor.py:3018
+#: appEditors/AppGeoEditor.py:3018
msgid "Done. Buffer Int Tool completed."
msgstr ""
-#: appEditors/appGeoEditor.py:3046
+#: appEditors/AppGeoEditor.py:3046
msgid "Done. Buffer Ext Tool completed."
msgstr ""
-#: appEditors/appGeoEditor.py:3095 appEditors/FlatCAMGrbEditor.py:2160
+#: appEditors/AppGeoEditor.py:3095 appEditors/AppGerberEditor.py:2160
msgid "Select a shape to act as deletion area ..."
msgstr ""
-#: appEditors/appGeoEditor.py:3097 appEditors/appGeoEditor.py:3123
-#: appEditors/appGeoEditor.py:3129 appEditors/FlatCAMGrbEditor.py:2162
+#: appEditors/AppGeoEditor.py:3097 appEditors/AppGeoEditor.py:3123
+#: appEditors/AppGeoEditor.py:3129 appEditors/AppGerberEditor.py:2162
msgid "Click to pick-up the erase shape..."
msgstr ""
-#: appEditors/appGeoEditor.py:3133 appEditors/FlatCAMGrbEditor.py:2221
+#: appEditors/AppGeoEditor.py:3133 appEditors/AppGerberEditor.py:2221
msgid "Click to erase ..."
msgstr ""
-#: appEditors/appGeoEditor.py:3162 appEditors/FlatCAMGrbEditor.py:2254
+#: appEditors/AppGeoEditor.py:3162 appEditors/AppGerberEditor.py:2254
msgid "Done. Eraser tool action completed."
msgstr ""
-#: appEditors/appGeoEditor.py:3212
+#: appEditors/AppGeoEditor.py:3212
msgid "Create Paint geometry ..."
msgstr ""
-#: appEditors/appGeoEditor.py:3225 appEditors/FlatCAMGrbEditor.py:2417
+#: appEditors/AppGeoEditor.py:3225 appEditors/AppGerberEditor.py:2417
msgid "Shape transformations ..."
msgstr ""
-#: appEditors/appGeoEditor.py:3281
+#: appEditors/AppGeoEditor.py:3281
#: appGUI/preferences/geometry/GeometryEditorPrefGroupUI.py:27
msgid "Geometry Editor"
msgstr ""
-#: appEditors/appGeoEditor.py:3287 appEditors/FlatCAMGrbEditor.py:2495
-#: appEditors/FlatCAMGrbEditor.py:3951 appGUI/ObjectUI.py:282 appGUI/ObjectUI.py:1394
+#: appEditors/AppGeoEditor.py:3287 appEditors/AppGerberEditor.py:2495
+#: appEditors/AppGerberEditor.py:3951 appGUI/ObjectUI.py:282 appGUI/ObjectUI.py:1394
#: appGUI/ObjectUI.py:2256 appTools/ToolCutOut.py:95 appTools/ToolTransform.py:92
msgid "Type"
msgstr ""
-#: appEditors/appGeoEditor.py:3287 appGUI/ObjectUI.py:221 appGUI/ObjectUI.py:521
+#: appEditors/AppGeoEditor.py:3287 appGUI/ObjectUI.py:221 appGUI/ObjectUI.py:521
#: appGUI/ObjectUI.py:1330 appGUI/ObjectUI.py:2165 appGUI/ObjectUI.py:2469
#: appGUI/ObjectUI.py:2536 appTools/ToolCalibration.py:234 appTools/ToolFiducials.py:70
msgid "Name"
msgstr ""
-#: appEditors/appGeoEditor.py:3539
+#: appEditors/AppGeoEditor.py:3539
msgid "Ring"
msgstr ""
-#: appEditors/appGeoEditor.py:3541
+#: appEditors/AppGeoEditor.py:3541
msgid "Line"
msgstr ""
-#: appEditors/appGeoEditor.py:3543 appGUI/MainGUI.py:1446 appGUI/ObjectUI.py:1150
+#: appEditors/AppGeoEditor.py:3543 appGUI/MainGUI.py:1446 appGUI/ObjectUI.py:1150
#: appGUI/ObjectUI.py:2005 appGUI/preferences/geometry/GeometryAdvOptPrefGroupUI.py:226
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:299
#: appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:328
@@ -2443,243 +2443,243 @@ msgstr ""
msgid "Polygon"
msgstr ""
-#: appEditors/appGeoEditor.py:3545
+#: appEditors/AppGeoEditor.py:3545
msgid "Multi-Line"
msgstr ""
-#: appEditors/appGeoEditor.py:3547
+#: appEditors/AppGeoEditor.py:3547
msgid "Multi-Polygon"
msgstr ""
-#: appEditors/appGeoEditor.py:3554
+#: appEditors/AppGeoEditor.py:3554
msgid "Geo Elem"
msgstr ""
-#: appEditors/appGeoEditor.py:4007
+#: appEditors/AppGeoEditor.py:4007
msgid "Editing MultiGeo Geometry, tool"
msgstr ""
-#: appEditors/appGeoEditor.py:4009
+#: appEditors/AppGeoEditor.py:4009
msgid "with diameter"
msgstr ""
-#: appEditors/appGeoEditor.py:4081
+#: appEditors/AppGeoEditor.py:4081
msgid "Grid Snap enabled."
msgstr ""
-#: appEditors/appGeoEditor.py:4085
+#: appEditors/AppGeoEditor.py:4085
msgid "Grid Snap disabled."
msgstr ""
-#: appEditors/appGeoEditor.py:4446 appGUI/MainGUI.py:3046 appGUI/MainGUI.py:3092
+#: appEditors/AppGeoEditor.py:4446 appGUI/MainGUI.py:3046 appGUI/MainGUI.py:3092
#: appGUI/MainGUI.py:3110 appGUI/MainGUI.py:3254 appGUI/MainGUI.py:3293
#: appGUI/MainGUI.py:3305 appGUI/MainGUI.py:3322
msgid "Click on target point."
msgstr ""
-#: appEditors/appGeoEditor.py:4762 appEditors/appGeoEditor.py:4797
+#: appEditors/AppGeoEditor.py:4762 appEditors/AppGeoEditor.py:4797
msgid "A selection of at least 2 geo items is required to do Intersection."
msgstr ""
-#: appEditors/appGeoEditor.py:4883 appEditors/appGeoEditor.py:4987
+#: appEditors/AppGeoEditor.py:4883 appEditors/AppGeoEditor.py:4987
msgid ""
"Negative buffer value is not accepted. Use Buffer interior to generate an 'inside' shape"
msgstr ""
-#: appEditors/appGeoEditor.py:4893 appEditors/appGeoEditor.py:4946
-#: appEditors/appGeoEditor.py:4996
+#: appEditors/AppGeoEditor.py:4893 appEditors/AppGeoEditor.py:4946
+#: appEditors/AppGeoEditor.py:4996
msgid "Nothing selected for buffering."
msgstr ""
-#: appEditors/appGeoEditor.py:4898 appEditors/appGeoEditor.py:4950
-#: appEditors/appGeoEditor.py:5001
+#: appEditors/AppGeoEditor.py:4898 appEditors/AppGeoEditor.py:4950
+#: appEditors/AppGeoEditor.py:5001
msgid "Invalid distance for buffering."
msgstr ""
-#: appEditors/appGeoEditor.py:4922 appEditors/appGeoEditor.py:5021
+#: appEditors/AppGeoEditor.py:4922 appEditors/AppGeoEditor.py:5021
msgid "Failed, the result is empty. Choose a different buffer value."
msgstr ""
-#: appEditors/appGeoEditor.py:4933
+#: appEditors/AppGeoEditor.py:4933
msgid "Full buffer geometry created."
msgstr ""
-#: appEditors/appGeoEditor.py:4939
+#: appEditors/AppGeoEditor.py:4939
msgid "Negative buffer value is not accepted."
msgstr ""
-#: appEditors/appGeoEditor.py:4970
+#: appEditors/AppGeoEditor.py:4970
msgid "Failed, the result is empty. Choose a smaller buffer value."
msgstr ""
-#: appEditors/appGeoEditor.py:4980
+#: appEditors/AppGeoEditor.py:4980
msgid "Interior buffer geometry created."
msgstr ""
-#: appEditors/appGeoEditor.py:5031
+#: appEditors/AppGeoEditor.py:5031
msgid "Exterior buffer geometry created."
msgstr ""
-#: appEditors/appGeoEditor.py:5037
+#: appEditors/AppGeoEditor.py:5037
#, python-format
msgid "Could not do Paint. Overlap value has to be less than 100%%."
msgstr ""
-#: appEditors/appGeoEditor.py:5044
+#: appEditors/AppGeoEditor.py:5044
msgid "Nothing selected for painting."
msgstr ""
-#: appEditors/appGeoEditor.py:5050
+#: appEditors/AppGeoEditor.py:5050
msgid "Invalid value for"
msgstr ""
-#: appEditors/appGeoEditor.py:5109
+#: appEditors/AppGeoEditor.py:5109
msgid ""
"Could not do Paint. Try a different combination of parameters. Or a different method of "
"Paint"
msgstr ""
-#: appEditors/appGeoEditor.py:5120
+#: appEditors/AppGeoEditor.py:5120
msgid "Paint done."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:211
+#: appEditors/AppGerberEditor.py:211
msgid "To add an Pad first select a aperture in Aperture Table"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:218 appEditors/FlatCAMGrbEditor.py:418
+#: appEditors/AppGerberEditor.py:218 appEditors/AppGerberEditor.py:418
msgid "Aperture size is zero. It needs to be greater than zero."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:371 appEditors/FlatCAMGrbEditor.py:684
+#: appEditors/AppGerberEditor.py:371 appEditors/AppGerberEditor.py:684
msgid "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:383
+#: appEditors/AppGerberEditor.py:383
msgid "Done. Adding Pad completed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:410
+#: appEditors/AppGerberEditor.py:410
msgid "To add an Pad Array first select a aperture in Aperture Table"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:490
+#: appEditors/AppGerberEditor.py:490
msgid "Click on the Pad Circular Array Start position"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:710
+#: appEditors/AppGerberEditor.py:710
msgid "Too many Pads for the selected spacing angle."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:733
+#: appEditors/AppGerberEditor.py:733
msgid "Done. Pad Array added."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:758
+#: appEditors/AppGerberEditor.py:758
msgid "Select shape(s) and then click ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:770
+#: appEditors/AppGerberEditor.py:770
msgid "Failed. Nothing selected."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:786
+#: appEditors/AppGerberEditor.py:786
msgid "Failed. Poligonize works only on geometries belonging to the same aperture."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:840
+#: appEditors/AppGerberEditor.py:840
msgid "Done. Poligonize completed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:895 appEditors/FlatCAMGrbEditor.py:1119
-#: appEditors/FlatCAMGrbEditor.py:1143
+#: appEditors/AppGerberEditor.py:895 appEditors/AppGerberEditor.py:1119
+#: appEditors/AppGerberEditor.py:1143
msgid "Corner Mode 1: 45 degrees ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:907 appEditors/FlatCAMGrbEditor.py:1219
+#: appEditors/AppGerberEditor.py:907 appEditors/AppGerberEditor.py:1219
msgid "Click on next Point or click Right mouse button to complete ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1107 appEditors/FlatCAMGrbEditor.py:1140
+#: appEditors/AppGerberEditor.py:1107 appEditors/AppGerberEditor.py:1140
msgid "Corner Mode 2: Reverse 45 degrees ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1110 appEditors/FlatCAMGrbEditor.py:1137
+#: appEditors/AppGerberEditor.py:1110 appEditors/AppGerberEditor.py:1137
msgid "Corner Mode 3: 90 degrees ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1113 appEditors/FlatCAMGrbEditor.py:1134
+#: appEditors/AppGerberEditor.py:1113 appEditors/AppGerberEditor.py:1134
msgid "Corner Mode 4: Reverse 90 degrees ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1116 appEditors/FlatCAMGrbEditor.py:1131
+#: appEditors/AppGerberEditor.py:1116 appEditors/AppGerberEditor.py:1131
msgid "Corner Mode 5: Free angle ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1193 appEditors/FlatCAMGrbEditor.py:1358
-#: appEditors/FlatCAMGrbEditor.py:1397
+#: appEditors/AppGerberEditor.py:1193 appEditors/AppGerberEditor.py:1358
+#: appEditors/AppGerberEditor.py:1397
msgid "Track Mode 1: 45 degrees ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1338 appEditors/FlatCAMGrbEditor.py:1392
+#: appEditors/AppGerberEditor.py:1338 appEditors/AppGerberEditor.py:1392
msgid "Track Mode 2: Reverse 45 degrees ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1343 appEditors/FlatCAMGrbEditor.py:1387
+#: appEditors/AppGerberEditor.py:1343 appEditors/AppGerberEditor.py:1387
msgid "Track Mode 3: 90 degrees ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1348 appEditors/FlatCAMGrbEditor.py:1382
+#: appEditors/AppGerberEditor.py:1348 appEditors/AppGerberEditor.py:1382
msgid "Track Mode 4: Reverse 90 degrees ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1353 appEditors/FlatCAMGrbEditor.py:1377
+#: appEditors/AppGerberEditor.py:1353 appEditors/AppGerberEditor.py:1377
msgid "Track Mode 5: Free angle ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1787
+#: appEditors/AppGerberEditor.py:1787
msgid "Scale the selected Gerber apertures ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1829
+#: appEditors/AppGerberEditor.py:1829
msgid "Buffer the selected apertures ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1871
+#: appEditors/AppGerberEditor.py:1871
msgid "Mark polygon areas in the edited Gerber ..."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:1937
+#: appEditors/AppGerberEditor.py:1937
msgid "Nothing selected to move"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2062
+#: appEditors/AppGerberEditor.py:2062
msgid "Done. Apertures Move completed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2144
+#: appEditors/AppGerberEditor.py:2144
msgid "Done. Apertures copied."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2462 appGUI/MainGUI.py:1477
+#: appEditors/AppGerberEditor.py:2462 appGUI/MainGUI.py:1477
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:27
msgid "Gerber Editor"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2482 appGUI/ObjectUI.py:247 appTools/ToolProperties.py:159
+#: appEditors/AppGerberEditor.py:2482 appGUI/ObjectUI.py:247 appTools/ToolProperties.py:159
msgid "Apertures"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2484 appGUI/ObjectUI.py:249
+#: appEditors/AppGerberEditor.py:2484 appGUI/ObjectUI.py:249
msgid "Apertures Table for the Gerber Object."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Code"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282 appGUI/preferences/general/GeneralAPPSetGroupUI.py:103
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:167
#: appGUI/preferences/tools/Tools2CThievingPrefGroupUI.py:196
@@ -2689,45 +2689,45 @@ msgstr ""
msgid "Size"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2495 appEditors/FlatCAMGrbEditor.py:3951
+#: appEditors/AppGerberEditor.py:2495 appEditors/AppGerberEditor.py:3951
#: appGUI/ObjectUI.py:282
msgid "Dim"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2500 appGUI/ObjectUI.py:286
+#: appEditors/AppGerberEditor.py:2500 appGUI/ObjectUI.py:286
msgid "Index"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2502 appEditors/FlatCAMGrbEditor.py:2531
+#: appEditors/AppGerberEditor.py:2502 appEditors/AppGerberEditor.py:2531
#: appGUI/ObjectUI.py:288
msgid "Aperture Code"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2504 appGUI/ObjectUI.py:290
+#: appEditors/AppGerberEditor.py:2504 appGUI/ObjectUI.py:290
msgid "Type of aperture: circular, rectangle, macros etc"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2506 appGUI/ObjectUI.py:292
+#: appEditors/AppGerberEditor.py:2506 appGUI/ObjectUI.py:292
msgid "Aperture Size:"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2508 appGUI/ObjectUI.py:294
+#: appEditors/AppGerberEditor.py:2508 appGUI/ObjectUI.py:294
msgid ""
"Aperture Dimensions:\n"
" - (width, height) for R, O type.\n"
" - (dia, nVertices) for P type"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2532
+#: appEditors/AppGerberEditor.py:2532
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:58
msgid "Code for the new aperture"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2541
+#: appEditors/AppGerberEditor.py:2541
msgid "Aperture Size"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2543
+#: appEditors/AppGerberEditor.py:2543
msgid ""
"Size for the new aperture.\n"
"If aperture type is 'R' or 'O' then\n"
@@ -2736,11 +2736,11 @@ msgid ""
"sqrt(width**2 + height**2)"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2557
+#: appEditors/AppGerberEditor.py:2557
msgid "Aperture Type"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2559
+#: appEditors/AppGerberEditor.py:2559
msgid ""
"Select the type of new aperture. Can be:\n"
"C = circular\n"
@@ -2748,30 +2748,30 @@ msgid ""
"O = oblong"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2570
+#: appEditors/AppGerberEditor.py:2570
msgid "Aperture Dim"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2572
+#: appEditors/AppGerberEditor.py:2572
msgid ""
"Dimensions for the new aperture.\n"
"Active only for rectangular apertures (type R).\n"
"The format is (width, height)"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2581
+#: appEditors/AppGerberEditor.py:2581
msgid "Add/Delete Aperture"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2583
+#: appEditors/AppGerberEditor.py:2583
msgid "Add/Delete an aperture in the aperture table"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2592
+#: appEditors/AppGerberEditor.py:2592
msgid "Add a new aperture to the aperture list."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2595 appEditors/FlatCAMGrbEditor.py:2743
+#: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743
#: appGUI/MainGUI.py:748 appGUI/MainGUI.py:1068 appGUI/MainGUI.py:1527
#: appGUI/MainGUI.py:2099 appGUI/MainGUI.py:4514 appGUI/ObjectUI.py:1525
#: appObjects/FlatCAMGeometry.py:563 appTools/ToolIsolation.py:298
@@ -2781,28 +2781,28 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2597
+#: appEditors/AppGerberEditor.py:2597
msgid "Delete a aperture in the aperture list"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2614
+#: appEditors/AppGerberEditor.py:2614
msgid "Buffer Aperture"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2616
+#: appEditors/AppGerberEditor.py:2616
msgid "Buffer a aperture in the aperture list"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2629
+#: appEditors/AppGerberEditor.py:2629
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:195
msgid "Buffer distance"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2630
+#: appEditors/AppGerberEditor.py:2630
msgid "Buffer corner"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2632
+#: appEditors/AppGerberEditor.py:2632
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded.\n"
@@ -2811,95 +2811,95 @@ msgid ""
"corner"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2662
+#: appEditors/AppGerberEditor.py:2662
msgid "Scale Aperture"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2664
+#: appEditors/AppGerberEditor.py:2664
msgid "Scale a aperture in the aperture list"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2672
+#: appEditors/AppGerberEditor.py:2672
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:210
msgid "Scale factor"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2674
+#: appEditors/AppGerberEditor.py:2674
msgid ""
"The factor by which to scale the selected aperture.\n"
"Values can be between 0.0000 and 999.9999"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2702
+#: appEditors/AppGerberEditor.py:2702
msgid "Mark polygons"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2704
+#: appEditors/AppGerberEditor.py:2704
msgid "Mark the polygon areas."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2712
+#: appEditors/AppGerberEditor.py:2712
msgid "Area UPPER threshold"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2714
+#: appEditors/AppGerberEditor.py:2714
msgid ""
"The threshold value, all areas less than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2721
+#: appEditors/AppGerberEditor.py:2721
msgid "Area LOWER threshold"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2723
+#: appEditors/AppGerberEditor.py:2723
msgid ""
"The threshold value, all areas more than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2737
+#: appEditors/AppGerberEditor.py:2737
msgid "Mark"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2739
+#: appEditors/AppGerberEditor.py:2739
msgid "Mark the polygons that fit within limits."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2745
+#: appEditors/AppGerberEditor.py:2745
msgid "Delete all the marked polygons."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2751
+#: appEditors/AppGerberEditor.py:2751
msgid "Clear all the markings."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2771 appGUI/MainGUI.py:1040 appGUI/MainGUI.py:2072
+#: appEditors/AppGerberEditor.py:2771 appGUI/MainGUI.py:1040 appGUI/MainGUI.py:2072
#: appGUI/MainGUI.py:4511
msgid "Add Pad Array"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2773
+#: appEditors/AppGerberEditor.py:2773
msgid "Add an array of pads (linear or circular array)"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2779
+#: appEditors/AppGerberEditor.py:2779
msgid ""
"Select the type of pads array to create.\n"
"It can be Linear X(Y) or Circular"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2790
+#: appEditors/AppGerberEditor.py:2790
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:95
msgid "Nr of pads"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2792
+#: appEditors/AppGerberEditor.py:2792
#: appGUI/preferences/gerber/GerberEditorPrefGroupUI.py:97
msgid "Specify how many pads to be in the array."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:2841
+#: appEditors/AppGerberEditor.py:2841
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -2907,156 +2907,156 @@ msgid ""
"Max value is: 360.00 degrees."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3335 appEditors/FlatCAMGrbEditor.py:3339
+#: appEditors/AppGerberEditor.py:3335 appEditors/AppGerberEditor.py:3339
msgid "Aperture code value is missing or wrong format. Add it and retry."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3375
+#: appEditors/AppGerberEditor.py:3375
msgid ""
"Aperture dimensions value is missing or wrong format. Add it in format (width, height) "
"and retry."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3388
+#: appEditors/AppGerberEditor.py:3388
msgid "Aperture size value is missing or wrong format. Add it and retry."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3399
+#: appEditors/AppGerberEditor.py:3399
msgid "Aperture already in the aperture table."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3406
+#: appEditors/AppGerberEditor.py:3406
msgid "Added new aperture with code"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3438
+#: appEditors/AppGerberEditor.py:3438
msgid " Select an aperture in Aperture Table"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3446
+#: appEditors/AppGerberEditor.py:3446
msgid "Select an aperture in Aperture Table -->"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3460
+#: appEditors/AppGerberEditor.py:3460
msgid "Deleted aperture with code"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3528
+#: appEditors/AppGerberEditor.py:3528
msgid "Dimensions need two float values separated by comma."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:3537
+#: appEditors/AppGerberEditor.py:3537
msgid "Dimensions edited."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4066
+#: appEditors/AppGerberEditor.py:4066
msgid "Loading Gerber into Editor"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4194
+#: appEditors/AppGerberEditor.py:4194
msgid "Setting up the UI"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4195
+#: appEditors/AppGerberEditor.py:4195
msgid "Adding geometry finished. Preparing the GUI"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4204
+#: appEditors/AppGerberEditor.py:4204
msgid "Finished loading the Gerber object into the editor."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4345
+#: appEditors/AppGerberEditor.py:4345
msgid "There are no Aperture definitions in the file. Aborting Gerber creation."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4347 appObjects/AppObject.py:133
+#: appEditors/AppGerberEditor.py:4347 appObjects/AppObject.py:133
#: appObjects/FlatCAMGeometry.py:1786 appParsers/ParseExcellon.py:896
#: appTools/ToolPcbWizard.py:432 app_Main.py:8589 app_Main.py:8653 app_Main.py:8784
#: app_Main.py:8849 app_Main.py:9501
msgid "An internal error has occurred. See shell.\n"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4355
+#: appEditors/AppGerberEditor.py:4355
msgid "Creating Gerber."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4367
+#: appEditors/AppGerberEditor.py:4367
msgid "Done. Gerber editing finished."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4383
+#: appEditors/AppGerberEditor.py:4383
msgid "Cancelled. No aperture is selected"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4538 app_Main.py:6122
+#: appEditors/AppGerberEditor.py:4538 app_Main.py:6122
msgid "Coordinates copied to clipboard."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4985
+#: appEditors/AppGerberEditor.py:4985
msgid "Failed. No aperture geometry is selected."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:4994 appEditors/FlatCAMGrbEditor.py:5265
+#: appEditors/AppGerberEditor.py:4994 appEditors/AppGerberEditor.py:5265
msgid "Done. Apertures geometry deleted."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:5137
+#: appEditors/AppGerberEditor.py:5137
msgid "No aperture to buffer. Select at least one aperture and try again."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:5149
+#: appEditors/AppGerberEditor.py:5149
msgid "Failed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:5168
+#: appEditors/AppGerberEditor.py:5168
msgid "Scale factor value is missing or wrong format. Add it and retry."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:5200
+#: appEditors/AppGerberEditor.py:5200
msgid "No aperture to scale. Select at least one aperture and try again."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:5216
+#: appEditors/AppGerberEditor.py:5216
msgid "Done. Scale Tool completed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:5254
+#: appEditors/AppGerberEditor.py:5254
msgid "Polygons marked."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:5257
+#: appEditors/AppGerberEditor.py:5257
msgid "No polygons were marked. None fit within the limits."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:5985
+#: appEditors/AppGerberEditor.py:5985
msgid "Rotation action was not executed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:6027 app_Main.py:5556 app_Main.py:5604
+#: appEditors/AppGerberEditor.py:6027 app_Main.py:5556 app_Main.py:5604
msgid "Flip action was not executed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:6067
+#: appEditors/AppGerberEditor.py:6067
msgid "Skew action was not executed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:6106
+#: appEditors/AppGerberEditor.py:6106
msgid "Scale action was not executed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:6150
+#: appEditors/AppGerberEditor.py:6150
msgid "Offset action was not executed."
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:6236
+#: appEditors/AppGerberEditor.py:6236
msgid "Geometry shape offset Y cancelled"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:6251
+#: appEditors/AppGerberEditor.py:6251
msgid "Geometry shape skew X cancelled"
msgstr ""
-#: appEditors/FlatCAMGrbEditor.py:6266
+#: appEditors/AppGerberEditor.py:6266
msgid "Geometry shape skew Y cancelled"
msgstr ""