diff --git a/FlatCAMApp.py b/FlatCAMApp.py
index ef3869b6..108924dd 100644
--- a/FlatCAMApp.py
+++ b/FlatCAMApp.py
@@ -7495,7 +7495,7 @@ class App(QtCore.QObject):
def on_file_savegerber(self):
"""
- Callback for menu item File->Export Gerber.
+ Callback for menu item in Project context menu.
:return: None
"""
@@ -7504,7 +7504,7 @@ class App(QtCore.QObject):
obj = self.collection.get_active()
if obj is None:
- self.inform.emit('[WARNING_NOTCL] %S' %
+ self.inform.emit('[WARNING_NOTCL] %s' %
_("No object selected. Please select an Gerber object to export."))
return
@@ -7539,7 +7539,7 @@ class App(QtCore.QObject):
def on_file_saveexcellon(self):
"""
- Callback for menu item File->Export Gerber.
+ Callback for menu item in project context menu.
:return: None
"""
@@ -8671,14 +8671,14 @@ class App(QtCore.QObject):
with self.proc_container.new(_("Exporting Gerber")) as proc:
- def job_thread_exc(app_obj):
+ def job_thread_grb(app_obj):
ret = make_gerber()
if ret == 'fail':
self.inform.emit('[ERROR_NOTCL] %s' %
_('Could not export Gerber file.'))
return
- self.worker_task.emit({'fcn': job_thread_exc, 'params': [self]})
+ self.worker_task.emit({'fcn': job_thread_grb, 'params': [self]})
else:
ret = make_gerber()
if ret == 'fail':
@@ -8912,10 +8912,8 @@ class App(QtCore.QObject):
app_obj.progress.emit(0)
return "fail"
except ParseError as err:
- app_obj.inform.emit(_("{e_code} Failed to parse file: {name}. {error}").format(
- e_code=_("[ERROR_NOTCL]"),
- name=filename,
- error=str(err)))
+ app_obj.inform.emit('[ERROR_NOTCL] %s: %s. %s' %
+ (_("Failed to parse file"), filename, str(err)))
app_obj.progress.emit(0)
self.log.error(str(err))
return "fail"
diff --git a/FlatCAMObj.py b/FlatCAMObj.py
index e2670a65..42f7e1b6 100644
--- a/FlatCAMObj.py
+++ b/FlatCAMObj.py
@@ -1503,6 +1503,7 @@ class FlatCAMGerber(FlatCAMObj, Gerber):
:return: Gerber_code
"""
+ log.debug("FlatCAMGerber.export_gerber() --> Generating the Gerber code from the selected Gerber file")
def tz_format(x, y, fac):
x_c = x * fac
@@ -1650,6 +1651,7 @@ class FlatCAMGerber(FlatCAMObj, Gerber):
for geo_elem in self.apertures[apid]['geometry']:
if 'follow' in geo_elem:
geo = geo_elem['follow']
+ print(geo)
if not geo.is_empty:
if isinstance(geo, Point):
if g_zeros == 'T':
diff --git a/README.md b/README.md
index 1674667d..2a6d9ec8 100644
--- a/README.md
+++ b/README.md
@@ -19,6 +19,10 @@ CAD program, and create G-Code for Isolation routing.
- modified FlatCAMObj.py file to the new string format that will allow easier translations
- modified camlib.py, FlatCAMAPp.py and ObjectCollection.py files to the new string format that will allow easier translations
- updated the POT file and the German language
+- fixed issue when loading unbuffered a Gerber file that has negative regions
+- fixed Panelize Tool to save the aperture geometries into the panel apertures. Also made the tool faster by removing the buffering at the end of the job
+- modified FlatCAMEditor's files to the new string format that will allow easier translations
+- updated POT file and the Romanian translation
8.09.2019
diff --git a/camlib.py b/camlib.py
index 9b7a1f1c..61f97f80 100644
--- a/camlib.py
+++ b/camlib.py
@@ -3376,8 +3376,17 @@ class Gerber (Geometry):
new_poly = cascaded_union(poly_buffer)
new_poly = new_poly.buffer(0, int(self.steps_per_circle / 4))
log.warning("Union done.")
+
if current_polarity == 'D':
- self.solid_geometry = self.solid_geometry.union(new_poly)
+ try:
+ self.solid_geometry = self.solid_geometry.union(new_poly)
+ except Exception as e:
+ # in case in the new_poly are some self intersections try to avoid making union with them
+ for poly in new_poly:
+ try:
+ self.solid_geometry = self.solid_geometry.union(poly)
+ except:
+ pass
else:
self.solid_geometry = self.solid_geometry.difference(new_poly)
except Exception as err:
@@ -6313,7 +6322,7 @@ class CNCjob(Geometry):
self.z_depthpercut = abs(self.z_cut)
if self.z_move is None:
- self.app.inform.emit('[ERROR_NOTCL] %S' %
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
_("Travel Z parameter is None or zero."))
return 'fail'
diff --git a/flatcamEditors/FlatCAMExcEditor.py b/flatcamEditors/FlatCAMExcEditor.py
index d26ab67b..02a89557 100644
--- a/flatcamEditors/FlatCAMExcEditor.py
+++ b/flatcamEditors/FlatCAMExcEditor.py
@@ -50,7 +50,8 @@ class FCDrillAdd(FCShapeTool):
item = self.draw_app.tools_table_exc.item((self.draw_app.last_tool_selected - 1), 1)
self.draw_app.tools_table_exc.setCurrentItem(item)
except KeyError:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] To add a drill first select a tool"))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("To add a drill first select a tool"))
self.draw_app.select_tool("drill_select")
return
@@ -112,7 +113,8 @@ class FCDrillAdd(FCShapeTool):
self.geometry = DrawToolShape(self.util_shape(self.points))
self.draw_app.in_action = False
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done. Drill added."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Drill added."))
class FCDrillArray(FCShapeTool):
@@ -154,7 +156,8 @@ class FCDrillArray(FCShapeTool):
item = self.draw_app.tools_table_exc.item((self.draw_app.last_tool_selected - 1), 1)
self.draw_app.tools_table_exc.setCurrentItem(item)
except KeyError:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("To add an Drill Array first select a tool in Tool Table"))
return
try:
@@ -208,11 +211,12 @@ class FCDrillArray(FCShapeTool):
self.drill_linear_angle = float(self.draw_app.linear_angle_spinner.get_value())
self.drill_angle = float(self.draw_app.drill_angle_entry.get_value())
except TypeError:
- self.draw_app.app.inform.emit(
- _("[ERROR_NOTCL] The value is not Float. Check for comma instead of dot separator."))
+ self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("The value is not Float. Check for comma instead of dot separator."))
return
except Exception as e:
- self.draw_app.app.inform.emit(_("[ERROR_NOTCL] The value is mistyped. Check the value. %s") % str(e))
+ self.draw_app.app.inform.emit('[ERROR_NOTCL] %s. %s' %
+ (_("The value is mistyped. Check the value"), str(e)))
return
if self.drill_array == 'Linear':
@@ -310,7 +314,8 @@ class FCDrillArray(FCShapeTool):
self.geometry.append(DrawToolShape(geo))
else:
if (self.drill_angle * self.drill_array_size) > 360:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] Too many drills for the selected spacing angle."))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Too many drills for the selected spacing angle."))
return
radius = distance(self.destination, self.origin)
@@ -327,7 +332,8 @@ class FCDrillArray(FCShapeTool):
geo = self.util_shape((x, y))
self.geometry.append(DrawToolShape(geo))
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done. Drill Array added."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Drill Array added."))
self.draw_app.in_action = False
self.draw_app.array_frame.hide()
return
@@ -355,7 +361,8 @@ class FCSlot(FCShapeTool):
item = self.draw_app.tools_table_exc.item((self.draw_app.last_tool_selected - 1), 1)
self.draw_app.tools_table_exc.setCurrentItem(item)
except KeyError:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] To add a slot first select a tool"))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("To add a slot first select a tool"))
self.draw_app.select_tool("drill_select")
return
@@ -412,15 +419,15 @@ class FCSlot(FCShapeTool):
slot_length = float(self.draw_app.slot_length_entry.get_value().replace(',', '.'))
self.draw_app.slot_length_entry.set_value(slot_length)
except ValueError:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] Value is missing or wrong format. "
- "Add it and retry."))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Value is missing or wrong format. Add it and retry."))
return
try:
slot_angle = float(self.draw_app.slot_angle_spinner.get_value())
except ValueError:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] Value is missing or wrong format. "
- "Add it and retry."))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Value is missing or wrong format. Add it and retry."))
return
if self.draw_app.slot_axis_radio.get_value() == 'X':
@@ -518,7 +525,8 @@ class FCSlot(FCShapeTool):
self.draw_app.in_action = False
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done. Adding Slot completed."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Adding Slot completed."))
self.draw_app.slot_frame.hide()
@@ -544,7 +552,8 @@ class FCSlotArray(FCShapeTool):
item = self.draw_app.tools_table_exc.item((self.draw_app.last_tool_selected - 1), 1)
self.draw_app.tools_table_exc.setCurrentItem(item)
except KeyError:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] To add an Slot Array first select a tool in Tool Table"))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("To add an Slot Array first select a tool in Tool Table"))
return
@@ -622,11 +631,12 @@ class FCSlotArray(FCShapeTool):
self.slot_linear_angle = float(self.draw_app.slot_array_linear_angle_spinner.get_value())
self.slot_angle = float(self.draw_app.slot_array_angle_entry.get_value())
except TypeError:
- self.draw_app.app.inform.emit(
- _("[ERROR_NOTCL] The value is not Float. Check for comma instead of dot separator."))
+ self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("The value is not Float. Check for comma instead of dot separator."))
return
except Exception as e:
- self.draw_app.app.inform.emit(_("[ERROR_NOTCL] The value is mistyped. Check the value."))
+ self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("The value is mistyped. Check the value."))
return
if self.slot_array == 'Linear':
@@ -687,15 +697,15 @@ class FCSlotArray(FCShapeTool):
slot_length = float(self.draw_app.slot_length_entry.get_value().replace(',', '.'))
self.draw_app.slot_length_entry.set_value(slot_length)
except ValueError:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] Value is missing or wrong format. "
- "Add it and retry."))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Value is missing or wrong format. Add it and retry."))
return
try:
slot_angle = float(self.draw_app.slot_angle_spinner.get_value())
except ValueError:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] Value is missing or wrong format. "
- "Add it and retry."))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Value is missing or wrong format. Add it and retry."))
return
if self.draw_app.slot_axis_radio.get_value() == 'X':
@@ -804,7 +814,8 @@ class FCSlotArray(FCShapeTool):
self.geometry.append(DrawToolShape(geo))
else:
if (self.slot_angle * self.slot_array_size) > 360:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] Too many Slots for the selected spacing angle."))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Too many Slots for the selected spacing angle."))
return
radius = distance(self.destination, self.origin)
@@ -826,7 +837,8 @@ class FCSlotArray(FCShapeTool):
self.geometry.append(DrawToolShape(geo))
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done. Slot Array added."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Slot Array added."))
self.draw_app.in_action = False
self.draw_app.slot_frame.hide()
self.draw_app.slot_array_frame.hide()
@@ -872,9 +884,8 @@ class FCDrillResize(FCShapeTool):
try:
new_dia = self.draw_app.resdrill_entry.get_value()
except:
- self.draw_app.app.inform.emit(
- _("[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize.")
- )
+ self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Resize drill(s) failed. Please enter a diameter for resize."))
return
if new_dia not in self.draw_app.olddia_newdia:
@@ -963,7 +974,8 @@ class FCDrillResize(FCShapeTool):
self.geometry.append(DrawToolShape(new_poly))
else:
# unexpected geometry so we cancel
- self.draw_app.app.inform.emit(_("[ERROR_NOTCL] Cancelled."))
+ self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Cancelled."))
return
# remove the geometry with the old size
@@ -1032,7 +1044,8 @@ class FCDrillResize(FCShapeTool):
except KeyError:
# if the exception happen here then we are not dealing with slots neither
# therefore something else is not OK so we return
- self.draw_app.app.inform.emit(_("[ERROR_NOTCL] Cancelled."))
+ self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Cancelled."))
return
# this simple hack is used so we can delete form self.draw_app.selected but
@@ -1052,9 +1065,11 @@ class FCDrillResize(FCShapeTool):
# we reactivate the signals after the after the tool editing
self.draw_app.tools_table_exc.itemChanged.connect(self.draw_app.on_tool_edit)
- self.draw_app.app.inform.emit(_("[success] Done. Drill/Slot Resize completed."))
+ self.draw_app.app.inform.emit('[success] Done. %s' %
+ _("Drill/Slot Resize completed."))
else:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] Cancelled. No drills/slots selected for resize ..."))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Cancelled. No drills/slots selected for resize ..."))
# init this set() for another use perhaps
self.selected_dia_set = set()
@@ -1137,7 +1152,8 @@ class FCDrillMove(FCShapeTool):
sel_shapes_to_be_deleted = []
self.draw_app.build_ui()
- self.draw_app.app.inform.emit(_("[success] Done. Drill(s) Move completed."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Drill(s) Move completed."))
def selection_bbox(self):
geo_list = []
@@ -1234,7 +1250,8 @@ class FCDrillCopy(FCDrillMove):
sel_shapes_to_be_deleted = []
self.draw_app.build_ui()
- self.draw_app.app.inform.emit(_("[success] Done. Drill(s) copied."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Drill(s) copied."))
class FCDrillSelect(DrawTool):
@@ -2395,9 +2412,8 @@ class FlatCAMExcEditor(QtCore.QObject):
try:
tool_dia = float(self.addtool_entry.get_value().replace(',', '.'))
except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered, "
- "use a number.")
- )
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Wrong value format entered, use a number."))
return
if tool_dia not in self.olddia_newdia:
@@ -2408,17 +2424,17 @@ class FlatCAMExcEditor(QtCore.QObject):
# each time a tool diameter is edited or added
self.olddia_newdia[tool_dia] = tool_dia
else:
- self.app.inform.emit(_("[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
- "Save and reedit Excellon if you need to add this tool. ")
- )
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Tool already in the original or actual tool list.\n"
+ "Save and reedit Excellon if you need to add this tool. "))
return
# since we add a new tool, we update also the initial state of the tool_table through it's dictionary
# we add a new entry in the tool2tooldia dict
self.tool2tooldia[len(self.olddia_newdia)] = tool_dia
- self.app.inform.emit(_("[success] Added new tool with dia: {dia} {units}").format(dia=str(tool_dia),
- units=str(self.units)))
+ self.app.inform.emit('[success] %s: %s %s' %
+ (_("Added new tool with dia"), str(tool_dia), str(self.units)))
self.build_ui()
@@ -2449,7 +2465,8 @@ class FlatCAMExcEditor(QtCore.QObject):
else:
deleted_tool_dia_list.append(float('%.4f' % dia))
except Exception as e:
- self.app.inform.emit(_("[WARNING_NOTCL] Select a tool in Tool Table"))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Select a tool in Tool Table"))
return
for deleted_tool_dia in deleted_tool_dia_list:
@@ -2481,9 +2498,8 @@ class FlatCAMExcEditor(QtCore.QObject):
self.olddia_newdia.pop(deleted_tool_dia, None)
- self.app.inform.emit(_("[success] Deleted tool with dia: {del_dia} {units}").format(
- del_dia=str(deleted_tool_dia),
- units=str(self.units)))
+ self.app.inform.emit('[success] %s: %s %s' %
+ (_("Deleted tool with diameter"), str(deleted_tool_dia), str(self.units)))
self.replot()
# self.app.inform.emit("Could not delete selected tool")
@@ -2632,7 +2648,8 @@ class FlatCAMExcEditor(QtCore.QObject):
self.tools_table_exc.itemChanged.connect(self.on_tool_edit)
self.tools_table_exc.cellPressed.connect(self.on_row_selected)
- self.app.inform.emit(_("[success] Done. Tool edit completed."))
+ self.app.inform.emit('[success] %s' %
+ _("Done. Tool edit completed."))
# self.tools_table_exc.selectionModel().currentChanged.connect(self.on_row_selected)
@@ -3166,11 +3183,12 @@ class FlatCAMExcEditor(QtCore.QObject):
try:
excellon_obj.create_geometry()
except KeyError:
- self.app.inform.emit(
- _("[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon creation.")
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("There are no Tools definitions in the file. Aborting Excellon creation.")
)
except:
- msg = _("[ERROR] An internal error has ocurred. See shell.\n")
+ msg = '[ERROR] %s' % \
+ _("An internal error has ocurred. See Shell.\n")
msg += traceback.format_exc()
app_obj.inform.emit(msg)
raise
@@ -3185,7 +3203,8 @@ class FlatCAMExcEditor(QtCore.QObject):
self.app.progress.emit(100)
return
- self.app.inform.emit(_("[success] Excellon editing finished."))
+ self.app.inform.emit('[success] %s' %
+ _("Excellon editing finished."))
# self.progress.emit(100)
def on_tool_select(self, tool):
@@ -3202,7 +3221,8 @@ class FlatCAMExcEditor(QtCore.QObject):
# self.draw_app.select_tool('drill_select')
self.complete = True
current_tool = 'drill_select'
- self.app.inform.emit(_("[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Cancelled. There is no Tool/Drill selected"))
# This is to make the group behave as radio group
if current_tool in self.tools_exc:
@@ -3421,14 +3441,16 @@ class FlatCAMExcEditor(QtCore.QObject):
self.active_tool.complete = True
self.in_action = False
self.delete_utility_geometry()
- self.app.inform.emit(_("[success] Done."))
+ self.app.inform.emit('[success] %s' %
+ _("Done."))
self.select_tool('drill_select')
else:
if isinstance(self.active_tool, FCDrillAdd):
self.active_tool.complete = True
self.in_action = False
self.delete_utility_geometry()
- self.app.inform.emit(_("[success] Done."))
+ self.app.inform.emit('[success] %s' %
+ _("Done."))
self.select_tool('drill_select')
self.app.cursor = QtGui.QCursor()
@@ -3784,7 +3806,8 @@ class FlatCAMExcEditor(QtCore.QObject):
self.selected = []
self.build_ui()
- self.app.inform.emit(_("[success] Done. Drill(s) deleted."))
+ self.app.inform.emit('[success] %s' %
+ _("Done. Drill(s) deleted."))
def delete_shape(self, del_shape):
self.is_modified = True
diff --git a/flatcamEditors/FlatCAMGeoEditor.py b/flatcamEditors/FlatCAMGeoEditor.py
index 2b54932a..c56120c9 100644
--- a/flatcamEditors/FlatCAMGeoEditor.py
+++ b/flatcamEditors/FlatCAMGeoEditor.py
@@ -137,8 +137,8 @@ class BufferSelectionTool(FlatCAMTool):
buffer_distance = float(self.buffer_distance_entry.get_value().replace(',', '.'))
self.buffer_distance_entry.set_value(buffer_distance)
except ValueError:
- self.app.inform.emit(_("[WARNING_NOTCL] Buffer distance value is missing or wrong format. "
- "Add it and retry."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Buffer distance value is missing or wrong format. Add it and retry."))
return
# the cb index start from 0 but the join styles for the buffer start from 1 therefore the adjustment
# I populated the combobox such that the index coincide with the join styles value (which is really an INT)
@@ -154,8 +154,8 @@ class BufferSelectionTool(FlatCAMTool):
buffer_distance = float(self.buffer_distance_entry.get_value().replace(',', '.'))
self.buffer_distance_entry.set_value(buffer_distance)
except ValueError:
- self.app.inform.emit(_("[WARNING_NOTCL] Buffer distance value is missing or wrong format. "
- "Add it and retry."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Buffer distance value is missing or wrong format. Add it and retry."))
return
# the cb index start from 0 but the join styles for the buffer start from 1 therefore the adjustment
# I populated the combobox such that the index coincide with the join styles value (which is really an INT)
@@ -171,8 +171,8 @@ class BufferSelectionTool(FlatCAMTool):
buffer_distance = float(self.buffer_distance_entry.get_value().replace(',', '.'))
self.buffer_distance_entry.set_value(buffer_distance)
except ValueError:
- self.app.inform.emit(_("[WARNING_NOTCL] Buffer distance value is missing or wrong format. "
- "Add it and retry."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Buffer distance value is missing or wrong format. Add it and retry."))
return
# the cb index start from 0 but the join styles for the buffer start from 1 therefore the adjustment
# I populated the combobox such that the index coincide with the join styles value (which is really an INT)
@@ -562,7 +562,8 @@ class PaintOptionsTool(FlatCAMTool):
def on_paint(self):
if not self.fcdraw.selected:
- self.app.inform.emit(_("[WARNING_NOTCL] Paint cancelled. No shape selected."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Paint cancelled. No shape selected."))
return
try:
@@ -573,8 +574,8 @@ class PaintOptionsTool(FlatCAMTool):
tooldia = float(self.painttooldia_entry.get_value().replace(',', '.'))
self.painttooldia_entry.set_value(tooldia)
except ValueError:
- self.app.inform.emit(_("[WARNING_NOTCL] Tool diameter value is missing or wrong format. "
- "Add it and retry."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Tool diameter value is missing or wrong format. Add it and retry."))
return
try:
overlap = float(self.paintoverlap_entry.get_value())
@@ -584,8 +585,8 @@ class PaintOptionsTool(FlatCAMTool):
overlap = float(self.paintoverlap_entry.get_value().replace(',', '.'))
self.paintoverlap_entry.set_value(overlap)
except ValueError:
- self.app.inform.emit(_("[WARNING_NOTCL] Overlap value is missing or wrong format. "
- "Add it and retry."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Overlap value is missing or wrong format. Add it and retry."))
return
try:
@@ -596,8 +597,8 @@ class PaintOptionsTool(FlatCAMTool):
margin = float(self.paintmargin_entry.get_value().replace(',', '.'))
self.paintmargin_entry.set_value(margin)
except ValueError:
- self.app.inform.emit(_("[WARNING_NOTCL] Margin distance value is missing or wrong format. "
- "Add it and retry."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Margin distance value is missing or wrong format. Add it and retry."))
return
method = self.paintmethod_combo.get_value()
contour = self.paintcontour_cb.get_value()
@@ -1053,7 +1054,8 @@ class TransformEditorTool(FlatCAMTool):
def template(self):
if not self.fcdraw.selected:
- self.app.inform.emit(_("[WARNING_NOTCL] Transformation cancelled. No shape selected."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Transformation cancelled. No shape selected."))
return
@@ -1074,8 +1076,8 @@ class TransformEditorTool(FlatCAMTool):
try:
value = float(self.rotate_entry.get_value().replace(',', '.'))
except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered for Rotate, "
- "use a number."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Wrong value format entered, use a number."))
return
self.app.worker_task.emit({'fcn': self.on_rotate_action,
'params': [value]})
@@ -1111,8 +1113,8 @@ class TransformEditorTool(FlatCAMTool):
try:
value = float(self.skewx_entry.get_value().replace(',', '.'))
except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered for Skew X, "
- "use a number."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Wrong value format entered, use a number."))
return
# self.on_skew("X", value)
@@ -1132,8 +1134,8 @@ class TransformEditorTool(FlatCAMTool):
try:
value = float(self.skewy_entry.get_value().replace(',', '.'))
except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered for Skew Y, "
- "use a number."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Wrong value format entered, use a number."))
return
# self.on_skew("Y", value)
@@ -1153,8 +1155,8 @@ class TransformEditorTool(FlatCAMTool):
try:
xvalue = float(self.scalex_entry.get_value().replace(',', '.'))
except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered for Scale X, "
- "use a number."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Wrong value format entered, use a number."))
return
# scaling to zero has no sense so we remove it, because scaling with 1 does nothing
@@ -1190,8 +1192,8 @@ class TransformEditorTool(FlatCAMTool):
try:
yvalue = float(self.scaley_entry.get_value().replace(',', '.'))
except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered for Scale Y, "
- "use a number."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Wrong value format entered, use a number."))
return
# scaling to zero has no sense so we remove it, because scaling with 1 does nothing
@@ -1222,8 +1224,8 @@ class TransformEditorTool(FlatCAMTool):
try:
value = float(self.offx_entry.get_value().replace(',', '.'))
except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered for Offset X, "
- "use a number."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Wrong value format entered, use a number."))
return
# self.on_offset("X", value)
@@ -1243,8 +1245,8 @@ class TransformEditorTool(FlatCAMTool):
try:
value = float(self.offy_entry.get_value().replace(',', '.'))
except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered for Offset Y, "
- "use a number."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Wrong value format entered, use a number."))
return
# self.on_offset("Y", value)
@@ -1261,7 +1263,8 @@ class TransformEditorTool(FlatCAMTool):
ymaxlist = []
if not shape_list:
- self.app.inform.emit(_("[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("No shape selected. Please Select a shape to rotate!"))
return
else:
with self.app.proc_container.new(_("Appying Rotate")):
@@ -1292,12 +1295,14 @@ class TransformEditorTool(FlatCAMTool):
# self.draw_app.transform_complete.emit()
- self.app.inform.emit(_("[success] Done. Rotate completed."))
+ self.app.inform.emit('[success] %s' %
+ _("Done. Rotate completed."))
self.app.progress.emit(100)
except Exception as e:
- self.app.inform.emit(_("[ERROR_NOTCL] Due of %s, rotation movement was not executed.") % str(e))
+ self.app.inform.emit('[ERROR_NOTCL] %s: %s' %
+ (_("Rotation action was not executed"),str(e)))
return
def on_flip(self, axis):
@@ -1308,7 +1313,8 @@ class TransformEditorTool(FlatCAMTool):
ymaxlist = []
if not shape_list:
- self.app.inform.emit(_("[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("No shape selected. Please Select a shape to flip!"))
return
else:
with self.app.proc_container.new(_("Applying Flip")):
@@ -1341,10 +1347,12 @@ class TransformEditorTool(FlatCAMTool):
for sha in shape_list:
if axis is 'X':
sha.mirror('X', (px, py))
- self.app.inform.emit(_('[success] Flip on the Y axis done ...'))
+ self.app.inform.emit('[success] %s...' %
+ _('Flip on the Y axis done'))
elif axis is 'Y':
sha.mirror('Y', (px, py))
- self.app.inform.emit(_('[success] Flip on the X axis done ...'))
+ self.app.inform.emit('[success] %s' %
+ _('Flip on the X axis done'))
self.draw_app.replot()
# self.draw_app.add_shape(DrawToolShape(sha.geo))
@@ -1354,7 +1362,8 @@ class TransformEditorTool(FlatCAMTool):
self.app.progress.emit(100)
except Exception as e:
- self.app.inform.emit(_("[ERROR_NOTCL] Due of %s, Flip action was not executed.") % str(e))
+ self.app.inform.emit('[ERROR_NOTCL] %s: %s' %
+ (_("Flip action was not executed"), str(e)))
return
def on_skew(self, axis, num):
@@ -1363,7 +1372,8 @@ class TransformEditorTool(FlatCAMTool):
yminlist = []
if not shape_list:
- self.app.inform.emit(_("[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("No shape selected. Please Select a shape to shear/skew!"))
return
else:
with self.app.proc_container.new(_("Applying Skew")):
@@ -1390,12 +1400,17 @@ class TransformEditorTool(FlatCAMTool):
# self.draw_app.add_shape(DrawToolShape(sha.geo))
#
# self.draw_app.transform_complete.emit()
-
- self.app.inform.emit(_('[success] Skew on the %s axis done ...') % str(axis))
+ if axis == 'X':
+ self.app.inform.emit('[success] %s...' %
+ _('Skew on the X axis done'))
+ else:
+ self.app.inform.emit('[success] %s...' %
+ _('Skew on the Y axis done'))
self.app.progress.emit(100)
except Exception as e:
- self.app.inform.emit(_("[ERROR_NOTCL] Due of %s, Skew action was not executed.") % str(e))
+ self.app.inform.emit('[ERROR_NOTCL] %s: %s' %
+ (_("Skew action was not executed"), str(e)))
return
def on_scale(self, axis, xfactor, yfactor, point=None):
@@ -1406,7 +1421,8 @@ class TransformEditorTool(FlatCAMTool):
ymaxlist = []
if not shape_list:
- self.app.inform.emit(_("[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("No shape selected. Please Select a shape to scale!"))
return
else:
with self.app.proc_container.new(_("Applying Scale")):
@@ -1442,10 +1458,16 @@ class TransformEditorTool(FlatCAMTool):
#
# self.draw_app.transform_complete.emit()
- self.app.inform.emit(_('[success] Scale on the %s axis done ...') % str(axis))
+ if str(axis) == 'X':
+ self.app.inform.emit('[success] %s...' %
+ _('Scale on the X axis done'))
+ else:
+ self.app.inform.emit('[success] %s...' %
+ _('Scale on the Y axis done'))
self.app.progress.emit(100)
except Exception as e:
- self.app.inform.emit(_("[ERROR_NOTCL] Due of %s, Scale action was not executed.") % str(e))
+ self.app.inform.emit('[ERROR_NOTCL] %s: %s' %
+ (_("Scale action was not executed"), str(e)))
return
def on_offset(self, axis, num):
@@ -1454,7 +1476,8 @@ class TransformEditorTool(FlatCAMTool):
yminlist = []
if not shape_list:
- self.app.inform.emit(_("[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("No shape selected. Please Select a shape to offset!"))
return
else:
with self.app.proc_container.new(_("Applying Offset")):
@@ -1468,11 +1491,17 @@ class TransformEditorTool(FlatCAMTool):
sha.offset((0, num))
self.draw_app.replot()
- self.app.inform.emit(_('[success] Offset on the %s axis done ...') % str(axis))
+ if axis == 'X':
+ self.app.inform.emit('[success] %s...' %
+ _('Offset on the X axis done'))
+ else:
+ self.app.inform.emit('[success] %s...' %
+ _('Offset on the Y axis done'))
self.app.progress.emit(100)
except Exception as e:
- self.app.inform.emit(_("[ERROR_NOTCL] Due of %s, Offset action was not executed.") % str(e))
+ self.app.inform.emit('[ERROR_NOTCL] %s: %s' %
+ (_("Offset action was not executed"), str(e)))
return
def on_rotate_key(self):
@@ -1485,14 +1514,12 @@ class TransformEditorTool(FlatCAMTool):
val, ok = val_box.get_value()
if ok:
self.on_rotate(val=val)
- self.app.inform.emit(
- _("[success] Geometry shape rotate done...")
- )
+ self.app.inform.emit('[success] %s...' %
+ _("Geometry shape rotate done"))
return
else:
- self.app.inform.emit(
- _("[WARNING_NOTCL] Geometry shape rotate cancelled...")
- )
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Geometry shape rotate cancelled"))
def on_offx_key(self):
units = self.app.ui.general_defaults_form.general_app_group.units_radio.get_value().lower()
@@ -1506,12 +1533,12 @@ class TransformEditorTool(FlatCAMTool):
val, ok = val_box.get_value()
if ok:
self.on_offx(val=val)
- self.app.inform.emit(
- _("[success] Geometry shape offset on X axis done..."))
+ self.app.inform.emit('[success] %s' %
+ _("Geometry shape offset on X axis done"))
return
else:
- self.app.inform.emit(
- _("[WARNING_NOTCL] Geometry shape offset X cancelled..."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Geometry shape offset X cancelled"))
def on_offy_key(self):
units = self.app.ui.general_defaults_form.general_app_group.units_radio.get_value().lower()
@@ -1525,12 +1552,12 @@ class TransformEditorTool(FlatCAMTool):
val, ok = val_box.get_value()
if ok:
self.on_offx(val=val)
- self.app.inform.emit(
- _("[success] Geometry shape offset on Y axis done..."))
+ self.app.inform.emit('[success] %s...' %
+ _("Geometry shape offset on Y axis done"))
return
else:
- self.app.inform.emit(
- _("[WARNING_NOTCL] Geometry shape offset Y cancelled..."))
+ self.app.inform.emit('[success] %s...' %
+ _("Geometry shape offset on Y axis canceled"))
def on_skewx_key(self):
val_box = FCInputDialog(title=_("Skew on X axis ..."),
@@ -1542,12 +1569,12 @@ class TransformEditorTool(FlatCAMTool):
val, ok = val_box.get_value()
if ok:
self.on_skewx(val=val)
- self.app.inform.emit(
- _("[success] Geometry shape skew on X axis done..."))
+ self.app.inform.emit('[success] %s...' %
+ _("Geometry shape skew on X axis done"))
return
else:
- self.app.inform.emit(
- _("[WARNING_NOTCL] Geometry shape skew X cancelled..."))
+ self.app.inform.emit('[success] %s...' %
+ _("Geometry shape skew on X axis canceled"))
def on_skewy_key(self):
val_box = FCInputDialog(title=_("Skew on Y axis ..."),
@@ -1559,12 +1586,12 @@ class TransformEditorTool(FlatCAMTool):
val, ok = val_box.get_value()
if ok:
self.on_skewx(val=val)
- self.app.inform.emit(
- _("[success] Geometry shape skew on Y axis done..."))
+ self.app.inform.emit('[success] %s...' %
+ _("Geometry shape skew on Y axis done"))
return
else:
- self.app.inform.emit(
- _("[WARNING_NOTCL] Geometry shape skew Y cancelled..."))
+ self.app.inform.emit('[success] %s...' %
+ _("Geometry shape skew on Y axis canceled"))
class DrawToolShape(object):
@@ -1964,7 +1991,8 @@ class FCCircle(FCShapeTool):
radius = distance(p1, p2)
self.geometry = DrawToolShape(Point(p1).buffer(radius, int(self.steps_per_circ / 4)))
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done. Adding Circle completed."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Adding Circle completed."))
class FCArc(FCShapeTool):
@@ -2178,7 +2206,8 @@ class FCArc(FCShapeTool):
self.geometry = DrawToolShape(LineString(arc(center, radius, startangle, stopangle,
self.direction, self.steps_per_circ)))
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done. Arc completed."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Arc completed."))
class FCRectangle(FCShapeTool):
@@ -2231,7 +2260,8 @@ class FCRectangle(FCShapeTool):
# self.geometry = LinearRing([p1, (p2[0], p1[1]), p2, (p1[0], p2[1])])
self.geometry = DrawToolShape(Polygon([p1, (p2[0], p1[1]), p2, (p1[0], p2[1])]))
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done. Rectangle completed."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Rectangle completed."))
class FCPolygon(FCShapeTool):
@@ -2285,7 +2315,8 @@ class FCPolygon(FCShapeTool):
self.geometry = DrawToolShape(Polygon(self.points))
self.draw_app.in_action = False
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done. Polygon completed."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Polygon completed."))
def on_key(self, key):
if key == 'Backspace' or key == QtCore.Qt.Key_Backspace:
@@ -2440,7 +2471,8 @@ class FCMove(FCShapeTool):
self.selection_shape = self.selection_bbox()
if len(self.draw_app.get_selected()) == 0:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s...' %
+ _("MOVE: No shape selected. Select a shape to move"))
else:
self.draw_app.app.inform.emit(_(" MOVE: Click on reference point ..."))
@@ -2479,7 +2511,8 @@ class FCMove(FCShapeTool):
# Delete old
self.draw_app.delete_selected()
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done. Geometry(s) Move completed."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Geometry(s) Move completed."))
def selection_bbox(self):
geo_list = []
@@ -2599,7 +2632,8 @@ class FCCopy(FCMove):
self.geometry = [DrawToolShape(affinity.translate(geom.geo, xoff=dx, yoff=dy))
for geom in self.draw_app.get_selected()]
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done. Geometry(s) Copy completed."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Geometry(s) Copy completed."))
class FCText(FCShapeTool):
@@ -2635,20 +2669,23 @@ class FCText(FCShapeTool):
self.geometry = DrawToolShape(affinity.translate(self.text_gui.text_path, xoff=dx, yoff=dy))
except Exception as e:
log.debug("Font geometry is empty or incorrect: %s" % str(e))
- self.draw_app.app.inform.emit(_("[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
- "supported. Error: %s") % str(e))
+ self.draw_app.app.inform.emit('[ERROR] %s: %s' %
+ (_("Font not supported. Only Regular, Bold, Italic and BoldItalic are "
+ "supported. Error"), str(e)))
self.text_gui.text_path = []
self.text_gui.hide_tool()
self.draw_app.select_tool('select')
return
else:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] No text to add."))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("No text to add."))
return
self.text_gui.text_path = []
self.text_gui.hide_tool()
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done. Adding Text completed."))
+ self.draw_app.app.inform.emit('[success]%s' %
+ _(" Done. Adding Text completed."))
def utility_geometry(self, data=None):
"""
@@ -2687,7 +2724,8 @@ class FCBuffer(FCShapeTool):
def on_buffer(self):
if not self.draw_app.selected:
- self.app.inform.emit(_("[WARNING_NOTCL] Buffer cancelled. No shape selected."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Buffer cancelled. No shape selected."))
return
try:
@@ -2698,8 +2736,8 @@ class FCBuffer(FCShapeTool):
buffer_distance = float(self.buff_tool.buffer_distance_entry.get_value().replace(',', '.'))
self.buff_tool.buffer_distance_entry.set_value(buffer_distance)
except ValueError:
- self.app.inform.emit(_("[WARNING_NOTCL] Buffer distance value is missing or wrong format. "
- "Add it and retry."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Buffer distance value is missing or wrong format. Add it and retry."))
return
# the cb index start from 0 but the join styles for the buffer start from 1 therefore the adjustment
# I populated the combobox such that the index coincide with the join styles value (whcih is really an INT)
@@ -2711,11 +2749,13 @@ class FCBuffer(FCShapeTool):
self.disactivate()
if ret_val == 'fail':
return
- self.draw_app.app.inform.emit(_("[success] Done. Buffer Tool completed."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Buffer Tool completed."))
def on_buffer_int(self):
if not self.draw_app.selected:
- self.app.inform.emit(_("[WARNING_NOTCL] Buffer cancelled. No shape selected."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Buffer cancelled. No shape selected."))
return
try:
@@ -2726,8 +2766,8 @@ class FCBuffer(FCShapeTool):
buffer_distance = float(self.buff_tool.buffer_distance_entry.get_value().replace(',', '.'))
self.buff_tool.buffer_distance_entry.set_value(buffer_distance)
except ValueError:
- self.app.inform.emit(_("[WARNING_NOTCL] Buffer distance value is missing or wrong format. "
- "Add it and retry."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Buffer distance value is missing or wrong format. Add it and retry."))
return
# the cb index start from 0 but the join styles for the buffer start from 1 therefore the adjustment
# I populated the combobox such that the index coincide with the join styles value (whcih is really an INT)
@@ -2739,11 +2779,13 @@ class FCBuffer(FCShapeTool):
self.disactivate()
if ret_val == 'fail':
return
- self.draw_app.app.inform.emit(_("[success] Done. Buffer Int Tool completed."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Buffer Int Tool completed."))
def on_buffer_ext(self):
if not self.draw_app.selected:
- self.app.inform.emit(_("[WARNING_NOTCL] Buffer cancelled. No shape selected."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Buffer cancelled. No shape selected."))
return
try:
@@ -2754,8 +2796,8 @@ class FCBuffer(FCShapeTool):
buffer_distance = float(self.buff_tool.buffer_distance_entry.get_value().replace(',', '.'))
self.buff_tool.buffer_distance_entry.set_value(buffer_distance)
except ValueError:
- self.app.inform.emit(_("[WARNING_NOTCL] Buffer distance value is missing or wrong format. "
- "Add it and retry."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Buffer distance value is missing or wrong format. Add it and retry."))
return
# the cb index start from 0 but the join styles for the buffer start from 1 therefore the adjustment
# I populated the combobox such that the index coincide with the join styles value (whcih is really an INT)
@@ -2767,7 +2809,8 @@ class FCBuffer(FCShapeTool):
self.disactivate()
if ret_val == 'fail':
return
- self.draw_app.app.inform.emit(_("[success] Done. Buffer Ext Tool completed."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Buffer Ext Tool completed."))
def activate(self):
self.buff_tool.buffer_button.clicked.disconnect()
@@ -2862,7 +2905,8 @@ class FCEraser(FCShapeTool):
self.draw_app.delete_utility_geometry()
self.draw_app.plot_all()
- self.draw_app.app.inform.emit(_("[success] Done. Eraser tool action completed."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Eraser tool action completed."))
def utility_geometry(self, data=None):
"""
@@ -3497,8 +3541,13 @@ class FlatCAMGeoEditor(QtCore.QObject):
if multigeo_tool:
self.multigeo_tool = multigeo_tool
geo_to_edit = fcgeometry.flatten(geometry=fcgeometry.tools[self.multigeo_tool]['solid_geometry'])
- self.app.inform.emit(_("[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}").
- format(tool=self.multigeo_tool, dia=fcgeometry.tools[self.multigeo_tool]['tooldia']))
+ self.app.inform.emit('[WARNING_NOTCL] %s: %s %s: %s' %
+ (_("Editing MultiGeo Geometry, tool"),
+ str(self.multigeo_tool),
+ _("with diameter"),
+ str(fcgeometry.tools[self.multigeo_tool]['tooldia'])
+ )
+ )
else:
geo_to_edit = fcgeometry.flatten()
@@ -3738,7 +3787,8 @@ class FlatCAMGeoEditor(QtCore.QObject):
self.active_tool.complete = True
self.in_action = False
self.delete_utility_geometry()
- self.app.inform.emit(_("[success] Done."))
+ self.app.inform.emit('[success] %s' %
+ _("Done."))
self.select_tool('select')
else:
self.app.cursor = QtGui.QCursor()
@@ -3752,7 +3802,8 @@ class FlatCAMGeoEditor(QtCore.QObject):
self.active_tool.make()
if self.active_tool.complete:
self.on_shape_complete()
- self.app.inform.emit(_("[success] Done."))
+ self.app.inform.emit('[success] %s' %
+ _("Done."))
self.select_tool(self.active_tool.name)
except Exception as e:
log.warning("Error: %s" % str(e))
@@ -3869,7 +3920,8 @@ class FlatCAMGeoEditor(QtCore.QObject):
def on_copy_click(self):
if not self.selected:
- self.app.inform.emit(_("[WARNING_NOTCL] Copy cancelled. No shape selected."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Copy cancelled. No shape selected."))
return
self.app.ui.geo_copy_btn.setChecked(True)
@@ -4119,8 +4171,8 @@ class FlatCAMGeoEditor(QtCore.QObject):
results = geo_shapes[0].geo
except Exception as e:
log.debug("FlatCAMGeoEditor.intersection() --> %s" % str(e))
- self.app.inform.emit(
- _("[WARNING_NOTCL] A selection of at least 2 geo items is required to do Intersection."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("A selection of at least 2 geo items is required to do Intersection."))
self.select_tool('select')
return
@@ -4154,8 +4206,8 @@ class FlatCAMGeoEditor(QtCore.QObject):
intersector = geo_shapes[0].geo
except Exception as e:
log.debug("FlatCAMGeoEditor.intersection() --> %s" % str(e))
- self.app.inform.emit(
- _("[WARNING_NOTCL] A selection of at least 2 geo items is required to do Intersection."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("A selection of at least 2 geo items is required to do Intersection."))
self.select_tool('select')
return
@@ -4240,9 +4292,9 @@ class FlatCAMGeoEditor(QtCore.QObject):
selected = self.get_selected()
if buf_distance < 0:
- self.app.inform.emit(
- _("[ERROR_NOTCL] Negative buffer value is not accepted. "
- "Use Buffer interior to generate an 'inside' shape"))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Negative buffer value is not accepted. Use Buffer interior to generate an "
+ "'inside' shape"))
# deselect everything
self.selected = []
@@ -4250,11 +4302,13 @@ class FlatCAMGeoEditor(QtCore.QObject):
return 'fail'
if len(selected) == 0:
- self.app.inform.emit(_("[WARNING_NOTCL] Nothing selected for buffering."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Nothing selected for buffering."))
return 'fail'
if not isinstance(buf_distance, float):
- self.app.inform.emit(_("[WARNING_NOTCL] Invalid distance for buffering."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Invalid distance for buffering."))
# deselect everything
self.selected = []
@@ -4277,7 +4331,8 @@ class FlatCAMGeoEditor(QtCore.QObject):
)
if not results:
- self.app.inform.emit(_("[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Failed, the result is empty. Choose a different buffer value."))
# deselect everything
self.selected = []
self.replot()
@@ -4287,14 +4342,15 @@ class FlatCAMGeoEditor(QtCore.QObject):
self.add_shape(DrawToolShape(sha))
self.replot()
- self.app.inform.emit(_("[success] Full buffer geometry created."))
+ self.app.inform.emit('[success] %s' %
+ _("Full buffer geometry created."))
def buffer_int(self, buf_distance, join_style):
selected = self.get_selected()
if buf_distance < 0:
- self.app.inform.emit(
- _("[ERROR_NOTCL] Negative buffer value is not accepted.")
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Negative buffer value is not accepted.")
)
# deselect everything
self.selected = []
@@ -4302,11 +4358,13 @@ class FlatCAMGeoEditor(QtCore.QObject):
return 'fail'
if len(selected) == 0:
- self.app.inform.emit(_("[WARNING_NOTCL] Nothing selected for buffering."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Nothing selected for buffering."))
return 'fail'
if not isinstance(buf_distance, float):
- self.app.inform.emit(_("[WARNING_NOTCL] Invalid distance for buffering."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Invalid distance for buffering."))
# deselect everything
self.selected = []
self.replot()
@@ -4325,7 +4383,8 @@ class FlatCAMGeoEditor(QtCore.QObject):
)
if not results:
- self.app.inform.emit(_("[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Failed, the result is empty. Choose a smaller buffer value."))
# deselect everything
self.selected = []
self.replot()
@@ -4335,25 +4394,29 @@ class FlatCAMGeoEditor(QtCore.QObject):
self.add_shape(DrawToolShape(sha))
self.replot()
- self.app.inform.emit(_("[success] Interior buffer geometry created."))
+ self.app.inform.emit('[success] %s' %
+ _("Interior buffer geometry created."))
def buffer_ext(self, buf_distance, join_style):
selected = self.get_selected()
if buf_distance < 0:
- self.app.inform.emit(_("[ERROR_NOTCL] Negative buffer value is not accepted. "
- "Use Buffer interior to generate an 'inside' shape"))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Negative buffer value is not accepted. Use Buffer interior to generate an "
+ "'inside' shape"))
# deselect everything
self.selected = []
self.replot()
return
if len(selected) == 0:
- self.app.inform.emit(_("[WARNING_NOTCL] Nothing selected for buffering."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Nothing selected for buffering."))
return
if not isinstance(buf_distance, float):
- self.app.inform.emit(_("[WARNING_NOTCL] Invalid distance for buffering."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Invalid distance for buffering."))
# deselect everything
self.selected = []
self.replot()
@@ -4372,7 +4435,8 @@ class FlatCAMGeoEditor(QtCore.QObject):
)
if not results:
- self.app.inform.emit(_("[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Failed, the result is empty. Choose a different buffer value."))
# deselect everything
self.selected = []
self.replot()
@@ -4382,7 +4446,8 @@ class FlatCAMGeoEditor(QtCore.QObject):
self.add_shape(DrawToolShape(sha))
self.replot()
- self.app.inform.emit(_("[success] Exterior buffer geometry created."))
+ self.app.inform.emit('[success] %s' %
+ _("Exterior buffer geometry created."))
# def paint(self, tooldia, overlap, margin, method):
# selected = self.get_selected()
@@ -4446,19 +4511,21 @@ class FlatCAMGeoEditor(QtCore.QObject):
selected = self.get_selected()
if len(selected) == 0:
- self.app.inform.emit(_("[WARNING_NOTCL] Nothing selected for painting."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Nothing selected for painting."))
return
for param in [tooldia, overlap, margin]:
if not isinstance(param, float):
param_name = [k for k, v in locals().items() if v is param][0]
- self.app.inform.emit(_("[WARNING] Invalid value for {}").format(param))
+ self.app.inform.emit('[WARNING] %s: %s' %
+ (_("Invalid value for"), str(param)))
results = []
if overlap >= 1:
- self.app.inform.emit(
- _("[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 (100%)."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Could not do Paint. Overlap value has to be less than 1.00 (100%%)."))
return
def recurse(geometry, reset=True):
@@ -4516,8 +4583,8 @@ class FlatCAMGeoEditor(QtCore.QObject):
local_results += list(cp.get_objects())
except Exception as e:
log.debug("Could not Paint the polygons. %s" % str(e))
- self.app.inform.emit(
- _("[ERROR] Could not do Paint. Try a different combination of parameters. "
+ self.app.inform.emit('[ERROR] %s' %
+ _("Could not do Paint. Try a different combination of parameters. "
"Or a different method of Paint\n%s") % str(e))
return
diff --git a/flatcamEditors/FlatCAMGrbEditor.py b/flatcamEditors/FlatCAMGrbEditor.py
index 7a02df79..8600517a 100644
--- a/flatcamEditors/FlatCAMGrbEditor.py
+++ b/flatcamEditors/FlatCAMGrbEditor.py
@@ -204,14 +204,15 @@ class FCPad(FCShapeTool):
try:
self.radius = float(self.draw_app.storage_dict[self.draw_app.last_aperture_selected]['size']) / 2
except KeyError:
- self.draw_app.app.inform.emit(_(
- "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("To add an Pad first select a aperture in Aperture Table"))
self.draw_app.in_action = False
self.complete = True
return
if self.radius == 0:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Aperture size is zero. It needs to be greater than zero."))
self.dont_execute = True
return
else:
@@ -374,7 +375,8 @@ class FCPad(FCShapeTool):
self.draw_app.in_action = False
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done. Adding Pad completed."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Adding Pad completed."))
def clean_up(self):
self.draw_app.selected = []
@@ -395,15 +397,16 @@ class FCPadArray(FCShapeTool):
try:
self.radius = float(self.draw_app.storage_dict[self.draw_app.last_aperture_selected]['size']) / 2
except KeyError:
- self.draw_app.app.inform.emit(_(
- "[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("To add an Pad Array first select a aperture in Aperture Table"))
self.complete = True
self.draw_app.in_action = False
self.draw_app.array_frame.hide()
return
if self.radius == 0:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Aperture size is zero. It needs to be greater than zero."))
self.dont_execute = True
return
else:
@@ -498,11 +501,12 @@ class FCPadArray(FCShapeTool):
self.pad_linear_angle = float(self.draw_app.linear_angle_spinner.get_value())
self.pad_angle = float(self.draw_app.pad_angle_entry.get_value())
except TypeError:
- self.draw_app.app.inform.emit(
- _("[ERROR_NOTCL] The value is not Float. Check for comma instead of dot separator."))
+ self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("The value is not Float. Check for comma instead of dot separator."))
return
except Exception as e:
- self.draw_app.app.inform.emit(_("[ERROR_NOTCL] The value is mistyped. Check the value."))
+ self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("The value is mistyped. Check the value."))
return
if self.pad_array == 'Linear':
@@ -692,7 +696,8 @@ class FCPadArray(FCShapeTool):
self.geometry.append(DrawToolShape(geo))
else:
if (self.pad_angle * self.pad_array_size) > 360:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] Too many Pads for the selected spacing angle."))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Too many Pads for the selected spacing angle."))
return
radius = distance(self.destination, self.origin)
@@ -714,7 +719,8 @@ class FCPadArray(FCShapeTool):
self.geometry.append(DrawToolShape(geo))
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done. Pad Array added."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Pad Array added."))
self.draw_app.in_action = False
self.draw_app.array_frame.hide()
return
@@ -746,7 +752,8 @@ class FCPoligonize(FCShapeTool):
if not self.draw_app.selected:
self.draw_app.in_action = False
self.complete = True
- self.draw_app.app.inform.emit(_("[ERROR_NOTCL] Failed. Nothing selected."))
+ self.draw_app.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Failed. Nothing selected."))
self.draw_app.select_tool("select")
return
@@ -761,8 +768,9 @@ class FCPoligonize(FCShapeTool):
if len(apid_set) > 1:
self.draw_app.in_action = False
self.complete = True
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] Failed. Poligonize works only on "
- "geometries belonging to the same aperture."))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Failed. Poligonize works only on geometries belonging "
+ "to the same aperture."))
self.draw_app.select_tool("select")
return
@@ -814,7 +822,8 @@ class FCPoligonize(FCShapeTool):
self.draw_app.in_action = False
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done. Poligonize completed."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Poligonize completed."))
# MS: always return to the Select Tool if modifier key is not pressed
# else return to the current tool
@@ -1054,7 +1063,8 @@ class FCRegion(FCShapeTool):
self.geometry = DrawToolShape(new_geo_el)
self.draw_app.in_action = False
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done."))
def clean_up(self):
self.draw_app.selected = []
@@ -1157,7 +1167,8 @@ class FCTrack(FCRegion):
self.draw_app.in_action = False
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done."))
def clean_up(self):
self.draw_app.selected = []
@@ -1430,7 +1441,8 @@ class FCDisc(FCShapeTool):
self.draw_app.in_action = False
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done."))
def clean_up(self):
self.draw_app.selected = []
@@ -1687,7 +1699,8 @@ class FCSemiDisc(FCShapeTool):
self.draw_app.in_action = False
self.complete = True
- self.draw_app.app.inform.emit(_("[success] Done."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done."))
def clean_up(self):
self.draw_app.selected = []
@@ -1835,7 +1848,8 @@ class FCApertureMove(FCShapeTool):
self.selected_apertures = []
if len(self.draw_app.get_selected()) == 0:
- self.draw_app.app.inform.emit(_("[WARNING_NOTCL] Nothing selected to move ..."))
+ self.draw_app.app.inform.emit('[WARNING_NOTCL] %s...' %
+ _("Nothing selected to move"))
self.complete = True
self.draw_app.select_tool("select")
return
@@ -1958,7 +1972,8 @@ class FCApertureMove(FCShapeTool):
self.draw_app.plot_all()
self.draw_app.build_ui()
- self.draw_app.app.inform.emit(_("[success] Done. Apertures Move completed."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Apertures Move completed."))
def clean_up(self):
self.draw_app.selected = []
@@ -2034,7 +2049,8 @@ class FCApertureCopy(FCApertureMove):
sel_shapes_to_be_deleted = []
self.draw_app.build_ui()
- self.draw_app.app.inform.emit(_("[success] Done. Apertures copied."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Apertures copied."))
class FCEraser(FCShapeTool):
@@ -2141,7 +2157,8 @@ class FCEraser(FCShapeTool):
self.draw_app.delete_utility_geometry()
self.draw_app.plot_all()
- self.draw_app.app.inform.emit(_("[success] Done. Eraser tool action completed."))
+ self.draw_app.app.inform.emit('[success] %s' %
+ _("Done. Eraser tool action completed."))
def clean_up(self):
self.draw_app.selected = []
@@ -3132,12 +3149,12 @@ class FlatCAMGrbEditor(QtCore.QObject):
try:
ap_id = str(self.apcode_entry.get_value())
except ValueError:
- self.app.inform.emit(_("[WARNING_NOTCL] Aperture code value is missing or wrong format. "
- "Add it and retry."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Aperture code value is missing or wrong format. Add it and retry."))
return
if ap_id == '':
- self.app.inform.emit(_("[WARNING_NOTCL] Aperture code value is missing or wrong format. "
- "Add it and retry."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Aperture code value is missing or wrong format. Add it and retry."))
return
if ap_id == '0':
@@ -3172,7 +3189,8 @@ class FlatCAMGrbEditor(QtCore.QObject):
except Exception as e:
log.error("FlatCAMGrbEditor.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] Aperture dimensions value is missing or wrong format. "
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Aperture dimensions value is missing or wrong format. "
"Add it in format (width, height) and retry."))
return
else:
@@ -3184,8 +3202,8 @@ class FlatCAMGrbEditor(QtCore.QObject):
size_val = float(self.apsize_entry.get_value().replace(',', '.'))
self.apsize_entry.set_value(size_val)
except ValueError:
- self.app.inform.emit(_("[WARNING_NOTCL] Aperture size value is missing or wrong format. "
- "Add it and retry."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Aperture size value is missing or wrong format. Add it and retry."))
return
self.storage_dict[ap_id]['size'] = size_val
@@ -3195,14 +3213,16 @@ class FlatCAMGrbEditor(QtCore.QObject):
# values each time a aperture code is edited or added
self.olddia_newdia[ap_id] = ap_id
else:
- self.app.inform.emit(_("[WARNING_NOTCL] Aperture already in the aperture table."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Aperture already in the aperture table."))
return
# since we add a new tool, we update also the initial state of the tool_table through it's dictionary
# we add a new entry in the tool2tooldia dict
self.tool2tooldia[len(self.olddia_newdia)] = int(ap_id)
- self.app.inform.emit(_("[success] Added new aperture with code: {apid}").format(apid=str(ap_id)))
+ self.app.inform.emit('[success] %s: %s' %
+ (_("Added new aperture with code"), str(ap_id)))
self.build_ui()
@@ -3230,13 +3250,15 @@ class FlatCAMGrbEditor(QtCore.QObject):
else:
# deleted_tool_dia = float(self.apertures_table.item(self.apertures_table.currentRow(), 1).text())
if len(self.apertures_table.selectionModel().selectedRows()) == 0:
- self.app.inform.emit(_("[WARNING_NOTCL] Select an aperture in Aperture Table"))
+ self.app.inform.emit('[WARNING_NOTCL]%s' %
+ _(" Select an aperture in Aperture Table"))
return
for index in self.apertures_table.selectionModel().selectedRows():
row = index.row()
deleted_apcode_list.append(self.apertures_table.item(row, 1).text())
except Exception as exc:
- self.app.inform.emit(_("[WARNING_NOTCL] Select an aperture in Aperture Table --> %s" % str(exc)))
+ self.app.inform.emit('[WARNING_NOTCL] %s %s' %
+ (_("Select an aperture in Aperture Table -->", str(exc))))
return
if deleted_apcode_list:
@@ -3259,8 +3281,8 @@ class FlatCAMGrbEditor(QtCore.QObject):
self.olddia_newdia.pop(deleted_aperture, None)
- self.app.inform.emit(_("[success] Deleted aperture with code: {del_dia}").format(
- del_dia=str(deleted_aperture)))
+ self.app.inform.emit('[success] %s: %s' %
+ (_("Deleted aperture with code"), str(deleted_aperture)))
self.plot_all()
self.build_ui()
@@ -3910,11 +3932,11 @@ class FlatCAMGrbEditor(QtCore.QObject):
try:
grb_obj.create_geometry()
except KeyError:
- self.app.inform.emit(
- _("[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber creation.")
- )
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("There are no Aperture definitions in the file. Aborting Gerber creation."))
except Exception as e:
- msg = _("[ERROR] An internal error has occurred. See shell.\n")
+ msg = '[ERROR] %s' % \
+ _("An internal error has occurred. See shell.\n")
msg += traceback.format_exc()
app_obj.inform.emit(msg)
raise
@@ -3927,7 +3949,8 @@ class FlatCAMGrbEditor(QtCore.QObject):
self.app.progress.emit(100)
return
- self.app.inform.emit(_("[success] Gerber editing finished."))
+ self.app.inform.emit('[success] %s' %
+ _("Done. Gerber editing finished."))
def on_tool_select(self, tool):
"""
@@ -3943,7 +3966,8 @@ class FlatCAMGrbEditor(QtCore.QObject):
# self.draw_app.select_tool('select')
self.complete = True
current_tool = 'select'
- self.app.inform.emit(_("[WARNING_NOTCL] Cancelled. No aperture is selected"))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Cancelled. No aperture is selected"))
# This is to make the group behave as radio group
if current_tool in self.tools_gerber:
@@ -4094,7 +4118,8 @@ class FlatCAMGrbEditor(QtCore.QObject):
self.app.clipboard.setText(
self.app.defaults["global_point_clipboard_format"] % (self.pos[0], self.pos[1])
)
- self.app.inform.emit(_("[success] Coordinates copied to clipboard."))
+ self.app.inform.emit('[success] %s' %
+ _("Coordinates copied to clipboard."))
return
# Dispatch event to active_tool
@@ -4153,7 +4178,8 @@ class FlatCAMGrbEditor(QtCore.QObject):
self.active_tool.complete = True
self.in_action = False
self.delete_utility_geometry()
- self.app.inform.emit(_("[success] Done."))
+ self.app.inform.emit('[success] %s' %
+ _("Done."))
self.select_tool('select')
else:
self.app.cursor = QtGui.QCursor()
@@ -4167,7 +4193,8 @@ class FlatCAMGrbEditor(QtCore.QObject):
self.active_tool.make()
if self.active_tool.complete:
self.on_grb_shape_complete()
- self.app.inform.emit(_("[success] Done."))
+ self.app.inform.emit('[success] %s' %
+ _("Done."))
# MS: always return to the Select Tool if modifier key is not pressed
# else return to the current tool but not for FCTrack
@@ -4474,7 +4501,8 @@ class FlatCAMGrbEditor(QtCore.QObject):
temp_ref = [s for s in self.selected]
if len(temp_ref) == 0:
- self.app.inform.emit(_("[ERROR_NOTCL] Failed. No aperture geometry is selected."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Failed. No aperture geometry is selected."))
return
for shape_sel in temp_ref:
@@ -4482,7 +4510,8 @@ class FlatCAMGrbEditor(QtCore.QObject):
self.selected = []
self.build_ui()
- self.app.inform.emit(_("[success] Done. Apertures geometry deleted."))
+ self.app.inform.emit('[success] %s' %
+ _("Done. Apertures geometry deleted."))
def delete_shape(self, geo_el):
self.is_modified = True
@@ -4596,8 +4625,8 @@ class FlatCAMGrbEditor(QtCore.QObject):
buff_value = float(self.buffer_distance_entry.get_value().replace(',', '.'))
self.buffer_distance_entry.set_value(buff_value)
except ValueError:
- self.app.inform.emit(_("[WARNING_NOTCL] Buffer distance value is missing or wrong format. "
- "Add it and retry."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Buffer distance value is missing or wrong format. Add it and retry."))
return
# the cb index start from 0 but the join styles for the buffer start from 1 therefore the adjustment
# I populated the combobox such that the index coincide with the join styles value (which is really an INT)
@@ -4624,9 +4653,8 @@ class FlatCAMGrbEditor(QtCore.QObject):
return geom_el
if not self.apertures_table.selectedItems():
- self.app.inform.emit(_(
- "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try again."
- ))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("No aperture to buffer. Select at least one aperture and try again."))
return
for x in self.apertures_table.selectedItems():
@@ -4638,10 +4666,12 @@ class FlatCAMGrbEditor(QtCore.QObject):
self.storage_dict[apid]['geometry'] = temp_storage
except Exception as e:
log.debug("FlatCAMGrbEditor.buffer() --> %s\n%s" % str(e))
- self.app.inform.emit(_("[ERROR_NOTCL] Failed.\n%s") % str(traceback.print_exc()))
+ self.app.inform.emit('[ERROR_NOTCL] %s\n%s' %
+ (_("Failed."), str(traceback.print_exc())))
return
self.plot_all()
- self.app.inform.emit(_("[success] Done. Buffer Tool completed."))
+ self.app.inform.emit('[success] %s' %
+ _("Done. Buffer Tool completed."))
def on_scale(self):
scale_factor = 1.0
@@ -4655,8 +4685,8 @@ class FlatCAMGrbEditor(QtCore.QObject):
scale_factor = float(self.scale_factor_entry.get_value().replace(',', '.'))
self.scale_factor_entry.set_value(scale_factor)
except ValueError:
- self.app.inform.emit(_("[WARNING_NOTCL] Scale factor value is missing or wrong format. "
- "Add it and retry."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Scale factor value is missing or wrong format. Add it and retry."))
return
def scale_recursion(geom_el, selection):
@@ -4687,9 +4717,8 @@ class FlatCAMGrbEditor(QtCore.QObject):
return geom_el
if not self.apertures_table.selectedItems():
- self.app.inform.emit(_(
- "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try again."
- ))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("No aperture to scale. Select at least one aperture and try again."))
return
for x in self.apertures_table.selectedItems():
@@ -4704,7 +4733,8 @@ class FlatCAMGrbEditor(QtCore.QObject):
log.debug("FlatCAMGrbEditor.on_scale() --> %s" % str(e))
self.plot_all()
- self.app.inform.emit(_("[success] Done. Scale Tool completed."))
+ self.app.inform.emit('[success] %s' %
+ _("Done. Scale Tool completed."))
def on_markarea(self):
# clear previous marking
@@ -4741,9 +4771,11 @@ class FlatCAMGrbEditor(QtCore.QObject):
self.ma_annotation.set(text=text, pos=position, visible=True,
font_size=self.app.defaults["cncjob_annotation_fontsize"],
color=self.app.defaults["global_sel_draw_color"])
- self.app.inform.emit(_("[success] Polygon areas marked."))
+ self.app.inform.emit('[success] %s' %
+ _("Polygon areas marked."))
else:
- self.app.inform.emit(_("[WARNING_NOTCL] There are no polygons to mark area."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("There are no polygons to mark area."))
def on_eraser(self):
self.select_tool('eraser')
@@ -5226,7 +5258,8 @@ class TransformEditorTool(FlatCAMTool):
def template(self):
if not self.fcdraw.selected:
- self.app.inform.emit(_("[WARNING_NOTCL] Transformation cancelled. No shape selected."))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("Transformation cancelled. No shape selected."))
return
self.draw_app.select_tool("select")
@@ -5246,8 +5279,8 @@ class TransformEditorTool(FlatCAMTool):
try:
value = float(self.rotate_entry.get_value().replace(',', '.'))
except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered for Rotate, "
- "use a number."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Wrong value format entered, use a number."))
return
self.app.worker_task.emit({'fcn': self.on_rotate_action,
'params': [value]})
@@ -5289,8 +5322,8 @@ class TransformEditorTool(FlatCAMTool):
try:
value = float(self.skewx_entry.get_value().replace(',', '.'))
except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered for Skew X, "
- "use a number."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Wrong value format entered, use a number."))
return
# self.on_skew("X", value)
@@ -5316,8 +5349,8 @@ class TransformEditorTool(FlatCAMTool):
try:
value = float(self.skewy_entry.get_value().replace(',', '.'))
except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered for Skew Y, "
- "use a number."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Wrong value format entered, use a number."))
return
# self.on_skew("Y", value)
@@ -5343,8 +5376,8 @@ class TransformEditorTool(FlatCAMTool):
try:
x_value = float(self.scalex_entry.get_value().replace(',', '.'))
except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered for Scale X, "
- "use a number."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Wrong value format entered, use a number."))
return
# scaling to zero has no sense so we remove it, because scaling with 1 does nothing
@@ -5384,8 +5417,8 @@ class TransformEditorTool(FlatCAMTool):
try:
y_value = float(self.scaley_entry.get_value().replace(',', '.'))
except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered for Scale Y, "
- "use a number."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Wrong value format entered, use a number."))
return
# scaling to zero has no sense so we remove it, because scaling with 1 does nothing
@@ -5422,8 +5455,8 @@ class TransformEditorTool(FlatCAMTool):
try:
value = float(self.offx_entry.get_value().replace(',', '.'))
except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered for Offset X, "
- "use a number."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Wrong value format entered, use a number."))
return
# self.on_offset("X", value)
@@ -5448,8 +5481,8 @@ class TransformEditorTool(FlatCAMTool):
try:
value = float(self.offy_entry.get_value().replace(',', '.'))
except ValueError:
- self.app.inform.emit(_("[ERROR_NOTCL] Wrong value format entered for Offset Y, "
- "use a number."))
+ self.app.inform.emit('[ERROR_NOTCL] %s' %
+ _("Wrong value format entered, use a number."))
return
# self.on_offset("Y", value)
@@ -5471,7 +5504,8 @@ class TransformEditorTool(FlatCAMTool):
ymaxlist = []
if not elem_list:
- self.app.inform.emit(_("[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("No shape selected. Please Select a shape to rotate!"))
return
with self.app.proc_container.new(_("Appying Rotate")):
@@ -5507,10 +5541,12 @@ class TransformEditorTool(FlatCAMTool):
sel_el['clear'] = affinity.rotate(sel_el['clear'], angle=-num, origin=(px, py))
self.draw_app.plot_all()
- self.app.inform.emit(_("[success] Done. Rotate completed."))
+ self.app.inform.emit('[success] %s' %
+ _("Done. Rotate completed."))
self.app.progress.emit(100)
except Exception as e:
- self.app.inform.emit(_("[ERROR_NOTCL] Due of %s, rotation movement was not executed.") % str(e))
+ self.app.inform.emit('[ERROR_NOTCL] %s: %s' %
+ (_("Rotation action was not executed."), str(e)))
return
def on_flip(self, axis):
@@ -5526,7 +5562,8 @@ class TransformEditorTool(FlatCAMTool):
ymaxlist = []
if not elem_list:
- self.app.inform.emit(_("[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("No shape selected. Please Select a shape to flip!"))
return
with self.app.proc_container.new(_("Applying Flip")):
@@ -5568,7 +5605,8 @@ class TransformEditorTool(FlatCAMTool):
sel_el['follow'] = affinity.scale(sel_el['follow'], xfact=1, yfact=-1, origin=(px, py))
if 'clear' in sel_el:
sel_el['clear'] = affinity.scale(sel_el['clear'], xfact=1, yfact=-1, origin=(px, py))
- self.app.inform.emit(_('[success] Flip on the Y axis done ...'))
+ self.app.inform.emit('[success] %s...' %
+ _('Flip on the Y axis done'))
elif axis is 'Y':
if 'solid' in sel_el:
sel_el['solid'] = affinity.scale(sel_el['solid'], xfact=-1, yfact=1, origin=(px, py))
@@ -5576,12 +5614,14 @@ class TransformEditorTool(FlatCAMTool):
sel_el['follow'] = affinity.scale(sel_el['follow'], xfact=-1, yfact=1, origin=(px, py))
if 'clear' in sel_el:
sel_el['clear'] = affinity.scale(sel_el['clear'], xfact=-1, yfact=1, origin=(px, py))
- self.app.inform.emit(_('[success] Flip on the X axis done ...'))
+ self.app.inform.emit('[success] %s...' %
+ _('Flip on the X axis done'))
self.draw_app.plot_all()
self.app.progress.emit(100)
except Exception as e:
- self.app.inform.emit(_("[ERROR_NOTCL] Due of %s, Flip action was not executed.") % str(e))
+ self.app.inform.emit('[ERROR_NOTCL] %s: %s' %
+ (_("Flip action was not executed."), str(e)))
return
def on_skew(self, axis, num):
@@ -5596,7 +5636,8 @@ class TransformEditorTool(FlatCAMTool):
yminlist = []
if not elem_list:
- self.app.inform.emit(_("[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("No shape selected. Please Select a shape to shear/skew!"))
return
else:
with self.app.proc_container.new(_("Applying Skew")):
@@ -5634,11 +5675,17 @@ class TransformEditorTool(FlatCAMTool):
sel_el['clear'] = affinity.skew(sel_el['clear'], 0, num, origin=(xminimal, yminimal))
self.draw_app.plot_all()
- self.app.inform.emit(_('[success] Skew on the %s axis done ...') % str(axis))
+ if str(axis) == 'X':
+ self.app.inform.emit('[success] %s...' %
+ _('Skew on the X axis done'))
+ else:
+ self.app.inform.emit('[success] %s...' %
+ _('Skew on the Y axis done'))
self.app.progress.emit(100)
except Exception as e:
- self.app.inform.emit(_("[ERROR_NOTCL] Due of %s, Skew action was not executed.") % str(e))
+ self.app.inform.emit('[ERROR_NOTCL] %s: %s' %
+ (_("Skew action was not executed."), str(e)))
return
def on_scale(self, axis, xfactor, yfactor, point=None):
@@ -5657,7 +5704,8 @@ class TransformEditorTool(FlatCAMTool):
ymaxlist = []
if not elem_list:
- self.app.inform.emit(_("[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("No shape selected. Please Select a shape to scale!"))
return
else:
with self.app.proc_container.new(_("Applying Scale")):
@@ -5698,10 +5746,16 @@ class TransformEditorTool(FlatCAMTool):
sel_el['clear'] = affinity.scale(sel_el['clear'], xfactor, yfactor, origin=(px, py))
self.draw_app.plot_all()
- self.app.inform.emit(_('[success] Scale on the %s axis done ...') % str(axis))
+ if str(axis) == 'X':
+ self.app.inform.emit('[success] %s...' %
+ _('Scale on the X axis done'))
+ else:
+ self.app.inform.emit('[success] %s...' %
+ _('Scale on the Y axis done'))
self.app.progress.emit(100)
except Exception as e:
- self.app.inform.emit(_("[ERROR_NOTCL] Due of %s, Scale action was not executed.") % str(e))
+ self.app.inform.emit('[ERROR_NOTCL] %s: %s' %
+ (_("Scale action was not executed."), str(e)))
return
def on_offset(self, axis, num):
@@ -5714,7 +5768,8 @@ class TransformEditorTool(FlatCAMTool):
elem_list = self.draw_app.selected
if not elem_list:
- self.app.inform.emit(_("[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"))
+ self.app.inform.emit('[WARNING_NOTCL] %s' %
+ _("No shape selected. Please Select a shape to offset!"))
return
else:
with self.app.proc_container.new(_("Applying Offset")):
@@ -5739,11 +5794,17 @@ class TransformEditorTool(FlatCAMTool):
sel_el['clear'] = affinity.translate(sel_el['clear'], 0, num)
self.draw_app.plot_all()
- self.app.inform.emit(_('[success] Offset on the %s axis done ...') % str(axis))
+ if str(axis) == 'X':
+ self.app.inform.emit('[success] %s...' %
+ _('Offset on the X axis done'))
+ else:
+ self.app.inform.emit('[success] %s...' %
+ _('Offset on the Y axis done'))
self.app.progress.emit(100)
except Exception as e:
- self.app.inform.emit(_("[ERROR_NOTCL] Due of %s, Offset action was not executed.") % str(e))
+ self.app.inform.emit('[ERROR_NOTCL] %s: %s' %
+ (_("Offset action was not executed."), str(e)))
return
def on_rotate_key(self):
@@ -5756,14 +5817,12 @@ class TransformEditorTool(FlatCAMTool):
val, ok = val_box.get_value()
if ok:
self.on_rotate(val=val)
- self.app.inform.emit(
- _("[success] Geometry shape rotate done...")
- )
+ self.app.inform.emit('[success] %s...' %
+ _("Geometry shape rotate done"))
return
else:
- self.app.inform.emit(
- _("[WARNING_NOTCL] Geometry shape rotate cancelled...")
- )
+ self.app.inform.emit('[WARNING_NOTCL] %s...' %
+ _("Geometry shape rotate cancelled"))
def on_offx_key(self):
units = self.app.ui.general_defaults_form.general_app_group.units_radio.get_value().lower()
@@ -5777,12 +5836,12 @@ class TransformEditorTool(FlatCAMTool):
val, ok = val_box.get_value()
if ok:
self.on_offx(val=val)
- self.app.inform.emit(
- _("[success] Geometry shape offset on X axis done..."))
+ self.app.inform.emit('[success] %s...' %
+ _("Geometry shape offset on X axis done"))
return
else:
- self.app.inform.emit(
- _("[WARNING_NOTCL] Geometry shape offset X cancelled..."))
+ self.app.inform.emit('[WARNING_NOTCL] %s...' %
+ _("Geometry shape offset X cancelled"))
def on_offy_key(self):
units = self.app.ui.general_defaults_form.general_app_group.units_radio.get_value().lower()
@@ -5796,12 +5855,12 @@ class TransformEditorTool(FlatCAMTool):
val, ok = val_box.get_value()
if ok:
self.on_offx(val=val)
- self.app.inform.emit(
- _("[success] Geometry shape offset on Y axis done..."))
+ self.app.inform.emit('[success] %s...' %
+ _("Geometry shape offset on Y axis done"))
return
else:
- self.app.inform.emit(
- _("[WARNING_NOTCL] Geometry shape offset Y cancelled..."))
+ self.app.inform.emit('[WARNING_NOTCL] %s...' %
+ _("Geometry shape offset Y cancelled"))
def on_skewx_key(self):
val_box = FCInputDialog(title=_("Skew on X axis ..."),
@@ -5813,12 +5872,12 @@ class TransformEditorTool(FlatCAMTool):
val, ok = val_box.get_value()
if ok:
self.on_skewx(val=val)
- self.app.inform.emit(
- _("[success] Geometry shape skew on X axis done..."))
+ self.app.inform.emit('[success] %s...' %
+ _("Geometry shape skew on X axis done"))
return
else:
- self.app.inform.emit(
- _("[WARNING_NOTCL] Geometry shape skew X cancelled..."))
+ self.app.inform.emit('[WARNING_NOTCL] %s...' %
+ _("Geometry shape skew X cancelled"))
def on_skewy_key(self):
val_box = FCInputDialog(title=_("Skew on Y axis ..."),
@@ -5830,12 +5889,12 @@ class TransformEditorTool(FlatCAMTool):
val, ok = val_box.get_value()
if ok:
self.on_skewx(val=val)
- self.app.inform.emit(
- _("[success] Geometry shape skew on Y axis done..."))
+ self.app.inform.emit('[success] %s...' %
+ _("Geometry shape skew on Y axis done"))
return
else:
- self.app.inform.emit(
- _("[WARNING_NOTCL] Geometry shape skew Y cancelled..."))
+ self.app.inform.emit('[WARNING_NOTCL] %s...' %
+ _("Geometry shape skew Y cancelled"))
def get_shapely_list_bounds(geometry_list):
diff --git a/flatcamGUI/FlatCAMGUI.py b/flatcamGUI/FlatCAMGUI.py
index 09d34802..bd13e541 100644
--- a/flatcamGUI/FlatCAMGUI.py
+++ b/flatcamGUI/FlatCAMGUI.py
@@ -6665,7 +6665,7 @@ class ToolsNCCPrefGroupUI(OptionsGroupUI):
# ## Plotting type
self.ncc_plotting_radio = RadioSet([{'label': _('Normal'), 'value': 'normal'},
- {"label": _("progressive"), "value": "progressive"}])
+ {"label": _("Progressive"), "value": "progressive"}])
plotting_label = QtWidgets.QLabel('%s:' % _("NCC Plotting"))
plotting_label.setToolTip(
_("- 'Normal' - normal plotting, done at the end of the NCC job\n"
@@ -6971,7 +6971,7 @@ class ToolsPaintPrefGroupUI(OptionsGroupUI):
# ## Plotting type
self.paint_plotting_radio = RadioSet([{'label': _('Normal'), 'value': 'normal'},
- {"label": _("progressive"), "value": "progressive"}])
+ {"label": _("Progressive"), "value": "progressive"}])
plotting_label = QtWidgets.QLabel('%s:' % _("Paint Plotting"))
plotting_label.setToolTip(
_("- 'Normal' - normal plotting, done at the end of the Paint job\n"
diff --git a/flatcamParsers/ParseFont.py b/flatcamParsers/ParseFont.py
index d280d77e..64021004 100644
--- a/flatcamParsers/ParseFont.py
+++ b/flatcamParsers/ParseFont.py
@@ -23,6 +23,13 @@ import freetype as ft
from fontTools import ttLib
import logging
+import gettext
+import FlatCAMTranslation as fcTranslate
+import builtins
+
+fcTranslate.apply_language('strings')
+if '_' not in builtins.__dict__:
+ _ = gettext.gettext
log = logging.getLogger('base2')
@@ -295,7 +302,7 @@ class ParseFont():
elif font_type == 'regular':
path_filename = regular_dict[font_name]
except Exception as e:
- self.app.inform.emit("[ERROR_NOTCL] Font not supported, try another one.")
+ self.app.inform.emit('[ERROR_NOTCL] %s' % _("Font not supported, try another one."))
log.debug("[ERROR_NOTCL] Font Loading: %s" % str(e))
return "flatcam font parse failed"
diff --git a/flatcamTools/ToolNonCopperClear.py b/flatcamTools/ToolNonCopperClear.py
index 550a5565..4b7a8a2e 100644
--- a/flatcamTools/ToolNonCopperClear.py
+++ b/flatcamTools/ToolNonCopperClear.py
@@ -2564,7 +2564,10 @@ class NonCopperClear(FlatCAMTool, Gerber):
the given boundary polygon. If not specified, it defaults to
the rectangular bounding box of target geometry.
"""
- geo_len = len(target)
+ if isinstance(target, Polygon):
+ geo_len = 1
+ else:
+ geo_len = len(target)
pol_nr = 0
old_disp_number = 0
diff --git a/flatcamTools/ToolPaint.py b/flatcamTools/ToolPaint.py
index b0b5c9e9..b9ab28b2 100644
--- a/flatcamTools/ToolPaint.py
+++ b/flatcamTools/ToolPaint.py
@@ -350,6 +350,8 @@ class ToolPaint(FlatCAMTool, Gerber):
self.obj_name = ""
self.paint_obj = None
+ self.bound_obj_name = ""
+ self.bound_obj = None
self.units = ''
self.paint_tools = {}
@@ -680,8 +682,8 @@ class ToolPaint(FlatCAMTool, Gerber):
try:
self.tools_table.itemChanged.disconnect()
- except Exception as e:
- log.debug("ToolPaint.on_tool_add() --> %s" % str(e))
+ except TypeError:
+ pass
if dia:
tool_dia = dia
@@ -751,8 +753,8 @@ class ToolPaint(FlatCAMTool, Gerber):
try:
self.tools_table.itemChanged.disconnect()
- except Exception as e:
- log.debug("ToolPaint.on_tool_edit() --> %s" % str(e))
+ except TypeError:
+ pass
tool_dias = []
for k, v in self.paint_tools.items():
@@ -850,8 +852,7 @@ class ToolPaint(FlatCAMTool, Gerber):
def on_tool_delete(self, rows_to_delete=None, all=None):
try:
self.tools_table.itemChanged.disconnect()
- except Exception as e:
- log.debug("ToolPaint.on_tool_delete() --> %s" % str(e))
+ except TypeError:
pass
deleted_tools_list = []
@@ -1277,13 +1278,13 @@ class ToolPaint(FlatCAMTool, Gerber):
else:
pass
- def paint_p(polyg, tooldia):
+ def paint_p(polyg, tooldiameter):
cpoly = None
try:
if paint_method == "seed":
# Type(cp) == FlatCAMRTreeStorage | None
cpoly = self.clear_polygon2(polyg,
- tooldia=tooldia,
+ tooldia=tooldiameter,
steps_per_circle=self.app.defaults["geometry_circle_steps"],
overlap=over,
contour=cont,
@@ -1293,7 +1294,7 @@ class ToolPaint(FlatCAMTool, Gerber):
elif paint_method == "lines":
# Type(cp) == FlatCAMRTreeStorage | None
cpoly = self.clear_polygon3(polyg,
- tooldia=tooldia,
+ tooldia=tooldiameter,
steps_per_circle=self.app.defaults["geometry_circle_steps"],
overlap=over,
contour=cont,
@@ -1303,12 +1304,12 @@ class ToolPaint(FlatCAMTool, Gerber):
else:
# Type(cp) == FlatCAMRTreeStorage | None
cpoly = self.clear_polygon(polyg,
- tooldia=tooldia,
+ tooldia=tooldiameter,
steps_per_circle=self.app.defaults["geometry_circle_steps"],
overlap=over,
contour=cont,
connect=conn,
- prog_plot=prog_plot)
+ prog_plot=prog_plot)
except FlatCAMApp.GracefulException:
return "fail"
except Exception as e:
@@ -1318,8 +1319,8 @@ class ToolPaint(FlatCAMTool, Gerber):
geo_obj.solid_geometry += list(cpoly.get_objects())
return cpoly
else:
- self.app.inform.emit('[ERROR_NOTCL] %s' %
- _('Geometry could not be painted completely'))
+ app_obj.inform.emit('[ERROR_NOTCL] %s' %
+ _('Geometry could not be painted completely'))
return None
try:
@@ -1363,10 +1364,12 @@ class ToolPaint(FlatCAMTool, Gerber):
return "fail"
except Exception as e:
log.debug("Could not Paint the polygons. %s" % str(e))
- self.app.inform.emit('[ERROR] %s\n%s' %
- (_("Could not do Paint. Try a different combination of parameters. "
- "Or a different strategy of paint"),
- str(e)))
+ app_obj.inform.emit('[ERROR] %s\n%s' %
+ (_("Could not do Paint. Try a different combination of parameters. "
+ "Or a different strategy of paint"),
+ str(e)
+ )
+ )
return "fail"
# add the solid_geometry to the current too in self.paint_tools (tools_storage)
@@ -1636,7 +1639,7 @@ class ToolPaint(FlatCAMTool, Gerber):
painted_area = recurse(obj.solid_geometry)
# variables to display the percentage of work done
geo_len = len(painted_area)
- disp_number = 0
+
old_disp_number = 0
log.warning("Total number of polygons to be cleared. %s" % str(geo_len))
@@ -1800,7 +1803,7 @@ class ToolPaint(FlatCAMTool, Gerber):
painted_area = recurse(obj.solid_geometry)
# variables to display the percentage of work done
geo_len = int(len(painted_area) / 100)
- disp_number = 0
+
old_disp_number = 0
log.warning("Total number of polygons to be cleared. %s" % str(geo_len))
@@ -2099,7 +2102,6 @@ class ToolPaint(FlatCAMTool, Gerber):
# variables to display the percentage of work done
geo_len = len(painted_area)
- disp_number = 0
old_disp_number = 0
log.warning("Total number of polygons to be cleared. %s" % str(geo_len))
@@ -2111,7 +2113,6 @@ class ToolPaint(FlatCAMTool, Gerber):
continue
poly_buf = geo.buffer(-paint_margin)
- cp = None
if paint_method == "seed":
# Type(cp) == FlatCAMRTreeStorage | None
cp = self.clear_polygon2(poly_buf,
@@ -2140,7 +2141,7 @@ class ToolPaint(FlatCAMTool, Gerber):
overlap=over,
contour=cont,
connect=conn,
- prog_plot=prog_plot)
+ prog_plot=prog_plot)
if cp is not None:
total_geometry += list(cp.get_objects())
@@ -2269,7 +2270,6 @@ class ToolPaint(FlatCAMTool, Gerber):
# variables to display the percentage of work done
geo_len = len(painted_area)
- disp_number = 0
old_disp_number = 0
log.warning("Total number of polygons to be cleared. %s" % str(geo_len))
diff --git a/flatcamTools/ToolPanelize.py b/flatcamTools/ToolPanelize.py
index 62b6c480..d0747ebb 100644
--- a/flatcamTools/ToolPanelize.py
+++ b/flatcamTools/ToolPanelize.py
@@ -565,12 +565,7 @@ class Panelize(FlatCAMTool):
if isinstance(panel_obj, FlatCAMGerber):
obj_fin.apertures = deepcopy(panel_obj.apertures)
for ap in obj_fin.apertures:
- if 'solid_geometry' in obj_fin.apertures[ap]:
- obj_fin.apertures[ap]['solid_geometry'] = []
- if 'clear_geometry' in obj_fin.apertures[ap]:
- obj_fin.apertures[ap]['clear_geometry'] = []
- if 'follow_geometry' in obj_fin.apertures[ap]:
- obj_fin.apertures[ap]['follow_geometry'] = []
+ obj_fin.apertures[ap]['geometry'] = list()
self.app.progress.emit(0)
for row in range(rows):
@@ -599,36 +594,29 @@ class Panelize(FlatCAMTool):
obj_fin.solid_geometry.append(geo)
for apid in panel_obj.apertures:
- if 'solid_geometry' in panel_obj.apertures[apid]:
- geo_aper = translate_recursion(panel_obj.apertures[apid]['solid_geometry'])
- if isinstance(geo_aper, list):
- obj_fin.apertures[apid]['solid_geometry'] += geo_aper
- else:
- obj_fin.apertures[apid]['solid_geometry'].append(geo_aper)
+ for el in panel_obj.apertures[apid]['geometry']:
+ new_el = dict()
+ if 'solid' in el:
+ geo_aper = translate_recursion(el['solid'])
+ new_el['solid'] = deepcopy(geo_aper)
- if 'clear_geometry' in panel_obj.apertures[apid]:
- geo_aper = translate_recursion(panel_obj.apertures[apid]['clear_geometry'])
- if isinstance(geo_aper, list):
- obj_fin.apertures[apid]['clear_geometry'] += geo_aper
- else:
- obj_fin.apertures[apid]['clear_geometry'].append(geo_aper)
+ if 'clear' in el:
+ geo_aper = translate_recursion(el['clear'])
+ new_el['clear'] = deepcopy(geo_aper)
- if 'follow_geometry' in panel_obj.apertures[apid]:
- geo_aper = translate_recursion(panel_obj.apertures[apid]['follow_geometry'])
- if isinstance(geo_aper, list):
- obj_fin.apertures[apid]['follow_geometry'] += geo_aper
- else:
- obj_fin.apertures[apid]['follow_geometry'].append(geo_aper)
+ if 'follow' in el:
+ geo_aper = translate_recursion(el['follow'])
+ new_el['follow'] = deepcopy(geo_aper)
+
+ obj_fin.apertures[apid]['geometry'].append(deepcopy(new_el))
currentx += lenghtx
currenty += lenghty
app_obj.log.debug("Found %s geometries. Creating a panel geometry cascaded union ..." %
len(obj_fin.solid_geometry))
- self.app.inform.emit(_("Found %s geometries. Creating a final panel geometry ...") %
- len(obj_fin.solid_geometry))
- obj_fin.solid_geometry = cascaded_union(obj_fin.solid_geometry)
+ # obj_fin.solid_geometry = cascaded_union(obj_fin.solid_geometry)
app_obj.log.debug("Finished creating a cascaded union for the panel.")
if isinstance(panel_obj, FlatCAMExcellon):
diff --git a/locale/de/LC_MESSAGES/strings.mo b/locale/de/LC_MESSAGES/strings.mo
index 20804092..959f8330 100644
Binary files a/locale/de/LC_MESSAGES/strings.mo and b/locale/de/LC_MESSAGES/strings.mo differ
diff --git a/locale/de/LC_MESSAGES/strings.po b/locale/de/LC_MESSAGES/strings.po
index 4648c4a0..55257b95 100644
--- a/locale/de/LC_MESSAGES/strings.po
+++ b/locale/de/LC_MESSAGES/strings.po
@@ -1,15 +1,15 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"POT-Creation-Date: 2019-09-09 18:59+0300\n"
-"PO-Revision-Date: 2019-09-09 19:29+0300\n"
+"POT-Creation-Date: 2019-09-10 00:20+0300\n"
+"PO-Revision-Date: 2019-09-10 00:46+0300\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 2.0.7\n"
+"X-Generator: Poedit 2.2.3\n"
"X-Poedit-Basepath: ../../..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SearchPath-0: .\n"
@@ -154,7 +154,7 @@ msgstr "Export der FlatCAM-Einstellungen wurde abgebrochen."
#: FlatCAMApp.py:3296 FlatCAMApp.py:5531 FlatCAMApp.py:8113 FlatCAMApp.py:8229
#: FlatCAMApp.py:8355 FlatCAMApp.py:8414 FlatCAMApp.py:8528 FlatCAMApp.py:8657
-#: FlatCAMObj.py:6165 flatcamTools/ToolSolderPaste.py:1428
+#: FlatCAMObj.py:6167 flatcamTools/ToolSolderPaste.py:1428
msgid ""
"Permission denied, saving not possible.\n"
"Most likely another app is holding the file open and not accessible."
@@ -186,7 +186,7 @@ msgstr "Fehler beim Öffnen der zuletzt geöffneten Datei zum Schreiben."
msgid "Failed to open recent projects file for writing."
msgstr "Fehler beim Öffnen der letzten Projektdatei zum Schreiben."
-#: FlatCAMApp.py:3519 camlib.py:4797 flatcamTools/ToolSolderPaste.py:1214
+#: FlatCAMApp.py:3519 camlib.py:4806 flatcamTools/ToolSolderPaste.py:1214
msgid "An internal error has ocurred. See shell.\n"
msgstr "Ein interner Fehler ist aufgetreten. Siehe Shell.\n"
@@ -391,7 +391,7 @@ msgstr "G-Code exportieren ..."
msgid "Export Code cancelled."
msgstr "Exportcode abgebrochen."
-#: FlatCAMApp.py:5527 FlatCAMObj.py:6161 flatcamTools/ToolSolderPaste.py:1424
+#: FlatCAMApp.py:5527 FlatCAMObj.py:6163 flatcamTools/ToolSolderPaste.py:1424
msgid "No such file or directory"
msgstr "Keine solche Datei oder Ordner"
@@ -475,7 +475,16 @@ msgstr "Geben Sie die Koordinaten im Format X, Y ein:"
msgid "Wrong coordinates. Enter coordinates in format: X,Y"
msgstr "Falsche Koordinaten. Koordinaten im Format eingeben: X, Y"
-#: FlatCAMApp.py:5873
+#: FlatCAMApp.py:5873 flatcamEditors/FlatCAMExcEditor.py:3445
+#: flatcamEditors/FlatCAMExcEditor.py:3453
+#: flatcamEditors/FlatCAMGeoEditor.py:3791
+#: flatcamEditors/FlatCAMGeoEditor.py:3806
+#: flatcamEditors/FlatCAMGrbEditor.py:1067
+#: flatcamEditors/FlatCAMGrbEditor.py:1171
+#: flatcamEditors/FlatCAMGrbEditor.py:1445
+#: flatcamEditors/FlatCAMGrbEditor.py:1703
+#: flatcamEditors/FlatCAMGrbEditor.py:4182
+#: flatcamEditors/FlatCAMGrbEditor.py:4197
msgid "Done."
msgstr "Gemacht."
@@ -527,6 +536,7 @@ msgid "Flip on Y axis done."
msgstr "Y-Achse spiegeln fertig."
#: FlatCAMApp.py:6279 FlatCAMApp.py:6322
+#: flatcamEditors/FlatCAMGrbEditor.py:5624
msgid "Flip action was not executed."
msgstr "Flip-Aktion wurde nicht ausgeführt."
@@ -578,9 +588,9 @@ msgstr "Neigung auf der Y-Achse"
msgid "Grid On/Off"
msgstr "Raster ein/aus"
-#: FlatCAMApp.py:6504 flatcamEditors/FlatCAMGeoEditor.py:939
-#: flatcamEditors/FlatCAMGrbEditor.py:2460
-#: flatcamEditors/FlatCAMGrbEditor.py:5102 flatcamGUI/ObjectUI.py:1053
+#: FlatCAMApp.py:6504 flatcamEditors/FlatCAMGeoEditor.py:940
+#: flatcamEditors/FlatCAMGrbEditor.py:2477
+#: flatcamEditors/FlatCAMGrbEditor.py:5134 flatcamGUI/ObjectUI.py:1053
#: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:207
#: flatcamTools/ToolNonCopperClear.py:237 flatcamTools/ToolPaint.py:176
#: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:483
@@ -588,8 +598,8 @@ msgstr "Raster ein/aus"
msgid "Add"
msgstr "Hinzufügen"
-#: FlatCAMApp.py:6505 FlatCAMObj.py:3564
-#: flatcamEditors/FlatCAMGrbEditor.py:2465 flatcamGUI/FlatCAMGUI.py:545
+#: FlatCAMApp.py:6505 FlatCAMObj.py:3566
+#: flatcamEditors/FlatCAMGrbEditor.py:2482 flatcamGUI/FlatCAMGUI.py:545
#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:1719
#: flatcamGUI/FlatCAMGUI.py:2094 flatcamGUI/ObjectUI.py:1069
#: flatcamTools/ToolNonCopperClear.py:249 flatcamTools/ToolPaint.py:188
@@ -647,7 +657,7 @@ msgstr "Kein Objekt zum Kopieren des Namens ausgewählt"
msgid "Name copied on clipboard ..."
msgstr "Name in Zwischenablage kopiert ..."
-#: FlatCAMApp.py:6654
+#: FlatCAMApp.py:6654 flatcamEditors/FlatCAMGrbEditor.py:4122
msgid "Coordinates copied to clipboard."
msgstr "Koordinaten in die Zwischenablage kopiert."
@@ -716,8 +726,8 @@ msgstr "Offene Einstellungsdatei"
msgid "Open Config cancelled."
msgstr "Öffnen der Konfigurationsdatei abgebrochen."
-#: FlatCAMApp.py:7415 FlatCAMApp.py:7684 FlatCAMApp.py:10117
-#: FlatCAMApp.py:10138 FlatCAMApp.py:10160 FlatCAMApp.py:10183
+#: FlatCAMApp.py:7415 FlatCAMApp.py:7684 FlatCAMApp.py:10115
+#: FlatCAMApp.py:10136 FlatCAMApp.py:10158 FlatCAMApp.py:10181
msgid "No object selected."
msgstr "Kein Objekt ausgewählt."
@@ -869,7 +879,7 @@ msgstr "Quelleditor"
msgid "App.on_view_source() -->"
msgstr "App.on_view_source() -->"
-#: FlatCAMApp.py:7865 FlatCAMApp.py:9112 FlatCAMObj.py:5944
+#: FlatCAMApp.py:7865 FlatCAMApp.py:9110 FlatCAMObj.py:5946
#: flatcamTools/ToolSolderPaste.py:1304
msgid "Code Editor"
msgstr "Code-Editor"
@@ -1019,8 +1029,8 @@ msgstr ""
msgid "Importing SVG"
msgstr "SVG importieren"
-#: FlatCAMApp.py:8792 FlatCAMApp.py:8836 FlatCAMApp.py:8881 FlatCAMApp.py:8964
-#: FlatCAMApp.py:9031 FlatCAMApp.py:9098
+#: FlatCAMApp.py:8792 FlatCAMApp.py:8836 FlatCAMApp.py:8881 FlatCAMApp.py:8962
+#: FlatCAMApp.py:9029 FlatCAMApp.py:9096
msgid "Opened"
msgstr "Geöffnet"
@@ -1036,70 +1046,64 @@ msgstr "Bild importieren"
msgid "Failed to open file"
msgstr "Datei konnte nicht geöffnet werden"
-#: FlatCAMApp.py:8915
-#, python-brace-format
-#| msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
-msgid "{e_code} Failed to parse file: {name}. {error}"
-msgstr "{e_code} Datei konnte nicht analysiert werden: {name}. {error}"
-
#: FlatCAMApp.py:8916
-msgid "[ERROR_NOTCL]"
-msgstr "[ERROR_NOTCL]"
+msgid "Failed to parse file"
+msgstr "Datei konnte nicht analysiert werden"
-#: FlatCAMApp.py:8925 FlatCAMApp.py:8999 FlatCAMObj.py:4521
-#: flatcamTools/ToolPcbWizard.py:437
+#: FlatCAMApp.py:8923 FlatCAMApp.py:8997 FlatCAMObj.py:4523
+#: flatcamEditors/FlatCAMGrbEditor.py:3939 flatcamTools/ToolPcbWizard.py:437
msgid "An internal error has occurred. See shell.\n"
msgstr "Ein interner Fehler ist aufgetreten. Siehe Shell.\n"
-#: FlatCAMApp.py:8935
+#: FlatCAMApp.py:8933
msgid "Object is not Gerber file or empty. Aborting object creation."
msgstr ""
"Objekt ist keine Gerberdatei oder leer. Objekterstellung wird abgebrochen."
-#: FlatCAMApp.py:8943
+#: FlatCAMApp.py:8941
msgid "Opening Gerber"
msgstr "Gerber öffnen"
-#: FlatCAMApp.py:8954
+#: FlatCAMApp.py:8952
msgid " Open Gerber failed. Probable not a Gerber file."
msgstr "Gerber öffnen ist fehlgeschlagen. Wahrscheinlich keine Gerber-Datei."
-#: FlatCAMApp.py:8989 flatcamTools/ToolPcbWizard.py:427
+#: FlatCAMApp.py:8987 flatcamTools/ToolPcbWizard.py:427
msgid "This is not Excellon file."
msgstr "Dies ist keine Excellon-Datei."
-#: FlatCAMApp.py:8993
+#: FlatCAMApp.py:8991
msgid "Cannot open file"
msgstr "Kann Datei nicht öffnen"
-#: FlatCAMApp.py:9013 flatcamTools/ToolPDF.py:270
+#: FlatCAMApp.py:9011 flatcamTools/ToolPDF.py:270
#: flatcamTools/ToolPcbWizard.py:451
msgid "No geometry found in file"
msgstr "Keine Geometrie in der Datei gefunden"
-#: FlatCAMApp.py:9016
+#: FlatCAMApp.py:9014
msgid "Opening Excellon."
msgstr "Eröffnung Excellon."
-#: FlatCAMApp.py:9023
+#: FlatCAMApp.py:9021
msgid "Open Excellon file failed. Probable not an Excellon file."
msgstr ""
"Die Excellon-Datei konnte nicht geöffnet werden. Wahrscheinlich keine "
"Excellon-Datei."
-#: FlatCAMApp.py:9062
+#: FlatCAMApp.py:9060
msgid "Failed to open"
msgstr "Gescheitert zu öffnen"
-#: FlatCAMApp.py:9073
+#: FlatCAMApp.py:9071
msgid "This is not GCODE"
msgstr "Dies ist kein GCODE"
-#: FlatCAMApp.py:9079
+#: FlatCAMApp.py:9077
msgid "Opening G-Code."
msgstr "G-Code öffnen."
-#: FlatCAMApp.py:9088
+#: FlatCAMApp.py:9086
msgid ""
"Failed to create CNCJob Object. Probable not a GCode file.\n"
" Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
@@ -1110,31 +1114,31 @@ msgstr ""
"Der Versuch, ein FlatCAM-CNCJob-Objekt aus einer G-Code-Datei zu erstellen, "
"ist während der Verarbeitung fehlgeschlagen"
-#: FlatCAMApp.py:9130
+#: FlatCAMApp.py:9128
msgid "Failed to open config file"
msgstr "Fehler beim Öffnen der Konfigurationsdatei"
-#: FlatCAMApp.py:9151
+#: FlatCAMApp.py:9149
msgid "Loading Project ... Please Wait ..."
msgstr "Projekt wird geladen ... Bitte warten ..."
-#: FlatCAMApp.py:9159 FlatCAMApp.py:9178
+#: FlatCAMApp.py:9157 FlatCAMApp.py:9176
msgid "Failed to open project file"
msgstr "Projektdatei konnte nicht geöffnet werden"
-#: FlatCAMApp.py:9202
+#: FlatCAMApp.py:9200
msgid "Loading Project ... restoring"
msgstr "Projekt wird geladen ... wird wiederhergestellt"
-#: FlatCAMApp.py:9212
+#: FlatCAMApp.py:9210
msgid "Project loaded from"
msgstr "Projekt geladen von"
-#: FlatCAMApp.py:9318
+#: FlatCAMApp.py:9316
msgid "Available commands:\n"
msgstr "Verfügbare Befehle:\n"
-#: FlatCAMApp.py:9320
+#: FlatCAMApp.py:9318
msgid ""
"\n"
"\n"
@@ -1146,36 +1150,36 @@ msgstr ""
"Geben Sie help für die Verwendung ein.\n"
"Beispiel: help open_gerber"
-#: FlatCAMApp.py:9470
+#: FlatCAMApp.py:9468
msgid "Shows list of commands."
msgstr "Zeigt eine Liste von Befehlen an."
-#: FlatCAMApp.py:9528
+#: FlatCAMApp.py:9526
msgid "Failed to load recent item list."
msgstr "Fehler beim Laden der letzten Elementliste."
-#: FlatCAMApp.py:9536
+#: FlatCAMApp.py:9534
msgid "Failed to parse recent item list."
msgstr "Liste der letzten Artikel konnte nicht analysiert werden."
-#: FlatCAMApp.py:9547
+#: FlatCAMApp.py:9545
msgid "Failed to load recent projects item list."
msgstr "Fehler beim Laden der Artikelliste der letzten Projekte."
-#: FlatCAMApp.py:9555
+#: FlatCAMApp.py:9553
msgid "Failed to parse recent project item list."
msgstr ""
"Fehler beim Analysieren der Liste der zuletzt verwendeten Projektelemente."
-#: FlatCAMApp.py:9614 FlatCAMApp.py:9637
+#: FlatCAMApp.py:9612 FlatCAMApp.py:9635
msgid "Clear Recent files"
msgstr "Letzte Dateien löschen"
-#: FlatCAMApp.py:9654 flatcamGUI/FlatCAMGUI.py:1006
+#: FlatCAMApp.py:9652 flatcamGUI/FlatCAMGUI.py:1006
msgid "Shortcut Key List"
msgstr " Liste der Tastenkombinationen "
-#: FlatCAMApp.py:9666
+#: FlatCAMApp.py:9664
#, python-brace-format
msgid ""
"\n"
@@ -1276,25 +1280,25 @@ msgstr ""
"Verknüpfungsliste oder über eine eigene Tastenkombination: "
"F3.
\n"
-#: FlatCAMApp.py:9745
+#: FlatCAMApp.py:9743
msgid "Failed checking for latest version. Could not connect."
msgstr ""
"Fehler bei der Suche nach der neuesten Version. Konnte keine Verbindung "
"herstellen."
-#: FlatCAMApp.py:9753
+#: FlatCAMApp.py:9751
msgid "Could not parse information about latest version."
msgstr "Informationen zur neuesten Version konnten nicht analysiert werden."
-#: FlatCAMApp.py:9764
+#: FlatCAMApp.py:9762
msgid "FlatCAM is up to date!"
msgstr "FlatCAM ist auf dem neuesten Version!"
-#: FlatCAMApp.py:9769
+#: FlatCAMApp.py:9767
msgid "Newer Version Available"
msgstr "Neuere Version verfügbar"
-#: FlatCAMApp.py:9770
+#: FlatCAMApp.py:9768
msgid ""
"There is a newer version of FlatCAM available for download:\n"
"\n"
@@ -1302,63 +1306,63 @@ msgstr ""
"Es gibt eine neuere Version von FlatCAM zum Download:\n"
"\n"
-#: FlatCAMApp.py:9772
+#: FlatCAMApp.py:9770
msgid "info"
msgstr "Info"
-#: FlatCAMApp.py:9827
+#: FlatCAMApp.py:9825
msgid "All plots disabled."
msgstr "Alle Diagramme sind deaktiviert."
-#: FlatCAMApp.py:9834
+#: FlatCAMApp.py:9832
msgid "All non selected plots disabled."
msgstr "Alle nicht ausgewählten Diagramme sind deaktiviert."
-#: FlatCAMApp.py:9841
+#: FlatCAMApp.py:9839
msgid "All plots enabled."
msgstr "Alle Diagramme aktiviert."
-#: FlatCAMApp.py:9848
+#: FlatCAMApp.py:9846
msgid "Selected plots enabled..."
msgstr "Ausgewählte Diagramme aktiviert ..."
-#: FlatCAMApp.py:9857
+#: FlatCAMApp.py:9855
msgid "Selected plots disabled..."
msgstr "Ausgewählte Diagramme deaktiviert ..."
-#: FlatCAMApp.py:9875
+#: FlatCAMApp.py:9873
msgid "Enabling plots ..."
msgstr "Diagramm aktivieren..."
-#: FlatCAMApp.py:9909
+#: FlatCAMApp.py:9907
msgid "Disabling plots ..."
msgstr "Diagramm deaktivieren..."
-#: FlatCAMApp.py:9931
+#: FlatCAMApp.py:9929
msgid "Working ..."
msgstr "Arbeiten ..."
-#: FlatCAMApp.py:9969
+#: FlatCAMApp.py:9967
msgid "Saving FlatCAM Project"
msgstr "FlatCAM-Projekt speichern"
-#: FlatCAMApp.py:9991 FlatCAMApp.py:10026
+#: FlatCAMApp.py:9989 FlatCAMApp.py:10024
msgid "Project saved to"
msgstr "Projekt gespeichert in"
-#: FlatCAMApp.py:10010
+#: FlatCAMApp.py:10008
msgid "Failed to verify project file"
msgstr "Fehler beim Überprüfen der Projektdatei"
-#: FlatCAMApp.py:10010 FlatCAMApp.py:10018 FlatCAMApp.py:10029
+#: FlatCAMApp.py:10008 FlatCAMApp.py:10016 FlatCAMApp.py:10027
msgid "Retry to save it."
msgstr "Versuchen Sie erneut, es zu speichern."
-#: FlatCAMApp.py:10018 FlatCAMApp.py:10029
+#: FlatCAMApp.py:10016 FlatCAMApp.py:10027
msgid "Failed to parse saved project file"
msgstr "Fehler beim Parsen der Projektdatei"
-#: FlatCAMApp.py:10240
+#: FlatCAMApp.py:10238
msgid "The user requested a graceful exit of the current task."
msgstr ""
"Der Benutzer hat einen ordnungsgemäßen Abschluss der aktuellen Aufgabe "
@@ -1381,11 +1385,11 @@ msgstr "Skalierung ..."
msgid "Skewing..."
msgstr "Verziehen..."
-#: FlatCAMObj.py:600 FlatCAMObj.py:2291 FlatCAMObj.py:3569 FlatCAMObj.py:5835
+#: FlatCAMObj.py:600 FlatCAMObj.py:2293 FlatCAMObj.py:3571 FlatCAMObj.py:5837
msgid "Basic"
msgstr "Basic"
-#: FlatCAMObj.py:613 FlatCAMObj.py:2307 FlatCAMObj.py:3591 FlatCAMObj.py:5841
+#: FlatCAMObj.py:613 FlatCAMObj.py:2309 FlatCAMObj.py:3593 FlatCAMObj.py:5843
msgid "Advanced"
msgstr "Erweitert"
@@ -1413,7 +1417,7 @@ msgstr "Gemacht"
msgid "Isolation geometry could not be generated."
msgstr "Isolationsgeometrie konnte nicht generiert werden."
-#: FlatCAMObj.py:1108 FlatCAMObj.py:3259 FlatCAMObj.py:3526 FlatCAMObj.py:3802
+#: FlatCAMObj.py:1108 FlatCAMObj.py:3261 FlatCAMObj.py:3528 FlatCAMObj.py:3804
msgid "Rough"
msgstr "Rau"
@@ -1425,17 +1429,32 @@ msgstr "Isolationsgeometrie erstellt"
msgid "Plotting Apertures"
msgstr "Plotten Apertures"
-#: FlatCAMObj.py:2119 flatcamEditors/FlatCAMExcEditor.py:2292
+#: FlatCAMObj.py:2121 flatcamEditors/FlatCAMExcEditor.py:2309
msgid "Total Drills"
msgstr "Bohrungen insgesamt"
-#: FlatCAMObj.py:2151 flatcamEditors/FlatCAMExcEditor.py:2324
+#: FlatCAMObj.py:2153 flatcamEditors/FlatCAMExcEditor.py:2341
msgid "Total Slots"
msgstr "Schlitz insgesamt"
-#: FlatCAMObj.py:2365 FlatCAMObj.py:3642 FlatCAMObj.py:3936 FlatCAMObj.py:4127
-#: FlatCAMObj.py:4138 FlatCAMObj.py:4256 FlatCAMObj.py:4459 FlatCAMObj.py:4666
-#: FlatCAMObj.py:4905 FlatCAMObj.py:5403 flatcamTools/ToolCalculators.py:311
+#: FlatCAMObj.py:2367 FlatCAMObj.py:3644 FlatCAMObj.py:3938 FlatCAMObj.py:4129
+#: FlatCAMObj.py:4140 FlatCAMObj.py:4258 FlatCAMObj.py:4461 FlatCAMObj.py:4668
+#: FlatCAMObj.py:4907 FlatCAMObj.py:5405
+#: flatcamEditors/FlatCAMExcEditor.py:2416
+#: flatcamEditors/FlatCAMGeoEditor.py:1080
+#: flatcamEditors/FlatCAMGeoEditor.py:1117
+#: flatcamEditors/FlatCAMGeoEditor.py:1138
+#: flatcamEditors/FlatCAMGeoEditor.py:1159
+#: flatcamEditors/FlatCAMGeoEditor.py:1196
+#: flatcamEditors/FlatCAMGeoEditor.py:1228
+#: flatcamEditors/FlatCAMGeoEditor.py:1249
+#: flatcamEditors/FlatCAMGrbEditor.py:5283
+#: flatcamEditors/FlatCAMGrbEditor.py:5326
+#: flatcamEditors/FlatCAMGrbEditor.py:5353
+#: flatcamEditors/FlatCAMGrbEditor.py:5380
+#: flatcamEditors/FlatCAMGrbEditor.py:5421
+#: flatcamEditors/FlatCAMGrbEditor.py:5459
+#: flatcamEditors/FlatCAMGrbEditor.py:5485 flatcamTools/ToolCalculators.py:311
#: flatcamTools/ToolCalculators.py:322 flatcamTools/ToolCalculators.py:334
#: flatcamTools/ToolCalculators.py:349 flatcamTools/ToolCalculators.py:362
#: flatcamTools/ToolCalculators.py:376 flatcamTools/ToolCalculators.py:387
@@ -1448,10 +1467,10 @@ msgstr "Schlitz insgesamt"
#: flatcamTools/ToolNonCopperClear.py:980
#: flatcamTools/ToolNonCopperClear.py:1062
#: flatcamTools/ToolNonCopperClear.py:1341
-#: flatcamTools/ToolNonCopperClear.py:1371 flatcamTools/ToolPaint.py:697
-#: flatcamTools/ToolPaint.py:772 flatcamTools/ToolPaint.py:921
-#: flatcamTools/ToolPaint.py:975 flatcamTools/ToolPaint.py:1224
-#: flatcamTools/ToolPaint.py:1493 flatcamTools/ToolPaint.py:1963
+#: flatcamTools/ToolNonCopperClear.py:1371 flatcamTools/ToolPaint.py:699
+#: flatcamTools/ToolPaint.py:774 flatcamTools/ToolPaint.py:922
+#: flatcamTools/ToolPaint.py:976 flatcamTools/ToolPaint.py:1225
+#: flatcamTools/ToolPaint.py:1496 flatcamTools/ToolPaint.py:1966
#: flatcamTools/ToolPanelize.py:397 flatcamTools/ToolPanelize.py:409
#: flatcamTools/ToolPanelize.py:422 flatcamTools/ToolPanelize.py:435
#: flatcamTools/ToolPanelize.py:447 flatcamTools/ToolPanelize.py:458
@@ -1463,42 +1482,42 @@ msgstr "Schlitz insgesamt"
msgid "Wrong value format entered, use a number."
msgstr "Falsches Wertformat eingegeben, eine Zahl verwenden."
-#: FlatCAMObj.py:2606 FlatCAMObj.py:2696 FlatCAMObj.py:2817
+#: FlatCAMObj.py:2608 FlatCAMObj.py:2698 FlatCAMObj.py:2819
msgid "Please select one or more tools from the list and try again."
msgstr ""
"Bitte wählen Sie ein oder mehrere Werkzeuge aus der Liste aus und versuchen "
"Sie es erneut."
-#: FlatCAMObj.py:2612
+#: FlatCAMObj.py:2614
msgid "Milling tool for DRILLS is larger than hole size. Cancelled."
msgstr "Das Fräswerkzeug für BOHRER ist größer als die Lochgröße. Abgebrochen."
-#: FlatCAMObj.py:2625 FlatCAMObj.py:2718 FlatCAMObj.py:2836
+#: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
msgid "Tool_nr"
msgstr "Werkzeugnummer"
-#: FlatCAMObj.py:2625 FlatCAMObj.py:2718 FlatCAMObj.py:2836
-#: flatcamEditors/FlatCAMExcEditor.py:1483
-#: flatcamEditors/FlatCAMExcEditor.py:3116 flatcamGUI/ObjectUI.py:613
+#: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
+#: flatcamEditors/FlatCAMExcEditor.py:1500
+#: flatcamEditors/FlatCAMExcEditor.py:3133 flatcamGUI/ObjectUI.py:613
#: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
#: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolSolderPaste.py:81
msgid "Diameter"
msgstr "Durchmesser"
-#: FlatCAMObj.py:2625 FlatCAMObj.py:2718 FlatCAMObj.py:2836
+#: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
msgid "Drills_Nr"
msgstr "Bohrnummer"
-#: FlatCAMObj.py:2625 FlatCAMObj.py:2718 FlatCAMObj.py:2836
+#: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
msgid "Slots_Nr"
msgstr "Schlitznummer"
-#: FlatCAMObj.py:2705
+#: FlatCAMObj.py:2707
msgid "Milling tool for SLOTS is larger than hole size. Cancelled."
msgstr ""
"Das Fräswerkzeug für SCHLITZ ist größer als die Lochgröße. Abgebrochen."
-#: FlatCAMObj.py:2877 FlatCAMObj.py:4557 FlatCAMObj.py:4775 FlatCAMObj.py:5098
+#: FlatCAMObj.py:2879 FlatCAMObj.py:4559 FlatCAMObj.py:4777 FlatCAMObj.py:5100
msgid ""
"Wrong value format for self.defaults[\"z_pdepth\"] or self.options[\"z_pdepth"
"\"]"
@@ -1506,7 +1525,7 @@ msgstr ""
"Falsches Wertformat für self.defaults [\"z_pdepth\"] oder self.options "
"[\"z_pdepth\"]"
-#: FlatCAMObj.py:2888 FlatCAMObj.py:4568 FlatCAMObj.py:5109
+#: FlatCAMObj.py:2890 FlatCAMObj.py:4570 FlatCAMObj.py:5111
msgid ""
"Wrong value format for self.defaults[\"feedrate_probe\"] or self."
"options[\"feedrate_probe\"]"
@@ -1514,11 +1533,11 @@ msgstr ""
"Falsches Wertformat für self.defaults [\"feedrate_probe\"] oder self.options "
"[\"feedrate_probe\"]"
-#: FlatCAMObj.py:2918 FlatCAMObj.py:4985 FlatCAMObj.py:4991 FlatCAMObj.py:5143
+#: FlatCAMObj.py:2920 FlatCAMObj.py:4987 FlatCAMObj.py:4993 FlatCAMObj.py:5145
msgid "Generating CNC Code"
msgstr "CNC-Code generieren"
-#: FlatCAMObj.py:2944 camlib.py:5649 camlib.py:6623
+#: FlatCAMObj.py:2946 camlib.py:5658 camlib.py:6632
msgid ""
"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
"y) \n"
@@ -1528,69 +1547,69 @@ msgstr ""
"(x, y) sein\n"
"Aber jetzt gibt es nur einen Wert, nicht zwei."
-#: FlatCAMObj.py:3259 FlatCAMObj.py:4178 FlatCAMObj.py:4179 FlatCAMObj.py:4188
+#: FlatCAMObj.py:3261 FlatCAMObj.py:4180 FlatCAMObj.py:4181 FlatCAMObj.py:4190
msgid "Iso"
msgstr "Iso"
-#: FlatCAMObj.py:3259
+#: FlatCAMObj.py:3261
msgid "Finish"
msgstr "Oberfläche"
-#: FlatCAMObj.py:3562 flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:746
+#: FlatCAMObj.py:3564 flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:746
#: flatcamGUI/FlatCAMGUI.py:1718 flatcamGUI/FlatCAMGUI.py:2092
#: flatcamGUI/ObjectUI.py:1061
msgid "Copy"
msgstr "Kopieren"
-#: FlatCAMObj.py:3773
+#: FlatCAMObj.py:3775
msgid "Please enter the desired tool diameter in Float format."
msgstr ""
"Bitte geben Sie den gewünschten Werkzeugdurchmesser im Real-Format ein."
-#: FlatCAMObj.py:3847
+#: FlatCAMObj.py:3849
msgid "Tool added in Tool Table."
msgstr "Werkzeug in der Werkzeugtabelle hinzugefügt."
-#: FlatCAMObj.py:3851
+#: FlatCAMObj.py:3853
msgid "Default Tool added. Wrong value format entered."
msgstr "Standardwerkzeug hinzugefügt Falsches Wertformat eingegeben."
-#: FlatCAMObj.py:3884 FlatCAMObj.py:3893
+#: FlatCAMObj.py:3886 FlatCAMObj.py:3895
msgid "Failed. Select a tool to copy."
msgstr "Fehlgeschlagen. Wählen Sie ein Werkzeug zum Kopieren aus."
-#: FlatCAMObj.py:3921
+#: FlatCAMObj.py:3923
msgid "Tool was copied in Tool Table."
msgstr "Das Werkzeug wurde in die Werkzeugtabelle kopiert."
-#: FlatCAMObj.py:3951
+#: FlatCAMObj.py:3953
msgid "Tool was edited in Tool Table."
msgstr "Das Werkzeug wurde in der Werkzeugtabelle bearbeitet."
-#: FlatCAMObj.py:3980 FlatCAMObj.py:3989
+#: FlatCAMObj.py:3982 FlatCAMObj.py:3991
msgid "Failed. Select a tool to delete."
msgstr "Gescheitert. Wählen Sie ein Werkzeug zum Löschen aus."
-#: FlatCAMObj.py:4012
+#: FlatCAMObj.py:4014
msgid "Tool was deleted in Tool Table."
msgstr "Werkzeug wurde in der Werkzeugtabelle gelöscht."
-#: FlatCAMObj.py:4442
+#: FlatCAMObj.py:4444
#, python-format
msgid "This Geometry can't be processed because it is %s geometry."
msgstr ""
"Diese Geometrie kann nicht verarbeitet werden, da es sich um %s Geometrie "
"handelt."
-#: FlatCAMObj.py:4484
+#: FlatCAMObj.py:4486
msgid "Failed. No tool selected in the tool table ..."
msgstr "Gescheitert. Kein Werkzeug in der Werkzeugtabelle ausgewählt ..."
-#: FlatCAMObj.py:4522
+#: FlatCAMObj.py:4524
msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() -->"
msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() -->"
-#: FlatCAMObj.py:4671 FlatCAMObj.py:4911
+#: FlatCAMObj.py:4673 FlatCAMObj.py:4913
msgid ""
"Tool Offset is selected in Tool Table but no value is provided.\n"
"Add a Tool Offset or change the Offset Type."
@@ -1599,24 +1618,24 @@ msgstr ""
"Wert angegeben.\n"
"Fügen Sie einen Werkzeugversatz hinzu oder ändern Sie den Versatztyp."
-#: FlatCAMObj.py:4722 FlatCAMObj.py:4952
+#: FlatCAMObj.py:4724 FlatCAMObj.py:4954
msgid "G-Code parsing in progress..."
msgstr "G-Code-Analyse läuft ..."
-#: FlatCAMObj.py:4724 FlatCAMObj.py:4954
+#: FlatCAMObj.py:4726 FlatCAMObj.py:4956
msgid "G-Code parsing finished..."
msgstr "G-Code-Analyse beendet ..."
-#: FlatCAMObj.py:4732 FlatCAMObj.py:4964 FlatCAMObj.py:5136
+#: FlatCAMObj.py:4734 FlatCAMObj.py:4966 FlatCAMObj.py:5138
msgid "Finished G-Code processing..."
msgstr "Fertige G-Code Verarbeitung ..."
-#: FlatCAMObj.py:4734 FlatCAMObj.py:4966
+#: FlatCAMObj.py:4736 FlatCAMObj.py:4968
#, python-format
msgid "G-Code processing failed with error: %s"
msgstr "G-Code-Verarbeitung fehlgeschlagen mit Fehler: %s"
-#: FlatCAMObj.py:4786
+#: FlatCAMObj.py:4788
msgid ""
" Wrong value format for self.defaults[\"feedrate_probe\"] or self."
"options[\"feedrate_probe\"]"
@@ -1624,24 +1643,24 @@ msgstr ""
"Falsches Wertformat für self.defaults [\"feedrate_probe\"] oder self.options "
"[\"feedrate_probe\"]"
-#: FlatCAMObj.py:4797 flatcamTools/ToolSolderPaste.py:1187
+#: FlatCAMObj.py:4799 flatcamTools/ToolSolderPaste.py:1187
msgid "Cancelled. Empty file, it has no geometry"
msgstr "Abgebrochen. Leere Datei hat keine Geometrie ..."
-#: FlatCAMObj.py:4988 FlatCAMObj.py:4994 FlatCAMObj.py:5146
+#: FlatCAMObj.py:4990 FlatCAMObj.py:4996 FlatCAMObj.py:5148
msgid "CNCjob created"
msgstr "CNCjob erstellt"
-#: FlatCAMObj.py:5178 FlatCAMObj.py:5188 camlib.py:3572 camlib.py:3582
+#: FlatCAMObj.py:5180 FlatCAMObj.py:5190 camlib.py:3581 camlib.py:3591
msgid "Scale factor has to be a number: integer or float."
msgstr ""
"Der Skalierungsfaktor muss eine Zahl sein: Ganzzahl oder Fließkommazahl."
-#: FlatCAMObj.py:5262
+#: FlatCAMObj.py:5264
msgid "Geometry Scale done."
msgstr "Geometrie Skalierung fertig."
-#: FlatCAMObj.py:5279 camlib.py:3676
+#: FlatCAMObj.py:5281 camlib.py:3685
msgid ""
"An (x,y) pair of values are needed. Probable you entered only one value in "
"the Offset field."
@@ -1649,11 +1668,11 @@ msgstr ""
"Ein (x, y) Wertepaar wird benötigt. Wahrscheinlich haben Sie im Feld Offset "
"nur einen Wert eingegeben."
-#: FlatCAMObj.py:5333
+#: FlatCAMObj.py:5335
msgid "Geometry Offset done."
msgstr "Geometrie Offset fertig."
-#: FlatCAMObj.py:5362
+#: FlatCAMObj.py:5364
msgid ""
"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
"y)\n"
@@ -1663,62 +1682,62 @@ msgstr ""
"(x, y) sein\n"
"Aber jetzt gibt es nur einen Wert, nicht zwei."
-#: FlatCAMObj.py:5903 FlatCAMObj.py:5908 flatcamTools/ToolSolderPaste.py:1393
+#: FlatCAMObj.py:5905 FlatCAMObj.py:5910 flatcamTools/ToolSolderPaste.py:1393
msgid "Export Machine Code ..."
msgstr "Maschinencode exportieren ..."
-#: FlatCAMObj.py:5914 flatcamTools/ToolSolderPaste.py:1397
+#: FlatCAMObj.py:5916 flatcamTools/ToolSolderPaste.py:1397
msgid "Export Machine Code cancelled ..."
msgstr "Maschinencode exportieren abgebrochen ..."
-#: FlatCAMObj.py:5932
+#: FlatCAMObj.py:5934
msgid "Machine Code file saved to"
msgstr "Maschinencode-Datei gespeichert in"
-#: FlatCAMObj.py:5956
+#: FlatCAMObj.py:5958
msgid "FlatCAMCNNJob.on_edit_code_click() -->"
msgstr "[ERROR] FlatCAMCNNJob.on_edit_code_click() -->"
-#: FlatCAMObj.py:5964
+#: FlatCAMObj.py:5966
msgid "Loaded Machine Code into Code Editor"
msgstr "Maschinencode in den Code-Editor geladen"
-#: FlatCAMObj.py:6076
+#: FlatCAMObj.py:6078
msgid "This CNCJob object can't be processed because it is a"
msgstr "Dieses CNCJob-Objekt kann nicht verarbeitet werden, da es sich um ein"
-#: FlatCAMObj.py:6078
+#: FlatCAMObj.py:6080
msgid "CNCJob object"
msgstr "CNCJob-Objekt"
-#: FlatCAMObj.py:6130
+#: FlatCAMObj.py:6132
msgid "G-code does not have a units code: either G20 or G21"
msgstr "G-Code hat keinen Einheitencode: entweder G20 oder G21"
-#: FlatCAMObj.py:6142
+#: FlatCAMObj.py:6144
msgid "Cancelled. The Toolchange Custom code is enabled but it's empty."
msgstr ""
"Abgebrochen. Der benutzerdefinierte Code zum Ändern des Werkzeugs ist "
"aktiviert, aber er ist leer."
-#: FlatCAMObj.py:6148
+#: FlatCAMObj.py:6150
msgid "Toolchange G-code was replaced by a custom code."
msgstr ""
"Der Werkzeugwechsel-G-Code wurde durch einen benutzerdefinierten Code "
"ersetzt."
-#: FlatCAMObj.py:6175
+#: FlatCAMObj.py:6177
msgid "Saved to"
msgstr "Gespeichert in"
-#: FlatCAMObj.py:6185 FlatCAMObj.py:6195
+#: FlatCAMObj.py:6187 FlatCAMObj.py:6197
msgid ""
"The used postprocessor file has to have in it's name: 'toolchange_custom'"
msgstr ""
"Die verwendete Postprozessor-Datei muss im Namen enthalten sein: "
"'toolchange_custom'"
-#: FlatCAMObj.py:6199
+#: FlatCAMObj.py:6201
msgid "There is no postprocessor file."
msgstr "Es gibt keine Postprozessor-Datei."
@@ -1808,43 +1827,43 @@ msgstr "Gerber-Verarbeitung. Beitreten"
msgid "polygons"
msgstr "Polygone"
-#: camlib.py:3390
+#: camlib.py:3399
msgid "Gerber Line"
msgstr "Gerber Linie"
-#: camlib.py:3390
+#: camlib.py:3399
msgid "Gerber Line Content"
msgstr "Gerber-Zeileninhalt"
-#: camlib.py:3392
+#: camlib.py:3401
msgid "Gerber Parser ERROR"
msgstr "Gerber-Parser FEHLER"
-#: camlib.py:3640
+#: camlib.py:3649
msgid "Gerber Scale done."
msgstr "Gerber-Skalierung erfolgt."
-#: camlib.py:3730
+#: camlib.py:3739
msgid "Gerber Offset done."
msgstr "Gerber Offset fertig."
-#: camlib.py:3807
+#: camlib.py:3816
msgid "Gerber Mirror done."
msgstr "Gerber Spiegel fertig."
-#: camlib.py:3876
+#: camlib.py:3885
msgid "Gerber Skew done."
msgstr "Gerber-Versatz fertig."
-#: camlib.py:3937
+#: camlib.py:3946
msgid "Gerber Rotate done."
msgstr "Gerber drehen fertig."
-#: camlib.py:4224
+#: camlib.py:4233
msgid "This is GCODE mark"
msgstr "Dies ist die GCODE-Marke"
-#: camlib.py:4340
+#: camlib.py:4349
msgid ""
"No tool diameter info's. See shell.\n"
"A tool change event: T"
@@ -1852,7 +1871,7 @@ msgstr ""
"Keine Angaben zum Werkzeugdurchmesser. Siehe Shell.\n"
"Ein Werkzeugwechselereignis: T"
-#: camlib.py:4343
+#: camlib.py:4352
msgid ""
"was found but the Excellon file have no informations regarding the tool "
"diameters therefore the application will try to load it by using some 'fake' "
@@ -1866,11 +1885,8 @@ msgstr ""
"Der Benutzer muss das resultierende Excellon-Objekt bearbeiten und die "
"Durchmesser so ändern, dass sie den tatsächlichen Durchmessern entsprechen."
-#: camlib.py:4798
+#: camlib.py:4807
#, python-brace-format
-#| msgid ""
-#| "[ERROR] Excellon Parser error.\n"
-#| "Parsing Failed. Line {l_nr}: {line}\n"
msgid ""
"{e_code} Excellon Parser error.\n"
"Parsing Failed. Line {l_nr}: {line}\n"
@@ -1878,7 +1894,7 @@ msgstr ""
"{e_code} Excellon-Parser-Fehler.\n"
"Analyse fehlgeschlagen. Linie {l_nr}: {line}\n"
-#: camlib.py:4881
+#: camlib.py:4890
msgid ""
"Excellon.create_geometry() -> a drill location was skipped due of not having "
"a tool associated.\n"
@@ -1888,11 +1904,11 @@ msgstr ""
"Werkzeug zugeordnet ist.\n"
"Überprüfen Sie den resultierenden GCode."
-#: camlib.py:5555
+#: camlib.py:5564
msgid "There is no such parameter"
msgstr "Es gibt keinen solchen Parameter"
-#: camlib.py:5626
+#: camlib.py:5635
msgid ""
"The Cut Z parameter has positive value. It is the depth value to drill into "
"material.\n"
@@ -1907,41 +1923,41 @@ msgstr ""
"einen negativen Wert. \n"
"Überprüfen Sie den resultierenden CNC-Code (Gcode usw.)."
-#: camlib.py:5634 camlib.py:6307 camlib.py:6649
+#: camlib.py:5643 camlib.py:6316 camlib.py:6658
msgid "The Cut Z parameter is zero. There will be no cut, skipping file"
msgstr ""
"Der Parameter Cut Z ist Null. Es wird kein Schnitt ausgeführt, und die Datei "
"wird übersprungen"
-#: camlib.py:5686
+#: camlib.py:5695
msgid "Creating a list of points to drill..."
msgstr "Erstellen einer Liste von Punkten zum Bohren ..."
-#: camlib.py:5769
+#: camlib.py:5778
msgid "Starting G-Code"
msgstr "G-Code starten"
-#: camlib.py:5865 camlib.py:6011 camlib.py:6117 camlib.py:6416 camlib.py:6758
+#: camlib.py:5874 camlib.py:6020 camlib.py:6126 camlib.py:6425 camlib.py:6767
msgid "Starting G-Code for tool with diameter"
msgstr "Start-G-Code für Werkzeug mit Durchmesser"
-#: camlib.py:5922 camlib.py:6068 camlib.py:6175
+#: camlib.py:5931 camlib.py:6077 camlib.py:6184
msgid "G91 coordinates not implemented"
msgstr "G91 Koordinaten nicht implementiert ..."
-#: camlib.py:5928 camlib.py:6074 camlib.py:6181
+#: camlib.py:5937 camlib.py:6083 camlib.py:6190
msgid "The loaded Excellon file has no drills"
msgstr "Die geladene Excellon-Datei hat keine Bohrer ..."
-#: camlib.py:6080
+#: camlib.py:6089
msgid "Wrong optimization type selected."
msgstr "Falscher Optimierungstyp ausgewählt."
-#: camlib.py:6203
+#: camlib.py:6212
msgid "Finished G-Code generation..."
msgstr "Fertige G-Code-Generierung ..."
-#: camlib.py:6280
+#: camlib.py:6289
msgid ""
"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
"y) \n"
@@ -1951,7 +1967,7 @@ msgstr ""
"das Format (x, y) haben.\n"
"Aber jetzt gibt es nur einen Wert, nicht zwei."
-#: camlib.py:6293 camlib.py:6635
+#: camlib.py:6302 camlib.py:6644
msgid ""
"Cut_Z parameter is None or zero. Most likely a bad combinations of other "
"parameters."
@@ -1959,7 +1975,7 @@ msgstr ""
"Der Parameter Cut_Z ist None oder Null. Höchstwahrscheinlich eine schlechte "
"Kombination anderer Parameter."
-#: camlib.py:6299 camlib.py:6641
+#: camlib.py:6308 camlib.py:6650
msgid ""
"The Cut Z parameter has positive value. It is the depth value to cut into "
"material.\n"
@@ -1974,11 +1990,11 @@ msgstr ""
"einen negativen Wert. \n"
"Überprüfen Sie den resultierenden CNC-Code (Gcode usw.)."
-#: camlib.py:6317 camlib.py:6655
+#: camlib.py:6326 camlib.py:6664
msgid "Travel Z parameter is None or zero."
msgstr "Der Parameter für den Travel Z ist Kein oder Null."
-#: camlib.py:6322 camlib.py:6660
+#: camlib.py:6331 camlib.py:6669
msgid ""
"The Travel Z parameter has negative value. It is the height value to travel "
"between cuts.\n"
@@ -1992,226 +2008,213 @@ msgstr ""
"einen Tippfehler handelt, konvertiert die App den Wert in einen positiven "
"Wert. Überprüfen Sie den resultierenden CNC-Code (Gcode usw.)."
-#: camlib.py:6330 camlib.py:6668
+#: camlib.py:6339 camlib.py:6677
msgid "The Z Travel parameter is zero. This is dangerous, skipping file"
msgstr ""
"Der Parameter Z-Weg ist Null. Dies ist gefährlich, da die %s Datei "
"übersprungen wird"
-#: camlib.py:6345 camlib.py:6687
+#: camlib.py:6354 camlib.py:6696
msgid "Indexing geometry before generating G-Code..."
msgstr "Indizierung der Geometrie vor dem Generieren von G-Code ..."
-#: camlib.py:6399 camlib.py:6744
+#: camlib.py:6408 camlib.py:6753
msgid "Starting G-Code..."
msgstr "G-Code wird gestartet ..."
-#: camlib.py:6486 camlib.py:6828
+#: camlib.py:6495 camlib.py:6837
msgid "Finished G-Code generation"
msgstr "Fertige G-Code-Generierung"
-#: camlib.py:6488
+#: camlib.py:6497
msgid "paths traced"
msgstr "Pfade verfolgt"
-#: camlib.py:6523
+#: camlib.py:6532
msgid "Expected a Geometry, got"
msgstr "Erwartet eine Geometrie, erhalten"
-#: camlib.py:6530
+#: camlib.py:6539
msgid ""
"Trying to generate a CNC Job from a Geometry object without solid_geometry."
msgstr ""
"Der Versuch, einen CNC-Auftrag aus einem Geometrieobjekt ohne solid_geometry "
"zu generieren."
-#: camlib.py:6569
+#: camlib.py:6578
#, python-format
msgid "[ERROR_NOTCL] %s"
msgstr "[ERROR_NOTCL] %s"
-#: camlib.py:6830
+#: camlib.py:6839
msgid " paths traced."
msgstr " Pfade verfolgt."
-#: camlib.py:6859
+#: camlib.py:6868
msgid "There is no tool data in the SolderPaste geometry."
msgstr "In der SolderPaste-Geometrie sind keine Werkzeugdaten vorhanden."
-#: camlib.py:6946
+#: camlib.py:6955
msgid "Finished SolderPste G-Code generation"
msgstr "Fertige G-Code-Generierung"
-#: camlib.py:6948
+#: camlib.py:6957
msgid "paths traced."
msgstr "paths traced."
-#: camlib.py:7421 camlib.py:7699 camlib.py:7802 camlib.py:7849
+#: camlib.py:7430 camlib.py:7708 camlib.py:7811 camlib.py:7858
msgid "G91 coordinates not implemented ..."
msgstr "G91 Koordinaten nicht implementiert ..."
-#: flatcamEditors/FlatCAMExcEditor.py:45 flatcamEditors/FlatCAMExcEditor.py:69
-#: flatcamEditors/FlatCAMExcEditor.py:150
-#: flatcamEditors/FlatCAMExcEditor.py:350
-#: flatcamEditors/FlatCAMExcEditor.py:540
-#: flatcamEditors/FlatCAMGrbEditor.py:237
-#: flatcamEditors/FlatCAMGrbEditor.py:242
+#: flatcamEditors/FlatCAMExcEditor.py:45 flatcamEditors/FlatCAMExcEditor.py:70
+#: flatcamEditors/FlatCAMExcEditor.py:152
+#: flatcamEditors/FlatCAMExcEditor.py:356
+#: flatcamEditors/FlatCAMExcEditor.py:548
+#: flatcamEditors/FlatCAMGrbEditor.py:238
+#: flatcamEditors/FlatCAMGrbEditor.py:243
msgid "Click to place ..."
msgstr "Zum Platzieren klicken ..."
-#: flatcamEditors/FlatCAMExcEditor.py:53
-msgid "[WARNING_NOTCL] To add a drill first select a tool"
+#: flatcamEditors/FlatCAMExcEditor.py:54
+msgid "To add a drill first select a tool"
+msgstr "Um einen Bohrer hinzuzufügen, wählen Sie zuerst ein Werkzeug aus"
+
+#: flatcamEditors/FlatCAMExcEditor.py:117
+msgid "Done. Drill added."
+msgstr "Erledigt. Bohrer hinzugefügt."
+
+#: flatcamEditors/FlatCAMExcEditor.py:160
+msgid "To add an Drill Array first select a tool in Tool Table"
msgstr ""
-"[WARNING_NOTCL] Um einen Bohrer hinzuzufügen, wählen Sie zuerst ein Werkzeug "
-"aus"
+"Um ein Bohr-Array hinzuzufügen, wählen Sie zunächst ein Werkzeug in der "
+"Werkzeugtabelle aus"
-#: flatcamEditors/FlatCAMExcEditor.py:115
-msgid "[success] Done. Drill added."
-msgstr "[success] Erledigt. Bohrer hinzugefügt."
-
-#: flatcamEditors/FlatCAMExcEditor.py:157
-msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
-msgstr ""
-"[WARNING_NOTCL] Um ein Bohr-Array hinzuzufügen, wählen Sie zunächst ein "
-"Werkzeug in der Werkzeugtabelle aus"
-
-#: flatcamEditors/FlatCAMExcEditor.py:173
-#: flatcamEditors/FlatCAMExcEditor.py:379
-#: flatcamEditors/FlatCAMExcEditor.py:587
-#: flatcamEditors/FlatCAMExcEditor.py:1083
-#: flatcamEditors/FlatCAMExcEditor.py:1108
-#: flatcamEditors/FlatCAMGrbEditor.py:459
-#: flatcamEditors/FlatCAMGrbEditor.py:1845
-#: flatcamEditors/FlatCAMGrbEditor.py:1873
+#: flatcamEditors/FlatCAMExcEditor.py:176
+#: flatcamEditors/FlatCAMExcEditor.py:386
+#: flatcamEditors/FlatCAMExcEditor.py:596
+#: flatcamEditors/FlatCAMExcEditor.py:1098
+#: flatcamEditors/FlatCAMExcEditor.py:1123
+#: flatcamEditors/FlatCAMGrbEditor.py:462
+#: flatcamEditors/FlatCAMGrbEditor.py:1859
+#: flatcamEditors/FlatCAMGrbEditor.py:1887
msgid "Click on target location ..."
msgstr "Klicken Sie auf den Zielort ..."
-#: flatcamEditors/FlatCAMExcEditor.py:190
+#: flatcamEditors/FlatCAMExcEditor.py:193
msgid "Click on the Drill Circular Array Start position"
msgstr "Klicken Sie auf die Startposition des Bohrkreis-Arrays"
-#: flatcamEditors/FlatCAMExcEditor.py:212
-#: flatcamEditors/FlatCAMExcEditor.py:626
-#: flatcamEditors/FlatCAMGrbEditor.py:502
-msgid ""
-"[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
-"separator."
-msgstr ""
-"[ERROR_NOTCL] Der Wert ist nicht Real. Überprüfen Sie das Komma anstelle des "
-"Trennzeichens."
-
#: flatcamEditors/FlatCAMExcEditor.py:215
-#, python-format
-msgid "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
+#: flatcamEditors/FlatCAMExcEditor.py:635
+#: flatcamEditors/FlatCAMGrbEditor.py:505
+msgid "The value is not Float. Check for comma instead of dot separator."
msgstr ""
-"[ERROR_NOTCL] Der Wert ist falsch eingegeben. Überprüfen Sie den Wert. %s"
+"Der Wert ist nicht Real. Überprüfen Sie das Komma anstelle des Trennzeichens."
-#: flatcamEditors/FlatCAMExcEditor.py:313
-msgid "[WARNING_NOTCL] Too many drills for the selected spacing angle."
-msgstr "[WARNING_NOTCL] Zu viele Bohrer für den ausgewählten Abstandswinkel."
+#: flatcamEditors/FlatCAMExcEditor.py:219
+msgid "The value is mistyped. Check the value"
+msgstr "Der Wert ist falsch geschrieben. Überprüfen Sie den Wert."
-#: flatcamEditors/FlatCAMExcEditor.py:330
-msgid "[success] Done. Drill Array added."
-msgstr "[success] Erledigt. Bohrfeld hinzugefügt."
+#: flatcamEditors/FlatCAMExcEditor.py:318
+msgid "Too many drills for the selected spacing angle."
+msgstr "Zu viele Bohrer für den ausgewählten Abstandswinkel."
-#: flatcamEditors/FlatCAMExcEditor.py:358
-msgid "[WARNING_NOTCL] To add a slot first select a tool"
+#: flatcamEditors/FlatCAMExcEditor.py:336
+msgid "Done. Drill Array added."
+msgstr "Erledigt. Bohrfeld hinzugefügt."
+
+#: flatcamEditors/FlatCAMExcEditor.py:365
+msgid "To add a slot first select a tool"
+msgstr "Um einen Steckplatz hinzuzufügen, wählen Sie zunächst ein Werkzeug aus"
+
+#: flatcamEditors/FlatCAMExcEditor.py:423
+#: flatcamEditors/FlatCAMExcEditor.py:430
+#: flatcamEditors/FlatCAMExcEditor.py:701
+#: flatcamEditors/FlatCAMExcEditor.py:708
+msgid "Value is missing or wrong format. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Um einen Steckplatz hinzuzufügen, wählen Sie zunächst ein "
-"Werkzeug aus"
+"Wert fehlt oder falsches Format. Fügen Sie es hinzu und versuchen Sie es "
+"erneut."
-#: flatcamEditors/FlatCAMExcEditor.py:415
-#: flatcamEditors/FlatCAMExcEditor.py:422
-#: flatcamEditors/FlatCAMExcEditor.py:690
-#: flatcamEditors/FlatCAMExcEditor.py:697
-msgid "[WARNING_NOTCL] Value is missing or wrong format. Add it and retry."
+#: flatcamEditors/FlatCAMExcEditor.py:529
+msgid "Done. Adding Slot completed."
+msgstr "Erledigt. Das Hinzufügen des Slots ist abgeschlossen."
+
+#: flatcamEditors/FlatCAMExcEditor.py:556
+msgid "To add an Slot Array first select a tool in Tool Table"
msgstr ""
-"[WARNING_NOTCL] Wert fehlt oder falsches Format. Fügen Sie es hinzu und "
-"versuchen Sie es erneut."
+"Um ein Schlitze-Array hinzuzufügen, wählen Sie zunächst ein Werkzeug in der "
+"Werkzeugtabelle aus"
-#: flatcamEditors/FlatCAMExcEditor.py:521
-msgid "[success] Done. Adding Slot completed."
-msgstr "[success] Erledigt. Das Hinzufügen des Slots ist abgeschlossen."
-
-#: flatcamEditors/FlatCAMExcEditor.py:547
-msgid "[WARNING_NOTCL] To add an Slot Array first select a tool in Tool Table"
-msgstr ""
-"[WARNING_NOTCL] Um ein Schlitze-Array hinzuzufügen, wählen Sie zunächst ein "
-"Werkzeug in der Werkzeugtabelle aus"
-
-#: flatcamEditors/FlatCAMExcEditor.py:604
+#: flatcamEditors/FlatCAMExcEditor.py:613
msgid "Click on the Slot Circular Array Start position"
msgstr "Klicken Sie auf die kreisförmige Startposition des Arrays"
-#: flatcamEditors/FlatCAMExcEditor.py:629
-#: flatcamEditors/FlatCAMGrbEditor.py:505
-msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
-msgstr ""
-"[ERROR_NOTCL] Der Wert ist falsch geschrieben. Überprüfen Sie den Wert."
+#: flatcamEditors/FlatCAMExcEditor.py:639
+#: flatcamEditors/FlatCAMGrbEditor.py:509
+msgid "The value is mistyped. Check the value."
+msgstr "Der Wert ist falsch geschrieben. Überprüfen Sie den Wert."
-#: flatcamEditors/FlatCAMExcEditor.py:807
-msgid "[WARNING_NOTCL] Too many Slots for the selected spacing angle."
-msgstr "[WARNING_NOTCL] Zu viele Slots für den ausgewählten Abstandswinkel."
+#: flatcamEditors/FlatCAMExcEditor.py:818
+msgid "Too many Slots for the selected spacing angle."
+msgstr "Zu viele Slots für den ausgewählten Abstandswinkel."
-#: flatcamEditors/FlatCAMExcEditor.py:829
-msgid "[success] Done. Slot Array added."
-msgstr "[success] Erledigt. Schlitze Array hinzugefügt."
+#: flatcamEditors/FlatCAMExcEditor.py:841
+msgid "Done. Slot Array added."
+msgstr "Erledigt. Schlitze Array hinzugefügt."
-#: flatcamEditors/FlatCAMExcEditor.py:846
+#: flatcamEditors/FlatCAMExcEditor.py:858
msgid "Click on the Drill(s) to resize ..."
msgstr "Klicken Sie auf die Bohrer, um die Größe zu ändern ..."
-#: flatcamEditors/FlatCAMExcEditor.py:876
-msgid ""
-"[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
+#: flatcamEditors/FlatCAMExcEditor.py:888
+msgid "Resize drill(s) failed. Please enter a diameter for resize."
msgstr ""
-"[ERROR_NOTCL] Die Größe der Bohrer ist fehlgeschlagen. Bitte geben Sie einen "
-"Durchmesser für die Größenänderung ein."
+"Die Größe der Bohrer ist fehlgeschlagen. Bitte geben Sie einen Durchmesser "
+"für die Größenänderung ein."
-#: flatcamEditors/FlatCAMExcEditor.py:966
-#: flatcamEditors/FlatCAMExcEditor.py:1035
-msgid "[ERROR_NOTCL] Cancelled."
-msgstr "[ERROR_NOTCL] Abgebrochen."
+#: flatcamEditors/FlatCAMExcEditor.py:978
+#: flatcamEditors/FlatCAMExcEditor.py:1048
+msgid "Cancelled."
+msgstr "Abgebrochen."
-#: flatcamEditors/FlatCAMExcEditor.py:1055
-msgid "[success] Done. Drill/Slot Resize completed."
-msgstr "[success] Erledigt. Bohren / Slot Größe ändern abgeschlossen."
+#: flatcamEditors/FlatCAMExcEditor.py:1069
+msgid "Drill/Slot Resize completed."
+msgstr "Erledigt. Bohren / Slot Größe ändern abgeschlossen."
-#: flatcamEditors/FlatCAMExcEditor.py:1057
-msgid "[WARNING_NOTCL] Cancelled. No drills/slots selected for resize ..."
-msgstr ""
-"[WARNING_NOTCL] Abgebrochen. Keine Bohrer / Schlitze für Größenänderung "
-"ausgewählt ..."
+#: flatcamEditors/FlatCAMExcEditor.py:1072
+msgid "Cancelled. No drills/slots selected for resize ..."
+msgstr "Abgebrochen. Keine Bohrer / Schlitze für Größenänderung ausgewählt ..."
-#: flatcamEditors/FlatCAMExcEditor.py:1085
-#: flatcamEditors/FlatCAMGrbEditor.py:1847
+#: flatcamEditors/FlatCAMExcEditor.py:1100
+#: flatcamEditors/FlatCAMGrbEditor.py:1861
msgid "Click on reference location ..."
msgstr "Klicken Sie auf die Referenzposition ..."
-#: flatcamEditors/FlatCAMExcEditor.py:1140
-msgid "[success] Done. Drill(s) Move completed."
-msgstr "[success] Erledigt. Bohrer Bewegen abgeschlossen."
+#: flatcamEditors/FlatCAMExcEditor.py:1156
+msgid "Done. Drill(s) Move completed."
+msgstr "Erledigt. Bohrer Bewegen abgeschlossen."
-#: flatcamEditors/FlatCAMExcEditor.py:1237
-msgid "[success] Done. Drill(s) copied."
-msgstr "[success] Erledigt. Bohrer kopiert."
+#: flatcamEditors/FlatCAMExcEditor.py:1254
+msgid "Done. Drill(s) copied."
+msgstr "Erledigt. Bohrer kopiert."
-#: flatcamEditors/FlatCAMExcEditor.py:1456 flatcamGUI/FlatCAMGUI.py:5510
+#: flatcamEditors/FlatCAMExcEditor.py:1473 flatcamGUI/FlatCAMGUI.py:5510
msgid "Excellon Editor"
msgstr "Excellon Editor"
-#: flatcamEditors/FlatCAMExcEditor.py:1463
-#: flatcamEditors/FlatCAMGrbEditor.py:2344
+#: flatcamEditors/FlatCAMExcEditor.py:1480
+#: flatcamEditors/FlatCAMGrbEditor.py:2361
msgid "Name:"
msgstr "Name:"
-#: flatcamEditors/FlatCAMExcEditor.py:1469 flatcamGUI/ObjectUI.py:593
+#: flatcamEditors/FlatCAMExcEditor.py:1486 flatcamGUI/ObjectUI.py:593
#: flatcamGUI/ObjectUI.py:919 flatcamTools/ToolNonCopperClear.py:96
#: flatcamTools/ToolPaint.py:95 flatcamTools/ToolSolderPaste.py:70
msgid "Tools Table"
msgstr "Werkzeugtabelle"
-#: flatcamEditors/FlatCAMExcEditor.py:1471 flatcamGUI/ObjectUI.py:595
+#: flatcamEditors/FlatCAMExcEditor.py:1488 flatcamGUI/ObjectUI.py:595
msgid ""
"Tools in this Excellon object\n"
"when are used for drilling."
@@ -2219,11 +2222,11 @@ msgstr ""
"Werkzeuge in diesem Excellon-Objekt\n"
"Wann werden zum Bohren verwendet."
-#: flatcamEditors/FlatCAMExcEditor.py:1491
+#: flatcamEditors/FlatCAMExcEditor.py:1508
msgid "Add/Delete Tool"
msgstr "Werkzeug hinzufügen / löschen"
-#: flatcamEditors/FlatCAMExcEditor.py:1493
+#: flatcamEditors/FlatCAMExcEditor.py:1510
msgid ""
"Add/Delete a tool to the tool list\n"
"for this Excellon object."
@@ -2231,21 +2234,21 @@ msgstr ""
"Werkzeug zur Werkzeugliste hinzufügen / löschen\n"
"für dieses Excellon-Objekt."
-#: flatcamEditors/FlatCAMExcEditor.py:1501 flatcamGUI/ObjectUI.py:1037
+#: flatcamEditors/FlatCAMExcEditor.py:1518 flatcamGUI/ObjectUI.py:1037
#: flatcamTools/ToolNonCopperClear.py:212 flatcamTools/ToolPaint.py:162
msgid "Tool Dia"
msgstr "Werkzeugdurchm"
-#: flatcamEditors/FlatCAMExcEditor.py:1503 flatcamGUI/FlatCAMGUI.py:5539
+#: flatcamEditors/FlatCAMExcEditor.py:1520 flatcamGUI/FlatCAMGUI.py:5539
#: flatcamGUI/ObjectUI.py:1040
msgid "Diameter for the new tool"
msgstr "Durchmesser für das neue Werkzeug"
-#: flatcamEditors/FlatCAMExcEditor.py:1511
+#: flatcamEditors/FlatCAMExcEditor.py:1528
msgid "Add Tool"
msgstr "Werkzeug hinzufügen"
-#: flatcamEditors/FlatCAMExcEditor.py:1513
+#: flatcamEditors/FlatCAMExcEditor.py:1530
msgid ""
"Add a new tool to the tool list\n"
"with the diameter specified above."
@@ -2253,11 +2256,11 @@ msgstr ""
"Fügen Sie der Werkzeugliste ein neues Werkzeug hinzu\n"
"mit dem oben angegebenen Durchmesser."
-#: flatcamEditors/FlatCAMExcEditor.py:1525
+#: flatcamEditors/FlatCAMExcEditor.py:1542
msgid "Delete Tool"
msgstr "Werkzeug löschen"
-#: flatcamEditors/FlatCAMExcEditor.py:1527
+#: flatcamEditors/FlatCAMExcEditor.py:1544
msgid ""
"Delete a tool in the tool list\n"
"by selecting a row in the tool table."
@@ -2265,40 +2268,40 @@ msgstr ""
"Löschen Sie ein Werkzeug in der Werkzeugliste\n"
"indem Sie eine Zeile in der Werkzeugtabelle auswählen."
-#: flatcamEditors/FlatCAMExcEditor.py:1545
+#: flatcamEditors/FlatCAMExcEditor.py:1562
msgid "Resize Drill(s)"
msgstr "Größe der Bohrer ändern"
-#: flatcamEditors/FlatCAMExcEditor.py:1547
+#: flatcamEditors/FlatCAMExcEditor.py:1564
msgid "Resize a drill or a selection of drills."
msgstr "Ändern Sie die Größe eines Bohrers oder einer Auswahl von Bohrern."
-#: flatcamEditors/FlatCAMExcEditor.py:1554
+#: flatcamEditors/FlatCAMExcEditor.py:1571
msgid "Resize Dia"
msgstr "Durchmesser ändern"
-#: flatcamEditors/FlatCAMExcEditor.py:1556
+#: flatcamEditors/FlatCAMExcEditor.py:1573
msgid "Diameter to resize to."
msgstr "Durchmesser zur Größenänderung."
-#: flatcamEditors/FlatCAMExcEditor.py:1564
+#: flatcamEditors/FlatCAMExcEditor.py:1581
msgid "Resize"
msgstr "Größe ändern"
-#: flatcamEditors/FlatCAMExcEditor.py:1566
+#: flatcamEditors/FlatCAMExcEditor.py:1583
msgid "Resize drill(s)"
msgstr "Bohrer verkleinern"
-#: flatcamEditors/FlatCAMExcEditor.py:1591 flatcamGUI/FlatCAMGUI.py:1710
+#: flatcamEditors/FlatCAMExcEditor.py:1608 flatcamGUI/FlatCAMGUI.py:1710
msgid "Add Drill Array"
msgstr "Bohrer-Array hinzufügen"
-#: flatcamEditors/FlatCAMExcEditor.py:1593
+#: flatcamEditors/FlatCAMExcEditor.py:1610
msgid "Add an array of drills (linear or circular array)"
msgstr ""
"Hinzufügen eines Arrays von Bohrern (lineares oder kreisförmiges Array)"
-#: flatcamEditors/FlatCAMExcEditor.py:1599
+#: flatcamEditors/FlatCAMExcEditor.py:1616
msgid ""
"Select the type of drills array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -2306,40 +2309,40 @@ msgstr ""
"Wählen Sie den Typ des zu erstellenden Bohrfelds aus.\n"
"Es kann lineares X (Y) oder rund sein"
-#: flatcamEditors/FlatCAMExcEditor.py:1602
-#: flatcamEditors/FlatCAMExcEditor.py:1804
-#: flatcamEditors/FlatCAMGrbEditor.py:2630
+#: flatcamEditors/FlatCAMExcEditor.py:1619
+#: flatcamEditors/FlatCAMExcEditor.py:1821
+#: flatcamEditors/FlatCAMGrbEditor.py:2647
msgid "Linear"
msgstr "Linear"
-#: flatcamEditors/FlatCAMExcEditor.py:1603
-#: flatcamEditors/FlatCAMExcEditor.py:1805
-#: flatcamEditors/FlatCAMGrbEditor.py:2631 flatcamGUI/FlatCAMGUI.py:6460
+#: flatcamEditors/FlatCAMExcEditor.py:1620
+#: flatcamEditors/FlatCAMExcEditor.py:1822
+#: flatcamEditors/FlatCAMGrbEditor.py:2648 flatcamGUI/FlatCAMGUI.py:6460
#: flatcamTools/ToolNonCopperClear.py:203
msgid "Circular"
msgstr "Kreisförmig"
-#: flatcamEditors/FlatCAMExcEditor.py:1611 flatcamGUI/FlatCAMGUI.py:5549
+#: flatcamEditors/FlatCAMExcEditor.py:1628 flatcamGUI/FlatCAMGUI.py:5549
msgid "Nr of drills"
msgstr "Anzahl der Bohrer"
-#: flatcamEditors/FlatCAMExcEditor.py:1612 flatcamGUI/FlatCAMGUI.py:5551
+#: flatcamEditors/FlatCAMExcEditor.py:1629 flatcamGUI/FlatCAMGUI.py:5551
msgid "Specify how many drills to be in the array."
msgstr "Geben Sie an, wie viele Drills im Array enthalten sein sollen."
-#: flatcamEditors/FlatCAMExcEditor.py:1629
-#: flatcamEditors/FlatCAMExcEditor.py:1676
-#: flatcamEditors/FlatCAMExcEditor.py:1740
-#: flatcamEditors/FlatCAMExcEditor.py:1831
-#: flatcamEditors/FlatCAMExcEditor.py:1878
-#: flatcamEditors/FlatCAMGrbEditor.py:2657
-#: flatcamEditors/FlatCAMGrbEditor.py:2702 flatcamGUI/FlatCAMGUI.py:5643
+#: flatcamEditors/FlatCAMExcEditor.py:1646
+#: flatcamEditors/FlatCAMExcEditor.py:1693
+#: flatcamEditors/FlatCAMExcEditor.py:1757
+#: flatcamEditors/FlatCAMExcEditor.py:1848
+#: flatcamEditors/FlatCAMExcEditor.py:1895
+#: flatcamEditors/FlatCAMGrbEditor.py:2674
+#: flatcamEditors/FlatCAMGrbEditor.py:2719 flatcamGUI/FlatCAMGUI.py:5643
msgid "Direction"
msgstr "Richtung"
-#: flatcamEditors/FlatCAMExcEditor.py:1631
-#: flatcamEditors/FlatCAMExcEditor.py:1833
-#: flatcamEditors/FlatCAMGrbEditor.py:2659 flatcamGUI/FlatCAMGUI.py:4717
+#: flatcamEditors/FlatCAMExcEditor.py:1648
+#: flatcamEditors/FlatCAMExcEditor.py:1850
+#: flatcamEditors/FlatCAMGrbEditor.py:2676 flatcamGUI/FlatCAMGUI.py:4717
#: flatcamGUI/FlatCAMGUI.py:5566 flatcamGUI/FlatCAMGUI.py:5697
msgid ""
"Direction on which the linear array is oriented:\n"
@@ -2352,35 +2355,35 @@ msgstr ""
"- 'Y' - vertikale Achse oder\n"
"- 'Winkel' - ein benutzerdefinierter Winkel für die Neigung des Arrays"
-#: flatcamEditors/FlatCAMExcEditor.py:1638
-#: flatcamEditors/FlatCAMExcEditor.py:1749
-#: flatcamEditors/FlatCAMExcEditor.py:1840
-#: flatcamEditors/FlatCAMGrbEditor.py:2666 flatcamGUI/FlatCAMGUI.py:4723
+#: flatcamEditors/FlatCAMExcEditor.py:1655
+#: flatcamEditors/FlatCAMExcEditor.py:1766
+#: flatcamEditors/FlatCAMExcEditor.py:1857
+#: flatcamEditors/FlatCAMGrbEditor.py:2683 flatcamGUI/FlatCAMGUI.py:4723
#: flatcamGUI/FlatCAMGUI.py:5572 flatcamGUI/FlatCAMGUI.py:5652
#: flatcamGUI/FlatCAMGUI.py:5703
msgid "X"
msgstr "X"
-#: flatcamEditors/FlatCAMExcEditor.py:1639
-#: flatcamEditors/FlatCAMExcEditor.py:1750
-#: flatcamEditors/FlatCAMExcEditor.py:1841
-#: flatcamEditors/FlatCAMGrbEditor.py:2667 flatcamGUI/FlatCAMGUI.py:4724
+#: flatcamEditors/FlatCAMExcEditor.py:1656
+#: flatcamEditors/FlatCAMExcEditor.py:1767
+#: flatcamEditors/FlatCAMExcEditor.py:1858
+#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:4724
#: flatcamGUI/FlatCAMGUI.py:5573 flatcamGUI/FlatCAMGUI.py:5653
#: flatcamGUI/FlatCAMGUI.py:5704
msgid "Y"
msgstr "Y"
-#: flatcamEditors/FlatCAMExcEditor.py:1640
-#: flatcamEditors/FlatCAMExcEditor.py:1654
-#: flatcamEditors/FlatCAMExcEditor.py:1688
-#: flatcamEditors/FlatCAMExcEditor.py:1751
-#: flatcamEditors/FlatCAMExcEditor.py:1755
-#: flatcamEditors/FlatCAMExcEditor.py:1842
-#: flatcamEditors/FlatCAMExcEditor.py:1856
-#: flatcamEditors/FlatCAMExcEditor.py:1890
-#: flatcamEditors/FlatCAMGrbEditor.py:2668
-#: flatcamEditors/FlatCAMGrbEditor.py:2681
-#: flatcamEditors/FlatCAMGrbEditor.py:2717 flatcamGUI/FlatCAMGUI.py:4725
+#: flatcamEditors/FlatCAMExcEditor.py:1657
+#: flatcamEditors/FlatCAMExcEditor.py:1671
+#: flatcamEditors/FlatCAMExcEditor.py:1705
+#: flatcamEditors/FlatCAMExcEditor.py:1768
+#: flatcamEditors/FlatCAMExcEditor.py:1772
+#: flatcamEditors/FlatCAMExcEditor.py:1859
+#: flatcamEditors/FlatCAMExcEditor.py:1873
+#: flatcamEditors/FlatCAMExcEditor.py:1907
+#: flatcamEditors/FlatCAMGrbEditor.py:2685
+#: flatcamEditors/FlatCAMGrbEditor.py:2698
+#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/FlatCAMGUI.py:4725
#: flatcamGUI/FlatCAMGUI.py:4742 flatcamGUI/FlatCAMGUI.py:5574
#: flatcamGUI/FlatCAMGUI.py:5591 flatcamGUI/FlatCAMGUI.py:5654
#: flatcamGUI/FlatCAMGUI.py:5659 flatcamGUI/FlatCAMGUI.py:5705
@@ -2388,23 +2391,23 @@ msgstr "Y"
msgid "Angle"
msgstr "Winkel"
-#: flatcamEditors/FlatCAMExcEditor.py:1644
-#: flatcamEditors/FlatCAMExcEditor.py:1846
-#: flatcamEditors/FlatCAMGrbEditor.py:2672 flatcamGUI/FlatCAMGUI.py:4731
+#: flatcamEditors/FlatCAMExcEditor.py:1661
+#: flatcamEditors/FlatCAMExcEditor.py:1863
+#: flatcamEditors/FlatCAMGrbEditor.py:2689 flatcamGUI/FlatCAMGUI.py:4731
#: flatcamGUI/FlatCAMGUI.py:5711
msgid "Pitch"
msgstr "Abstand"
-#: flatcamEditors/FlatCAMExcEditor.py:1646
-#: flatcamEditors/FlatCAMExcEditor.py:1848
-#: flatcamEditors/FlatCAMGrbEditor.py:2674 flatcamGUI/FlatCAMGUI.py:4733
+#: flatcamEditors/FlatCAMExcEditor.py:1663
+#: flatcamEditors/FlatCAMExcEditor.py:1865
+#: flatcamEditors/FlatCAMGrbEditor.py:2691 flatcamGUI/FlatCAMGUI.py:4733
#: flatcamGUI/FlatCAMGUI.py:5582 flatcamGUI/FlatCAMGUI.py:5713
msgid "Pitch = Distance between elements of the array."
msgstr "Abstand = Abstand zwischen Elementen des Arrays."
-#: flatcamEditors/FlatCAMExcEditor.py:1656
-#: flatcamEditors/FlatCAMExcEditor.py:1858
-#: flatcamEditors/FlatCAMGrbEditor.py:2683
+#: flatcamEditors/FlatCAMExcEditor.py:1673
+#: flatcamEditors/FlatCAMExcEditor.py:1875
+#: flatcamEditors/FlatCAMGrbEditor.py:2700
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -2416,9 +2419,9 @@ msgstr ""
"Der Mindestwert beträgt -359,99 Grad.\n"
"Maximalwert ist: 360.00 Grad."
-#: flatcamEditors/FlatCAMExcEditor.py:1677
-#: flatcamEditors/FlatCAMExcEditor.py:1879
-#: flatcamEditors/FlatCAMGrbEditor.py:2704
+#: flatcamEditors/FlatCAMExcEditor.py:1694
+#: flatcamEditors/FlatCAMExcEditor.py:1896
+#: flatcamEditors/FlatCAMGrbEditor.py:2721
msgid ""
"Direction for circular array.Can be CW = clockwise or CCW = counter "
"clockwise."
@@ -2426,25 +2429,25 @@ msgstr ""
"Richtung für kreisförmige Anordnung. Kann CW = Uhrzeigersinn oder CCW = "
"Gegenuhrzeigersinn sein."
-#: flatcamEditors/FlatCAMExcEditor.py:1684
-#: flatcamEditors/FlatCAMExcEditor.py:1886
-#: flatcamEditors/FlatCAMGrbEditor.py:2712 flatcamGUI/FlatCAMGUI.py:4761
+#: flatcamEditors/FlatCAMExcEditor.py:1701
+#: flatcamEditors/FlatCAMExcEditor.py:1903
+#: flatcamEditors/FlatCAMGrbEditor.py:2729 flatcamGUI/FlatCAMGUI.py:4761
#: flatcamGUI/FlatCAMGUI.py:5152 flatcamGUI/FlatCAMGUI.py:5610
#: flatcamGUI/FlatCAMGUI.py:5741 flatcamGUI/FlatCAMGUI.py:5943
msgid "CW"
msgstr "CW"
-#: flatcamEditors/FlatCAMExcEditor.py:1685
-#: flatcamEditors/FlatCAMExcEditor.py:1887
-#: flatcamEditors/FlatCAMGrbEditor.py:2713 flatcamGUI/FlatCAMGUI.py:4762
+#: flatcamEditors/FlatCAMExcEditor.py:1702
+#: flatcamEditors/FlatCAMExcEditor.py:1904
+#: flatcamEditors/FlatCAMGrbEditor.py:2730 flatcamGUI/FlatCAMGUI.py:4762
#: flatcamGUI/FlatCAMGUI.py:5153 flatcamGUI/FlatCAMGUI.py:5611
#: flatcamGUI/FlatCAMGUI.py:5742 flatcamGUI/FlatCAMGUI.py:5944
msgid "CCW"
msgstr "CCW"
-#: flatcamEditors/FlatCAMExcEditor.py:1689
-#: flatcamEditors/FlatCAMExcEditor.py:1891
-#: flatcamEditors/FlatCAMGrbEditor.py:2719 flatcamGUI/FlatCAMGUI.py:4744
+#: flatcamEditors/FlatCAMExcEditor.py:1706
+#: flatcamEditors/FlatCAMExcEditor.py:1908
+#: flatcamEditors/FlatCAMGrbEditor.py:2736 flatcamGUI/FlatCAMGUI.py:4744
#: flatcamGUI/FlatCAMGUI.py:4770 flatcamGUI/FlatCAMGUI.py:5593
#: flatcamGUI/FlatCAMGUI.py:5619 flatcamGUI/FlatCAMGUI.py:5724
#: flatcamGUI/FlatCAMGUI.py:5750
@@ -2452,11 +2455,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."
-#: flatcamEditors/FlatCAMExcEditor.py:1719
+#: flatcamEditors/FlatCAMExcEditor.py:1736
msgid "Slot Parameters"
msgstr "Schlitze-Parameter"
-#: flatcamEditors/FlatCAMExcEditor.py:1721
+#: flatcamEditors/FlatCAMExcEditor.py:1738
msgid ""
"Parameters for adding a slot (hole with oval shape)\n"
"either single or as an part of an array."
@@ -2464,16 +2467,16 @@ msgstr ""
"Parameter zum Hinzufügen eines Schlitzes (Loch mit ovaler Form)\n"
"entweder einzeln oder als Teil eines Arrays."
-#: flatcamEditors/FlatCAMExcEditor.py:1730 flatcamGUI/FlatCAMGUI.py:5632
+#: flatcamEditors/FlatCAMExcEditor.py:1747 flatcamGUI/FlatCAMGUI.py:5632
#: flatcamTools/ToolProperties.py:350
msgid "Length"
msgstr "Länge"
-#: flatcamEditors/FlatCAMExcEditor.py:1732 flatcamGUI/FlatCAMGUI.py:5634
+#: flatcamEditors/FlatCAMExcEditor.py:1749 flatcamGUI/FlatCAMGUI.py:5634
msgid "Length = The length of the slot."
msgstr "Länge = Die Länge des Schlitzes."
-#: flatcamEditors/FlatCAMExcEditor.py:1742 flatcamGUI/FlatCAMGUI.py:5645
+#: flatcamEditors/FlatCAMExcEditor.py:1759 flatcamGUI/FlatCAMGUI.py:5645
msgid ""
"Direction on which the slot is oriented:\n"
"- 'X' - horizontal axis \n"
@@ -2485,7 +2488,7 @@ msgstr ""
"- 'Y' - vertikale Achse oder\n"
"- 'Winkel' - Ein benutzerdefinierter Winkel für die Schlitzneigung"
-#: flatcamEditors/FlatCAMExcEditor.py:1757 flatcamGUI/FlatCAMGUI.py:5661
+#: flatcamEditors/FlatCAMExcEditor.py:1774 flatcamGUI/FlatCAMGUI.py:5661
msgid ""
"Angle at which the slot is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -2497,16 +2500,16 @@ msgstr ""
"Der Mindestwert beträgt: -359,99 Grad.\n"
"Maximaler Wert ist: 360.00 Grad."
-#: flatcamEditors/FlatCAMExcEditor.py:1790
+#: flatcamEditors/FlatCAMExcEditor.py:1807
msgid "Slot Array Parameters"
msgstr "Schlitzes Array-Parameter"
-#: flatcamEditors/FlatCAMExcEditor.py:1792
+#: flatcamEditors/FlatCAMExcEditor.py:1809
msgid "Parameters for the array of slots (linear or circular array)"
msgstr ""
"Parameter für das Array von Schlitzes (lineares oder kreisförmiges Array)"
-#: flatcamEditors/FlatCAMExcEditor.py:1801
+#: flatcamEditors/FlatCAMExcEditor.py:1818
msgid ""
"Select the type of slot array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -2514,91 +2517,70 @@ msgstr ""
"Wählen Sie den Typ des zu erstellenden Slot-Arrays.\n"
"Es kann ein lineares X (Y) oder ein kreisförmiges sein"
-#: flatcamEditors/FlatCAMExcEditor.py:1813 flatcamGUI/FlatCAMGUI.py:5683
+#: flatcamEditors/FlatCAMExcEditor.py:1830 flatcamGUI/FlatCAMGUI.py:5683
msgid "Nr of slots"
msgstr "Anzahl der Slots"
-#: flatcamEditors/FlatCAMExcEditor.py:1814 flatcamGUI/FlatCAMGUI.py:5685
+#: flatcamEditors/FlatCAMExcEditor.py:1831 flatcamGUI/FlatCAMGUI.py:5685
msgid "Specify how many slots to be in the array."
msgstr "Geben Sie an, wie viele Steckplätze sich im Array befinden sollen."
-#: flatcamEditors/FlatCAMExcEditor.py:2398
-msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
-msgstr "[ERROR_NOTCL] Falsches Wertformat eingegeben, eine Zahl verwenden."
-
-#: flatcamEditors/FlatCAMExcEditor.py:2411
+#: flatcamEditors/FlatCAMExcEditor.py:2428
msgid ""
-"[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
+"Tool already in the original or actual tool list.\n"
"Save and reedit Excellon if you need to add this tool. "
msgstr ""
-"[WARNING_NOTCL] Werkzeug bereits in der ursprünglichen oder tatsächlichen "
-"Werkzeugliste.\n"
+"Werkzeug bereits in der ursprünglichen oder tatsächlichen Werkzeugliste.\n"
"Speichern Sie Excellon und bearbeiten Sie es erneut, wenn Sie dieses Tool "
"hinzufügen müssen."
-#: flatcamEditors/FlatCAMExcEditor.py:2420 flatcamGUI/FlatCAMGUI.py:3164
-#, python-brace-format
-msgid "[success] Added new tool with dia: {dia} {units}"
-msgstr "[success] Neues Werkzeug mit Durchmesser hinzugefügt: {dia} {units}"
+#: flatcamEditors/FlatCAMExcEditor.py:2437
+msgid "Added new tool with dia"
+msgstr "Neues Werkzeug mit Durchmesser hinzugefügt"
-#: flatcamEditors/FlatCAMExcEditor.py:2452
-msgid "[WARNING_NOTCL] Select a tool in Tool Table"
-msgstr "[WARNING_NOTCL] Wählen Sie ein Werkzeug in der Werkzeugtabelle aus"
+#: flatcamEditors/FlatCAMExcEditor.py:2469
+msgid "Select a tool in Tool Table"
+msgstr "Wählen Sie ein Werkzeug in der Werkzeugtabelle aus"
-#: flatcamEditors/FlatCAMExcEditor.py:2484
-#, python-brace-format
-msgid "[success] Deleted tool with dia: {del_dia} {units}"
-msgstr "[success] Gelöschtes Werkzeug mit Durchmesser: {del_dia} {units}"
+#: flatcamEditors/FlatCAMExcEditor.py:2502
+msgid "Deleted tool with diameter"
+msgstr "Gelöschtes Werkzeug mit Durchmesser"
-#: flatcamEditors/FlatCAMExcEditor.py:2635
-msgid "[success] Done. Tool edit completed."
-msgstr "[success] Erledigt. Werkzeugbearbeitung abgeschlossen."
+#: flatcamEditors/FlatCAMExcEditor.py:2652
+msgid "Done. Tool edit completed."
+msgstr "Erledigt. Werkzeugbearbeitung abgeschlossen."
-#: flatcamEditors/FlatCAMExcEditor.py:3170
-msgid ""
-"[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
-"creation."
+#: flatcamEditors/FlatCAMExcEditor.py:3187
+msgid "There are no Tools definitions in the file. Aborting Excellon creation."
msgstr ""
-"[ERROR_NOTCL] Die Datei enthält keine Werkzeugdefinitionen. Abbruch der "
-"Excellon-Erstellung."
+"Die Datei enthält keine Werkzeugdefinitionen. Abbruch der Excellon-"
+"Erstellung."
-#: flatcamEditors/FlatCAMExcEditor.py:3173
-msgid "[ERROR] An internal error has ocurred. See shell.\n"
-msgstr "[ERROR] Ein interner Fehler ist aufgetreten. Siehe Shell.\n"
+#: flatcamEditors/FlatCAMExcEditor.py:3191
+msgid "An internal error has ocurred. See Shell.\n"
+msgstr ""
+"Ein interner Fehler ist aufgetreten. Siehe Shell.\n"
+"\n"
-#: flatcamEditors/FlatCAMExcEditor.py:3179
+#: flatcamEditors/FlatCAMExcEditor.py:3197
msgid "Creating Excellon."
msgstr "Excellon erstellen."
-#: flatcamEditors/FlatCAMExcEditor.py:3188
-msgid "[success] Excellon editing finished."
-msgstr "[success] Excellon-Bearbeitung abgeschlossen."
+#: flatcamEditors/FlatCAMExcEditor.py:3207
+msgid "Excellon editing finished."
+msgstr "Excellon-Bearbeitung abgeschlossen."
-#: flatcamEditors/FlatCAMExcEditor.py:3205
-msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
-msgstr "[WARNING_NOTCL] Abgebrochen. Es ist kein Werkzeug / Bohrer ausgewählt"
+#: flatcamEditors/FlatCAMExcEditor.py:3225
+msgid "Cancelled. There is no Tool/Drill selected"
+msgstr "Abgebrochen. Es ist kein Werkzeug / Bohrer ausgewählt"
-#: flatcamEditors/FlatCAMExcEditor.py:3424
-#: flatcamEditors/FlatCAMExcEditor.py:3431
-#: flatcamEditors/FlatCAMGeoEditor.py:3741
-#: flatcamEditors/FlatCAMGeoEditor.py:3755
-#: flatcamEditors/FlatCAMGrbEditor.py:1057
-#: flatcamEditors/FlatCAMGrbEditor.py:1160
-#: flatcamEditors/FlatCAMGrbEditor.py:1433
-#: flatcamEditors/FlatCAMGrbEditor.py:1690
-#: flatcamEditors/FlatCAMGrbEditor.py:4156
-#: flatcamEditors/FlatCAMGrbEditor.py:4170 flatcamGUI/FlatCAMGUI.py:2560
-#: flatcamGUI/FlatCAMGUI.py:2572
-msgid "[success] Done."
-msgstr "[success] Erledigt."
+#: flatcamEditors/FlatCAMExcEditor.py:3810
+msgid "Done. Drill(s) deleted."
+msgstr "Erledigt. Bohrer gelöscht."
-#: flatcamEditors/FlatCAMExcEditor.py:3787
-msgid "[success] Done. Drill(s) deleted."
-msgstr "[success] Erledigt. Bohrer gelöscht."
-
-#: flatcamEditors/FlatCAMExcEditor.py:3859
-#: flatcamEditors/FlatCAMExcEditor.py:3869
-#: flatcamEditors/FlatCAMGrbEditor.py:4547
+#: flatcamEditors/FlatCAMExcEditor.py:3882
+#: flatcamEditors/FlatCAMExcEditor.py:3892
+#: flatcamEditors/FlatCAMGrbEditor.py:4576
msgid "Click on the circular array Center position"
msgstr "Klicken Sie auf die kreisförmige Anordnung in der Mitte"
@@ -2626,17 +2608,17 @@ msgstr ""
"der Ecke treffen, direkt verbindet"
#: flatcamEditors/FlatCAMGeoEditor.py:91
-#: flatcamEditors/FlatCAMGrbEditor.py:2505
+#: flatcamEditors/FlatCAMGrbEditor.py:2522
msgid "Round"
msgstr "Runden"
#: flatcamEditors/FlatCAMGeoEditor.py:92
-#: flatcamEditors/FlatCAMGrbEditor.py:2506
+#: flatcamEditors/FlatCAMGrbEditor.py:2523
msgid "Square"
msgstr "Quadrat"
#: flatcamEditors/FlatCAMGeoEditor.py:93
-#: flatcamEditors/FlatCAMGrbEditor.py:2507
+#: flatcamEditors/FlatCAMGrbEditor.py:2524
msgid "Beveled"
msgstr "Abgeschrägt"
@@ -2653,23 +2635,21 @@ msgid "Full Buffer"
msgstr "Voller Puffer"
#: flatcamEditors/FlatCAMGeoEditor.py:129
-#: flatcamEditors/FlatCAMGeoEditor.py:2683 flatcamGUI/FlatCAMGUI.py:4777
+#: flatcamEditors/FlatCAMGeoEditor.py:2720 flatcamGUI/FlatCAMGUI.py:4777
msgid "Buffer Tool"
msgstr "Pufferwerkzeug"
-#: flatcamEditors/FlatCAMGeoEditor.py:140
-#: flatcamEditors/FlatCAMGeoEditor.py:157
-#: flatcamEditors/FlatCAMGeoEditor.py:174
-#: flatcamEditors/FlatCAMGeoEditor.py:2701
-#: flatcamEditors/FlatCAMGeoEditor.py:2729
-#: flatcamEditors/FlatCAMGeoEditor.py:2757
-#: flatcamEditors/FlatCAMGrbEditor.py:4599
-msgid ""
-"[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGeoEditor.py:141
+#: flatcamEditors/FlatCAMGeoEditor.py:158
+#: flatcamEditors/FlatCAMGeoEditor.py:175
+#: flatcamEditors/FlatCAMGeoEditor.py:2740
+#: flatcamEditors/FlatCAMGeoEditor.py:2770
+#: flatcamEditors/FlatCAMGeoEditor.py:2800
+#: flatcamEditors/FlatCAMGrbEditor.py:4629
+msgid "Buffer distance value is missing or wrong format. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Pufferabstandswert fehlt oder falsches Format. Fügen Sie es "
-"hinzu und versuchen Sie es erneut."
+"Pufferabstandswert fehlt oder falsches Format. Fügen Sie es hinzu und "
+"versuchen Sie es erneut."
#: flatcamEditors/FlatCAMGeoEditor.py:345
msgid "Text Tool"
@@ -2813,101 +2793,98 @@ msgstr "Malen"
#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:661
#: flatcamGUI/FlatCAMGUI.py:2004 flatcamGUI/ObjectUI.py:1360
-#: flatcamTools/ToolPaint.py:25 flatcamTools/ToolPaint.py:446
+#: flatcamTools/ToolPaint.py:25 flatcamTools/ToolPaint.py:448
msgid "Paint Tool"
msgstr "Werkzeug Malen"
-#: flatcamEditors/FlatCAMGeoEditor.py:565
-msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
-msgstr "[WARNING_NOTCL] Lack abgebrochen. Keine Form ausgewählt."
+#: flatcamEditors/FlatCAMGeoEditor.py:566
+msgid "Paint cancelled. No shape selected."
+msgstr "Malwerkzeug abgebrochen. Keine Form ausgewählt."
-#: flatcamEditors/FlatCAMGeoEditor.py:576
-msgid ""
-"[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGeoEditor.py:578 flatcamTools/ToolCutOut.py:387
+#: flatcamTools/ToolCutOut.py:585 flatcamTools/ToolCutOut.py:755
+#: flatcamTools/ToolCutOut.py:849 flatcamTools/ToolDblSided.py:367
+msgid "Tool diameter value is missing or wrong format. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Werkzeugdurchmesserwert fehlt oder falsches Format. Fügen "
-"Sie es hinzu und versuchen Sie es erneut."
+"Werkzeugdurchmesserwert fehlt oder falsches Format. Fügen Sie es hinzu und "
+"versuchen Sie es erneut."
-#: flatcamEditors/FlatCAMGeoEditor.py:587
-msgid ""
-"[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
+#: flatcamEditors/FlatCAMGeoEditor.py:589
+msgid "Overlap value is missing or wrong format. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Überlappungswert fehlt oder falsches Format. Fügen Sie es "
-"hinzu und versuchen Sie es erneut."
+"Überlappungswert fehlt oder falsches Format. Fügen Sie es hinzu und "
+"versuchen Sie es erneut."
-#: flatcamEditors/FlatCAMGeoEditor.py:599
-msgid ""
-"[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGeoEditor.py:601
+msgid "Margin distance value is missing or wrong format. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Randabstandswert fehlt oder falsches Format. Fügen Sie es "
-"hinzu und versuchen Sie es erneut."
+"Randabstandswert fehlt oder falsches Format. Fügen Sie es hinzu und "
+"versuchen Sie es erneut."
-#: flatcamEditors/FlatCAMGeoEditor.py:608
-#: flatcamEditors/FlatCAMGeoEditor.py:2708
-#: flatcamEditors/FlatCAMGeoEditor.py:2736
-#: flatcamEditors/FlatCAMGeoEditor.py:2764 flatcamGUI/FlatCAMGUI.py:5792
+#: flatcamEditors/FlatCAMGeoEditor.py:609
+#: flatcamEditors/FlatCAMGeoEditor.py:2746
+#: flatcamEditors/FlatCAMGeoEditor.py:2776
+#: flatcamEditors/FlatCAMGeoEditor.py:2806 flatcamGUI/FlatCAMGUI.py:5792
#: flatcamTools/ToolProperties.py:113 flatcamTools/ToolProperties.py:139
msgid "Tools"
msgstr "Werkzeuge"
-#: flatcamEditors/FlatCAMGeoEditor.py:619
-#: flatcamEditors/FlatCAMGeoEditor.py:992
-#: flatcamEditors/FlatCAMGrbEditor.py:4780
-#: flatcamEditors/FlatCAMGrbEditor.py:5165 flatcamGUI/FlatCAMGUI.py:672
+#: flatcamEditors/FlatCAMGeoEditor.py:620
+#: flatcamEditors/FlatCAMGeoEditor.py:993
+#: flatcamEditors/FlatCAMGrbEditor.py:4812
+#: flatcamEditors/FlatCAMGrbEditor.py:5197 flatcamGUI/FlatCAMGUI.py:672
#: flatcamGUI/FlatCAMGUI.py:2017 flatcamTools/ToolTransform.py:403
msgid "Transform Tool"
msgstr "Werkzeug Umwandeln"
-#: flatcamEditors/FlatCAMGeoEditor.py:620
-#: flatcamEditors/FlatCAMGeoEditor.py:681
-#: flatcamEditors/FlatCAMGrbEditor.py:4781
-#: flatcamEditors/FlatCAMGrbEditor.py:4843 flatcamTools/ToolTransform.py:24
+#: flatcamEditors/FlatCAMGeoEditor.py:621
+#: flatcamEditors/FlatCAMGeoEditor.py:682
+#: flatcamEditors/FlatCAMGrbEditor.py:4813
+#: flatcamEditors/FlatCAMGrbEditor.py:4875 flatcamTools/ToolTransform.py:24
#: flatcamTools/ToolTransform.py:82
msgid "Rotate"
msgstr "Drehen"
-#: flatcamEditors/FlatCAMGeoEditor.py:621
-#: flatcamEditors/FlatCAMGrbEditor.py:4782 flatcamTools/ToolTransform.py:25
+#: flatcamEditors/FlatCAMGeoEditor.py:622
+#: flatcamEditors/FlatCAMGrbEditor.py:4814 flatcamTools/ToolTransform.py:25
msgid "Skew/Shear"
msgstr "Neigung/Schere"
-#: flatcamEditors/FlatCAMGeoEditor.py:622
-#: flatcamEditors/FlatCAMGrbEditor.py:2552
-#: flatcamEditors/FlatCAMGrbEditor.py:4783 flatcamGUI/FlatCAMGUI.py:739
+#: flatcamEditors/FlatCAMGeoEditor.py:623
+#: flatcamEditors/FlatCAMGrbEditor.py:2569
+#: flatcamEditors/FlatCAMGrbEditor.py:4815 flatcamGUI/FlatCAMGUI.py:739
#: flatcamGUI/FlatCAMGUI.py:1700 flatcamGUI/FlatCAMGUI.py:2086
#: flatcamGUI/ObjectUI.py:79 flatcamGUI/ObjectUI.py:100
#: flatcamTools/ToolTransform.py:26
msgid "Scale"
msgstr "Skalieren"
-#: flatcamEditors/FlatCAMGeoEditor.py:623
-#: flatcamEditors/FlatCAMGrbEditor.py:4784 flatcamTools/ToolTransform.py:27
+#: flatcamEditors/FlatCAMGeoEditor.py:624
+#: flatcamEditors/FlatCAMGrbEditor.py:4816 flatcamTools/ToolTransform.py:27
msgid "Mirror (Flip)"
msgstr "Spiegeln (Flip)"
-#: flatcamEditors/FlatCAMGeoEditor.py:624
-#: flatcamEditors/FlatCAMGrbEditor.py:4785 flatcamGUI/FlatCAMGUI.py:6622
+#: flatcamEditors/FlatCAMGeoEditor.py:625
+#: flatcamEditors/FlatCAMGrbEditor.py:4817 flatcamGUI/FlatCAMGUI.py:6622
#: flatcamGUI/ObjectUI.py:108 flatcamGUI/ObjectUI.py:127
#: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
#: flatcamTools/ToolNonCopperClear.py:357 flatcamTools/ToolTransform.py:28
msgid "Offset"
msgstr "Versatz"
-#: flatcamEditors/FlatCAMGeoEditor.py:635
-#: flatcamEditors/FlatCAMGrbEditor.py:4797
+#: flatcamEditors/FlatCAMGeoEditor.py:636
+#: flatcamEditors/FlatCAMGrbEditor.py:4829
#, python-format
msgid "Editor %s"
msgstr "Editor %s"
-#: flatcamEditors/FlatCAMGeoEditor.py:667
-#: flatcamEditors/FlatCAMGrbEditor.py:4829
+#: flatcamEditors/FlatCAMGeoEditor.py:668
+#: flatcamEditors/FlatCAMGrbEditor.py:4861
msgid "Angle:"
msgstr "Winkel:"
-#: flatcamEditors/FlatCAMGeoEditor.py:669
-#: flatcamEditors/FlatCAMGrbEditor.py:4831 flatcamGUI/FlatCAMGUI.py:7268
+#: flatcamEditors/FlatCAMGeoEditor.py:670
+#: flatcamEditors/FlatCAMGrbEditor.py:4863 flatcamGUI/FlatCAMGUI.py:7268
#: flatcamTools/ToolTransform.py:70
msgid ""
"Angle for Rotation action, in degrees.\n"
@@ -2920,8 +2897,8 @@ msgstr ""
"Positive Zahlen für CW-Bewegung.\n"
"Negative Zahlen für CCW-Bewegung."
-#: flatcamEditors/FlatCAMGeoEditor.py:683
-#: flatcamEditors/FlatCAMGrbEditor.py:4845
+#: flatcamEditors/FlatCAMGeoEditor.py:684
+#: flatcamEditors/FlatCAMGrbEditor.py:4877
msgid ""
"Rotate the selected shape(s).\n"
"The point of reference is the middle of\n"
@@ -2931,15 +2908,15 @@ msgstr ""
"Der Bezugspunkt ist die Mitte von\n"
"der Begrenzungsrahmen für alle ausgewählten Formen."
-#: flatcamEditors/FlatCAMGeoEditor.py:706
-#: flatcamEditors/FlatCAMGrbEditor.py:4868
+#: flatcamEditors/FlatCAMGeoEditor.py:707
+#: flatcamEditors/FlatCAMGrbEditor.py:4900
msgid "Angle X:"
msgstr "Winkel X:"
-#: flatcamEditors/FlatCAMGeoEditor.py:708
-#: flatcamEditors/FlatCAMGeoEditor.py:726
-#: flatcamEditors/FlatCAMGrbEditor.py:4870
-#: flatcamEditors/FlatCAMGrbEditor.py:4888 flatcamGUI/FlatCAMGUI.py:7280
+#: flatcamEditors/FlatCAMGeoEditor.py:709
+#: flatcamEditors/FlatCAMGeoEditor.py:727
+#: flatcamEditors/FlatCAMGrbEditor.py:4902
+#: flatcamEditors/FlatCAMGrbEditor.py:4920 flatcamGUI/FlatCAMGUI.py:7280
#: flatcamGUI/FlatCAMGUI.py:7290 flatcamTools/ToolTransform.py:109
#: flatcamTools/ToolTransform.py:127
msgid ""
@@ -2949,15 +2926,15 @@ msgstr ""
"Winkel für die Schräglage in Grad.\n"
"Float-Nummer zwischen -360 und 359."
-#: flatcamEditors/FlatCAMGeoEditor.py:717
-#: flatcamEditors/FlatCAMGrbEditor.py:4879 flatcamTools/ToolTransform.py:118
+#: flatcamEditors/FlatCAMGeoEditor.py:718
+#: flatcamEditors/FlatCAMGrbEditor.py:4911 flatcamTools/ToolTransform.py:118
msgid "Skew X"
msgstr "Neigung X"
-#: flatcamEditors/FlatCAMGeoEditor.py:719
-#: flatcamEditors/FlatCAMGeoEditor.py:737
-#: flatcamEditors/FlatCAMGrbEditor.py:4881
-#: flatcamEditors/FlatCAMGrbEditor.py:4899
+#: flatcamEditors/FlatCAMGeoEditor.py:720
+#: flatcamEditors/FlatCAMGeoEditor.py:738
+#: flatcamEditors/FlatCAMGrbEditor.py:4913
+#: flatcamEditors/FlatCAMGrbEditor.py:4931
msgid ""
"Skew/shear the selected shape(s).\n"
"The point of reference is the middle of\n"
@@ -2967,35 +2944,35 @@ msgstr ""
"Der Bezugspunkt ist die Mitte von\n"
"der Begrenzungsrahmen für alle ausgewählten Formen."
-#: flatcamEditors/FlatCAMGeoEditor.py:724
-#: flatcamEditors/FlatCAMGrbEditor.py:4886
+#: flatcamEditors/FlatCAMGeoEditor.py:725
+#: flatcamEditors/FlatCAMGrbEditor.py:4918
msgid "Angle Y:"
msgstr "Winkel Y:"
-#: flatcamEditors/FlatCAMGeoEditor.py:735
-#: flatcamEditors/FlatCAMGrbEditor.py:4897 flatcamTools/ToolTransform.py:136
+#: flatcamEditors/FlatCAMGeoEditor.py:736
+#: flatcamEditors/FlatCAMGrbEditor.py:4929 flatcamTools/ToolTransform.py:136
msgid "Skew Y"
msgstr "Neigung Y"
-#: flatcamEditors/FlatCAMGeoEditor.py:763
-#: flatcamEditors/FlatCAMGrbEditor.py:4925
+#: flatcamEditors/FlatCAMGeoEditor.py:764
+#: flatcamEditors/FlatCAMGrbEditor.py:4957
msgid "Factor X:"
msgstr "Faktor X:"
-#: flatcamEditors/FlatCAMGeoEditor.py:765
-#: flatcamEditors/FlatCAMGrbEditor.py:4927
+#: flatcamEditors/FlatCAMGeoEditor.py:766
+#: flatcamEditors/FlatCAMGrbEditor.py:4959
msgid "Factor for Scale action over X axis."
msgstr "Faktor für die Skalierungsaktion über der X-Achse."
-#: flatcamEditors/FlatCAMGeoEditor.py:773
-#: flatcamEditors/FlatCAMGrbEditor.py:4935 flatcamTools/ToolTransform.py:174
+#: flatcamEditors/FlatCAMGeoEditor.py:774
+#: flatcamEditors/FlatCAMGrbEditor.py:4967 flatcamTools/ToolTransform.py:174
msgid "Scale X"
msgstr "Maßstab X"
-#: flatcamEditors/FlatCAMGeoEditor.py:775
-#: flatcamEditors/FlatCAMGeoEditor.py:792
-#: flatcamEditors/FlatCAMGrbEditor.py:4937
-#: flatcamEditors/FlatCAMGrbEditor.py:4954
+#: flatcamEditors/FlatCAMGeoEditor.py:776
+#: flatcamEditors/FlatCAMGeoEditor.py:793
+#: flatcamEditors/FlatCAMGrbEditor.py:4969
+#: flatcamEditors/FlatCAMGrbEditor.py:4986
msgid ""
"Scale the selected shape(s).\n"
"The point of reference depends on \n"
@@ -3005,29 +2982,29 @@ msgstr ""
"Der Bezugspunkt hängt von ab\n"
"das Kontrollkästchen Skalenreferenz."
-#: flatcamEditors/FlatCAMGeoEditor.py:780
-#: flatcamEditors/FlatCAMGrbEditor.py:4942
+#: flatcamEditors/FlatCAMGeoEditor.py:781
+#: flatcamEditors/FlatCAMGrbEditor.py:4974
msgid "Factor Y:"
msgstr "Faktor Y:"
-#: flatcamEditors/FlatCAMGeoEditor.py:782
-#: flatcamEditors/FlatCAMGrbEditor.py:4944
+#: flatcamEditors/FlatCAMGeoEditor.py:783
+#: flatcamEditors/FlatCAMGrbEditor.py:4976
msgid "Factor for Scale action over Y axis."
msgstr "Faktor für die Skalierungsaktion über der Y-Achse."
-#: flatcamEditors/FlatCAMGeoEditor.py:790
-#: flatcamEditors/FlatCAMGrbEditor.py:4952 flatcamTools/ToolTransform.py:191
+#: flatcamEditors/FlatCAMGeoEditor.py:791
+#: flatcamEditors/FlatCAMGrbEditor.py:4984 flatcamTools/ToolTransform.py:191
msgid "Scale Y"
msgstr "Maßstab Y"
-#: flatcamEditors/FlatCAMGeoEditor.py:799
-#: flatcamEditors/FlatCAMGrbEditor.py:4961 flatcamGUI/FlatCAMGUI.py:7315
+#: flatcamEditors/FlatCAMGeoEditor.py:800
+#: flatcamEditors/FlatCAMGrbEditor.py:4993 flatcamGUI/FlatCAMGUI.py:7315
#: flatcamTools/ToolTransform.py:200
msgid "Link"
msgstr "Verknüpfung"
-#: flatcamEditors/FlatCAMGeoEditor.py:801
-#: flatcamEditors/FlatCAMGrbEditor.py:4963
+#: flatcamEditors/FlatCAMGeoEditor.py:802
+#: flatcamEditors/FlatCAMGrbEditor.py:4995
msgid ""
"Scale the selected shape(s)\n"
"using the Scale Factor X for both axis."
@@ -3035,14 +3012,14 @@ msgstr ""
"Skalieren der ausgewählten Form (en)\n"
"Verwenden des Skalierungsfaktors X für beide Achsen."
-#: flatcamEditors/FlatCAMGeoEditor.py:807
-#: flatcamEditors/FlatCAMGrbEditor.py:4969 flatcamGUI/FlatCAMGUI.py:7323
+#: flatcamEditors/FlatCAMGeoEditor.py:808
+#: flatcamEditors/FlatCAMGrbEditor.py:5001 flatcamGUI/FlatCAMGUI.py:7323
#: flatcamTools/ToolTransform.py:209
msgid "Scale Reference"
msgstr "Skalenreferenz"
-#: flatcamEditors/FlatCAMGeoEditor.py:809
-#: flatcamEditors/FlatCAMGrbEditor.py:4971
+#: flatcamEditors/FlatCAMGeoEditor.py:810
+#: flatcamEditors/FlatCAMGrbEditor.py:5003
msgid ""
"Scale the selected shape(s)\n"
"using the origin reference when checked,\n"
@@ -3054,25 +3031,25 @@ msgstr ""
"und die Mitte der größten Begrenzungsbox\n"
"der ausgewählten Formen, wenn nicht markiert."
-#: flatcamEditors/FlatCAMGeoEditor.py:837
-#: flatcamEditors/FlatCAMGrbEditor.py:5000
+#: flatcamEditors/FlatCAMGeoEditor.py:838
+#: flatcamEditors/FlatCAMGrbEditor.py:5032
msgid "Value X:"
msgstr "Wert X:"
-#: flatcamEditors/FlatCAMGeoEditor.py:839
-#: flatcamEditors/FlatCAMGrbEditor.py:5002
+#: flatcamEditors/FlatCAMGeoEditor.py:840
+#: flatcamEditors/FlatCAMGrbEditor.py:5034
msgid "Value for Offset action on X axis."
msgstr "Wert für die Offset-Aktion auf der X-Achse."
-#: flatcamEditors/FlatCAMGeoEditor.py:847
-#: flatcamEditors/FlatCAMGrbEditor.py:5010 flatcamTools/ToolTransform.py:249
+#: flatcamEditors/FlatCAMGeoEditor.py:848
+#: flatcamEditors/FlatCAMGrbEditor.py:5042 flatcamTools/ToolTransform.py:249
msgid "Offset X"
msgstr "Versatz X"
-#: flatcamEditors/FlatCAMGeoEditor.py:849
-#: flatcamEditors/FlatCAMGeoEditor.py:867
-#: flatcamEditors/FlatCAMGrbEditor.py:5012
-#: flatcamEditors/FlatCAMGrbEditor.py:5030
+#: flatcamEditors/FlatCAMGeoEditor.py:850
+#: flatcamEditors/FlatCAMGeoEditor.py:868
+#: flatcamEditors/FlatCAMGrbEditor.py:5044
+#: flatcamEditors/FlatCAMGrbEditor.py:5062
msgid ""
"Offset the selected shape(s).\n"
"The point of reference is the middle of\n"
@@ -3082,30 +3059,30 @@ msgstr ""
"Der Bezugspunkt ist die Mitte von\n"
"der Begrenzungsrahmen für alle ausgewählten Formen.\n"
-#: flatcamEditors/FlatCAMGeoEditor.py:855
-#: flatcamEditors/FlatCAMGrbEditor.py:5018
+#: flatcamEditors/FlatCAMGeoEditor.py:856
+#: flatcamEditors/FlatCAMGrbEditor.py:5050
msgid "Value Y:"
msgstr "Wert Y:"
-#: flatcamEditors/FlatCAMGeoEditor.py:857
-#: flatcamEditors/FlatCAMGrbEditor.py:5020
+#: flatcamEditors/FlatCAMGeoEditor.py:858
+#: flatcamEditors/FlatCAMGrbEditor.py:5052
msgid "Value for Offset action on Y axis."
msgstr "Wert für die Offset-Aktion auf der Y-Achse."
-#: flatcamEditors/FlatCAMGeoEditor.py:865
-#: flatcamEditors/FlatCAMGrbEditor.py:5028 flatcamTools/ToolTransform.py:266
+#: flatcamEditors/FlatCAMGeoEditor.py:866
+#: flatcamEditors/FlatCAMGrbEditor.py:5060 flatcamTools/ToolTransform.py:266
msgid "Offset Y"
msgstr "Versatz Y"
-#: flatcamEditors/FlatCAMGeoEditor.py:896
-#: flatcamEditors/FlatCAMGrbEditor.py:5059 flatcamTools/ToolTransform.py:296
+#: flatcamEditors/FlatCAMGeoEditor.py:897
+#: flatcamEditors/FlatCAMGrbEditor.py:5091 flatcamTools/ToolTransform.py:296
msgid "Flip on X"
msgstr "Flip auf X"
-#: flatcamEditors/FlatCAMGeoEditor.py:898
-#: flatcamEditors/FlatCAMGeoEditor.py:906
-#: flatcamEditors/FlatCAMGrbEditor.py:5061
-#: flatcamEditors/FlatCAMGrbEditor.py:5069
+#: flatcamEditors/FlatCAMGeoEditor.py:899
+#: flatcamEditors/FlatCAMGeoEditor.py:907
+#: flatcamEditors/FlatCAMGrbEditor.py:5093
+#: flatcamEditors/FlatCAMGrbEditor.py:5101
msgid ""
"Flip the selected shape(s) over the X axis.\n"
"Does not create a new shape."
@@ -3113,18 +3090,18 @@ msgstr ""
"Kippen Sie die ausgewählte Form (en) über die X-Achse.\n"
"Erzeugt keine neue Form."
-#: flatcamEditors/FlatCAMGeoEditor.py:904
-#: flatcamEditors/FlatCAMGrbEditor.py:5067 flatcamTools/ToolTransform.py:304
+#: flatcamEditors/FlatCAMGeoEditor.py:905
+#: flatcamEditors/FlatCAMGrbEditor.py:5099 flatcamTools/ToolTransform.py:304
msgid "Flip on Y"
msgstr "Flip auf Y"
-#: flatcamEditors/FlatCAMGeoEditor.py:913
-#: flatcamEditors/FlatCAMGrbEditor.py:5076
+#: flatcamEditors/FlatCAMGeoEditor.py:914
+#: flatcamEditors/FlatCAMGrbEditor.py:5108
msgid "Ref Pt"
msgstr "Ref. Pt"
-#: flatcamEditors/FlatCAMGeoEditor.py:915
-#: flatcamEditors/FlatCAMGrbEditor.py:5078
+#: flatcamEditors/FlatCAMGeoEditor.py:916
+#: flatcamEditors/FlatCAMGrbEditor.py:5110
msgid ""
"Flip the selected shape(s)\n"
"around the point in Point Entry Field.\n"
@@ -3147,13 +3124,13 @@ msgstr ""
"Oder geben Sie die Koordinaten im Format (x, y) in ein\n"
"Punkt-Eingabefeld und klicken Sie auf X (Y) drehen"
-#: flatcamEditors/FlatCAMGeoEditor.py:927
-#: flatcamEditors/FlatCAMGrbEditor.py:5090
+#: flatcamEditors/FlatCAMGeoEditor.py:928
+#: flatcamEditors/FlatCAMGrbEditor.py:5122
msgid "Point:"
msgstr "Punkt:"
-#: flatcamEditors/FlatCAMGeoEditor.py:929
-#: flatcamEditors/FlatCAMGrbEditor.py:5092
+#: flatcamEditors/FlatCAMGeoEditor.py:930
+#: flatcamEditors/FlatCAMGrbEditor.py:5124
msgid ""
"Coordinates in format (x, y) used as reference for mirroring.\n"
"The 'x' in (x, y) will be used when using Flip on X and\n"
@@ -3164,8 +3141,8 @@ msgstr ""
"Das 'x' in (x, y) wird verwendet, wenn Sie bei X und\n"
"Das 'y' in (x, y) wird verwendet, wenn Flip auf Y verwendet wird."
-#: flatcamEditors/FlatCAMGeoEditor.py:941
-#: flatcamEditors/FlatCAMGrbEditor.py:5104 flatcamTools/ToolTransform.py:340
+#: flatcamEditors/FlatCAMGeoEditor.py:942
+#: flatcamEditors/FlatCAMGrbEditor.py:5136 flatcamTools/ToolTransform.py:340
msgid ""
"The point coordinates can be captured by\n"
"left click on canvas together with pressing\n"
@@ -3176,793 +3153,717 @@ msgstr ""
"Shift Taste. Klicken Sie dann auf die Schaltfläche Hinzufügen, um sie "
"einzufügen."
-#: flatcamEditors/FlatCAMGeoEditor.py:1056
-#: flatcamEditors/FlatCAMGrbEditor.py:5229
-msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
-msgstr "[WARNING_NOTCL] Umwandlung abgebrochen. Keine Form ausgewählt."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1077
-#: flatcamEditors/FlatCAMGrbEditor.py:5249
-msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
-msgstr ""
-"[ERROR_NOTCL] Falsches Werteformat für Drehen eingegeben, verwenden Sie eine "
-"Zahl."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1114
-#: flatcamEditors/FlatCAMGrbEditor.py:5292
-msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
-msgstr ""
-"[ERROR_NOTCL] Falsches Werteformat für Skew X eingegeben, verwenden Sie eine "
-"Zahl."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1135
-#: flatcamEditors/FlatCAMGrbEditor.py:5319
-msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
-msgstr ""
-"[ERROR_NOTCL] Falsches Werteformat für Skew Y eingegeben, verwenden Sie eine "
-"Zahl."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1156
-#: flatcamEditors/FlatCAMGrbEditor.py:5346
-msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
-msgstr ""
-"[ERROR_NOTCL] Falsches Wertformat für Waage X eingegeben, verwenden Sie eine "
-"Zahl."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1193
-#: flatcamEditors/FlatCAMGrbEditor.py:5387
-msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
-msgstr ""
-"[ERROR_NOTCL] Falsches Werteformat für Skala Y eingegeben, verwenden Sie "
-"eine Zahl."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1225
-#: flatcamEditors/FlatCAMGrbEditor.py:5425
-msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
-msgstr ""
-"[ERROR_NOTCL] Falsches Wertformat für Offset X eingegeben, verwenden Sie "
-"eine Zahl."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1246
-#: flatcamEditors/FlatCAMGrbEditor.py:5451
-msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
-msgstr ""
-"[ERROR_NOTCL] Falsches Wertformat für Offset Y eingegeben, verwenden Sie "
-"eine Zahl."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1264
-#: flatcamEditors/FlatCAMGrbEditor.py:5474
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
-msgstr ""
-"[WARNING_NOTCL] Keine Form ausgewählt Bitte wählen Sie eine Form zum Drehen "
-"aus!"
+#: flatcamEditors/FlatCAMGeoEditor.py:1058
+#: flatcamEditors/FlatCAMGrbEditor.py:5262
+msgid "Transformation cancelled. No shape selected."
+msgstr "Umwandlung abgebrochen. Keine Form ausgewählt."
#: flatcamEditors/FlatCAMGeoEditor.py:1267
-#: flatcamEditors/FlatCAMGrbEditor.py:5477 flatcamTools/ToolTransform.py:646
+#: flatcamEditors/FlatCAMGrbEditor.py:5508
+msgid "No shape selected. Please Select a shape to rotate!"
+msgstr "Keine Form ausgewählt Bitte wählen Sie eine Form zum Drehen aus!"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1270
+#: flatcamEditors/FlatCAMGrbEditor.py:5511 flatcamTools/ToolTransform.py:646
msgid "Appying Rotate"
msgstr "Anwenden Drehen"
-#: flatcamEditors/FlatCAMGeoEditor.py:1295
-#: flatcamEditors/FlatCAMGrbEditor.py:5510
-msgid "[success] Done. Rotate completed."
-msgstr "[success] Erledigt. Drehen abgeschlossen."
+#: flatcamEditors/FlatCAMGeoEditor.py:1299
+#: flatcamEditors/FlatCAMGrbEditor.py:5545
+msgid "Done. Rotate completed."
+msgstr "Erledigt. Drehen abgeschlossen."
-#: flatcamEditors/FlatCAMGeoEditor.py:1300
-#: flatcamEditors/FlatCAMGrbEditor.py:5513
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
-msgstr ""
-"[ERROR_NOTCL] Aufgrund von %s wurde keine Rotationsbewegung ausgeführt."
+#: flatcamEditors/FlatCAMGeoEditor.py:1305
+msgid "Rotation action was not executed"
+msgstr "Rotationsaktion wurde nicht ausgeführt"
-#: flatcamEditors/FlatCAMGeoEditor.py:1311
-#: flatcamEditors/FlatCAMGrbEditor.py:5529
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
-msgstr ""
-"[WARNING_NOTCL] Keine Form ausgewählt Bitte wähle eine Form zum Umdrehen!"
+#: flatcamEditors/FlatCAMGeoEditor.py:1317
+#: flatcamEditors/FlatCAMGrbEditor.py:5566
+msgid "No shape selected. Please Select a shape to flip!"
+msgstr "Keine Form ausgewählt. Bitte wählen Sie eine Form zum Kippen!"
-#: flatcamEditors/FlatCAMGeoEditor.py:1314
-#: flatcamEditors/FlatCAMGrbEditor.py:5532 flatcamTools/ToolTransform.py:699
+#: flatcamEditors/FlatCAMGeoEditor.py:1320
+#: flatcamEditors/FlatCAMGrbEditor.py:5569 flatcamTools/ToolTransform.py:699
msgid "Applying Flip"
msgstr "Flip anwenden"
-#: flatcamEditors/FlatCAMGeoEditor.py:1344
-#: flatcamEditors/FlatCAMGrbEditor.py:5571
-msgid "[success] Flip on the Y axis done ..."
-msgstr "[success] Flip auf der Y-Achse erledigt ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1351
+#: flatcamEditors/FlatCAMGrbEditor.py:5609 flatcamTools/ToolTransform.py:742
+msgid "Flip on the Y axis done"
+msgstr "Spiegeln Sie die Y-Achse bereit"
-#: flatcamEditors/FlatCAMGeoEditor.py:1347
-#: flatcamEditors/FlatCAMGrbEditor.py:5579
-msgid "[success] Flip on the X axis done ..."
-msgstr "[success] Flip auf der X-Achse erledigt ..."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1357
-#: flatcamEditors/FlatCAMGrbEditor.py:5584
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
-msgstr "[ERROR_NOTCL] Aufgrund von %s wurde die Flip-Aktion nicht ausgeführt."
+#: flatcamEditors/FlatCAMGeoEditor.py:1355
+#: flatcamEditors/FlatCAMGrbEditor.py:5618 flatcamTools/ToolTransform.py:752
+msgid "Flip on the X axis done"
+msgstr "Spiegeln Sie die X-Achse bereit"
#: flatcamEditors/FlatCAMGeoEditor.py:1366
-#: flatcamEditors/FlatCAMGrbEditor.py:5599
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
-msgstr ""
-"[WARNING_NOTCL] Keine Form ausgewählt. Bitte wählen Sie eine Form zum "
-"Scheren / Schrägstellen!"
+msgid "Flip action was not executed"
+msgstr "Spiegeln-Aktion wurde nicht ausgeführt"
-#: flatcamEditors/FlatCAMGeoEditor.py:1369
-#: flatcamEditors/FlatCAMGrbEditor.py:5602 flatcamTools/ToolTransform.py:772
+#: flatcamEditors/FlatCAMGeoEditor.py:1376
+#: flatcamEditors/FlatCAMGrbEditor.py:5640
+msgid "No shape selected. Please Select a shape to shear/skew!"
+msgstr ""
+"Keine Form ausgewählt. Bitte wählen Sie eine Form zum Scheren / "
+"Schrägstellen!"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1379
+#: flatcamEditors/FlatCAMGrbEditor.py:5643 flatcamTools/ToolTransform.py:772
msgid "Applying Skew"
-msgstr "Anwenden von Skew"
+msgstr "Schräglauf anwenden"
-#: flatcamEditors/FlatCAMGeoEditor.py:1394
-#: flatcamEditors/FlatCAMGrbEditor.py:5637 flatcamTools/ToolTransform.py:803
-#, python-format
-msgid "[success] Skew on the %s axis done ..."
-msgstr "[success] Neigung auf der %s Achse abgeschlossen ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1405
+#: flatcamEditors/FlatCAMGrbEditor.py:5680
+msgid "Skew on the X axis done"
+msgstr "Schrägstellung auf der X-Achse erfolgt"
-#: flatcamEditors/FlatCAMGeoEditor.py:1398
-#: flatcamEditors/FlatCAMGrbEditor.py:5641
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
-msgstr ""
-"[ERROR_NOTCL] Aufgrund von %s wurde die Neigung-Aktion nicht ausgeführt."
+#: flatcamEditors/FlatCAMGeoEditor.py:1408
+#: flatcamEditors/FlatCAMGrbEditor.py:5683
+msgid "Skew on the Y axis done"
+msgstr "Schrägstellung auf der Y-Achse erfolgt"
-#: flatcamEditors/FlatCAMGeoEditor.py:1409
-#: flatcamEditors/FlatCAMGrbEditor.py:5660
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
-msgstr ""
-"[WARNING_NOTCL] Keine Form ausgewählt. Bitte wählen Sie eine zu skalierende "
-"Form!"
+#: flatcamEditors/FlatCAMGeoEditor.py:1413
+msgid "Skew action was not executed"
+msgstr "Die Versatzaktion wurde nicht ausgeführt"
-#: flatcamEditors/FlatCAMGeoEditor.py:1412
-#: flatcamEditors/FlatCAMGrbEditor.py:5663 flatcamTools/ToolTransform.py:823
+#: flatcamEditors/FlatCAMGeoEditor.py:1425
+#: flatcamEditors/FlatCAMGrbEditor.py:5708
+msgid "No shape selected. Please Select a shape to scale!"
+msgstr "Keine Form ausgewählt. Bitte wählen Sie eine zu skalierende Form!"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1428
+#: flatcamEditors/FlatCAMGrbEditor.py:5711 flatcamTools/ToolTransform.py:823
msgid "Applying Scale"
msgstr "Maßstab anwenden"
-#: flatcamEditors/FlatCAMGeoEditor.py:1445
-#: flatcamEditors/FlatCAMGrbEditor.py:5701
-#, python-format
-msgid "[success] Scale on the %s axis done ..."
-msgstr "[success] Skalieren auf der %s Achse fertig ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1463
+#: flatcamEditors/FlatCAMGrbEditor.py:5751
+msgid "Scale on the X axis done"
+msgstr "Skalieren auf der X-Achse erledigt"
-#: flatcamEditors/FlatCAMGeoEditor.py:1448
-#: flatcamEditors/FlatCAMGrbEditor.py:5704
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
-msgstr ""
-"[ERROR_NOTCL] Aufgrund von %s wurde die Skalieren Aktion nicht ausgeführt."
+#: flatcamEditors/FlatCAMGeoEditor.py:1466
+#: flatcamEditors/FlatCAMGrbEditor.py:5754
+msgid "Scale on the Y axis done"
+msgstr "Skalieren auf der Y-Achse erledigt"
-#: flatcamEditors/FlatCAMGeoEditor.py:1457
-#: flatcamEditors/FlatCAMGrbEditor.py:5717
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
-msgstr ""
-"[WARNING_NOTCL] Keine Form ausgewählt. Bitte wählen Sie eine Form zum "
-"Versetzen!"
+#: flatcamEditors/FlatCAMGeoEditor.py:1470
+msgid "Scale action was not executed"
+msgstr "Skalierungsaktion wurde nicht ausgeführt"
-#: flatcamEditors/FlatCAMGeoEditor.py:1460
-#: flatcamEditors/FlatCAMGrbEditor.py:5720 flatcamTools/ToolTransform.py:878
+#: flatcamEditors/FlatCAMGeoEditor.py:1480
+#: flatcamEditors/FlatCAMGrbEditor.py:5772
+msgid "No shape selected. Please Select a shape to offset!"
+msgstr "Keine Form ausgewählt. Bitte wählen Sie eine zu versetzende Form!"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1483
+#: flatcamEditors/FlatCAMGrbEditor.py:5775 flatcamTools/ToolTransform.py:878
msgid "Applying Offset"
msgstr "Offsetdruck anwenden"
-#: flatcamEditors/FlatCAMGeoEditor.py:1471
-#: flatcamEditors/FlatCAMGrbEditor.py:5742
-#, python-format
-msgid "[success] Offset on the %s axis done ..."
-msgstr "[success] Offsetdruck auf der %s Achse fertiggestellt ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1496
+#: flatcamEditors/FlatCAMGrbEditor.py:5799
+msgid "Offset on the X axis done"
+msgstr "Versatz auf der X-Achse erfolgt"
-#: flatcamEditors/FlatCAMGeoEditor.py:1475
-#: flatcamEditors/FlatCAMGrbEditor.py:5746
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
-msgstr ""
-"[ERROR_NOTCL] Aufgrund von %s wurde die Offsetdruck Aktion nicht ausgeführt."
+#: flatcamEditors/FlatCAMGeoEditor.py:1499
+#: flatcamEditors/FlatCAMGrbEditor.py:5802
+msgid "Offset on the Y axis done"
+msgstr "Versatz auf der Y-Achse erfolgt"
-#: flatcamEditors/FlatCAMGeoEditor.py:1479
-#: flatcamEditors/FlatCAMGrbEditor.py:5750
+#: flatcamEditors/FlatCAMGeoEditor.py:1504
+msgid "Offset action was not executed"
+msgstr "Offsetaktion wurde nicht ausgeführt"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1508
+#: flatcamEditors/FlatCAMGrbEditor.py:5811
msgid "Rotate ..."
msgstr "Drehen ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1480
-#: flatcamEditors/FlatCAMGeoEditor.py:1537
-#: flatcamEditors/FlatCAMGeoEditor.py:1554
-#: flatcamEditors/FlatCAMGrbEditor.py:5751
-#: flatcamEditors/FlatCAMGrbEditor.py:5808
-#: flatcamEditors/FlatCAMGrbEditor.py:5825
+#: flatcamEditors/FlatCAMGeoEditor.py:1509
+#: flatcamEditors/FlatCAMGeoEditor.py:1564
+#: flatcamEditors/FlatCAMGeoEditor.py:1581
+#: flatcamEditors/FlatCAMGrbEditor.py:5812
+#: flatcamEditors/FlatCAMGrbEditor.py:5867
+#: flatcamEditors/FlatCAMGrbEditor.py:5884
msgid "Enter an Angle Value (degrees)"
msgstr "Geben Sie einen Winkelwert (Grad) ein"
-#: flatcamEditors/FlatCAMGeoEditor.py:1489
-#: flatcamEditors/FlatCAMGrbEditor.py:5760
-msgid "[success] Geometry shape rotate done..."
-msgstr "[success] Geometrieform drehen fertig ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1518
+#: flatcamEditors/FlatCAMGrbEditor.py:5821
+msgid "Geometry shape rotate done"
+msgstr "Geometrieform drehen fertig"
-#: flatcamEditors/FlatCAMGeoEditor.py:1494
-#: flatcamEditors/FlatCAMGrbEditor.py:5765
-msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
-msgstr "[WARNING_NOTCL] Geometrieform drehen abgebrochen ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1522
+#: flatcamEditors/FlatCAMGrbEditor.py:5825
+msgid "Geometry shape rotate cancelled"
+msgstr "Geometrieform drehen abgebrochen"
-#: flatcamEditors/FlatCAMGeoEditor.py:1500
-#: flatcamEditors/FlatCAMGrbEditor.py:5771
+#: flatcamEditors/FlatCAMGeoEditor.py:1527
+#: flatcamEditors/FlatCAMGrbEditor.py:5830
msgid "Offset on X axis ..."
-msgstr "Versatz auf der X-Achse ..."
+msgstr "Versatz auf der X-Achse"
-#: flatcamEditors/FlatCAMGeoEditor.py:1501
-#: flatcamEditors/FlatCAMGeoEditor.py:1520
-#: flatcamEditors/FlatCAMGrbEditor.py:5772
-#: flatcamEditors/FlatCAMGrbEditor.py:5791
+#: flatcamEditors/FlatCAMGeoEditor.py:1528
+#: flatcamEditors/FlatCAMGeoEditor.py:1547
+#: flatcamEditors/FlatCAMGrbEditor.py:5831
+#: flatcamEditors/FlatCAMGrbEditor.py:5850
msgid "Enter a distance Value"
msgstr "Geben Sie einen Abstandswert ein"
-#: flatcamEditors/FlatCAMGeoEditor.py:1510
-#: flatcamEditors/FlatCAMGrbEditor.py:5781
-msgid "[success] Geometry shape offset on X axis done..."
-msgstr "[success] Geometrieformversatz auf der X-Achse erfolgt ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1537
+#: flatcamEditors/FlatCAMGrbEditor.py:5840
+msgid "Geometry shape offset on X axis done"
+msgstr "Geometrieformversatz auf der X-Achse erfolgt"
-#: flatcamEditors/FlatCAMGeoEditor.py:1514
-#: flatcamEditors/FlatCAMGrbEditor.py:5785
-msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
-msgstr "[WARNING_NOTCL] Geometrieformversatz X abgebrochen ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1541
+#: flatcamEditors/FlatCAMGrbEditor.py:5844
+msgid "Geometry shape offset X cancelled"
+msgstr "[WARNING_NOTCL] Geometrieformversatz X abgebrochen"
-#: flatcamEditors/FlatCAMGeoEditor.py:1519
-#: flatcamEditors/FlatCAMGrbEditor.py:5790
+#: flatcamEditors/FlatCAMGeoEditor.py:1546
+#: flatcamEditors/FlatCAMGrbEditor.py:5849
msgid "Offset on Y axis ..."
-msgstr "Versatz auf der Y-Achse ..."
+msgstr "Versatz auf der Y-Achse"
-#: flatcamEditors/FlatCAMGeoEditor.py:1529
-#: flatcamEditors/FlatCAMGrbEditor.py:5800
-msgid "[success] Geometry shape offset on Y axis done..."
-msgstr "[success] Geometrieformversatz auf Y-Achse erfolgt ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1556
+#: flatcamEditors/FlatCAMGrbEditor.py:5859
+msgid "Geometry shape offset on Y axis done"
+msgstr "Geometrieformversatz auf Y-Achse erfolgt"
-#: flatcamEditors/FlatCAMGeoEditor.py:1533
-#: flatcamEditors/FlatCAMGrbEditor.py:5804
-msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
-msgstr "[WARNING_NOTCL] Geometrieformversatz Y abgebrochen ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1560
+msgid "Geometry shape offset on Y axis canceled"
+msgstr "Geometrieformversatz auf Y-Achse erfolgt"
-#: flatcamEditors/FlatCAMGeoEditor.py:1536
-#: flatcamEditors/FlatCAMGrbEditor.py:5807
+#: flatcamEditors/FlatCAMGeoEditor.py:1563
+#: flatcamEditors/FlatCAMGrbEditor.py:5866
msgid "Skew on X axis ..."
msgstr "Neigung auf der X-Achse ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1546
-#: flatcamEditors/FlatCAMGrbEditor.py:5817
-msgid "[success] Geometry shape skew on X axis done..."
-msgstr "[success] Geometrieformversatz auf X-Achse ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1573
+#: flatcamEditors/FlatCAMGrbEditor.py:5876
+msgid "Geometry shape skew on X axis done"
+msgstr "Geometrieformversatz auf X-Achse"
-#: flatcamEditors/FlatCAMGeoEditor.py:1550
-#: flatcamEditors/FlatCAMGrbEditor.py:5821
-msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
-msgstr "[WARNING_NOTCL] Geometrieformversatz X abgebrochen ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1577
+msgid "Geometry shape skew on X axis canceled"
+msgstr "Geometrieformversatz auf X-Achse"
-#: flatcamEditors/FlatCAMGeoEditor.py:1553
-#: flatcamEditors/FlatCAMGrbEditor.py:5824
+#: flatcamEditors/FlatCAMGeoEditor.py:1580
+#: flatcamEditors/FlatCAMGrbEditor.py:5883
msgid "Skew on Y axis ..."
msgstr "Neigung auf der Y-Achse ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1563
-#: flatcamEditors/FlatCAMGrbEditor.py:5834
-msgid "[success] Geometry shape skew on Y axis done..."
-msgstr "[success] Geometrieformversatz auf Y-Achse erfolgt ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1590
+#: flatcamEditors/FlatCAMGrbEditor.py:5893
+msgid "Geometry shape skew on Y axis done"
+msgstr "Geometrieformversatz auf Y-Achse erfolgt"
-#: flatcamEditors/FlatCAMGeoEditor.py:1567
-#: flatcamEditors/FlatCAMGrbEditor.py:5838
-msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
-msgstr "[WARNING_NOTCL] Geometrieformversatz Y abgebrochen ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1594
+msgid "Geometry shape skew on Y axis canceled"
+msgstr "Geometrieformversatz auf Y-Achse erfolgt"
-#: flatcamEditors/FlatCAMGeoEditor.py:1931
-#: flatcamEditors/FlatCAMGeoEditor.py:1982
-#: flatcamEditors/FlatCAMGrbEditor.py:1385
-#: flatcamEditors/FlatCAMGrbEditor.py:1454
+#: flatcamEditors/FlatCAMGeoEditor.py:1958
+#: flatcamEditors/FlatCAMGeoEditor.py:2010
+#: flatcamEditors/FlatCAMGrbEditor.py:1396
+#: flatcamEditors/FlatCAMGrbEditor.py:1466
msgid "Click on Center point ..."
msgstr "Klicken Sie auf Mittelpunkt."
-#: flatcamEditors/FlatCAMGeoEditor.py:1938
-#: flatcamEditors/FlatCAMGrbEditor.py:1393
+#: flatcamEditors/FlatCAMGeoEditor.py:1965
+#: flatcamEditors/FlatCAMGrbEditor.py:1404
msgid "Click on Perimeter point to complete ..."
msgstr "Klicken Sie auf Umfangspunkt, um den Vorgang abzuschließen."
-#: flatcamEditors/FlatCAMGeoEditor.py:1967
-msgid "[success] Done. Adding Circle completed."
-msgstr "[success] Erledigt. Hinzufügen des Kreises abgeschlossen."
+#: flatcamEditors/FlatCAMGeoEditor.py:1995
+msgid "Done. Adding Circle completed."
+msgstr "Erledigt. Hinzufügen des Kreises abgeschlossen."
-#: flatcamEditors/FlatCAMGeoEditor.py:2002
-#: flatcamEditors/FlatCAMGrbEditor.py:1486
+#: flatcamEditors/FlatCAMGeoEditor.py:2030
+#: flatcamEditors/FlatCAMGrbEditor.py:1498
msgid "Click on Start point ..."
msgstr "Klicken Sie auf Startpunkt ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2004
-#: flatcamEditors/FlatCAMGrbEditor.py:1488
+#: flatcamEditors/FlatCAMGeoEditor.py:2032
+#: flatcamEditors/FlatCAMGrbEditor.py:1500
msgid "Click on Point3 ..."
msgstr "Klicken Sie auf Punkt3 ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2006
-#: flatcamEditors/FlatCAMGrbEditor.py:1490
+#: flatcamEditors/FlatCAMGeoEditor.py:2034
+#: flatcamEditors/FlatCAMGrbEditor.py:1502
msgid "Click on Stop point ..."
msgstr "Klicken Sie auf Haltepunkt ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2011
-#: flatcamEditors/FlatCAMGrbEditor.py:1495
+#: flatcamEditors/FlatCAMGeoEditor.py:2039
+#: flatcamEditors/FlatCAMGrbEditor.py:1507
msgid "Click on Stop point to complete ..."
msgstr "Klicken Sie auf Stopp, um den Vorgang abzuschließen."
-#: flatcamEditors/FlatCAMGeoEditor.py:2013
-#: flatcamEditors/FlatCAMGrbEditor.py:1497
+#: flatcamEditors/FlatCAMGeoEditor.py:2041
+#: flatcamEditors/FlatCAMGrbEditor.py:1509
msgid "Click on Point2 to complete ..."
msgstr "Klicken Sie auf Punkt2, um den Vorgang abzuschließen."
-#: flatcamEditors/FlatCAMGeoEditor.py:2015
-#: flatcamEditors/FlatCAMGrbEditor.py:1499
+#: flatcamEditors/FlatCAMGeoEditor.py:2043
+#: flatcamEditors/FlatCAMGrbEditor.py:1511
msgid "Click on Center point to complete ..."
msgstr "Klicken Sie auf Mittelpunkt, um den Vorgang abzuschließen."
-#: flatcamEditors/FlatCAMGeoEditor.py:2027
-#: flatcamEditors/FlatCAMGrbEditor.py:1511
+#: flatcamEditors/FlatCAMGeoEditor.py:2055
+#: flatcamEditors/FlatCAMGrbEditor.py:1523
#, python-format
msgid "Direction: %s"
msgstr "Richtung: %s"
-#: flatcamEditors/FlatCAMGeoEditor.py:2037
-#: flatcamEditors/FlatCAMGrbEditor.py:1521
+#: flatcamEditors/FlatCAMGeoEditor.py:2065
+#: flatcamEditors/FlatCAMGrbEditor.py:1533
msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
msgstr "Modus: Start -> Stopp -> Zentrieren. Klicken Sie auf Startpunkt ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2040
-#: flatcamEditors/FlatCAMGrbEditor.py:1524
+#: flatcamEditors/FlatCAMGeoEditor.py:2068
+#: flatcamEditors/FlatCAMGrbEditor.py:1536
msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
msgstr "Modus: Punkt 1 -> Punkt 3 -> Punkt 2. Klicken Sie auf Punkt1 ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2043
-#: flatcamEditors/FlatCAMGrbEditor.py:1527
+#: flatcamEditors/FlatCAMGeoEditor.py:2071
+#: flatcamEditors/FlatCAMGrbEditor.py:1539
msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
msgstr "Modus: Mitte -> Start -> Stopp. Klicken Sie auf Mittelpunkt."
-#: flatcamEditors/FlatCAMGeoEditor.py:2181
-msgid "[success] Done. Arc completed."
-msgstr "[success] Erledigt. Arc abgeschlossen."
+#: flatcamEditors/FlatCAMGeoEditor.py:2210
+msgid "Done. Arc completed."
+msgstr "Erledigt. Arc abgeschlossen."
-#: flatcamEditors/FlatCAMGeoEditor.py:2200
-#: flatcamEditors/FlatCAMGeoEditor.py:2253
-#: flatcamEditors/FlatCAMGeoEditor.py:2622
+#: flatcamEditors/FlatCAMGeoEditor.py:2229
+#: flatcamEditors/FlatCAMGeoEditor.py:2283
+#: flatcamEditors/FlatCAMGeoEditor.py:2656
msgid "Click on 1st corner ..."
msgstr "Klicken Sie auf die 1. Ecke ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2206
+#: flatcamEditors/FlatCAMGeoEditor.py:2235
msgid "Click on opposite corner to complete ..."
msgstr ""
"Klicken Sie auf die gegenüberliegende Ecke, um den Vorgang abzuschließen."
-#: flatcamEditors/FlatCAMGeoEditor.py:2234
-msgid "[success] Done. Rectangle completed."
-msgstr "[success] Erledigt. Rechteck fertiggestellt."
+#: flatcamEditors/FlatCAMGeoEditor.py:2264
+msgid "Done. Rectangle completed."
+msgstr "Erledigt. Rechteck fertiggestellt."
-#: flatcamEditors/FlatCAMGeoEditor.py:2260
+#: flatcamEditors/FlatCAMGeoEditor.py:2290
msgid "Click on next Point or click right mouse button to complete ..."
msgstr ""
"Klicken Sie auf den nächsten Punkt oder klicken Sie mit der rechten "
"Maustaste, um den Vorgang abzuschließen."
-#: flatcamEditors/FlatCAMGeoEditor.py:2288
-msgid "[success] Done. Polygon completed."
-msgstr "[success] Erledigt. Polygon fertiggestellt."
+#: flatcamEditors/FlatCAMGeoEditor.py:2319
+msgid "Done. Polygon completed."
+msgstr "Erledigt. Polygon fertiggestellt."
-#: flatcamEditors/FlatCAMGeoEditor.py:2298
-#: flatcamEditors/FlatCAMGeoEditor.py:2344
-#: flatcamEditors/FlatCAMGrbEditor.py:1075
-#: flatcamEditors/FlatCAMGrbEditor.py:1276
+#: flatcamEditors/FlatCAMGeoEditor.py:2329
+#: flatcamEditors/FlatCAMGeoEditor.py:2375
+#: flatcamEditors/FlatCAMGrbEditor.py:1085
+#: flatcamEditors/FlatCAMGrbEditor.py:1287
msgid "Backtracked one point ..."
msgstr "Einen Punkt zurückverfolgt ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2326
+#: flatcamEditors/FlatCAMGeoEditor.py:2357
msgid "[success] Done. Path completed."
msgstr "[success] Erledigt. Pfad abgeschlossen."
-#: flatcamEditors/FlatCAMGeoEditor.py:2443
-msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
-msgstr ""
-"[WARNING_NOTCL] Bewegen: Keine Form ausgewählt. Wähle eine Form zum Bewegen "
-"aus ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:2475
+msgid "MOVE: No shape selected. Select a shape to move"
+msgstr "Bewegen: Keine Form ausgewählt. Wähle eine Form zum Bewegen aus"
-#: flatcamEditors/FlatCAMGeoEditor.py:2445
-#: flatcamEditors/FlatCAMGeoEditor.py:2457
+#: flatcamEditors/FlatCAMGeoEditor.py:2477
+#: flatcamEditors/FlatCAMGeoEditor.py:2489
msgid " MOVE: Click on reference point ..."
msgstr " Bewegen: Referenzpunkt anklicken ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2448
+#: flatcamEditors/FlatCAMGeoEditor.py:2480
msgid " Click on destination point ..."
msgstr " Klicken Sie auf den Zielpunkt ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2482
-msgid "[success] Done. Geometry(s) Move completed."
-msgstr "[success] Erledigt. Geometrie(n) Bewegung abgeschlossen."
+#: flatcamEditors/FlatCAMGeoEditor.py:2515
+msgid "Done. Geometry(s) Move completed."
+msgstr "Erledigt. Geometrie(n) Bewegung abgeschlossen."
-#: flatcamEditors/FlatCAMGeoEditor.py:2602
-msgid "[success] Done. Geometry(s) Copy completed."
-msgstr "[success] Erledigt. Geometrie(n) Kopieren abgeschlossen."
+#: flatcamEditors/FlatCAMGeoEditor.py:2636
+msgid "Done. Geometry(s) Copy completed."
+msgstr "Erledigt. Geometrie(n) Kopieren abgeschlossen."
-#: flatcamEditors/FlatCAMGeoEditor.py:2638
-#, python-format
+#: flatcamEditors/FlatCAMGeoEditor.py:2673
msgid ""
-"[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
-"supported. Error: %s"
+"Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
+"Error"
msgstr ""
-"[ERROR] Schrift wird nicht unterstützt. Es werden nur Regular, Bold, Italic "
-"und BoldItalic unterstützt. Error: %s"
+"Schrift wird nicht unterstützt. Es werden nur Regular, Bold, Italic und "
+"BoldItalic unterstützt. Error"
-#: flatcamEditors/FlatCAMGeoEditor.py:2645
-msgid "[WARNING_NOTCL] No text to add."
-msgstr "[WARNING_NOTCL] Kein Text zum Hinzufügen."
+#: flatcamEditors/FlatCAMGeoEditor.py:2681
+msgid "No text to add."
+msgstr "Kein Text zum Hinzufügen."
-#: flatcamEditors/FlatCAMGeoEditor.py:2651
-msgid "[success] Done. Adding Text completed."
-msgstr "[success] Erledigt. Hinzufügen von Text abgeschlossen."
+#: flatcamEditors/FlatCAMGeoEditor.py:2688
+msgid " Done. Adding Text completed."
+msgstr "Erledigt. Hinzufügen von Text abgeschlossen."
-#: flatcamEditors/FlatCAMGeoEditor.py:2679
+#: flatcamEditors/FlatCAMGeoEditor.py:2716
msgid "Create buffer geometry ..."
msgstr "Puffergeometrie erstellen ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2690
-#: flatcamEditors/FlatCAMGeoEditor.py:2718
-#: flatcamEditors/FlatCAMGeoEditor.py:2746
-msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
-msgstr "[WARNING_NOTCL] Puffer abgebrochen. Keine Form ausgewählt."
+#: flatcamEditors/FlatCAMGeoEditor.py:2728
+#: flatcamEditors/FlatCAMGeoEditor.py:2758
+#: flatcamEditors/FlatCAMGeoEditor.py:2788
+msgid "Buffer cancelled. No shape selected."
+msgstr "Puffer abgebrochen. Keine Form ausgewählt."
-#: flatcamEditors/FlatCAMGeoEditor.py:2714
-#: flatcamEditors/FlatCAMGrbEditor.py:4644
-msgid "[success] Done. Buffer Tool completed."
-msgstr "[success] Erledigt. Pufferwerkzeug abgeschlossen."
+#: flatcamEditors/FlatCAMGeoEditor.py:2753
+#: flatcamEditors/FlatCAMGrbEditor.py:4674
+msgid "Done. Buffer Tool completed."
+msgstr "Erledigt. Pufferwerkzeug abgeschlossen."
-#: flatcamEditors/FlatCAMGeoEditor.py:2742
-msgid "[success] Done. Buffer Int Tool completed."
-msgstr "[success] Erledigt. Innenpufferwerkzeug abgeschlossen."
+#: flatcamEditors/FlatCAMGeoEditor.py:2783
+msgid "Done. Buffer Int Tool completed."
+msgstr "Erledigt. Innenpufferwerkzeug abgeschlossen."
-#: flatcamEditors/FlatCAMGeoEditor.py:2770
-msgid "[success] Done. Buffer Ext Tool completed."
-msgstr "[success] Erledigt. Außenpufferwerkzeug abgeschlossen."
+#: flatcamEditors/FlatCAMGeoEditor.py:2813
+msgid "Done. Buffer Ext Tool completed."
+msgstr "Erledigt. Außenpufferwerkzeug abgeschlossen."
-#: flatcamEditors/FlatCAMGeoEditor.py:2805
-#: flatcamEditors/FlatCAMGrbEditor.py:2052
+#: flatcamEditors/FlatCAMGeoEditor.py:2848
+#: flatcamEditors/FlatCAMGrbEditor.py:2068
msgid "Select a shape to act as deletion area ..."
msgstr "Wählen Sie eine Form als Löschbereich aus ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2807
-#: flatcamEditors/FlatCAMGeoEditor.py:2826
-#: flatcamEditors/FlatCAMGeoEditor.py:2832
-#: flatcamEditors/FlatCAMGrbEditor.py:2054
+#: flatcamEditors/FlatCAMGeoEditor.py:2850
+#: flatcamEditors/FlatCAMGeoEditor.py:2869
+#: flatcamEditors/FlatCAMGeoEditor.py:2875
+#: flatcamEditors/FlatCAMGrbEditor.py:2070
msgid "Click to pick-up the erase shape..."
msgstr "Klicken Sie, um die Löschform aufzunehmen ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2836
-#: flatcamEditors/FlatCAMGrbEditor.py:2111
+#: flatcamEditors/FlatCAMGeoEditor.py:2879
+#: flatcamEditors/FlatCAMGrbEditor.py:2127
msgid "Click to erase ..."
msgstr "Klicken zum Löschen ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2865
-#: flatcamEditors/FlatCAMGrbEditor.py:2144
-msgid "[success] Done. Eraser tool action completed."
-msgstr "[success] Erledigt. Radiergummi-Aktion abgeschlossen."
+#: flatcamEditors/FlatCAMGeoEditor.py:2909
+#: flatcamEditors/FlatCAMGrbEditor.py:2161
+msgid "Done. Eraser tool action completed."
+msgstr "Erledigt. Radiergummi-Aktion abgeschlossen."
-#: flatcamEditors/FlatCAMGeoEditor.py:2908
+#: flatcamEditors/FlatCAMGeoEditor.py:2952
msgid "Create Paint geometry ..."
msgstr "Malen geometrie erstellen ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2922
-#: flatcamEditors/FlatCAMGrbEditor.py:2295
+#: flatcamEditors/FlatCAMGeoEditor.py:2966
+#: flatcamEditors/FlatCAMGrbEditor.py:2312
msgid "Shape transformations ..."
msgstr "Formtransformationen ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:3500
-#, python-brace-format
-msgid ""
-"[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
-msgstr ""
-"[WARNING_NOTCL] Bearbeiten von MultiGeo-Geometrie, Werkzeug: {tool} mit "
-"Durchmesser: {dia}"
+#: flatcamEditors/FlatCAMGeoEditor.py:3545
+msgid "Editing MultiGeo Geometry, tool"
+msgstr "Bearbeiten von MultiGeo Geometry, Werkzeug"
-#: flatcamEditors/FlatCAMGeoEditor.py:3872
-msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
-msgstr "[WARNING_NOTCL] Kopieren abgebrochen. Keine Form ausgewählt."
+#: flatcamEditors/FlatCAMGeoEditor.py:3547
+msgid "with diameter"
+msgstr "mit Durchmesser"
-#: flatcamEditors/FlatCAMGeoEditor.py:3879 flatcamGUI/FlatCAMGUI.py:2882
+#: flatcamEditors/FlatCAMGeoEditor.py:3924
+msgid "Copy cancelled. No shape selected."
+msgstr "Kopieren abgebrochen. Keine Form ausgewählt."
+
+#: flatcamEditors/FlatCAMGeoEditor.py:3931 flatcamGUI/FlatCAMGUI.py:2882
#: flatcamGUI/FlatCAMGUI.py:2928 flatcamGUI/FlatCAMGUI.py:2946
#: flatcamGUI/FlatCAMGUI.py:3077 flatcamGUI/FlatCAMGUI.py:3089
#: flatcamGUI/FlatCAMGUI.py:3123 flatcamGUI/FlatCAMGUI.py:3180
msgid "Click on target point."
msgstr "Klicken Sie auf den Zielpunkt."
-#: flatcamEditors/FlatCAMGeoEditor.py:4123
-#: flatcamEditors/FlatCAMGeoEditor.py:4158
-msgid ""
-"[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
-"Intersection."
+#: flatcamEditors/FlatCAMGeoEditor.py:4175
+#: flatcamEditors/FlatCAMGeoEditor.py:4210
+msgid "A selection of at least 2 geo items is required to do Intersection."
msgstr ""
-"[WARNING_NOTCL] Eine Auswahl von mindestens 2 Geo-Elementen ist "
-"erforderlich, um die Kreuzung durchzuführen."
+"Eine Auswahl von mindestens 2 Geo-Elementen ist erforderlich, um die "
+"Kreuzung durchzuführen."
-#: flatcamEditors/FlatCAMGeoEditor.py:4244
-#: flatcamEditors/FlatCAMGeoEditor.py:4344
+#: flatcamEditors/FlatCAMGeoEditor.py:4296
+#: flatcamEditors/FlatCAMGeoEditor.py:4405
msgid ""
-"[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to "
-"generate an 'inside' shape"
+"Negative buffer value is not accepted. Use Buffer interior to generate an "
+"'inside' shape"
msgstr ""
-"[ERROR_NOTCL] Negativer Pufferwert wird nicht akzeptiert. Verwenden Sie den "
+"Negativer Pufferwert wird nicht akzeptiert. Verwenden Sie den "
"Pufferinnenraum, um eine Innenform zu erzeugen"
-#: flatcamEditors/FlatCAMGeoEditor.py:4253
-#: flatcamEditors/FlatCAMGeoEditor.py:4305
-#: flatcamEditors/FlatCAMGeoEditor.py:4352
-msgid "[WARNING_NOTCL] Nothing selected for buffering."
-msgstr "[WARNING_NOTCL] Nichts ist für die Pufferung ausgewählt."
+#: flatcamEditors/FlatCAMGeoEditor.py:4306
+#: flatcamEditors/FlatCAMGeoEditor.py:4362
+#: flatcamEditors/FlatCAMGeoEditor.py:4414
+msgid "Nothing selected for buffering."
+msgstr "Nichts ist für die Pufferung ausgewählt."
-#: flatcamEditors/FlatCAMGeoEditor.py:4257
-#: flatcamEditors/FlatCAMGeoEditor.py:4309
-#: flatcamEditors/FlatCAMGeoEditor.py:4356
-msgid "[WARNING_NOTCL] Invalid distance for buffering."
-msgstr "[WARNING_NOTCL] Ungültige Entfernung zum Puffern."
+#: flatcamEditors/FlatCAMGeoEditor.py:4311
+#: flatcamEditors/FlatCAMGeoEditor.py:4367
+#: flatcamEditors/FlatCAMGeoEditor.py:4419
+msgid "Invalid distance for buffering."
+msgstr "Ungültige Entfernung zum Puffern."
-#: flatcamEditors/FlatCAMGeoEditor.py:4280
-#: flatcamEditors/FlatCAMGeoEditor.py:4375
-msgid ""
-"[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
+#: flatcamEditors/FlatCAMGeoEditor.py:4335
+#: flatcamEditors/FlatCAMGeoEditor.py:4439
+msgid "Failed, the result is empty. Choose a different buffer value."
msgstr ""
-"[ERROR_NOTCL] Fehlgeschlagen, das Ergebnis ist leer. Wählen Sie einen "
-"anderen Pufferwert."
+"Fehlgeschlagen, das Ergebnis ist leer. Wählen Sie einen anderen Pufferwert."
-#: flatcamEditors/FlatCAMGeoEditor.py:4290
-msgid "[success] Full buffer geometry created."
-msgstr "[success] Volle Puffergeometrie erstellt."
+#: flatcamEditors/FlatCAMGeoEditor.py:4346
+msgid "Full buffer geometry created."
+msgstr "Volle Puffergeometrie erstellt."
-#: flatcamEditors/FlatCAMGeoEditor.py:4297
-msgid "[ERROR_NOTCL] Negative buffer value is not accepted."
-msgstr "[ERROR_NOTCL] Negativer Pufferwert wird nicht akzeptiert."
+#: flatcamEditors/FlatCAMGeoEditor.py:4353
+msgid "Negative buffer value is not accepted."
+msgstr "Negativer Pufferwert wird nicht akzeptiert."
-#: flatcamEditors/FlatCAMGeoEditor.py:4328
-msgid ""
-"[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
+#: flatcamEditors/FlatCAMGeoEditor.py:4387
+msgid "Failed, the result is empty. Choose a smaller buffer value."
msgstr ""
-"[ERROR_NOTCL] Fehlgeschlagen, das Ergebnis ist leer. Wählen Sie einen "
-"kleineren Pufferwert."
+"Fehlgeschlagen, das Ergebnis ist leer. Wählen Sie einen kleineren Pufferwert."
-#: flatcamEditors/FlatCAMGeoEditor.py:4338
-msgid "[success] Interior buffer geometry created."
-msgstr "[success] Innere Puffergeometrie erstellt."
+#: flatcamEditors/FlatCAMGeoEditor.py:4398
+msgid "Interior buffer geometry created."
+msgstr "Innere Puffergeometrie erstellt."
-#: flatcamEditors/FlatCAMGeoEditor.py:4385
-msgid "[success] Exterior buffer geometry created."
-msgstr "[success] Außenpuffergeometrie erstellt."
+#: flatcamEditors/FlatCAMGeoEditor.py:4450
+msgid "Exterior buffer geometry created."
+msgstr "Außenpuffergeometrie erstellt."
-#: flatcamEditors/FlatCAMGeoEditor.py:4449
-msgid "[WARNING_NOTCL] Nothing selected for painting."
-msgstr "[WARNING_NOTCL] Nichts zum Malen ausgewählt."
+#: flatcamEditors/FlatCAMGeoEditor.py:4515
+msgid "Nothing selected for painting."
+msgstr "Nichts zum Malen ausgewählt."
-#: flatcamEditors/FlatCAMGeoEditor.py:4455
-msgid "[WARNING] Invalid value for {}"
-msgstr "[WARNING] Ungültiger Wert für {}"
+#: flatcamEditors/FlatCAMGeoEditor.py:4522
+msgid "Invalid value for"
+msgstr "Ungültiger Wert für"
-#: flatcamEditors/FlatCAMGeoEditor.py:4461
-msgid ""
-"[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
-"(100%)."
+#: flatcamEditors/FlatCAMGeoEditor.py:4528
+#, python-format
+msgid "Could not do Paint. Overlap value has to be less than 1.00 (100%%)."
msgstr ""
-"[ERROR_NOTCL] Kann nicht Malen machen. Der Überlappungswert muss unter 1,00 "
-"(100%) liegen."
+"Kann nicht Malen machen. Der Überlappungswert muss unter 1,00 (100%%) liegen."
-#: flatcamEditors/FlatCAMGeoEditor.py:4520
+#: flatcamEditors/FlatCAMGeoEditor.py:4587
#, python-format
msgid ""
-"[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
+"Could not do Paint. Try a different combination of parameters. Or a "
"different method of Paint\n"
"%s"
msgstr ""
-"[ERROR] Kann nicht Malen machen. Versuchen Sie es mit einer anderen "
-"Kombination von Parametern. Oder eine andere Methode von Malen\n"
+"Kann nicht Malen machen. Versuchen Sie es mit einer anderen Kombination von "
+"Parametern. Oder eine andere Methode von Malen\n"
"%s"
-#: flatcamEditors/FlatCAMGeoEditor.py:4531
+#: flatcamEditors/FlatCAMGeoEditor.py:4598
msgid "[success] Paint done."
msgstr "[success] Malen Sie fertig."
#: flatcamEditors/FlatCAMGrbEditor.py:208
-msgid "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
+msgid "To add an Pad first select a aperture in Aperture Table"
msgstr ""
-"[WARNING_NOTCL] Um ein Pad hinzuzufügen, wählen Sie zunächst eine Blende in "
-"der Aperture Table aus"
+"Um ein Pad hinzuzufügen, wählen Sie zunächst eine Blende in der Aperture "
+"Table aus"
-#: flatcamEditors/FlatCAMGrbEditor.py:214
-#: flatcamEditors/FlatCAMGrbEditor.py:406
-msgid ""
-"[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
-msgstr ""
-"[WARNING_NOTCL] Die Größe der Blende ist Null. Es muss größer als Null sein."
+#: flatcamEditors/FlatCAMGrbEditor.py:215
+#: flatcamEditors/FlatCAMGrbEditor.py:409
+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."
-#: flatcamEditors/FlatCAMGrbEditor.py:365
-#: flatcamEditors/FlatCAMGrbEditor.py:670
+#: flatcamEditors/FlatCAMGrbEditor.py:366
+#: flatcamEditors/FlatCAMGrbEditor.py:674
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'."
-#: flatcamEditors/FlatCAMGrbEditor.py:377
-msgid "[success] Done. Adding Pad completed."
-msgstr "[success] Erledigt. Hinzufügen von Pad abgeschlossen."
+#: flatcamEditors/FlatCAMGrbEditor.py:379
+msgid "Done. Adding Pad completed."
+msgstr "Erledigt. Hinzufügen von Pad abgeschlossen."
-#: flatcamEditors/FlatCAMGrbEditor.py:399
-msgid ""
-"[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
+#: flatcamEditors/FlatCAMGrbEditor.py:401
+msgid "To add an Pad Array first select a aperture in Aperture Table"
msgstr ""
-"[WARNING_NOTCL] Um ein Pad-Array hinzuzufügen, wählen Sie zunächst eine "
-"Blende in der Aperture-Tabelle aus"
+"Um ein Pad-Array hinzuzufügen, wählen Sie zunächst eine Blende in der "
+"Aperture-Tabelle aus"
-#: flatcamEditors/FlatCAMGrbEditor.py:476
+#: flatcamEditors/FlatCAMGrbEditor.py:479
msgid "Click on the Pad Circular Array Start position"
msgstr "Klicken Sie auf die Startposition des Pad-Kreis-Arrays"
-#: flatcamEditors/FlatCAMGrbEditor.py:695
-msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
-msgstr "[WARNING_NOTCL] Zu viele Pad für den ausgewählten Abstandswinkel."
+#: flatcamEditors/FlatCAMGrbEditor.py:700
+msgid "Too many Pads for the selected spacing angle."
+msgstr "Zu viele Pad für den ausgewählten Abstandswinkel."
-#: flatcamEditors/FlatCAMGrbEditor.py:717
-msgid "[success] Done. Pad Array added."
-msgstr "[success] Erledigt. Pad Array hinzugefügt."
+#: flatcamEditors/FlatCAMGrbEditor.py:723
+msgid "Done. Pad Array added."
+msgstr "Erledigt. Pad Array hinzugefügt."
-#: flatcamEditors/FlatCAMGrbEditor.py:738
+#: flatcamEditors/FlatCAMGrbEditor.py:744
msgid "Select shape(s) and then click ..."
msgstr "Wählen Sie die Form (en) aus und klicken Sie dann auf ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:749
-msgid "[ERROR_NOTCL] Failed. Nothing selected."
-msgstr "[ERROR_NOTCL] ist fehlgeschlagen. Nichts ausgewählt."
+#: flatcamEditors/FlatCAMGrbEditor.py:756
+msgid "Failed. Nothing selected."
+msgstr "Gescheitert. Nichts ausgewählt."
-#: flatcamEditors/FlatCAMGrbEditor.py:764
+#: flatcamEditors/FlatCAMGrbEditor.py:772
msgid ""
-"[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the "
-"same aperture."
+"Failed. Poligonize works only on geometries belonging to the same aperture."
msgstr ""
-"[WARNING_NOTCL] Gescheitert. Poligonize funktioniert nur bei Geometrien, die "
-"zur selben Apertur gehören."
+"Gescheitert. Poligonize funktioniert nur bei Geometrien, die zur selben "
+"Apertur gehören."
-#: flatcamEditors/FlatCAMGrbEditor.py:817
-msgid "[success] Done. Poligonize completed."
-msgstr "[Erfolg] Fertig. Poligonize abgeschlossen."
+#: flatcamEditors/FlatCAMGrbEditor.py:826
+msgid "Done. Poligonize completed."
+msgstr "Erledigt. Poligonize abgeschlossen."
-#: flatcamEditors/FlatCAMGrbEditor.py:870
-#: flatcamEditors/FlatCAMGrbEditor.py:1092
-#: flatcamEditors/FlatCAMGrbEditor.py:1116
+#: flatcamEditors/FlatCAMGrbEditor.py:879
+#: flatcamEditors/FlatCAMGrbEditor.py:1102
+#: flatcamEditors/FlatCAMGrbEditor.py:1126
msgid "Corner Mode 1: 45 degrees ..."
msgstr "Eckmodus 1: 45 Grad ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:872
+#: flatcamEditors/FlatCAMGrbEditor.py:881
msgid "Click on 1st point ..."
msgstr "Klicken Sie auf den 1. Punkt ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:882
-#: flatcamEditors/FlatCAMGrbEditor.py:1191
+#: flatcamEditors/FlatCAMGrbEditor.py:891
+#: flatcamEditors/FlatCAMGrbEditor.py:1202
msgid "Click on next Point or click Right mouse button to complete ..."
msgstr ""
"Klicken Sie auf den nächsten Punkt oder klicken Sie mit der rechten "
"Maustaste, um den Vorgang abzuschließen."
-#: flatcamEditors/FlatCAMGrbEditor.py:1080
-#: flatcamEditors/FlatCAMGrbEditor.py:1113
+#: flatcamEditors/FlatCAMGrbEditor.py:1090
+#: flatcamEditors/FlatCAMGrbEditor.py:1123
msgid "Corner Mode 2: Reverse 45 degrees ..."
msgstr "Eckmodus 2: 45 Grad umkehren ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1083
-#: flatcamEditors/FlatCAMGrbEditor.py:1110
+#: flatcamEditors/FlatCAMGrbEditor.py:1093
+#: flatcamEditors/FlatCAMGrbEditor.py:1120
msgid "Corner Mode 3: 90 degrees ..."
msgstr "Eckmodus 3: 90 Grad ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1086
-#: flatcamEditors/FlatCAMGrbEditor.py:1107
+#: flatcamEditors/FlatCAMGrbEditor.py:1096
+#: flatcamEditors/FlatCAMGrbEditor.py:1117
msgid "Corner Mode 4: Reverse 90 degrees ..."
msgstr "Eckmodus 4: Um 90 Grad umkehren ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1089
-#: flatcamEditors/FlatCAMGrbEditor.py:1104
+#: flatcamEditors/FlatCAMGrbEditor.py:1099
+#: flatcamEditors/FlatCAMGrbEditor.py:1114
msgid "Corner Mode 5: Free angle ..."
msgstr "Eckmodus 5: Freiwinkel ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1143
-#: flatcamEditors/FlatCAMGrbEditor.py:1308
-#: flatcamEditors/FlatCAMGrbEditor.py:1347
+#: flatcamEditors/FlatCAMGrbEditor.py:1153
+#: flatcamEditors/FlatCAMGrbEditor.py:1319
+#: flatcamEditors/FlatCAMGrbEditor.py:1358
msgid "Track Mode 1: 45 degrees ..."
msgstr "Spurmodus 1: 45 Grad ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1288
-#: flatcamEditors/FlatCAMGrbEditor.py:1342
+#: flatcamEditors/FlatCAMGrbEditor.py:1299
+#: flatcamEditors/FlatCAMGrbEditor.py:1353
msgid "Track Mode 2: Reverse 45 degrees ..."
msgstr "Spurmodus 2: 45 Grad umkehren ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1293
-#: flatcamEditors/FlatCAMGrbEditor.py:1337
+#: flatcamEditors/FlatCAMGrbEditor.py:1304
+#: flatcamEditors/FlatCAMGrbEditor.py:1348
msgid "Track Mode 3: 90 degrees ..."
msgstr "Spurmodus 3: 90 Grad ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1298
-#: flatcamEditors/FlatCAMGrbEditor.py:1332
+#: flatcamEditors/FlatCAMGrbEditor.py:1309
+#: flatcamEditors/FlatCAMGrbEditor.py:1343
msgid "Track Mode 4: Reverse 90 degrees ..."
msgstr "Spurmodus 4: Um 90 Grad umkehren ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1303
-#: flatcamEditors/FlatCAMGrbEditor.py:1327
+#: flatcamEditors/FlatCAMGrbEditor.py:1314
+#: flatcamEditors/FlatCAMGrbEditor.py:1338
msgid "Track Mode 5: Free angle ..."
msgstr "Spurmodus 5: Freiwinkel ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1707
+#: flatcamEditors/FlatCAMGrbEditor.py:1720
msgid "Scale the selected Gerber apertures ..."
msgstr "Skalieren Sie die ausgewählten Gerber-Öffnungen ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1749
+#: flatcamEditors/FlatCAMGrbEditor.py:1762
msgid "Buffer the selected apertures ..."
msgstr "Die ausgewählten Öffnungen puffern ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1791
+#: flatcamEditors/FlatCAMGrbEditor.py:1804
msgid "Mark polygon areas in the edited Gerber ..."
msgstr "Markiere Polygonbereiche im bearbeiteten Gerber ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1838
-msgid "[WARNING_NOTCL] Nothing selected to move ..."
-msgstr "[WARNING_NOTCL] Nichts zum Bewegen ausgewählt ..."
+#: flatcamEditors/FlatCAMGrbEditor.py:1852
+msgid "Nothing selected to move"
+msgstr "Nichts zum Bewegen ausgewählt"
-#: flatcamEditors/FlatCAMGrbEditor.py:1961
-msgid "[success] Done. Apertures Move completed."
-msgstr "[success] Erledigt. Öffnungsbewegung abgeschlossen."
+#: flatcamEditors/FlatCAMGrbEditor.py:1976
+msgid "Done. Apertures Move completed."
+msgstr "Erledigt. Öffnungsbewegung abgeschlossen."
-#: flatcamEditors/FlatCAMGrbEditor.py:2037
-msgid "[success] Done. Apertures copied."
-msgstr "[success] Erledigt. Blende kopiert."
+#: flatcamEditors/FlatCAMGrbEditor.py:2053
+msgid "Done. Apertures copied."
+msgstr "Erledigt. Blende kopiert."
-#: flatcamEditors/FlatCAMGrbEditor.py:2337 flatcamGUI/FlatCAMGUI.py:1686
+#: flatcamEditors/FlatCAMGrbEditor.py:2354 flatcamGUI/FlatCAMGUI.py:1686
#: flatcamGUI/FlatCAMGUI.py:4629
msgid "Gerber Editor"
msgstr "Gerber-Editor"
-#: flatcamEditors/FlatCAMGrbEditor.py:2357 flatcamGUI/ObjectUI.py:192
+#: flatcamEditors/FlatCAMGrbEditor.py:2374 flatcamGUI/ObjectUI.py:192
#: flatcamTools/ToolProperties.py:137
msgid "Apertures"
msgstr "Öffnungen"
-#: flatcamEditors/FlatCAMGrbEditor.py:2359 flatcamGUI/ObjectUI.py:194
+#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/ObjectUI.py:194
msgid "Apertures Table for the Gerber Object."
msgstr "Blendentabelle für das Gerberobjekt."
-#: flatcamEditors/FlatCAMGrbEditor.py:2370
-#: flatcamEditors/FlatCAMGrbEditor.py:3797 flatcamGUI/ObjectUI.py:227
+#: flatcamEditors/FlatCAMGrbEditor.py:2387
+#: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
msgid "Code"
msgstr "Code"
-#: flatcamEditors/FlatCAMGrbEditor.py:2370
-#: flatcamEditors/FlatCAMGrbEditor.py:3797 flatcamGUI/ObjectUI.py:227
+#: flatcamEditors/FlatCAMGrbEditor.py:2387
+#: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
#: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
msgid "Type"
msgstr "Typ"
-#: flatcamEditors/FlatCAMGrbEditor.py:2370
-#: flatcamEditors/FlatCAMGrbEditor.py:3797 flatcamGUI/ObjectUI.py:227
+#: flatcamEditors/FlatCAMGrbEditor.py:2387
+#: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
msgid "Size"
msgstr "Größe"
-#: flatcamEditors/FlatCAMGrbEditor.py:2370
-#: flatcamEditors/FlatCAMGrbEditor.py:3797 flatcamGUI/ObjectUI.py:227
+#: flatcamEditors/FlatCAMGrbEditor.py:2387
+#: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
msgid "Dim"
msgstr "Maße"
-#: flatcamEditors/FlatCAMGrbEditor.py:2374 flatcamGUI/ObjectUI.py:231
+#: flatcamEditors/FlatCAMGrbEditor.py:2391 flatcamGUI/ObjectUI.py:231
msgid "Index"
msgstr "Index"
-#: flatcamEditors/FlatCAMGrbEditor.py:2376
-#: flatcamEditors/FlatCAMGrbEditor.py:2403 flatcamGUI/ObjectUI.py:233
+#: flatcamEditors/FlatCAMGrbEditor.py:2393
+#: flatcamEditors/FlatCAMGrbEditor.py:2420 flatcamGUI/ObjectUI.py:233
msgid "Aperture Code"
msgstr "Öffnungscode"
-#: flatcamEditors/FlatCAMGrbEditor.py:2378 flatcamGUI/ObjectUI.py:235
+#: flatcamEditors/FlatCAMGrbEditor.py:2395 flatcamGUI/ObjectUI.py:235
msgid "Type of aperture: circular, rectangle, macros etc"
msgstr "Öffnungsart: kreisförmig, rechteckig, Makros usw"
-#: flatcamEditors/FlatCAMGrbEditor.py:2380 flatcamGUI/ObjectUI.py:237
+#: flatcamEditors/FlatCAMGrbEditor.py:2397 flatcamGUI/ObjectUI.py:237
msgid "Aperture Size:"
msgstr "Öffnungsgröße:"
-#: flatcamEditors/FlatCAMGrbEditor.py:2382 flatcamGUI/ObjectUI.py:239
+#: flatcamEditors/FlatCAMGrbEditor.py:2399 flatcamGUI/ObjectUI.py:239
msgid ""
"Aperture Dimensions:\n"
" - (width, height) for R, O type.\n"
@@ -3972,15 +3873,15 @@ msgstr ""
" - (Breite, Höhe) für R, O-Typ.\n"
" - (dia, nVertices) für P-Typ"
-#: flatcamEditors/FlatCAMGrbEditor.py:2405 flatcamGUI/FlatCAMGUI.py:4658
+#: flatcamEditors/FlatCAMGrbEditor.py:2422 flatcamGUI/FlatCAMGUI.py:4658
msgid "Code for the new aperture"
msgstr "Code für die neue Blende"
-#: flatcamEditors/FlatCAMGrbEditor.py:2413
+#: flatcamEditors/FlatCAMGrbEditor.py:2430
msgid "Aperture Size"
msgstr "Öffnungsgröße"
-#: flatcamEditors/FlatCAMGrbEditor.py:2415
+#: flatcamEditors/FlatCAMGrbEditor.py:2432
msgid ""
"Size for the new aperture.\n"
"If aperture type is 'R' or 'O' then\n"
@@ -3994,11 +3895,11 @@ msgstr ""
"berechnet als:\n"
"Quadrat (Breite ** 2 + Höhe ** 2)"
-#: flatcamEditors/FlatCAMGrbEditor.py:2427
+#: flatcamEditors/FlatCAMGrbEditor.py:2444
msgid "Aperture Type"
msgstr "Blendentyp"
-#: flatcamEditors/FlatCAMGrbEditor.py:2429
+#: flatcamEditors/FlatCAMGrbEditor.py:2446
msgid ""
"Select the type of new aperture. Can be:\n"
"C = circular\n"
@@ -4010,11 +3911,11 @@ msgstr ""
"R = rechteckig\n"
"O = länglich"
-#: flatcamEditors/FlatCAMGrbEditor.py:2440
+#: flatcamEditors/FlatCAMGrbEditor.py:2457
msgid "Aperture Dim"
msgstr "Öffnungsmaße"
-#: flatcamEditors/FlatCAMGrbEditor.py:2442
+#: flatcamEditors/FlatCAMGrbEditor.py:2459
msgid ""
"Dimensions for the new aperture.\n"
"Active only for rectangular apertures (type R).\n"
@@ -4024,39 +3925,39 @@ msgstr ""
"Aktiv nur für rechteckige Öffnungen (Typ R).\n"
"Das Format ist (Breite, Höhe)"
-#: flatcamEditors/FlatCAMGrbEditor.py:2451
+#: flatcamEditors/FlatCAMGrbEditor.py:2468
msgid "Add/Delete Aperture"
msgstr "Blende hinzufügen / löschen"
-#: flatcamEditors/FlatCAMGrbEditor.py:2453
+#: flatcamEditors/FlatCAMGrbEditor.py:2470
msgid "Add/Delete an aperture in the aperture table"
msgstr "Eine Blende in der Blendentabelle hinzufügen / löschen"
-#: flatcamEditors/FlatCAMGrbEditor.py:2462
+#: flatcamEditors/FlatCAMGrbEditor.py:2479
msgid "Add a new aperture to the aperture list."
msgstr "Fügen Sie der Blendenliste eine neue Blende hinzu."
-#: flatcamEditors/FlatCAMGrbEditor.py:2467
+#: flatcamEditors/FlatCAMGrbEditor.py:2484
msgid "Delete a aperture in the aperture list"
msgstr "Löschen Sie eine Blende in der Blendenliste"
-#: flatcamEditors/FlatCAMGrbEditor.py:2484
+#: flatcamEditors/FlatCAMGrbEditor.py:2501
msgid "Buffer Aperture"
msgstr "Pufferblende"
-#: flatcamEditors/FlatCAMGrbEditor.py:2486
+#: flatcamEditors/FlatCAMGrbEditor.py:2503
msgid "Buffer a aperture in the aperture list"
msgstr "Puffern Sie eine Blende in der Blendenliste"
-#: flatcamEditors/FlatCAMGrbEditor.py:2496 flatcamGUI/FlatCAMGUI.py:4781
+#: flatcamEditors/FlatCAMGrbEditor.py:2513 flatcamGUI/FlatCAMGUI.py:4781
msgid "Buffer distance"
msgstr "Pufferabstand"
-#: flatcamEditors/FlatCAMGrbEditor.py:2497
+#: flatcamEditors/FlatCAMGrbEditor.py:2514
msgid "Buffer corner"
msgstr "Pufferecke"
-#: flatcamEditors/FlatCAMGrbEditor.py:2499
+#: flatcamEditors/FlatCAMGrbEditor.py:2516
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded.\n"
@@ -4070,25 +3971,25 @@ msgstr ""
" - 'Abgeschrägt:' Die Ecke ist eine Linie, die die Features, die sich in "
"der Ecke treffen, direkt verbindet"
-#: flatcamEditors/FlatCAMGrbEditor.py:2514 flatcamGUI/FlatCAMGUI.py:738
+#: flatcamEditors/FlatCAMGrbEditor.py:2531 flatcamGUI/FlatCAMGUI.py:738
#: flatcamGUI/FlatCAMGUI.py:1672 flatcamGUI/FlatCAMGUI.py:1699
#: flatcamGUI/FlatCAMGUI.py:2085
msgid "Buffer"
msgstr "Puffer"
-#: flatcamEditors/FlatCAMGrbEditor.py:2529
+#: flatcamEditors/FlatCAMGrbEditor.py:2546
msgid "Scale Aperture"
msgstr "Skalenöffnung"
-#: flatcamEditors/FlatCAMGrbEditor.py:2531
+#: flatcamEditors/FlatCAMGrbEditor.py:2548
msgid "Scale a aperture in the aperture list"
msgstr "Skalieren Sie eine Blende in der Blendenliste"
-#: flatcamEditors/FlatCAMGrbEditor.py:2539 flatcamGUI/FlatCAMGUI.py:4794
+#: flatcamEditors/FlatCAMGrbEditor.py:2556 flatcamGUI/FlatCAMGUI.py:4794
msgid "Scale factor"
msgstr "Skalierungsfaktor"
-#: flatcamEditors/FlatCAMGrbEditor.py:2541
+#: flatcamEditors/FlatCAMGrbEditor.py:2558
msgid ""
"The factor by which to scale the selected aperture.\n"
"Values can be between 0.0000 and 999.9999"
@@ -4096,19 +3997,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"
-#: flatcamEditors/FlatCAMGrbEditor.py:2567
+#: flatcamEditors/FlatCAMGrbEditor.py:2584
msgid "Mark polygon areas"
msgstr "Polygonbereiche mark."
-#: flatcamEditors/FlatCAMGrbEditor.py:2569
+#: flatcamEditors/FlatCAMGrbEditor.py:2586
msgid "Mark the polygon areas."
msgstr "Markieren Sie die Polygonbereiche."
-#: flatcamEditors/FlatCAMGrbEditor.py:2577
+#: flatcamEditors/FlatCAMGrbEditor.py:2594
msgid "Area UPPER threshold"
msgstr "Flächenobergrenze"
-#: flatcamEditors/FlatCAMGrbEditor.py:2579
+#: flatcamEditors/FlatCAMGrbEditor.py:2596
msgid ""
"The threshold value, all areas less than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -4116,11 +4017,11 @@ msgstr ""
"Der Schwellenwert, alle Bereiche, die darunter liegen, sind markiert.\n"
"Kann einen Wert zwischen 0,0000 und 9999,9999 haben"
-#: flatcamEditors/FlatCAMGrbEditor.py:2585
+#: flatcamEditors/FlatCAMGrbEditor.py:2602
msgid "Area LOWER threshold"
msgstr "Bereichsuntergrenze"
-#: flatcamEditors/FlatCAMGrbEditor.py:2587
+#: flatcamEditors/FlatCAMGrbEditor.py:2604
msgid ""
"The threshold value, all areas more than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -4129,20 +4030,20 @@ msgstr ""
"hinausgehen.\n"
"Kann einen Wert zwischen 0,0000 und 9999,9999 haben"
-#: flatcamEditors/FlatCAMGrbEditor.py:2600
+#: flatcamEditors/FlatCAMGrbEditor.py:2617
msgid "Go"
msgstr "Gehen"
-#: flatcamEditors/FlatCAMGrbEditor.py:2619 flatcamGUI/FlatCAMGUI.py:728
+#: flatcamEditors/FlatCAMGrbEditor.py:2636 flatcamGUI/FlatCAMGUI.py:728
#: flatcamGUI/FlatCAMGUI.py:2075
msgid "Add Pad Array"
msgstr "Pad-Array hinzufügen"
-#: flatcamEditors/FlatCAMGrbEditor.py:2621
+#: flatcamEditors/FlatCAMGrbEditor.py:2638
msgid "Add an array of pads (linear or circular array)"
msgstr "Hinzufügen eines Arrays von Pads (lineares oder kreisförmiges Array)"
-#: flatcamEditors/FlatCAMGrbEditor.py:2627
+#: flatcamEditors/FlatCAMGrbEditor.py:2644
msgid ""
"Select the type of pads array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -4150,148 +4051,147 @@ msgstr ""
"Wählen Sie den zu erstellenden Pad-Array-Typ aus.\n"
"Es kann lineares X (Y) oder rund sein"
-#: flatcamEditors/FlatCAMGrbEditor.py:2638 flatcamGUI/FlatCAMGUI.py:4693
+#: flatcamEditors/FlatCAMGrbEditor.py:2655 flatcamGUI/FlatCAMGUI.py:4693
msgid "Nr of pads"
msgstr "Anzahl der Pads"
-#: flatcamEditors/FlatCAMGrbEditor.py:2640 flatcamGUI/FlatCAMGUI.py:4695
+#: flatcamEditors/FlatCAMGrbEditor.py:2657 flatcamGUI/FlatCAMGUI.py:4695
msgid "Specify how many pads to be in the array."
msgstr "Geben Sie an, wie viele Pads sich im Array befinden sollen."
-#: flatcamEditors/FlatCAMGrbEditor.py:3135
-#: flatcamEditors/FlatCAMGrbEditor.py:3139
-msgid ""
-"[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGrbEditor.py:3153
+#: flatcamEditors/FlatCAMGrbEditor.py:3157
+msgid "Aperture code value is missing or wrong format. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Blendencodewert fehlt oder falsches Format. Fügen Sie es "
+"Blendencodewert fehlt oder falsches Format. Fügen Sie es hinzu und versuchen "
+"Sie es erneut."
+
+#: flatcamEditors/FlatCAMGrbEditor.py:3193
+msgid ""
+"Aperture dimensions value is missing or wrong format. Add it in format "
+"(width, height) and retry."
+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."
+
+#: flatcamEditors/FlatCAMGrbEditor.py:3206
+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."
-#: flatcamEditors/FlatCAMGrbEditor.py:3175
-msgid ""
-"[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it "
-"in format (width, height) and retry."
-msgstr ""
-"[WARNING_NOTCL] Wert für Blendenmaße fehlt oder falsches Format. Fügen Sie "
-"es im Format (Breite, Höhe) hinzu und versuchen Sie es erneut."
+#: flatcamEditors/FlatCAMGrbEditor.py:3217
+msgid "Aperture already in the aperture table."
+msgstr "Blende bereits in der Blendentabelle."
-#: flatcamEditors/FlatCAMGrbEditor.py:3187
-msgid ""
-"[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and "
-"retry."
-msgstr ""
-"[WARNING_NOTCL] Blendengrößenwert fehlt oder falsches Format. Fügen Sie es "
-"hinzu und versuchen Sie es erneut."
+#: flatcamEditors/FlatCAMGrbEditor.py:3225
+msgid "Added new aperture with code"
+msgstr "Neue Blende mit Code hinzugefügt"
-#: flatcamEditors/FlatCAMGrbEditor.py:3198
-msgid "[WARNING_NOTCL] Aperture already in the aperture table."
-msgstr "[WARNING_NOTCL] Blende bereits in der Blendentabelle."
+#: flatcamEditors/FlatCAMGrbEditor.py:3254
+msgid " Select an aperture in Aperture Table"
+msgstr "Wählen Sie in Blende Table eine Blende aus"
-#: flatcamEditors/FlatCAMGrbEditor.py:3205
-#, python-brace-format
-msgid "[success] Added new aperture with code: {apid}"
-msgstr "[success] Neue Blende mit Code hinzugefügt: {apid}"
+#: flatcamEditors/FlatCAMGrbEditor.py:3261
+msgid "Select an aperture in Aperture Table -->"
+msgstr "Wählen Sie in Blende Table eine Blende aus -->"
-#: flatcamEditors/FlatCAMGrbEditor.py:3233
-msgid "[WARNING_NOTCL] Select an aperture in Aperture Table"
-msgstr "[WARNING_NOTCL] Wählen Sie in Blende Table eine Blende aus"
+#: flatcamEditors/FlatCAMGrbEditor.py:3285
+msgid "Deleted aperture with code"
+msgstr "Blende mit Code gelöscht"
-#: flatcamEditors/FlatCAMGrbEditor.py:3239
-#, python-format
-msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
-msgstr "[WARNING_NOTCL] Wählen Sie in Blende Table eine Blende aus --> %s"
-
-#: flatcamEditors/FlatCAMGrbEditor.py:3262
-#, python-brace-format
-msgid "[success] Deleted aperture with code: {del_dia}"
-msgstr "[success] Blende mit Code gelöscht: {del_dia}"
-
-#: flatcamEditors/FlatCAMGrbEditor.py:3726
+#: flatcamEditors/FlatCAMGrbEditor.py:3748
#, python-format
msgid "Adding aperture: %s geo ..."
-msgstr "Blende hinzufügen:%s geo ..."
+msgstr "Blende hinzufügen: %s geo ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:3914
+#: flatcamEditors/FlatCAMGrbEditor.py:3936
msgid ""
-"[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber "
-"creation."
+"There are no Aperture definitions in the file. Aborting Gerber creation."
msgstr ""
-"[ERROR_NOTCL] Die Datei enthält keine Aperture-Definitionen. Abbruch der "
-"Gerber-Erstellung."
+"Die Datei enthält keine Aperture-Definitionen. Abbruch der Gerber-Erstellung."
-#: flatcamEditors/FlatCAMGrbEditor.py:3917
-msgid "[ERROR] An internal error has occurred. See shell.\n"
-msgstr "[ERROR] Ein interner Fehler ist aufgetreten. Siehe Shell.\n"
-
-#: flatcamEditors/FlatCAMGrbEditor.py:3922
+#: flatcamEditors/FlatCAMGrbEditor.py:3944
msgid "Creating Gerber."
msgstr "Gerber erstellen."
-#: flatcamEditors/FlatCAMGrbEditor.py:3930
-msgid "[success] Gerber editing finished."
-msgstr "[success] Gerber-Bearbeitung ist beendet."
+#: flatcamEditors/FlatCAMGrbEditor.py:3953
+msgid "Done. Gerber editing finished."
+msgstr "Erledigt. Gerber-Bearbeitung beendet."
-#: flatcamEditors/FlatCAMGrbEditor.py:3946
-msgid "[WARNING_NOTCL] Cancelled. No aperture is selected"
-msgstr "[WARNING_NOTCL] Abgebrochen. Es ist keine Blende ausgewählt"
+#: flatcamEditors/FlatCAMGrbEditor.py:3970
+msgid "Cancelled. No aperture is selected"
+msgstr "Abgebrochen. Es ist keine Blende ausgewählt"
-#: flatcamEditors/FlatCAMGrbEditor.py:4097
-msgid "[success] Coordinates copied to clipboard."
-msgstr "[success] Koordinaten in die Zwischenablage kopiert."
+#: flatcamEditors/FlatCAMGrbEditor.py:4505
+msgid "Failed. No aperture geometry is selected."
+msgstr "Gescheitert. Es ist keine Aperturgeometrie ausgewählt."
-#: flatcamEditors/FlatCAMGrbEditor.py:4477
-msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected."
+#: flatcamEditors/FlatCAMGrbEditor.py:4514
+msgid "Done. Apertures geometry deleted."
+msgstr "Fertig. Blendengeometrie gelöscht."
+
+#: flatcamEditors/FlatCAMGrbEditor.py:4657
+msgid "No aperture to buffer. Select at least one aperture and try again."
msgstr ""
-"[ERROR_NOTCL] ist fehlgeschlagen. Es ist keine Blendengeometrie ausgewählt."
+"Keine Blende zum Puffern Wählen Sie mindestens eine Blende und versuchen Sie "
+"es erneut."
-#: flatcamEditors/FlatCAMGrbEditor.py:4485
-msgid "[success] Done. Apertures geometry deleted."
-msgstr "[success] Fertig. Blendengeometrie gelöscht."
+#: flatcamEditors/FlatCAMGrbEditor.py:4670
+msgid "Failed."
+msgstr "Gescheitert."
-#: flatcamEditors/FlatCAMGrbEditor.py:4628
-msgid ""
-"[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try "
-"again."
+#: flatcamEditors/FlatCAMGrbEditor.py:4689
+msgid "Scale factor value is missing or wrong format. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Keine Blende zum Puffern Wählen Sie mindestens eine Blende "
-"und versuchen Sie es erneut."
+"Der Skalierungsfaktor ist nicht vorhanden oder das Format ist falsch. Fügen "
+"Sie es hinzu und versuchen Sie es erneut."
-#: flatcamEditors/FlatCAMGrbEditor.py:4641
-#, python-format
-msgid ""
-"[ERROR_NOTCL] Failed.\n"
-"%s"
+#: flatcamEditors/FlatCAMGrbEditor.py:4721
+msgid "No aperture to scale. Select at least one aperture and try again."
msgstr ""
-"[ERROR_NOTCL] Gescheitert.\n"
-"%s"
+"Keine zu skalierende Blende Wählen Sie mindestens eine Blende und versuchen "
+"Sie es erneut."
-#: flatcamEditors/FlatCAMGrbEditor.py:4658
-msgid ""
-"[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
-"retry."
-msgstr ""
-"[WARNING_NOTCL] Der Skalierungsfaktor ist nicht vorhanden oder das Format "
-"ist falsch. Fügen Sie es hinzu und versuchen Sie es erneut."
+#: flatcamEditors/FlatCAMGrbEditor.py:4737
+msgid "Done. Scale Tool completed."
+msgstr "Erledigt. Skalierungswerkzeug abgeschlossen."
-#: flatcamEditors/FlatCAMGrbEditor.py:4691
-msgid ""
-"[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
-"again."
-msgstr ""
-"[WARNING_NOTCL] Keine zu skalierende Blende Wählen Sie mindestens eine "
-"Blende und versuchen Sie es erneut."
+#: flatcamEditors/FlatCAMGrbEditor.py:4775
+msgid "Polygon areas marked."
+msgstr "Polygonbereiche markiert."
-#: flatcamEditors/FlatCAMGrbEditor.py:4707
-msgid "[success] Done. Scale Tool completed."
-msgstr "[success] Erledigt. Skalierungswerkzeug abgeschlossen."
+#: flatcamEditors/FlatCAMGrbEditor.py:4778
+msgid "There are no polygons to mark area."
+msgstr "Es gibt keine Polygone zum Markieren der Fläche."
-#: flatcamEditors/FlatCAMGrbEditor.py:4744
-msgid "[success] Polygon areas marked."
-msgstr "[success] Polygonbereiche markiert."
+#: flatcamEditors/FlatCAMGrbEditor.py:5549
+msgid "Rotation action was not executed."
+msgstr "Rotationsaktion wurde nicht ausgeführt."
-#: flatcamEditors/FlatCAMGrbEditor.py:4746
-msgid "[WARNING_NOTCL] There are no polygons to mark area."
-msgstr "[WARNING_NOTCL] Es gibt keine Polygone zum Markieren der Fläche."
+#: flatcamEditors/FlatCAMGrbEditor.py:5688
+msgid "Skew action was not executed."
+msgstr "Die Versatzaktion wurde nicht ausgeführt."
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5758
+msgid "Scale action was not executed."
+msgstr "Skalierungsaktion wurde nicht ausgeführt."
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5807
+msgid "Offset action was not executed."
+msgstr "Offsetaktion wurde nicht ausgeführt."
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5863
+msgid "Geometry shape offset Y cancelled"
+msgstr "Geometrieform-Versatz Y abgebrochen"
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5880
+msgid "Geometry shape skew X cancelled"
+msgstr "Geometrieformverzerren X abgebrochen"
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5897
+msgid "Geometry shape skew Y cancelled"
+msgstr "Geometrieformverzerren Y abgebrochen"
#: flatcamGUI/FlatCAMGUI.py:52
msgid "&File"
@@ -6774,6 +6674,10 @@ msgstr ""
msgid "Warning"
msgstr "Warnung"
+#: flatcamGUI/FlatCAMGUI.py:2560 flatcamGUI/FlatCAMGUI.py:2572
+msgid "[success] Done."
+msgstr "[success] Erledigt."
+
#: flatcamGUI/FlatCAMGUI.py:2580 flatcamGUI/FlatCAMGUI.py:2788
#: flatcamGUI/FlatCAMGUI.py:2999
msgid "[WARNING_NOTCL] Cancelled."
@@ -6823,6 +6727,11 @@ msgstr "Neues Werkzeug ..."
msgid "Enter a Tool Diameter"
msgstr "Geben Sie einen Werkzeugdurchmesser ein"
+#: flatcamGUI/FlatCAMGUI.py:3164
+#, python-brace-format
+msgid "[success] Added new tool with dia: {dia} {units}"
+msgstr "[success] Neues Werkzeug mit Durchmesser hinzugefügt: {dia} {units}"
+
#: flatcamGUI/FlatCAMGUI.py:3211
msgid "Measurement Tool exit..."
msgstr "Messwerkzeug beenden ..."
@@ -9392,8 +9301,8 @@ msgid "Normal"
msgstr "NormalFormat"
#: flatcamGUI/FlatCAMGUI.py:6668 flatcamGUI/FlatCAMGUI.py:6974
-msgid "progressive"
-msgstr "fortschrittlich"
+msgid "Progressive"
+msgstr "Progressiv"
#: flatcamGUI/FlatCAMGUI.py:6669
msgid "NCC Plotting"
@@ -11046,6 +10955,10 @@ msgstr ""
"Öffnet den Dialog zum Speichern des G-Codes\n"
"Datei."
+#: flatcamParsers/ParseFont.py:305
+msgid "Font not supported, try another one."
+msgstr "Schriftart wird nicht unterstützt, versuchen Sie es mit einer anderen."
+
#: flatcamTools/ToolCalculators.py:24
msgid "Calculators"
msgstr "Rechner"
@@ -11323,7 +11236,7 @@ msgstr ""
#: flatcamTools/ToolCutOut.py:371 flatcamTools/ToolCutOut.py:571
#: flatcamTools/ToolNonCopperClear.py:1124
-#: flatcamTools/ToolNonCopperClear.py:1265 flatcamTools/ToolPaint.py:1148
+#: flatcamTools/ToolNonCopperClear.py:1265 flatcamTools/ToolPaint.py:1149
#: flatcamTools/ToolPanelize.py:359 flatcamTools/ToolPanelize.py:376
#: flatcamTools/ToolSub.py:254 flatcamTools/ToolSub.py:269
#: flatcamTools/ToolSub.py:456 flatcamTools/ToolSub.py:471
@@ -11340,14 +11253,6 @@ msgstr ""
"Es ist kein Objekt für den Ausschnitt ausgewählt.\n"
"Wählen Sie eine aus und versuchen Sie es erneut."
-#: flatcamTools/ToolCutOut.py:387 flatcamTools/ToolCutOut.py:585
-#: flatcamTools/ToolCutOut.py:755 flatcamTools/ToolCutOut.py:849
-#: flatcamTools/ToolDblSided.py:367
-msgid "Tool diameter value is missing or wrong format. Add it and retry."
-msgstr ""
-"Werkzeugdurchmesserwert fehlt oder falsches Format. Fügen Sie es hinzu und "
-"versuchen Sie es erneut."
-
#: flatcamTools/ToolCutOut.py:392 flatcamTools/ToolCutOut.py:590
#: flatcamTools/ToolCutOut.py:760 flatcamTools/ToolCutOut.py:854
msgid "Tool Diameter is zero value. Change it to a positive real number."
@@ -12198,43 +12103,43 @@ msgstr ""
msgid "Generate Geometry"
msgstr "Geometrie erzeugen"
-#: flatcamTools/ToolNonCopperClear.py:906 flatcamTools/ToolPaint.py:703
+#: flatcamTools/ToolNonCopperClear.py:906 flatcamTools/ToolPaint.py:705
#: flatcamTools/ToolSolderPaste.py:769
msgid "Please enter a tool diameter to add, in Float format."
msgstr ""
"Bitte geben Sie einen hinzuzufügenden Werkzeugdurchmesser im Float-Format "
"ein."
-#: flatcamTools/ToolNonCopperClear.py:940 flatcamTools/ToolPaint.py:728
+#: flatcamTools/ToolNonCopperClear.py:940 flatcamTools/ToolPaint.py:730
msgid "Adding tool cancelled. Tool already in Tool Table."
msgstr ""
"Hinzufügen des Werkzeugs abgebrochen. Werkzeug bereits in der "
"Werkzeugtabelle."
-#: flatcamTools/ToolNonCopperClear.py:945 flatcamTools/ToolPaint.py:734
+#: flatcamTools/ToolNonCopperClear.py:945 flatcamTools/ToolPaint.py:736
msgid "New tool added to Tool Table."
msgstr "Neues Werkzeug zur Werkzeugtabelle hinzugefügt."
-#: flatcamTools/ToolNonCopperClear.py:989 flatcamTools/ToolPaint.py:780
+#: flatcamTools/ToolNonCopperClear.py:989 flatcamTools/ToolPaint.py:782
msgid "Tool from Tool Table was edited."
msgstr "Werkzeug aus Werkzeugtabelle wurde bearbeitet."
-#: flatcamTools/ToolNonCopperClear.py:1000 flatcamTools/ToolPaint.py:792
+#: flatcamTools/ToolNonCopperClear.py:1000 flatcamTools/ToolPaint.py:794
#: flatcamTools/ToolSolderPaste.py:860
msgid "Edit cancelled. New diameter value is already in the Tool Table."
msgstr ""
"Bearbeitung abgebrochen. Neuer Durchmesserwert befindet sich bereits in der "
"Werkzeugtabelle."
-#: flatcamTools/ToolNonCopperClear.py:1040 flatcamTools/ToolPaint.py:891
+#: flatcamTools/ToolNonCopperClear.py:1040 flatcamTools/ToolPaint.py:892
msgid "Delete failed. Select a tool to delete."
msgstr "Löschen fehlgeschlagen. Wählen Sie ein Werkzeug zum Löschen aus."
-#: flatcamTools/ToolNonCopperClear.py:1045 flatcamTools/ToolPaint.py:897
+#: flatcamTools/ToolNonCopperClear.py:1045 flatcamTools/ToolPaint.py:898
msgid "Tool(s) deleted from Tool Table."
msgstr "Werkzeug(e) aus der Werkzeugtabelle gelöscht."
-#: flatcamTools/ToolNonCopperClear.py:1053 flatcamTools/ToolPaint.py:905
+#: flatcamTools/ToolNonCopperClear.py:1053 flatcamTools/ToolPaint.py:906
msgid "on_paint_button_click"
msgstr "auf den Farbknopf klicken"
@@ -12244,7 +12149,7 @@ msgstr ""
"Der Überlappungswert muss zwischen 0 (einschließlich) und 1 (ausschließlich) "
"liegen."
-#: flatcamTools/ToolNonCopperClear.py:1083 flatcamTools/ToolPaint.py:944
+#: flatcamTools/ToolNonCopperClear.py:1083 flatcamTools/ToolPaint.py:945
#, python-format
msgid "Could not retrieve object: %s"
msgstr "Objekt konnte nicht abgerufen werden: %s"
@@ -12253,7 +12158,7 @@ msgstr "Objekt konnte nicht abgerufen werden: %s"
msgid "Wrong Tool Dia value format entered, use a number."
msgstr "Falsches Werkzeug Dia-Wertformat eingegeben, verwenden Sie eine Zahl."
-#: flatcamTools/ToolNonCopperClear.py:1112 flatcamTools/ToolPaint.py:980
+#: flatcamTools/ToolNonCopperClear.py:1112 flatcamTools/ToolPaint.py:981
msgid "No selected tools in Tool Table."
msgstr "Keine ausgewählten Werkzeuge in der Werkzeugtabelle."
@@ -12261,11 +12166,11 @@ msgstr "Keine ausgewählten Werkzeuge in der Werkzeugtabelle."
msgid "Click the start point of the area."
msgstr "Klicken Sie auf den Startpunkt des Bereichs."
-#: flatcamTools/ToolNonCopperClear.py:1148 flatcamTools/ToolPaint.py:1036
+#: flatcamTools/ToolNonCopperClear.py:1148 flatcamTools/ToolPaint.py:1037
msgid "Click the end point of the paint area."
msgstr "Klicken Sie auf den Endpunkt des Malbereichs."
-#: flatcamTools/ToolNonCopperClear.py:1154 flatcamTools/ToolPaint.py:1042
+#: flatcamTools/ToolNonCopperClear.py:1154 flatcamTools/ToolPaint.py:1043
msgid "Zone added. Click to start adding next zone or right click to finish."
msgstr ""
"Zone hinzugefügt. Klicken Sie, um die nächste Zone hinzuzufügen, oder "
@@ -12337,9 +12242,9 @@ msgstr "NCC Werkzeugreinigung mit Werkzeugdurchmesser = "
msgid "started."
msgstr "gestartet."
-#: flatcamTools/ToolNonCopperClear.py:1810 flatcamTools/ToolPaint.py:1409
-#: flatcamTools/ToolPaint.py:1739 flatcamTools/ToolPaint.py:1887
-#: flatcamTools/ToolPaint.py:2202 flatcamTools/ToolPaint.py:2355
+#: flatcamTools/ToolNonCopperClear.py:1810 flatcamTools/ToolPaint.py:1412
+#: flatcamTools/ToolPaint.py:1742 flatcamTools/ToolPaint.py:1890
+#: flatcamTools/ToolPaint.py:2203 flatcamTools/ToolPaint.py:2355
msgid ""
"There is no Painting Geometry in the file.\n"
"Usually it means that the tool diameter is too big for the painted "
@@ -12378,7 +12283,7 @@ msgstr ""
"Die Bearbeitung der NCC-Werkzeugablagen ist abgeschlossen, die Isolierung "
"der Kupferelemente ist jedoch unterbrochen"
-#: flatcamTools/ToolNonCopperClear.py:2593
+#: flatcamTools/ToolNonCopperClear.py:2596
msgid ""
"Try to use the Buffering Type = Full in Preferences -> Gerber General. "
"Reload the Gerber file after this change."
@@ -12560,62 +12465,62 @@ msgstr ""
"- 'Referenzobjekt' - löscht nicht kupferne Objekte innerhalb des Bereichs\n"
"von einem anderen Objekt angegeben."
-#: flatcamTools/ToolPaint.py:911
+#: flatcamTools/ToolPaint.py:912
msgid "Paint Tool. Reading parameters."
msgstr "Malwerkzeug. Parameter lesen."
-#: flatcamTools/ToolPaint.py:926
+#: flatcamTools/ToolPaint.py:927
msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive)"
msgstr ""
"Der Überlappungswert muss zwischen 0 (einschließlich) und 1 (exklusiv) "
"liegen."
-#: flatcamTools/ToolPaint.py:930 flatcamTools/ToolPaint.py:993
+#: flatcamTools/ToolPaint.py:931 flatcamTools/ToolPaint.py:994
msgid "Click inside the desired polygon."
msgstr "Klicken Sie in das gewünschte Polygon."
-#: flatcamTools/ToolPaint.py:950 flatcamTools/ToolPanelize.py:366
+#: flatcamTools/ToolPaint.py:951 flatcamTools/ToolPanelize.py:366
#: tclCommands/TclCommandBbox.py:66 tclCommands/TclCommandNregions.py:65
msgid "Object not found"
msgstr "Objekt nicht gefunden"
-#: flatcamTools/ToolPaint.py:958
+#: flatcamTools/ToolPaint.py:959
msgid "Can't do Paint on MultiGeo geometries"
msgstr "Auf MultiGeo-Geometrien kann nicht gemalt werden"
-#: flatcamTools/ToolPaint.py:1002 flatcamTools/ToolPaint.py:1238
+#: flatcamTools/ToolPaint.py:1003 flatcamTools/ToolPaint.py:1239
msgid "Painting polygon..."
msgstr "Polygon malen ..."
-#: flatcamTools/ToolPaint.py:1024
+#: flatcamTools/ToolPaint.py:1025
msgid "Click the start point of the paint area."
msgstr "Klicken Sie auf den Startpunkt des Malbereichs."
-#: flatcamTools/ToolPaint.py:1196 flatcamTools/ToolPaint.py:1199
-#: flatcamTools/ToolPaint.py:1201
+#: flatcamTools/ToolPaint.py:1197 flatcamTools/ToolPaint.py:1200
+#: flatcamTools/ToolPaint.py:1202
msgid "Paint Tool. Normal painting polygon task started."
msgstr "Malwerkzeug. Normale Zeichenpolygonaufgabe gestartet."
-#: flatcamTools/ToolPaint.py:1197 flatcamTools/ToolPaint.py:1585
-#: flatcamTools/ToolPaint.py:1760 flatcamTools/ToolPaint.py:2042
-#: flatcamTools/ToolPaint.py:2223
+#: flatcamTools/ToolPaint.py:1198 flatcamTools/ToolPaint.py:1588
+#: flatcamTools/ToolPaint.py:1763 flatcamTools/ToolPaint.py:2045
+#: flatcamTools/ToolPaint.py:2224
msgid "Buffering geometry..."
msgstr "Geometrie puffern..."
-#: flatcamTools/ToolPaint.py:1235
+#: flatcamTools/ToolPaint.py:1236
msgid "[WARNING] No polygon found."
msgstr "[WARNING] Kein Polygon gefunden."
-#: flatcamTools/ToolPaint.py:1239
+#: flatcamTools/ToolPaint.py:1240
#, python-format
msgid "Paint Tool. Painting polygon at location: %s"
msgstr "Malwerkzeug. Zeichenpolygon am Standort: %s"
-#: flatcamTools/ToolPaint.py:1322
+#: flatcamTools/ToolPaint.py:1323
msgid "Geometry could not be painted completely"
msgstr "Geometrie konnte nicht vollständig gemalt werden"
-#: flatcamTools/ToolPaint.py:1367
+#: flatcamTools/ToolPaint.py:1368
msgid ""
"Could not do Paint. Try a different combination of parameters. Or a "
"different strategy of paint"
@@ -12623,39 +12528,39 @@ msgstr ""
"Konnte nicht malen. Probieren Sie eine andere Kombination von Parametern "
"aus. Oder eine andere Strategie der Farbe"
-#: flatcamTools/ToolPaint.py:1414
+#: flatcamTools/ToolPaint.py:1417
msgid "Paint Single Done."
msgstr "Malen Sie Single Done."
-#: flatcamTools/ToolPaint.py:1439
+#: flatcamTools/ToolPaint.py:1442
msgid "PaintTool.paint_poly()"
msgstr "PaintTool.paint_poly()"
-#: flatcamTools/ToolPaint.py:1446 flatcamTools/ToolPaint.py:1915
+#: flatcamTools/ToolPaint.py:1449 flatcamTools/ToolPaint.py:1918
#: flatcamTools/ToolPaint.py:2383
msgid "Polygon Paint started ..."
msgstr "Polygonfarbe gestartet ..."
-#: flatcamTools/ToolPaint.py:1502 flatcamTools/ToolPaint.py:1972
+#: flatcamTools/ToolPaint.py:1505 flatcamTools/ToolPaint.py:1975
msgid "Painting polygons..."
msgstr "Polygone malen ..."
-#: flatcamTools/ToolPaint.py:1584 flatcamTools/ToolPaint.py:1587
-#: flatcamTools/ToolPaint.py:1589
+#: flatcamTools/ToolPaint.py:1587 flatcamTools/ToolPaint.py:1590
+#: flatcamTools/ToolPaint.py:1592
msgid "Paint Tool. Normal painting all task started."
msgstr "Malwerkzeug. Normales Malen alle Aufgabe gestartet."
-#: flatcamTools/ToolPaint.py:1623 flatcamTools/ToolPaint.py:1793
-#: flatcamTools/ToolPaint.py:2087 flatcamTools/ToolPaint.py:2263
+#: flatcamTools/ToolPaint.py:1626 flatcamTools/ToolPaint.py:1796
+#: flatcamTools/ToolPaint.py:2090 flatcamTools/ToolPaint.py:2264
msgid "Painting with tool diameter = "
msgstr "Lackieren mit Werkzeugdurchmesser ="
-#: flatcamTools/ToolPaint.py:1626 flatcamTools/ToolPaint.py:1796
-#: flatcamTools/ToolPaint.py:2090 flatcamTools/ToolPaint.py:2266
+#: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:1799
+#: flatcamTools/ToolPaint.py:2093 flatcamTools/ToolPaint.py:2267
msgid "started"
msgstr "gestartet"
-#: flatcamTools/ToolPaint.py:1688 flatcamTools/ToolPaint.py:1842
+#: flatcamTools/ToolPaint.py:1691 flatcamTools/ToolPaint.py:1845
msgid ""
"Could not do Paint All. Try a different combination of parameters. Or a "
"different Method of paint"
@@ -12663,25 +12568,25 @@ msgstr ""
"Paint All konnte nicht ausgeführt werden. Probieren Sie eine andere "
"Kombination von Parametern aus. Oder eine andere Farbmethode"
-#: flatcamTools/ToolPaint.py:1748
+#: flatcamTools/ToolPaint.py:1751
msgid "[success] Paint All Done."
msgstr "[success] Malen Sie alles fertig."
-#: flatcamTools/ToolPaint.py:1759 flatcamTools/ToolPaint.py:1762
-#: flatcamTools/ToolPaint.py:1764
+#: flatcamTools/ToolPaint.py:1762 flatcamTools/ToolPaint.py:1765
+#: flatcamTools/ToolPaint.py:1767
msgid "Paint Tool. Rest machining painting all task started."
msgstr "Malwerkzeug. Restbearbeitung Lackieren alle Aufgabe gestartet."
-#: flatcamTools/ToolPaint.py:1896 flatcamTools/ToolPaint.py:2364
+#: flatcamTools/ToolPaint.py:1899 flatcamTools/ToolPaint.py:2364
msgid "Paint All with Rest-Machining done."
msgstr "Malen Sie alles mit Restbearbeitung."
-#: flatcamTools/ToolPaint.py:2041 flatcamTools/ToolPaint.py:2044
-#: flatcamTools/ToolPaint.py:2046
+#: flatcamTools/ToolPaint.py:2044 flatcamTools/ToolPaint.py:2047
+#: flatcamTools/ToolPaint.py:2049
msgid "Paint Tool. Normal painting area task started."
msgstr "Malwerkzeug. Normale Malbereichsaufgabe gestartet."
-#: flatcamTools/ToolPaint.py:2152 flatcamTools/ToolPaint.py:2311
+#: flatcamTools/ToolPaint.py:2153 flatcamTools/ToolPaint.py:2311
#, python-format
msgid ""
"Could not do Paint All. Try a different combination of parameters. Or a "
@@ -12692,12 +12597,12 @@ msgstr ""
"Kombination von Parametern aus. Oder eine andere Farbmethode\n"
" %s"
-#: flatcamTools/ToolPaint.py:2211
+#: flatcamTools/ToolPaint.py:2212
msgid "[success] Paint Area Done."
msgstr "[success] Lackierbereich fertig."
-#: flatcamTools/ToolPaint.py:2222 flatcamTools/ToolPaint.py:2225
-#: flatcamTools/ToolPaint.py:2227
+#: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2226
+#: flatcamTools/ToolPaint.py:2228
msgid "Paint Tool. Rest machining painting area task started."
msgstr "Malwerkzeug. Restbearbeitung Lackierbereich Aufgabe gestartet."
@@ -12835,17 +12740,11 @@ msgstr ""
msgid "Generating panel ... Please wait."
msgstr "Panel wird erstellt ... Bitte warten."
-#: flatcamTools/ToolPanelize.py:628
-#, python-format
-msgid "Found %s geometries. Creating a final panel geometry ..."
-msgstr ""
-"%s Geometrien gefunden. Erstellen einer endgültigen Plattengeometrie ..."
-
-#: flatcamTools/ToolPanelize.py:643
+#: flatcamTools/ToolPanelize.py:631
msgid "Panel done..."
msgstr "Panel fertig ..."
-#: flatcamTools/ToolPanelize.py:646
+#: flatcamTools/ToolPanelize.py:634
#, python-brace-format
msgid ""
"{text} Too big for the constrain area. Final panel has {col} columns and "
@@ -12854,11 +12753,11 @@ msgstr ""
"{text} Zu groß für den Einschränkungsbereich. Das letzte Panel enthält {col} "
"Spalten und {row} Zeilen"
-#: flatcamTools/ToolPanelize.py:650
+#: flatcamTools/ToolPanelize.py:638
msgid "Generating panel..."
msgstr "Panel wird erstellt ..."
-#: flatcamTools/ToolPanelize.py:655
+#: flatcamTools/ToolPanelize.py:643
msgid "Panel created successfully."
msgstr "Panel erfolgreich erstellt."
@@ -13592,14 +13491,6 @@ msgstr " Kein Objekt ausgewählt. Bitte wählen Sie ein Objekt zum Umdrehen!"
msgid "CNCJob objects can't be mirrored/flipped."
msgstr "CNCJob-Objekte können nicht gespiegelt / gespiegelt werden."
-#: flatcamTools/ToolTransform.py:742
-msgid "Flip on the Y axis done"
-msgstr "Drehen Sie die Y-Achse fertig"
-
-#: flatcamTools/ToolTransform.py:752
-msgid "Flip on the X axis done"
-msgstr "Drehen Sie die X-Achse fertig"
-
#: flatcamTools/ToolTransform.py:769
msgid "No object selected. Please Select an object to shear/skew!"
msgstr ""
@@ -13609,6 +13500,11 @@ msgstr ""
msgid "CNCJob objects can't be skewed."
msgstr "CNCJob-Objekte können nicht verzerrt werden."
+#: flatcamTools/ToolTransform.py:803
+#, python-format
+msgid "[success] Skew on the %s axis done ..."
+msgstr "[success] Neigung auf der %s Achse abgeschlossen ..."
+
#: flatcamTools/ToolTransform.py:820
msgid "No object selected. Please Select an object to scale!"
msgstr "Kein Objekt ausgewählt. Bitte wählen Sie ein Objekt zum Skalieren!"
@@ -13686,6 +13582,157 @@ msgstr ""
"Kein Geometriename in args. Geben Sie einen Namen ein und versuchen Sie es "
"erneut."
+#~| msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
+#~ msgid "{e_code} Failed to parse file: {name}. {error}"
+#~ msgstr "{e_code} Datei konnte nicht analysiert werden: {name}. {error}"
+
+#~ msgid "[ERROR_NOTCL]"
+#~ msgstr "[ERROR_NOTCL]"
+
+#~ msgid "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Der Wert ist falsch eingegeben. Überprüfen Sie den Wert. %s"
+
+#~ msgid "[WARNING_NOTCL] Value is missing or wrong format. Add it and retry."
+#~ msgstr ""
+#~ "[WARNING_NOTCL] Wert fehlt oder falsches Format. Fügen Sie es hinzu und "
+#~ "versuchen Sie es erneut."
+
+#~ msgid "[ERROR_NOTCL] Cancelled."
+#~ msgstr "[ERROR_NOTCL] Abgebrochen."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
+#~ msgstr "[ERROR_NOTCL] Falsches Wertformat eingegeben, eine Zahl verwenden."
+
+#~ msgid "[WARNING_NOTCL] Select a tool in Tool Table"
+#~ msgstr "[WARNING_NOTCL] Wählen Sie ein Werkzeug in der Werkzeugtabelle aus"
+
+#~ msgid "[success] Deleted tool with dia: {del_dia} {units}"
+#~ msgstr "[success] Gelöschtes Werkzeug mit Durchmesser: {del_dia} {units}"
+
+#~ msgid "[ERROR] An internal error has ocurred. See shell.\n"
+#~ msgstr "[ERROR] Ein interner Fehler ist aufgetreten. Siehe Shell.\n"
+
+#~ msgid ""
+#~ "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it "
+#~ "and retry."
+#~ msgstr ""
+#~ "[WARNING_NOTCL] Werkzeugdurchmesserwert fehlt oder falsches Format. Fügen "
+#~ "Sie es hinzu und versuchen Sie es erneut."
+
+#~ msgid ""
+#~ "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and "
+#~ "retry."
+#~ msgstr ""
+#~ "[WARNING_NOTCL] Überlappungswert fehlt oder falsches Format. Fügen Sie es "
+#~ "hinzu und versuchen Sie es erneut."
+
+#~ msgid ""
+#~ "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it "
+#~ "and retry."
+#~ msgstr ""
+#~ "[WARNING_NOTCL] Randabstandswert fehlt oder falsches Format. Fügen Sie es "
+#~ "hinzu und versuchen Sie es erneut."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Falsches Werteformat für Drehen eingegeben, verwenden Sie "
+#~ "eine Zahl."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Falsches Werteformat für Skew X eingegeben, verwenden Sie "
+#~ "eine Zahl."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Falsches Werteformat für Skew Y eingegeben, verwenden Sie "
+#~ "eine Zahl."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Falsches Wertformat für Waage X eingegeben, verwenden Sie "
+#~ "eine Zahl."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Falsches Werteformat für Skala Y eingegeben, verwenden Sie "
+#~ "eine Zahl."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Falsches Wertformat für Offset X eingegeben, verwenden Sie "
+#~ "eine Zahl."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Falsches Wertformat für Offset Y eingegeben, verwenden Sie "
+#~ "eine Zahl."
+
+#~ msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Aufgrund von %s wurde keine Rotationsbewegung ausgeführt."
+
+#~ msgid "[success] Flip on the Y axis done ..."
+#~ msgstr "[success] Flip auf der Y-Achse erledigt ..."
+
+#~ msgid "[success] Flip on the X axis done ..."
+#~ msgstr "[success] Flip auf der X-Achse erledigt ..."
+
+#~ msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Aufgrund von %s wurde die Flip-Aktion nicht ausgeführt."
+
+#~ msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Aufgrund von %s wurde die Neigung-Aktion nicht ausgeführt."
+
+#~ msgid "[success] Scale on the %s axis done ..."
+#~ msgstr "[success] Skalieren auf der %s Achse fertig ..."
+
+#~ msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Aufgrund von %s wurde die Skalieren Aktion nicht ausgeführt."
+
+#~ msgid "[success] Offset on the %s axis done ..."
+#~ msgstr "[success] Offsetdruck auf der %s Achse fertiggestellt ..."
+
+#~ msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Aufgrund von %s wurde die Offsetdruck Aktion nicht "
+#~ "ausgeführt."
+
+#~ msgid ""
+#~ "[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: "
+#~ "{dia}"
+#~ msgstr ""
+#~ "[WARNING_NOTCL] Bearbeiten von MultiGeo-Geometrie, Werkzeug: {tool} mit "
+#~ "Durchmesser: {dia}"
+
+#~ msgid ""
+#~ "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it "
+#~ "and retry."
+#~ msgstr ""
+#~ "[WARNING_NOTCL] Blendengrößenwert fehlt oder falsches Format. Fügen Sie "
+#~ "es hinzu und versuchen Sie es erneut."
+
+#~ msgid "[ERROR] An internal error has occurred. See shell.\n"
+#~ msgstr "[ERROR] Ein interner Fehler ist aufgetreten. Siehe Shell.\n"
+
+#~ msgid "[success] Coordinates copied to clipboard."
+#~ msgstr "[success] Koordinaten in die Zwischenablage kopiert."
+
+#~ msgid ""
+#~ "[ERROR_NOTCL] Failed.\n"
+#~ "%s"
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Gescheitert.\n"
+#~ "%s"
+
+#~ msgid "Found %s geometries. Creating a final panel geometry ..."
+#~ msgstr ""
+#~ "%s Geometrien gefunden. Erstellen einer endgültigen Plattengeometrie ..."
+
#~ msgid "[ERROR_NOTCL] Could not load defaults file."
#~ msgstr "[ERROR_NOTCL] Standarddatei konnte nicht geladen werden."
diff --git a/locale/en/LC_MESSAGES/strings.mo b/locale/en/LC_MESSAGES/strings.mo
index f996dcff..2b3db2d5 100644
Binary files a/locale/en/LC_MESSAGES/strings.mo and b/locale/en/LC_MESSAGES/strings.mo differ
diff --git a/locale/en/LC_MESSAGES/strings.po b/locale/en/LC_MESSAGES/strings.po
index 734b6bbb..9e2d5e03 100644
--- a/locale/en/LC_MESSAGES/strings.po
+++ b/locale/en/LC_MESSAGES/strings.po
@@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"POT-Creation-Date: 2019-08-23 22:46+0300\n"
-"PO-Revision-Date: 2019-08-23 22:47+0300\n"
+"POT-Creation-Date: 2019-09-10 00:46+0300\n"
+"PO-Revision-Date: 2019-09-10 00:47+0300\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: en\n"
@@ -22,163 +22,209 @@ msgstr ""
"X-Poedit-SearchPathExcluded-1: doc\n"
"X-Poedit-SearchPathExcluded-2: tests\n"
-#: FlatCAMApp.py:1053
-msgid "[ERROR] Could not find the Language files. The App strings are missing."
-msgstr ""
-"[ERROR] Could not find the Language files. The App strings are missing."
+#: FlatCAMApp.py:1113
+#| msgid ""
+#| "[ERROR] Could not find the Language files. The App strings are missing."
+msgid "Could not find the Language files. The App strings are missing."
+msgstr "Could not find the Language files. The App strings are missing."
-#: FlatCAMApp.py:1587
+#: FlatCAMApp.py:1655
msgid "Detachable Tabs"
msgstr "Detachable Tabs"
-#: FlatCAMApp.py:1977
+#: FlatCAMApp.py:2067
+#| msgid ""
+#| "(Type help to get started)\n"
+#| "\n"
msgid ""
-"(Type help to get started)\n"
+"Open Source Software - Type help to get started\n"
"\n"
msgstr ""
-"(Type help to get started)\n"
+"Open Source Software - Type help to get started\n"
"\n"
-#: FlatCAMApp.py:2172 FlatCAMApp.py:6595
+#: FlatCAMApp.py:2270 FlatCAMApp.py:7220
msgid "New Project - Not saved"
msgstr "New Project - Not saved"
-#: FlatCAMApp.py:2205 ObjectCollection.py:80 flatcamTools/ToolImage.py:218
+#: FlatCAMApp.py:2320 ObjectCollection.py:80 flatcamTools/ToolImage.py:218
#: flatcamTools/ToolPcbWizard.py:301 flatcamTools/ToolPcbWizard.py:324
msgid "Open cancelled."
msgstr "Open cancelled."
-#: FlatCAMApp.py:2220
+#: FlatCAMApp.py:2335
msgid "Open Config file failed."
msgstr "Open Config file failed."
-#: FlatCAMApp.py:2234
+#: FlatCAMApp.py:2349
msgid "Open Script file failed."
msgstr "Open Script file failed."
-#: FlatCAMApp.py:2440
-msgid "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit."
-msgstr "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit."
+#: FlatCAMApp.py:2366
+#| msgid "Open Config file failed."
+msgid "Open Excellon file failed."
+msgstr "Open Excellon file failed."
-#: FlatCAMApp.py:2453
+#: FlatCAMApp.py:2377
+#| msgid "Open Config file failed."
+msgid "Open GCode file failed."
+msgstr "Open GCode file failed."
+
+#: FlatCAMApp.py:2388
+#| msgid "Open Script file failed."
+msgid "Open Gerber file failed."
+msgstr "Open Gerber file failed."
+
+#: FlatCAMApp.py:2652
+#| msgid ""
+#| "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit."
+msgid "Select a Geometry, Gerber or Excellon Object to edit."
+msgstr "Select a Geometry, Gerber or Excellon Object to edit."
+
+#: FlatCAMApp.py:2666
+#| msgid ""
+#| "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo "
+#| "Geometry is not possible.\n"
+#| "Edit only one geometry at a time."
msgid ""
-"[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo "
-"Geometry is not possible.\n"
+"Simultanoeus editing of tools geometry in a MultiGeo Geometry is not "
+"possible.\n"
"Edit only one geometry at a time."
msgstr ""
-"[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo "
-"Geometry is not possible.\n"
+"Simultanoeus editing of tools geometry in a MultiGeo Geometry is not "
+"possible.\n"
"Edit only one geometry at a time."
-#: FlatCAMApp.py:2507
-msgid "[WARNING_NOTCL] Editor is activated ..."
-msgstr "[WARNING_NOTCL] Editor is activated ..."
+#: FlatCAMApp.py:2721
+#| msgid "[WARNING_NOTCL] Editor is activated ..."
+msgid "Editor is activated ..."
+msgstr "Editor is activated ..."
-#: FlatCAMApp.py:2525
+#: FlatCAMApp.py:2739
msgid "Do you want to save the edited object?"
msgstr "Do you want to save the edited object?"
-#: FlatCAMApp.py:2526 flatcamGUI/FlatCAMGUI.py:1703
+#: FlatCAMApp.py:2740 flatcamGUI/FlatCAMGUI.py:1721
msgid "Close Editor"
msgstr "Close Editor"
-#: FlatCAMApp.py:2529 FlatCAMApp.py:3654 FlatCAMApp.py:5627 FlatCAMApp.py:6504
+#: FlatCAMApp.py:2743 FlatCAMApp.py:4028 FlatCAMApp.py:6224 FlatCAMApp.py:7128
#: FlatCAMTranslation.py:96 FlatCAMTranslation.py:169
-#: flatcamGUI/FlatCAMGUI.py:3945
+#: flatcamGUI/FlatCAMGUI.py:3996
msgid "Yes"
msgstr "Yes"
-#: FlatCAMApp.py:2530 FlatCAMApp.py:3655 FlatCAMApp.py:5628 FlatCAMApp.py:6505
+#: FlatCAMApp.py:2744 FlatCAMApp.py:4029 FlatCAMApp.py:6225 FlatCAMApp.py:7129
#: FlatCAMTranslation.py:97 FlatCAMTranslation.py:170
-#: flatcamGUI/FlatCAMGUI.py:3946 flatcamGUI/FlatCAMGUI.py:6372
-#: flatcamGUI/FlatCAMGUI.py:6702 flatcamTools/ToolNonCopperClear.py:145
+#: flatcamGUI/FlatCAMGUI.py:3997 flatcamGUI/FlatCAMGUI.py:6517
+#: flatcamGUI/FlatCAMGUI.py:6877 flatcamTools/ToolNonCopperClear.py:171
#: flatcamTools/ToolPaint.py:144
msgid "No"
msgstr "No"
-#: FlatCAMApp.py:2531 FlatCAMApp.py:3656 FlatCAMApp.py:4176 FlatCAMApp.py:5163
-#: FlatCAMApp.py:6506
+#: FlatCAMApp.py:2745 FlatCAMApp.py:4030 FlatCAMApp.py:4719 FlatCAMApp.py:5720
+#: FlatCAMApp.py:7130
msgid "Cancel"
msgstr "Cancel"
-#: FlatCAMApp.py:2558
-msgid "[WARNING] Object empty after edit."
-msgstr "[WARNING] Object empty after edit."
+#: FlatCAMApp.py:2773
+#| msgid "[WARNING] Object empty after edit."
+msgid "Object empty after edit."
+msgstr "Object empty after edit."
-#: FlatCAMApp.py:2580 FlatCAMApp.py:2599 FlatCAMApp.py:2611
-msgid "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update."
-msgstr ""
-"[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update."
+#: FlatCAMApp.py:2796 FlatCAMApp.py:2817 FlatCAMApp.py:2830
+#| msgid ""
+#| "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update."
+msgid "Select a Gerber, Geometry or Excellon Object to update."
+msgstr "Select a Gerber, Geometry or Excellon Object to update."
-#: FlatCAMApp.py:2583
-#, python-format
-msgid "[selected] %s is updated, returning to App..."
-msgstr "[selected] %s is updated, returning to App..."
+#: FlatCAMApp.py:2800
+#| msgid "[selected] %s is updated, returning to App..."
+msgid "is updated, returning to App..."
+msgstr "is updated, returning to App..."
-#: FlatCAMApp.py:2948
-msgid "[ERROR] Could not load defaults file."
-msgstr "[ERROR] Could not load defaults file."
+#: FlatCAMApp.py:3186 FlatCAMApp.py:3240 FlatCAMApp.py:3889
+#| msgid "[ERROR] Could not load defaults file."
+msgid "Could not load defaults file."
+msgstr "Could not load defaults file."
-#: FlatCAMApp.py:2960
-msgid "[ERROR] Failed to parse defaults file."
-msgstr "[ERROR] Failed to parse defaults file."
+#: FlatCAMApp.py:3199 FlatCAMApp.py:3249 FlatCAMApp.py:3899
+#| msgid "[ERROR] Failed to parse defaults file."
+msgid "Failed to parse defaults file."
+msgstr "Failed to parse defaults file."
-#: FlatCAMApp.py:2981 FlatCAMApp.py:2985
+#: FlatCAMApp.py:3220 FlatCAMApp.py:3224
msgid "Import FlatCAM Preferences"
msgstr "Import FlatCAM Preferences"
-#: FlatCAMApp.py:2991
-msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled."
-msgstr "[WARNING_NOTCL] FlatCAM preferences import cancelled."
+#: FlatCAMApp.py:3231
+#| msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled."
+msgid "FlatCAM preferences import cancelled."
+msgstr "FlatCAM preferences import cancelled."
-#: FlatCAMApp.py:2999 FlatCAMApp.py:3058 FlatCAMApp.py:3530
-msgid "[ERROR_NOTCL] Could not load defaults file."
-msgstr "[ERROR_NOTCL] Could not load defaults file."
+#: FlatCAMApp.py:3254
+#| msgid "[success] Imported Defaults from %s"
+msgid "Imported Defaults from"
+msgstr "Imported Defaults from"
-#: FlatCAMApp.py:3007 FlatCAMApp.py:3539
-msgid "[ERROR_NOTCL] Failed to parse defaults file."
-msgstr "[ERROR_NOTCL] Failed to parse defaults file."
-
-#: FlatCAMApp.py:3011
-#, python-format
-msgid "[success] Imported Defaults from %s"
-msgstr "[success] Imported Defaults from %s"
-
-#: FlatCAMApp.py:3026 FlatCAMApp.py:3031
+#: FlatCAMApp.py:3274 FlatCAMApp.py:3279
msgid "Export FlatCAM Preferences"
msgstr "Export FlatCAM Preferences"
-#: FlatCAMApp.py:3038
-msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled."
-msgstr "[WARNING_NOTCL] FlatCAM preferences export cancelled."
+#: FlatCAMApp.py:3287
+#| msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled."
+msgid "FlatCAM preferences export cancelled."
+msgstr "FlatCAM preferences export cancelled."
-#: FlatCAMApp.py:3046 FlatCAMApp.py:4974 FlatCAMApp.py:7446 FlatCAMApp.py:7559
-#: FlatCAMApp.py:7682 FlatCAMApp.py:7739 FlatCAMApp.py:7852 FlatCAMApp.py:7977
-#: FlatCAMObj.py:5888 flatcamTools/ToolSolderPaste.py:1405
+#: FlatCAMApp.py:3296 FlatCAMApp.py:5531 FlatCAMApp.py:8113 FlatCAMApp.py:8229
+#: FlatCAMApp.py:8355 FlatCAMApp.py:8414 FlatCAMApp.py:8528 FlatCAMApp.py:8657
+#: FlatCAMObj.py:6167 flatcamTools/ToolSolderPaste.py:1428
+#| msgid ""
+#| "[WARNING] Permission denied, saving not possible.\n"
+#| "Most likely another app is holding the file open and not accessible."
msgid ""
-"[WARNING] Permission denied, saving not possible.\n"
+"Permission denied, saving not possible.\n"
"Most likely another app is holding the file open and not accessible."
msgstr ""
-"[WARNING] Permission denied, saving not possible.\n"
+"Permission denied, saving not possible.\n"
"Most likely another app is holding the file open and not accessible."
-#: FlatCAMApp.py:3077 FlatCAMApp.py:3584
-msgid "[ERROR_NOTCL] Failed to write defaults to file."
-msgstr "[ERROR_NOTCL] Failed to write defaults to file."
+#: FlatCAMApp.py:3309
+#| msgid "[ERROR] Could not load defaults file."
+msgid "Could not load preferences file."
+msgstr "Could not load preferences file."
-#: FlatCAMApp.py:3137
-msgid "[ERROR_NOTCL] Failed to open recent files file for writing."
-msgstr "[ERROR_NOTCL] Failed to open recent files file for writing."
+#: FlatCAMApp.py:3329 FlatCAMApp.py:3945
+#| msgid "[ERROR_NOTCL] Failed to write defaults to file."
+msgid "Failed to write defaults to file."
+msgstr "Failed to write defaults to file."
-#: FlatCAMApp.py:3147
-msgid "[ERROR_NOTCL] Failed to open recent projects file for writing."
-msgstr "[ERROR_NOTCL] Failed to open recent projects file for writing."
+#: FlatCAMApp.py:3335
+#| msgid "Export Preferences"
+msgid "Exported preferences to"
+msgstr "Exported preferences to"
-#: FlatCAMApp.py:3229 camlib.py:4501
-msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
-msgstr "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
+#: FlatCAMApp.py:3352
+#| msgid "Import FlatCAM Preferences"
+msgid "FlatCAM Preferences Folder opened."
+msgstr "FlatCAM Preferences Folder opened."
-#: FlatCAMApp.py:3230
+#: FlatCAMApp.py:3425
+#| msgid "[ERROR_NOTCL] Failed to open recent files file for writing."
+msgid "Failed to open recent files file for writing."
+msgstr "Failed to open recent files file for writing."
+
+#: FlatCAMApp.py:3436
+#| msgid "[ERROR_NOTCL] Failed to open recent projects file for writing."
+msgid "Failed to open recent projects file for writing."
+msgstr "Failed to open recent projects file for writing."
+
+#: FlatCAMApp.py:3519 camlib.py:4806 flatcamTools/ToolSolderPaste.py:1214
+#| msgid "[ERROR] An internal error has ocurred. See shell.\n"
+msgid "An internal error has ocurred. See shell.\n"
+msgstr "An internal error has ocurred. See shell.\n"
+
+#: FlatCAMApp.py:3520
#, python-brace-format
msgid ""
"Object ({kind}) failed because: {error} \n"
@@ -187,11 +233,11 @@ msgstr ""
"Object ({kind}) failed because: {error} \n"
"\n"
-#: FlatCAMApp.py:3250
+#: FlatCAMApp.py:3541
msgid "Converting units to "
msgstr "Converting units to "
-#: FlatCAMApp.py:3327 FlatCAMApp.py:3330 FlatCAMApp.py:3333 FlatCAMApp.py:3336
+#: FlatCAMApp.py:3637 FlatCAMApp.py:3640 FlatCAMApp.py:3643 FlatCAMApp.py:3646
#, python-brace-format
msgid ""
"[selected] {kind} created/selected: {name}"
@@ -200,58 +246,79 @@ msgstr ""
"[selected] {kind} created/selected: {name}"
"span>"
-#: FlatCAMApp.py:3432
+#: FlatCAMApp.py:3663 FlatCAMApp.py:5787 FlatCAMObj.py:225 FlatCAMObj.py:240
+#: FlatCAMObj.py:256 FlatCAMObj.py:336 flatcamTools/ToolMove.py:187
+#| msgid "Plot kind"
+msgid "Plotting"
+msgstr "Plotting"
+
+#: FlatCAMApp.py:3782
#, python-brace-format
+#| msgid ""
+#| "FlatCAM
Version {version} {beta} ({date}) - "
+#| "{arch}
2D Computer-Aided Printed Circuit Board
Manufacturing."
+#| "
(c) 2014-2019 Juan Pablo Caram
Main "
+#| "Contributors:
Denis Hayrullin
Kamil Sopko
Marius "
+#| "Stanciu
Matthieu Berthomé
and many others found here."
+#| "a>
Development is done here.
DOWNLOAD area here.
"
msgid ""
"FlatCAM
Version {version} {beta} ({date}) - "
"{arch}
2D Computer-Aided Printed Circuit Board
Manufacturing."
-"
(c) 2014-2019 Juan Pablo Caram
Main Contributors:"
-"B>
Denis Hayrullin
Kamil Sopko
Marius Stanciu
Matthieu "
-"Berthomé
and many others found here.
Development is done "
-"here."
-"a>
DOWNLOAD area here.
"
+"
License:
Licensed under MIT license (2014 - 2019)
by "
+"(c)Juan Pablo Caram
Programmers:
Denis Hayrullin
Kamil "
+"Sopko
Marius Stanciu
Matthieu Berthomé
and many others found here.
Development is done here.
DOWNLOAD area here.
"
msgstr ""
"FlatCAM
Version {version} {beta} ({date}) - "
"{arch}
2D Computer-Aided Printed Circuit Board
Manufacturing."
-"
(c) 2014-2019 Juan Pablo Caram
Main Contributors:"
-"B>
Denis Hayrullin
Kamil Sopko
Marius Stanciu
Matthieu "
-"Berthomé
and many others found here.
Development is done "
-"here."
-"a>
DOWNLOAD area here.
"
+"
License:
Licensed under MIT license (2014 - 2019)
by "
+"(c)Juan Pablo Caram
Programmers:
Denis Hayrullin
Kamil "
+"Sopko
Marius Stanciu
Matthieu Berthomé
and many others found here.
Development is done here.
DOWNLOAD area here.
"
-#: FlatCAMApp.py:3465
+#: FlatCAMApp.py:3818
msgid "Close"
msgstr "Close"
-#: FlatCAMApp.py:3588
-msgid "[success] Defaults saved."
-msgstr "[success] Defaults saved."
+#: FlatCAMApp.py:3950 FlatCAMApp.py:6234
+#| msgid "[success] Preferences saved."
+msgid "Preferences saved."
+msgstr "Preferences saved."
-#: FlatCAMApp.py:3612
-msgid "[ERROR_NOTCL] Could not load factory defaults file."
-msgstr "[ERROR_NOTCL] Could not load factory defaults file."
+#: FlatCAMApp.py:3978
+#| msgid "[ERROR_NOTCL] Could not load factory defaults file."
+msgid "Could not load factory defaults file."
+msgstr "Could not load factory defaults file."
-#: FlatCAMApp.py:3621
-msgid "[ERROR_NOTCL] Failed to parse factory defaults file."
-msgstr "[ERROR_NOTCL] Failed to parse factory defaults file."
+#: FlatCAMApp.py:3988
+#| msgid "[ERROR_NOTCL] Failed to parse factory defaults file."
+msgid "Failed to parse factory defaults file."
+msgstr "Failed to parse factory defaults file."
-#: FlatCAMApp.py:3635
-msgid "[ERROR_NOTCL] Failed to write factory defaults to file."
-msgstr "[ERROR_NOTCL] Failed to write factory defaults to file."
+#: FlatCAMApp.py:4003
+#| msgid "[ERROR_NOTCL] Failed to write factory defaults to file."
+msgid "Failed to write factory defaults to file."
+msgstr "Failed to write factory defaults to file."
-#: FlatCAMApp.py:3639
+#: FlatCAMApp.py:4007
msgid "Factory defaults saved."
msgstr "Factory defaults saved."
-#: FlatCAMApp.py:3644 flatcamGUI/FlatCAMGUI.py:3282
-msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
-msgstr "[WARNING_NOTCL] Application is saving the project. Please wait ..."
+#: FlatCAMApp.py:4018
+#| msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
+msgid "Application is saving the project. Please wait ..."
+msgstr "Application is saving the project. Please wait ..."
-#: FlatCAMApp.py:3649 FlatCAMTranslation.py:164
+#: FlatCAMApp.py:4023 FlatCAMTranslation.py:164
msgid ""
"There are files/objects modified in FlatCAM. \n"
"Do you want to Save the project?"
@@ -259,60 +326,92 @@ msgstr ""
"There are files/objects modified in FlatCAM. \n"
"Do you want to Save the project?"
-#: FlatCAMApp.py:3652 FlatCAMApp.py:6502 FlatCAMTranslation.py:167
+#: FlatCAMApp.py:4026 FlatCAMApp.py:7126 FlatCAMTranslation.py:167
msgid "Save changes"
msgstr "Save changes"
-#: FlatCAMApp.py:3808
+#: FlatCAMApp.py:4237
+#| msgid "[success] Excellon file exported to %s"
+msgid "[success] Selected Excellon file extensions registered with FlatCAM."
+msgstr "[success] Selected Excellon file extensions registered with FlatCAM."
+
+#: FlatCAMApp.py:4259
+msgid "Selected GCode file extensions registered with FlatCAM."
+msgstr "Selected GCode file extensions registered with FlatCAM."
+
+#: FlatCAMApp.py:4281
+msgid "Selected Gerber file extensions registered with FlatCAM."
+msgstr "Selected Gerber file extensions registered with FlatCAM."
+
+#: FlatCAMApp.py:4305
+#| msgid ""
+#| "[ERROR] Failed join. The Geometry objects are of different types.\n"
+#| "At least one is MultiGeo type and the other is SingleGeo type. A "
+#| "possibility is to convert from one to another and retry joining \n"
+#| "but in the case of converting from MultiGeo to SingleGeo, informations "
+#| "may be lost and the result may not be what was expected. \n"
+#| "Check the generated GCODE."
msgid ""
-"[ERROR] Failed join. The Geometry objects are of different types.\n"
+"Failed join. The Geometry objects are of different types.\n"
"At least one is MultiGeo type and the other is SingleGeo type. A possibility "
"is to convert from one to another and retry joining \n"
"but in the case of converting from MultiGeo to SingleGeo, informations may "
"be lost and the result may not be what was expected. \n"
"Check the generated GCODE."
msgstr ""
-"[ERROR] Failed join. The Geometry objects are of different types.\n"
+"Failed join. The Geometry objects are of different types.\n"
"At least one is MultiGeo type and the other is SingleGeo type. A possibility "
"is to convert from one to another and retry joining \n"
"but in the case of converting from MultiGeo to SingleGeo, informations may "
"be lost and the result may not be what was expected. \n"
"Check the generated GCODE."
-#: FlatCAMApp.py:3849
-msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects."
-msgstr "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects."
+#: FlatCAMApp.py:4347
+#| msgid ""
+#| "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects."
+msgid "Failed. Excellon joining works only on Excellon objects."
+msgstr "Failed. Excellon joining works only on Excellon objects."
-#: FlatCAMApp.py:3871
-msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects."
-msgstr "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects."
+#: FlatCAMApp.py:4370
+#| msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects."
+msgid "Failed. Gerber joining works only on Gerber objects."
+msgstr "Failed. Gerber joining works only on Gerber objects."
-#: FlatCAMApp.py:3886 FlatCAMApp.py:3911
-msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again."
-msgstr "[ERROR_NOTCL] Failed. Select a Geometry Object and try again."
+#: FlatCAMApp.py:4395 FlatCAMApp.py:4432
+#| msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again."
+msgid "Failed. Select a Geometry Object and try again."
+msgstr "Failed. Select a Geometry Object and try again."
-#: FlatCAMApp.py:3890 FlatCAMApp.py:3915
+#: FlatCAMApp.py:4400
+#| msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
+msgid "Expected a FlatCAMGeometry, got"
+msgstr "Expected a FlatCAMGeometry, got"
+
+#: FlatCAMApp.py:4414
+#| msgid "[success] A Geometry object was converted to MultiGeo type."
+msgid "A Geometry object was converted to MultiGeo type."
+msgstr "A Geometry object was converted to MultiGeo type."
+
+#: FlatCAMApp.py:4437
#, python-format
-msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
-msgstr "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
+#| msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
+msgid "Expected a FlatCAMGeometry, got %s"
+msgstr "Expected a FlatCAMGeometry, got %s"
-#: FlatCAMApp.py:3903
-msgid "[success] A Geometry object was converted to MultiGeo type."
-msgstr "[success] A Geometry object was converted to MultiGeo type."
+#: FlatCAMApp.py:4452
+#| msgid "[success] A Geometry object was converted to SingleGeo type."
+msgid "A Geometry object was converted to SingleGeo type."
+msgstr "A Geometry object was converted to SingleGeo type."
-#: FlatCAMApp.py:3929
-msgid "[success] A Geometry object was converted to SingleGeo type."
-msgstr "[success] A Geometry object was converted to SingleGeo type."
-
-#: FlatCAMApp.py:4170
+#: FlatCAMApp.py:4713
msgid "Toggle Units"
msgstr "Toggle Units"
-#: FlatCAMApp.py:4172
+#: FlatCAMApp.py:4715
msgid "Change project units ..."
msgstr "Change project units ..."
-#: FlatCAMApp.py:4173
+#: FlatCAMApp.py:4716
msgid ""
"Changing the units of the project causes all geometrical properties of all "
"objects to be scaled accordingly.\n"
@@ -322,68 +421,75 @@ msgstr ""
"objects to be scaled accordingly.\n"
"Continue?"
-#: FlatCAMApp.py:4175 FlatCAMApp.py:5057 FlatCAMApp.py:5162 FlatCAMApp.py:6780
-#: FlatCAMApp.py:6793 FlatCAMApp.py:7033 FlatCAMApp.py:7043
+#: FlatCAMApp.py:4718 FlatCAMApp.py:5614 FlatCAMApp.py:5719 FlatCAMApp.py:7419
+#: FlatCAMApp.py:7433 FlatCAMApp.py:7688 FlatCAMApp.py:7699
msgid "Ok"
msgstr "Ok"
-#: FlatCAMApp.py:4223
+#: FlatCAMApp.py:4767
#, python-format
-msgid "[success] Converted units to %s"
-msgstr "[success] Converted units to %s"
+#| msgid "Converting units to "
+msgid "Converted units to %s"
+msgstr "Converted units to %s"
-#: FlatCAMApp.py:4234
-msgid "[WARNING_NOTCL] Units conversion cancelled."
-msgstr "[WARNING_NOTCL] Units conversion cancelled."
+#: FlatCAMApp.py:4779
+#| msgid "[WARNING_NOTCL] Units conversion cancelled."
+msgid " Units conversion cancelled."
+msgstr " Units conversion cancelled."
-#: FlatCAMApp.py:4923
+#: FlatCAMApp.py:5477
msgid "Open file"
msgstr "Open file"
-#: FlatCAMApp.py:4954 FlatCAMApp.py:4959
+#: FlatCAMApp.py:5508 FlatCAMApp.py:5513
msgid "Export G-Code ..."
msgstr "Export G-Code ..."
-#: FlatCAMApp.py:4962
-msgid "[WARNING_NOTCL] Export Code cancelled."
-msgstr "[WARNING_NOTCL] Export Code cancelled."
+#: FlatCAMApp.py:5517
+#| msgid "Export PNG cancelled."
+msgid "Export Code cancelled."
+msgstr "Export Code cancelled."
-#: FlatCAMApp.py:4971
-msgid "[WARNING] No such file or directory"
-msgstr "[WARNING] No such file or directory"
+#: FlatCAMApp.py:5527 FlatCAMObj.py:6163 flatcamTools/ToolSolderPaste.py:1424
+#| msgid "[WARNING] No such file or directory"
+msgid "No such file or directory"
+msgstr "No such file or directory"
-#: FlatCAMApp.py:4982
+#: FlatCAMApp.py:5539
#, python-format
msgid "Saved to: %s"
msgstr "Saved to: %s"
-#: FlatCAMApp.py:5045 FlatCAMApp.py:5078 FlatCAMApp.py:5089 FlatCAMApp.py:5100
-#: flatcamTools/ToolNonCopperClear.py:693 flatcamTools/ToolSolderPaste.py:772
-msgid ""
-"[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
-"format."
-msgstr ""
-"[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
-"format."
+#: FlatCAMApp.py:5602 FlatCAMApp.py:5635 FlatCAMApp.py:5646 FlatCAMApp.py:5657
+#: flatcamTools/ToolNonCopperClear.py:915 flatcamTools/ToolSolderPaste.py:774
+#| msgid ""
+#| "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in "
+#| "Float format."
+msgid "Please enter a tool diameter with non-zero value, in Float format."
+msgstr "Please enter a tool diameter with non-zero value, in Float format."
-#: FlatCAMApp.py:5050 FlatCAMApp.py:5083 FlatCAMApp.py:5094 FlatCAMApp.py:5105
-#: flatcamGUI/FlatCAMGUI.py:3138
+#: FlatCAMApp.py:5607 FlatCAMApp.py:5640 FlatCAMApp.py:5662
+#| msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
+msgid "Adding Tool cancelled"
+msgstr "Adding Tool cancelled"
+
+#: FlatCAMApp.py:5610
+msgid ""
+"Adding Tool works only when Advanced is checked.\n"
+"Go to Preferences -> General - Show Advanced Options."
+msgstr ""
+"Adding Tool works only when Advanced is checked.\n"
+"Go to Preferences -> General - Show Advanced Options."
+
+#: FlatCAMApp.py:5651 flatcamGUI/FlatCAMGUI.py:3168
msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
msgstr "[WARNING_NOTCL] Adding Tool cancelled ..."
-#: FlatCAMApp.py:5053
-msgid ""
-"Adding Tool works only when Advanced is checked.\n"
-"Go to Preferences -> General - Show Advanced Options."
-msgstr ""
-"Adding Tool works only when Advanced is checked.\n"
-"Go to Preferences -> General - Show Advanced Options."
-
-#: FlatCAMApp.py:5157
+#: FlatCAMApp.py:5714
msgid "Delete objects"
msgstr "Delete objects"
-#: FlatCAMApp.py:5160
+#: FlatCAMApp.py:5717
msgid ""
"Are you sure you want to permanently delete\n"
"the selected objects?"
@@ -391,65 +497,88 @@ msgstr ""
"Are you sure you want to permanently delete\n"
"the selected objects?"
-#: FlatCAMApp.py:5189
-msgid "Object(s) deleted ..."
-msgstr "Object(s) deleted ..."
+#: FlatCAMApp.py:5747
+#| msgid "Object(s) deleted ..."
+msgid "Object(s) deleted"
+msgstr "Object(s) deleted"
-#: FlatCAMApp.py:5193
+#: FlatCAMApp.py:5751
msgid "Failed. No object(s) selected..."
msgstr "Failed. No object(s) selected..."
-#: FlatCAMApp.py:5195
+#: FlatCAMApp.py:5753
msgid "Save the work in Editor and try again ..."
msgstr "Save the work in Editor and try again ..."
-#: FlatCAMApp.py:5225
+#: FlatCAMApp.py:5771
+#| msgid "Object(s) deleted ..."
+msgid "Object deleted"
+msgstr "Object deleted"
+
+#: FlatCAMApp.py:5795
msgid "Click to set the origin ..."
msgstr "Click to set the origin ..."
-#: FlatCAMApp.py:5237
+#: FlatCAMApp.py:5819
+#| msgid "Se&t Origin\tO"
+msgid "Setting Origin..."
+msgstr "Setting Origin..."
+
+#: FlatCAMApp.py:5831
+msgid "Origin set"
+msgstr "Origin set"
+
+#: FlatCAMApp.py:5846
msgid "Jump to ..."
msgstr "Jump to ..."
-#: FlatCAMApp.py:5238
+#: FlatCAMApp.py:5847
msgid "Enter the coordinates in format X,Y:"
msgstr "Enter the coordinates in format X,Y:"
-#: FlatCAMApp.py:5245
+#: FlatCAMApp.py:5854
msgid "Wrong coordinates. Enter coordinates in format: X,Y"
msgstr "Wrong coordinates. Enter coordinates in format: X,Y"
-#: FlatCAMApp.py:5263 flatcamEditors/FlatCAMExcEditor.py:3422
-#: flatcamEditors/FlatCAMExcEditor.py:3429
-#: flatcamEditors/FlatCAMGeoEditor.py:3747
-#: flatcamEditors/FlatCAMGeoEditor.py:3761
-#: flatcamEditors/FlatCAMGrbEditor.py:1057
-#: flatcamEditors/FlatCAMGrbEditor.py:1160
-#: flatcamEditors/FlatCAMGrbEditor.py:1433
-#: flatcamEditors/FlatCAMGrbEditor.py:1690
-#: flatcamEditors/FlatCAMGrbEditor.py:4153
-#: flatcamEditors/FlatCAMGrbEditor.py:4167 flatcamGUI/FlatCAMGUI.py:2530
-#: flatcamGUI/FlatCAMGUI.py:2542
-msgid "[success] Done."
-msgstr "[success] Done."
+#: FlatCAMApp.py:5873 flatcamEditors/FlatCAMExcEditor.py:3445
+#: flatcamEditors/FlatCAMExcEditor.py:3453
+#: flatcamEditors/FlatCAMGeoEditor.py:3791
+#: flatcamEditors/FlatCAMGeoEditor.py:3806
+#: flatcamEditors/FlatCAMGrbEditor.py:1067
+#: flatcamEditors/FlatCAMGrbEditor.py:1171
+#: flatcamEditors/FlatCAMGrbEditor.py:1445
+#: flatcamEditors/FlatCAMGrbEditor.py:1703
+#: flatcamEditors/FlatCAMGrbEditor.py:4182
+#: flatcamEditors/FlatCAMGrbEditor.py:4197
+msgid "Done."
+msgstr "Done."
-#: FlatCAMApp.py:5395 FlatCAMApp.py:5462
-msgid "[WARNING_NOTCL] No object is selected. Select an object and try again."
-msgstr "[WARNING_NOTCL] No object is selected. Select an object and try again."
+#: FlatCAMApp.py:6007 FlatCAMApp.py:6075
+#| msgid ""
+#| "[WARNING_NOTCL] No object is selected. Select an object and try again."
+msgid "No object is selected. Select an object and try again."
+msgstr "No object is selected. Select an object and try again."
-#: FlatCAMApp.py:5503
-msgid "[success] Origin set ..."
-msgstr "[success] Origin set ..."
+#: FlatCAMApp.py:6095
+msgid ""
+"Aborting. The current task will be gracefully closed as soon as possible..."
+msgstr ""
+"Aborting. The current task will be gracefully closed as soon as possible..."
-#: FlatCAMApp.py:5522 flatcamGUI/GUIElements.py:1439
+#: FlatCAMApp.py:6101
+msgid "The current task was gracefully closed on user request..."
+msgstr "The current task was gracefully closed on user request..."
+
+#: FlatCAMApp.py:6118 flatcamGUI/GUIElements.py:1443
msgid "Preferences"
msgstr "Preferences"
-#: FlatCAMApp.py:5588
-msgid "[WARNING_NOTCL] Preferences edited but not saved."
-msgstr "[WARNING_NOTCL] Preferences edited but not saved."
+#: FlatCAMApp.py:6185
+#| msgid "[WARNING_NOTCL] Preferences edited but not saved."
+msgid "Preferences edited but not saved."
+msgstr "Preferences edited but not saved."
-#: FlatCAMApp.py:5622
+#: FlatCAMApp.py:6219
msgid ""
"One or more values are changed.\n"
"Do you want to save the Preferences?"
@@ -457,164 +586,175 @@ msgstr ""
"One or more values are changed.\n"
"Do you want to save the Preferences?"
-#: FlatCAMApp.py:5624 flatcamGUI/FlatCAMGUI.py:198 flatcamGUI/FlatCAMGUI.py:979
+#: FlatCAMApp.py:6221 flatcamGUI/FlatCAMGUI.py:198 flatcamGUI/FlatCAMGUI.py:989
msgid "Save Preferences"
msgstr "Save Preferences"
-#: FlatCAMApp.py:5636
-msgid "[success] Preferences saved."
-msgstr "[success] Preferences saved."
+#: FlatCAMApp.py:6250
+#| msgid "[WARNING_NOTCL] No object selected to Flip on Y axis."
+msgid "No object selected to Flip on Y axis."
+msgstr "No object selected to Flip on Y axis."
-#: FlatCAMApp.py:5651
-msgid "[WARNING_NOTCL] No object selected to Flip on Y axis."
-msgstr "[WARNING_NOTCL] No object selected to Flip on Y axis."
+#: FlatCAMApp.py:6276
+#| msgid "[success] Flip on Y axis done."
+msgid "Flip on Y axis done."
+msgstr "Flip on Y axis done."
-#: FlatCAMApp.py:5676
-msgid "[success] Flip on Y axis done."
-msgstr "[success] Flip on Y axis done."
+#: FlatCAMApp.py:6279 FlatCAMApp.py:6322
+#: flatcamEditors/FlatCAMGrbEditor.py:5624
+#| msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
+msgid "Flip action was not executed."
+msgstr "Flip action was not executed."
-#: FlatCAMApp.py:5678 FlatCAMApp.py:5718
-#: flatcamEditors/FlatCAMGeoEditor.py:1357
-#: flatcamEditors/FlatCAMGrbEditor.py:5581 flatcamTools/ToolTransform.py:753
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
-msgstr "[ERROR_NOTCL] Due of %s, Flip action was not executed."
+#: FlatCAMApp.py:6293
+#| msgid "[WARNING_NOTCL] No object selected to Flip on X axis."
+msgid "No object selected to Flip on X axis."
+msgstr "No object selected to Flip on X axis."
-#: FlatCAMApp.py:5691
-msgid "[WARNING_NOTCL] No object selected to Flip on X axis."
-msgstr "[WARNING_NOTCL] No object selected to Flip on X axis."
+#: FlatCAMApp.py:6319
+#| msgid "[success] Flip on X axis done."
+msgid "Flip on X axis done."
+msgstr "Flip on X axis done."
-#: FlatCAMApp.py:5716
-msgid "[success] Flip on X axis done."
-msgstr "[success] Flip on X axis done."
+#: FlatCAMApp.py:6336
+#| msgid "[WARNING_NOTCL] No object selected to Rotate."
+msgid "No object selected to Rotate."
+msgstr "No object selected to Rotate."
-#: FlatCAMApp.py:5731
-msgid "[WARNING_NOTCL] No object selected to Rotate."
-msgstr "[WARNING_NOTCL] No object selected to Rotate."
-
-#: FlatCAMApp.py:5734 FlatCAMApp.py:5779 FlatCAMApp.py:5810
+#: FlatCAMApp.py:6339 FlatCAMApp.py:6387 FlatCAMApp.py:6420
msgid "Transform"
msgstr "Transform"
-#: FlatCAMApp.py:5734 FlatCAMApp.py:5779 FlatCAMApp.py:5810
+#: FlatCAMApp.py:6339 FlatCAMApp.py:6387 FlatCAMApp.py:6420
msgid "Enter the Angle value:"
msgstr "Enter the Angle value:"
-#: FlatCAMApp.py:5764
-msgid "[success] Rotation done."
-msgstr "[success] Rotation done."
+#: FlatCAMApp.py:6370
+#| msgid "[success] Rotation done."
+msgid "Rotation done."
+msgstr "Rotation done."
-#: FlatCAMApp.py:5766 flatcamEditors/FlatCAMGeoEditor.py:1300
-#: flatcamEditors/FlatCAMGrbEditor.py:5510 flatcamTools/ToolTransform.py:682
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
-msgstr "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
+#: FlatCAMApp.py:6373
+#| msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
+msgid "Rotation movement was not executed."
+msgstr "Rotation movement was not executed."
-#: FlatCAMApp.py:5777
-msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
-msgstr "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
+#: FlatCAMApp.py:6385
+#| msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
+msgid "No object selected to Skew/Shear on X axis."
+msgstr "No object selected to Skew/Shear on X axis."
-#: FlatCAMApp.py:5798
-msgid "[success] Skew on X axis done."
-msgstr "[success] Skew on X axis done."
+#: FlatCAMApp.py:6407
+#| msgid "Skew on X axis ..."
+msgid "Skew on X axis done."
+msgstr "Skew on X axis done."
-#: FlatCAMApp.py:5808
-msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
-msgstr "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
+#: FlatCAMApp.py:6418
+#| msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
+msgid "No object selected to Skew/Shear on Y axis."
+msgstr "No object selected to Skew/Shear on Y axis."
-#: FlatCAMApp.py:5829
-msgid "[success] Skew on Y axis done."
-msgstr "[success] Skew on Y axis done."
+#: FlatCAMApp.py:6440
+#| msgid "Skew on Y axis ..."
+msgid "Skew on Y axis done."
+msgstr "Skew on Y axis done."
-#: FlatCAMApp.py:5880
+#: FlatCAMApp.py:6491
msgid "Grid On/Off"
msgstr "Grid On/Off"
-#: FlatCAMApp.py:5893 flatcamEditors/FlatCAMGeoEditor.py:939
-#: flatcamEditors/FlatCAMGrbEditor.py:2457
-#: flatcamEditors/FlatCAMGrbEditor.py:5099 flatcamGUI/ObjectUI.py:990
+#: FlatCAMApp.py:6504 flatcamEditors/FlatCAMGeoEditor.py:940
+#: flatcamEditors/FlatCAMGrbEditor.py:2477
+#: flatcamEditors/FlatCAMGrbEditor.py:5134 flatcamGUI/ObjectUI.py:1053
#: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:207
-#: flatcamTools/ToolNonCopperClear.py:170 flatcamTools/ToolPaint.py:176
+#: flatcamTools/ToolNonCopperClear.py:237 flatcamTools/ToolPaint.py:176
#: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:483
#: flatcamTools/ToolTransform.py:338
msgid "Add"
msgstr "Add"
-#: FlatCAMApp.py:5894 FlatCAMObj.py:3398
-#: flatcamEditors/FlatCAMGrbEditor.py:2462 flatcamGUI/FlatCAMGUI.py:545
-#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:1701
-#: flatcamGUI/FlatCAMGUI.py:2069 flatcamGUI/ObjectUI.py:1006
-#: flatcamTools/ToolNonCopperClear.py:182 flatcamTools/ToolPaint.py:188
+#: FlatCAMApp.py:6505 FlatCAMObj.py:3566
+#: flatcamEditors/FlatCAMGrbEditor.py:2482 flatcamGUI/FlatCAMGUI.py:545
+#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:1719
+#: flatcamGUI/FlatCAMGUI.py:2094 flatcamGUI/ObjectUI.py:1069
+#: flatcamTools/ToolNonCopperClear.py:249 flatcamTools/ToolPaint.py:188
#: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:485
msgid "Delete"
msgstr "Delete"
-#: FlatCAMApp.py:5907
+#: FlatCAMApp.py:6518
msgid "New Grid ..."
msgstr "New Grid ..."
-#: FlatCAMApp.py:5908
+#: FlatCAMApp.py:6519
msgid "Enter a Grid Value:"
msgstr "Enter a Grid Value:"
-#: FlatCAMApp.py:5916 FlatCAMApp.py:5943
-msgid ""
-"[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
-"format."
-msgstr ""
-"[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
-"format."
+#: FlatCAMApp.py:6527 FlatCAMApp.py:6554
+#| msgid ""
+#| "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
+#| "format."
+msgid "Please enter a grid value with non-zero value, in Float format."
+msgstr "Please enter a grid value with non-zero value, in Float format."
-#: FlatCAMApp.py:5922
-msgid "[success] New Grid added ..."
-msgstr "[success] New Grid added ..."
+#: FlatCAMApp.py:6533
+#| msgid "New Grid ..."
+msgid "New Grid added"
+msgstr "New Grid added"
-#: FlatCAMApp.py:5925
-msgid "[WARNING_NOTCL] Grid already exists ..."
-msgstr "[WARNING_NOTCL] Grid already exists ..."
+#: FlatCAMApp.py:6536
+#| msgid "[WARNING_NOTCL] Grid already exists ..."
+msgid "Grid already exists"
+msgstr "Grid already exists"
-#: FlatCAMApp.py:5928
-msgid "[WARNING_NOTCL] Adding New Grid cancelled ..."
-msgstr "[WARNING_NOTCL] Adding New Grid cancelled ..."
+#: FlatCAMApp.py:6539
+#| msgid "[WARNING_NOTCL] Adding New Grid cancelled ..."
+msgid "Adding New Grid cancelled"
+msgstr "Adding New Grid cancelled"
-#: FlatCAMApp.py:5950
-msgid "[ERROR_NOTCL] Grid Value does not exist ..."
-msgstr "[ERROR_NOTCL] Grid Value does not exist ..."
+#: FlatCAMApp.py:6561
+#| msgid "[ERROR_NOTCL] Grid Value does not exist ..."
+msgid " Grid Value does not exist"
+msgstr " Grid Value does not exist"
-#: FlatCAMApp.py:5953
-msgid "[success] Grid Value deleted ..."
-msgstr "[success] Grid Value deleted ..."
+#: FlatCAMApp.py:6564
+#| msgid "[success] Grid Value deleted ..."
+msgid "Grid Value deleted"
+msgstr "Grid Value deleted"
-#: FlatCAMApp.py:5956
-msgid "[WARNING_NOTCL] Delete Grid value cancelled ..."
-msgstr "[WARNING_NOTCL] Delete Grid value cancelled ..."
+#: FlatCAMApp.py:6567
+#| msgid "[WARNING_NOTCL] Delete Grid value cancelled ..."
+msgid "Delete Grid value cancelled"
+msgstr "Delete Grid value cancelled"
-#: FlatCAMApp.py:5962
+#: FlatCAMApp.py:6573
msgid "Key Shortcut List"
msgstr "Key Shortcut List"
-#: FlatCAMApp.py:5995
-msgid "[WARNING_NOTCL] No object selected to copy it's name"
-msgstr "[WARNING_NOTCL] No object selected to copy it's name"
+#: FlatCAMApp.py:6607
+#| msgid "[WARNING_NOTCL] No object selected to copy it's name"
+msgid " No object selected to copy it's name"
+msgstr " No object selected to copy it's name"
-#: FlatCAMApp.py:5999
+#: FlatCAMApp.py:6611
msgid "Name copied on clipboard ..."
msgstr "Name copied on clipboard ..."
-#: FlatCAMApp.py:6041 flatcamEditors/FlatCAMGrbEditor.py:4094
-msgid "[success] Coordinates copied to clipboard."
-msgstr "[success] Coordinates copied to clipboard."
+#: FlatCAMApp.py:6654 flatcamEditors/FlatCAMGrbEditor.py:4122
+#| msgid "[success] Coordinates copied to clipboard."
+msgid "Coordinates copied to clipboard."
+msgstr "Coordinates copied to clipboard."
-#: FlatCAMApp.py:6290 FlatCAMApp.py:6293 FlatCAMApp.py:6296 FlatCAMApp.py:6299
-#: FlatCAMApp.py:6314 FlatCAMApp.py:6317 FlatCAMApp.py:6320 FlatCAMApp.py:6323
-#: FlatCAMApp.py:6363 FlatCAMApp.py:6366 FlatCAMApp.py:6369 FlatCAMApp.py:6372
+#: FlatCAMApp.py:6907 FlatCAMApp.py:6911 FlatCAMApp.py:6915 FlatCAMApp.py:6919
+#: FlatCAMApp.py:6935 FlatCAMApp.py:6939 FlatCAMApp.py:6943 FlatCAMApp.py:6947
+#: FlatCAMApp.py:6987 FlatCAMApp.py:6990 FlatCAMApp.py:6993 FlatCAMApp.py:6996
#: ObjectCollection.py:725 ObjectCollection.py:728 ObjectCollection.py:731
#: ObjectCollection.py:734
#, python-brace-format
msgid "[selected]{name} selected"
msgstr "[selected]{name} selected"
-#: FlatCAMApp.py:6499
+#: FlatCAMApp.py:7123
msgid ""
"There are files/objects opened in FlatCAM.\n"
"Creating a New project will delete them.\n"
@@ -624,223 +764,242 @@ msgstr ""
"Creating a New project will delete them.\n"
"Do you want to Save the project?"
-#: FlatCAMApp.py:6520
-msgid "[success] New Project created..."
-msgstr "[success] New Project created..."
+#: FlatCAMApp.py:7145
+#| msgid "[success] New Project created..."
+msgid "New Project created"
+msgstr "New Project created"
-#: FlatCAMApp.py:6639 FlatCAMApp.py:6642 flatcamGUI/FlatCAMGUI.py:626
-#: flatcamGUI/FlatCAMGUI.py:1945
+#: FlatCAMApp.py:7265 FlatCAMApp.py:7269 flatcamGUI/FlatCAMGUI.py:626
+#: flatcamGUI/FlatCAMGUI.py:1970
msgid "Open Gerber"
msgstr "Open Gerber"
-#: FlatCAMApp.py:6647
-msgid "[WARNING_NOTCL] Open Gerber cancelled."
-msgstr "[WARNING_NOTCL] Open Gerber cancelled."
+#: FlatCAMApp.py:7277
+#| msgid "Open cancelled."
+msgid "Open Gerber cancelled."
+msgstr "Open Gerber cancelled."
-#: FlatCAMApp.py:6668 FlatCAMApp.py:6671 flatcamGUI/FlatCAMGUI.py:627
-#: flatcamGUI/FlatCAMGUI.py:1946
+#: FlatCAMApp.py:7297 FlatCAMApp.py:7301 flatcamGUI/FlatCAMGUI.py:627
+#: flatcamGUI/FlatCAMGUI.py:1971
msgid "Open Excellon"
msgstr "Open Excellon"
-#: FlatCAMApp.py:6676
-msgid "[WARNING_NOTCL] Open Excellon cancelled."
-msgstr "[WARNING_NOTCL] Open Excellon cancelled."
+#: FlatCAMApp.py:7308
+#| msgid "[WARNING_NOTCL] Open Excellon cancelled."
+msgid " Open Excellon cancelled."
+msgstr " Open Excellon cancelled."
-#: FlatCAMApp.py:6698 FlatCAMApp.py:6701
+#: FlatCAMApp.py:7331 FlatCAMApp.py:7335
msgid "Open G-Code"
msgstr "Open G-Code"
-#: FlatCAMApp.py:6706
-msgid "[WARNING_NOTCL] Open G-Code cancelled."
-msgstr "[WARNING_NOTCL] Open G-Code cancelled."
+#: FlatCAMApp.py:7343
+#| msgid "Open cancelled."
+msgid "Open G-Code cancelled."
+msgstr "Open G-Code cancelled."
-#: FlatCAMApp.py:6724 FlatCAMApp.py:6727
+#: FlatCAMApp.py:7360 FlatCAMApp.py:7363
msgid "Open Project"
msgstr "Open Project"
-#: FlatCAMApp.py:6735
-msgid "[WARNING_NOTCL] Open Project cancelled."
-msgstr "[WARNING_NOTCL] Open Project cancelled."
+#: FlatCAMApp.py:7372
+#| msgid "Open cancelled."
+msgid "Open Project cancelled."
+msgstr "Open Project cancelled."
-#: FlatCAMApp.py:6754 FlatCAMApp.py:6757
+#: FlatCAMApp.py:7391 FlatCAMApp.py:7394
msgid "Open Configuration File"
msgstr "Open Configuration File"
-#: FlatCAMApp.py:6761
-msgid "[WARNING_NOTCL] Open Config cancelled."
-msgstr "[WARNING_NOTCL] Open Config cancelled."
+#: FlatCAMApp.py:7399
+#| msgid "Open cancelled."
+msgid "Open Config cancelled."
+msgstr "Open Config cancelled."
-#: FlatCAMApp.py:6776 FlatCAMApp.py:7029 FlatCAMApp.py:9352 FlatCAMApp.py:9372
-#: FlatCAMApp.py:9393 FlatCAMApp.py:9415
-msgid "[WARNING_NOTCL] No object selected."
-msgstr "[WARNING_NOTCL] No object selected."
+#: FlatCAMApp.py:7415 FlatCAMApp.py:7684 FlatCAMApp.py:10115
+#: FlatCAMApp.py:10136 FlatCAMApp.py:10158 FlatCAMApp.py:10181
+#| msgid "Failed. No object(s) selected..."
+msgid "No object selected."
+msgstr "No object selected."
-#: FlatCAMApp.py:6777 FlatCAMApp.py:7030
+#: FlatCAMApp.py:7416 FlatCAMApp.py:7685
msgid "Please Select a Geometry object to export"
msgstr "Please Select a Geometry object to export"
-#: FlatCAMApp.py:6790
-msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
-msgstr "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
+#: FlatCAMApp.py:7430
+#| msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
+msgid "Only Geometry, Gerber and CNCJob objects can be used."
+msgstr "Only Geometry, Gerber and CNCJob objects can be used."
-#: FlatCAMApp.py:6803 FlatCAMApp.py:6807
+#: FlatCAMApp.py:7443 FlatCAMApp.py:7447
msgid "Export SVG"
msgstr "Export SVG"
-#: FlatCAMApp.py:6812
-msgid "[WARNING_NOTCL] Export SVG cancelled."
-msgstr "[WARNING_NOTCL] Export SVG cancelled."
+#: FlatCAMApp.py:7453
+#| msgid "Export PNG cancelled."
+msgid " Export SVG cancelled."
+msgstr " Export SVG cancelled."
-#: FlatCAMApp.py:6831
-msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
-msgstr "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
+#: FlatCAMApp.py:7473
+#| msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
+msgid "Data must be a 3D array with last dimension 3 or 4"
+msgstr "Data must be a 3D array with last dimension 3 or 4"
-#: FlatCAMApp.py:6837 FlatCAMApp.py:6841
+#: FlatCAMApp.py:7479 FlatCAMApp.py:7483
msgid "Export PNG Image"
msgstr "Export PNG Image"
-#: FlatCAMApp.py:6846
+#: FlatCAMApp.py:7488
msgid "Export PNG cancelled."
msgstr "Export PNG cancelled."
-#: FlatCAMApp.py:6865
-msgid ""
-"[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
-msgstr ""
-"[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
+#: FlatCAMApp.py:7508
+#| msgid ""
+#| "[WARNING_NOTCL] No object selected. Please select an Gerber object to "
+#| "export."
+msgid "No object selected. Please select an Gerber object to export."
+msgstr "No object selected. Please select an Gerber object to export."
-#: FlatCAMApp.py:6870 FlatCAMApp.py:6993
-msgid ""
-"[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
-msgstr ""
-"[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
+#: FlatCAMApp.py:7514 FlatCAMApp.py:7646
+#| msgid ""
+#| "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
+msgid "Failed. Only Gerber objects can be saved as Gerber files..."
+msgstr "Failed. Only Gerber objects can be saved as Gerber files..."
-#: FlatCAMApp.py:6882
+#: FlatCAMApp.py:7526
msgid "Save Gerber source file"
msgstr "Save Gerber source file"
-#: FlatCAMApp.py:6887
-msgid "[WARNING_NOTCL] Save Gerber source file cancelled."
-msgstr "[WARNING_NOTCL] Save Gerber source file cancelled."
+#: FlatCAMApp.py:7532
+#| msgid "[WARNING_NOTCL] Save Gerber source file cancelled."
+msgid "Save Gerber source file cancelled."
+msgstr "Save Gerber source file cancelled."
-#: FlatCAMApp.py:6906
-msgid ""
-"[WARNING_NOTCL] No object selected. Please select an Excellon object to "
-"export."
-msgstr ""
-"[WARNING_NOTCL] No object selected. Please select an Excellon object to "
-"export."
+#: FlatCAMApp.py:7552
+#| msgid ""
+#| "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
+#| "export."
+msgid "No object selected. Please select an Excellon object to export."
+msgstr "No object selected. Please select an Excellon object to export."
-#: FlatCAMApp.py:6911 FlatCAMApp.py:6952
-msgid ""
-"[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
-msgstr ""
-"[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
+#: FlatCAMApp.py:7558 FlatCAMApp.py:7602
+#| msgid ""
+#| "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon "
+#| "files..."
+msgid "Failed. Only Excellon objects can be saved as Excellon files..."
+msgstr "Failed. Only Excellon objects can be saved as Excellon files..."
-#: FlatCAMApp.py:6919 FlatCAMApp.py:6923
+#: FlatCAMApp.py:7566 FlatCAMApp.py:7570
msgid "Save Excellon source file"
msgstr "Save Excellon source file"
-#: FlatCAMApp.py:6928
-msgid "[WARNING_NOTCL] Saving Excellon source file cancelled."
-msgstr "[WARNING_NOTCL] Saving Excellon source file cancelled."
+#: FlatCAMApp.py:7576
+#| msgid "[WARNING_NOTCL] Saving Excellon source file cancelled."
+msgid "Saving Excellon source file cancelled."
+msgstr "Saving Excellon source file cancelled."
-#: FlatCAMApp.py:6947
-msgid ""
-"[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
-"export."
-msgstr ""
-"[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
-"export."
+#: FlatCAMApp.py:7596
+#| msgid ""
+#| "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
+#| "export."
+msgid "No object selected. Please Select an Excellon object to export."
+msgstr "No object selected. Please Select an Excellon object to export."
-#: FlatCAMApp.py:6960 FlatCAMApp.py:6964
+#: FlatCAMApp.py:7610 FlatCAMApp.py:7614
msgid "Export Excellon"
msgstr "Export Excellon"
-#: FlatCAMApp.py:6969
-msgid "[WARNING_NOTCL] Export Excellon cancelled."
-msgstr "[WARNING_NOTCL] Export Excellon cancelled."
+#: FlatCAMApp.py:7620
+#| msgid "Export PNG cancelled."
+msgid "Export Excellon cancelled."
+msgstr "Export Excellon cancelled."
-#: FlatCAMApp.py:6988
-msgid ""
-"[WARNING_NOTCL] No object selected. Please Select an Gerber object to export."
-msgstr ""
-"[WARNING_NOTCL] No object selected. Please Select an Gerber object to export."
+#: FlatCAMApp.py:7640
+#| msgid ""
+#| "[WARNING_NOTCL] No object selected. Please Select an Gerber object to "
+#| "export."
+msgid "No object selected. Please Select an Gerber object to export."
+msgstr "No object selected. Please Select an Gerber object to export."
-#: FlatCAMApp.py:7001 FlatCAMApp.py:7005
+#: FlatCAMApp.py:7654 FlatCAMApp.py:7658
msgid "Export Gerber"
msgstr "Export Gerber"
-#: FlatCAMApp.py:7010
-msgid "[WARNING_NOTCL] Export Gerber cancelled."
-msgstr "[WARNING_NOTCL] Export Gerber cancelled."
+#: FlatCAMApp.py:7664
+#| msgid "Export PNG cancelled."
+msgid "Export Gerber cancelled."
+msgstr "Export Gerber cancelled."
-#: FlatCAMApp.py:7040
-msgid "[ERROR_NOTCL] Only Geometry objects can be used."
-msgstr "[ERROR_NOTCL] Only Geometry objects can be used."
+#: FlatCAMApp.py:7696
+#| msgid "[ERROR_NOTCL] Only Geometry objects can be used."
+msgid "Only Geometry objects can be used."
+msgstr "Only Geometry objects can be used."
-#: FlatCAMApp.py:7054 FlatCAMApp.py:7058
+#: FlatCAMApp.py:7710 FlatCAMApp.py:7714
msgid "Export DXF"
msgstr "Export DXF"
-#: FlatCAMApp.py:7064
-msgid "[WARNING_NOTCL] Export DXF cancelled."
-msgstr "[WARNING_NOTCL] Export DXF cancelled."
+#: FlatCAMApp.py:7721
+#| msgid "Export PNG cancelled."
+msgid "Export DXF cancelled."
+msgstr "Export DXF cancelled."
-#: FlatCAMApp.py:7084 FlatCAMApp.py:7087
+#: FlatCAMApp.py:7741 FlatCAMApp.py:7744
msgid "Import SVG"
msgstr "Import SVG"
-#: FlatCAMApp.py:7096
-msgid "[WARNING_NOTCL] Open SVG cancelled."
-msgstr "[WARNING_NOTCL] Open SVG cancelled."
+#: FlatCAMApp.py:7754
+#| msgid "Open cancelled."
+msgid "Open SVG cancelled."
+msgstr "Open SVG cancelled."
-#: FlatCAMApp.py:7115 FlatCAMApp.py:7119
+#: FlatCAMApp.py:7773 FlatCAMApp.py:7777
msgid "Import DXF"
msgstr "Import DXF"
-#: FlatCAMApp.py:7128
-msgid "[WARNING_NOTCL] Open DXF cancelled."
-msgstr "[WARNING_NOTCL] Open DXF cancelled."
+#: FlatCAMApp.py:7787
+#| msgid "Open cancelled."
+msgid "Open DXF cancelled."
+msgstr "Open DXF cancelled."
-#: FlatCAMApp.py:7146
+#: FlatCAMApp.py:7805
#, python-format
msgid "%s"
msgstr "%s"
-#: FlatCAMApp.py:7166
-msgid ""
-"[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
-msgstr ""
-"[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
+#: FlatCAMApp.py:7826
+#| msgid ""
+#| "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source "
+#| "file."
+msgid "Select an Gerber or Excellon file to view it's source file."
+msgstr "Select an Gerber or Excellon file to view it's source file."
-#: FlatCAMApp.py:7173
-msgid ""
-"[WARNING_NOTCL] There is no selected object for which to see it's source "
-"file code."
-msgstr ""
-"[WARNING_NOTCL] There is no selected object for which to see it's source "
-"file code."
+#: FlatCAMApp.py:7834
+#| msgid ""
+#| "[WARNING_NOTCL] There is no selected object for which to see it's source "
+#| "file code."
+msgid "There is no selected object for which to see it's source file code."
+msgstr "There is no selected object for which to see it's source file code."
-#: FlatCAMApp.py:7181
+#: FlatCAMApp.py:7842
msgid "Source Editor"
msgstr "Source Editor"
-#: FlatCAMApp.py:7191
-#, python-format
-msgid "[ERROR]App.on_view_source() -->%s"
-msgstr "[ERROR]App.on_view_source() -->%s"
+#: FlatCAMApp.py:7853
+#| msgid "[ERROR]App.on_view_source() -->%s"
+msgid "App.on_view_source() -->"
+msgstr "App.on_view_source() -->"
-#: FlatCAMApp.py:7203 FlatCAMApp.py:8404 FlatCAMObj.py:5669
-#: flatcamTools/ToolSolderPaste.py:1289
+#: FlatCAMApp.py:7865 FlatCAMApp.py:9110 FlatCAMObj.py:5946
+#: flatcamTools/ToolSolderPaste.py:1304
msgid "Code Editor"
msgstr "Code Editor"
-#: FlatCAMApp.py:7215
+#: FlatCAMApp.py:7877
msgid "Script Editor"
msgstr "Script Editor"
-#: FlatCAMApp.py:7218
+#: FlatCAMApp.py:7880
msgid ""
"#\n"
"# CREATE A NEW FLATCAM TCL SCRIPT\n"
@@ -884,231 +1043,246 @@ msgstr ""
"#\n"
"\n"
-#: FlatCAMApp.py:7241 FlatCAMApp.py:7244
+#: FlatCAMApp.py:7903 FlatCAMApp.py:7906
msgid "Open TCL script"
msgstr "Open TCL script"
-#: FlatCAMApp.py:7252
-msgid "[WARNING_NOTCL] Open TCL script cancelled."
-msgstr "[WARNING_NOTCL] Open TCL script cancelled."
+#: FlatCAMApp.py:7915
+#| msgid "[WARNING_NOTCL] Open TCL script cancelled."
+msgid "Open TCL script cancelled."
+msgstr "Open TCL script cancelled."
-#: FlatCAMApp.py:7264
-#, python-format
-msgid "[ERROR]App.on_fileopenscript() -->%s"
-msgstr "[ERROR]App.on_fileopenscript() -->%s"
+#: FlatCAMApp.py:7928
+#| msgid "[ERROR]App.on_fileopenscript() -->%s"
+msgid "App.on_fileopenscript() -->"
+msgstr "App.on_fileopenscript() -->"
-#: FlatCAMApp.py:7290 FlatCAMApp.py:7293
+#: FlatCAMApp.py:7954 FlatCAMApp.py:7957
msgid "Run TCL script"
msgstr "Run TCL script"
-#: FlatCAMApp.py:7301
-msgid "[WARNING_NOTCL] Run TCL script cancelled."
-msgstr "[WARNING_NOTCL] Run TCL script cancelled."
+#: FlatCAMApp.py:7966
+#| msgid "[WARNING_NOTCL] Run TCL script cancelled."
+msgid "Run TCL script cancelled."
+msgstr "Run TCL script cancelled."
-#: FlatCAMApp.py:7356 FlatCAMApp.py:7360
+#: FlatCAMApp.py:8021 FlatCAMApp.py:8025
msgid "Save Project As ..."
msgstr "Save Project As ..."
-#: FlatCAMApp.py:7357
+#: FlatCAMApp.py:8022
#, python-brace-format
msgid "{l_save}/Project_{date}"
msgstr "{l_save}/Project_{date}"
-#: FlatCAMApp.py:7365
-msgid "[WARNING_NOTCL] Save Project cancelled."
-msgstr "[WARNING_NOTCL] Save Project cancelled."
+#: FlatCAMApp.py:8031
+#| msgid "[WARNING_NOTCL] Save Project cancelled."
+msgid "Save Project cancelled."
+msgstr "Save Project cancelled."
-#: FlatCAMApp.py:7413
+#: FlatCAMApp.py:8079
msgid "Exporting SVG"
msgstr "Exporting SVG"
-#: FlatCAMApp.py:7453 FlatCAMApp.py:7567 FlatCAMApp.py:7690
-#, python-format
-msgid "[success] SVG file exported to %s"
-msgstr "[success] SVG file exported to %s"
+#: FlatCAMApp.py:8121 FlatCAMApp.py:8238 FlatCAMApp.py:8364
+#| msgid "[success] SVG file exported to %s"
+msgid "SVG file exported to"
+msgstr "SVG file exported to"
-#: FlatCAMApp.py:7487 FlatCAMApp.py:7615
-#, python-format
-msgid "[WARNING_NOTCL] No object Box. Using instead %s"
-msgstr "[WARNING_NOTCL] No object Box. Using instead %s"
+#: FlatCAMApp.py:8156 FlatCAMApp.py:8287 flatcamTools/ToolPanelize.py:381
+#| msgid "[WARNING]No object Box. Using instead %s"
+msgid "No object Box. Using instead"
+msgstr "No object Box. Using instead"
-#: FlatCAMApp.py:7570 FlatCAMApp.py:7693
+#: FlatCAMApp.py:8241 FlatCAMApp.py:8367
msgid "Generating Film ... Please wait."
msgstr "Generating Film ... Please wait."
-#: FlatCAMApp.py:7859
-#, python-format
-msgid "[success] Excellon file exported to %s"
-msgstr "[success] Excellon file exported to %s"
+#: FlatCAMApp.py:8536
+#| msgid "[success] Excellon file exported to %s"
+msgid "Excellon file exported to"
+msgstr "Excellon file exported to"
-#: FlatCAMApp.py:7866
+#: FlatCAMApp.py:8543
msgid "Exporting Excellon"
msgstr "Exporting Excellon"
-#: FlatCAMApp.py:7871 FlatCAMApp.py:7878
-msgid "[ERROR_NOTCL] Could not export Excellon file."
-msgstr "[ERROR_NOTCL] Could not export Excellon file."
+#: FlatCAMApp.py:8549 FlatCAMApp.py:8557
+#| msgid "[ERROR_NOTCL] Could not export Excellon file."
+msgid "Could not export Excellon file."
+msgstr "Could not export Excellon file."
-#: FlatCAMApp.py:7984
-#, python-format
-msgid "[success] Gerber file exported to %s"
-msgstr "[success] Gerber file exported to %s"
+#: FlatCAMApp.py:8665
+#| msgid "[success] Gerber file exported to %s"
+msgid "Gerber file exported to"
+msgstr "Gerber file exported to"
-#: FlatCAMApp.py:7991
+#: FlatCAMApp.py:8672
msgid "Exporting Gerber"
msgstr "Exporting Gerber"
-#: FlatCAMApp.py:7996 FlatCAMApp.py:8003
-msgid "[ERROR_NOTCL] Could not export Gerber file."
-msgstr "[ERROR_NOTCL] Could not export Gerber file."
+#: FlatCAMApp.py:8678 FlatCAMApp.py:8686
+#| msgid "[ERROR_NOTCL] Could not export Gerber file."
+msgid "Could not export Gerber file."
+msgstr "Could not export Gerber file."
-#: FlatCAMApp.py:8045
-#, python-format
-msgid "[success] DXF file exported to %s"
-msgstr "[success] DXF file exported to %s"
+#: FlatCAMApp.py:8729
+#| msgid "[success] DXF file exported to %s"
+msgid "DXF file exported to"
+msgstr "DXF file exported to"
-#: FlatCAMApp.py:8051
+#: FlatCAMApp.py:8735
msgid "Exporting DXF"
msgstr "Exporting DXF"
-#: FlatCAMApp.py:8056 FlatCAMApp.py:8063
-msgid "[[WARNING_NOTCL]] Could not export DXF file."
-msgstr "[[WARNING_NOTCL]] Could not export DXF file."
+#: FlatCAMApp.py:8741 FlatCAMApp.py:8749
+#| msgid "[[WARNING_NOTCL]] Could not export DXF file."
+msgid "Could not export DXF file."
+msgstr "Could not export DXF file."
-#: FlatCAMApp.py:8083 FlatCAMApp.py:8125 FlatCAMApp.py:8169
+#: FlatCAMApp.py:8770 FlatCAMApp.py:8814 FlatCAMApp.py:8860
+#| msgid ""
+#| "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry "
+#| "and Gerber are supported"
msgid ""
-"[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
-"Gerber are supported"
+"Not supported type is picked as parameter. Only Geometry and Gerber are "
+"supported"
msgstr ""
-"[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
-"Gerber are supported"
+"Not supported type is picked as parameter. Only Geometry and Gerber are "
+"supported"
-#: FlatCAMApp.py:8093
+#: FlatCAMApp.py:8780
msgid "Importing SVG"
msgstr "Importing SVG"
-#: FlatCAMApp.py:8104 FlatCAMApp.py:8146 FlatCAMApp.py:8189 FlatCAMApp.py:8266
-#: FlatCAMApp.py:8327 FlatCAMApp.py:8390 flatcamTools/ToolPDF.py:212
-#, python-format
-msgid "[success] Opened: %s"
-msgstr "[success] Opened: %s"
+#: FlatCAMApp.py:8792 FlatCAMApp.py:8836 FlatCAMApp.py:8881 FlatCAMApp.py:8962
+#: FlatCAMApp.py:9029 FlatCAMApp.py:9096
+#| msgid "Open"
+msgid "Opened"
+msgstr "Opened"
-#: FlatCAMApp.py:8135
+#: FlatCAMApp.py:8824
msgid "Importing DXF"
msgstr "Importing DXF"
-#: FlatCAMApp.py:8177
+#: FlatCAMApp.py:8868
msgid "Importing Image"
msgstr "Importing Image"
-#: FlatCAMApp.py:8218 FlatCAMApp.py:8220
-#, python-format
-msgid "[ERROR_NOTCL] Failed to open file: %s"
-msgstr "[ERROR_NOTCL] Failed to open file: %s"
+#: FlatCAMApp.py:8911
+#| msgid "[ERROR_NOTCL] Failed to open file: %s"
+msgid "Failed to open file"
+msgstr "Failed to open file"
-#: FlatCAMApp.py:8223
-#, python-brace-format
-msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
-msgstr "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
+#: FlatCAMApp.py:8916
+#| msgid "[ERROR] Failed to parse defaults file."
+msgid "Failed to parse file"
+msgstr "Failed to parse file"
-#: FlatCAMApp.py:8230 FlatCAMObj.py:4344
-#: flatcamEditors/FlatCAMGrbEditor.py:3914
-msgid "[ERROR] An internal error has occurred. See shell.\n"
-msgstr "[ERROR] An internal error has occurred. See shell.\n"
+#: FlatCAMApp.py:8923 FlatCAMApp.py:8997 FlatCAMObj.py:4523
+#: flatcamEditors/FlatCAMGrbEditor.py:3939 flatcamTools/ToolPcbWizard.py:437
+#| msgid "[ERROR] An internal error has occurred. See shell.\n"
+msgid "An internal error has occurred. See shell.\n"
+msgstr "An internal error has occurred. See shell.\n"
-#: FlatCAMApp.py:8239
-msgid ""
-"[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
-msgstr ""
-"[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
+#: FlatCAMApp.py:8933
+#| msgid ""
+#| "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object "
+#| "creation."
+msgid "Object is not Gerber file or empty. Aborting object creation."
+msgstr "Object is not Gerber file or empty. Aborting object creation."
-#: FlatCAMApp.py:8247
+#: FlatCAMApp.py:8941
msgid "Opening Gerber"
msgstr "Opening Gerber"
-#: FlatCAMApp.py:8257
-msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
-msgstr "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
+#: FlatCAMApp.py:8952
+#| msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
+msgid " Open Gerber failed. Probable not a Gerber file."
+msgstr " Open Gerber failed. Probable not a Gerber file."
-#: FlatCAMApp.py:8290 flatcamTools/ToolPcbWizard.py:423
-msgid "[ERROR_NOTCL] This is not Excellon file."
-msgstr "[ERROR_NOTCL] This is not Excellon file."
+#: FlatCAMApp.py:8987 flatcamTools/ToolPcbWizard.py:427
+#| msgid "[ERROR_NOTCL] This is not Excellon file."
+msgid "This is not Excellon file."
+msgstr "This is not Excellon file."
-#: FlatCAMApp.py:8293
-#, python-format
-msgid "[ERROR_NOTCL] Cannot open file: %s"
-msgstr "[ERROR_NOTCL] Cannot open file: %s"
+#: FlatCAMApp.py:8991
+#| msgid "[ERROR_NOTCL] Cannot open file: %s"
+msgid "Cannot open file"
+msgstr "Cannot open file"
-#: FlatCAMApp.py:8298 flatcamTools/ToolPcbWizard.py:432
-msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
-msgstr "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
+#: FlatCAMApp.py:9011 flatcamTools/ToolPDF.py:270
+#: flatcamTools/ToolPcbWizard.py:451
+#| msgid "[ERROR_NOTCL] No geometry found in file: %s"
+msgid "No geometry found in file"
+msgstr "No geometry found in file"
-#: FlatCAMApp.py:8311 flatcamTools/ToolPDF.py:262
-#: flatcamTools/ToolPcbWizard.py:445
-#, python-format
-msgid "[ERROR_NOTCL] No geometry found in file: %s"
-msgstr "[ERROR_NOTCL] No geometry found in file: %s"
-
-#: FlatCAMApp.py:8314
+#: FlatCAMApp.py:9014
msgid "Opening Excellon."
msgstr "Opening Excellon."
-#: FlatCAMApp.py:8320
-msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
-msgstr ""
-"[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
+#: FlatCAMApp.py:9021
+#| msgid ""
+#| "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
+msgid "Open Excellon file failed. Probable not an Excellon file."
+msgstr "Open Excellon file failed. Probable not an Excellon file."
-#: FlatCAMApp.py:8357
-#, python-format
-msgid "[ERROR_NOTCL] Failed to open %s"
-msgstr "[ERROR_NOTCL] Failed to open %s"
+#: FlatCAMApp.py:9060
+#| msgid "[ERROR_NOTCL] Failed to open %s"
+msgid "Failed to open"
+msgstr "Failed to open"
-#: FlatCAMApp.py:8367
-msgid "[ERROR_NOTCL] This is not GCODE"
-msgstr "[ERROR_NOTCL] This is not GCODE"
+#: FlatCAMApp.py:9071
+#| msgid "[ERROR_NOTCL] This is not GCODE"
+msgid "This is not GCODE"
+msgstr "This is not GCODE"
-#: FlatCAMApp.py:8373
+#: FlatCAMApp.py:9077
msgid "Opening G-Code."
msgstr "Opening G-Code."
-#: FlatCAMApp.py:8381
+#: FlatCAMApp.py:9086
+#| msgid ""
+#| "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
+#| " Attempting to create a FlatCAM CNCJob Object from G-Code file failed "
+#| "during processing"
msgid ""
-"[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
+"Failed to create CNCJob Object. Probable not a GCode file.\n"
" Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
"processing"
msgstr ""
-"[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
+"Failed to create CNCJob Object. Probable not a GCode file.\n"
" Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
"processing"
-#: FlatCAMApp.py:8421
-#, python-format
-msgid "[ERROR_NOTCL] Failed to open config file: %s"
-msgstr "[ERROR_NOTCL] Failed to open config file: %s"
+#: FlatCAMApp.py:9128
+#| msgid "[ERROR_NOTCL] Failed to open config file: %s"
+msgid "Failed to open config file"
+msgstr "Failed to open config file"
-#: FlatCAMApp.py:8442
+#: FlatCAMApp.py:9149
msgid "Loading Project ... Please Wait ..."
msgstr "Loading Project ... Please Wait ..."
-#: FlatCAMApp.py:8449 FlatCAMApp.py:8467
-#, python-format
-msgid "[ERROR_NOTCL] Failed to open project file: %s"
-msgstr "[ERROR_NOTCL] Failed to open project file: %s"
+#: FlatCAMApp.py:9157 FlatCAMApp.py:9176
+#| msgid "[ERROR_NOTCL] Failed to open project file: %s"
+msgid "Failed to open project file"
+msgstr "Failed to open project file"
-#: FlatCAMApp.py:8491
+#: FlatCAMApp.py:9200
msgid "Loading Project ... restoring"
msgstr "Loading Project ... restoring"
-#: FlatCAMApp.py:8496
-#, python-format
-msgid "[success] Project loaded from: %s"
-msgstr "[success] Project loaded from: %s"
+#: FlatCAMApp.py:9210
+#| msgid "[success] Project loaded from: %s"
+msgid "Project loaded from"
+msgstr "Project loaded from"
-#: FlatCAMApp.py:8602
+#: FlatCAMApp.py:9316
msgid "Available commands:\n"
msgstr "Available commands:\n"
-#: FlatCAMApp.py:8604
+#: FlatCAMApp.py:9318
msgid ""
"\n"
"\n"
@@ -1120,35 +1294,39 @@ msgstr ""
"Type help for usage.\n"
" Example: help open_gerber"
-#: FlatCAMApp.py:8754
+#: FlatCAMApp.py:9468
msgid "Shows list of commands."
msgstr "Shows list of commands."
-#: FlatCAMApp.py:8811
-msgid "[ERROR_NOTCL] Failed to load recent item list."
-msgstr "[ERROR_NOTCL] Failed to load recent item list."
+#: FlatCAMApp.py:9526
+#| msgid "[ERROR_NOTCL] Failed to load recent item list."
+msgid "Failed to load recent item list."
+msgstr "Failed to load recent item list."
-#: FlatCAMApp.py:8818
-msgid "[ERROR_NOTCL] Failed to parse recent item list."
-msgstr "[ERROR_NOTCL] Failed to parse recent item list."
+#: FlatCAMApp.py:9534
+#| msgid "[ERROR_NOTCL] Failed to parse recent item list."
+msgid "Failed to parse recent item list."
+msgstr "Failed to parse recent item list."
-#: FlatCAMApp.py:8828
-msgid "[ERROR_NOTCL] Failed to load recent projects item list."
-msgstr "[ERROR_NOTCL] Failed to load recent projects item list."
+#: FlatCAMApp.py:9545
+#| msgid "[ERROR_NOTCL] Failed to load recent projects item list."
+msgid "Failed to load recent projects item list."
+msgstr "Failed to load recent projects item list."
-#: FlatCAMApp.py:8835
-msgid "[ERROR_NOTCL] Failed to parse recent project item list."
-msgstr "[ERROR_NOTCL] Failed to parse recent project item list."
+#: FlatCAMApp.py:9553
+#| msgid "[ERROR_NOTCL] Failed to parse recent project item list."
+msgid "Failed to parse recent project item list."
+msgstr "Failed to parse recent project item list."
-#: FlatCAMApp.py:8894 FlatCAMApp.py:8917
+#: FlatCAMApp.py:9612 FlatCAMApp.py:9635
msgid "Clear Recent files"
msgstr "Clear Recent files"
-#: FlatCAMApp.py:8934 flatcamGUI/FlatCAMGUI.py:996
+#: FlatCAMApp.py:9652 flatcamGUI/FlatCAMGUI.py:1006
msgid "Shortcut Key List"
msgstr "Shortcut Key List"
-#: FlatCAMApp.py:8946
+#: FlatCAMApp.py:9664
#, python-brace-format
msgid ""
"\n"
@@ -1245,23 +1423,27 @@ msgstr ""
"\n"
" "
-#: FlatCAMApp.py:9024
-msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
-msgstr "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
+#: FlatCAMApp.py:9743
+#| msgid ""
+#| "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
+msgid "Failed checking for latest version. Could not connect."
+msgstr "Failed checking for latest version. Could not connect."
-#: FlatCAMApp.py:9031
-msgid "[ERROR_NOTCL] Could not parse information about latest version."
-msgstr "[ERROR_NOTCL] Could not parse information about latest version."
+#: FlatCAMApp.py:9751
+#| msgid "[ERROR_NOTCL] Could not parse information about latest version."
+msgid "Could not parse information about latest version."
+msgstr "Could not parse information about latest version."
-#: FlatCAMApp.py:9041
-msgid "[success] FlatCAM is up to date!"
-msgstr "[success] FlatCAM is up to date!"
+#: FlatCAMApp.py:9762
+#| msgid "[success] FlatCAM is up to date!"
+msgid "FlatCAM is up to date!"
+msgstr "FlatCAM is up to date!"
-#: FlatCAMApp.py:9046
+#: FlatCAMApp.py:9767
msgid "Newer Version Available"
msgstr "Newer Version Available"
-#: FlatCAMApp.py:9047
+#: FlatCAMApp.py:9768
msgid ""
"There is a newer version of FlatCAM available for download:\n"
"\n"
@@ -1269,346 +1451,514 @@ msgstr ""
"There is a newer version of FlatCAM available for download:\n"
"\n"
-#: FlatCAMApp.py:9049
+#: FlatCAMApp.py:9770
msgid "info"
msgstr "info"
-#: FlatCAMApp.py:9103
-msgid "[success] All plots disabled."
-msgstr "[success] All plots disabled."
+#: FlatCAMApp.py:9825
+#| msgid "[success] All plots disabled."
+msgid "All plots disabled."
+msgstr "All plots disabled."
-#: FlatCAMApp.py:9109
-msgid "[success] All non selected plots disabled."
-msgstr "[success] All non selected plots disabled."
+#: FlatCAMApp.py:9832
+#| msgid "[success] All non selected plots disabled."
+msgid "All non selected plots disabled."
+msgstr "All non selected plots disabled."
-#: FlatCAMApp.py:9115
-msgid "[success] All plots enabled."
-msgstr "[success] All plots enabled."
+#: FlatCAMApp.py:9839
+#| msgid "[success] All plots enabled."
+msgid "All plots enabled."
+msgstr "All plots enabled."
-#: FlatCAMApp.py:9121
-msgid "[success] Selected plots enabled..."
-msgstr "[success] Selected plots enabled..."
+#: FlatCAMApp.py:9846
+#| msgid "[success] Selected plots enabled..."
+msgid "Selected plots enabled..."
+msgstr "Selected plots enabled..."
-#: FlatCAMApp.py:9129
-msgid "[success] Selected plots disabled..."
-msgstr "[success] Selected plots disabled..."
+#: FlatCAMApp.py:9855
+#| msgid "[success] Selected plots disabled..."
+msgid "Selected plots disabled..."
+msgstr "Selected plots disabled..."
-#: FlatCAMApp.py:9138 FlatCAMApp.py:9156 FlatCAMApp.py:9174
+#: FlatCAMApp.py:9873
+#| msgid "Enable Plot"
+msgid "Enabling plots ..."
+msgstr "Enabling plots ..."
+
+#: FlatCAMApp.py:9907
+#| msgid "Disable Plot"
+msgid "Disabling plots ..."
+msgstr "Disabling plots ..."
+
+#: FlatCAMApp.py:9929
msgid "Working ..."
msgstr "Working ..."
-#: FlatCAMApp.py:9212
+#: FlatCAMApp.py:9967
msgid "Saving FlatCAM Project"
msgstr "Saving FlatCAM Project"
-#: FlatCAMApp.py:9233 FlatCAMApp.py:9264
-#, python-format
-msgid "[success] Project saved to: %s"
-msgstr "[success] Project saved to: %s"
+#: FlatCAMApp.py:9989 FlatCAMApp.py:10024
+#| msgid "[success] Project saved to: %s"
+msgid "Project saved to"
+msgstr "Project saved to"
-#: FlatCAMApp.py:9251
-#, python-format
-msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
-msgstr "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
+#: FlatCAMApp.py:10008
+#| msgid "[ERROR_NOTCL] Failed to open project file: %s"
+msgid "Failed to verify project file"
+msgstr "Failed to verify project file"
-#: FlatCAMApp.py:9258
-#, python-format
-msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
-msgstr ""
-"[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
+#: FlatCAMApp.py:10008 FlatCAMApp.py:10016 FlatCAMApp.py:10027
+#| msgid "Diameter to resize to."
+msgid "Retry to save it."
+msgstr "Retry to save it."
-#: FlatCAMApp.py:9266
-#, python-format
-msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
-msgstr "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
+#: FlatCAMApp.py:10016 FlatCAMApp.py:10027
+#| msgid "[ERROR_NOTCL] Failed to parse project file: %s"
+msgid "Failed to parse saved project file"
+msgstr "Failed to parse saved project file"
-#: FlatCAMObj.py:208
+#: FlatCAMApp.py:10238
+msgid "The user requested a graceful exit of the current task."
+msgstr "The user requested a graceful exit of the current task."
+
+#: FlatCAMObj.py:213
#, python-brace-format
msgid "[success] Name changed from {old} to {new}"
msgstr "[success] Name changed from {old} to {new}"
-#: FlatCAMObj.py:557 FlatCAMObj.py:2128 FlatCAMObj.py:3403 FlatCAMObj.py:5562
+#: FlatCAMObj.py:222
+#| msgid "Offset"
+msgid "Offsetting..."
+msgstr "Offsetting..."
+
+#: FlatCAMObj.py:237
+msgid "Scaling..."
+msgstr "Scaling..."
+
+#: FlatCAMObj.py:253
+msgid "Skewing..."
+msgstr "Skewing..."
+
+#: FlatCAMObj.py:600 FlatCAMObj.py:2293 FlatCAMObj.py:3571 FlatCAMObj.py:5837
msgid "Basic"
msgstr "Basic"
-#: FlatCAMObj.py:569 FlatCAMObj.py:2144 FlatCAMObj.py:3425 FlatCAMObj.py:5568
+#: FlatCAMObj.py:613 FlatCAMObj.py:2309 FlatCAMObj.py:3593 FlatCAMObj.py:5843
msgid "Advanced"
msgstr "Advanced"
-#: FlatCAMObj.py:947 FlatCAMObj.py:1050
-msgid "[ERROR_NOTCL] Isolation geometry could not be generated."
-msgstr "[ERROR_NOTCL] Isolation geometry could not be generated."
+#: FlatCAMObj.py:802
+#| msgid "Parsing solid_geometry ..."
+msgid "Buffering solid geometry"
+msgstr "Buffering solid geometry"
-#: FlatCAMObj.py:984 FlatCAMObj.py:3098 FlatCAMObj.py:3360 FlatCAMObj.py:3637
+#: FlatCAMObj.py:805 flatcamGUI/FlatCAMGUI.py:4322
+#: flatcamTools/ToolNonCopperClear.py:1531
+#: flatcamTools/ToolNonCopperClear.py:1625
+#: flatcamTools/ToolNonCopperClear.py:1637
+#: flatcamTools/ToolNonCopperClear.py:1864
+#: flatcamTools/ToolNonCopperClear.py:1956
+#: flatcamTools/ToolNonCopperClear.py:1968
+#| msgid "Buffer"
+msgid "Buffering"
+msgstr "Buffering"
+
+#: FlatCAMObj.py:811
+#| msgid "Done."
+msgid "Done"
+msgstr "Done"
+
+#: FlatCAMObj.py:1071 FlatCAMObj.py:1178
+#: flatcamTools/ToolNonCopperClear.py:1560
+#: flatcamTools/ToolNonCopperClear.py:1888
+#| msgid "[ERROR_NOTCL] Isolation geometry could not be generated."
+msgid "Isolation geometry could not be generated."
+msgstr "Isolation geometry could not be generated."
+
+#: FlatCAMObj.py:1108 FlatCAMObj.py:3261 FlatCAMObj.py:3528 FlatCAMObj.py:3804
msgid "Rough"
msgstr "Rough"
-#: FlatCAMObj.py:1002 FlatCAMObj.py:1066
-#, python-format
-msgid "[success] Isolation geometry created: %s"
-msgstr "[success] Isolation geometry created: %s"
+#: FlatCAMObj.py:1133 FlatCAMObj.py:1201
+#| msgid "[success] Isolation geometry created: %s"
+msgid "Isolation geometry created"
+msgstr "Isolation geometry created"
-#: FlatCAMObj.py:1246
+#: FlatCAMObj.py:1386
msgid "Plotting Apertures"
msgstr "Plotting Apertures"
-#: FlatCAMObj.py:1969 flatcamEditors/FlatCAMExcEditor.py:2290
+#: FlatCAMObj.py:2121 flatcamEditors/FlatCAMExcEditor.py:2309
msgid "Total Drills"
msgstr "Total Drills"
-#: FlatCAMObj.py:1995 flatcamEditors/FlatCAMExcEditor.py:2322
+#: FlatCAMObj.py:2153 flatcamEditors/FlatCAMExcEditor.py:2341
msgid "Total Slots"
msgstr "Total Slots"
-#: FlatCAMObj.py:2202 FlatCAMObj.py:3475 FlatCAMObj.py:3765 FlatCAMObj.py:3952
-#: FlatCAMObj.py:3963 FlatCAMObj.py:4081 FlatCAMObj.py:4486 FlatCAMObj.py:4712
-#: FlatCAMObj.py:5128 flatcamEditors/FlatCAMExcEditor.py:2396
-#: flatcamTools/ToolCalculators.py:310 flatcamTools/ToolCalculators.py:321
-#: flatcamTools/ToolCalculators.py:333 flatcamTools/ToolCalculators.py:348
-#: flatcamTools/ToolCalculators.py:361 flatcamTools/ToolCalculators.py:375
-#: flatcamTools/ToolCalculators.py:386 flatcamTools/ToolCalculators.py:397
-#: flatcamTools/ToolCalculators.py:408 flatcamTools/ToolFilm.py:246
-#: flatcamTools/ToolFilm.py:253 flatcamTools/ToolNonCopperClear.py:684
-#: flatcamTools/ToolNonCopperClear.py:756
-#: flatcamTools/ToolNonCopperClear.py:953
-#: flatcamTools/ToolNonCopperClear.py:970
-#: flatcamTools/ToolNonCopperClear.py:978 flatcamTools/ToolPaint.py:694
-#: flatcamTools/ToolPaint.py:766 flatcamTools/ToolPaint.py:907
-#: flatcamTools/ToolPaint.py:1147 flatcamTools/ToolPaint.py:1301
-#: flatcamTools/ToolPaint.py:1608 flatcamTools/ToolPanelize.py:392
-#: flatcamTools/ToolPanelize.py:404 flatcamTools/ToolPanelize.py:417
-#: flatcamTools/ToolPanelize.py:430 flatcamTools/ToolPanelize.py:442
-#: flatcamTools/ToolPanelize.py:453 flatcamTools/ToolSolderPaste.py:763
-#: flatcamTools/ToolSolderPaste.py:835
-msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
-msgstr "[ERROR_NOTCL] Wrong value format entered, use a number."
+#: FlatCAMObj.py:2367 FlatCAMObj.py:3644 FlatCAMObj.py:3938 FlatCAMObj.py:4129
+#: FlatCAMObj.py:4140 FlatCAMObj.py:4258 FlatCAMObj.py:4461 FlatCAMObj.py:4668
+#: FlatCAMObj.py:4907 FlatCAMObj.py:5405
+#: flatcamEditors/FlatCAMExcEditor.py:2416
+#: flatcamEditors/FlatCAMGeoEditor.py:1080
+#: flatcamEditors/FlatCAMGeoEditor.py:1117
+#: flatcamEditors/FlatCAMGeoEditor.py:1138
+#: flatcamEditors/FlatCAMGeoEditor.py:1159
+#: flatcamEditors/FlatCAMGeoEditor.py:1196
+#: flatcamEditors/FlatCAMGeoEditor.py:1228
+#: flatcamEditors/FlatCAMGeoEditor.py:1249
+#: flatcamEditors/FlatCAMGrbEditor.py:5283
+#: flatcamEditors/FlatCAMGrbEditor.py:5326
+#: flatcamEditors/FlatCAMGrbEditor.py:5353
+#: flatcamEditors/FlatCAMGrbEditor.py:5380
+#: flatcamEditors/FlatCAMGrbEditor.py:5421
+#: flatcamEditors/FlatCAMGrbEditor.py:5459
+#: flatcamEditors/FlatCAMGrbEditor.py:5485 flatcamTools/ToolCalculators.py:311
+#: flatcamTools/ToolCalculators.py:322 flatcamTools/ToolCalculators.py:334
+#: flatcamTools/ToolCalculators.py:349 flatcamTools/ToolCalculators.py:362
+#: flatcamTools/ToolCalculators.py:376 flatcamTools/ToolCalculators.py:387
+#: flatcamTools/ToolCalculators.py:398 flatcamTools/ToolCalculators.py:409
+#: flatcamTools/ToolFilm.py:248 flatcamTools/ToolFilm.py:254
+#: flatcamTools/ToolNonCopperClear.py:862
+#: flatcamTools/ToolNonCopperClear.py:873
+#: flatcamTools/ToolNonCopperClear.py:883
+#: flatcamTools/ToolNonCopperClear.py:901
+#: flatcamTools/ToolNonCopperClear.py:980
+#: flatcamTools/ToolNonCopperClear.py:1062
+#: flatcamTools/ToolNonCopperClear.py:1341
+#: flatcamTools/ToolNonCopperClear.py:1371 flatcamTools/ToolPaint.py:699
+#: flatcamTools/ToolPaint.py:774 flatcamTools/ToolPaint.py:922
+#: flatcamTools/ToolPaint.py:976 flatcamTools/ToolPaint.py:1225
+#: flatcamTools/ToolPaint.py:1496 flatcamTools/ToolPaint.py:1966
+#: flatcamTools/ToolPanelize.py:397 flatcamTools/ToolPanelize.py:409
+#: flatcamTools/ToolPanelize.py:422 flatcamTools/ToolPanelize.py:435
+#: flatcamTools/ToolPanelize.py:447 flatcamTools/ToolPanelize.py:458
+#: flatcamTools/ToolSolderPaste.py:764 flatcamTools/ToolSolderPaste.py:839
+#: flatcamTools/ToolTransform.py:474 flatcamTools/ToolTransform.py:508
+#: flatcamTools/ToolTransform.py:526 flatcamTools/ToolTransform.py:544
+#: flatcamTools/ToolTransform.py:578 flatcamTools/ToolTransform.py:607
+#: flatcamTools/ToolTransform.py:625
+#| msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
+msgid "Wrong value format entered, use a number."
+msgstr "Wrong value format entered, use a number."
-#: FlatCAMObj.py:2444 FlatCAMObj.py:2536 FlatCAMObj.py:2659
-msgid ""
-"[ERROR_NOTCL] Please select one or more tools from the list and try again."
-msgstr ""
-"[ERROR_NOTCL] Please select one or more tools from the list and try again."
+#: FlatCAMObj.py:2608 FlatCAMObj.py:2698 FlatCAMObj.py:2819
+#| msgid ""
+#| "[ERROR_NOTCL] Please select one or more tools from the list and try again."
+msgid "Please select one or more tools from the list and try again."
+msgstr "Please select one or more tools from the list and try again."
-#: FlatCAMObj.py:2451
-msgid ""
-"[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
-msgstr ""
-"[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
+#: FlatCAMObj.py:2614
+#| msgid ""
+#| "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
+msgid "Milling tool for DRILLS is larger than hole size. Cancelled."
+msgstr "Milling tool for DRILLS is larger than hole size. Cancelled."
-#: FlatCAMObj.py:2465 FlatCAMObj.py:2560 FlatCAMObj.py:2679
+#: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
msgid "Tool_nr"
msgstr "Tool_nr"
-#: FlatCAMObj.py:2465 FlatCAMObj.py:2560 FlatCAMObj.py:2679
-#: flatcamEditors/FlatCAMExcEditor.py:1481
-#: flatcamEditors/FlatCAMExcEditor.py:3114 flatcamGUI/ObjectUI.py:554
+#: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
+#: flatcamEditors/FlatCAMExcEditor.py:1500
+#: flatcamEditors/FlatCAMExcEditor.py:3133 flatcamGUI/ObjectUI.py:613
#: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
#: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolSolderPaste.py:81
msgid "Diameter"
msgstr "Diameter"
-#: FlatCAMObj.py:2465 FlatCAMObj.py:2560 FlatCAMObj.py:2679
+#: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
msgid "Drills_Nr"
msgstr "Drills_Nr"
-#: FlatCAMObj.py:2465 FlatCAMObj.py:2560 FlatCAMObj.py:2679
+#: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
msgid "Slots_Nr"
msgstr "Slots_Nr"
-#: FlatCAMObj.py:2546
-msgid ""
-"[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
-msgstr ""
-"[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
+#: FlatCAMObj.py:2707
+#| msgid ""
+#| "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
+msgid "Milling tool for SLOTS is larger than hole size. Cancelled."
+msgstr "Milling tool for SLOTS is larger than hole size. Cancelled."
-#: FlatCAMObj.py:2720 FlatCAMObj.py:4379 FlatCAMObj.py:4585 FlatCAMObj.py:4891
+#: FlatCAMObj.py:2879 FlatCAMObj.py:4559 FlatCAMObj.py:4777 FlatCAMObj.py:5100
+#| msgid ""
+#| "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self."
+#| "options[\"z_pdepth\"]"
msgid ""
-"[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self."
-"options[\"z_pdepth\"]"
+"Wrong value format for self.defaults[\"z_pdepth\"] or self.options[\"z_pdepth"
+"\"]"
msgstr ""
-"[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self."
-"options[\"z_pdepth\"]"
+"Wrong value format for self.defaults[\"z_pdepth\"] or self.options[\"z_pdepth"
+"\"]"
-#: FlatCAMObj.py:2730 FlatCAMObj.py:4389 FlatCAMObj.py:4595 FlatCAMObj.py:4901
+#: FlatCAMObj.py:2890 FlatCAMObj.py:4570 FlatCAMObj.py:5111
+#| msgid ""
+#| "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or "
+#| "self.options[\"feedrate_probe\"]"
msgid ""
-"[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or "
-"self.options[\"feedrate_probe\"]"
+"Wrong value format for self.defaults[\"feedrate_probe\"] or self."
+"options[\"feedrate_probe\"]"
msgstr ""
-"[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or "
-"self.options[\"feedrate_probe\"]"
+"Wrong value format for self.defaults[\"feedrate_probe\"] or self."
+"options[\"feedrate_probe\"]"
-#: FlatCAMObj.py:2760 FlatCAMObj.py:4781 FlatCAMObj.py:4786 FlatCAMObj.py:4933
+#: FlatCAMObj.py:2920 FlatCAMObj.py:4987 FlatCAMObj.py:4993 FlatCAMObj.py:5145
msgid "Generating CNC Code"
msgstr "Generating CNC Code"
-#: FlatCAMObj.py:2786 FlatCAMObj.py:5088 camlib.py:5244 camlib.py:5740
-#: camlib.py:6030
+#: FlatCAMObj.py:2946 camlib.py:5658 camlib.py:6632
+#| msgid ""
+#| "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
+#| "format (x, y) \n"
+#| "but now there is only one value, not two. "
msgid ""
-"[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
-"format (x, y) \n"
+"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
+"y) \n"
"but now there is only one value, not two. "
msgstr ""
-"[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
-"format (x, y) \n"
+"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
+"y) \n"
"but now there is only one value, not two. "
-#: FlatCAMObj.py:3098 FlatCAMObj.py:4004 FlatCAMObj.py:4005 FlatCAMObj.py:4014
+#: FlatCAMObj.py:3261 FlatCAMObj.py:4180 FlatCAMObj.py:4181 FlatCAMObj.py:4190
msgid "Iso"
msgstr "Iso"
-#: FlatCAMObj.py:3098
+#: FlatCAMObj.py:3261
msgid "Finish"
msgstr "Finish"
-#: FlatCAMObj.py:3396 flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:746
-#: flatcamGUI/FlatCAMGUI.py:1700 flatcamGUI/FlatCAMGUI.py:2067
-#: flatcamGUI/ObjectUI.py:998
+#: FlatCAMObj.py:3564 flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:746
+#: flatcamGUI/FlatCAMGUI.py:1718 flatcamGUI/FlatCAMGUI.py:2092
+#: flatcamGUI/ObjectUI.py:1061
msgid "Copy"
msgstr "Copy"
-#: FlatCAMObj.py:3607
-msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
-msgstr "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
+#: FlatCAMObj.py:3775
+#| msgid ""
+#| "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
+msgid "Please enter the desired tool diameter in Float format."
+msgstr "Please enter the desired tool diameter in Float format."
-#: FlatCAMObj.py:3681
-msgid "[success] Tool added in Tool Table."
-msgstr "[success] Tool added in Tool Table."
+#: FlatCAMObj.py:3849
+#| msgid "[success] Tool added in Tool Table."
+msgid "Tool added in Tool Table."
+msgstr "Tool added in Tool Table."
-#: FlatCAMObj.py:3684
-msgid "[WARNING_NOTCL] Default Tool added. Wrong value format entered."
-msgstr "[WARNING_NOTCL] Default Tool added. Wrong value format entered."
+#: FlatCAMObj.py:3853
+#| msgid "[WARNING_NOTCL] Default Tool added. Wrong value format entered."
+msgid "Default Tool added. Wrong value format entered."
+msgstr "Default Tool added. Wrong value format entered."
-#: FlatCAMObj.py:3716 FlatCAMObj.py:3724
-msgid "[WARNING_NOTCL] Failed. Select a tool to copy."
-msgstr "[WARNING_NOTCL] Failed. Select a tool to copy."
+#: FlatCAMObj.py:3886 FlatCAMObj.py:3895
+#| msgid "[WARNING_NOTCL] Failed. Select a tool to copy."
+msgid "Failed. Select a tool to copy."
+msgstr "Failed. Select a tool to copy."
-#: FlatCAMObj.py:3751
-msgid "[success] Tool was copied in Tool Table."
-msgstr "[success] Tool was copied in Tool Table."
+#: FlatCAMObj.py:3923
+#| msgid "[success] Tool was copied in Tool Table."
+msgid "Tool was copied in Tool Table."
+msgstr "Tool was copied in Tool Table."
-#: FlatCAMObj.py:3780
-msgid "[success] Tool was edited in Tool Table."
-msgstr "[success] Tool was edited in Tool Table."
+#: FlatCAMObj.py:3953
+#| msgid "[success] Tool was edited in Tool Table."
+msgid "Tool was edited in Tool Table."
+msgstr "Tool was edited in Tool Table."
-#: FlatCAMObj.py:3808 FlatCAMObj.py:3816
-msgid "[WARNING_NOTCL] Failed. Select a tool to delete."
-msgstr "[WARNING_NOTCL] Failed. Select a tool to delete."
+#: FlatCAMObj.py:3982 FlatCAMObj.py:3991
+#| msgid "[WARNING_NOTCL] Failed. Select a tool to delete."
+msgid "Failed. Select a tool to delete."
+msgstr "Failed. Select a tool to delete."
-#: FlatCAMObj.py:3838
-msgid "[success] Tool was deleted in Tool Table."
-msgstr "[success] Tool was deleted in Tool Table."
+#: FlatCAMObj.py:4014
+#| msgid "[success] Tool was deleted in Tool Table."
+msgid "Tool was deleted in Tool Table."
+msgstr "Tool was deleted in Tool Table."
-#: FlatCAMObj.py:4267
+#: FlatCAMObj.py:4444
#, python-format
+#| msgid ""
+#| "[WARNING_NOTCL] This Geometry can't be processed because it is %s "
+#| "geometry."
+msgid "This Geometry can't be processed because it is %s geometry."
+msgstr "This Geometry can't be processed because it is %s geometry."
+
+#: FlatCAMObj.py:4486
+#| msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
+msgid "Failed. No tool selected in the tool table ..."
+msgstr "Failed. No tool selected in the tool table ..."
+
+#: FlatCAMObj.py:4524
+#| msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
+msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() -->"
+msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() -->"
+
+#: FlatCAMObj.py:4673 FlatCAMObj.py:4913
+#| msgid ""
+#| "[WARNING] Tool Offset is selected in Tool Table but no value is "
+#| "provided.\n"
+#| "Add a Tool Offset or change the Offset Type."
msgid ""
-"[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry."
-msgstr ""
-"[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry."
-
-#: FlatCAMObj.py:4283
-msgid "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number."
-msgstr "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number."
-
-#: FlatCAMObj.py:4308
-msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
-msgstr "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
-
-#: FlatCAMObj.py:4345
-#, python-format
-msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
-msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
-
-#: FlatCAMObj.py:4492 FlatCAMObj.py:4718
-msgid ""
-"[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
+"Tool Offset is selected in Tool Table but no value is provided.\n"
"Add a Tool Offset or change the Offset Type."
msgstr ""
-"[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
+"Tool Offset is selected in Tool Table but no value is provided.\n"
"Add a Tool Offset or change the Offset Type."
-#: FlatCAMObj.py:4605 flatcamTools/ToolSolderPaste.py:1117
-#: flatcamTools/ToolSolderPaste.py:1173
-msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
-msgstr "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
+#: FlatCAMObj.py:4724 FlatCAMObj.py:4954
+msgid "G-Code parsing in progress..."
+msgstr "G-Code parsing in progress..."
-#: FlatCAMObj.py:4967 FlatCAMObj.py:4976 camlib.py:3373 camlib.py:3382
-msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
-msgstr "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
+#: FlatCAMObj.py:4726 FlatCAMObj.py:4956
+#| msgid "[success] Buffering finished ..."
+msgid "G-Code parsing finished..."
+msgstr "G-Code parsing finished..."
-#: FlatCAMObj.py:5019
-msgid "[success] Geometry Scale done."
-msgstr "[success] Geometry Scale done."
+#: FlatCAMObj.py:4734 FlatCAMObj.py:4966 FlatCAMObj.py:5138
+msgid "Finished G-Code processing..."
+msgstr "Finished G-Code processing..."
-#: FlatCAMObj.py:5037 camlib.py:3456
+#: FlatCAMObj.py:4736 FlatCAMObj.py:4968
+#, python-format
+msgid "G-Code processing failed with error: %s"
+msgstr "G-Code processing failed with error: %s"
+
+#: FlatCAMObj.py:4788
+#| msgid ""
+#| "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or "
+#| "self.options[\"feedrate_probe\"]"
msgid ""
-"[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only "
-"one value in the Offset field."
+" Wrong value format for self.defaults[\"feedrate_probe\"] or self."
+"options[\"feedrate_probe\"]"
msgstr ""
-"[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only "
-"one value in the Offset field."
+" Wrong value format for self.defaults[\"feedrate_probe\"] or self."
+"options[\"feedrate_probe\"]"
-#: FlatCAMObj.py:5059
-msgid "[success] Geometry Offset done."
-msgstr "[success] Geometry Offset done."
+#: FlatCAMObj.py:4799 flatcamTools/ToolSolderPaste.py:1187
+#| msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
+msgid "Cancelled. Empty file, it has no geometry"
+msgstr "Cancelled. Empty file, it has no geometry"
-#: FlatCAMObj.py:5630 FlatCAMObj.py:5635 flatcamTools/ToolSolderPaste.py:1373
+#: FlatCAMObj.py:4990 FlatCAMObj.py:4996 FlatCAMObj.py:5148
+msgid "CNCjob created"
+msgstr "CNCjob created"
+
+#: FlatCAMObj.py:5180 FlatCAMObj.py:5190 camlib.py:3581 camlib.py:3591
+#| msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
+msgid "Scale factor has to be a number: integer or float."
+msgstr "Scale factor has to be a number: integer or float."
+
+#: FlatCAMObj.py:5264
+#| msgid "[success] Geometry Scale done."
+msgid "Geometry Scale done."
+msgstr "Geometry Scale done."
+
+#: FlatCAMObj.py:5281 camlib.py:3685
+#| msgid ""
+#| "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered "
+#| "only one value in the Offset field."
+msgid ""
+"An (x,y) pair of values are needed. Probable you entered only one value in "
+"the Offset field."
+msgstr ""
+"An (x,y) pair of values are needed. Probable you entered only one value in "
+"the Offset field."
+
+#: FlatCAMObj.py:5335
+#| msgid "[success] Geometry Offset done."
+msgid "Geometry Offset done."
+msgstr "Geometry Offset done."
+
+#: FlatCAMObj.py:5364
+#| msgid ""
+#| "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
+#| "format (x, y) \n"
+#| "but now there is only one value, not two. "
+msgid ""
+"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
+"y)\n"
+"but now there is only one value, not two."
+msgstr ""
+"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
+"y)\n"
+"but now there is only one value, not two."
+
+#: FlatCAMObj.py:5905 FlatCAMObj.py:5910 flatcamTools/ToolSolderPaste.py:1393
msgid "Export Machine Code ..."
msgstr "Export Machine Code ..."
-#: FlatCAMObj.py:5641 flatcamTools/ToolSolderPaste.py:1376
-msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
-msgstr "[WARNING_NOTCL] Export Machine Code cancelled ..."
+#: FlatCAMObj.py:5916 flatcamTools/ToolSolderPaste.py:1397
+#| msgid "Export Machine Code ..."
+msgid "Export Machine Code cancelled ..."
+msgstr "Export Machine Code cancelled ..."
-#: FlatCAMObj.py:5658
-#, python-format
-msgid "[success] Machine Code file saved to: %s"
-msgstr "[success] Machine Code file saved to: %s"
+#: FlatCAMObj.py:5934
+#| msgid "[success] Machine Code file saved to: %s"
+msgid "Machine Code file saved to"
+msgstr "Machine Code file saved to"
-#: FlatCAMObj.py:5680
-#, python-format
-msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
-msgstr "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
+#: FlatCAMObj.py:5958
+#| msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
+msgid "FlatCAMCNNJob.on_edit_code_click() -->"
+msgstr "FlatCAMCNNJob.on_edit_code_click() -->"
-#: FlatCAMObj.py:5797
-#, python-format
+#: FlatCAMObj.py:5966
+msgid "Loaded Machine Code into Code Editor"
+msgstr "Loaded Machine Code into Code Editor"
+
+#: FlatCAMObj.py:6078
+#| msgid ""
+#| "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s "
+#| "CNCJob object."
+msgid "This CNCJob object can't be processed because it is a"
+msgstr "This CNCJob object can't be processed because it is a"
+
+#: FlatCAMObj.py:6080
+#| msgid "CNC Job Object"
+msgid "CNCJob object"
+msgstr "CNCJob object"
+
+#: FlatCAMObj.py:6132
+#| msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
+msgid "G-code does not have a units code: either G20 or G21"
+msgstr "G-code does not have a units code: either G20 or G21"
+
+#: FlatCAMObj.py:6144
+#| msgid ""
+#| "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
+#| "empty."
+msgid "Cancelled. The Toolchange Custom code is enabled but it's empty."
+msgstr "Cancelled. The Toolchange Custom code is enabled but it's empty."
+
+#: FlatCAMObj.py:6150
+#| msgid "[success] Toolchange G-code was replaced by a custom code."
+msgid "Toolchange G-code was replaced by a custom code."
+msgstr "Toolchange G-code was replaced by a custom code."
+
+#: FlatCAMObj.py:6177
+#| msgid "Saved to: %s"
+msgid "Saved to"
+msgstr "Saved to"
+
+#: FlatCAMObj.py:6187 FlatCAMObj.py:6197
+#| msgid ""
+#| "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
+#| "'toolchange_custom'"
msgid ""
-"[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s "
-"CNCJob object."
+"The used postprocessor file has to have in it's name: 'toolchange_custom'"
msgstr ""
-"[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s "
-"CNCJob object."
+"The used postprocessor file has to have in it's name: 'toolchange_custom'"
-#: FlatCAMObj.py:5850
-msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
-msgstr "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
+#: FlatCAMObj.py:6201
+#| msgid "[ERROR] There is no postprocessor file."
+msgid "There is no postprocessor file."
+msgstr "There is no postprocessor file."
-#: FlatCAMObj.py:5863
-msgid ""
-"[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
-"empty."
-msgstr ""
-"[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
-"empty."
-
-#: FlatCAMObj.py:5870
-msgid "[success] Toolchange G-code was replaced by a custom code."
-msgstr "[success] Toolchange G-code was replaced by a custom code."
-
-#: FlatCAMObj.py:5884 flatcamTools/ToolSolderPaste.py:1402
-msgid "[WARNING_NOTCL] No such file or directory"
-msgstr "[WARNING_NOTCL] No such file or directory"
-
-#: FlatCAMObj.py:5908 FlatCAMObj.py:5920
-msgid ""
-"[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
-"'toolchange_custom'"
-msgstr ""
-"[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
-"'toolchange_custom'"
-
-#: FlatCAMObj.py:5926
-msgid "[ERROR] There is no postprocessor file."
-msgstr "[ERROR] There is no postprocessor file."
+#: FlatCAMProcess.py:172
+#| msgid "...proccessing..."
+msgid "processes running."
+msgstr "processes running."
#: FlatCAMTranslation.py:91
msgid "The application will restart."
@@ -1628,383 +1978,554 @@ msgstr "Apply Language ..."
msgid "Object renamed from {old} to {new}"
msgstr "Object renamed from {old} to {new}"
-#: ObjectCollection.py:765
-#, python-format
-msgid "[ERROR] Cause of error: %s"
-msgstr "[ERROR] Cause of error: %s"
+#: ObjectCollection.py:766
+#| msgid "[ERROR] Cause of error: %s"
+msgid "Cause of error"
+msgstr "Cause of error"
-#: camlib.py:197
-msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
-msgstr "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
+#: camlib.py:215
+#| msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
+msgid "self.solid_geometry is neither BaseGeometry or list."
+msgstr "self.solid_geometry is neither BaseGeometry or list."
-#: camlib.py:1405
-msgid "[success] Object was mirrored ..."
-msgstr "[success] Object was mirrored ..."
+#: camlib.py:1522
+#| msgid "[success] Object was mirrored ..."
+msgid "Object was mirrored"
+msgstr "Object was mirrored"
-#: camlib.py:1407
-msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
-msgstr "[ERROR_NOTCL] Failed to mirror. No object selected"
+#: camlib.py:1525
+#| msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
+msgid "Failed to mirror. No object selected"
+msgstr "Failed to mirror. No object selected"
-#: camlib.py:1447
-msgid "[success] Object was rotated ..."
-msgstr "[success] Object was rotated ..."
+#: camlib.py:1594
+#| msgid "[success] Object was rotated ..."
+msgid "Object was rotated"
+msgstr "Object was rotated"
-#: camlib.py:1449
-msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
-msgstr "[ERROR_NOTCL] Failed to rotate. No object selected"
+#: camlib.py:1597
+#| msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
+msgid "Failed to rotate. No object selected"
+msgstr "Failed to rotate. No object selected"
-#: camlib.py:1488
-msgid "[success] Object was skewed ..."
-msgstr "[success] Object was skewed ..."
+#: camlib.py:1665
+#| msgid "[success] Object was skewed ..."
+msgid "Object was skewed"
+msgstr "Object was skewed"
-#: camlib.py:1490
-msgid "[ERROR_NOTCL] Failed to skew. No object selected"
-msgstr "[ERROR_NOTCL] Failed to skew. No object selected"
+#: camlib.py:1668
+#| msgid "[ERROR_NOTCL] Failed to skew. No object selected"
+msgid "Failed to skew. No object selected"
+msgstr "Failed to skew. No object selected"
-#: camlib.py:2752 camlib.py:2837
-#, python-format
-msgid "[WARNING] Coordinates missing, line ignored: %s"
-msgstr "[WARNING] Coordinates missing, line ignored: %s"
+#: camlib.py:2443
+msgid "Gerber processing. Parsing"
+msgstr "Gerber processing. Parsing"
-#: camlib.py:2753 camlib.py:2838
-msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
-msgstr "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
+#: camlib.py:2443
+msgid "lines"
+msgstr "lines"
-#: camlib.py:2802
-#, python-format
+#: camlib.py:2942 camlib.py:3030
+#| msgid "[WARNING] Coordinates missing, line ignored: %s"
+msgid "Coordinates missing, line ignored"
+msgstr "Coordinates missing, line ignored"
+
+#: camlib.py:2944 camlib.py:3032
+#| msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
+msgid "GERBER file might be CORRUPT. Check the file !!!"
+msgstr "GERBER file might be CORRUPT. Check the file !!!"
+
+#: camlib.py:2994
+#| msgid ""
+#| "[ERROR] Region does not have enough points. File will be processed but "
+#| "there are parser errors. Line number: %s"
msgid ""
-"[ERROR] Region does not have enough points. File will be processed but there "
-"are parser errors. Line number: %s"
+"Region does not have enough points. File will be processed but there are "
+"parser errors. Line number"
msgstr ""
-"[ERROR] Region does not have enough points. File will be processed but there "
-"are parser errors. Line number: %s"
+"Region does not have enough points. File will be processed but there are "
+"parser errors. Line number"
-#: camlib.py:3194
-#, python-format
+#: camlib.py:3364
+msgid "Gerber processing. Joining"
+msgstr "Gerber processing. Joining"
+
+#: camlib.py:3364
+#| msgid "Polygon"
+msgid "polygons"
+msgstr "polygons"
+
+#: camlib.py:3399
+#| msgid "Gerber General"
+msgid "Gerber Line"
+msgstr "Gerber Line"
+
+#: camlib.py:3399
+#| msgid "Gerber General"
+msgid "Gerber Line Content"
+msgstr "Gerber Line Content"
+
+#: camlib.py:3401
+#| msgid ""
+#| "[ERROR]Gerber Parser ERROR.\n"
+#| "%s:"
+msgid "Gerber Parser ERROR"
+msgstr "Gerber Parser ERROR"
+
+#: camlib.py:3649
+#| msgid "[success] Gerber Scale done."
+msgid "Gerber Scale done."
+msgstr "Gerber Scale done."
+
+#: camlib.py:3739
+#| msgid "[success] Gerber Offset done."
+msgid "Gerber Offset done."
+msgstr "Gerber Offset done."
+
+#: camlib.py:3816
+#| msgid "[success] Gerber Mirror done."
+msgid "Gerber Mirror done."
+msgstr "Gerber Mirror done."
+
+#: camlib.py:3885
+#| msgid "[success] Gerber Skew done."
+msgid "Gerber Skew done."
+msgstr "Gerber Skew done."
+
+#: camlib.py:3946
+#| msgid "[success] Gerber Rotate done."
+msgid "Gerber Rotate done."
+msgstr "Gerber Rotate done."
+
+#: camlib.py:4233
+#| msgid "[ERROR_NOTCL] This is GCODE mark: %s"
+msgid "This is GCODE mark"
+msgstr "This is GCODE mark"
+
+#: camlib.py:4349
msgid ""
-"[ERROR]Gerber Parser ERROR.\n"
-"%s:"
+"No tool diameter info's. See shell.\n"
+"A tool change event: T"
msgstr ""
-"[ERROR]Gerber Parser ERROR.\n"
-"%s:"
+"No tool diameter info's. See shell.\n"
+"A tool change event: T"
-#: camlib.py:3422
-msgid "[success] Gerber Scale done."
-msgstr "[success] Gerber Scale done."
-
-#: camlib.py:3492
-msgid "[success] Gerber Offset done."
-msgstr "[success] Gerber Offset done."
-
-#: camlib.py:3550
-msgid "[success] Gerber Mirror done."
-msgstr "[success] Gerber Mirror done."
-
-#: camlib.py:3600
-msgid "[success] Gerber Skew done."
-msgstr "[success] Gerber Skew done."
-
-#: camlib.py:3642
-msgid "[success] Gerber Rotate done."
-msgstr "[success] Gerber Rotate done."
-
-#: camlib.py:3923
-#, python-format
-msgid "[ERROR_NOTCL] This is GCODE mark: %s"
-msgstr "[ERROR_NOTCL] This is GCODE mark: %s"
-
-#: camlib.py:4038
-#, python-format
+#: camlib.py:4352
+#| msgid ""
+#| "[WARNING] No tool diameter info's. See shell.\n"
+#| "A tool change event: T%s was found but the Excellon file have no "
+#| "informations regarding the tool diameters therefore the application will "
+#| "try to load it by using some 'fake' diameters.\n"
+#| "The user needs to edit the resulting Excellon object and change the "
+#| "diameters to reflect the real diameters."
msgid ""
-"[WARNING] No tool diameter info's. See shell.\n"
-"A tool change event: T%s was found but the Excellon file have no "
-"informations regarding the tool diameters therefore the application will try "
-"to load it by using some 'fake' diameters.\n"
+"was found but the Excellon file have no informations regarding the tool "
+"diameters therefore the application will try to load it by using some 'fake' "
+"diameters.\n"
"The user needs to edit the resulting Excellon object and change the "
"diameters to reflect the real diameters."
msgstr ""
-"[WARNING] No tool diameter info's. See shell.\n"
-"A tool change event: T%s was found but the Excellon file have no "
-"informations regarding the tool diameters therefore the application will try "
-"to load it by using some 'fake' diameters.\n"
+"was found but the Excellon file have no informations regarding the tool "
+"diameters therefore the application will try to load it by using some 'fake' "
+"diameters.\n"
"The user needs to edit the resulting Excellon object and change the "
"diameters to reflect the real diameters."
-#: camlib.py:4502
+#: camlib.py:4807
#, python-brace-format
+#| msgid ""
+#| "[ERROR] Excellon Parser error.\n"
+#| "Parsing Failed. Line {l_nr}: {line}\n"
msgid ""
-"[ERROR] Excellon Parser error.\n"
+"{e_code} Excellon Parser error.\n"
"Parsing Failed. Line {l_nr}: {line}\n"
msgstr ""
-"[ERROR] Excellon Parser error.\n"
+"{e_code} Excellon Parser error.\n"
"Parsing Failed. Line {l_nr}: {line}\n"
-#: camlib.py:4581
+#: camlib.py:4890
+#| msgid ""
+#| "[WARNING] Excellon.create_geometry() -> a drill location was skipped due "
+#| "of not having a tool associated.\n"
+#| "Check the resulting GCode."
msgid ""
-"[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
-"not having a tool associated.\n"
+"Excellon.create_geometry() -> a drill location was skipped due of not having "
+"a tool associated.\n"
"Check the resulting GCode."
msgstr ""
-"[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
-"not having a tool associated.\n"
+"Excellon.create_geometry() -> a drill location was skipped due of not having "
+"a tool associated.\n"
"Check the resulting GCode."
-#: camlib.py:5153
-#, python-format
-msgid "[ERROR] There is no such parameter: %s"
-msgstr "[ERROR] There is no such parameter: %s"
+#: camlib.py:5564
+#| msgid "[ERROR] There is no such parameter: %s"
+msgid "There is no such parameter"
+msgstr "There is no such parameter"
-#: camlib.py:5223
+#: camlib.py:5635
+#| msgid ""
+#| "[WARNING] The Cut Z parameter has positive value. It is the depth value "
+#| "to drill into material.\n"
+#| "The Cut Z parameter needs to have a negative value, assuming it is a typo "
+#| "therefore the app will convert the value to negative. Check the resulting "
+#| "CNC code (Gcode etc)."
msgid ""
-"[WARNING] The Cut Z parameter has positive value. It is the depth value to "
-"drill into material.\n"
+"The Cut Z parameter has positive value. It is the depth value to drill into "
+"material.\n"
"The Cut Z parameter needs to have a negative value, assuming it is a typo "
"therefore the app will convert the value to negative. Check the resulting "
"CNC code (Gcode etc)."
msgstr ""
-"[WARNING] The Cut Z parameter has positive value. It is the depth value to "
-"drill into material.\n"
+"The Cut Z parameter has positive value. It is the depth value to drill into "
+"material.\n"
"The Cut Z parameter needs to have a negative value, assuming it is a typo "
"therefore the app will convert the value to negative. Check the resulting "
"CNC code (Gcode etc)."
-#: camlib.py:5230 camlib.py:5763 camlib.py:6053
-#, python-format
+#: camlib.py:5643 camlib.py:6316 camlib.py:6658
+#| msgid ""
+#| "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s "
+#| "file"
+msgid "The Cut Z parameter is zero. There will be no cut, skipping file"
+msgstr "The Cut Z parameter is zero. There will be no cut, skipping file"
+
+#: camlib.py:5695
+msgid "Creating a list of points to drill..."
+msgstr "Creating a list of points to drill..."
+
+#: camlib.py:5778
+#| msgid "Opening G-Code."
+msgid "Starting G-Code"
+msgstr "Starting G-Code"
+
+#: camlib.py:5874 camlib.py:6020 camlib.py:6126 camlib.py:6425 camlib.py:6767
+msgid "Starting G-Code for tool with diameter"
+msgstr "Starting G-Code for tool with diameter"
+
+#: camlib.py:5931 camlib.py:6077 camlib.py:6184
+msgid "G91 coordinates not implemented"
+msgstr "G91 coordinates not implemented"
+
+#: camlib.py:5937 camlib.py:6083 camlib.py:6190
+#| msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..."
+msgid "The loaded Excellon file has no drills"
+msgstr "The loaded Excellon file has no drills"
+
+#: camlib.py:6089
+#| msgid "[ERROR_NOTCL] Wrong optimization type selected."
+msgid "Wrong optimization type selected."
+msgstr "Wrong optimization type selected."
+
+#: camlib.py:6212
+#| msgid "Files that control the GCode generation."
+msgid "Finished G-Code generation..."
+msgstr "Finished G-Code generation..."
+
+#: camlib.py:6289
+#| msgid ""
+#| "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
+#| "format (x, y) \n"
+#| "but now there is only one value, not two. "
msgid ""
-"[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
+"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
+"y) \n"
+"but now there is only one value, not two."
msgstr ""
-"[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
+"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
+"y) \n"
+"but now there is only one value, not two."
-#: camlib.py:5470 camlib.py:5576 camlib.py:5642
-msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..."
-msgstr "[ERROR_NOTCL] The loaded Excellon file has no drills ..."
-
-#: camlib.py:5581
-msgid "[ERROR_NOTCL] Wrong optimization type selected."
-msgstr "[ERROR_NOTCL] Wrong optimization type selected."
-
-#: camlib.py:5751 camlib.py:6041
+#: camlib.py:6302 camlib.py:6644
+#| msgid ""
+#| "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
+#| "combinations of other parameters."
msgid ""
-"[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
-"combinations of other parameters."
+"Cut_Z parameter is None or zero. Most likely a bad combinations of other "
+"parameters."
msgstr ""
-"[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
-"combinations of other parameters."
+"Cut_Z parameter is None or zero. Most likely a bad combinations of other "
+"parameters."
-#: camlib.py:5756 camlib.py:6046
+#: camlib.py:6308 camlib.py:6650
+#| msgid ""
+#| "[WARNING] The Cut Z parameter has positive value. It is the depth value "
+#| "to cut into material.\n"
+#| "The Cut Z parameter needs to have a negative value, assuming it is a typo "
+#| "therefore the app will convert the value to negative.Check the resulting "
+#| "CNC code (Gcode etc)."
msgid ""
-"[WARNING] The Cut Z parameter has positive value. It is the depth value to "
-"cut into material.\n"
+"The Cut Z parameter has positive value. It is the depth value to cut into "
+"material.\n"
"The Cut Z parameter needs to have a negative value, assuming it is a typo "
"therefore the app will convert the value to negative.Check the resulting CNC "
"code (Gcode etc)."
msgstr ""
-"[WARNING] The Cut Z parameter has positive value. It is the depth value to "
-"cut into material.\n"
+"The Cut Z parameter has positive value. It is the depth value to cut into "
+"material.\n"
"The Cut Z parameter needs to have a negative value, assuming it is a typo "
"therefore the app will convert the value to negative.Check the resulting CNC "
"code (Gcode etc)."
-#: camlib.py:5772 camlib.py:6058
-msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
-msgstr "[ERROR_NOTCL] Travel Z parameter is None or zero."
+#: camlib.py:6326 camlib.py:6664
+#| msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
+msgid "Travel Z parameter is None or zero."
+msgstr "Travel Z parameter is None or zero."
-#: camlib.py:5776 camlib.py:6062
+#: camlib.py:6331 camlib.py:6669
+#| msgid ""
+#| "[WARNING] The Travel Z parameter has negative value. It is the height "
+#| "value to travel between cuts.\n"
+#| "The Z Travel parameter needs to have a positive value, assuming it is a "
+#| "typo therefore the app will convert the value to positive.Check the "
+#| "resulting CNC code (Gcode etc)."
msgid ""
-"[WARNING] The Travel Z parameter has negative value. It is the height value "
-"to travel between cuts.\n"
+"The Travel Z parameter has negative value. It is the height value to travel "
+"between cuts.\n"
"The Z Travel parameter needs to have a positive value, assuming it is a typo "
"therefore the app will convert the value to positive.Check the resulting CNC "
"code (Gcode etc)."
msgstr ""
-"[WARNING] The Travel Z parameter has negative value. It is the height value "
-"to travel between cuts.\n"
+"The Travel Z parameter has negative value. It is the height value to travel "
+"between cuts.\n"
"The Z Travel parameter needs to have a positive value, assuming it is a typo "
"therefore the app will convert the value to positive.Check the resulting CNC "
"code (Gcode etc)."
-#: camlib.py:5783 camlib.py:6069
+#: camlib.py:6339 camlib.py:6677
+#| msgid ""
+#| "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s "
+#| "file"
+msgid "The Z Travel parameter is zero. This is dangerous, skipping file"
+msgstr "The Z Travel parameter is zero. This is dangerous, skipping file"
+
+#: camlib.py:6354 camlib.py:6696
+msgid "Indexing geometry before generating G-Code..."
+msgstr "Indexing geometry before generating G-Code..."
+
+#: camlib.py:6408 camlib.py:6753
+#| msgid "Export G-Code ..."
+msgid "Starting G-Code..."
+msgstr "Starting G-Code..."
+
+#: camlib.py:6495 camlib.py:6837
+#| msgid "Files that control the GCode generation."
+msgid "Finished G-Code generation"
+msgstr "Finished G-Code generation"
+
+#: camlib.py:6497
+msgid "paths traced"
+msgstr "paths traced"
+
+#: camlib.py:6532
+#| msgid "[ERROR]Expected a Geometry, got %s"
+msgid "Expected a Geometry, got"
+msgstr "Expected a Geometry, got"
+
+#: camlib.py:6539
+#| msgid ""
+#| "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without "
+#| "solid_geometry."
+msgid ""
+"Trying to generate a CNC Job from a Geometry object without solid_geometry."
+msgstr ""
+"Trying to generate a CNC Job from a Geometry object without solid_geometry."
+
+#: camlib.py:6578
#, python-format
-msgid ""
-"[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
-msgstr ""
-"[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
+#| msgid ""
+#| "[ERROR_NOTCL] Failed.\n"
+#| "%s"
+msgid "[ERROR_NOTCL] %s"
+msgstr "[ERROR_NOTCL] %s"
-#: camlib.py:5936
-#, python-format
-msgid "[ERROR]Expected a Geometry, got %s"
-msgstr "[ERROR]Expected a Geometry, got %s"
+#: camlib.py:6839
+msgid " paths traced."
+msgstr " paths traced."
-#: camlib.py:5942
-msgid ""
-"[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without "
-"solid_geometry."
-msgstr ""
-"[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without "
-"solid_geometry."
+#: camlib.py:6868
+#| msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
+msgid "There is no tool data in the SolderPaste geometry."
+msgstr "There is no tool data in the SolderPaste geometry."
-#: camlib.py:5981
-msgid ""
-"[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
-"current_geometry.\n"
-"Raise the value (in module) and try again."
-msgstr ""
-"[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
-"current_geometry.\n"
-"Raise the value (in module) and try again."
+#: camlib.py:6955
+#| msgid "Files that control the GCode generation."
+msgid "Finished SolderPste G-Code generation"
+msgstr "Finished SolderPste G-Code generation"
-#: camlib.py:6215
-msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
-msgstr "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
+#: camlib.py:6957
+msgid "paths traced."
+msgstr "paths traced."
-#: flatcamEditors/FlatCAMExcEditor.py:45 flatcamEditors/FlatCAMExcEditor.py:69
-#: flatcamEditors/FlatCAMExcEditor.py:150
-#: flatcamEditors/FlatCAMExcEditor.py:350
-#: flatcamEditors/FlatCAMExcEditor.py:540
-#: flatcamEditors/FlatCAMGrbEditor.py:237
-#: flatcamEditors/FlatCAMGrbEditor.py:242
+#: camlib.py:7430 camlib.py:7708 camlib.py:7811 camlib.py:7858
+msgid "G91 coordinates not implemented ..."
+msgstr "G91 coordinates not implemented ..."
+
+#: flatcamEditors/FlatCAMExcEditor.py:45 flatcamEditors/FlatCAMExcEditor.py:70
+#: flatcamEditors/FlatCAMExcEditor.py:152
+#: flatcamEditors/FlatCAMExcEditor.py:356
+#: flatcamEditors/FlatCAMExcEditor.py:548
+#: flatcamEditors/FlatCAMGrbEditor.py:238
+#: flatcamEditors/FlatCAMGrbEditor.py:243
msgid "Click to place ..."
msgstr "Click to place ..."
-#: flatcamEditors/FlatCAMExcEditor.py:53
-msgid "[WARNING_NOTCL] To add a drill first select a tool"
-msgstr "[WARNING_NOTCL] To add a drill first select a tool"
+#: flatcamEditors/FlatCAMExcEditor.py:54
+#| msgid "[WARNING_NOTCL] To add a drill first select a tool"
+msgid "To add a drill first select a tool"
+msgstr "To add a drill first select a tool"
-#: flatcamEditors/FlatCAMExcEditor.py:115
-msgid "[success] Done. Drill added."
-msgstr "[success] Done. Drill added."
+#: flatcamEditors/FlatCAMExcEditor.py:117
+#| msgid "[success] Done. Drill added."
+msgid "Done. Drill added."
+msgstr "Done. Drill added."
-#: flatcamEditors/FlatCAMExcEditor.py:157
-msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
-msgstr ""
-"[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
+#: flatcamEditors/FlatCAMExcEditor.py:160
+#| msgid ""
+#| "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
+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"
-#: flatcamEditors/FlatCAMExcEditor.py:173
-#: flatcamEditors/FlatCAMExcEditor.py:379
-#: flatcamEditors/FlatCAMExcEditor.py:587
-#: flatcamEditors/FlatCAMExcEditor.py:1083
-#: flatcamEditors/FlatCAMExcEditor.py:1108
-#: flatcamEditors/FlatCAMGrbEditor.py:459
-#: flatcamEditors/FlatCAMGrbEditor.py:1845
-#: flatcamEditors/FlatCAMGrbEditor.py:1873
+#: flatcamEditors/FlatCAMExcEditor.py:176
+#: flatcamEditors/FlatCAMExcEditor.py:386
+#: flatcamEditors/FlatCAMExcEditor.py:596
+#: flatcamEditors/FlatCAMExcEditor.py:1098
+#: flatcamEditors/FlatCAMExcEditor.py:1123
+#: flatcamEditors/FlatCAMGrbEditor.py:462
+#: flatcamEditors/FlatCAMGrbEditor.py:1859
+#: flatcamEditors/FlatCAMGrbEditor.py:1887
msgid "Click on target location ..."
msgstr "Click on target location ..."
-#: flatcamEditors/FlatCAMExcEditor.py:190
+#: flatcamEditors/FlatCAMExcEditor.py:193
msgid "Click on the Drill Circular Array Start position"
msgstr "Click on the Drill Circular Array Start position"
-#: flatcamEditors/FlatCAMExcEditor.py:212
-#: flatcamEditors/FlatCAMExcEditor.py:626
-#: flatcamEditors/FlatCAMGrbEditor.py:502
-msgid ""
-"[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
-"separator."
-msgstr ""
-"[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
-"separator."
-
#: flatcamEditors/FlatCAMExcEditor.py:215
-#, python-format
-msgid "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
-msgstr "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
+#: flatcamEditors/FlatCAMExcEditor.py:635
+#: flatcamEditors/FlatCAMGrbEditor.py:505
+#| msgid ""
+#| "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
+#| "separator."
+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."
-#: flatcamEditors/FlatCAMExcEditor.py:313
-msgid "[WARNING_NOTCL] Too many drills for the selected spacing angle."
-msgstr "[WARNING_NOTCL] Too many drills for the selected spacing angle."
+#: flatcamEditors/FlatCAMExcEditor.py:219
+#| msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
+msgid "The value is mistyped. Check the value"
+msgstr "The value is mistyped. Check the value"
-#: flatcamEditors/FlatCAMExcEditor.py:330
-msgid "[success] Done. Drill Array added."
-msgstr "[success] Done. Drill Array added."
+#: flatcamEditors/FlatCAMExcEditor.py:318
+#| msgid "[WARNING_NOTCL] Too many drills for the selected spacing angle."
+msgid "Too many drills for the selected spacing angle."
+msgstr "Too many drills for the selected spacing angle."
-#: flatcamEditors/FlatCAMExcEditor.py:358
-msgid "[WARNING_NOTCL] To add a slot first select a tool"
-msgstr "[WARNING_NOTCL] To add a slot first select a tool"
+#: flatcamEditors/FlatCAMExcEditor.py:336
+#| msgid "[success] Done. Drill Array added."
+msgid "Done. Drill Array added."
+msgstr "Done. Drill Array added."
-#: flatcamEditors/FlatCAMExcEditor.py:415
-#: flatcamEditors/FlatCAMExcEditor.py:422
-#: flatcamEditors/FlatCAMExcEditor.py:690
-#: flatcamEditors/FlatCAMExcEditor.py:697
-msgid "[WARNING_NOTCL] Value is missing or wrong format. Add it and retry."
-msgstr "[WARNING_NOTCL] Value is missing or wrong format. Add it and retry."
+#: flatcamEditors/FlatCAMExcEditor.py:365
+#| msgid "[WARNING_NOTCL] To add a slot first select a tool"
+msgid "To add a slot first select a tool"
+msgstr "To add a slot first select a tool"
-#: flatcamEditors/FlatCAMExcEditor.py:521
-msgid "[success] Done. Adding Slot completed."
-msgstr "[success] Done. Adding Slot completed."
+#: flatcamEditors/FlatCAMExcEditor.py:423
+#: flatcamEditors/FlatCAMExcEditor.py:430
+#: flatcamEditors/FlatCAMExcEditor.py:701
+#: flatcamEditors/FlatCAMExcEditor.py:708
+#| msgid "[WARNING_NOTCL] Value is missing or wrong format. Add it and retry."
+msgid "Value is missing or wrong format. Add it and retry."
+msgstr "Value is missing or wrong format. Add it and retry."
-#: flatcamEditors/FlatCAMExcEditor.py:547
-msgid "[WARNING_NOTCL] To add an Slot Array first select a tool in Tool Table"
-msgstr "[WARNING_NOTCL] To add an Slot Array first select a tool in Tool Table"
+#: flatcamEditors/FlatCAMExcEditor.py:529
+#| msgid "[success] Done. Adding Slot completed."
+msgid "Done. Adding Slot completed."
+msgstr "Done. Adding Slot completed."
-#: flatcamEditors/FlatCAMExcEditor.py:604
+#: flatcamEditors/FlatCAMExcEditor.py:556
+#| msgid ""
+#| "[WARNING_NOTCL] To add an Slot Array first select a tool in Tool Table"
+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"
+
+#: flatcamEditors/FlatCAMExcEditor.py:613
msgid "Click on the Slot Circular Array Start position"
msgstr "Click on the Slot Circular Array Start position"
-#: flatcamEditors/FlatCAMExcEditor.py:629
-#: flatcamEditors/FlatCAMGrbEditor.py:505
-msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
-msgstr "[ERROR_NOTCL] The value is mistyped. Check the value."
+#: flatcamEditors/FlatCAMExcEditor.py:639
+#: flatcamEditors/FlatCAMGrbEditor.py:509
+#| msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
+msgid "The value is mistyped. Check the value."
+msgstr "The value is mistyped. Check the value."
-#: flatcamEditors/FlatCAMExcEditor.py:807
-msgid "[WARNING_NOTCL] Too many Slots for the selected spacing angle."
-msgstr "[WARNING_NOTCL] Too many Slots for the selected spacing angle."
+#: flatcamEditors/FlatCAMExcEditor.py:818
+#| msgid "[WARNING_NOTCL] Too many Slots for the selected spacing angle."
+msgid "Too many Slots for the selected spacing angle."
+msgstr "Too many Slots for the selected spacing angle."
-#: flatcamEditors/FlatCAMExcEditor.py:829
-msgid "[success] Done. Slot Array added."
-msgstr "[success] Done. Slot Array added."
+#: flatcamEditors/FlatCAMExcEditor.py:841
+#| msgid "[success] Done. Slot Array added."
+msgid "Done. Slot Array added."
+msgstr "Done. Slot Array added."
-#: flatcamEditors/FlatCAMExcEditor.py:846
+#: flatcamEditors/FlatCAMExcEditor.py:858
msgid "Click on the Drill(s) to resize ..."
msgstr "Click on the Drill(s) to resize ..."
-#: flatcamEditors/FlatCAMExcEditor.py:876
-msgid ""
-"[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
-msgstr ""
-"[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
+#: flatcamEditors/FlatCAMExcEditor.py:888
+#| msgid ""
+#| "[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
+msgid "Resize drill(s) failed. Please enter a diameter for resize."
+msgstr "Resize drill(s) failed. Please enter a diameter for resize."
-#: flatcamEditors/FlatCAMExcEditor.py:966
-#: flatcamEditors/FlatCAMExcEditor.py:1035
-msgid "[ERROR_NOTCL] Cancelled."
-msgstr "[ERROR_NOTCL] Cancelled."
+#: flatcamEditors/FlatCAMExcEditor.py:978
+#: flatcamEditors/FlatCAMExcEditor.py:1048
+#| msgid "Cancel"
+msgid "Cancelled."
+msgstr "Cancelled."
-#: flatcamEditors/FlatCAMExcEditor.py:1055
-msgid "[success] Done. Drill/Slot Resize completed."
-msgstr "[success] Done. Drill/Slot Resize completed."
+#: flatcamEditors/FlatCAMExcEditor.py:1069
+#| msgid "[success] Done. Drill/Slot Resize completed."
+msgid "Drill/Slot Resize completed."
+msgstr "Drill/Slot Resize completed."
-#: flatcamEditors/FlatCAMExcEditor.py:1057
-msgid "[WARNING_NOTCL] Cancelled. No drills/slots selected for resize ..."
-msgstr "[WARNING_NOTCL] Cancelled. No drills/slots selected for resize ..."
+#: flatcamEditors/FlatCAMExcEditor.py:1072
+#| msgid "[WARNING_NOTCL] Cancelled. No drills/slots selected for resize ..."
+msgid "Cancelled. No drills/slots selected for resize ..."
+msgstr "Cancelled. No drills/slots selected for resize ..."
-#: flatcamEditors/FlatCAMExcEditor.py:1085
-#: flatcamEditors/FlatCAMGrbEditor.py:1847
+#: flatcamEditors/FlatCAMExcEditor.py:1100
+#: flatcamEditors/FlatCAMGrbEditor.py:1861
msgid "Click on reference location ..."
msgstr "Click on reference location ..."
-#: flatcamEditors/FlatCAMExcEditor.py:1140
-msgid "[success] Done. Drill(s) Move completed."
-msgstr "[success] Done. Drill(s) Move completed."
+#: flatcamEditors/FlatCAMExcEditor.py:1156
+#| msgid "[success] Done. Drill(s) Move completed."
+msgid "Done. Drill(s) Move completed."
+msgstr "Done. Drill(s) Move completed."
-#: flatcamEditors/FlatCAMExcEditor.py:1237
-msgid "[success] Done. Drill(s) copied."
-msgstr "[success] Done. Drill(s) copied."
+#: flatcamEditors/FlatCAMExcEditor.py:1254
+#| msgid "[success] Done. Drill(s) copied."
+msgid "Done. Drill(s) copied."
+msgstr "Done. Drill(s) copied."
-#: flatcamEditors/FlatCAMExcEditor.py:1454 flatcamGUI/FlatCAMGUI.py:5445
+#: flatcamEditors/FlatCAMExcEditor.py:1473 flatcamGUI/FlatCAMGUI.py:5510
msgid "Excellon Editor"
msgstr "Excellon Editor"
-#: flatcamEditors/FlatCAMExcEditor.py:1461
-#: flatcamEditors/FlatCAMGrbEditor.py:2341
+#: flatcamEditors/FlatCAMExcEditor.py:1480
+#: flatcamEditors/FlatCAMGrbEditor.py:2361
msgid "Name:"
msgstr "Name:"
-#: flatcamEditors/FlatCAMExcEditor.py:1467 flatcamGUI/ObjectUI.py:534
-#: flatcamGUI/ObjectUI.py:856 flatcamTools/ToolNonCopperClear.py:96
+#: flatcamEditors/FlatCAMExcEditor.py:1486 flatcamGUI/ObjectUI.py:593
+#: flatcamGUI/ObjectUI.py:919 flatcamTools/ToolNonCopperClear.py:96
#: flatcamTools/ToolPaint.py:95 flatcamTools/ToolSolderPaste.py:70
msgid "Tools Table"
msgstr "Tools Table"
-#: flatcamEditors/FlatCAMExcEditor.py:1469 flatcamGUI/ObjectUI.py:536
+#: flatcamEditors/FlatCAMExcEditor.py:1488 flatcamGUI/ObjectUI.py:595
msgid ""
"Tools in this Excellon object\n"
"when are used for drilling."
@@ -2012,11 +2533,11 @@ msgstr ""
"Tools in this Excellon object\n"
"when are used for drilling."
-#: flatcamEditors/FlatCAMExcEditor.py:1489
+#: flatcamEditors/FlatCAMExcEditor.py:1508
msgid "Add/Delete Tool"
msgstr "Add/Delete Tool"
-#: flatcamEditors/FlatCAMExcEditor.py:1491
+#: flatcamEditors/FlatCAMExcEditor.py:1510
msgid ""
"Add/Delete a tool to the tool list\n"
"for this Excellon object."
@@ -2024,20 +2545,21 @@ msgstr ""
"Add/Delete a tool to the tool list\n"
"for this Excellon object."
-#: flatcamEditors/FlatCAMExcEditor.py:1499
-msgid "Tool Dia:"
-msgstr "Tool Dia:"
+#: flatcamEditors/FlatCAMExcEditor.py:1518 flatcamGUI/ObjectUI.py:1037
+#: flatcamTools/ToolNonCopperClear.py:212 flatcamTools/ToolPaint.py:162
+msgid "Tool Dia"
+msgstr "Tool Dia"
-#: flatcamEditors/FlatCAMExcEditor.py:1501 flatcamGUI/FlatCAMGUI.py:5474
-#: flatcamGUI/ObjectUI.py:977
+#: flatcamEditors/FlatCAMExcEditor.py:1520 flatcamGUI/FlatCAMGUI.py:5539
+#: flatcamGUI/ObjectUI.py:1040
msgid "Diameter for the new tool"
msgstr "Diameter for the new tool"
-#: flatcamEditors/FlatCAMExcEditor.py:1509
+#: flatcamEditors/FlatCAMExcEditor.py:1528
msgid "Add Tool"
msgstr "Add Tool"
-#: flatcamEditors/FlatCAMExcEditor.py:1511
+#: flatcamEditors/FlatCAMExcEditor.py:1530
msgid ""
"Add a new tool to the tool list\n"
"with the diameter specified above."
@@ -2045,11 +2567,11 @@ msgstr ""
"Add a new tool to the tool list\n"
"with the diameter specified above."
-#: flatcamEditors/FlatCAMExcEditor.py:1523
+#: flatcamEditors/FlatCAMExcEditor.py:1542
msgid "Delete Tool"
msgstr "Delete Tool"
-#: flatcamEditors/FlatCAMExcEditor.py:1525
+#: flatcamEditors/FlatCAMExcEditor.py:1544
msgid ""
"Delete a tool in the tool list\n"
"by selecting a row in the tool table."
@@ -2057,39 +2579,40 @@ msgstr ""
"Delete a tool in the tool list\n"
"by selecting a row in the tool table."
-#: flatcamEditors/FlatCAMExcEditor.py:1543
+#: flatcamEditors/FlatCAMExcEditor.py:1562
msgid "Resize Drill(s)"
msgstr "Resize Drill(s)"
-#: flatcamEditors/FlatCAMExcEditor.py:1545
+#: flatcamEditors/FlatCAMExcEditor.py:1564
msgid "Resize a drill or a selection of drills."
msgstr "Resize a drill or a selection of drills."
-#: flatcamEditors/FlatCAMExcEditor.py:1552
-msgid "Resize Dia:"
-msgstr "Resize Dia:"
+#: flatcamEditors/FlatCAMExcEditor.py:1571
+#| msgid "Resize Dia:"
+msgid "Resize Dia"
+msgstr "Resize Dia"
-#: flatcamEditors/FlatCAMExcEditor.py:1554
+#: flatcamEditors/FlatCAMExcEditor.py:1573
msgid "Diameter to resize to."
msgstr "Diameter to resize to."
-#: flatcamEditors/FlatCAMExcEditor.py:1562
+#: flatcamEditors/FlatCAMExcEditor.py:1581
msgid "Resize"
msgstr "Resize"
-#: flatcamEditors/FlatCAMExcEditor.py:1564
+#: flatcamEditors/FlatCAMExcEditor.py:1583
msgid "Resize drill(s)"
msgstr "Resize drill(s)"
-#: flatcamEditors/FlatCAMExcEditor.py:1589 flatcamGUI/FlatCAMGUI.py:1692
+#: flatcamEditors/FlatCAMExcEditor.py:1608 flatcamGUI/FlatCAMGUI.py:1710
msgid "Add Drill Array"
msgstr "Add Drill Array"
-#: flatcamEditors/FlatCAMExcEditor.py:1591
+#: flatcamEditors/FlatCAMExcEditor.py:1610
msgid "Add an array of drills (linear or circular array)"
msgstr "Add an array of drills (linear or circular array)"
-#: flatcamEditors/FlatCAMExcEditor.py:1597
+#: flatcamEditors/FlatCAMExcEditor.py:1616
msgid ""
"Select the type of drills array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -2097,38 +2620,41 @@ msgstr ""
"Select the type of drills array to create.\n"
"It can be Linear X(Y) or Circular"
-#: flatcamEditors/FlatCAMExcEditor.py:1600
-#: flatcamEditors/FlatCAMExcEditor.py:1802
-#: flatcamEditors/FlatCAMGrbEditor.py:2627
+#: flatcamEditors/FlatCAMExcEditor.py:1619
+#: flatcamEditors/FlatCAMExcEditor.py:1821
+#: flatcamEditors/FlatCAMGrbEditor.py:2647
msgid "Linear"
msgstr "Linear"
-#: flatcamEditors/FlatCAMExcEditor.py:1601
-#: flatcamEditors/FlatCAMExcEditor.py:1803
-#: flatcamEditors/FlatCAMGrbEditor.py:2628
+#: flatcamEditors/FlatCAMExcEditor.py:1620
+#: flatcamEditors/FlatCAMExcEditor.py:1822
+#: flatcamEditors/FlatCAMGrbEditor.py:2648 flatcamGUI/FlatCAMGUI.py:6460
+#: flatcamTools/ToolNonCopperClear.py:203
msgid "Circular"
msgstr "Circular"
-#: flatcamEditors/FlatCAMExcEditor.py:1609
-msgid "Nr of drills:"
-msgstr "Nr of drills:"
+#: flatcamEditors/FlatCAMExcEditor.py:1628 flatcamGUI/FlatCAMGUI.py:5549
+msgid "Nr of drills"
+msgstr "Nr of drills"
-#: flatcamEditors/FlatCAMExcEditor.py:1610 flatcamGUI/FlatCAMGUI.py:5486
+#: flatcamEditors/FlatCAMExcEditor.py:1629 flatcamGUI/FlatCAMGUI.py:5551
msgid "Specify how many drills to be in the array."
msgstr "Specify how many drills to be in the array."
-#: flatcamEditors/FlatCAMExcEditor.py:1627
-#: flatcamEditors/FlatCAMExcEditor.py:1674
-#: flatcamEditors/FlatCAMExcEditor.py:1738
-#: flatcamEditors/FlatCAMExcEditor.py:1829
-#: flatcamEditors/FlatCAMExcEditor.py:1876
-msgid "Direction:"
-msgstr "Direction:"
+#: flatcamEditors/FlatCAMExcEditor.py:1646
+#: flatcamEditors/FlatCAMExcEditor.py:1693
+#: flatcamEditors/FlatCAMExcEditor.py:1757
+#: flatcamEditors/FlatCAMExcEditor.py:1848
+#: flatcamEditors/FlatCAMExcEditor.py:1895
+#: flatcamEditors/FlatCAMGrbEditor.py:2674
+#: flatcamEditors/FlatCAMGrbEditor.py:2719 flatcamGUI/FlatCAMGUI.py:5643
+msgid "Direction"
+msgstr "Direction"
-#: flatcamEditors/FlatCAMExcEditor.py:1629
-#: flatcamEditors/FlatCAMExcEditor.py:1831
-#: flatcamEditors/FlatCAMGrbEditor.py:2656 flatcamGUI/FlatCAMGUI.py:4652
-#: flatcamGUI/FlatCAMGUI.py:5501 flatcamGUI/FlatCAMGUI.py:5632
+#: flatcamEditors/FlatCAMExcEditor.py:1648
+#: flatcamEditors/FlatCAMExcEditor.py:1850
+#: flatcamEditors/FlatCAMGrbEditor.py:2676 flatcamGUI/FlatCAMGUI.py:4717
+#: flatcamGUI/FlatCAMGUI.py:5566 flatcamGUI/FlatCAMGUI.py:5697
msgid ""
"Direction on which the linear array is oriented:\n"
"- 'X' - horizontal axis \n"
@@ -2140,62 +2666,59 @@ msgstr ""
"- 'Y' - vertical axis or \n"
"- 'Angle' - a custom angle for the array inclination"
-#: flatcamEditors/FlatCAMExcEditor.py:1636
-#: flatcamEditors/FlatCAMExcEditor.py:1747
-#: flatcamEditors/FlatCAMExcEditor.py:1838
-#: flatcamEditors/FlatCAMGrbEditor.py:2663 flatcamGUI/FlatCAMGUI.py:4658
-#: flatcamGUI/FlatCAMGUI.py:5507 flatcamGUI/FlatCAMGUI.py:5587
-#: flatcamGUI/FlatCAMGUI.py:5638
+#: flatcamEditors/FlatCAMExcEditor.py:1655
+#: flatcamEditors/FlatCAMExcEditor.py:1766
+#: flatcamEditors/FlatCAMExcEditor.py:1857
+#: flatcamEditors/FlatCAMGrbEditor.py:2683 flatcamGUI/FlatCAMGUI.py:4723
+#: flatcamGUI/FlatCAMGUI.py:5572 flatcamGUI/FlatCAMGUI.py:5652
+#: flatcamGUI/FlatCAMGUI.py:5703
msgid "X"
msgstr "X"
-#: flatcamEditors/FlatCAMExcEditor.py:1637
-#: flatcamEditors/FlatCAMExcEditor.py:1748
-#: flatcamEditors/FlatCAMExcEditor.py:1839
-#: flatcamEditors/FlatCAMGrbEditor.py:2664 flatcamGUI/FlatCAMGUI.py:4659
-#: flatcamGUI/FlatCAMGUI.py:5508 flatcamGUI/FlatCAMGUI.py:5588
-#: flatcamGUI/FlatCAMGUI.py:5639
+#: flatcamEditors/FlatCAMExcEditor.py:1656
+#: flatcamEditors/FlatCAMExcEditor.py:1767
+#: flatcamEditors/FlatCAMExcEditor.py:1858
+#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:4724
+#: flatcamGUI/FlatCAMGUI.py:5573 flatcamGUI/FlatCAMGUI.py:5653
+#: flatcamGUI/FlatCAMGUI.py:5704
msgid "Y"
msgstr "Y"
-#: flatcamEditors/FlatCAMExcEditor.py:1638
-#: flatcamEditors/FlatCAMExcEditor.py:1749
-#: flatcamEditors/FlatCAMExcEditor.py:1840
-#: flatcamEditors/FlatCAMGrbEditor.py:2665
-#: flatcamEditors/FlatCAMGrbEditor.py:2678
-#: flatcamEditors/FlatCAMGrbEditor.py:2714 flatcamGUI/FlatCAMGUI.py:4660
-#: flatcamGUI/FlatCAMGUI.py:4677 flatcamGUI/FlatCAMGUI.py:5509
-#: flatcamGUI/FlatCAMGUI.py:5526 flatcamGUI/FlatCAMGUI.py:5589
-#: flatcamGUI/FlatCAMGUI.py:5594 flatcamGUI/FlatCAMGUI.py:5640
-#: flatcamGUI/FlatCAMGUI.py:5657 flatcamTools/ToolTransform.py:68
+#: flatcamEditors/FlatCAMExcEditor.py:1657
+#: flatcamEditors/FlatCAMExcEditor.py:1671
+#: flatcamEditors/FlatCAMExcEditor.py:1705
+#: flatcamEditors/FlatCAMExcEditor.py:1768
+#: flatcamEditors/FlatCAMExcEditor.py:1772
+#: flatcamEditors/FlatCAMExcEditor.py:1859
+#: flatcamEditors/FlatCAMExcEditor.py:1873
+#: flatcamEditors/FlatCAMExcEditor.py:1907
+#: flatcamEditors/FlatCAMGrbEditor.py:2685
+#: flatcamEditors/FlatCAMGrbEditor.py:2698
+#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/FlatCAMGUI.py:4725
+#: flatcamGUI/FlatCAMGUI.py:4742 flatcamGUI/FlatCAMGUI.py:5574
+#: flatcamGUI/FlatCAMGUI.py:5591 flatcamGUI/FlatCAMGUI.py:5654
+#: flatcamGUI/FlatCAMGUI.py:5659 flatcamGUI/FlatCAMGUI.py:5705
+#: flatcamGUI/FlatCAMGUI.py:5722 flatcamTools/ToolTransform.py:68
msgid "Angle"
msgstr "Angle"
-#: flatcamEditors/FlatCAMExcEditor.py:1642
-#: flatcamEditors/FlatCAMExcEditor.py:1844
-msgid "Pitch:"
-msgstr "Pitch:"
+#: flatcamEditors/FlatCAMExcEditor.py:1661
+#: flatcamEditors/FlatCAMExcEditor.py:1863
+#: flatcamEditors/FlatCAMGrbEditor.py:2689 flatcamGUI/FlatCAMGUI.py:4731
+#: flatcamGUI/FlatCAMGUI.py:5711
+msgid "Pitch"
+msgstr "Pitch"
-#: flatcamEditors/FlatCAMExcEditor.py:1644
-#: flatcamEditors/FlatCAMExcEditor.py:1846
-#: flatcamEditors/FlatCAMGrbEditor.py:2671 flatcamGUI/FlatCAMGUI.py:4668
-#: flatcamGUI/FlatCAMGUI.py:5517 flatcamGUI/FlatCAMGUI.py:5648
+#: flatcamEditors/FlatCAMExcEditor.py:1663
+#: flatcamEditors/FlatCAMExcEditor.py:1865
+#: flatcamEditors/FlatCAMGrbEditor.py:2691 flatcamGUI/FlatCAMGUI.py:4733
+#: flatcamGUI/FlatCAMGUI.py:5582 flatcamGUI/FlatCAMGUI.py:5713
msgid "Pitch = Distance between elements of the array."
msgstr "Pitch = Distance between elements of the array."
-#: flatcamEditors/FlatCAMExcEditor.py:1652
-#: flatcamEditors/FlatCAMExcEditor.py:1686
-#: flatcamEditors/FlatCAMExcEditor.py:1753
-#: flatcamEditors/FlatCAMExcEditor.py:1854
-#: flatcamEditors/FlatCAMExcEditor.py:1888
-#: flatcamEditors/FlatCAMGeoEditor.py:667
-#: flatcamEditors/FlatCAMGrbEditor.py:4826
-msgid "Angle:"
-msgstr "Angle:"
-
-#: flatcamEditors/FlatCAMExcEditor.py:1654
-#: flatcamEditors/FlatCAMExcEditor.py:1856
-#: flatcamEditors/FlatCAMGrbEditor.py:2680
+#: flatcamEditors/FlatCAMExcEditor.py:1673
+#: flatcamEditors/FlatCAMExcEditor.py:1875
+#: flatcamEditors/FlatCAMGrbEditor.py:2700
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -2207,9 +2730,9 @@ msgstr ""
"Min value is: -359.99 degrees.\n"
"Max value is: 360.00 degrees."
-#: flatcamEditors/FlatCAMExcEditor.py:1675
-#: flatcamEditors/FlatCAMExcEditor.py:1877
-#: flatcamEditors/FlatCAMGrbEditor.py:2701
+#: flatcamEditors/FlatCAMExcEditor.py:1694
+#: flatcamEditors/FlatCAMExcEditor.py:1896
+#: flatcamEditors/FlatCAMGrbEditor.py:2721
msgid ""
"Direction for circular array.Can be CW = clockwise or CCW = counter "
"clockwise."
@@ -2217,36 +2740,36 @@ msgstr ""
"Direction for circular array.Can be CW = clockwise or CCW = counter "
"clockwise."
-#: flatcamEditors/FlatCAMExcEditor.py:1682
-#: flatcamEditors/FlatCAMExcEditor.py:1884
-#: flatcamEditors/FlatCAMGrbEditor.py:2709 flatcamGUI/FlatCAMGUI.py:4696
-#: flatcamGUI/FlatCAMGUI.py:5087 flatcamGUI/FlatCAMGUI.py:5545
-#: flatcamGUI/FlatCAMGUI.py:5676 flatcamGUI/FlatCAMGUI.py:5878
+#: flatcamEditors/FlatCAMExcEditor.py:1701
+#: flatcamEditors/FlatCAMExcEditor.py:1903
+#: flatcamEditors/FlatCAMGrbEditor.py:2729 flatcamGUI/FlatCAMGUI.py:4761
+#: flatcamGUI/FlatCAMGUI.py:5152 flatcamGUI/FlatCAMGUI.py:5610
+#: flatcamGUI/FlatCAMGUI.py:5741 flatcamGUI/FlatCAMGUI.py:5943
msgid "CW"
msgstr "CW"
-#: flatcamEditors/FlatCAMExcEditor.py:1683
-#: flatcamEditors/FlatCAMExcEditor.py:1885
-#: flatcamEditors/FlatCAMGrbEditor.py:2710 flatcamGUI/FlatCAMGUI.py:4697
-#: flatcamGUI/FlatCAMGUI.py:5088 flatcamGUI/FlatCAMGUI.py:5546
-#: flatcamGUI/FlatCAMGUI.py:5677 flatcamGUI/FlatCAMGUI.py:5879
+#: flatcamEditors/FlatCAMExcEditor.py:1702
+#: flatcamEditors/FlatCAMExcEditor.py:1904
+#: flatcamEditors/FlatCAMGrbEditor.py:2730 flatcamGUI/FlatCAMGUI.py:4762
+#: flatcamGUI/FlatCAMGUI.py:5153 flatcamGUI/FlatCAMGUI.py:5611
+#: flatcamGUI/FlatCAMGUI.py:5742 flatcamGUI/FlatCAMGUI.py:5944
msgid "CCW"
msgstr "CCW"
-#: flatcamEditors/FlatCAMExcEditor.py:1687
-#: flatcamEditors/FlatCAMExcEditor.py:1889
-#: flatcamEditors/FlatCAMGrbEditor.py:2716 flatcamGUI/FlatCAMGUI.py:4679
-#: flatcamGUI/FlatCAMGUI.py:4705 flatcamGUI/FlatCAMGUI.py:5528
-#: flatcamGUI/FlatCAMGUI.py:5554 flatcamGUI/FlatCAMGUI.py:5659
-#: flatcamGUI/FlatCAMGUI.py:5685
+#: flatcamEditors/FlatCAMExcEditor.py:1706
+#: flatcamEditors/FlatCAMExcEditor.py:1908
+#: flatcamEditors/FlatCAMGrbEditor.py:2736 flatcamGUI/FlatCAMGUI.py:4744
+#: flatcamGUI/FlatCAMGUI.py:4770 flatcamGUI/FlatCAMGUI.py:5593
+#: flatcamGUI/FlatCAMGUI.py:5619 flatcamGUI/FlatCAMGUI.py:5724
+#: flatcamGUI/FlatCAMGUI.py:5750
msgid "Angle at which each element in circular array is placed."
msgstr "Angle at which each element in circular array is placed."
-#: flatcamEditors/FlatCAMExcEditor.py:1717
+#: flatcamEditors/FlatCAMExcEditor.py:1736
msgid "Slot Parameters"
msgstr "Slot Parameters"
-#: flatcamEditors/FlatCAMExcEditor.py:1719
+#: flatcamEditors/FlatCAMExcEditor.py:1738
msgid ""
"Parameters for adding a slot (hole with oval shape)\n"
"either single or as an part of an array."
@@ -2254,15 +2777,16 @@ msgstr ""
"Parameters for adding a slot (hole with oval shape)\n"
"either single or as an part of an array."
-#: flatcamEditors/FlatCAMExcEditor.py:1728
-msgid "Length:"
-msgstr "Length:"
+#: flatcamEditors/FlatCAMExcEditor.py:1747 flatcamGUI/FlatCAMGUI.py:5632
+#: flatcamTools/ToolProperties.py:350
+msgid "Length"
+msgstr "Length"
-#: flatcamEditors/FlatCAMExcEditor.py:1730 flatcamGUI/FlatCAMGUI.py:5569
+#: flatcamEditors/FlatCAMExcEditor.py:1749 flatcamGUI/FlatCAMGUI.py:5634
msgid "Length = The length of the slot."
msgstr "Length = The length of the slot."
-#: flatcamEditors/FlatCAMExcEditor.py:1740 flatcamGUI/FlatCAMGUI.py:5580
+#: flatcamEditors/FlatCAMExcEditor.py:1759 flatcamGUI/FlatCAMGUI.py:5645
msgid ""
"Direction on which the slot is oriented:\n"
"- 'X' - horizontal axis \n"
@@ -2274,7 +2798,7 @@ msgstr ""
"- 'Y' - vertical axis or \n"
"- 'Angle' - a custom angle for the slot inclination"
-#: flatcamEditors/FlatCAMExcEditor.py:1755 flatcamGUI/FlatCAMGUI.py:5596
+#: flatcamEditors/FlatCAMExcEditor.py:1774 flatcamGUI/FlatCAMGUI.py:5661
msgid ""
"Angle at which the slot is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -2286,15 +2810,15 @@ msgstr ""
"Min value is: -359.99 degrees.\n"
"Max value is: 360.00 degrees."
-#: flatcamEditors/FlatCAMExcEditor.py:1788
+#: flatcamEditors/FlatCAMExcEditor.py:1807
msgid "Slot Array Parameters"
msgstr "Slot Array Parameters"
-#: flatcamEditors/FlatCAMExcEditor.py:1790
+#: flatcamEditors/FlatCAMExcEditor.py:1809
msgid "Parameters for the array of slots (linear or circular array)"
msgstr "Parameters for the array of slots (linear or circular array)"
-#: flatcamEditors/FlatCAMExcEditor.py:1799
+#: flatcamEditors/FlatCAMExcEditor.py:1818
msgid ""
"Select the type of slot array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -2302,71 +2826,80 @@ msgstr ""
"Select the type of slot array to create.\n"
"It can be Linear X(Y) or Circular"
-#: flatcamEditors/FlatCAMExcEditor.py:1811
-msgid "Nr of slots:"
-msgstr "Nr of slots:"
+#: flatcamEditors/FlatCAMExcEditor.py:1830 flatcamGUI/FlatCAMGUI.py:5683
+msgid "Nr of slots"
+msgstr "Nr of slots"
-#: flatcamEditors/FlatCAMExcEditor.py:1812 flatcamGUI/FlatCAMGUI.py:5620
+#: flatcamEditors/FlatCAMExcEditor.py:1831 flatcamGUI/FlatCAMGUI.py:5685
msgid "Specify how many slots to be in the array."
msgstr "Specify how many slots to be in the array."
-#: flatcamEditors/FlatCAMExcEditor.py:2409
+#: flatcamEditors/FlatCAMExcEditor.py:2428
+#| msgid ""
+#| "[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
+#| "Save and reedit Excellon if you need to add this tool. "
msgid ""
-"[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
+"Tool already in the original or actual tool list.\n"
"Save and reedit Excellon if you need to add this tool. "
msgstr ""
-"[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
+"Tool already in the original or actual tool list.\n"
"Save and reedit Excellon if you need to add this tool. "
-#: flatcamEditors/FlatCAMExcEditor.py:2418 flatcamGUI/FlatCAMGUI.py:3134
-#, python-brace-format
-msgid "[success] Added new tool with dia: {dia} {units}"
-msgstr "[success] Added new tool with dia: {dia} {units}"
+#: flatcamEditors/FlatCAMExcEditor.py:2437
+#| msgid "[success] Added new tool with dia: {dia} {units}"
+msgid "Added new tool with dia"
+msgstr "Added new tool with dia"
-#: flatcamEditors/FlatCAMExcEditor.py:2450
-msgid "[WARNING_NOTCL] Select a tool in Tool Table"
-msgstr "[WARNING_NOTCL] Select a tool in Tool Table"
+#: flatcamEditors/FlatCAMExcEditor.py:2469
+#| msgid "[WARNING_NOTCL] Select a tool in Tool Table"
+msgid "Select a tool in Tool Table"
+msgstr "Select a tool in Tool Table"
-#: flatcamEditors/FlatCAMExcEditor.py:2482
-#, python-brace-format
-msgid "[success] Deleted tool with dia: {del_dia} {units}"
-msgstr "[success] Deleted tool with dia: {del_dia} {units}"
+#: flatcamEditors/FlatCAMExcEditor.py:2502
+#| msgid "tooldia = tool diameter"
+msgid "Deleted tool with diameter"
+msgstr "Deleted tool with diameter"
-#: flatcamEditors/FlatCAMExcEditor.py:2633
-msgid "[success] Done. Tool edit completed."
-msgstr "[success] Done. Tool edit completed."
+#: flatcamEditors/FlatCAMExcEditor.py:2652
+#| msgid "[success] Done. Tool edit completed."
+msgid "Done. Tool edit completed."
+msgstr "Done. Tool edit completed."
-#: flatcamEditors/FlatCAMExcEditor.py:3168
-msgid ""
-"[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
-"creation."
+#: flatcamEditors/FlatCAMExcEditor.py:3187
+#| msgid ""
+#| "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting "
+#| "Excellon creation."
+msgid "There are no Tools definitions in the file. Aborting Excellon creation."
msgstr ""
-"[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
-"creation."
+"There are no Tools definitions in the file. Aborting Excellon creation."
-#: flatcamEditors/FlatCAMExcEditor.py:3171
-msgid "[ERROR] An internal error has ocurred. See shell.\n"
-msgstr "[ERROR] An internal error has ocurred. See shell.\n"
+#: flatcamEditors/FlatCAMExcEditor.py:3191
+#| msgid "[ERROR] An internal error has ocurred. See shell.\n"
+msgid "An internal error has ocurred. See Shell.\n"
+msgstr "An internal error has ocurred. See Shell.\n"
-#: flatcamEditors/FlatCAMExcEditor.py:3177
+#: flatcamEditors/FlatCAMExcEditor.py:3197
msgid "Creating Excellon."
msgstr "Creating Excellon."
-#: flatcamEditors/FlatCAMExcEditor.py:3186
-msgid "[success] Excellon editing finished."
-msgstr "[success] Excellon editing finished."
+#: flatcamEditors/FlatCAMExcEditor.py:3207
+#| msgid "[success] Excellon editing finished."
+msgid "Excellon editing finished."
+msgstr "Excellon editing finished."
-#: flatcamEditors/FlatCAMExcEditor.py:3203
-msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
-msgstr "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
+#: flatcamEditors/FlatCAMExcEditor.py:3225
+#| msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
+msgid "Cancelled. There is no Tool/Drill selected"
+msgstr "Cancelled. There is no Tool/Drill selected"
-#: flatcamEditors/FlatCAMExcEditor.py:3785
-msgid "[success] Done. Drill(s) deleted."
-msgstr "[success] Done. Drill(s) deleted."
+#: flatcamEditors/FlatCAMExcEditor.py:3810
+#| msgid "[success] Done. Drill(s) deleted."
+msgid "Done. Drill(s) deleted."
+msgstr "Done. Drill(s) deleted."
-#: flatcamEditors/FlatCAMExcEditor.py:3857
-#: flatcamEditors/FlatCAMExcEditor.py:3867
-#: flatcamEditors/FlatCAMGrbEditor.py:4544
+#: flatcamEditors/FlatCAMExcEditor.py:3882
+#: flatcamEditors/FlatCAMExcEditor.py:3892
+#: flatcamEditors/FlatCAMGrbEditor.py:4576
msgid "Click on the circular array Center position"
msgstr "Click on the circular array Center position"
@@ -2393,17 +2926,17 @@ msgstr ""
"meeting in the corner"
#: flatcamEditors/FlatCAMGeoEditor.py:91
-#: flatcamEditors/FlatCAMGrbEditor.py:2502
+#: flatcamEditors/FlatCAMGrbEditor.py:2522
msgid "Round"
msgstr "Round"
#: flatcamEditors/FlatCAMGeoEditor.py:92
-#: flatcamEditors/FlatCAMGrbEditor.py:2503
+#: flatcamEditors/FlatCAMGrbEditor.py:2523
msgid "Square"
msgstr "Square"
#: flatcamEditors/FlatCAMGeoEditor.py:93
-#: flatcamEditors/FlatCAMGrbEditor.py:2504
+#: flatcamEditors/FlatCAMGrbEditor.py:2524
msgid "Beveled"
msgstr "Beveled"
@@ -2420,23 +2953,22 @@ msgid "Full Buffer"
msgstr "Full Buffer"
#: flatcamEditors/FlatCAMGeoEditor.py:129
-#: flatcamEditors/FlatCAMGeoEditor.py:2689 flatcamGUI/FlatCAMGUI.py:4712
+#: flatcamEditors/FlatCAMGeoEditor.py:2720 flatcamGUI/FlatCAMGUI.py:4777
msgid "Buffer Tool"
msgstr "Buffer Tool"
-#: flatcamEditors/FlatCAMGeoEditor.py:140
-#: flatcamEditors/FlatCAMGeoEditor.py:157
-#: flatcamEditors/FlatCAMGeoEditor.py:174
-#: flatcamEditors/FlatCAMGeoEditor.py:2707
-#: flatcamEditors/FlatCAMGeoEditor.py:2735
-#: flatcamEditors/FlatCAMGeoEditor.py:2763
-#: flatcamEditors/FlatCAMGrbEditor.py:4596
-msgid ""
-"[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
-"retry."
-msgstr ""
-"[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGeoEditor.py:141
+#: flatcamEditors/FlatCAMGeoEditor.py:158
+#: flatcamEditors/FlatCAMGeoEditor.py:175
+#: flatcamEditors/FlatCAMGeoEditor.py:2740
+#: flatcamEditors/FlatCAMGeoEditor.py:2770
+#: flatcamEditors/FlatCAMGeoEditor.py:2800
+#: flatcamEditors/FlatCAMGrbEditor.py:4629
+#| msgid ""
+#| "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it "
+#| "and retry."
+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."
#: flatcamEditors/FlatCAMGeoEditor.py:345
msgid "Text Tool"
@@ -2446,11 +2978,14 @@ msgstr "Text Tool"
msgid "Tool"
msgstr "Tool"
-#: flatcamEditors/FlatCAMGeoEditor.py:434
-msgid "Tool dia:"
-msgstr "Tool dia:"
+#: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:4356
+#: flatcamGUI/FlatCAMGUI.py:5796 flatcamGUI/FlatCAMGUI.py:6699
+#: flatcamGUI/FlatCAMGUI.py:6859 flatcamGUI/ObjectUI.py:264
+#: flatcamTools/ToolCutOut.py:91
+msgid "Tool dia"
+msgstr "Tool dia"
-#: flatcamEditors/FlatCAMGeoEditor.py:436 flatcamGUI/FlatCAMGUI.py:6686
+#: flatcamEditors/FlatCAMGeoEditor.py:436 flatcamGUI/FlatCAMGUI.py:6861
msgid ""
"Diameter of the tool to\n"
"be used in the operation."
@@ -2458,12 +2993,13 @@ msgstr ""
"Diameter of the tool to\n"
"be used in the operation."
-#: flatcamEditors/FlatCAMGeoEditor.py:445
-#: flatcamTools/ToolNonCopperClear.py:201
-msgid "Overlap Rate:"
-msgstr "Overlap Rate:"
+#: flatcamEditors/FlatCAMGeoEditor.py:445 flatcamGUI/FlatCAMGUI.py:6545
+#: flatcamGUI/FlatCAMGUI.py:6890 flatcamTools/ToolNonCopperClear.py:283
+#: flatcamTools/ToolPaint.py:205
+msgid "Overlap Rate"
+msgstr "Overlap Rate"
-#: flatcamEditors/FlatCAMGeoEditor.py:447 flatcamGUI/FlatCAMGUI.py:6717
+#: flatcamEditors/FlatCAMGeoEditor.py:447 flatcamGUI/FlatCAMGUI.py:6892
#: flatcamTools/ToolPaint.py:207
#, python-format
msgid ""
@@ -2489,11 +3025,13 @@ msgstr ""
"Higher values = slow processing and slow execution on CNC\n"
"due of too many paths."
-#: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamTools/ToolCutOut.py:101
-msgid "Margin:"
-msgstr "Margin:"
+#: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:6562
+#: flatcamGUI/FlatCAMGUI.py:6723 flatcamGUI/FlatCAMGUI.py:6907
+#: flatcamTools/ToolNonCopperClear.py:299 flatcamTools/ToolPaint.py:222
+msgid "Margin"
+msgstr "Margin"
-#: flatcamEditors/FlatCAMGeoEditor.py:465 flatcamGUI/FlatCAMGUI.py:6734
+#: flatcamEditors/FlatCAMGeoEditor.py:465 flatcamGUI/FlatCAMGUI.py:6909
#: flatcamTools/ToolPaint.py:224
msgid ""
"Distance by which to avoid\n"
@@ -2504,9 +3042,11 @@ msgstr ""
"the edges of the polygon to\n"
"be painted."
-#: flatcamEditors/FlatCAMGeoEditor.py:474
-msgid "Method:"
-msgstr "Method:"
+#: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:6571
+#: flatcamGUI/FlatCAMGUI.py:6918 flatcamTools/ToolNonCopperClear.py:308
+#: flatcamTools/ToolPaint.py:233
+msgid "Method"
+msgstr "Method"
#: flatcamEditors/FlatCAMGeoEditor.py:476
msgid ""
@@ -2516,20 +3056,20 @@ msgstr ""
"Algorithm to paint the polygon:
Standard: Fixed step inwards."
"
Seed-based: Outwards from seed."
-#: flatcamEditors/FlatCAMGeoEditor.py:482 flatcamGUI/FlatCAMGUI.py:6418
-#: flatcamGUI/FlatCAMGUI.py:6752 flatcamTools/ToolNonCopperClear.py:235
+#: flatcamEditors/FlatCAMGeoEditor.py:482 flatcamGUI/FlatCAMGUI.py:6580
+#: flatcamGUI/FlatCAMGUI.py:6927 flatcamTools/ToolNonCopperClear.py:317
#: flatcamTools/ToolPaint.py:242
msgid "Standard"
msgstr "Standard"
-#: flatcamEditors/FlatCAMGeoEditor.py:483 flatcamGUI/FlatCAMGUI.py:6419
-#: flatcamGUI/FlatCAMGUI.py:6753 flatcamTools/ToolNonCopperClear.py:236
+#: flatcamEditors/FlatCAMGeoEditor.py:483 flatcamGUI/FlatCAMGUI.py:6581
+#: flatcamGUI/FlatCAMGUI.py:6928 flatcamTools/ToolNonCopperClear.py:318
#: flatcamTools/ToolPaint.py:243
msgid "Seed-based"
msgstr "Seed-based"
-#: flatcamEditors/FlatCAMGeoEditor.py:484 flatcamGUI/FlatCAMGUI.py:6420
-#: flatcamGUI/FlatCAMGUI.py:6754 flatcamTools/ToolNonCopperClear.py:237
+#: flatcamEditors/FlatCAMGeoEditor.py:484 flatcamGUI/FlatCAMGUI.py:6582
+#: flatcamGUI/FlatCAMGUI.py:6929 flatcamTools/ToolNonCopperClear.py:319
#: flatcamTools/ToolPaint.py:244
msgid "Straight lines"
msgstr "Straight lines"
@@ -2538,8 +3078,8 @@ msgstr "Straight lines"
msgid "Connect:"
msgstr "Connect:"
-#: flatcamEditors/FlatCAMGeoEditor.py:491 flatcamGUI/FlatCAMGUI.py:6427
-#: flatcamGUI/FlatCAMGUI.py:6761 flatcamTools/ToolNonCopperClear.py:244
+#: flatcamEditors/FlatCAMGeoEditor.py:491 flatcamGUI/FlatCAMGUI.py:6589
+#: flatcamGUI/FlatCAMGUI.py:6936 flatcamTools/ToolNonCopperClear.py:326
#: flatcamTools/ToolPaint.py:251
msgid ""
"Draw lines between resulting\n"
@@ -2552,8 +3092,8 @@ msgstr ""
msgid "Contour:"
msgstr "Contour:"
-#: flatcamEditors/FlatCAMGeoEditor.py:500 flatcamGUI/FlatCAMGUI.py:6436
-#: flatcamGUI/FlatCAMGUI.py:6771 flatcamTools/ToolNonCopperClear.py:253
+#: flatcamEditors/FlatCAMGeoEditor.py:500 flatcamGUI/FlatCAMGUI.py:6599
+#: flatcamGUI/FlatCAMGUI.py:6946 flatcamTools/ToolNonCopperClear.py:335
#: flatcamTools/ToolPaint.py:260
msgid ""
"Cut around the perimeter of the polygon\n"
@@ -2562,103 +3102,108 @@ msgstr ""
"Cut around the perimeter of the polygon\n"
"to trim rough edges."
-#: flatcamEditors/FlatCAMGeoEditor.py:511 flatcamGUI/FlatCAMGUI.py:1655
+#: flatcamEditors/FlatCAMGeoEditor.py:511 flatcamGUI/FlatCAMGUI.py:1673
msgid "Paint"
msgstr "Paint"
#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:661
-#: flatcamGUI/FlatCAMGUI.py:1979 flatcamGUI/ObjectUI.py:1297
-#: flatcamTools/ToolPaint.py:25 flatcamTools/ToolPaint.py:446
+#: flatcamGUI/FlatCAMGUI.py:2004 flatcamGUI/ObjectUI.py:1360
+#: flatcamTools/ToolPaint.py:25 flatcamTools/ToolPaint.py:448
msgid "Paint Tool"
msgstr "Paint Tool"
-#: flatcamEditors/FlatCAMGeoEditor.py:565
-msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
-msgstr "[WARNING_NOTCL] Paint cancelled. No shape selected."
+#: flatcamEditors/FlatCAMGeoEditor.py:566
+#| msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
+msgid "Paint cancelled. No shape selected."
+msgstr "Paint cancelled. No shape selected."
-#: flatcamEditors/FlatCAMGeoEditor.py:576 flatcamTools/ToolCutOut.py:381
-#: flatcamTools/ToolCutOut.py:577 flatcamTools/ToolCutOut.py:743
-#: flatcamTools/ToolCutOut.py:873 flatcamTools/ToolDblSided.py:367
-msgid ""
-"[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
-"retry."
-msgstr ""
-"[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGeoEditor.py:578 flatcamTools/ToolCutOut.py:387
+#: flatcamTools/ToolCutOut.py:585 flatcamTools/ToolCutOut.py:755
+#: flatcamTools/ToolCutOut.py:849 flatcamTools/ToolDblSided.py:367
+#| msgid ""
+#| "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it "
+#| "and retry."
+msgid "Tool diameter value is missing or wrong format. Add it and retry."
+msgstr "Tool diameter value is missing or wrong format. Add it and retry."
-#: flatcamEditors/FlatCAMGeoEditor.py:587
-msgid ""
-"[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
-msgstr ""
-"[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
+#: flatcamEditors/FlatCAMGeoEditor.py:589
+#| msgid ""
+#| "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and "
+#| "retry."
+msgid "Overlap value is missing or wrong format. Add it and retry."
+msgstr "Overlap value is missing or wrong format. Add it and retry."
-#: flatcamEditors/FlatCAMGeoEditor.py:599
-msgid ""
-"[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
-"retry."
-msgstr ""
-"[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGeoEditor.py:601
+#| msgid ""
+#| "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it "
+#| "and retry."
+msgid "Margin distance value is missing or wrong format. Add it and retry."
+msgstr "Margin distance value is missing or wrong format. Add it and retry."
-#: flatcamEditors/FlatCAMGeoEditor.py:608
-#: flatcamEditors/FlatCAMGeoEditor.py:2714
-#: flatcamEditors/FlatCAMGeoEditor.py:2742
-#: flatcamEditors/FlatCAMGeoEditor.py:2770 flatcamGUI/FlatCAMGUI.py:5727
-#: flatcamTools/ToolProperties.py:109 flatcamTools/ToolProperties.py:134
+#: flatcamEditors/FlatCAMGeoEditor.py:609
+#: flatcamEditors/FlatCAMGeoEditor.py:2746
+#: flatcamEditors/FlatCAMGeoEditor.py:2776
+#: flatcamEditors/FlatCAMGeoEditor.py:2806 flatcamGUI/FlatCAMGUI.py:5792
+#: flatcamTools/ToolProperties.py:113 flatcamTools/ToolProperties.py:139
msgid "Tools"
msgstr "Tools"
-#: flatcamEditors/FlatCAMGeoEditor.py:619
-#: flatcamEditors/FlatCAMGeoEditor.py:992
-#: flatcamEditors/FlatCAMGrbEditor.py:4777
-#: flatcamEditors/FlatCAMGrbEditor.py:5162 flatcamGUI/FlatCAMGUI.py:672
-#: flatcamGUI/FlatCAMGUI.py:1992 flatcamTools/ToolTransform.py:403
+#: flatcamEditors/FlatCAMGeoEditor.py:620
+#: flatcamEditors/FlatCAMGeoEditor.py:993
+#: flatcamEditors/FlatCAMGrbEditor.py:4812
+#: flatcamEditors/FlatCAMGrbEditor.py:5197 flatcamGUI/FlatCAMGUI.py:672
+#: flatcamGUI/FlatCAMGUI.py:2017 flatcamTools/ToolTransform.py:403
msgid "Transform Tool"
msgstr "Transform Tool"
-#: flatcamEditors/FlatCAMGeoEditor.py:620
-#: flatcamEditors/FlatCAMGeoEditor.py:681
-#: flatcamEditors/FlatCAMGrbEditor.py:4778
-#: flatcamEditors/FlatCAMGrbEditor.py:4840 flatcamTools/ToolTransform.py:24
+#: flatcamEditors/FlatCAMGeoEditor.py:621
+#: flatcamEditors/FlatCAMGeoEditor.py:682
+#: flatcamEditors/FlatCAMGrbEditor.py:4813
+#: flatcamEditors/FlatCAMGrbEditor.py:4875 flatcamTools/ToolTransform.py:24
#: flatcamTools/ToolTransform.py:82
msgid "Rotate"
msgstr "Rotate"
-#: flatcamEditors/FlatCAMGeoEditor.py:621
-#: flatcamEditors/FlatCAMGrbEditor.py:4779 flatcamTools/ToolTransform.py:25
+#: flatcamEditors/FlatCAMGeoEditor.py:622
+#: flatcamEditors/FlatCAMGrbEditor.py:4814 flatcamTools/ToolTransform.py:25
msgid "Skew/Shear"
msgstr "Skew/Shear"
-#: flatcamEditors/FlatCAMGeoEditor.py:622
-#: flatcamEditors/FlatCAMGrbEditor.py:2549
-#: flatcamEditors/FlatCAMGrbEditor.py:4780 flatcamGUI/FlatCAMGUI.py:739
-#: flatcamGUI/FlatCAMGUI.py:1682 flatcamGUI/FlatCAMGUI.py:2061
+#: flatcamEditors/FlatCAMGeoEditor.py:623
+#: flatcamEditors/FlatCAMGrbEditor.py:2569
+#: flatcamEditors/FlatCAMGrbEditor.py:4815 flatcamGUI/FlatCAMGUI.py:739
+#: flatcamGUI/FlatCAMGUI.py:1700 flatcamGUI/FlatCAMGUI.py:2086
#: flatcamGUI/ObjectUI.py:79 flatcamGUI/ObjectUI.py:100
#: flatcamTools/ToolTransform.py:26
msgid "Scale"
msgstr "Scale"
-#: flatcamEditors/FlatCAMGeoEditor.py:623
-#: flatcamEditors/FlatCAMGrbEditor.py:4781 flatcamTools/ToolTransform.py:27
+#: flatcamEditors/FlatCAMGeoEditor.py:624
+#: flatcamEditors/FlatCAMGrbEditor.py:4816 flatcamTools/ToolTransform.py:27
msgid "Mirror (Flip)"
msgstr "Mirror (Flip)"
-#: flatcamEditors/FlatCAMGeoEditor.py:624
-#: flatcamEditors/FlatCAMGrbEditor.py:4782 flatcamGUI/FlatCAMGUI.py:6458
+#: flatcamEditors/FlatCAMGeoEditor.py:625
+#: flatcamEditors/FlatCAMGrbEditor.py:4817 flatcamGUI/FlatCAMGUI.py:6622
#: flatcamGUI/ObjectUI.py:108 flatcamGUI/ObjectUI.py:127
-#: flatcamGUI/ObjectUI.py:889 flatcamGUI/ObjectUI.py:1455
-#: flatcamTools/ToolNonCopperClear.py:275 flatcamTools/ToolTransform.py:28
+#: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
+#: flatcamTools/ToolNonCopperClear.py:357 flatcamTools/ToolTransform.py:28
msgid "Offset"
msgstr "Offset"
-#: flatcamEditors/FlatCAMGeoEditor.py:635
-#: flatcamEditors/FlatCAMGrbEditor.py:4794
+#: flatcamEditors/FlatCAMGeoEditor.py:636
+#: flatcamEditors/FlatCAMGrbEditor.py:4829
#, python-format
msgid "Editor %s"
msgstr "Editor %s"
-#: flatcamEditors/FlatCAMGeoEditor.py:669
-#: flatcamEditors/FlatCAMGrbEditor.py:4828 flatcamGUI/FlatCAMGUI.py:7082
+#: flatcamEditors/FlatCAMGeoEditor.py:668
+#: flatcamEditors/FlatCAMGrbEditor.py:4861
+msgid "Angle:"
+msgstr "Angle:"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:670
+#: flatcamEditors/FlatCAMGrbEditor.py:4863 flatcamGUI/FlatCAMGUI.py:7268
#: flatcamTools/ToolTransform.py:70
msgid ""
"Angle for Rotation action, in degrees.\n"
@@ -2671,8 +3216,8 @@ msgstr ""
"Positive numbers for CW motion.\n"
"Negative numbers for CCW motion."
-#: flatcamEditors/FlatCAMGeoEditor.py:683
-#: flatcamEditors/FlatCAMGrbEditor.py:4842
+#: flatcamEditors/FlatCAMGeoEditor.py:684
+#: flatcamEditors/FlatCAMGrbEditor.py:4877
msgid ""
"Rotate the selected shape(s).\n"
"The point of reference is the middle of\n"
@@ -2682,16 +3227,16 @@ msgstr ""
"The point of reference is the middle of\n"
"the bounding box for all selected shapes."
-#: flatcamEditors/FlatCAMGeoEditor.py:706
-#: flatcamEditors/FlatCAMGrbEditor.py:4865
+#: flatcamEditors/FlatCAMGeoEditor.py:707
+#: flatcamEditors/FlatCAMGrbEditor.py:4900
msgid "Angle X:"
msgstr "Angle X:"
-#: flatcamEditors/FlatCAMGeoEditor.py:708
-#: flatcamEditors/FlatCAMGeoEditor.py:726
-#: flatcamEditors/FlatCAMGrbEditor.py:4867
-#: flatcamEditors/FlatCAMGrbEditor.py:4885 flatcamGUI/FlatCAMGUI.py:7094
-#: flatcamGUI/FlatCAMGUI.py:7104 flatcamTools/ToolTransform.py:109
+#: flatcamEditors/FlatCAMGeoEditor.py:709
+#: flatcamEditors/FlatCAMGeoEditor.py:727
+#: flatcamEditors/FlatCAMGrbEditor.py:4902
+#: flatcamEditors/FlatCAMGrbEditor.py:4920 flatcamGUI/FlatCAMGUI.py:7280
+#: flatcamGUI/FlatCAMGUI.py:7290 flatcamTools/ToolTransform.py:109
#: flatcamTools/ToolTransform.py:127
msgid ""
"Angle for Skew action, in degrees.\n"
@@ -2700,15 +3245,15 @@ msgstr ""
"Angle for Skew action, in degrees.\n"
"Float number between -360 and 359."
-#: flatcamEditors/FlatCAMGeoEditor.py:717
-#: flatcamEditors/FlatCAMGrbEditor.py:4876 flatcamTools/ToolTransform.py:118
+#: flatcamEditors/FlatCAMGeoEditor.py:718
+#: flatcamEditors/FlatCAMGrbEditor.py:4911 flatcamTools/ToolTransform.py:118
msgid "Skew X"
msgstr "Skew X"
-#: flatcamEditors/FlatCAMGeoEditor.py:719
-#: flatcamEditors/FlatCAMGeoEditor.py:737
-#: flatcamEditors/FlatCAMGrbEditor.py:4878
-#: flatcamEditors/FlatCAMGrbEditor.py:4896
+#: flatcamEditors/FlatCAMGeoEditor.py:720
+#: flatcamEditors/FlatCAMGeoEditor.py:738
+#: flatcamEditors/FlatCAMGrbEditor.py:4913
+#: flatcamEditors/FlatCAMGrbEditor.py:4931
msgid ""
"Skew/shear the selected shape(s).\n"
"The point of reference is the middle of\n"
@@ -2718,35 +3263,35 @@ msgstr ""
"The point of reference is the middle of\n"
"the bounding box for all selected shapes."
-#: flatcamEditors/FlatCAMGeoEditor.py:724
-#: flatcamEditors/FlatCAMGrbEditor.py:4883
+#: flatcamEditors/FlatCAMGeoEditor.py:725
+#: flatcamEditors/FlatCAMGrbEditor.py:4918
msgid "Angle Y:"
msgstr "Angle Y:"
-#: flatcamEditors/FlatCAMGeoEditor.py:735
-#: flatcamEditors/FlatCAMGrbEditor.py:4894 flatcamTools/ToolTransform.py:136
+#: flatcamEditors/FlatCAMGeoEditor.py:736
+#: flatcamEditors/FlatCAMGrbEditor.py:4929 flatcamTools/ToolTransform.py:136
msgid "Skew Y"
msgstr "Skew Y"
-#: flatcamEditors/FlatCAMGeoEditor.py:763
-#: flatcamEditors/FlatCAMGrbEditor.py:4922
+#: flatcamEditors/FlatCAMGeoEditor.py:764
+#: flatcamEditors/FlatCAMGrbEditor.py:4957
msgid "Factor X:"
msgstr "Factor X:"
-#: flatcamEditors/FlatCAMGeoEditor.py:765
-#: flatcamEditors/FlatCAMGrbEditor.py:4924
+#: flatcamEditors/FlatCAMGeoEditor.py:766
+#: flatcamEditors/FlatCAMGrbEditor.py:4959
msgid "Factor for Scale action over X axis."
msgstr "Factor for Scale action over X axis."
-#: flatcamEditors/FlatCAMGeoEditor.py:773
-#: flatcamEditors/FlatCAMGrbEditor.py:4932 flatcamTools/ToolTransform.py:174
+#: flatcamEditors/FlatCAMGeoEditor.py:774
+#: flatcamEditors/FlatCAMGrbEditor.py:4967 flatcamTools/ToolTransform.py:174
msgid "Scale X"
msgstr "Scale X"
-#: flatcamEditors/FlatCAMGeoEditor.py:775
-#: flatcamEditors/FlatCAMGeoEditor.py:792
-#: flatcamEditors/FlatCAMGrbEditor.py:4934
-#: flatcamEditors/FlatCAMGrbEditor.py:4951
+#: flatcamEditors/FlatCAMGeoEditor.py:776
+#: flatcamEditors/FlatCAMGeoEditor.py:793
+#: flatcamEditors/FlatCAMGrbEditor.py:4969
+#: flatcamEditors/FlatCAMGrbEditor.py:4986
msgid ""
"Scale the selected shape(s).\n"
"The point of reference depends on \n"
@@ -2756,29 +3301,29 @@ msgstr ""
"The point of reference depends on \n"
"the Scale reference checkbox state."
-#: flatcamEditors/FlatCAMGeoEditor.py:780
-#: flatcamEditors/FlatCAMGrbEditor.py:4939
+#: flatcamEditors/FlatCAMGeoEditor.py:781
+#: flatcamEditors/FlatCAMGrbEditor.py:4974
msgid "Factor Y:"
msgstr "Factor Y:"
-#: flatcamEditors/FlatCAMGeoEditor.py:782
-#: flatcamEditors/FlatCAMGrbEditor.py:4941
+#: flatcamEditors/FlatCAMGeoEditor.py:783
+#: flatcamEditors/FlatCAMGrbEditor.py:4976
msgid "Factor for Scale action over Y axis."
msgstr "Factor for Scale action over Y axis."
-#: flatcamEditors/FlatCAMGeoEditor.py:790
-#: flatcamEditors/FlatCAMGrbEditor.py:4949 flatcamTools/ToolTransform.py:191
+#: flatcamEditors/FlatCAMGeoEditor.py:791
+#: flatcamEditors/FlatCAMGrbEditor.py:4984 flatcamTools/ToolTransform.py:191
msgid "Scale Y"
msgstr "Scale Y"
-#: flatcamEditors/FlatCAMGeoEditor.py:799
-#: flatcamEditors/FlatCAMGrbEditor.py:4958 flatcamGUI/FlatCAMGUI.py:7129
+#: flatcamEditors/FlatCAMGeoEditor.py:800
+#: flatcamEditors/FlatCAMGrbEditor.py:4993 flatcamGUI/FlatCAMGUI.py:7315
#: flatcamTools/ToolTransform.py:200
msgid "Link"
msgstr "Link"
-#: flatcamEditors/FlatCAMGeoEditor.py:801
-#: flatcamEditors/FlatCAMGrbEditor.py:4960
+#: flatcamEditors/FlatCAMGeoEditor.py:802
+#: flatcamEditors/FlatCAMGrbEditor.py:4995
msgid ""
"Scale the selected shape(s)\n"
"using the Scale Factor X for both axis."
@@ -2786,14 +3331,14 @@ msgstr ""
"Scale the selected shape(s)\n"
"using the Scale Factor X for both axis."
-#: flatcamEditors/FlatCAMGeoEditor.py:807
-#: flatcamEditors/FlatCAMGrbEditor.py:4966 flatcamGUI/FlatCAMGUI.py:7137
+#: flatcamEditors/FlatCAMGeoEditor.py:808
+#: flatcamEditors/FlatCAMGrbEditor.py:5001 flatcamGUI/FlatCAMGUI.py:7323
#: flatcamTools/ToolTransform.py:209
msgid "Scale Reference"
msgstr "Scale Reference"
-#: flatcamEditors/FlatCAMGeoEditor.py:809
-#: flatcamEditors/FlatCAMGrbEditor.py:4968
+#: flatcamEditors/FlatCAMGeoEditor.py:810
+#: flatcamEditors/FlatCAMGrbEditor.py:5003
msgid ""
"Scale the selected shape(s)\n"
"using the origin reference when checked,\n"
@@ -2805,25 +3350,25 @@ msgstr ""
"and the center of the biggest bounding box\n"
"of the selected shapes when unchecked."
-#: flatcamEditors/FlatCAMGeoEditor.py:837
-#: flatcamEditors/FlatCAMGrbEditor.py:4997
+#: flatcamEditors/FlatCAMGeoEditor.py:838
+#: flatcamEditors/FlatCAMGrbEditor.py:5032
msgid "Value X:"
msgstr "Value X:"
-#: flatcamEditors/FlatCAMGeoEditor.py:839
-#: flatcamEditors/FlatCAMGrbEditor.py:4999
+#: flatcamEditors/FlatCAMGeoEditor.py:840
+#: flatcamEditors/FlatCAMGrbEditor.py:5034
msgid "Value for Offset action on X axis."
msgstr "Value for Offset action on X axis."
-#: flatcamEditors/FlatCAMGeoEditor.py:847
-#: flatcamEditors/FlatCAMGrbEditor.py:5007 flatcamTools/ToolTransform.py:249
+#: flatcamEditors/FlatCAMGeoEditor.py:848
+#: flatcamEditors/FlatCAMGrbEditor.py:5042 flatcamTools/ToolTransform.py:249
msgid "Offset X"
msgstr "Offset X"
-#: flatcamEditors/FlatCAMGeoEditor.py:849
-#: flatcamEditors/FlatCAMGeoEditor.py:867
-#: flatcamEditors/FlatCAMGrbEditor.py:5009
-#: flatcamEditors/FlatCAMGrbEditor.py:5027
+#: flatcamEditors/FlatCAMGeoEditor.py:850
+#: flatcamEditors/FlatCAMGeoEditor.py:868
+#: flatcamEditors/FlatCAMGrbEditor.py:5044
+#: flatcamEditors/FlatCAMGrbEditor.py:5062
msgid ""
"Offset the selected shape(s).\n"
"The point of reference is the middle of\n"
@@ -2833,30 +3378,30 @@ msgstr ""
"The point of reference is the middle of\n"
"the bounding box for all selected shapes.\n"
-#: flatcamEditors/FlatCAMGeoEditor.py:855
-#: flatcamEditors/FlatCAMGrbEditor.py:5015
+#: flatcamEditors/FlatCAMGeoEditor.py:856
+#: flatcamEditors/FlatCAMGrbEditor.py:5050
msgid "Value Y:"
msgstr "Value Y:"
-#: flatcamEditors/FlatCAMGeoEditor.py:857
-#: flatcamEditors/FlatCAMGrbEditor.py:5017
+#: flatcamEditors/FlatCAMGeoEditor.py:858
+#: flatcamEditors/FlatCAMGrbEditor.py:5052
msgid "Value for Offset action on Y axis."
msgstr "Value for Offset action on Y axis."
-#: flatcamEditors/FlatCAMGeoEditor.py:865
-#: flatcamEditors/FlatCAMGrbEditor.py:5025 flatcamTools/ToolTransform.py:266
+#: flatcamEditors/FlatCAMGeoEditor.py:866
+#: flatcamEditors/FlatCAMGrbEditor.py:5060 flatcamTools/ToolTransform.py:266
msgid "Offset Y"
msgstr "Offset Y"
-#: flatcamEditors/FlatCAMGeoEditor.py:896
-#: flatcamEditors/FlatCAMGrbEditor.py:5056 flatcamTools/ToolTransform.py:296
+#: flatcamEditors/FlatCAMGeoEditor.py:897
+#: flatcamEditors/FlatCAMGrbEditor.py:5091 flatcamTools/ToolTransform.py:296
msgid "Flip on X"
msgstr "Flip on X"
-#: flatcamEditors/FlatCAMGeoEditor.py:898
-#: flatcamEditors/FlatCAMGeoEditor.py:906
-#: flatcamEditors/FlatCAMGrbEditor.py:5058
-#: flatcamEditors/FlatCAMGrbEditor.py:5066
+#: flatcamEditors/FlatCAMGeoEditor.py:899
+#: flatcamEditors/FlatCAMGeoEditor.py:907
+#: flatcamEditors/FlatCAMGrbEditor.py:5093
+#: flatcamEditors/FlatCAMGrbEditor.py:5101
msgid ""
"Flip the selected shape(s) over the X axis.\n"
"Does not create a new shape."
@@ -2864,18 +3409,18 @@ msgstr ""
"Flip the selected shape(s) over the X axis.\n"
"Does not create a new shape."
-#: flatcamEditors/FlatCAMGeoEditor.py:904
-#: flatcamEditors/FlatCAMGrbEditor.py:5064 flatcamTools/ToolTransform.py:304
+#: flatcamEditors/FlatCAMGeoEditor.py:905
+#: flatcamEditors/FlatCAMGrbEditor.py:5099 flatcamTools/ToolTransform.py:304
msgid "Flip on Y"
msgstr "Flip on Y"
-#: flatcamEditors/FlatCAMGeoEditor.py:913
-#: flatcamEditors/FlatCAMGrbEditor.py:5073
+#: flatcamEditors/FlatCAMGeoEditor.py:914
+#: flatcamEditors/FlatCAMGrbEditor.py:5108
msgid "Ref Pt"
msgstr "Ref Pt"
-#: flatcamEditors/FlatCAMGeoEditor.py:915
-#: flatcamEditors/FlatCAMGrbEditor.py:5075
+#: flatcamEditors/FlatCAMGeoEditor.py:916
+#: flatcamEditors/FlatCAMGrbEditor.py:5110
msgid ""
"Flip the selected shape(s)\n"
"around the point in Point Entry Field.\n"
@@ -2897,13 +3442,13 @@ msgstr ""
"Or enter the coords in format (x, y) in the\n"
"Point Entry field and click Flip on X(Y)"
-#: flatcamEditors/FlatCAMGeoEditor.py:927
-#: flatcamEditors/FlatCAMGrbEditor.py:5087
+#: flatcamEditors/FlatCAMGeoEditor.py:928
+#: flatcamEditors/FlatCAMGrbEditor.py:5122
msgid "Point:"
msgstr "Point:"
-#: flatcamEditors/FlatCAMGeoEditor.py:929
-#: flatcamEditors/FlatCAMGrbEditor.py:5089
+#: flatcamEditors/FlatCAMGeoEditor.py:930
+#: flatcamEditors/FlatCAMGrbEditor.py:5124
msgid ""
"Coordinates in format (x, y) used as reference for mirroring.\n"
"The 'x' in (x, y) will be used when using Flip on X and\n"
@@ -2913,8 +3458,8 @@ msgstr ""
"The 'x' in (x, y) will be used when using Flip on X and\n"
"the 'y' in (x, y) will be used when using Flip on Y."
-#: flatcamEditors/FlatCAMGeoEditor.py:941
-#: flatcamEditors/FlatCAMGrbEditor.py:5101 flatcamTools/ToolTransform.py:340
+#: flatcamEditors/FlatCAMGeoEditor.py:942
+#: flatcamEditors/FlatCAMGrbEditor.py:5136 flatcamTools/ToolTransform.py:340
msgid ""
"The point coordinates can be captured by\n"
"left click on canvas together with pressing\n"
@@ -2924,743 +3469,795 @@ msgstr ""
"left click on canvas together with pressing\n"
"SHIFT key. Then click Add button to insert."
-#: flatcamEditors/FlatCAMGeoEditor.py:1056
-#: flatcamEditors/FlatCAMGrbEditor.py:5226
-msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
-msgstr "[WARNING_NOTCL] Transformation cancelled. No shape selected."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1077
-#: flatcamEditors/FlatCAMGrbEditor.py:5246 flatcamTools/ToolTransform.py:473
-msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
-msgstr "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1114
-#: flatcamEditors/FlatCAMGrbEditor.py:5289 flatcamTools/ToolTransform.py:507
-msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
-msgstr "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1135
-#: flatcamEditors/FlatCAMGrbEditor.py:5316 flatcamTools/ToolTransform.py:525
-msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
-msgstr "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1156
-#: flatcamEditors/FlatCAMGrbEditor.py:5343 flatcamTools/ToolTransform.py:543
-msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
-msgstr "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1193
-#: flatcamEditors/FlatCAMGrbEditor.py:5384 flatcamTools/ToolTransform.py:577
-msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
-msgstr "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1225
-#: flatcamEditors/FlatCAMGrbEditor.py:5422 flatcamTools/ToolTransform.py:606
-msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
-msgstr "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1246
-#: flatcamEditors/FlatCAMGrbEditor.py:5448 flatcamTools/ToolTransform.py:624
-msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
-msgstr "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1264
-#: flatcamEditors/FlatCAMGrbEditor.py:5471
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
-msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
+#: flatcamEditors/FlatCAMGeoEditor.py:1058
+#: flatcamEditors/FlatCAMGrbEditor.py:5262
+#| msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
+msgid "Transformation cancelled. No shape selected."
+msgstr "Transformation cancelled. No shape selected."
#: flatcamEditors/FlatCAMGeoEditor.py:1267
-#: flatcamEditors/FlatCAMGrbEditor.py:5474 flatcamTools/ToolTransform.py:645
+#: flatcamEditors/FlatCAMGrbEditor.py:5508
+#| msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
+msgid "No shape selected. Please Select a shape to rotate!"
+msgstr "No shape selected. Please Select a shape to rotate!"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1270
+#: flatcamEditors/FlatCAMGrbEditor.py:5511 flatcamTools/ToolTransform.py:646
msgid "Appying Rotate"
msgstr "Appying Rotate"
-#: flatcamEditors/FlatCAMGeoEditor.py:1295
-#: flatcamEditors/FlatCAMGrbEditor.py:5507
-msgid "[success] Done. Rotate completed."
-msgstr "[success] Done. Rotate completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:1299
+#: flatcamEditors/FlatCAMGrbEditor.py:5545
+#| msgid "[success] Done. Rotate completed."
+msgid "Done. Rotate completed."
+msgstr "Done. Rotate completed."
-#: flatcamEditors/FlatCAMGeoEditor.py:1311
-#: flatcamEditors/FlatCAMGrbEditor.py:5526
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
-msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
+#: flatcamEditors/FlatCAMGeoEditor.py:1305
+#| msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
+msgid "Rotation action was not executed"
+msgstr "Rotation action was not executed"
-#: flatcamEditors/FlatCAMGeoEditor.py:1314
-#: flatcamEditors/FlatCAMGrbEditor.py:5529 flatcamTools/ToolTransform.py:696
+#: flatcamEditors/FlatCAMGeoEditor.py:1317
+#: flatcamEditors/FlatCAMGrbEditor.py:5566
+#| msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
+msgid "No shape selected. Please Select a shape to flip!"
+msgstr "No shape selected. Please Select a shape to flip!"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1320
+#: flatcamEditors/FlatCAMGrbEditor.py:5569 flatcamTools/ToolTransform.py:699
msgid "Applying Flip"
msgstr "Applying Flip"
-#: flatcamEditors/FlatCAMGeoEditor.py:1344
-#: flatcamEditors/FlatCAMGrbEditor.py:5568 flatcamTools/ToolTransform.py:738
-msgid "[success] Flip on the Y axis done ..."
-msgstr "[success] Flip on the Y axis done ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1351
+#: flatcamEditors/FlatCAMGrbEditor.py:5609 flatcamTools/ToolTransform.py:742
+#| msgid "[success]Flip on the Y axis done ..."
+msgid "Flip on the Y axis done"
+msgstr "Flip on the Y axis done"
-#: flatcamEditors/FlatCAMGeoEditor.py:1347
-#: flatcamEditors/FlatCAMGrbEditor.py:5576 flatcamTools/ToolTransform.py:747
-msgid "[success] Flip on the X axis done ..."
-msgstr "[success] Flip on the X axis done ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1355
+#: flatcamEditors/FlatCAMGrbEditor.py:5618 flatcamTools/ToolTransform.py:752
+#| msgid "[success]Flip on the X axis done ..."
+msgid "Flip on the X axis done"
+msgstr "Flip on the X axis done"
#: flatcamEditors/FlatCAMGeoEditor.py:1366
-#: flatcamEditors/FlatCAMGrbEditor.py:5596
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
-msgstr ""
-"[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
+#| msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
+msgid "Flip action was not executed"
+msgstr "Flip action was not executed"
-#: flatcamEditors/FlatCAMGeoEditor.py:1369
-#: flatcamEditors/FlatCAMGrbEditor.py:5599 flatcamTools/ToolTransform.py:765
+#: flatcamEditors/FlatCAMGeoEditor.py:1376
+#: flatcamEditors/FlatCAMGrbEditor.py:5640
+#| msgid ""
+#| "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
+msgid "No shape selected. Please Select a shape to shear/skew!"
+msgstr "No shape selected. Please Select a shape to shear/skew!"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1379
+#: flatcamEditors/FlatCAMGrbEditor.py:5643 flatcamTools/ToolTransform.py:772
msgid "Applying Skew"
msgstr "Applying Skew"
-#: flatcamEditors/FlatCAMGeoEditor.py:1394
-#: flatcamEditors/FlatCAMGrbEditor.py:5634 flatcamTools/ToolTransform.py:796
-#, python-format
-msgid "[success] Skew on the %s axis done ..."
-msgstr "[success] Skew on the %s axis done ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1405
+#: flatcamEditors/FlatCAMGrbEditor.py:5680
+#| msgid "[success]Skew on the %s axis done ..."
+msgid "Skew on the X axis done"
+msgstr "Skew on the X axis done"
-#: flatcamEditors/FlatCAMGeoEditor.py:1398
-#: flatcamEditors/FlatCAMGrbEditor.py:5638 flatcamTools/ToolTransform.py:800
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
-msgstr "[ERROR_NOTCL] Due of %s, Skew action was not executed."
+#: flatcamEditors/FlatCAMGeoEditor.py:1408
+#: flatcamEditors/FlatCAMGrbEditor.py:5683
+#| msgid "[success]Skew on the %s axis done ..."
+msgid "Skew on the Y axis done"
+msgstr "Skew on the Y axis done"
-#: flatcamEditors/FlatCAMGeoEditor.py:1409
-#: flatcamEditors/FlatCAMGrbEditor.py:5657
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
-msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
+#: flatcamEditors/FlatCAMGeoEditor.py:1413
+#| msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
+msgid "Skew action was not executed"
+msgstr "Skew action was not executed"
-#: flatcamEditors/FlatCAMGeoEditor.py:1412
-#: flatcamEditors/FlatCAMGrbEditor.py:5660 flatcamTools/ToolTransform.py:814
+#: flatcamEditors/FlatCAMGeoEditor.py:1425
+#: flatcamEditors/FlatCAMGrbEditor.py:5708
+#| msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
+msgid "No shape selected. Please Select a shape to scale!"
+msgstr "No shape selected. Please Select a shape to scale!"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1428
+#: flatcamEditors/FlatCAMGrbEditor.py:5711 flatcamTools/ToolTransform.py:823
msgid "Applying Scale"
msgstr "Applying Scale"
-#: flatcamEditors/FlatCAMGeoEditor.py:1445
-#: flatcamEditors/FlatCAMGrbEditor.py:5698 flatcamTools/ToolTransform.py:853
-#, python-format
-msgid "[success] Scale on the %s axis done ..."
-msgstr "[success] Scale on the %s axis done ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1463
+#: flatcamEditors/FlatCAMGrbEditor.py:5751
+#| msgid "[success] Scale on the %s axis done ..."
+msgid "Scale on the X axis done"
+msgstr "Scale on the X axis done"
-#: flatcamEditors/FlatCAMGeoEditor.py:1448
-#: flatcamEditors/FlatCAMGrbEditor.py:5701 flatcamTools/ToolTransform.py:856
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
-msgstr "[ERROR_NOTCL] Due of %s, Scale action was not executed."
+#: flatcamEditors/FlatCAMGeoEditor.py:1466
+#: flatcamEditors/FlatCAMGrbEditor.py:5754
+#| msgid "[success] Scale on the %s axis done ..."
+msgid "Scale on the Y axis done"
+msgstr "Scale on the Y axis done"
-#: flatcamEditors/FlatCAMGeoEditor.py:1457
-#: flatcamEditors/FlatCAMGrbEditor.py:5714
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
-msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
+#: flatcamEditors/FlatCAMGeoEditor.py:1470
+#| msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
+msgid "Scale action was not executed"
+msgstr "Scale action was not executed"
-#: flatcamEditors/FlatCAMGeoEditor.py:1460
-#: flatcamEditors/FlatCAMGrbEditor.py:5717 flatcamTools/ToolTransform.py:866
+#: flatcamEditors/FlatCAMGeoEditor.py:1480
+#: flatcamEditors/FlatCAMGrbEditor.py:5772
+#| msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
+msgid "No shape selected. Please Select a shape to offset!"
+msgstr "No shape selected. Please Select a shape to offset!"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1483
+#: flatcamEditors/FlatCAMGrbEditor.py:5775 flatcamTools/ToolTransform.py:878
msgid "Applying Offset"
msgstr "Applying Offset"
-#: flatcamEditors/FlatCAMGeoEditor.py:1471
-#: flatcamEditors/FlatCAMGrbEditor.py:5739 flatcamTools/ToolTransform.py:885
-#, python-format
-msgid "[success] Offset on the %s axis done ..."
-msgstr "[success] Offset on the %s axis done ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1496
+#: flatcamEditors/FlatCAMGrbEditor.py:5799
+#| msgid "Offset on X axis ..."
+msgid "Offset on the X axis done"
+msgstr "Offset on the X axis done"
-#: flatcamEditors/FlatCAMGeoEditor.py:1475
-#: flatcamEditors/FlatCAMGrbEditor.py:5743 flatcamTools/ToolTransform.py:889
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
-msgstr "[ERROR_NOTCL] Due of %s, Offset action was not executed."
+#: flatcamEditors/FlatCAMGeoEditor.py:1499
+#: flatcamEditors/FlatCAMGrbEditor.py:5802
+#| msgid "Offset on Y axis ..."
+msgid "Offset on the Y axis done"
+msgstr "Offset on the Y axis done"
-#: flatcamEditors/FlatCAMGeoEditor.py:1479
-#: flatcamEditors/FlatCAMGrbEditor.py:5747
+#: flatcamEditors/FlatCAMGeoEditor.py:1504
+#| msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
+msgid "Offset action was not executed"
+msgstr "Offset action was not executed"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1508
+#: flatcamEditors/FlatCAMGrbEditor.py:5811
msgid "Rotate ..."
msgstr "Rotate ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1480
-#: flatcamEditors/FlatCAMGeoEditor.py:1537
-#: flatcamEditors/FlatCAMGeoEditor.py:1554
-#: flatcamEditors/FlatCAMGrbEditor.py:5748
-#: flatcamEditors/FlatCAMGrbEditor.py:5805
-#: flatcamEditors/FlatCAMGrbEditor.py:5822
-msgid "Enter an Angle Value (degrees):"
-msgstr "Enter an Angle Value (degrees):"
+#: flatcamEditors/FlatCAMGeoEditor.py:1509
+#: flatcamEditors/FlatCAMGeoEditor.py:1564
+#: flatcamEditors/FlatCAMGeoEditor.py:1581
+#: flatcamEditors/FlatCAMGrbEditor.py:5812
+#: flatcamEditors/FlatCAMGrbEditor.py:5867
+#: flatcamEditors/FlatCAMGrbEditor.py:5884
+#| msgid "Enter an Angle Value (degrees):"
+msgid "Enter an Angle Value (degrees)"
+msgstr "Enter an Angle Value (degrees)"
-#: flatcamEditors/FlatCAMGeoEditor.py:1489
-#: flatcamEditors/FlatCAMGrbEditor.py:5757
-msgid "[success] Geometry shape rotate done..."
-msgstr "[success] Geometry shape rotate done..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1518
+#: flatcamEditors/FlatCAMGrbEditor.py:5821
+#| msgid "[success] Geometry shape rotate done..."
+msgid "Geometry shape rotate done"
+msgstr "Geometry shape rotate done"
-#: flatcamEditors/FlatCAMGeoEditor.py:1494
-#: flatcamEditors/FlatCAMGrbEditor.py:5762
-msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
-msgstr "[WARNING_NOTCL] Geometry shape rotate cancelled..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1522
+#: flatcamEditors/FlatCAMGrbEditor.py:5825
+#| msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
+msgid "Geometry shape rotate cancelled"
+msgstr "Geometry shape rotate cancelled"
-#: flatcamEditors/FlatCAMGeoEditor.py:1500
-#: flatcamEditors/FlatCAMGrbEditor.py:5768
+#: flatcamEditors/FlatCAMGeoEditor.py:1527
+#: flatcamEditors/FlatCAMGrbEditor.py:5830
msgid "Offset on X axis ..."
msgstr "Offset on X axis ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1501
-#: flatcamEditors/FlatCAMGeoEditor.py:1520
-#: flatcamEditors/FlatCAMGrbEditor.py:5769
-#: flatcamEditors/FlatCAMGrbEditor.py:5788
-#, python-format
-msgid "Enter a distance Value (%s):"
-msgstr "Enter a distance Value (%s):"
+#: flatcamEditors/FlatCAMGeoEditor.py:1528
+#: flatcamEditors/FlatCAMGeoEditor.py:1547
+#: flatcamEditors/FlatCAMGrbEditor.py:5831
+#: flatcamEditors/FlatCAMGrbEditor.py:5850
+#| msgid "Enter a distance Value (%s):"
+msgid "Enter a distance Value"
+msgstr "Enter a distance Value"
-#: flatcamEditors/FlatCAMGeoEditor.py:1510
-#: flatcamEditors/FlatCAMGrbEditor.py:5778
-msgid "[success] Geometry shape offset on X axis done..."
-msgstr "[success] Geometry shape offset on X axis done..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1537
+#: flatcamEditors/FlatCAMGrbEditor.py:5840
+#| msgid "[success] Geometry shape offset on X axis done..."
+msgid "Geometry shape offset on X axis done"
+msgstr "Geometry shape offset on X axis done"
-#: flatcamEditors/FlatCAMGeoEditor.py:1514
-#: flatcamEditors/FlatCAMGrbEditor.py:5782
-msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
-msgstr "[WARNING_NOTCL] Geometry shape offset X cancelled..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1541
+#: flatcamEditors/FlatCAMGrbEditor.py:5844
+#| msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
+msgid "Geometry shape offset X cancelled"
+msgstr "Geometry shape offset X cancelled"
-#: flatcamEditors/FlatCAMGeoEditor.py:1519
-#: flatcamEditors/FlatCAMGrbEditor.py:5787
+#: flatcamEditors/FlatCAMGeoEditor.py:1546
+#: flatcamEditors/FlatCAMGrbEditor.py:5849
msgid "Offset on Y axis ..."
msgstr "Offset on Y axis ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1529
-#: flatcamEditors/FlatCAMGrbEditor.py:5797
-msgid "[success] Geometry shape offset on Y axis done..."
-msgstr "[success] Geometry shape offset on Y axis done..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1556
+#: flatcamEditors/FlatCAMGrbEditor.py:5859
+#| msgid "[success] Geometry shape offset on Y axis done..."
+msgid "Geometry shape offset on Y axis done"
+msgstr "Geometry shape offset on Y axis done"
-#: flatcamEditors/FlatCAMGeoEditor.py:1533
-#: flatcamEditors/FlatCAMGrbEditor.py:5801
-msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
-msgstr "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1560
+#| msgid "[success] Geometry shape offset on Y axis done..."
+msgid "Geometry shape offset on Y axis canceled"
+msgstr "Geometry shape offset on Y axis canceled"
-#: flatcamEditors/FlatCAMGeoEditor.py:1536
-#: flatcamEditors/FlatCAMGrbEditor.py:5804
+#: flatcamEditors/FlatCAMGeoEditor.py:1563
+#: flatcamEditors/FlatCAMGrbEditor.py:5866
msgid "Skew on X axis ..."
msgstr "Skew on X axis ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1546
-#: flatcamEditors/FlatCAMGrbEditor.py:5814
-msgid "[success] Geometry shape skew on X axis done..."
-msgstr "[success] Geometry shape skew on X axis done..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1573
+#: flatcamEditors/FlatCAMGrbEditor.py:5876
+#| msgid "[success] Geometry shape skew on X axis done..."
+msgid "Geometry shape skew on X axis done"
+msgstr "Geometry shape skew on X axis done"
-#: flatcamEditors/FlatCAMGeoEditor.py:1550
-#: flatcamEditors/FlatCAMGrbEditor.py:5818
-msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
-msgstr "[WARNING_NOTCL] Geometry shape skew X cancelled..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1577
+#| msgid "[success] Geometry shape skew on X axis done..."
+msgid "Geometry shape skew on X axis canceled"
+msgstr "Geometry shape skew on X axis canceled"
-#: flatcamEditors/FlatCAMGeoEditor.py:1553
-#: flatcamEditors/FlatCAMGrbEditor.py:5821
+#: flatcamEditors/FlatCAMGeoEditor.py:1580
+#: flatcamEditors/FlatCAMGrbEditor.py:5883
msgid "Skew on Y axis ..."
msgstr "Skew on Y axis ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1563
-#: flatcamEditors/FlatCAMGrbEditor.py:5831
-msgid "[success] Geometry shape skew on Y axis done..."
-msgstr "[success] Geometry shape skew on Y axis done..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1590
+#: flatcamEditors/FlatCAMGrbEditor.py:5893
+#| msgid "[success] Geometry shape skew on Y axis done..."
+msgid "Geometry shape skew on Y axis done"
+msgstr "Geometry shape skew on Y axis done"
-#: flatcamEditors/FlatCAMGeoEditor.py:1567
-#: flatcamEditors/FlatCAMGrbEditor.py:5835
-msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
-msgstr "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1594
+#| msgid "[success] Geometry shape skew on Y axis done..."
+msgid "Geometry shape skew on Y axis canceled"
+msgstr "Geometry shape skew on Y axis canceled"
-#: flatcamEditors/FlatCAMGeoEditor.py:1931
-#: flatcamEditors/FlatCAMGeoEditor.py:1982
-#: flatcamEditors/FlatCAMGrbEditor.py:1385
-#: flatcamEditors/FlatCAMGrbEditor.py:1454
+#: flatcamEditors/FlatCAMGeoEditor.py:1958
+#: flatcamEditors/FlatCAMGeoEditor.py:2010
+#: flatcamEditors/FlatCAMGrbEditor.py:1396
+#: flatcamEditors/FlatCAMGrbEditor.py:1466
msgid "Click on Center point ..."
msgstr "Click on Center point ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1938
-#: flatcamEditors/FlatCAMGrbEditor.py:1393
+#: flatcamEditors/FlatCAMGeoEditor.py:1965
+#: flatcamEditors/FlatCAMGrbEditor.py:1404
msgid "Click on Perimeter point to complete ..."
msgstr "Click on Perimeter point to complete ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1967
-msgid "[success] Done. Adding Circle completed."
-msgstr "[success] Done. Adding Circle completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:1995
+#| msgid "[success] Done. Adding Circle completed."
+msgid "Done. Adding Circle completed."
+msgstr "Done. Adding Circle completed."
-#: flatcamEditors/FlatCAMGeoEditor.py:2002
-#: flatcamEditors/FlatCAMGrbEditor.py:1486
+#: flatcamEditors/FlatCAMGeoEditor.py:2030
+#: flatcamEditors/FlatCAMGrbEditor.py:1498
msgid "Click on Start point ..."
msgstr "Click on Start point ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2004
-#: flatcamEditors/FlatCAMGrbEditor.py:1488
+#: flatcamEditors/FlatCAMGeoEditor.py:2032
+#: flatcamEditors/FlatCAMGrbEditor.py:1500
msgid "Click on Point3 ..."
msgstr "Click on Point3 ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2006
-#: flatcamEditors/FlatCAMGrbEditor.py:1490
+#: flatcamEditors/FlatCAMGeoEditor.py:2034
+#: flatcamEditors/FlatCAMGrbEditor.py:1502
msgid "Click on Stop point ..."
msgstr "Click on Stop point ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2011
-#: flatcamEditors/FlatCAMGrbEditor.py:1495
+#: flatcamEditors/FlatCAMGeoEditor.py:2039
+#: flatcamEditors/FlatCAMGrbEditor.py:1507
msgid "Click on Stop point to complete ..."
msgstr "Click on Stop point to complete ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2013
-#: flatcamEditors/FlatCAMGrbEditor.py:1497
+#: flatcamEditors/FlatCAMGeoEditor.py:2041
+#: flatcamEditors/FlatCAMGrbEditor.py:1509
msgid "Click on Point2 to complete ..."
msgstr "Click on Point2 to complete ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2015
-#: flatcamEditors/FlatCAMGrbEditor.py:1499
+#: flatcamEditors/FlatCAMGeoEditor.py:2043
+#: flatcamEditors/FlatCAMGrbEditor.py:1511
msgid "Click on Center point to complete ..."
msgstr "Click on Center point to complete ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2027
-#: flatcamEditors/FlatCAMGrbEditor.py:1511
+#: flatcamEditors/FlatCAMGeoEditor.py:2055
+#: flatcamEditors/FlatCAMGrbEditor.py:1523
#, python-format
msgid "Direction: %s"
msgstr "Direction: %s"
-#: flatcamEditors/FlatCAMGeoEditor.py:2037
-#: flatcamEditors/FlatCAMGrbEditor.py:1521
+#: flatcamEditors/FlatCAMGeoEditor.py:2065
+#: flatcamEditors/FlatCAMGrbEditor.py:1533
msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
msgstr "Mode: Start -> Stop -> Center. Click on Start point ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2040
-#: flatcamEditors/FlatCAMGrbEditor.py:1524
+#: flatcamEditors/FlatCAMGeoEditor.py:2068
+#: flatcamEditors/FlatCAMGrbEditor.py:1536
msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
msgstr "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2043
-#: flatcamEditors/FlatCAMGrbEditor.py:1527
+#: flatcamEditors/FlatCAMGeoEditor.py:2071
+#: flatcamEditors/FlatCAMGrbEditor.py:1539
msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
msgstr "Mode: Center -> Start -> Stop. Click on Center point ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2181
-msgid "[success] Done. Arc completed."
-msgstr "[success] Done. Arc completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2210
+#| msgid "[success] Done. Arc completed."
+msgid "Done. Arc completed."
+msgstr "Done. Arc completed."
-#: flatcamEditors/FlatCAMGeoEditor.py:2200
-#: flatcamEditors/FlatCAMGeoEditor.py:2253
-#: flatcamEditors/FlatCAMGeoEditor.py:2628
+#: flatcamEditors/FlatCAMGeoEditor.py:2229
+#: flatcamEditors/FlatCAMGeoEditor.py:2283
+#: flatcamEditors/FlatCAMGeoEditor.py:2656
msgid "Click on 1st corner ..."
msgstr "Click on 1st corner ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2206
+#: flatcamEditors/FlatCAMGeoEditor.py:2235
msgid "Click on opposite corner to complete ..."
msgstr "Click on opposite corner to complete ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2234
-msgid "[success] Done. Rectangle completed."
-msgstr "[success] Done. Rectangle completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2264
+#| msgid "[success] Done. Rectangle completed."
+msgid "Done. Rectangle completed."
+msgstr "Done. Rectangle completed."
-#: flatcamEditors/FlatCAMGeoEditor.py:2260
+#: flatcamEditors/FlatCAMGeoEditor.py:2290
msgid "Click on next Point or click right mouse button to complete ..."
msgstr "Click on next Point or click right mouse button to complete ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2288
-msgid "[success] Done. Polygon completed."
-msgstr "[success] Done. Polygon completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2319
+#| msgid "[success] Done. Polygon completed."
+msgid "Done. Polygon completed."
+msgstr "Done. Polygon completed."
-#: flatcamEditors/FlatCAMGeoEditor.py:2298
-#: flatcamEditors/FlatCAMGeoEditor.py:2344
-#: flatcamEditors/FlatCAMGrbEditor.py:1075
-#: flatcamEditors/FlatCAMGrbEditor.py:1276
+#: flatcamEditors/FlatCAMGeoEditor.py:2329
+#: flatcamEditors/FlatCAMGeoEditor.py:2375
+#: flatcamEditors/FlatCAMGrbEditor.py:1085
+#: flatcamEditors/FlatCAMGrbEditor.py:1287
msgid "Backtracked one point ..."
msgstr "Backtracked one point ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2326
+#: flatcamEditors/FlatCAMGeoEditor.py:2357
msgid "[success] Done. Path completed."
msgstr "[success] Done. Path completed."
-#: flatcamEditors/FlatCAMGeoEditor.py:2449
-msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
-msgstr "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:2475
+#| msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
+msgid "MOVE: No shape selected. Select a shape to move"
+msgstr "MOVE: No shape selected. Select a shape to move"
-#: flatcamEditors/FlatCAMGeoEditor.py:2451
-#: flatcamEditors/FlatCAMGeoEditor.py:2463
+#: flatcamEditors/FlatCAMGeoEditor.py:2477
+#: flatcamEditors/FlatCAMGeoEditor.py:2489
msgid " MOVE: Click on reference point ..."
msgstr " MOVE: Click on reference point ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2454
+#: flatcamEditors/FlatCAMGeoEditor.py:2480
msgid " Click on destination point ..."
msgstr " Click on destination point ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2488
-msgid "[success] Done. Geometry(s) Move completed."
-msgstr "[success] Done. Geometry(s) Move completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2515
+#| msgid "[success] Done. Geometry(s) Move completed."
+msgid "Done. Geometry(s) Move completed."
+msgstr "Done. Geometry(s) Move completed."
-#: flatcamEditors/FlatCAMGeoEditor.py:2608
-msgid "[success] Done. Geometry(s) Copy completed."
-msgstr "[success] Done. Geometry(s) Copy completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2636
+#| msgid "[success] Done. Geometry(s) Copy completed."
+msgid "Done. Geometry(s) Copy completed."
+msgstr "Done. Geometry(s) Copy completed."
-#: flatcamEditors/FlatCAMGeoEditor.py:2644
-#, python-format
+#: flatcamEditors/FlatCAMGeoEditor.py:2673
+#| msgid ""
+#| "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
+#| "supported. Error: %s"
msgid ""
-"[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
-"supported. Error: %s"
+"Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
+"Error"
msgstr ""
-"[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
-"supported. Error: %s"
+"Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
+"Error"
-#: flatcamEditors/FlatCAMGeoEditor.py:2651
-msgid "[WARNING_NOTCL] No text to add."
-msgstr "[WARNING_NOTCL] No text to add."
+#: flatcamEditors/FlatCAMGeoEditor.py:2681
+#| msgid "[WARNING_NOTCL] No text to add."
+msgid "No text to add."
+msgstr "No text to add."
-#: flatcamEditors/FlatCAMGeoEditor.py:2657
-msgid "[success] Done. Adding Text completed."
-msgstr "[success] Done. Adding Text completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2688
+#| msgid "[success] Done. Adding Text completed."
+msgid " Done. Adding Text completed."
+msgstr " Done. Adding Text completed."
-#: flatcamEditors/FlatCAMGeoEditor.py:2685
+#: flatcamEditors/FlatCAMGeoEditor.py:2716
msgid "Create buffer geometry ..."
msgstr "Create buffer geometry ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2696
-#: flatcamEditors/FlatCAMGeoEditor.py:2724
-#: flatcamEditors/FlatCAMGeoEditor.py:2752
-msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
-msgstr "[WARNING_NOTCL] Buffer cancelled. No shape selected."
+#: flatcamEditors/FlatCAMGeoEditor.py:2728
+#: flatcamEditors/FlatCAMGeoEditor.py:2758
+#: flatcamEditors/FlatCAMGeoEditor.py:2788
+#| msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
+msgid "Buffer cancelled. No shape selected."
+msgstr "Buffer cancelled. No shape selected."
-#: flatcamEditors/FlatCAMGeoEditor.py:2720
-#: flatcamEditors/FlatCAMGrbEditor.py:4641
-msgid "[success] Done. Buffer Tool completed."
-msgstr "[success] Done. Buffer Tool completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2753
+#: flatcamEditors/FlatCAMGrbEditor.py:4674
+#| msgid "[success] Done. Buffer Tool completed."
+msgid "Done. Buffer Tool completed."
+msgstr "Done. Buffer Tool completed."
-#: flatcamEditors/FlatCAMGeoEditor.py:2748
-msgid "[success] Done. Buffer Int Tool completed."
-msgstr "[success] Done. Buffer Int Tool completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2783
+#| msgid "[success] Done. Buffer Int Tool completed."
+msgid "Done. Buffer Int Tool completed."
+msgstr "Done. Buffer Int Tool completed."
-#: flatcamEditors/FlatCAMGeoEditor.py:2776
-msgid "[success] Done. Buffer Ext Tool completed."
-msgstr "[success] Done. Buffer Ext Tool completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2813
+#| msgid "[success] Done. Buffer Ext Tool completed."
+msgid "Done. Buffer Ext Tool completed."
+msgstr "Done. Buffer Ext Tool completed."
-#: flatcamEditors/FlatCAMGeoEditor.py:2811
-#: flatcamEditors/FlatCAMGrbEditor.py:2052
+#: flatcamEditors/FlatCAMGeoEditor.py:2848
+#: flatcamEditors/FlatCAMGrbEditor.py:2068
msgid "Select a shape to act as deletion area ..."
msgstr "Select a shape to act as deletion area ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2813
-#: flatcamEditors/FlatCAMGeoEditor.py:2832
-#: flatcamEditors/FlatCAMGeoEditor.py:2838
-#: flatcamEditors/FlatCAMGrbEditor.py:2054
+#: flatcamEditors/FlatCAMGeoEditor.py:2850
+#: flatcamEditors/FlatCAMGeoEditor.py:2869
+#: flatcamEditors/FlatCAMGeoEditor.py:2875
+#: flatcamEditors/FlatCAMGrbEditor.py:2070
msgid "Click to pick-up the erase shape..."
msgstr "Click to pick-up the erase shape..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2842
-#: flatcamEditors/FlatCAMGrbEditor.py:2111
+#: flatcamEditors/FlatCAMGeoEditor.py:2879
+#: flatcamEditors/FlatCAMGrbEditor.py:2127
msgid "Click to erase ..."
msgstr "Click to erase ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2871
-#: flatcamEditors/FlatCAMGrbEditor.py:2144
-msgid "[success] Done. Eraser tool action completed."
-msgstr "[success] Done. Eraser tool action completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2909
+#: flatcamEditors/FlatCAMGrbEditor.py:2161
+#| msgid "[success] Done. Eraser tool action completed."
+msgid "Done. Eraser tool action completed."
+msgstr "Done. Eraser tool action completed."
-#: flatcamEditors/FlatCAMGeoEditor.py:2914
+#: flatcamEditors/FlatCAMGeoEditor.py:2952
msgid "Create Paint geometry ..."
msgstr "Create Paint geometry ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2928
-#: flatcamEditors/FlatCAMGrbEditor.py:2292
+#: flatcamEditors/FlatCAMGeoEditor.py:2966
+#: flatcamEditors/FlatCAMGrbEditor.py:2312
msgid "Shape transformations ..."
msgstr "Shape transformations ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:3506
-#, python-brace-format
-msgid ""
-"[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
-msgstr ""
-"[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
+#: flatcamEditors/FlatCAMGeoEditor.py:3545
+msgid "Editing MultiGeo Geometry, tool"
+msgstr "Editing MultiGeo Geometry, tool"
-#: flatcamEditors/FlatCAMGeoEditor.py:3863
-msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
-msgstr "[WARNING_NOTCL] Copy cancelled. No shape selected."
+#: flatcamEditors/FlatCAMGeoEditor.py:3547
+#| msgid "Tip Diameter"
+msgid "with diameter"
+msgstr "with diameter"
-#: flatcamEditors/FlatCAMGeoEditor.py:3870 flatcamGUI/FlatCAMGUI.py:2852
-#: flatcamGUI/FlatCAMGUI.py:2898 flatcamGUI/FlatCAMGUI.py:2916
-#: flatcamGUI/FlatCAMGUI.py:3047 flatcamGUI/FlatCAMGUI.py:3059
-#: flatcamGUI/FlatCAMGUI.py:3093 flatcamGUI/FlatCAMGUI.py:3150
+#: flatcamEditors/FlatCAMGeoEditor.py:3924
+#| msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
+msgid "Copy cancelled. No shape selected."
+msgstr "Copy cancelled. No shape selected."
+
+#: flatcamEditors/FlatCAMGeoEditor.py:3931 flatcamGUI/FlatCAMGUI.py:2882
+#: flatcamGUI/FlatCAMGUI.py:2928 flatcamGUI/FlatCAMGUI.py:2946
+#: flatcamGUI/FlatCAMGUI.py:3077 flatcamGUI/FlatCAMGUI.py:3089
+#: flatcamGUI/FlatCAMGUI.py:3123 flatcamGUI/FlatCAMGUI.py:3180
msgid "Click on target point."
msgstr "Click on target point."
-#: flatcamEditors/FlatCAMGeoEditor.py:4114
-#: flatcamEditors/FlatCAMGeoEditor.py:4149
-msgid ""
-"[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
-"Intersection."
-msgstr ""
-"[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
-"Intersection."
+#: flatcamEditors/FlatCAMGeoEditor.py:4175
+#: flatcamEditors/FlatCAMGeoEditor.py:4210
+#| msgid ""
+#| "[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
+#| "Intersection."
+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."
-#: flatcamEditors/FlatCAMGeoEditor.py:4235
-#: flatcamEditors/FlatCAMGeoEditor.py:4335
-msgid ""
-"[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to "
-"generate an 'inside' shape"
-msgstr ""
-"[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to "
-"generate an 'inside' shape"
-
-#: flatcamEditors/FlatCAMGeoEditor.py:4244
#: flatcamEditors/FlatCAMGeoEditor.py:4296
-#: flatcamEditors/FlatCAMGeoEditor.py:4343
-msgid "[WARNING_NOTCL] Nothing selected for buffering."
-msgstr "[WARNING_NOTCL] Nothing selected for buffering."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:4248
-#: flatcamEditors/FlatCAMGeoEditor.py:4300
-#: flatcamEditors/FlatCAMGeoEditor.py:4347
-msgid "[WARNING_NOTCL] Invalid distance for buffering."
-msgstr "[WARNING_NOTCL] Invalid distance for buffering."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:4271
-#: flatcamEditors/FlatCAMGeoEditor.py:4366
+#: flatcamEditors/FlatCAMGeoEditor.py:4405
+#| msgid ""
+#| "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior "
+#| "to generate an 'inside' shape"
msgid ""
-"[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
+"Negative buffer value is not accepted. Use Buffer interior to generate an "
+"'inside' shape"
msgstr ""
-"[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
+"Negative buffer value is not accepted. Use Buffer interior to generate an "
+"'inside' shape"
-#: flatcamEditors/FlatCAMGeoEditor.py:4281
-msgid "[success] Full buffer geometry created."
-msgstr "[success] Full buffer geometry created."
+#: flatcamEditors/FlatCAMGeoEditor.py:4306
+#: flatcamEditors/FlatCAMGeoEditor.py:4362
+#: flatcamEditors/FlatCAMGeoEditor.py:4414
+#| msgid "[WARNING_NOTCL] Nothing selected for buffering."
+msgid "Nothing selected for buffering."
+msgstr "Nothing selected for buffering."
-#: flatcamEditors/FlatCAMGeoEditor.py:4288
-msgid "[ERROR_NOTCL] Negative buffer value is not accepted."
-msgstr "[ERROR_NOTCL] Negative buffer value is not accepted."
+#: flatcamEditors/FlatCAMGeoEditor.py:4311
+#: flatcamEditors/FlatCAMGeoEditor.py:4367
+#: flatcamEditors/FlatCAMGeoEditor.py:4419
+#| msgid "[WARNING_NOTCL] Invalid distance for buffering."
+msgid "Invalid distance for buffering."
+msgstr "Invalid distance for buffering."
-#: flatcamEditors/FlatCAMGeoEditor.py:4319
-msgid ""
-"[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
-msgstr ""
-"[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
+#: flatcamEditors/FlatCAMGeoEditor.py:4335
+#: flatcamEditors/FlatCAMGeoEditor.py:4439
+#| msgid ""
+#| "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer "
+#| "value."
+msgid "Failed, the result is empty. Choose a different buffer value."
+msgstr "Failed, the result is empty. Choose a different buffer value."
-#: flatcamEditors/FlatCAMGeoEditor.py:4329
-msgid "[success] Interior buffer geometry created."
-msgstr "[success] Interior buffer geometry created."
+#: flatcamEditors/FlatCAMGeoEditor.py:4346
+#| msgid "[success] Full buffer geometry created."
+msgid "Full buffer geometry created."
+msgstr "Full buffer geometry created."
-#: flatcamEditors/FlatCAMGeoEditor.py:4376
-msgid "[success] Exterior buffer geometry created."
-msgstr "[success] Exterior buffer geometry created."
+#: flatcamEditors/FlatCAMGeoEditor.py:4353
+#| msgid "[ERROR_NOTCL] Negative buffer value is not accepted."
+msgid "Negative buffer value is not accepted."
+msgstr "Negative buffer value is not accepted."
-#: flatcamEditors/FlatCAMGeoEditor.py:4440
-msgid "[WARNING_NOTCL] Nothing selected for painting."
-msgstr "[WARNING_NOTCL] Nothing selected for painting."
+#: flatcamEditors/FlatCAMGeoEditor.py:4387
+#| msgid ""
+#| "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
+msgid "Failed, the result is empty. Choose a smaller buffer value."
+msgstr "Failed, the result is empty. Choose a smaller buffer value."
-#: flatcamEditors/FlatCAMGeoEditor.py:4446
-msgid "[WARNING] Invalid value for {}"
-msgstr "[WARNING] Invalid value for {}"
+#: flatcamEditors/FlatCAMGeoEditor.py:4398
+#| msgid "[success] Interior buffer geometry created."
+msgid "Interior buffer geometry created."
+msgstr "Interior buffer geometry created."
-#: flatcamEditors/FlatCAMGeoEditor.py:4452
-msgid ""
-"[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
-"(100%)."
-msgstr ""
-"[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
-"(100%)."
+#: flatcamEditors/FlatCAMGeoEditor.py:4450
+#| msgid "[success] Exterior buffer geometry created."
+msgid "Exterior buffer geometry created."
+msgstr "Exterior buffer geometry created."
-#: flatcamEditors/FlatCAMGeoEditor.py:4511
-#, python-format
-msgid ""
-"[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
-"different method of Paint\n"
-"%s"
-msgstr ""
-"[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
-"different method of Paint\n"
-"%s"
+#: flatcamEditors/FlatCAMGeoEditor.py:4515
+#| msgid "[WARNING_NOTCL] Nothing selected for painting."
+msgid "Nothing selected for painting."
+msgstr "Nothing selected for painting."
#: flatcamEditors/FlatCAMGeoEditor.py:4522
+#| msgid "[WARNING] Invalid value for {}"
+msgid "Invalid value for"
+msgstr "Invalid value for"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:4528
+#, python-format
+#| msgid ""
+#| "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
+#| "(100%)."
+msgid "Could not do Paint. Overlap value has to be less than 1.00 (100%%)."
+msgstr "Could not do Paint. Overlap value has to be less than 1.00 (100%%)."
+
+#: flatcamEditors/FlatCAMGeoEditor.py:4587
+#, python-format
+#| msgid ""
+#| "[ERROR] Could not do Paint. Try a different combination of parameters. Or "
+#| "a different method of Paint\n"
+#| "%s"
+msgid ""
+"Could not do Paint. Try a different combination of parameters. Or a "
+"different method of Paint\n"
+"%s"
+msgstr ""
+"Could not do Paint. Try a different combination of parameters. Or a "
+"different method of Paint\n"
+"%s"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:4598
msgid "[success] Paint done."
msgstr "[success] Paint done."
#: flatcamEditors/FlatCAMGrbEditor.py:208
-msgid "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
-msgstr ""
-"[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
+#| msgid ""
+#| "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
+msgid "To add an Pad first select a aperture in Aperture Table"
+msgstr "To add an Pad first select a aperture in Aperture Table"
-#: flatcamEditors/FlatCAMGrbEditor.py:214
-#: flatcamEditors/FlatCAMGrbEditor.py:406
-msgid ""
-"[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
-msgstr ""
-"[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
+#: flatcamEditors/FlatCAMGrbEditor.py:215
+#: flatcamEditors/FlatCAMGrbEditor.py:409
+#| msgid ""
+#| "[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
+msgid "Aperture size is zero. It needs to be greater than zero."
+msgstr "Aperture size is zero. It needs to be greater than zero."
-#: flatcamEditors/FlatCAMGrbEditor.py:365
-#: flatcamEditors/FlatCAMGrbEditor.py:670
+#: flatcamEditors/FlatCAMGrbEditor.py:366
+#: flatcamEditors/FlatCAMGrbEditor.py:674
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'."
-#: flatcamEditors/FlatCAMGrbEditor.py:377
-msgid "[success] Done. Adding Pad completed."
-msgstr "[success] Done. Adding Pad completed."
+#: flatcamEditors/FlatCAMGrbEditor.py:379
+#| msgid "[success] Done. Adding Pad completed."
+msgid "Done. Adding Pad completed."
+msgstr "Done. Adding Pad completed."
-#: flatcamEditors/FlatCAMGrbEditor.py:399
-msgid ""
-"[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
-msgstr ""
-"[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
+#: flatcamEditors/FlatCAMGrbEditor.py:401
+#| msgid ""
+#| "[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture "
+#| "Table"
+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"
-#: flatcamEditors/FlatCAMGrbEditor.py:476
+#: flatcamEditors/FlatCAMGrbEditor.py:479
msgid "Click on the Pad Circular Array Start position"
msgstr "Click on the Pad Circular Array Start position"
-#: flatcamEditors/FlatCAMGrbEditor.py:695
-msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
-msgstr "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
+#: flatcamEditors/FlatCAMGrbEditor.py:700
+#| msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
+msgid "Too many Pads for the selected spacing angle."
+msgstr "Too many Pads for the selected spacing angle."
-#: flatcamEditors/FlatCAMGrbEditor.py:717
-msgid "[success] Done. Pad Array added."
-msgstr "[success] Done. Pad Array added."
+#: flatcamEditors/FlatCAMGrbEditor.py:723
+#| msgid "[success] Done. Pad Array added."
+msgid "Done. Pad Array added."
+msgstr "Done. Pad Array added."
-#: flatcamEditors/FlatCAMGrbEditor.py:738
+#: flatcamEditors/FlatCAMGrbEditor.py:744
msgid "Select shape(s) and then click ..."
msgstr "Select shape(s) and then click ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:749
-msgid "[ERROR_NOTCL] Failed. Nothing selected."
-msgstr "[ERROR_NOTCL] Failed. Nothing selected."
+#: flatcamEditors/FlatCAMGrbEditor.py:756
+#| msgid "[ERROR_NOTCL] Failed. Nothing selected."
+msgid "Failed. Nothing selected."
+msgstr "Failed. Nothing selected."
-#: flatcamEditors/FlatCAMGrbEditor.py:764
+#: flatcamEditors/FlatCAMGrbEditor.py:772
+#| msgid ""
+#| "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to "
+#| "the same aperture."
msgid ""
-"[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the "
-"same aperture."
+"Failed. Poligonize works only on geometries belonging to the same aperture."
msgstr ""
-"[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the "
-"same aperture."
+"Failed. Poligonize works only on geometries belonging to the same aperture."
-#: flatcamEditors/FlatCAMGrbEditor.py:817
-msgid "[success] Done. Poligonize completed."
-msgstr "[success] Done. Poligonize completed."
+#: flatcamEditors/FlatCAMGrbEditor.py:826
+#| msgid "[success] Done. Poligonize completed."
+msgid "Done. Poligonize completed."
+msgstr "Done. Poligonize completed."
-#: flatcamEditors/FlatCAMGrbEditor.py:870
-#: flatcamEditors/FlatCAMGrbEditor.py:1092
-#: flatcamEditors/FlatCAMGrbEditor.py:1116
+#: flatcamEditors/FlatCAMGrbEditor.py:879
+#: flatcamEditors/FlatCAMGrbEditor.py:1102
+#: flatcamEditors/FlatCAMGrbEditor.py:1126
msgid "Corner Mode 1: 45 degrees ..."
msgstr "Corner Mode 1: 45 degrees ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:872
+#: flatcamEditors/FlatCAMGrbEditor.py:881
msgid "Click on 1st point ..."
msgstr "Click on 1st point ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:882
-#: flatcamEditors/FlatCAMGrbEditor.py:1191
+#: flatcamEditors/FlatCAMGrbEditor.py:891
+#: flatcamEditors/FlatCAMGrbEditor.py:1202
msgid "Click on next Point or click Right mouse button to complete ..."
msgstr "Click on next Point or click Right mouse button to complete ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1080
-#: flatcamEditors/FlatCAMGrbEditor.py:1113
+#: flatcamEditors/FlatCAMGrbEditor.py:1090
+#: flatcamEditors/FlatCAMGrbEditor.py:1123
msgid "Corner Mode 2: Reverse 45 degrees ..."
msgstr "Corner Mode 2: Reverse 45 degrees ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1083
-#: flatcamEditors/FlatCAMGrbEditor.py:1110
+#: flatcamEditors/FlatCAMGrbEditor.py:1093
+#: flatcamEditors/FlatCAMGrbEditor.py:1120
msgid "Corner Mode 3: 90 degrees ..."
msgstr "Corner Mode 3: 90 degrees ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1086
-#: flatcamEditors/FlatCAMGrbEditor.py:1107
+#: flatcamEditors/FlatCAMGrbEditor.py:1096
+#: flatcamEditors/FlatCAMGrbEditor.py:1117
msgid "Corner Mode 4: Reverse 90 degrees ..."
msgstr "Corner Mode 4: Reverse 90 degrees ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1089
-#: flatcamEditors/FlatCAMGrbEditor.py:1104
+#: flatcamEditors/FlatCAMGrbEditor.py:1099
+#: flatcamEditors/FlatCAMGrbEditor.py:1114
msgid "Corner Mode 5: Free angle ..."
msgstr "Corner Mode 5: Free angle ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1143
-#: flatcamEditors/FlatCAMGrbEditor.py:1308
-#: flatcamEditors/FlatCAMGrbEditor.py:1347
+#: flatcamEditors/FlatCAMGrbEditor.py:1153
+#: flatcamEditors/FlatCAMGrbEditor.py:1319
+#: flatcamEditors/FlatCAMGrbEditor.py:1358
msgid "Track Mode 1: 45 degrees ..."
msgstr "Track Mode 1: 45 degrees ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1288
-#: flatcamEditors/FlatCAMGrbEditor.py:1342
+#: flatcamEditors/FlatCAMGrbEditor.py:1299
+#: flatcamEditors/FlatCAMGrbEditor.py:1353
msgid "Track Mode 2: Reverse 45 degrees ..."
msgstr "Track Mode 2: Reverse 45 degrees ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1293
-#: flatcamEditors/FlatCAMGrbEditor.py:1337
+#: flatcamEditors/FlatCAMGrbEditor.py:1304
+#: flatcamEditors/FlatCAMGrbEditor.py:1348
msgid "Track Mode 3: 90 degrees ..."
msgstr "Track Mode 3: 90 degrees ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1298
-#: flatcamEditors/FlatCAMGrbEditor.py:1332
+#: flatcamEditors/FlatCAMGrbEditor.py:1309
+#: flatcamEditors/FlatCAMGrbEditor.py:1343
msgid "Track Mode 4: Reverse 90 degrees ..."
msgstr "Track Mode 4: Reverse 90 degrees ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1303
-#: flatcamEditors/FlatCAMGrbEditor.py:1327
+#: flatcamEditors/FlatCAMGrbEditor.py:1314
+#: flatcamEditors/FlatCAMGrbEditor.py:1338
msgid "Track Mode 5: Free angle ..."
msgstr "Track Mode 5: Free angle ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1707
+#: flatcamEditors/FlatCAMGrbEditor.py:1720
msgid "Scale the selected Gerber apertures ..."
msgstr "Scale the selected Gerber apertures ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1749
+#: flatcamEditors/FlatCAMGrbEditor.py:1762
msgid "Buffer the selected apertures ..."
msgstr "Buffer the selected apertures ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1791
+#: flatcamEditors/FlatCAMGrbEditor.py:1804
msgid "Mark polygon areas in the edited Gerber ..."
msgstr "Mark polygon areas in the edited Gerber ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1838
-msgid "[WARNING_NOTCL] Nothing selected to move ..."
-msgstr "[WARNING_NOTCL] Nothing selected to move ..."
+#: flatcamEditors/FlatCAMGrbEditor.py:1852
+#| msgid "[WARNING_NOTCL] Nothing selected to move ..."
+msgid "Nothing selected to move"
+msgstr "Nothing selected to move"
-#: flatcamEditors/FlatCAMGrbEditor.py:1961
-msgid "[success] Done. Apertures Move completed."
-msgstr "[success] Done. Apertures Move completed."
+#: flatcamEditors/FlatCAMGrbEditor.py:1976
+#| msgid "[success] Done. Apertures Move completed."
+msgid "Done. Apertures Move completed."
+msgstr "Done. Apertures Move completed."
-#: flatcamEditors/FlatCAMGrbEditor.py:2037
-msgid "[success] Done. Apertures copied."
-msgstr "[success] Done. Apertures copied."
+#: flatcamEditors/FlatCAMGrbEditor.py:2053
+#| msgid "[success] Done. Apertures copied."
+msgid "Done. Apertures copied."
+msgstr "Done. Apertures copied."
-#: flatcamEditors/FlatCAMGrbEditor.py:2334 flatcamGUI/FlatCAMGUI.py:1668
-#: flatcamGUI/FlatCAMGUI.py:4564
+#: flatcamEditors/FlatCAMGrbEditor.py:2354 flatcamGUI/FlatCAMGUI.py:1686
+#: flatcamGUI/FlatCAMGUI.py:4629
msgid "Gerber Editor"
msgstr "Gerber Editor"
-#: flatcamEditors/FlatCAMGrbEditor.py:2354 flatcamGUI/ObjectUI.py:192
-#: flatcamTools/ToolProperties.py:132
+#: flatcamEditors/FlatCAMGrbEditor.py:2374 flatcamGUI/ObjectUI.py:192
+#: flatcamTools/ToolProperties.py:137
msgid "Apertures"
msgstr "Apertures"
-#: flatcamEditors/FlatCAMGrbEditor.py:2356 flatcamGUI/ObjectUI.py:194
+#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/ObjectUI.py:194
msgid "Apertures Table for the Gerber Object."
msgstr "Apertures Table for the Gerber Object."
-#: flatcamEditors/FlatCAMGrbEditor.py:2367
-#: flatcamEditors/FlatCAMGrbEditor.py:3794 flatcamGUI/ObjectUI.py:227
+#: flatcamEditors/FlatCAMGrbEditor.py:2387
+#: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
msgid "Code"
msgstr "Code"
-#: flatcamEditors/FlatCAMGrbEditor.py:2367
-#: flatcamEditors/FlatCAMGrbEditor.py:3794 flatcamGUI/ObjectUI.py:227
-#: flatcamGUI/ObjectUI.py:889 flatcamGUI/ObjectUI.py:1455
+#: flatcamEditors/FlatCAMGrbEditor.py:2387
+#: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
+#: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
msgid "Type"
msgstr "Type"
-#: flatcamEditors/FlatCAMGrbEditor.py:2367
-#: flatcamEditors/FlatCAMGrbEditor.py:3794 flatcamGUI/ObjectUI.py:227
+#: flatcamEditors/FlatCAMGrbEditor.py:2387
+#: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
msgid "Size"
msgstr "Size"
-#: flatcamEditors/FlatCAMGrbEditor.py:2367
-#: flatcamEditors/FlatCAMGrbEditor.py:3794 flatcamGUI/ObjectUI.py:227
+#: flatcamEditors/FlatCAMGrbEditor.py:2387
+#: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
msgid "Dim"
msgstr "Dim"
-#: flatcamEditors/FlatCAMGrbEditor.py:2371 flatcamGUI/ObjectUI.py:231
+#: flatcamEditors/FlatCAMGrbEditor.py:2391 flatcamGUI/ObjectUI.py:231
msgid "Index"
msgstr "Index"
-#: flatcamEditors/FlatCAMGrbEditor.py:2373
-#: flatcamEditors/FlatCAMGrbEditor.py:2400 flatcamGUI/ObjectUI.py:233
+#: flatcamEditors/FlatCAMGrbEditor.py:2393
+#: flatcamEditors/FlatCAMGrbEditor.py:2420 flatcamGUI/ObjectUI.py:233
msgid "Aperture Code"
msgstr "Aperture Code"
-#: flatcamEditors/FlatCAMGrbEditor.py:2375 flatcamGUI/ObjectUI.py:235
+#: flatcamEditors/FlatCAMGrbEditor.py:2395 flatcamGUI/ObjectUI.py:235
msgid "Type of aperture: circular, rectangle, macros etc"
msgstr "Type of aperture: circular, rectangle, macros etc"
-#: flatcamEditors/FlatCAMGrbEditor.py:2377 flatcamGUI/ObjectUI.py:237
+#: flatcamEditors/FlatCAMGrbEditor.py:2397 flatcamGUI/ObjectUI.py:237
msgid "Aperture Size:"
msgstr "Aperture Size:"
-#: flatcamEditors/FlatCAMGrbEditor.py:2379 flatcamGUI/ObjectUI.py:239
+#: flatcamEditors/FlatCAMGrbEditor.py:2399 flatcamGUI/ObjectUI.py:239
msgid ""
"Aperture Dimensions:\n"
" - (width, height) for R, O type.\n"
@@ -3670,15 +4267,15 @@ msgstr ""
" - (width, height) for R, O type.\n"
" - (dia, nVertices) for P type"
-#: flatcamEditors/FlatCAMGrbEditor.py:2402 flatcamGUI/FlatCAMGUI.py:4593
+#: flatcamEditors/FlatCAMGrbEditor.py:2422 flatcamGUI/FlatCAMGUI.py:4658
msgid "Code for the new aperture"
msgstr "Code for the new aperture"
-#: flatcamEditors/FlatCAMGrbEditor.py:2410
+#: flatcamEditors/FlatCAMGrbEditor.py:2430
msgid "Aperture Size"
msgstr "Aperture Size"
-#: flatcamEditors/FlatCAMGrbEditor.py:2412
+#: flatcamEditors/FlatCAMGrbEditor.py:2432
msgid ""
"Size for the new aperture.\n"
"If aperture type is 'R' or 'O' then\n"
@@ -3692,11 +4289,11 @@ msgstr ""
"calculated as:\n"
"sqrt(width**2 + height**2)"
-#: flatcamEditors/FlatCAMGrbEditor.py:2424
+#: flatcamEditors/FlatCAMGrbEditor.py:2444
msgid "Aperture Type"
msgstr "Aperture Type"
-#: flatcamEditors/FlatCAMGrbEditor.py:2426
+#: flatcamEditors/FlatCAMGrbEditor.py:2446
msgid ""
"Select the type of new aperture. Can be:\n"
"C = circular\n"
@@ -3708,11 +4305,11 @@ msgstr ""
"R = rectangular\n"
"O = oblong"
-#: flatcamEditors/FlatCAMGrbEditor.py:2437
+#: flatcamEditors/FlatCAMGrbEditor.py:2457
msgid "Aperture Dim"
msgstr "Aperture Dim"
-#: flatcamEditors/FlatCAMGrbEditor.py:2439
+#: flatcamEditors/FlatCAMGrbEditor.py:2459
msgid ""
"Dimensions for the new aperture.\n"
"Active only for rectangular apertures (type R).\n"
@@ -3722,39 +4319,41 @@ msgstr ""
"Active only for rectangular apertures (type R).\n"
"The format is (width, height)"
-#: flatcamEditors/FlatCAMGrbEditor.py:2448
-msgid "Add/Delete Aperture:"
-msgstr "Add/Delete Aperture:"
+#: flatcamEditors/FlatCAMGrbEditor.py:2468
+#| msgid "Add/Delete Aperture:"
+msgid "Add/Delete Aperture"
+msgstr "Add/Delete Aperture"
-#: flatcamEditors/FlatCAMGrbEditor.py:2450
+#: flatcamEditors/FlatCAMGrbEditor.py:2470
msgid "Add/Delete an aperture in the aperture table"
msgstr "Add/Delete an aperture in the aperture table"
-#: flatcamEditors/FlatCAMGrbEditor.py:2459
+#: flatcamEditors/FlatCAMGrbEditor.py:2479
msgid "Add a new aperture to the aperture list."
msgstr "Add a new aperture to the aperture list."
-#: flatcamEditors/FlatCAMGrbEditor.py:2464
+#: flatcamEditors/FlatCAMGrbEditor.py:2484
msgid "Delete a aperture in the aperture list"
msgstr "Delete a aperture in the aperture list"
-#: flatcamEditors/FlatCAMGrbEditor.py:2481
-msgid "Buffer Aperture:"
-msgstr "Buffer Aperture:"
+#: flatcamEditors/FlatCAMGrbEditor.py:2501
+#| msgid "Buffer Aperture:"
+msgid "Buffer Aperture"
+msgstr "Buffer Aperture"
-#: flatcamEditors/FlatCAMGrbEditor.py:2483
+#: flatcamEditors/FlatCAMGrbEditor.py:2503
msgid "Buffer a aperture in the aperture list"
msgstr "Buffer a aperture in the aperture list"
-#: flatcamEditors/FlatCAMGrbEditor.py:2493 flatcamGUI/FlatCAMGUI.py:4716
+#: flatcamEditors/FlatCAMGrbEditor.py:2513 flatcamGUI/FlatCAMGUI.py:4781
msgid "Buffer distance"
msgstr "Buffer distance"
-#: flatcamEditors/FlatCAMGrbEditor.py:2494
+#: flatcamEditors/FlatCAMGrbEditor.py:2514
msgid "Buffer corner"
msgstr "Buffer corner"
-#: flatcamEditors/FlatCAMGrbEditor.py:2496
+#: flatcamEditors/FlatCAMGrbEditor.py:2516
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded.\n"
@@ -3768,25 +4367,25 @@ msgstr ""
" - 'Beveled:' the corner is a line that directly connects the features "
"meeting in the corner"
-#: flatcamEditors/FlatCAMGrbEditor.py:2511 flatcamGUI/FlatCAMGUI.py:738
-#: flatcamGUI/FlatCAMGUI.py:1654 flatcamGUI/FlatCAMGUI.py:1681
-#: flatcamGUI/FlatCAMGUI.py:2060
+#: flatcamEditors/FlatCAMGrbEditor.py:2531 flatcamGUI/FlatCAMGUI.py:738
+#: flatcamGUI/FlatCAMGUI.py:1672 flatcamGUI/FlatCAMGUI.py:1699
+#: flatcamGUI/FlatCAMGUI.py:2085
msgid "Buffer"
msgstr "Buffer"
-#: flatcamEditors/FlatCAMGrbEditor.py:2526
+#: flatcamEditors/FlatCAMGrbEditor.py:2546
msgid "Scale Aperture"
msgstr "Scale Aperture"
-#: flatcamEditors/FlatCAMGrbEditor.py:2528
+#: flatcamEditors/FlatCAMGrbEditor.py:2548
msgid "Scale a aperture in the aperture list"
msgstr "Scale a aperture in the aperture list"
-#: flatcamEditors/FlatCAMGrbEditor.py:2536 flatcamGUI/FlatCAMGUI.py:4729
+#: flatcamEditors/FlatCAMGrbEditor.py:2556 flatcamGUI/FlatCAMGUI.py:4794
msgid "Scale factor"
msgstr "Scale factor"
-#: flatcamEditors/FlatCAMGrbEditor.py:2538
+#: flatcamEditors/FlatCAMGrbEditor.py:2558
msgid ""
"The factor by which to scale the selected aperture.\n"
"Values can be between 0.0000 and 999.9999"
@@ -3794,19 +4393,19 @@ msgstr ""
"The factor by which to scale the selected aperture.\n"
"Values can be between 0.0000 and 999.9999"
-#: flatcamEditors/FlatCAMGrbEditor.py:2564
+#: flatcamEditors/FlatCAMGrbEditor.py:2584
msgid "Mark polygon areas"
msgstr "Mark polygon areas"
-#: flatcamEditors/FlatCAMGrbEditor.py:2566
+#: flatcamEditors/FlatCAMGrbEditor.py:2586
msgid "Mark the polygon areas."
msgstr "Mark the polygon areas."
-#: flatcamEditors/FlatCAMGrbEditor.py:2574
+#: flatcamEditors/FlatCAMGrbEditor.py:2594
msgid "Area UPPER threshold"
msgstr "Area UPPER threshold"
-#: flatcamEditors/FlatCAMGrbEditor.py:2576
+#: flatcamEditors/FlatCAMGrbEditor.py:2596
msgid ""
"The threshold value, all areas less than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3814,11 +4413,11 @@ msgstr ""
"The threshold value, all areas less than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
-#: flatcamEditors/FlatCAMGrbEditor.py:2582
+#: flatcamEditors/FlatCAMGrbEditor.py:2602
msgid "Area LOWER threshold"
msgstr "Area LOWER threshold"
-#: flatcamEditors/FlatCAMGrbEditor.py:2584
+#: flatcamEditors/FlatCAMGrbEditor.py:2604
msgid ""
"The threshold value, all areas more than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3826,20 +4425,20 @@ msgstr ""
"The threshold value, all areas more than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
-#: flatcamEditors/FlatCAMGrbEditor.py:2597
+#: flatcamEditors/FlatCAMGrbEditor.py:2617
msgid "Go"
msgstr "Go"
-#: flatcamEditors/FlatCAMGrbEditor.py:2616 flatcamGUI/FlatCAMGUI.py:728
-#: flatcamGUI/FlatCAMGUI.py:2050
+#: flatcamEditors/FlatCAMGrbEditor.py:2636 flatcamGUI/FlatCAMGUI.py:728
+#: flatcamGUI/FlatCAMGUI.py:2075
msgid "Add Pad Array"
msgstr "Add Pad Array"
-#: flatcamEditors/FlatCAMGrbEditor.py:2618
+#: flatcamEditors/FlatCAMGrbEditor.py:2638
msgid "Add an array of pads (linear or circular array)"
msgstr "Add an array of pads (linear or circular array)"
-#: flatcamEditors/FlatCAMGrbEditor.py:2624
+#: flatcamEditors/FlatCAMGrbEditor.py:2644
msgid ""
"Select the type of pads array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -3847,149 +4446,177 @@ msgstr ""
"Select the type of pads array to create.\n"
"It can be Linear X(Y) or Circular"
-#: flatcamEditors/FlatCAMGrbEditor.py:2635 flatcamGUI/FlatCAMGUI.py:4628
+#: flatcamEditors/FlatCAMGrbEditor.py:2655 flatcamGUI/FlatCAMGUI.py:4693
msgid "Nr of pads"
msgstr "Nr of pads"
-#: flatcamEditors/FlatCAMGrbEditor.py:2637 flatcamGUI/FlatCAMGUI.py:4630
+#: flatcamEditors/FlatCAMGrbEditor.py:2657 flatcamGUI/FlatCAMGUI.py:4695
msgid "Specify how many pads to be in the array."
msgstr "Specify how many pads to be in the array."
-#: flatcamEditors/FlatCAMGrbEditor.py:2654
-#: flatcamEditors/FlatCAMGrbEditor.py:2699 flatcamGUI/FlatCAMGUI.py:5578
-msgid "Direction"
-msgstr "Direction"
+#: flatcamEditors/FlatCAMGrbEditor.py:3153
+#: flatcamEditors/FlatCAMGrbEditor.py:3157
+#| msgid ""
+#| "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it "
+#| "and retry."
+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."
-#: flatcamEditors/FlatCAMGrbEditor.py:2669 flatcamGUI/FlatCAMGUI.py:4666
-#: flatcamGUI/FlatCAMGUI.py:5646
-msgid "Pitch"
-msgstr "Pitch"
-
-#: flatcamEditors/FlatCAMGrbEditor.py:3132
-#: flatcamEditors/FlatCAMGrbEditor.py:3136
+#: flatcamEditors/FlatCAMGrbEditor.py:3193
+#| msgid ""
+#| "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add "
+#| "it in format (width, height) and retry."
msgid ""
-"[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and "
-"retry."
+"Aperture dimensions value is missing or wrong format. Add it in format "
+"(width, height) and retry."
msgstr ""
-"[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and "
-"retry."
+"Aperture dimensions value is missing or wrong format. Add it in format "
+"(width, height) and retry."
-#: flatcamEditors/FlatCAMGrbEditor.py:3172
-msgid ""
-"[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it "
-"in format (width, height) and retry."
-msgstr ""
-"[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it "
-"in format (width, height) and retry."
+#: flatcamEditors/FlatCAMGrbEditor.py:3206
+#| msgid ""
+#| "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it "
+#| "and retry."
+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."
-#: flatcamEditors/FlatCAMGrbEditor.py:3184
-msgid ""
-"[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and "
-"retry."
-msgstr ""
-"[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGrbEditor.py:3217
+#| msgid "[WARNING_NOTCL] Aperture already in the aperture table."
+msgid "Aperture already in the aperture table."
+msgstr "Aperture already in the aperture table."
-#: flatcamEditors/FlatCAMGrbEditor.py:3195
-msgid "[WARNING_NOTCL] Aperture already in the aperture table."
-msgstr "[WARNING_NOTCL] Aperture already in the aperture table."
+#: flatcamEditors/FlatCAMGrbEditor.py:3225
+#| msgid "[success] Added new aperture with code: {apid}"
+msgid "Added new aperture with code"
+msgstr "Added new aperture with code"
-#: flatcamEditors/FlatCAMGrbEditor.py:3202
-#, python-brace-format
-msgid "[success] Added new aperture with code: {apid}"
-msgstr "[success] Added new aperture with code: {apid}"
+#: flatcamEditors/FlatCAMGrbEditor.py:3254
+#| msgid "[WARNING_NOTCL] Select an aperture in Aperture Table"
+msgid " Select an aperture in Aperture Table"
+msgstr " Select an aperture in Aperture Table"
-#: flatcamEditors/FlatCAMGrbEditor.py:3230
-msgid "[WARNING_NOTCL] Select an aperture in Aperture Table"
-msgstr "[WARNING_NOTCL] Select an aperture in Aperture Table"
+#: flatcamEditors/FlatCAMGrbEditor.py:3261
+#| msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
+msgid "Select an aperture in Aperture Table -->"
+msgstr "Select an aperture in Aperture Table -->"
-#: flatcamEditors/FlatCAMGrbEditor.py:3236
-#, python-format
-msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
-msgstr "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
+#: flatcamEditors/FlatCAMGrbEditor.py:3285
+#| msgid "[success] Deleted aperture with code: {del_dia}"
+msgid "Deleted aperture with code"
+msgstr "Deleted aperture with code"
-#: flatcamEditors/FlatCAMGrbEditor.py:3259
-#, python-brace-format
-msgid "[success] Deleted aperture with code: {del_dia}"
-msgstr "[success] Deleted aperture with code: {del_dia}"
-
-#: flatcamEditors/FlatCAMGrbEditor.py:3723
+#: flatcamEditors/FlatCAMGrbEditor.py:3748
#, python-format
msgid "Adding aperture: %s geo ..."
msgstr "Adding aperture: %s geo ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:3911
+#: flatcamEditors/FlatCAMGrbEditor.py:3936
+#| msgid ""
+#| "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting "
+#| "Gerber creation."
msgid ""
-"[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber "
-"creation."
+"There are no Aperture definitions in the file. Aborting Gerber creation."
msgstr ""
-"[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber "
-"creation."
+"There are no Aperture definitions in the file. Aborting Gerber creation."
-#: flatcamEditors/FlatCAMGrbEditor.py:3919
+#: flatcamEditors/FlatCAMGrbEditor.py:3944
msgid "Creating Gerber."
msgstr "Creating Gerber."
-#: flatcamEditors/FlatCAMGrbEditor.py:3927
-msgid "[success] Gerber editing finished."
-msgstr "[success] Gerber editing finished."
+#: flatcamEditors/FlatCAMGrbEditor.py:3953
+#| msgid "[success] Gerber editing finished."
+msgid "Done. Gerber editing finished."
+msgstr "Done. Gerber editing finished."
-#: flatcamEditors/FlatCAMGrbEditor.py:3943
-msgid "[WARNING_NOTCL] Cancelled. No aperture is selected"
-msgstr "[WARNING_NOTCL] Cancelled. No aperture is selected"
+#: flatcamEditors/FlatCAMGrbEditor.py:3970
+#| msgid "[WARNING_NOTCL] Cancelled. No aperture is selected"
+msgid "Cancelled. No aperture is selected"
+msgstr "Cancelled. No aperture is selected"
-#: flatcamEditors/FlatCAMGrbEditor.py:4474
-msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected."
-msgstr "[ERROR_NOTCL] Failed. No aperture geometry is selected."
+#: flatcamEditors/FlatCAMGrbEditor.py:4505
+#| msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected."
+msgid "Failed. No aperture geometry is selected."
+msgstr "Failed. No aperture geometry is selected."
-#: flatcamEditors/FlatCAMGrbEditor.py:4482
-msgid "[success] Done. Apertures geometry deleted."
-msgstr "[success] Done. Apertures geometry deleted."
+#: flatcamEditors/FlatCAMGrbEditor.py:4514
+#| msgid "[success] Done. Apertures geometry deleted."
+msgid "Done. Apertures geometry deleted."
+msgstr "Done. Apertures geometry deleted."
-#: flatcamEditors/FlatCAMGrbEditor.py:4625
-msgid ""
-"[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try "
-"again."
-msgstr ""
-"[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try "
-"again."
+#: flatcamEditors/FlatCAMGrbEditor.py:4657
+#| msgid ""
+#| "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and "
+#| "try again."
+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."
-#: flatcamEditors/FlatCAMGrbEditor.py:4638
-#, python-format
-msgid ""
-"[ERROR_NOTCL] Failed.\n"
-"%s"
-msgstr ""
-"[ERROR_NOTCL] Failed.\n"
-"%s"
+#: flatcamEditors/FlatCAMGrbEditor.py:4670
+msgid "Failed."
+msgstr "Failed."
-#: flatcamEditors/FlatCAMGrbEditor.py:4655
-msgid ""
-"[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
-"retry."
-msgstr ""
-"[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGrbEditor.py:4689
+#| msgid ""
+#| "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
+#| "retry."
+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."
-#: flatcamEditors/FlatCAMGrbEditor.py:4688
-msgid ""
-"[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
-"again."
-msgstr ""
-"[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
-"again."
+#: flatcamEditors/FlatCAMGrbEditor.py:4721
+#| msgid ""
+#| "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and "
+#| "try again."
+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."
-#: flatcamEditors/FlatCAMGrbEditor.py:4704
-msgid "[success] Done. Scale Tool completed."
-msgstr "[success] Done. Scale Tool completed."
+#: flatcamEditors/FlatCAMGrbEditor.py:4737
+#| msgid "[success] Done. Scale Tool completed."
+msgid "Done. Scale Tool completed."
+msgstr "Done. Scale Tool completed."
-#: flatcamEditors/FlatCAMGrbEditor.py:4741
-msgid "[success] Polygon areas marked."
-msgstr "[success] Polygon areas marked."
+#: flatcamEditors/FlatCAMGrbEditor.py:4775
+#| msgid "[success] Polygon areas marked."
+msgid "Polygon areas marked."
+msgstr "Polygon areas marked."
-#: flatcamEditors/FlatCAMGrbEditor.py:4743
-msgid "[WARNING_NOTCL] There are no polygons to mark area."
-msgstr "[WARNING_NOTCL] There are no polygons to mark area."
+#: flatcamEditors/FlatCAMGrbEditor.py:4778
+#| msgid "[WARNING_NOTCL] There are no polygons to mark area."
+msgid "There are no polygons to mark area."
+msgstr "There are no polygons to mark area."
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5549
+#| msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
+msgid "Rotation action was not executed."
+msgstr "Rotation action was not executed."
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5688
+#| msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
+msgid "Skew action was not executed."
+msgstr "Skew action was not executed."
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5758
+#| msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
+msgid "Scale action was not executed."
+msgstr "Scale action was not executed."
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5807
+#| msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
+msgid "Offset action was not executed."
+msgstr "Offset action was not executed."
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5863
+#| msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
+msgid "Geometry shape offset Y cancelled"
+msgstr "Geometry shape offset Y cancelled"
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5880
+#| msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
+msgid "Geometry shape skew X cancelled"
+msgstr "Geometry shape skew X cancelled"
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5897
+#| msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
+msgid "Geometry shape skew Y cancelled"
+msgstr "Geometry shape skew Y cancelled"
#: flatcamGUI/FlatCAMGUI.py:52
msgid "&File"
@@ -4595,12 +5222,12 @@ msgstr "Generate CNC"
msgid "View Source"
msgstr "View Source"
-#: flatcamGUI/FlatCAMGUI.py:543 flatcamGUI/FlatCAMGUI.py:1702
+#: flatcamGUI/FlatCAMGUI.py:543 flatcamGUI/FlatCAMGUI.py:1720
msgid "Edit"
msgstr "Edit"
-#: flatcamGUI/FlatCAMGUI.py:549 flatcamGUI/FlatCAMGUI.py:1708
-#: flatcamTools/ToolProperties.py:25
+#: flatcamGUI/FlatCAMGUI.py:549 flatcamGUI/FlatCAMGUI.py:1726
+#: flatcamTools/ToolProperties.py:24
msgid "Properties"
msgstr "Properties"
@@ -4640,15 +5267,15 @@ msgstr "Gerber Editor Toolbar"
msgid "Grid Toolbar"
msgstr "Grid Toolbar"
-#: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1948
+#: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1973
msgid "Open project"
msgstr "Open project"
-#: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1949
+#: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1974
msgid "Save project"
msgstr "Save project"
-#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1952
+#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1977
msgid "New Blank Geometry"
msgstr "New Blank Geometry"
@@ -4656,175 +5283,175 @@ msgstr "New Blank Geometry"
msgid "New Blank Gerber"
msgstr "New Blank Gerber"
-#: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1953
+#: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1978
msgid "New Blank Excellon"
msgstr "New Blank Excellon"
-#: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1955
+#: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1980
msgid "Editor"
msgstr "Editor"
-#: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1957
+#: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1982
msgid "Save Object and close the Editor"
msgstr "Save Object and close the Editor"
-#: flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1961
+#: flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1986
msgid "&Delete"
msgstr "&Delete"
-#: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1964
+#: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1989
msgid "&Replot"
msgstr "&Replot"
-#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1965
+#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1990
msgid "&Clear plot"
msgstr "&Clear plot"
-#: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1966
+#: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1991
msgid "Zoom In"
msgstr "Zoom In"
-#: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1967
+#: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1992
msgid "Zoom Out"
msgstr "Zoom Out"
-#: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1639
-#: flatcamGUI/FlatCAMGUI.py:1968
+#: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1657
+#: flatcamGUI/FlatCAMGUI.py:1993
msgid "Zoom Fit"
msgstr "Zoom Fit"
-#: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1973
+#: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1998
msgid "&Command Line"
msgstr "&Command Line"
-#: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1976
+#: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:2001
msgid "2Sided Tool"
msgstr "2Sided Tool"
-#: flatcamGUI/FlatCAMGUI.py:659 flatcamGUI/FlatCAMGUI.py:1977
+#: flatcamGUI/FlatCAMGUI.py:659 flatcamGUI/FlatCAMGUI.py:2002
msgid "&Cutout Tool"
msgstr "&Cutout Tool"
-#: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:1978
-#: flatcamGUI/ObjectUI.py:390 flatcamTools/ToolNonCopperClear.py:437
+#: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:2003
+#: flatcamGUI/ObjectUI.py:452 flatcamTools/ToolNonCopperClear.py:531
msgid "NCC Tool"
msgstr "NCC Tool"
-#: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:1982
+#: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:2007
msgid "Panel Tool"
msgstr "Panel Tool"
-#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1983
+#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:2008
#: flatcamTools/ToolFilm.py:209
msgid "Film Tool"
msgstr "Film Tool"
-#: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:1985
+#: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:2010
#: flatcamTools/ToolSolderPaste.py:455
msgid "SolderPaste Tool"
msgstr "SolderPaste Tool"
-#: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:1986
+#: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:2011
#: flatcamTools/ToolSub.py:28
msgid "Substract Tool"
msgstr "Substract Tool"
-#: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1991
+#: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:2016
msgid "Calculators Tool"
msgstr "Calculators Tool"
#: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:692
-#: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:1995
-#: flatcamGUI/FlatCAMGUI.py:2048
+#: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:2020
+#: flatcamGUI/FlatCAMGUI.py:2073
msgid "Select"
msgstr "Select"
-#: flatcamGUI/FlatCAMGUI.py:676 flatcamGUI/FlatCAMGUI.py:1996
+#: flatcamGUI/FlatCAMGUI.py:676 flatcamGUI/FlatCAMGUI.py:2021
msgid "Add Drill Hole"
msgstr "Add Drill Hole"
-#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1998
+#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:2023
msgid "Add Drill Hole Array"
msgstr "Add Drill Hole Array"
-#: flatcamGUI/FlatCAMGUI.py:679 flatcamGUI/FlatCAMGUI.py:1694
-#: flatcamGUI/FlatCAMGUI.py:2000
+#: flatcamGUI/FlatCAMGUI.py:679 flatcamGUI/FlatCAMGUI.py:1712
+#: flatcamGUI/FlatCAMGUI.py:2025
msgid "Add Slot"
msgstr "Add Slot"
-#: flatcamGUI/FlatCAMGUI.py:681 flatcamGUI/FlatCAMGUI.py:1695
-#: flatcamGUI/FlatCAMGUI.py:2002
+#: flatcamGUI/FlatCAMGUI.py:681 flatcamGUI/FlatCAMGUI.py:1713
+#: flatcamGUI/FlatCAMGUI.py:2027
msgid "Add Slot Array"
msgstr "Add Slot Array"
-#: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1697
-#: flatcamGUI/FlatCAMGUI.py:1999
+#: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1715
+#: flatcamGUI/FlatCAMGUI.py:2024
msgid "Resize Drill"
msgstr "Resize Drill"
-#: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:2005
+#: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:2030
msgid "Copy Drill"
msgstr "Copy Drill"
-#: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:2007
+#: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:2032
msgid "Delete Drill"
msgstr "Delete Drill"
-#: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:2010
+#: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:2035
msgid "Move Drill"
msgstr "Move Drill"
-#: flatcamGUI/FlatCAMGUI.py:693 flatcamGUI/FlatCAMGUI.py:2014
+#: flatcamGUI/FlatCAMGUI.py:693 flatcamGUI/FlatCAMGUI.py:2039
msgid "Add Circle"
msgstr "Add Circle"
-#: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:2015
+#: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:2040
msgid "Add Arc"
msgstr "Add Arc"
-#: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:2017
+#: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:2042
msgid "Add Rectangle"
msgstr "Add Rectangle"
-#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2020
+#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2045
msgid "Add Path"
msgstr "Add Path"
-#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2022
+#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2047
msgid "Add Polygon"
msgstr "Add Polygon"
-#: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:2024
+#: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:2049
msgid "Add Text"
msgstr "Add Text"
-#: flatcamGUI/FlatCAMGUI.py:703 flatcamGUI/FlatCAMGUI.py:2025
+#: flatcamGUI/FlatCAMGUI.py:703 flatcamGUI/FlatCAMGUI.py:2050
msgid "Add Buffer"
msgstr "Add Buffer"
-#: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:2026
+#: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:2051
msgid "Paint Shape"
msgstr "Paint Shape"
#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:743
-#: flatcamGUI/FlatCAMGUI.py:1656 flatcamGUI/FlatCAMGUI.py:1684
-#: flatcamGUI/FlatCAMGUI.py:2027 flatcamGUI/FlatCAMGUI.py:2064
+#: flatcamGUI/FlatCAMGUI.py:1674 flatcamGUI/FlatCAMGUI.py:1702
+#: flatcamGUI/FlatCAMGUI.py:2052 flatcamGUI/FlatCAMGUI.py:2089
msgid "Eraser"
msgstr "Eraser"
-#: flatcamGUI/FlatCAMGUI.py:708 flatcamGUI/FlatCAMGUI.py:2030
+#: flatcamGUI/FlatCAMGUI.py:708 flatcamGUI/FlatCAMGUI.py:2055
msgid "Polygon Union"
msgstr "Polygon Union"
-#: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:2032
+#: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:2057
msgid "Polygon Intersection"
msgstr "Polygon Intersection"
-#: flatcamGUI/FlatCAMGUI.py:712 flatcamGUI/FlatCAMGUI.py:2034
+#: flatcamGUI/FlatCAMGUI.py:712 flatcamGUI/FlatCAMGUI.py:2059
msgid "Polygon Subtraction"
msgstr "Polygon Subtraction"
-#: flatcamGUI/FlatCAMGUI.py:715 flatcamGUI/FlatCAMGUI.py:2037
+#: flatcamGUI/FlatCAMGUI.py:715 flatcamGUI/FlatCAMGUI.py:2062
msgid "Cut Path"
msgstr "Cut Path"
@@ -4837,8 +5464,8 @@ msgid "Delete Shape '-'"
msgstr "Delete Shape '-'"
#: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:750
-#: flatcamGUI/FlatCAMGUI.py:1663 flatcamGUI/FlatCAMGUI.py:1688
-#: flatcamGUI/FlatCAMGUI.py:2042 flatcamGUI/FlatCAMGUI.py:2071
+#: flatcamGUI/FlatCAMGUI.py:1681 flatcamGUI/FlatCAMGUI.py:1706
+#: flatcamGUI/FlatCAMGUI.py:2067 flatcamGUI/FlatCAMGUI.py:2096
msgid "Transformations"
msgstr "Transformations"
@@ -4846,57 +5473,57 @@ msgstr "Transformations"
msgid "Move Objects "
msgstr "Move Objects "
-#: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2049
+#: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2074
msgid "Add Pad"
msgstr "Add Pad"
-#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:2051
+#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:2076
msgid "Add Track"
msgstr "Add Track"
-#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:2052
+#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:2077
msgid "Add Region"
msgstr "Add Region"
-#: flatcamGUI/FlatCAMGUI.py:732 flatcamGUI/FlatCAMGUI.py:1676
-#: flatcamGUI/FlatCAMGUI.py:2054
+#: flatcamGUI/FlatCAMGUI.py:732 flatcamGUI/FlatCAMGUI.py:1694
+#: flatcamGUI/FlatCAMGUI.py:2079
msgid "Poligonize"
msgstr "Poligonize"
-#: flatcamGUI/FlatCAMGUI.py:734 flatcamGUI/FlatCAMGUI.py:1677
-#: flatcamGUI/FlatCAMGUI.py:2056
+#: flatcamGUI/FlatCAMGUI.py:734 flatcamGUI/FlatCAMGUI.py:1695
+#: flatcamGUI/FlatCAMGUI.py:2081
msgid "SemiDisc"
msgstr "SemiDisc"
-#: flatcamGUI/FlatCAMGUI.py:735 flatcamGUI/FlatCAMGUI.py:1678
-#: flatcamGUI/FlatCAMGUI.py:2057
+#: flatcamGUI/FlatCAMGUI.py:735 flatcamGUI/FlatCAMGUI.py:1696
+#: flatcamGUI/FlatCAMGUI.py:2082
msgid "Disc"
msgstr "Disc"
-#: flatcamGUI/FlatCAMGUI.py:741 flatcamGUI/FlatCAMGUI.py:1683
-#: flatcamGUI/FlatCAMGUI.py:2063
+#: flatcamGUI/FlatCAMGUI.py:741 flatcamGUI/FlatCAMGUI.py:1701
+#: flatcamGUI/FlatCAMGUI.py:2088
msgid "Mark Area"
msgstr "Mark Area"
-#: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:1666
-#: flatcamGUI/FlatCAMGUI.py:1707 flatcamGUI/FlatCAMGUI.py:2073
+#: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:1684
+#: flatcamGUI/FlatCAMGUI.py:1725 flatcamGUI/FlatCAMGUI.py:2098
#: flatcamTools/ToolMove.py:26
msgid "Move"
msgstr "Move"
-#: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2079
+#: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2104
msgid "Snap to grid"
msgstr "Snap to grid"
-#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:2082
+#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:2107
msgid "Grid X snapping distance"
msgstr "Grid X snapping distance"
-#: flatcamGUI/FlatCAMGUI.py:766 flatcamGUI/FlatCAMGUI.py:2087
+#: flatcamGUI/FlatCAMGUI.py:766 flatcamGUI/FlatCAMGUI.py:2112
msgid "Grid Y snapping distance"
msgstr "Grid Y snapping distance"
-#: flatcamGUI/FlatCAMGUI.py:772 flatcamGUI/FlatCAMGUI.py:2093
+#: flatcamGUI/FlatCAMGUI.py:772 flatcamGUI/FlatCAMGUI.py:2118
msgid ""
"When active, value on Grid_X\n"
"is copied to the Grid_Y value."
@@ -4904,16 +5531,16 @@ msgstr ""
"When active, value on Grid_X\n"
"is copied to the Grid_Y value."
-#: flatcamGUI/FlatCAMGUI.py:778 flatcamGUI/FlatCAMGUI.py:2099
+#: flatcamGUI/FlatCAMGUI.py:778 flatcamGUI/FlatCAMGUI.py:2124
msgid "Snap to corner"
msgstr "Snap to corner"
-#: flatcamGUI/FlatCAMGUI.py:782 flatcamGUI/FlatCAMGUI.py:2103
-#: flatcamGUI/FlatCAMGUI.py:3524
+#: flatcamGUI/FlatCAMGUI.py:782 flatcamGUI/FlatCAMGUI.py:2128
+#: flatcamGUI/FlatCAMGUI.py:3575
msgid "Max. magnet distance"
msgstr "Max. magnet distance"
-#: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:1633
+#: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:1651
msgid "Project"
msgstr "Project"
@@ -4953,15 +5580,19 @@ msgstr "GEOMETRY"
msgid "CNC-JOB"
msgstr "CNC-JOB"
-#: flatcamGUI/FlatCAMGUI.py:933
+#: flatcamGUI/FlatCAMGUI.py:933 flatcamGUI/ObjectUI.py:441
msgid "TOOLS"
msgstr "TOOLS"
-#: flatcamGUI/FlatCAMGUI.py:950
+#: flatcamGUI/FlatCAMGUI.py:943
+msgid "FILE ASSOCIATIONS"
+msgstr "FILE ASSOCIATIONS"
+
+#: flatcamGUI/FlatCAMGUI.py:960
msgid "Import Preferences"
msgstr "Import Preferences"
-#: flatcamGUI/FlatCAMGUI.py:953
+#: flatcamGUI/FlatCAMGUI.py:963
msgid ""
"Import a full set of FlatCAM settings from a file\n"
"previously saved on HDD.\n"
@@ -4975,11 +5606,11 @@ msgstr ""
"FlatCAM automatically save a 'factory_defaults' file\n"
"on the first start. Do not delete that file."
-#: flatcamGUI/FlatCAMGUI.py:960
+#: flatcamGUI/FlatCAMGUI.py:970
msgid "Export Preferences"
msgstr "Export Preferences"
-#: flatcamGUI/FlatCAMGUI.py:963
+#: flatcamGUI/FlatCAMGUI.py:973
msgid ""
"Export a full set of FlatCAM settings in a file\n"
"that is saved on HDD."
@@ -4987,15 +5618,15 @@ msgstr ""
"Export a full set of FlatCAM settings in a file\n"
"that is saved on HDD."
-#: flatcamGUI/FlatCAMGUI.py:968
+#: flatcamGUI/FlatCAMGUI.py:978
msgid "Open Pref Folder"
msgstr "Open Pref Folder"
-#: flatcamGUI/FlatCAMGUI.py:971
+#: flatcamGUI/FlatCAMGUI.py:981
msgid "Open the folder where FlatCAM save the preferences files."
msgstr "Open the folder where FlatCAM save the preferences files."
-#: flatcamGUI/FlatCAMGUI.py:982
+#: flatcamGUI/FlatCAMGUI.py:992
msgid ""
"Save the current settings in the 'current_defaults' file\n"
"which is the file storing the working default preferences."
@@ -5003,7 +5634,290 @@ msgstr ""
"Save the current settings in the 'current_defaults' file\n"
"which is the file storing the working default preferences."
-#: flatcamGUI/FlatCAMGUI.py:1008
+#: flatcamGUI/FlatCAMGUI.py:1018
+#| msgid ""
+#| "General Shortcut list
\n"
+#| " \n"
+#| " \n"
+#| " \n"
+#| " | F3"
+#| "strong> | \n"
+#| " SHOW SHORTCUT LIST | \n"
+#| "
\n"
+#| " \n"
+#| " | | \n"
+#| " | \n"
+#| "
\n"
+#| " \n"
+#| " | 1 | \n"
+#| " Switch to Project Tab | \n"
+#| "
\n"
+#| " \n"
+#| " | 2 | \n"
+#| " Switch to Selected Tab | \n"
+#| "
\n"
+#| " \n"
+#| " | 3 | \n"
+#| " Switch to Tool Tab | \n"
+#| "
\n"
+#| " \n"
+#| " | | \n"
+#| " | \n"
+#| "
\n"
+#| " \n"
+#| " | B | \n"
+#| " New Gerber | \n"
+#| "
\n"
+#| " \n"
+#| " | E | \n"
+#| " Edit Object (if selected) | \n"
+#| "
\n"
+#| " \n"
+#| " | G | \n"
+#| " Grid On/Off | \n"
+#| "
\n"
+#| " \n"
+#| " | J | \n"
+#| " Jump to Coordinates | \n"
+#| "
\n"
+#| " \n"
+#| " | L | \n"
+#| " New Excellon | \n"
+#| "
\n"
+#| " \n"
+#| " | M | \n"
+#| " Move Obj | \n"
+#| "
\n"
+#| " \n"
+#| " | N | \n"
+#| " New Geometry | \n"
+#| "
\n"
+#| " \n"
+#| " | O | \n"
+#| " Set Origin | \n"
+#| "
\n"
+#| " \n"
+#| " | Q | \n"
+#| " Change Units | \n"
+#| "
\n"
+#| " \n"
+#| " | P | \n"
+#| " Open Properties Tool | \n"
+#| "
\n"
+#| " \n"
+#| " | R | \n"
+#| " Rotate by 90 degree CW | \n"
+#| "
\n"
+#| " \n"
+#| " | S | \n"
+#| " Shell Toggle | \n"
+#| "
\n"
+#| " \n"
+#| " | T | \n"
+#| " Add a Tool (when in Geometry Selected "
+#| "Tab or in Tools NCC or Tools Paint) | \n"
+#| "
\n"
+#| " \n"
+#| " | V | \n"
+#| " Zoom Fit | \n"
+#| "
\n"
+#| " \n"
+#| " | X | \n"
+#| " Flip on X_axis | \n"
+#| "
\n"
+#| " \n"
+#| " | Y | \n"
+#| " Flip on Y_axis | \n"
+#| "
\n"
+#| " \n"
+#| " | '-'"
+#| "td>\n"
+#| " | Zoom Out | \n"
+#| "
\n"
+#| " \n"
+#| " | '='"
+#| "td>\n"
+#| " | Zoom In | \n"
+#| "
\n"
+#| " \n"
+#| " | | \n"
+#| " | \n"
+#| "
\n"
+#| " \n"
+#| " | CTRL+A | \n"
+#| " Select All | \n"
+#| "
\n"
+#| " \n"
+#| " | CTRL+C | \n"
+#| " Copy Obj | \n"
+#| "
\n"
+#| " \n"
+#| " | CTRL+E | \n"
+#| " Open Excellon File | \n"
+#| "
\n"
+#| " \n"
+#| " | CTRL+G | \n"
+#| " Open Gerber File | \n"
+#| "
\n"
+#| " \n"
+#| " | CTRL+N | \n"
+#| " New Project | \n"
+#| "
\n"
+#| " \n"
+#| " | CTRL+M | \n"
+#| " Measurement Tool | \n"
+#| "
\n"
+#| " \n"
+#| " | CTRL+O | \n"
+#| " Open Project | \n"
+#| "
\n"
+#| " \n"
+#| " | CTRL+S | \n"
+#| " Save Project As | \n"
+#| "
\n"
+#| " \n"
+#| " | CTRL+F10 | \n"
+#| " Toggle Plot Area | \n"
+#| "
\n"
+#| " \n"
+#| " | | \n"
+#| " | \n"
+#| "
\n"
+#| " \n"
+#| " | SHIFT+C | \n"
+#| " Copy Obj_Name | \n"
+#| "
\n"
+#| " \n"
+#| " | SHIFT+E | \n"
+#| " Toggle Code Editor | \n"
+#| "
\n"
+#| " \n"
+#| " | SHIFT+G | \n"
+#| " Toggle the axis | \n"
+#| "
\n"
+#| " \n"
+#| " | SHIFT+P | \n"
+#| " Open Preferences Window | \n"
+#| "
\n"
+#| " \n"
+#| " | SHIFT+R | \n"
+#| " Rotate by 90 degree CCW | \n"
+#| "
\n"
+#| " \n"
+#| " | SHIFT+S | \n"
+#| " Run a Script | \n"
+#| "
\n"
+#| " \n"
+#| " | SHIFT+W | \n"
+#| " Toggle the workspace | \n"
+#| "
\n"
+#| " \n"
+#| " | SHIFT+X | \n"
+#| " Skew on X axis | \n"
+#| "
\n"
+#| " \n"
+#| " | SHIFT+Y | \n"
+#| " Skew on Y axis | \n"
+#| "
\n"
+#| " \n"
+#| " | | \n"
+#| " | \n"
+#| "
\n"
+#| " \n"
+#| " | ALT+C | \n"
+#| " Calculators Tool | \n"
+#| "
\n"
+#| " \n"
+#| " | ALT+D | \n"
+#| " 2-Sided PCB Tool | \n"
+#| "
\n"
+#| " \n"
+#| " | ALT+K | \n"
+#| " Solder Paste Dispensing Tool | \n"
+#| "
\n"
+#| " \n"
+#| " | ALT+L | \n"
+#| " Film PCB Tool | \n"
+#| "
\n"
+#| " \n"
+#| " | ALT+N | \n"
+#| " Non-Copper Clearing Tool | \n"
+#| "
\n"
+#| " \n"
+#| " | ALT+P | \n"
+#| " Paint Area Tool | \n"
+#| "
\n"
+#| " \n"
+#| " | ALT+Q | \n"
+#| " PDF Import Tool | \n"
+#| "
\n"
+#| " \n"
+#| " | ALT+R | \n"
+#| " Transformations Tool | \n"
+#| "
\n"
+#| " \n"
+#| " | ALT+S | \n"
+#| " View File Source | \n"
+#| "
\n"
+#| " \n"
+#| " | ALT+U | \n"
+#| " Cutout PCB Tool | \n"
+#| "
\n"
+#| " \n"
+#| " | ALT+1 | \n"
+#| " Enable all Plots | \n"
+#| "
\n"
+#| " \n"
+#| " | ALT+2 | \n"
+#| " Disable all Plots | \n"
+#| "
\n"
+#| " \n"
+#| " | ALT+3 | \n"
+#| " Disable Non-selected Plots | \n"
+#| "
\n"
+#| " \n"
+#| " | ALT+F10 | \n"
+#| " Toggle Full Screen | \n"
+#| "
\n"
+#| " \n"
+#| " | | \n"
+#| " | \n"
+#| "
\n"
+#| " \n"
+#| " | F1 | \n"
+#| " Open Online Manual | \n"
+#| "
\n"
+#| " \n"
+#| " | F4 | \n"
+#| " Open Online Tutorials | \n"
+#| "
\n"
+#| " \n"
+#| " | Del | \n"
+#| " Delete Object | \n"
+#| "
\n"
+#| " \n"
+#| " | Del | \n"
+#| " Alternate: Delete Tool | \n"
+#| "
\n"
+#| " \n"
+#| " | '`' | \n"
+#| " (left to Key_1)Toogle Notebook Area "
+#| "(Left Side) | \n"
+#| "
\n"
+#| " \n"
+#| " | SPACE | \n"
+#| " En(Dis)able Obj Plot | \n"
+#| "
\n"
+#| " \n"
+#| " | Escape | \n"
+#| " Deselects all objects | \n"
+#| "
\n"
+#| " \n"
+#| "
\n"
+#| " \n"
+#| " "
msgid ""
"General Shortcut list
\n"
" \n"
" | ALT+F10 | \n"
" Toggle Full Screen | \n"
+" \n"
+" \n"
+" | | \n"
+" | \n"
"
\n"
" \n"
+" | CTRL+ALT+X | \n"
+" Abort current task (gracefully) | \n"
+"
\n"
+" \n"
" | | \n"
" | \n"
"
\n"
@@ -5528,8 +6450,16 @@ msgstr ""
" \n"
" | ALT+F10 | \n"
" Toggle Full Screen | \n"
+"
\n"
+" \n"
+" | | \n"
+" | \n"
"
\n"
" \n"
+" | CTRL+ALT+X | \n"
+" Abort current task (gracefully) | \n"
+"
\n"
+" \n"
" | | \n"
" | \n"
"
\n"
@@ -5567,7 +6497,7 @@ msgstr ""
" \n"
" "
-#: flatcamGUI/FlatCAMGUI.py:1293
+#: flatcamGUI/FlatCAMGUI.py:1311
msgid ""
"Editor Shortcut list
\n"
"
\n"
@@ -6239,133 +7169,133 @@ msgstr ""
"
\n"
" "
-#: flatcamGUI/FlatCAMGUI.py:1624
+#: flatcamGUI/FlatCAMGUI.py:1642
msgid "Toggle Visibility"
msgstr "Toggle Visibility"
-#: flatcamGUI/FlatCAMGUI.py:1625
+#: flatcamGUI/FlatCAMGUI.py:1643
msgid "Toggle Panel"
msgstr "Toggle Panel"
-#: flatcamGUI/FlatCAMGUI.py:1628
+#: flatcamGUI/FlatCAMGUI.py:1646
msgid "New"
msgstr "New"
-#: flatcamGUI/FlatCAMGUI.py:1629
+#: flatcamGUI/FlatCAMGUI.py:1647
msgid "Geometry"
msgstr "Geometry"
-#: flatcamGUI/FlatCAMGUI.py:1631
+#: flatcamGUI/FlatCAMGUI.py:1649
msgid "Excellon"
msgstr "Excellon"
-#: flatcamGUI/FlatCAMGUI.py:1636
+#: flatcamGUI/FlatCAMGUI.py:1654
msgid "Grids"
msgstr "Grids"
-#: flatcamGUI/FlatCAMGUI.py:1638
+#: flatcamGUI/FlatCAMGUI.py:1656
msgid "View"
msgstr "View"
-#: flatcamGUI/FlatCAMGUI.py:1640
+#: flatcamGUI/FlatCAMGUI.py:1658
msgid "Clear Plot"
msgstr "Clear Plot"
-#: flatcamGUI/FlatCAMGUI.py:1641
+#: flatcamGUI/FlatCAMGUI.py:1659
msgid "Replot"
msgstr "Replot"
-#: flatcamGUI/FlatCAMGUI.py:1644
+#: flatcamGUI/FlatCAMGUI.py:1662
msgid "Geo Editor"
msgstr "Geo Editor"
-#: flatcamGUI/FlatCAMGUI.py:1645
+#: flatcamGUI/FlatCAMGUI.py:1663
msgid "Path"
msgstr "Path"
-#: flatcamGUI/FlatCAMGUI.py:1646
+#: flatcamGUI/FlatCAMGUI.py:1664
msgid "Rectangle"
msgstr "Rectangle"
-#: flatcamGUI/FlatCAMGUI.py:1648
+#: flatcamGUI/FlatCAMGUI.py:1666
msgid "Circle"
msgstr "Circle"
-#: flatcamGUI/FlatCAMGUI.py:1649
+#: flatcamGUI/FlatCAMGUI.py:1667
msgid "Polygon"
msgstr "Polygon"
-#: flatcamGUI/FlatCAMGUI.py:1650
+#: flatcamGUI/FlatCAMGUI.py:1668
msgid "Arc"
msgstr "Arc"
-#: flatcamGUI/FlatCAMGUI.py:1653
+#: flatcamGUI/FlatCAMGUI.py:1671
msgid "Text"
msgstr "Text"
-#: flatcamGUI/FlatCAMGUI.py:1659
+#: flatcamGUI/FlatCAMGUI.py:1677
msgid "Union"
msgstr "Union"
-#: flatcamGUI/FlatCAMGUI.py:1660
+#: flatcamGUI/FlatCAMGUI.py:1678
msgid "Intersection"
msgstr "Intersection"
-#: flatcamGUI/FlatCAMGUI.py:1661
+#: flatcamGUI/FlatCAMGUI.py:1679
msgid "Substraction"
msgstr "Substraction"
-#: flatcamGUI/FlatCAMGUI.py:1662 flatcamGUI/FlatCAMGUI.py:6110
-#: flatcamGUI/ObjectUI.py:1346
+#: flatcamGUI/FlatCAMGUI.py:1680 flatcamGUI/FlatCAMGUI.py:6175
+#: flatcamGUI/ObjectUI.py:1409
msgid "Cut"
msgstr "Cut"
-#: flatcamGUI/FlatCAMGUI.py:1669
+#: flatcamGUI/FlatCAMGUI.py:1687
msgid "Pad"
msgstr "Pad"
-#: flatcamGUI/FlatCAMGUI.py:1670
+#: flatcamGUI/FlatCAMGUI.py:1688
msgid "Pad Array"
msgstr "Pad Array"
-#: flatcamGUI/FlatCAMGUI.py:1673
+#: flatcamGUI/FlatCAMGUI.py:1691
msgid "Track"
msgstr "Track"
-#: flatcamGUI/FlatCAMGUI.py:1674
+#: flatcamGUI/FlatCAMGUI.py:1692
msgid "Region"
msgstr "Region"
-#: flatcamGUI/FlatCAMGUI.py:1690
+#: flatcamGUI/FlatCAMGUI.py:1708
msgid "Exc Editor"
msgstr "Exc Editor"
-#: flatcamGUI/FlatCAMGUI.py:1691
+#: flatcamGUI/FlatCAMGUI.py:1709
msgid "Add Drill"
msgstr "Add Drill"
-#: flatcamGUI/FlatCAMGUI.py:1727
+#: flatcamGUI/FlatCAMGUI.py:1745
msgid "Print Preview"
msgstr "Print Preview"
-#: flatcamGUI/FlatCAMGUI.py:1728
+#: flatcamGUI/FlatCAMGUI.py:1746
msgid "Print Code"
msgstr "Print Code"
-#: flatcamGUI/FlatCAMGUI.py:1729
+#: flatcamGUI/FlatCAMGUI.py:1747
msgid "Find in Code"
msgstr "Find in Code"
-#: flatcamGUI/FlatCAMGUI.py:1734
+#: flatcamGUI/FlatCAMGUI.py:1752
msgid "Replace With"
msgstr "Replace With"
-#: flatcamGUI/FlatCAMGUI.py:1738 flatcamGUI/FlatCAMGUI.py:6108
-#: flatcamGUI/FlatCAMGUI.py:6792 flatcamGUI/ObjectUI.py:1344
+#: flatcamGUI/FlatCAMGUI.py:1756 flatcamGUI/FlatCAMGUI.py:6173
+#: flatcamGUI/FlatCAMGUI.py:6966 flatcamGUI/ObjectUI.py:1407
msgid "All"
msgstr "All"
-#: flatcamGUI/FlatCAMGUI.py:1740
+#: flatcamGUI/FlatCAMGUI.py:1758
msgid ""
"When checked it will replace all instances in the 'Find' box\n"
"with the text in the 'Replace' box.."
@@ -6373,15 +7303,15 @@ msgstr ""
"When checked it will replace all instances in the 'Find' box\n"
"with the text in the 'Replace' box.."
-#: flatcamGUI/FlatCAMGUI.py:1743
+#: flatcamGUI/FlatCAMGUI.py:1761
msgid "Open Code"
msgstr "Open Code"
-#: flatcamGUI/FlatCAMGUI.py:1744
+#: flatcamGUI/FlatCAMGUI.py:1762
msgid "Save Code"
msgstr "Save Code"
-#: flatcamGUI/FlatCAMGUI.py:1779
+#: flatcamGUI/FlatCAMGUI.py:1797
msgid ""
"Relative neasurement.\n"
"Reference is last click position"
@@ -6389,7 +7319,7 @@ msgstr ""
"Relative neasurement.\n"
"Reference is last click position"
-#: flatcamGUI/FlatCAMGUI.py:1785
+#: flatcamGUI/FlatCAMGUI.py:1803
msgid ""
"Absolute neasurement.\n"
"Reference is (X=0, Y= 0) position"
@@ -6397,27 +7327,27 @@ msgstr ""
"Absolute neasurement.\n"
"Reference is (X=0, Y= 0) position"
-#: flatcamGUI/FlatCAMGUI.py:1909
+#: flatcamGUI/FlatCAMGUI.py:1933
msgid "Lock Toolbars"
msgstr "Lock Toolbars"
-#: flatcamGUI/FlatCAMGUI.py:2013
+#: flatcamGUI/FlatCAMGUI.py:2038
msgid "Select 'Esc'"
msgstr "Select 'Esc'"
-#: flatcamGUI/FlatCAMGUI.py:2038
+#: flatcamGUI/FlatCAMGUI.py:2063
msgid "Copy Objects"
msgstr "Copy Objects"
-#: flatcamGUI/FlatCAMGUI.py:2040
+#: flatcamGUI/FlatCAMGUI.py:2065
msgid "Delete Shape"
msgstr "Delete Shape"
-#: flatcamGUI/FlatCAMGUI.py:2045
+#: flatcamGUI/FlatCAMGUI.py:2070
msgid "Move Objects"
msgstr "Move Objects"
-#: flatcamGUI/FlatCAMGUI.py:2476
+#: flatcamGUI/FlatCAMGUI.py:2506
msgid ""
"Please first select a geometry item to be cutted\n"
"then select the geometry item that will be cutted\n"
@@ -6429,17 +7359,21 @@ msgstr ""
"out of the first item. In the end press ~X~ key or\n"
"the toolbar button."
-#: flatcamGUI/FlatCAMGUI.py:2483 flatcamGUI/FlatCAMGUI.py:2620
-#: flatcamGUI/FlatCAMGUI.py:2679 flatcamGUI/FlatCAMGUI.py:2699
+#: flatcamGUI/FlatCAMGUI.py:2513 flatcamGUI/FlatCAMGUI.py:2650
+#: flatcamGUI/FlatCAMGUI.py:2709 flatcamGUI/FlatCAMGUI.py:2729
msgid "Warning"
msgstr "Warning"
-#: flatcamGUI/FlatCAMGUI.py:2550 flatcamGUI/FlatCAMGUI.py:2758
-#: flatcamGUI/FlatCAMGUI.py:2969
+#: flatcamGUI/FlatCAMGUI.py:2560 flatcamGUI/FlatCAMGUI.py:2572
+msgid "[success] Done."
+msgstr "[success] Done."
+
+#: flatcamGUI/FlatCAMGUI.py:2580 flatcamGUI/FlatCAMGUI.py:2788
+#: flatcamGUI/FlatCAMGUI.py:2999
msgid "[WARNING_NOTCL] Cancelled."
msgstr "[WARNING_NOTCL] Cancelled."
-#: flatcamGUI/FlatCAMGUI.py:2615
+#: flatcamGUI/FlatCAMGUI.py:2645
msgid ""
"Please select geometry items \n"
"on which to perform Intersection Tool."
@@ -6447,7 +7381,7 @@ msgstr ""
"Please select geometry items \n"
"on which to perform Intersection Tool."
-#: flatcamGUI/FlatCAMGUI.py:2674
+#: flatcamGUI/FlatCAMGUI.py:2704
msgid ""
"Please select geometry items \n"
"on which to perform Substraction Tool."
@@ -6455,7 +7389,7 @@ msgstr ""
"Please select geometry items \n"
"on which to perform Substraction Tool."
-#: flatcamGUI/FlatCAMGUI.py:2694
+#: flatcamGUI/FlatCAMGUI.py:2724
msgid ""
"Please select geometry items \n"
"on which to perform union."
@@ -6463,59 +7397,73 @@ msgstr ""
"Please select geometry items \n"
"on which to perform union."
-#: flatcamGUI/FlatCAMGUI.py:2774 flatcamGUI/FlatCAMGUI.py:2986
+#: flatcamGUI/FlatCAMGUI.py:2804 flatcamGUI/FlatCAMGUI.py:3016
msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
-#: flatcamGUI/FlatCAMGUI.py:2858 flatcamGUI/FlatCAMGUI.py:3053
+#: flatcamGUI/FlatCAMGUI.py:2888 flatcamGUI/FlatCAMGUI.py:3083
msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
-#: flatcamGUI/FlatCAMGUI.py:2904 flatcamGUI/FlatCAMGUI.py:3099
+#: flatcamGUI/FlatCAMGUI.py:2934 flatcamGUI/FlatCAMGUI.py:3129
msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to move."
-#: flatcamGUI/FlatCAMGUI.py:3125
+#: flatcamGUI/FlatCAMGUI.py:3155
msgid "New Tool ..."
msgstr "New Tool ..."
-#: flatcamGUI/FlatCAMGUI.py:3126
-msgid "Enter a Tool Diameter:"
-msgstr "Enter a Tool Diameter:"
+#: flatcamGUI/FlatCAMGUI.py:3156
+#| msgid "Enter a Tool Diameter:"
+msgid "Enter a Tool Diameter"
+msgstr "Enter a Tool Diameter"
-#: flatcamGUI/FlatCAMGUI.py:3181
+#: flatcamGUI/FlatCAMGUI.py:3164
+#, python-brace-format
+msgid "[success] Added new tool with dia: {dia} {units}"
+msgstr "[success] Added new tool with dia: {dia} {units}"
+
+#: flatcamGUI/FlatCAMGUI.py:3211
msgid "Measurement Tool exit..."
msgstr "Measurement Tool exit..."
-#: flatcamGUI/FlatCAMGUI.py:3503
+#: flatcamGUI/FlatCAMGUI.py:3312
+msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
+msgstr "[WARNING_NOTCL] Application is saving the project. Please wait ..."
+
+#: flatcamGUI/FlatCAMGUI.py:3554
msgid "GUI Preferences"
msgstr "GUI Preferences"
-#: flatcamGUI/FlatCAMGUI.py:3509
-msgid "Grid X value:"
-msgstr "Grid X value:"
+#: flatcamGUI/FlatCAMGUI.py:3560
+#| msgid "Grid X value:"
+msgid "Grid X value"
+msgstr "Grid X value"
-#: flatcamGUI/FlatCAMGUI.py:3511
+#: flatcamGUI/FlatCAMGUI.py:3562
msgid "This is the Grid snap value on X axis."
msgstr "This is the Grid snap value on X axis."
-#: flatcamGUI/FlatCAMGUI.py:3516
-msgid "Grid Y value:"
-msgstr "Grid Y value:"
+#: flatcamGUI/FlatCAMGUI.py:3567
+#| msgid "Grid Y value:"
+msgid "Grid Y value"
+msgstr "Grid Y value"
-#: flatcamGUI/FlatCAMGUI.py:3518
+#: flatcamGUI/FlatCAMGUI.py:3569
msgid "This is the Grid snap value on Y axis."
msgstr "This is the Grid snap value on Y axis."
-#: flatcamGUI/FlatCAMGUI.py:3523
-msgid "Snap Max:"
-msgstr "Snap Max:"
+#: flatcamGUI/FlatCAMGUI.py:3574
+#| msgid "Snap Max:"
+msgid "Snap Max"
+msgstr "Snap Max"
-#: flatcamGUI/FlatCAMGUI.py:3528
-msgid "Workspace:"
-msgstr "Workspace:"
+#: flatcamGUI/FlatCAMGUI.py:3579
+#| msgid "Workspace:"
+msgid "Workspace"
+msgstr "Workspace"
-#: flatcamGUI/FlatCAMGUI.py:3530
+#: flatcamGUI/FlatCAMGUI.py:3581
msgid ""
"Draw a delimiting rectangle on canvas.\n"
"The purpose is to illustrate the limits for our work."
@@ -6523,11 +7471,12 @@ msgstr ""
"Draw a delimiting rectangle on canvas.\n"
"The purpose is to illustrate the limits for our work."
-#: flatcamGUI/FlatCAMGUI.py:3533
-msgid "Wk. format:"
-msgstr "Wk. format:"
+#: flatcamGUI/FlatCAMGUI.py:3584
+#| msgid "Wk. format:"
+msgid "Wk. format"
+msgstr "Wk. format"
-#: flatcamGUI/FlatCAMGUI.py:3535
+#: flatcamGUI/FlatCAMGUI.py:3586
msgid ""
"Select the type of rectangle to be used on canvas,\n"
"as valid workspace."
@@ -6535,11 +7484,12 @@ msgstr ""
"Select the type of rectangle to be used on canvas,\n"
"as valid workspace."
-#: flatcamGUI/FlatCAMGUI.py:3548
-msgid "Plot Fill:"
-msgstr "Plot Fill:"
+#: flatcamGUI/FlatCAMGUI.py:3599
+#| msgid "Plot Fill:"
+msgid "Plot Fill"
+msgstr "Plot Fill"
-#: flatcamGUI/FlatCAMGUI.py:3550
+#: flatcamGUI/FlatCAMGUI.py:3601
msgid ""
"Set the fill color for plotted objects.\n"
"First 6 digits are the color and the last 2\n"
@@ -6549,28 +7499,31 @@ msgstr ""
"First 6 digits are the color and the last 2\n"
"digits are for alpha (transparency) level."
-#: flatcamGUI/FlatCAMGUI.py:3564 flatcamGUI/FlatCAMGUI.py:3614
-#: flatcamGUI/FlatCAMGUI.py:3664
-msgid "Alpha Level:"
-msgstr "Alpha Level:"
+#: flatcamGUI/FlatCAMGUI.py:3615 flatcamGUI/FlatCAMGUI.py:3665
+#: flatcamGUI/FlatCAMGUI.py:3715
+#| msgid "Alpha Level:"
+msgid "Alpha Level"
+msgstr "Alpha Level"
-#: flatcamGUI/FlatCAMGUI.py:3566
+#: flatcamGUI/FlatCAMGUI.py:3617
msgid "Set the fill transparency for plotted objects."
msgstr "Set the fill transparency for plotted objects."
-#: flatcamGUI/FlatCAMGUI.py:3583
-msgid "Plot Line:"
-msgstr "Plot Line:"
+#: flatcamGUI/FlatCAMGUI.py:3634
+#| msgid "Plot Line:"
+msgid "Plot Line"
+msgstr "Plot Line"
-#: flatcamGUI/FlatCAMGUI.py:3585
+#: flatcamGUI/FlatCAMGUI.py:3636
msgid "Set the line color for plotted objects."
msgstr "Set the line color for plotted objects."
-#: flatcamGUI/FlatCAMGUI.py:3597
-msgid "Sel. Fill:"
-msgstr "Sel. Fill:"
+#: flatcamGUI/FlatCAMGUI.py:3648
+#| msgid "Sel. Fill:"
+msgid "Sel. Fill"
+msgstr "Sel. Fill"
-#: flatcamGUI/FlatCAMGUI.py:3599
+#: flatcamGUI/FlatCAMGUI.py:3650
msgid ""
"Set the fill color for the selection box\n"
"in case that the selection is done from left to right.\n"
@@ -6582,23 +7535,25 @@ msgstr ""
"First 6 digits are the color and the last 2\n"
"digits are for alpha (transparency) level."
-#: flatcamGUI/FlatCAMGUI.py:3616
+#: flatcamGUI/FlatCAMGUI.py:3667
msgid "Set the fill transparency for the 'left to right' selection box."
msgstr "Set the fill transparency for the 'left to right' selection box."
-#: flatcamGUI/FlatCAMGUI.py:3633
-msgid "Sel. Line:"
-msgstr "Sel. Line:"
+#: flatcamGUI/FlatCAMGUI.py:3684
+#| msgid "Sel. Line:"
+msgid "Sel. Line"
+msgstr "Sel. Line"
-#: flatcamGUI/FlatCAMGUI.py:3635
+#: flatcamGUI/FlatCAMGUI.py:3686
msgid "Set the line color for the 'left to right' selection box."
msgstr "Set the line color for the 'left to right' selection box."
-#: flatcamGUI/FlatCAMGUI.py:3647
-msgid "Sel2. Fill:"
-msgstr "Sel2. Fill:"
+#: flatcamGUI/FlatCAMGUI.py:3698
+#| msgid "Sel2. Fill:"
+msgid "Sel2. Fill"
+msgstr "Sel2. Fill"
-#: flatcamGUI/FlatCAMGUI.py:3649
+#: flatcamGUI/FlatCAMGUI.py:3700
msgid ""
"Set the fill color for the selection box\n"
"in case that the selection is done from right to left.\n"
@@ -6610,47 +7565,52 @@ msgstr ""
"First 6 digits are the color and the last 2\n"
"digits are for alpha (transparency) level."
-#: flatcamGUI/FlatCAMGUI.py:3666
+#: flatcamGUI/FlatCAMGUI.py:3717
msgid "Set the fill transparency for selection 'right to left' box."
msgstr "Set the fill transparency for selection 'right to left' box."
-#: flatcamGUI/FlatCAMGUI.py:3683
-msgid "Sel2. Line:"
-msgstr "Sel2. Line:"
+#: flatcamGUI/FlatCAMGUI.py:3734
+#| msgid "Sel2. Line:"
+msgid "Sel2. Line"
+msgstr "Sel2. Line"
-#: flatcamGUI/FlatCAMGUI.py:3685
+#: flatcamGUI/FlatCAMGUI.py:3736
msgid "Set the line color for the 'right to left' selection box."
msgstr "Set the line color for the 'right to left' selection box."
-#: flatcamGUI/FlatCAMGUI.py:3697
-msgid "Editor Draw:"
-msgstr "Editor Draw:"
+#: flatcamGUI/FlatCAMGUI.py:3748
+#| msgid "Editor Draw:"
+msgid "Editor Draw"
+msgstr "Editor Draw"
-#: flatcamGUI/FlatCAMGUI.py:3699
+#: flatcamGUI/FlatCAMGUI.py:3750
msgid "Set the color for the shape."
msgstr "Set the color for the shape."
-#: flatcamGUI/FlatCAMGUI.py:3711
-msgid "Editor Draw Sel.:"
-msgstr "Editor Draw Sel.:"
+#: flatcamGUI/FlatCAMGUI.py:3762
+#| msgid "Editor Draw Sel.:"
+msgid "Editor Draw Sel."
+msgstr "Editor Draw Sel."
-#: flatcamGUI/FlatCAMGUI.py:3713
+#: flatcamGUI/FlatCAMGUI.py:3764
msgid "Set the color of the shape when selected."
msgstr "Set the color of the shape when selected."
-#: flatcamGUI/FlatCAMGUI.py:3725
-msgid "Project Items:"
-msgstr "Project Items:"
+#: flatcamGUI/FlatCAMGUI.py:3776
+#| msgid "Project Items:"
+msgid "Project Items"
+msgstr "Project Items"
-#: flatcamGUI/FlatCAMGUI.py:3727
+#: flatcamGUI/FlatCAMGUI.py:3778
msgid "Set the color of the items in Project Tab Tree."
msgstr "Set the color of the items in Project Tab Tree."
-#: flatcamGUI/FlatCAMGUI.py:3738
-msgid "Proj. Dis. Items:"
-msgstr "Proj. Dis. Items:"
+#: flatcamGUI/FlatCAMGUI.py:3789
+#| msgid "Proj. Dis. Items:"
+msgid "Proj. Dis. Items"
+msgstr "Proj. Dis. Items"
-#: flatcamGUI/FlatCAMGUI.py:3740
+#: flatcamGUI/FlatCAMGUI.py:3791
msgid ""
"Set the color of the items in Project Tab Tree,\n"
"for the case when the items are disabled."
@@ -6658,133 +7618,136 @@ msgstr ""
"Set the color of the items in Project Tab Tree,\n"
"for the case when the items are disabled."
-#: flatcamGUI/FlatCAMGUI.py:3791
+#: flatcamGUI/FlatCAMGUI.py:3842
msgid "GUI Settings"
msgstr "GUI Settings"
-#: flatcamGUI/FlatCAMGUI.py:3797
-msgid "Layout:"
-msgstr "Layout:"
-
-#: flatcamGUI/FlatCAMGUI.py:3799
-msgid ""
-"Select an layout for FlatCAM.\n"
-"It is applied immediately."
-msgstr ""
-"Select an layout for FlatCAM.\n"
-"It is applied immediately."
-
-#: flatcamGUI/FlatCAMGUI.py:3815
-msgid "Style:"
-msgstr "Style:"
-
-#: flatcamGUI/FlatCAMGUI.py:3817
-msgid ""
-"Select an style for FlatCAM.\n"
-"It will be applied at the next app start."
-msgstr ""
-"Select an style for FlatCAM.\n"
-"It will be applied at the next app start."
-
-#: flatcamGUI/FlatCAMGUI.py:3828
-msgid "HDPI Support:"
-msgstr "HDPI Support:"
-
-#: flatcamGUI/FlatCAMGUI.py:3830
-msgid ""
-"Enable High DPI support for FlatCAM.\n"
-"It will be applied at the next app start."
-msgstr ""
-"Enable High DPI support for FlatCAM.\n"
-"It will be applied at the next app start."
-
-#: flatcamGUI/FlatCAMGUI.py:3843
-msgid "Clear GUI Settings:"
-msgstr "Clear GUI Settings:"
-
-#: flatcamGUI/FlatCAMGUI.py:3845
-msgid ""
-"Clear the GUI settings for FlatCAM,\n"
-"such as: layout, gui state, style, hdpi support etc."
-msgstr ""
-"Clear the GUI settings for FlatCAM,\n"
-"such as: layout, gui state, style, hdpi support etc."
-
#: flatcamGUI/FlatCAMGUI.py:3848
-msgid "Clear"
-msgstr "Clear"
+#| msgid "Layout:"
+msgid "Layout"
+msgstr "Layout"
-#: flatcamGUI/FlatCAMGUI.py:3852
-msgid "Hover Shape:"
-msgstr "Hover Shape:"
-
-#: flatcamGUI/FlatCAMGUI.py:3854
+#: flatcamGUI/FlatCAMGUI.py:3850
msgid ""
-"Enable display of a hover shape for FlatCAM objects.\n"
-"It is displayed whenever the mouse cursor is hovering\n"
-"over any kind of not-selected object."
+"Select an layout for FlatCAM.\n"
+"It is applied immediately."
msgstr ""
-"Enable display of a hover shape for FlatCAM objects.\n"
-"It is displayed whenever the mouse cursor is hovering\n"
-"over any kind of not-selected object."
+"Select an layout for FlatCAM.\n"
+"It is applied immediately."
-#: flatcamGUI/FlatCAMGUI.py:3861
-msgid "Sel. Shape:"
-msgstr "Sel. Shape:"
+#: flatcamGUI/FlatCAMGUI.py:3866
+#| msgid "Style:"
+msgid "Style"
+msgstr "Style"
-#: flatcamGUI/FlatCAMGUI.py:3863
+#: flatcamGUI/FlatCAMGUI.py:3868
msgid ""
-"Enable the display of a selection shape for FlatCAM objects.\n"
-"It is displayed whenever the mouse selects an object\n"
-"either by clicking or dragging mouse from left to right or\n"
-"right to left."
+"Select an style for FlatCAM.\n"
+"It will be applied at the next app start."
msgstr ""
-"Enable the display of a selection shape for FlatCAM objects.\n"
-"It is displayed whenever the mouse selects an object\n"
-"either by clicking or dragging mouse from left to right or\n"
-"right to left."
+"Select an style for FlatCAM.\n"
+"It will be applied at the next app start."
-#: flatcamGUI/FlatCAMGUI.py:3870
-msgid "NB Font Size:"
-msgstr "NB Font Size:"
+#: flatcamGUI/FlatCAMGUI.py:3879
+#| msgid "HDPI Support:"
+msgid "HDPI Support"
+msgstr "HDPI Support"
-#: flatcamGUI/FlatCAMGUI.py:3872
+#: flatcamGUI/FlatCAMGUI.py:3881
msgid ""
-"This sets the font size for the elements found in the Notebook.\n"
-"The notebook is the collapsible area in the left side of the GUI,\n"
-"and include the Project, Selected and Tool tabs."
+"Enable High DPI support for FlatCAM.\n"
+"It will be applied at the next app start."
msgstr ""
-"This sets the font size for the elements found in the Notebook.\n"
-"The notebook is the collapsible area in the left side of the GUI,\n"
-"and include the Project, Selected and Tool tabs."
+"Enable High DPI support for FlatCAM.\n"
+"It will be applied at the next app start."
-#: flatcamGUI/FlatCAMGUI.py:3887
-msgid "Axis Font Size:"
-msgstr "Axis Font Size:"
-
-#: flatcamGUI/FlatCAMGUI.py:3889
-msgid "This sets the font size for canvas axis."
-msgstr "This sets the font size for canvas axis."
-
-#: flatcamGUI/FlatCAMGUI.py:3940
-msgid "Are you sure you want to delete the GUI Settings? \n"
-msgstr "Are you sure you want to delete the GUI Settings? \n"
-
-#: flatcamGUI/FlatCAMGUI.py:3943
+#: flatcamGUI/FlatCAMGUI.py:3894 flatcamGUI/FlatCAMGUI.py:3994
msgid "Clear GUI Settings"
msgstr "Clear GUI Settings"
-#: flatcamGUI/FlatCAMGUI.py:3964
+#: flatcamGUI/FlatCAMGUI.py:3896
+msgid ""
+"Clear the GUI settings for FlatCAM,\n"
+"such as: layout, gui state, style, hdpi support etc."
+msgstr ""
+"Clear the GUI settings for FlatCAM,\n"
+"such as: layout, gui state, style, hdpi support etc."
+
+#: flatcamGUI/FlatCAMGUI.py:3899
+msgid "Clear"
+msgstr "Clear"
+
+#: flatcamGUI/FlatCAMGUI.py:3903
+#| msgid "Hover Shape:"
+msgid "Hover Shape"
+msgstr "Hover Shape"
+
+#: flatcamGUI/FlatCAMGUI.py:3905
+msgid ""
+"Enable display of a hover shape for FlatCAM objects.\n"
+"It is displayed whenever the mouse cursor is hovering\n"
+"over any kind of not-selected object."
+msgstr ""
+"Enable display of a hover shape for FlatCAM objects.\n"
+"It is displayed whenever the mouse cursor is hovering\n"
+"over any kind of not-selected object."
+
+#: flatcamGUI/FlatCAMGUI.py:3912
+#| msgid "Sel. Shape:"
+msgid "Sel. Shape"
+msgstr "Sel. Shape"
+
+#: flatcamGUI/FlatCAMGUI.py:3914
+msgid ""
+"Enable the display of a selection shape for FlatCAM objects.\n"
+"It is displayed whenever the mouse selects an object\n"
+"either by clicking or dragging mouse from left to right or\n"
+"right to left."
+msgstr ""
+"Enable the display of a selection shape for FlatCAM objects.\n"
+"It is displayed whenever the mouse selects an object\n"
+"either by clicking or dragging mouse from left to right or\n"
+"right to left."
+
+#: flatcamGUI/FlatCAMGUI.py:3921
+#| msgid "NB Font Size:"
+msgid "NB Font Size"
+msgstr "NB Font Size"
+
+#: flatcamGUI/FlatCAMGUI.py:3923
+msgid ""
+"This sets the font size for the elements found in the Notebook.\n"
+"The notebook is the collapsible area in the left side of the GUI,\n"
+"and include the Project, Selected and Tool tabs."
+msgstr ""
+"This sets the font size for the elements found in the Notebook.\n"
+"The notebook is the collapsible area in the left side of the GUI,\n"
+"and include the Project, Selected and Tool tabs."
+
+#: flatcamGUI/FlatCAMGUI.py:3938
+#| msgid "Axis Font Size:"
+msgid "Axis Font Size"
+msgstr "Axis Font Size"
+
+#: flatcamGUI/FlatCAMGUI.py:3940
+msgid "This sets the font size for canvas axis."
+msgstr "This sets the font size for canvas axis."
+
+#: flatcamGUI/FlatCAMGUI.py:3991
+msgid "Are you sure you want to delete the GUI Settings? \n"
+msgstr "Are you sure you want to delete the GUI Settings? \n"
+
+#: flatcamGUI/FlatCAMGUI.py:4015
msgid "App Preferences"
msgstr "App Preferences"
-#: flatcamGUI/FlatCAMGUI.py:3970 flatcamGUI/FlatCAMGUI.py:4484
-#: flatcamGUI/FlatCAMGUI.py:5309 flatcamTools/ToolMeasurement.py:43
-#: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:128
+#: flatcamGUI/FlatCAMGUI.py:4021 flatcamGUI/FlatCAMGUI.py:4549
+#: flatcamGUI/FlatCAMGUI.py:5374 flatcamTools/ToolMeasurement.py:43
+#: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:133
msgid "Units"
msgstr "Units"
-#: flatcamGUI/FlatCAMGUI.py:3971
+#: flatcamGUI/FlatCAMGUI.py:4022
msgid ""
"The default value for FlatCAM units.\n"
"Whatever is selected here is set every time\n"
@@ -6794,21 +7757,21 @@ msgstr ""
"Whatever is selected here is set every time\n"
"FLatCAM is started."
-#: flatcamGUI/FlatCAMGUI.py:3974
+#: flatcamGUI/FlatCAMGUI.py:4025
msgid "IN"
msgstr "IN"
-#: flatcamGUI/FlatCAMGUI.py:3975 flatcamGUI/FlatCAMGUI.py:4490
-#: flatcamGUI/FlatCAMGUI.py:4922 flatcamGUI/FlatCAMGUI.py:5315
+#: flatcamGUI/FlatCAMGUI.py:4026 flatcamGUI/FlatCAMGUI.py:4555
+#: flatcamGUI/FlatCAMGUI.py:4987 flatcamGUI/FlatCAMGUI.py:5380
#: flatcamTools/ToolCalculators.py:61 flatcamTools/ToolPcbWizard.py:126
msgid "MM"
msgstr "MM"
-#: flatcamGUI/FlatCAMGUI.py:3978
+#: flatcamGUI/FlatCAMGUI.py:4029
msgid "APP. LEVEL"
msgstr "APP. LEVEL"
-#: flatcamGUI/FlatCAMGUI.py:3979
+#: flatcamGUI/FlatCAMGUI.py:4030
msgid ""
"Choose the default level of usage for FlatCAM.\n"
"BASIC level -> reduced functionality, best for beginner's.\n"
@@ -6824,20 +7787,19 @@ msgstr ""
"The choice here will influence the parameters in\n"
"the Selected Tab for all kinds of FlatCAM objects."
-#: flatcamGUI/FlatCAMGUI.py:3984 flatcamGUI/FlatCAMGUI.py:4949
+#: flatcamGUI/FlatCAMGUI.py:4035 flatcamGUI/FlatCAMGUI.py:5014
msgid "Basic"
msgstr "Basic"
-#: flatcamGUI/FlatCAMGUI.py:3985
+#: flatcamGUI/FlatCAMGUI.py:4036
msgid "Advanced"
msgstr "Advanced"
-#: flatcamGUI/FlatCAMGUI.py:3988
-#| msgid "Portability"
+#: flatcamGUI/FlatCAMGUI.py:4039
msgid "Portable app"
msgstr "Portable app"
-#: flatcamGUI/FlatCAMGUI.py:3989
+#: flatcamGUI/FlatCAMGUI.py:4040
msgid ""
"Choose if the application should run as portable.\n"
"\n"
@@ -6851,19 +7813,19 @@ msgstr ""
"which means that the preferences files will be saved\n"
"in the application folder, in the lib\\config subfolder."
-#: flatcamGUI/FlatCAMGUI.py:3996
+#: flatcamGUI/FlatCAMGUI.py:4047
msgid "Languages"
msgstr "Languages"
-#: flatcamGUI/FlatCAMGUI.py:3997
+#: flatcamGUI/FlatCAMGUI.py:4048
msgid "Set the language used throughout FlatCAM."
msgstr "Set the language used throughout FlatCAM."
-#: flatcamGUI/FlatCAMGUI.py:4000
+#: flatcamGUI/FlatCAMGUI.py:4051
msgid "Apply Language"
msgstr "Apply Language"
-#: flatcamGUI/FlatCAMGUI.py:4001
+#: flatcamGUI/FlatCAMGUI.py:4052
msgid ""
"Set the language used throughout FlatCAM.\n"
"The app will restart after click.Windows: When FlatCAM is installed in "
@@ -6881,11 +7843,11 @@ msgstr ""
"security features. In this case the language will be\n"
"applied at the next app start."
-#: flatcamGUI/FlatCAMGUI.py:4010
+#: flatcamGUI/FlatCAMGUI.py:4061
msgid "Shell at StartUp"
msgstr "Shell at StartUp"
-#: flatcamGUI/FlatCAMGUI.py:4012 flatcamGUI/FlatCAMGUI.py:4017
+#: flatcamGUI/FlatCAMGUI.py:4063 flatcamGUI/FlatCAMGUI.py:4068
msgid ""
"Check this box if you want the shell to\n"
"start automatically at startup."
@@ -6893,11 +7855,11 @@ msgstr ""
"Check this box if you want the shell to\n"
"start automatically at startup."
-#: flatcamGUI/FlatCAMGUI.py:4022
+#: flatcamGUI/FlatCAMGUI.py:4073
msgid "Version Check"
msgstr "Version Check"
-#: flatcamGUI/FlatCAMGUI.py:4024 flatcamGUI/FlatCAMGUI.py:4029
+#: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/FlatCAMGUI.py:4080
msgid ""
"Check this box if you want to check\n"
"for a new version automatically at startup."
@@ -6905,11 +7867,11 @@ msgstr ""
"Check this box if you want to check\n"
"for a new version automatically at startup."
-#: flatcamGUI/FlatCAMGUI.py:4034
+#: flatcamGUI/FlatCAMGUI.py:4085
msgid "Send Stats"
msgstr "Send Stats"
-#: flatcamGUI/FlatCAMGUI.py:4036 flatcamGUI/FlatCAMGUI.py:4041
+#: flatcamGUI/FlatCAMGUI.py:4087 flatcamGUI/FlatCAMGUI.py:4092
msgid ""
"Check this box if you agree to send anonymous\n"
"stats automatically at startup, to help improve FlatCAM."
@@ -6917,11 +7879,11 @@ msgstr ""
"Check this box if you agree to send anonymous\n"
"stats automatically at startup, to help improve FlatCAM."
-#: flatcamGUI/FlatCAMGUI.py:4048
+#: flatcamGUI/FlatCAMGUI.py:4099
msgid "Pan Button"
msgstr "Pan Button"
-#: flatcamGUI/FlatCAMGUI.py:4049
+#: flatcamGUI/FlatCAMGUI.py:4100
msgid ""
"Select the mouse button to use for panning:\n"
"- MMB --> Middle Mouse Button\n"
@@ -6931,35 +7893,36 @@ msgstr ""
"- MMB --> Middle Mouse Button\n"
"- RMB --> Right Mouse Button"
-#: flatcamGUI/FlatCAMGUI.py:4052
+#: flatcamGUI/FlatCAMGUI.py:4103
msgid "MMB"
msgstr "MMB"
-#: flatcamGUI/FlatCAMGUI.py:4053
+#: flatcamGUI/FlatCAMGUI.py:4104
msgid "RMB"
msgstr "RMB"
-#: flatcamGUI/FlatCAMGUI.py:4056
-msgid "Multiple Sel:"
-msgstr "Multiple Sel:"
+#: flatcamGUI/FlatCAMGUI.py:4107
+#| msgid "Multiple Sel:"
+msgid "Multiple Sel"
+msgstr "Multiple Sel"
-#: flatcamGUI/FlatCAMGUI.py:4057
+#: flatcamGUI/FlatCAMGUI.py:4108
msgid "Select the key used for multiple selection."
msgstr "Select the key used for multiple selection."
-#: flatcamGUI/FlatCAMGUI.py:4058
+#: flatcamGUI/FlatCAMGUI.py:4109
msgid "CTRL"
msgstr "CTRL"
-#: flatcamGUI/FlatCAMGUI.py:4059
+#: flatcamGUI/FlatCAMGUI.py:4110
msgid "SHIFT"
msgstr "SHIFT"
-#: flatcamGUI/FlatCAMGUI.py:4062
+#: flatcamGUI/FlatCAMGUI.py:4113
msgid "Project at StartUp"
msgstr "Project at StartUp"
-#: flatcamGUI/FlatCAMGUI.py:4064 flatcamGUI/FlatCAMGUI.py:4069
+#: flatcamGUI/FlatCAMGUI.py:4115 flatcamGUI/FlatCAMGUI.py:4120
msgid ""
"Check this box if you want the project/selected/tool tab area to\n"
"to be shown automatically at startup."
@@ -6967,11 +7930,11 @@ msgstr ""
"Check this box if you want the project/selected/tool tab area to\n"
"to be shown automatically at startup."
-#: flatcamGUI/FlatCAMGUI.py:4074
+#: flatcamGUI/FlatCAMGUI.py:4125
msgid "Project AutoHide"
msgstr "Project AutoHide"
-#: flatcamGUI/FlatCAMGUI.py:4076 flatcamGUI/FlatCAMGUI.py:4082
+#: flatcamGUI/FlatCAMGUI.py:4127 flatcamGUI/FlatCAMGUI.py:4133
msgid ""
"Check this box if you want the project/selected/tool tab area to\n"
"hide automatically when there are no objects loaded and\n"
@@ -6981,11 +7944,11 @@ msgstr ""
"hide automatically when there are no objects loaded and\n"
"to show whenever a new object is created."
-#: flatcamGUI/FlatCAMGUI.py:4088
+#: flatcamGUI/FlatCAMGUI.py:4139
msgid "Enable ToolTips"
msgstr "Enable ToolTips"
-#: flatcamGUI/FlatCAMGUI.py:4090 flatcamGUI/FlatCAMGUI.py:4095
+#: flatcamGUI/FlatCAMGUI.py:4141 flatcamGUI/FlatCAMGUI.py:4146
msgid ""
"Check this box if you want to have toolTips displayed\n"
"when hovering with mouse over items throughout the App."
@@ -6993,11 +7956,11 @@ msgstr ""
"Check this box if you want to have toolTips displayed\n"
"when hovering with mouse over items throughout the App."
-#: flatcamGUI/FlatCAMGUI.py:4098
+#: flatcamGUI/FlatCAMGUI.py:4149
msgid "Workers number"
msgstr "Workers number"
-#: flatcamGUI/FlatCAMGUI.py:4100 flatcamGUI/FlatCAMGUI.py:4109
+#: flatcamGUI/FlatCAMGUI.py:4151 flatcamGUI/FlatCAMGUI.py:4160
msgid ""
"The number of Qthreads made available to the App.\n"
"A bigger number may finish the jobs more quickly but\n"
@@ -7013,11 +7976,11 @@ msgstr ""
"Default value is 2.\n"
"After change, it will be applied at next App start."
-#: flatcamGUI/FlatCAMGUI.py:4119
+#: flatcamGUI/FlatCAMGUI.py:4170
msgid "Geo Tolerance"
msgstr "Geo Tolerance"
-#: flatcamGUI/FlatCAMGUI.py:4121 flatcamGUI/FlatCAMGUI.py:4130
+#: flatcamGUI/FlatCAMGUI.py:4172 flatcamGUI/FlatCAMGUI.py:4181
msgid ""
"This value can counter the effect of the Circle Steps\n"
"parameter. Default value is 0.01.\n"
@@ -7033,11 +7996,11 @@ msgstr ""
"performance. Higher value will provide more\n"
"performance at the expense of level of detail."
-#: flatcamGUI/FlatCAMGUI.py:4169
+#: flatcamGUI/FlatCAMGUI.py:4220
msgid "\"Open\" behavior"
msgstr "\"Open\" behavior"
-#: flatcamGUI/FlatCAMGUI.py:4171
+#: flatcamGUI/FlatCAMGUI.py:4222
msgid ""
"When checked the path for the last saved file is used when saving files,\n"
"and the path for the last opened file is used when opening files.\n"
@@ -7051,11 +8014,11 @@ msgstr ""
"When unchecked the path for opening files is the one used last: either the\n"
"path for saving files or the path for opening files."
-#: flatcamGUI/FlatCAMGUI.py:4180
+#: flatcamGUI/FlatCAMGUI.py:4231
msgid "Delete object confirmation"
msgstr "Delete object confirmation"
-#: flatcamGUI/FlatCAMGUI.py:4182
+#: flatcamGUI/FlatCAMGUI.py:4233
msgid ""
"When checked the application will ask for user confirmation\n"
"whenever the Delete object(s) event is triggered, either by\n"
@@ -7065,11 +8028,11 @@ msgstr ""
"whenever the Delete object(s) event is triggered, either by\n"
"menu shortcut or key shortcut."
-#: flatcamGUI/FlatCAMGUI.py:4189
+#: flatcamGUI/FlatCAMGUI.py:4240
msgid "Save Compressed Project"
msgstr "Save Compressed Project"
-#: flatcamGUI/FlatCAMGUI.py:4191
+#: flatcamGUI/FlatCAMGUI.py:4242
msgid ""
"Whether to save a compressed or uncompressed project.\n"
"When checked it will save a compressed FlatCAM project."
@@ -7077,11 +8040,11 @@ msgstr ""
"Whether to save a compressed or uncompressed project.\n"
"When checked it will save a compressed FlatCAM project."
-#: flatcamGUI/FlatCAMGUI.py:4202
+#: flatcamGUI/FlatCAMGUI.py:4253
msgid "Compression Level"
msgstr "Compression Level"
-#: flatcamGUI/FlatCAMGUI.py:4204
+#: flatcamGUI/FlatCAMGUI.py:4255
msgid ""
"The level of compression used when saving\n"
"a FlatCAM project. Higher value means better compression\n"
@@ -7091,53 +8054,53 @@ msgstr ""
"a FlatCAM project. Higher value means better compression\n"
"but require more RAM usage and more processing time."
-#: flatcamGUI/FlatCAMGUI.py:4230
+#: flatcamGUI/FlatCAMGUI.py:4281
msgid "Gerber General"
msgstr "Gerber General"
-#: flatcamGUI/FlatCAMGUI.py:4233 flatcamGUI/FlatCAMGUI.py:4773
-#: flatcamGUI/FlatCAMGUI.py:5703 flatcamGUI/FlatCAMGUI.py:6084
-#: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:503
-#: flatcamGUI/ObjectUI.py:831 flatcamGUI/ObjectUI.py:1330
+#: flatcamGUI/FlatCAMGUI.py:4284 flatcamGUI/FlatCAMGUI.py:4838
+#: flatcamGUI/FlatCAMGUI.py:5768 flatcamGUI/FlatCAMGUI.py:6149
+#: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:562
+#: flatcamGUI/ObjectUI.py:894 flatcamGUI/ObjectUI.py:1393
msgid "Plot Options"
msgstr "Plot Options"
-#: flatcamGUI/FlatCAMGUI.py:4240 flatcamGUI/FlatCAMGUI.py:4785
-#: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:504
+#: flatcamGUI/FlatCAMGUI.py:4291 flatcamGUI/FlatCAMGUI.py:4850
+#: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:563
msgid "Solid"
msgstr "Solid"
-#: flatcamGUI/FlatCAMGUI.py:4242 flatcamGUI/ObjectUI.py:158
+#: flatcamGUI/FlatCAMGUI.py:4293 flatcamGUI/ObjectUI.py:158
msgid "Solid color polygons."
msgstr "Solid color polygons."
-#: flatcamGUI/FlatCAMGUI.py:4247 flatcamGUI/ObjectUI.py:164
+#: flatcamGUI/FlatCAMGUI.py:4298 flatcamGUI/ObjectUI.py:164
msgid "M-Color"
msgstr "M-Color"
-#: flatcamGUI/FlatCAMGUI.py:4249 flatcamGUI/ObjectUI.py:166
+#: flatcamGUI/FlatCAMGUI.py:4300 flatcamGUI/ObjectUI.py:166
msgid "Draw polygons in different colors."
msgstr "Draw polygons in different colors."
-#: flatcamGUI/FlatCAMGUI.py:4254 flatcamGUI/FlatCAMGUI.py:4779
-#: flatcamGUI/FlatCAMGUI.py:5707 flatcamGUI/ObjectUI.py:172
-#: flatcamGUI/ObjectUI.py:542
+#: flatcamGUI/FlatCAMGUI.py:4305 flatcamGUI/FlatCAMGUI.py:4844
+#: flatcamGUI/FlatCAMGUI.py:5772 flatcamGUI/ObjectUI.py:172
+#: flatcamGUI/ObjectUI.py:601
msgid "Plot"
msgstr "Plot"
-#: flatcamGUI/FlatCAMGUI.py:4256 flatcamGUI/FlatCAMGUI.py:5709
-#: flatcamGUI/FlatCAMGUI.py:6095 flatcamGUI/ObjectUI.py:174
-#: flatcamGUI/ObjectUI.py:544 flatcamGUI/ObjectUI.py:877
-#: flatcamGUI/ObjectUI.py:1441
+#: flatcamGUI/FlatCAMGUI.py:4307 flatcamGUI/FlatCAMGUI.py:5774
+#: flatcamGUI/FlatCAMGUI.py:6160 flatcamGUI/ObjectUI.py:174
+#: flatcamGUI/ObjectUI.py:603 flatcamGUI/ObjectUI.py:940
+#: flatcamGUI/ObjectUI.py:1503
msgid "Plot (show) this object."
msgstr "Plot (show) this object."
-#: flatcamGUI/FlatCAMGUI.py:4261 flatcamGUI/FlatCAMGUI.py:5717
-#: flatcamGUI/FlatCAMGUI.py:6165
+#: flatcamGUI/FlatCAMGUI.py:4312 flatcamGUI/FlatCAMGUI.py:5782
+#: flatcamGUI/FlatCAMGUI.py:6230
msgid "Circle Steps"
msgstr "Circle Steps"
-#: flatcamGUI/FlatCAMGUI.py:4263
+#: flatcamGUI/FlatCAMGUI.py:4314
msgid ""
"The number of circle steps for Gerber \n"
"circular aperture linear approximation."
@@ -7145,15 +8108,37 @@ msgstr ""
"The number of circle steps for Gerber \n"
"circular aperture linear approximation."
-#: flatcamGUI/FlatCAMGUI.py:4278
+#: flatcamGUI/FlatCAMGUI.py:4324
+msgid ""
+"Buffering type:\n"
+"- None --> best performance, fast file loading but no so good display\n"
+"- Full --> slow file loading but good visuals. This is the default.\n"
+"<>: Don't change this unless you know what you are doing !!!"
+msgstr ""
+"Buffering type:\n"
+"- None --> best performance, fast file loading but no so good display\n"
+"- Full --> slow file loading but good visuals. This is the default.\n"
+"<>: Don't change this unless you know what you are doing !!!"
+
+#: flatcamGUI/FlatCAMGUI.py:4329 flatcamTools/ToolProperties.py:298
+#: flatcamTools/ToolProperties.py:312 flatcamTools/ToolProperties.py:315
+#: flatcamTools/ToolProperties.py:318
+msgid "None"
+msgstr "None"
+
+#: flatcamGUI/FlatCAMGUI.py:4330
+msgid "Full"
+msgstr "Full"
+
+#: flatcamGUI/FlatCAMGUI.py:4342
msgid "Gerber Options"
msgstr "Gerber Options"
-#: flatcamGUI/FlatCAMGUI.py:4281 flatcamGUI/ObjectUI.py:250
+#: flatcamGUI/FlatCAMGUI.py:4345 flatcamGUI/ObjectUI.py:250
msgid "Isolation Routing"
msgstr "Isolation Routing"
-#: flatcamGUI/FlatCAMGUI.py:4283 flatcamGUI/ObjectUI.py:252
+#: flatcamGUI/FlatCAMGUI.py:4347 flatcamGUI/ObjectUI.py:252
msgid ""
"Create a Geometry object with\n"
"toolpaths to cut outside polygons."
@@ -7161,23 +8146,16 @@ msgstr ""
"Create a Geometry object with\n"
"toolpaths to cut outside polygons."
-#: flatcamGUI/FlatCAMGUI.py:4292 flatcamGUI/FlatCAMGUI.py:5731
-#: flatcamGUI/FlatCAMGUI.py:6175 flatcamGUI/FlatCAMGUI.py:6524
-#: flatcamGUI/FlatCAMGUI.py:6684 flatcamGUI/ObjectUI.py:259
-#: flatcamTools/ToolCutOut.py:92
-msgid "Tool dia"
-msgstr "Tool dia"
-
-#: flatcamGUI/FlatCAMGUI.py:4294 flatcamGUI/FlatCAMGUI.py:5149
-#: flatcamGUI/ObjectUI.py:785
+#: flatcamGUI/FlatCAMGUI.py:4358 flatcamGUI/FlatCAMGUI.py:5214
+#: flatcamGUI/ObjectUI.py:848
msgid "Diameter of the cutting tool."
msgstr "Diameter of the cutting tool."
-#: flatcamGUI/FlatCAMGUI.py:4301 flatcamGUI/ObjectUI.py:272
+#: flatcamGUI/FlatCAMGUI.py:4365 flatcamGUI/ObjectUI.py:277
msgid "# Passes"
msgstr "# Passes"
-#: flatcamGUI/FlatCAMGUI.py:4303 flatcamGUI/ObjectUI.py:274
+#: flatcamGUI/FlatCAMGUI.py:4367 flatcamGUI/ObjectUI.py:279
msgid ""
"Width of the isolation gap in\n"
"number (integer) of tool widths."
@@ -7185,11 +8163,11 @@ msgstr ""
"Width of the isolation gap in\n"
"number (integer) of tool widths."
-#: flatcamGUI/FlatCAMGUI.py:4312 flatcamGUI/ObjectUI.py:283
+#: flatcamGUI/FlatCAMGUI.py:4376 flatcamGUI/ObjectUI.py:288
msgid "Pass overlap"
msgstr "Pass overlap"
-#: flatcamGUI/FlatCAMGUI.py:4314 flatcamGUI/ObjectUI.py:285
+#: flatcamGUI/FlatCAMGUI.py:4378 flatcamGUI/ObjectUI.py:290
#, python-format
msgid ""
"How much (fraction) of the tool width to overlap each tool pass.\n"
@@ -7202,11 +8180,12 @@ msgstr ""
"A value here of 0.25 means an overlap of 25% from the tool diameter found "
"above."
-#: flatcamGUI/FlatCAMGUI.py:4322 flatcamGUI/ObjectUI.py:295
+#: flatcamGUI/FlatCAMGUI.py:4387 flatcamGUI/FlatCAMGUI.py:6490
+#: flatcamGUI/ObjectUI.py:300 flatcamTools/ToolNonCopperClear.py:147
msgid "Milling Type"
msgstr "Milling Type"
-#: flatcamGUI/FlatCAMGUI.py:4324 flatcamGUI/ObjectUI.py:297
+#: flatcamGUI/FlatCAMGUI.py:4389 flatcamGUI/ObjectUI.py:302
msgid ""
"Milling type:\n"
"- climb / best for precision milling and to reduce tool usage\n"
@@ -7216,27 +8195,29 @@ msgstr ""
"- climb / best for precision milling and to reduce tool usage\n"
"- conventional / useful when there is no backlash compensation"
-#: flatcamGUI/FlatCAMGUI.py:4329 flatcamGUI/ObjectUI.py:302
+#: flatcamGUI/FlatCAMGUI.py:4394 flatcamGUI/FlatCAMGUI.py:6497
+#: flatcamGUI/ObjectUI.py:306 flatcamTools/ToolNonCopperClear.py:154
msgid "Climb"
msgstr "Climb"
-#: flatcamGUI/FlatCAMGUI.py:4330 flatcamGUI/ObjectUI.py:303
+#: flatcamGUI/FlatCAMGUI.py:4395 flatcamGUI/FlatCAMGUI.py:6498
+#: flatcamGUI/ObjectUI.py:307 flatcamTools/ToolNonCopperClear.py:155
msgid "Conv."
msgstr "Conv."
-#: flatcamGUI/FlatCAMGUI.py:4334 flatcamGUI/ObjectUI.py:307
+#: flatcamGUI/FlatCAMGUI.py:4399 flatcamGUI/ObjectUI.py:312
msgid "Combine Passes"
msgstr "Combine Passes"
-#: flatcamGUI/FlatCAMGUI.py:4336 flatcamGUI/ObjectUI.py:309
+#: flatcamGUI/FlatCAMGUI.py:4401 flatcamGUI/ObjectUI.py:314
msgid "Combine all passes into one object"
msgstr "Combine all passes into one object"
-#: flatcamGUI/FlatCAMGUI.py:4341 flatcamGUI/ObjectUI.py:414
+#: flatcamGUI/FlatCAMGUI.py:4406 flatcamGUI/ObjectUI.py:477
msgid "Non-copper regions"
msgstr "Non-copper regions"
-#: flatcamGUI/FlatCAMGUI.py:4343 flatcamGUI/ObjectUI.py:416
+#: flatcamGUI/FlatCAMGUI.py:4408 flatcamGUI/ObjectUI.py:479
msgid ""
"Create polygons covering the\n"
"areas without copper on the PCB.\n"
@@ -7250,12 +8231,12 @@ msgstr ""
"object. Can be used to remove all\n"
"copper from a specified region."
-#: flatcamGUI/FlatCAMGUI.py:4355 flatcamGUI/FlatCAMGUI.py:4380
-#: flatcamGUI/ObjectUI.py:428 flatcamGUI/ObjectUI.py:462
+#: flatcamGUI/FlatCAMGUI.py:4420 flatcamGUI/FlatCAMGUI.py:4445
+#: flatcamGUI/ObjectUI.py:489 flatcamGUI/ObjectUI.py:521
msgid "Boundary Margin"
msgstr "Boundary Margin"
-#: flatcamGUI/FlatCAMGUI.py:4357 flatcamGUI/ObjectUI.py:430
+#: flatcamGUI/FlatCAMGUI.py:4422 flatcamGUI/ObjectUI.py:491
msgid ""
"Specify the edge of the PCB\n"
"by drawing a box around all\n"
@@ -7267,21 +8248,21 @@ msgstr ""
"objects with this minimum\n"
"distance."
-#: flatcamGUI/FlatCAMGUI.py:4367 flatcamGUI/FlatCAMGUI.py:4389
-#: flatcamGUI/ObjectUI.py:441 flatcamGUI/ObjectUI.py:472
+#: flatcamGUI/FlatCAMGUI.py:4432 flatcamGUI/FlatCAMGUI.py:4454
+#: flatcamGUI/ObjectUI.py:502 flatcamGUI/ObjectUI.py:531
msgid "Rounded Geo"
msgstr "Rounded Geo"
-#: flatcamGUI/FlatCAMGUI.py:4369 flatcamGUI/ObjectUI.py:443
+#: flatcamGUI/FlatCAMGUI.py:4434 flatcamGUI/ObjectUI.py:504
msgid "Resulting geometry will have rounded corners."
msgstr "Resulting geometry will have rounded corners."
-#: flatcamGUI/FlatCAMGUI.py:4374 flatcamGUI/ObjectUI.py:452
+#: flatcamGUI/FlatCAMGUI.py:4439 flatcamGUI/ObjectUI.py:513
#: flatcamTools/ToolPanelize.py:85
msgid "Bounding Box"
msgstr "Bounding Box"
-#: flatcamGUI/FlatCAMGUI.py:4382 flatcamGUI/ObjectUI.py:464
+#: flatcamGUI/FlatCAMGUI.py:4447 flatcamGUI/ObjectUI.py:523
msgid ""
"Distance of the edges of the box\n"
"to the nearest polygon."
@@ -7289,7 +8270,7 @@ msgstr ""
"Distance of the edges of the box\n"
"to the nearest polygon."
-#: flatcamGUI/FlatCAMGUI.py:4391 flatcamGUI/ObjectUI.py:474
+#: flatcamGUI/FlatCAMGUI.py:4456 flatcamGUI/ObjectUI.py:533
msgid ""
"If the bounding box is \n"
"to have rounded corners\n"
@@ -7301,15 +8282,15 @@ msgstr ""
"their radius is equal to\n"
"the margin."
-#: flatcamGUI/FlatCAMGUI.py:4405
+#: flatcamGUI/FlatCAMGUI.py:4470
msgid "Gerber Adv. Options"
msgstr "Gerber Adv. Options"
-#: flatcamGUI/FlatCAMGUI.py:4408
+#: flatcamGUI/FlatCAMGUI.py:4473
msgid "Advanced Param."
msgstr "Advanced Param."
-#: flatcamGUI/FlatCAMGUI.py:4410
+#: flatcamGUI/FlatCAMGUI.py:4475
msgid ""
"A list of Gerber advanced parameters.\n"
"Those parameters are available only for\n"
@@ -7319,11 +8300,11 @@ msgstr ""
"Those parameters are available only for\n"
"Advanced App. Level."
-#: flatcamGUI/FlatCAMGUI.py:4420 flatcamGUI/ObjectUI.py:314
+#: flatcamGUI/FlatCAMGUI.py:4485 flatcamGUI/ObjectUI.py:318
msgid "\"Follow\""
msgstr "\"Follow\""
-#: flatcamGUI/FlatCAMGUI.py:4422 flatcamGUI/ObjectUI.py:316
+#: flatcamGUI/FlatCAMGUI.py:4487 flatcamGUI/ObjectUI.py:319
msgid ""
"Generate a 'Follow' geometry.\n"
"This means that it will cut through\n"
@@ -7333,11 +8314,11 @@ msgstr ""
"This means that it will cut through\n"
"the middle of the trace."
-#: flatcamGUI/FlatCAMGUI.py:4429
+#: flatcamGUI/FlatCAMGUI.py:4494
msgid "Table Show/Hide"
msgstr "Table Show/Hide"
-#: flatcamGUI/FlatCAMGUI.py:4431
+#: flatcamGUI/FlatCAMGUI.py:4496
msgid ""
"Toggle the display of the Gerber Apertures Table.\n"
"Also, on hide, it will delete all mark shapes\n"
@@ -7347,15 +8328,15 @@ msgstr ""
"Also, on hide, it will delete all mark shapes\n"
"that are drawn on canvas."
-#: flatcamGUI/FlatCAMGUI.py:4470
+#: flatcamGUI/FlatCAMGUI.py:4535
msgid "Gerber Export"
msgstr "Gerber Export"
-#: flatcamGUI/FlatCAMGUI.py:4473 flatcamGUI/FlatCAMGUI.py:5298
+#: flatcamGUI/FlatCAMGUI.py:4538 flatcamGUI/FlatCAMGUI.py:5363
msgid "Export Options"
msgstr "Export Options"
-#: flatcamGUI/FlatCAMGUI.py:4475
+#: flatcamGUI/FlatCAMGUI.py:4540
msgid ""
"The parameters set here are used in the file exported\n"
"when using the File -> Export -> Export Gerber menu entry."
@@ -7363,21 +8344,21 @@ msgstr ""
"The parameters set here are used in the file exported\n"
"when using the File -> Export -> Export Gerber menu entry."
-#: flatcamGUI/FlatCAMGUI.py:4486 flatcamGUI/FlatCAMGUI.py:4492
+#: flatcamGUI/FlatCAMGUI.py:4551 flatcamGUI/FlatCAMGUI.py:4557
msgid "The units used in the Gerber file."
msgstr "The units used in the Gerber file."
-#: flatcamGUI/FlatCAMGUI.py:4489 flatcamGUI/FlatCAMGUI.py:4819
-#: flatcamGUI/FlatCAMGUI.py:4921 flatcamGUI/FlatCAMGUI.py:5314
+#: flatcamGUI/FlatCAMGUI.py:4554 flatcamGUI/FlatCAMGUI.py:4884
+#: flatcamGUI/FlatCAMGUI.py:4986 flatcamGUI/FlatCAMGUI.py:5379
#: flatcamTools/ToolCalculators.py:60 flatcamTools/ToolPcbWizard.py:125
msgid "INCH"
msgstr "INCH"
-#: flatcamGUI/FlatCAMGUI.py:4498 flatcamGUI/FlatCAMGUI.py:5323
+#: flatcamGUI/FlatCAMGUI.py:4563 flatcamGUI/FlatCAMGUI.py:5388
msgid "Int/Decimals"
msgstr "Int/Decimals"
-#: flatcamGUI/FlatCAMGUI.py:4500
+#: flatcamGUI/FlatCAMGUI.py:4565
msgid ""
"The number of digits in the whole part of the number\n"
"and in the fractional part of the number."
@@ -7385,7 +8366,7 @@ msgstr ""
"The number of digits in the whole part of the number\n"
"and in the fractional part of the number."
-#: flatcamGUI/FlatCAMGUI.py:4511
+#: flatcamGUI/FlatCAMGUI.py:4576
msgid ""
"This numbers signify the number of digits in\n"
"the whole part of Gerber coordinates."
@@ -7393,7 +8374,7 @@ msgstr ""
"This numbers signify the number of digits in\n"
"the whole part of Gerber coordinates."
-#: flatcamGUI/FlatCAMGUI.py:4525
+#: flatcamGUI/FlatCAMGUI.py:4590
msgid ""
"This numbers signify the number of digits in\n"
"the decimal part of Gerber coordinates."
@@ -7401,11 +8382,11 @@ msgstr ""
"This numbers signify the number of digits in\n"
"the decimal part of Gerber coordinates."
-#: flatcamGUI/FlatCAMGUI.py:4534 flatcamGUI/FlatCAMGUI.py:5384
+#: flatcamGUI/FlatCAMGUI.py:4599 flatcamGUI/FlatCAMGUI.py:5449
msgid "Zeros"
msgstr "Zeros"
-#: flatcamGUI/FlatCAMGUI.py:4537 flatcamGUI/FlatCAMGUI.py:4547
+#: flatcamGUI/FlatCAMGUI.py:4602 flatcamGUI/FlatCAMGUI.py:4612
msgid ""
"This sets the type of Gerber zeros.\n"
"If LZ then Leading Zeros are removed and\n"
@@ -7419,36 +8400,36 @@ msgstr ""
"If TZ is checked then Trailing Zeros are removed\n"
"and Leading Zeros are kept."
-#: flatcamGUI/FlatCAMGUI.py:4544 flatcamGUI/FlatCAMGUI.py:4897
-#: flatcamGUI/FlatCAMGUI.py:5394 flatcamTools/ToolPcbWizard.py:111
+#: flatcamGUI/FlatCAMGUI.py:4609 flatcamGUI/FlatCAMGUI.py:4962
+#: flatcamGUI/FlatCAMGUI.py:5459 flatcamTools/ToolPcbWizard.py:111
msgid "LZ"
msgstr "LZ"
-#: flatcamGUI/FlatCAMGUI.py:4545 flatcamGUI/FlatCAMGUI.py:4898
-#: flatcamGUI/FlatCAMGUI.py:5395 flatcamTools/ToolPcbWizard.py:112
+#: flatcamGUI/FlatCAMGUI.py:4610 flatcamGUI/FlatCAMGUI.py:4963
+#: flatcamGUI/FlatCAMGUI.py:5460 flatcamTools/ToolPcbWizard.py:112
msgid "TZ"
msgstr "TZ"
-#: flatcamGUI/FlatCAMGUI.py:4567 flatcamGUI/FlatCAMGUI.py:5448
-#: flatcamGUI/FlatCAMGUI.py:6050 flatcamGUI/FlatCAMGUI.py:6307
-#: flatcamGUI/FlatCAMGUI.py:6346 flatcamGUI/FlatCAMGUI.py:6513
-#: flatcamGUI/FlatCAMGUI.py:6612 flatcamGUI/FlatCAMGUI.py:6808
-#: flatcamGUI/FlatCAMGUI.py:6869 flatcamGUI/FlatCAMGUI.py:7068
-#: flatcamGUI/FlatCAMGUI.py:7200 flatcamGUI/FlatCAMGUI.py:7373
-#: flatcamGUI/ObjectUI.py:1548 flatcamTools/ToolNonCopperClear.py:198
+#: flatcamGUI/FlatCAMGUI.py:4632 flatcamGUI/FlatCAMGUI.py:5513
+#: flatcamGUI/FlatCAMGUI.py:6115 flatcamGUI/FlatCAMGUI.py:6394
+#: flatcamGUI/FlatCAMGUI.py:6433 flatcamGUI/FlatCAMGUI.py:6688
+#: flatcamGUI/FlatCAMGUI.py:6787 flatcamGUI/FlatCAMGUI.py:6994
+#: flatcamGUI/FlatCAMGUI.py:7055 flatcamGUI/FlatCAMGUI.py:7254
+#: flatcamGUI/FlatCAMGUI.py:7386 flatcamGUI/FlatCAMGUI.py:7559
+#: flatcamGUI/ObjectUI.py:1610 flatcamTools/ToolNonCopperClear.py:265
msgid "Parameters"
msgstr "Parameters"
-#: flatcamGUI/FlatCAMGUI.py:4569
+#: flatcamGUI/FlatCAMGUI.py:4634
msgid "A list of Gerber Editor parameters."
msgstr "A list of Gerber Editor parameters."
-#: flatcamGUI/FlatCAMGUI.py:4577 flatcamGUI/FlatCAMGUI.py:5458
-#: flatcamGUI/FlatCAMGUI.py:6060
+#: flatcamGUI/FlatCAMGUI.py:4642 flatcamGUI/FlatCAMGUI.py:5523
+#: flatcamGUI/FlatCAMGUI.py:6125
msgid "Selection limit"
msgstr "Selection limit"
-#: flatcamGUI/FlatCAMGUI.py:4579
+#: flatcamGUI/FlatCAMGUI.py:4644
msgid ""
"Set the number of selected Gerber geometry\n"
"items above which the utility geometry\n"
@@ -7462,23 +8443,23 @@ msgstr ""
"Increases the performance when moving a\n"
"large number of geometric elements."
-#: flatcamGUI/FlatCAMGUI.py:4591
+#: flatcamGUI/FlatCAMGUI.py:4656
msgid "New Aperture code"
msgstr "New Aperture code"
-#: flatcamGUI/FlatCAMGUI.py:4603
+#: flatcamGUI/FlatCAMGUI.py:4668
msgid "New Aperture size"
msgstr "New Aperture size"
-#: flatcamGUI/FlatCAMGUI.py:4605
+#: flatcamGUI/FlatCAMGUI.py:4670
msgid "Size for the new aperture"
msgstr "Size for the new aperture"
-#: flatcamGUI/FlatCAMGUI.py:4615
+#: flatcamGUI/FlatCAMGUI.py:4680
msgid "New Aperture type"
msgstr "New Aperture type"
-#: flatcamGUI/FlatCAMGUI.py:4617
+#: flatcamGUI/FlatCAMGUI.py:4682
msgid ""
"Type for the new aperture.\n"
"Can be 'C', 'R' or 'O'."
@@ -7486,35 +8467,36 @@ msgstr ""
"Type for the new aperture.\n"
"Can be 'C', 'R' or 'O'."
-#: flatcamGUI/FlatCAMGUI.py:4638
+#: flatcamGUI/FlatCAMGUI.py:4703
msgid "Aperture Dimensions"
msgstr "Aperture Dimensions"
-#: flatcamGUI/FlatCAMGUI.py:4640 flatcamGUI/FlatCAMGUI.py:5733
-#: flatcamGUI/FlatCAMGUI.py:6358
+#: flatcamGUI/FlatCAMGUI.py:4705 flatcamGUI/FlatCAMGUI.py:5798
+#: flatcamGUI/FlatCAMGUI.py:6445
msgid "Diameters of the cutting tools, separated by ','"
msgstr "Diameters of the cutting tools, separated by ','"
-#: flatcamGUI/FlatCAMGUI.py:4646
+#: flatcamGUI/FlatCAMGUI.py:4711
#, python-format
msgid "%s:"
msgstr "%s:"
-#: flatcamGUI/FlatCAMGUI.py:4650 flatcamGUI/FlatCAMGUI.py:5630
+#: flatcamGUI/FlatCAMGUI.py:4715 flatcamGUI/FlatCAMGUI.py:5564
+#: flatcamGUI/FlatCAMGUI.py:5695
msgid "Linear Dir."
msgstr "Linear Dir."
-#: flatcamGUI/FlatCAMGUI.py:4686
+#: flatcamGUI/FlatCAMGUI.py:4751
msgid "Circular Pad Array"
msgstr "Circular Pad Array"
-#: flatcamGUI/FlatCAMGUI.py:4690 flatcamGUI/FlatCAMGUI.py:5539
-#: flatcamGUI/FlatCAMGUI.py:5670
+#: flatcamGUI/FlatCAMGUI.py:4755 flatcamGUI/FlatCAMGUI.py:5604
+#: flatcamGUI/FlatCAMGUI.py:5735
msgid "Circular Dir."
msgstr "Circular Dir."
-#: flatcamGUI/FlatCAMGUI.py:4692 flatcamGUI/FlatCAMGUI.py:5541
-#: flatcamGUI/FlatCAMGUI.py:5672
+#: flatcamGUI/FlatCAMGUI.py:4757 flatcamGUI/FlatCAMGUI.py:5606
+#: flatcamGUI/FlatCAMGUI.py:5737
msgid ""
"Direction for circular array.\n"
"Can be CW = clockwise or CCW = counter clockwise."
@@ -7522,48 +8504,48 @@ msgstr ""
"Direction for circular array.\n"
"Can be CW = clockwise or CCW = counter clockwise."
-#: flatcamGUI/FlatCAMGUI.py:4703 flatcamGUI/FlatCAMGUI.py:5552
-#: flatcamGUI/FlatCAMGUI.py:5683
+#: flatcamGUI/FlatCAMGUI.py:4768 flatcamGUI/FlatCAMGUI.py:5617
+#: flatcamGUI/FlatCAMGUI.py:5748
msgid "Circ. Angle"
msgstr "Circ. Angle"
-#: flatcamGUI/FlatCAMGUI.py:4718
+#: flatcamGUI/FlatCAMGUI.py:4783
msgid "Distance at which to buffer the Gerber element."
msgstr "Distance at which to buffer the Gerber element."
-#: flatcamGUI/FlatCAMGUI.py:4725
+#: flatcamGUI/FlatCAMGUI.py:4790
msgid "Scale Tool"
msgstr "Scale Tool"
-#: flatcamGUI/FlatCAMGUI.py:4731
+#: flatcamGUI/FlatCAMGUI.py:4796
msgid "Factor to scale the Gerber element."
msgstr "Factor to scale the Gerber element."
-#: flatcamGUI/FlatCAMGUI.py:4738
+#: flatcamGUI/FlatCAMGUI.py:4803
msgid "Mark Area Tool"
msgstr "Mark Area Tool"
-#: flatcamGUI/FlatCAMGUI.py:4742 flatcamGUI/FlatCAMGUI.py:4752
+#: flatcamGUI/FlatCAMGUI.py:4807 flatcamGUI/FlatCAMGUI.py:4817
msgid "Threshold low"
msgstr "Threshold low"
-#: flatcamGUI/FlatCAMGUI.py:4744
+#: flatcamGUI/FlatCAMGUI.py:4809
msgid "Threshold value under which the apertures are not marked."
msgstr "Threshold value under which the apertures are not marked."
-#: flatcamGUI/FlatCAMGUI.py:4754
+#: flatcamGUI/FlatCAMGUI.py:4819
msgid "Threshold value over which the apertures are not marked."
msgstr "Threshold value over which the apertures are not marked."
-#: flatcamGUI/FlatCAMGUI.py:4770
+#: flatcamGUI/FlatCAMGUI.py:4835
msgid "Excellon General"
msgstr "Excellon General"
-#: flatcamGUI/FlatCAMGUI.py:4792
+#: flatcamGUI/FlatCAMGUI.py:4857
msgid "Excellon Format"
msgstr "Excellon Format"
-#: flatcamGUI/FlatCAMGUI.py:4794
+#: flatcamGUI/FlatCAMGUI.py:4859
msgid ""
"The NC drill files, usually named Excellon files\n"
"are files that can be found in different formats.\n"
@@ -7605,12 +8587,12 @@ msgstr ""
"Sprint Layout 2:4 INCH LZ\n"
"KiCAD 3:5 INCH TZ"
-#: flatcamGUI/FlatCAMGUI.py:4822
+#: flatcamGUI/FlatCAMGUI.py:4887
msgid "Default values for INCH are 2:4"
msgstr "Default values for INCH are 2:4"
-#: flatcamGUI/FlatCAMGUI.py:4830 flatcamGUI/FlatCAMGUI.py:4863
-#: flatcamGUI/FlatCAMGUI.py:5338
+#: flatcamGUI/FlatCAMGUI.py:4895 flatcamGUI/FlatCAMGUI.py:4928
+#: flatcamGUI/FlatCAMGUI.py:5403
msgid ""
"This numbers signify the number of digits in\n"
"the whole part of Excellon coordinates."
@@ -7618,8 +8600,8 @@ msgstr ""
"This numbers signify the number of digits in\n"
"the whole part of Excellon coordinates."
-#: flatcamGUI/FlatCAMGUI.py:4844 flatcamGUI/FlatCAMGUI.py:4877
-#: flatcamGUI/FlatCAMGUI.py:5352
+#: flatcamGUI/FlatCAMGUI.py:4909 flatcamGUI/FlatCAMGUI.py:4942
+#: flatcamGUI/FlatCAMGUI.py:5417
msgid ""
"This numbers signify the number of digits in\n"
"the decimal part of Excellon coordinates."
@@ -7627,19 +8609,19 @@ msgstr ""
"This numbers signify the number of digits in\n"
"the decimal part of Excellon coordinates."
-#: flatcamGUI/FlatCAMGUI.py:4852
+#: flatcamGUI/FlatCAMGUI.py:4917
msgid "METRIC"
msgstr "METRIC"
-#: flatcamGUI/FlatCAMGUI.py:4855
+#: flatcamGUI/FlatCAMGUI.py:4920
msgid "Default values for METRIC are 3:3"
msgstr "Default values for METRIC are 3:3"
-#: flatcamGUI/FlatCAMGUI.py:4886
+#: flatcamGUI/FlatCAMGUI.py:4951
msgid "Default Zeros"
msgstr "Default Zeros"
-#: flatcamGUI/FlatCAMGUI.py:4889 flatcamGUI/FlatCAMGUI.py:5387
+#: flatcamGUI/FlatCAMGUI.py:4954 flatcamGUI/FlatCAMGUI.py:5452
msgid ""
"This sets the type of Excellon zeros.\n"
"If LZ then Leading Zeros are kept and\n"
@@ -7653,86 +8635,86 @@ msgstr ""
"If TZ is checked then Trailing Zeros are kept\n"
"and Leading Zeros are removed."
-#: flatcamGUI/FlatCAMGUI.py:4900
-msgid ""
-"This sets the default type of Excellon zeros.\n"
-"If it is not detected in the parsed file the value here\n"
-"will be used.If LZ then Leading Zeros are kept and\n"
-"Trailing Zeros are removed.\n"
-"If TZ is checked then Trailing Zeros are kept\n"
-"and Leading Zeros are removed."
-msgstr ""
-"This sets the default type of Excellon zeros.\n"
-"If it is not detected in the parsed file the value here\n"
-"will be used.If LZ then Leading Zeros are kept and\n"
-"Trailing Zeros are removed.\n"
-"If TZ is checked then Trailing Zeros are kept\n"
-"and Leading Zeros are removed."
-
-#: flatcamGUI/FlatCAMGUI.py:4910
-msgid "Default Units"
-msgstr "Default Units"
-
-#: flatcamGUI/FlatCAMGUI.py:4913
-msgid ""
-"This sets the default units of Excellon files.\n"
-"If it is not detected in the parsed file the value here\n"
-"will be used.Some Excellon files don't have an header\n"
-"therefore this parameter will be used."
-msgstr ""
-"This sets the default units of Excellon files.\n"
-"If it is not detected in the parsed file the value here\n"
-"will be used.Some Excellon files don't have an header\n"
-"therefore this parameter will be used."
-
-#: flatcamGUI/FlatCAMGUI.py:4924
-msgid ""
-"This sets the units of Excellon files.\n"
-"Some Excellon files don't have an header\n"
-"therefore this parameter will be used."
-msgstr ""
-"This sets the units of Excellon files.\n"
-"Some Excellon files don't have an header\n"
-"therefore this parameter will be used."
-
-#: flatcamGUI/FlatCAMGUI.py:4932
-msgid "Excellon Optimization"
-msgstr "Excellon Optimization"
-
-#: flatcamGUI/FlatCAMGUI.py:4935
-msgid "Algorithm: "
-msgstr "Algorithm: "
-
-#: flatcamGUI/FlatCAMGUI.py:4937 flatcamGUI/FlatCAMGUI.py:4951
-msgid ""
-"This sets the optimization type for the Excellon drill path.\n"
-"If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
-"Guided Local Path is used. Default search time is 3sec.\n"
-"Use set_sys excellon_search_time value Tcl Command to set other values.\n"
-"If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
-"\n"
-"If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
-"Travelling Salesman algorithm for path optimization."
-msgstr ""
-"This sets the optimization type for the Excellon drill path.\n"
-"If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
-"Guided Local Path is used. Default search time is 3sec.\n"
-"Use set_sys excellon_search_time value Tcl Command to set other values.\n"
-"If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
-"\n"
-"If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
-"Travelling Salesman algorithm for path optimization."
-
-#: flatcamGUI/FlatCAMGUI.py:4948
-msgid "MH"
-msgstr "MH"
-
-#: flatcamGUI/FlatCAMGUI.py:4962
-msgid "Optimization Time"
-msgstr "Optimization Time"
-
#: flatcamGUI/FlatCAMGUI.py:4965
msgid ""
+"This sets the default type of Excellon zeros.\n"
+"If it is not detected in the parsed file the value here\n"
+"will be used.If LZ then Leading Zeros are kept and\n"
+"Trailing Zeros are removed.\n"
+"If TZ is checked then Trailing Zeros are kept\n"
+"and Leading Zeros are removed."
+msgstr ""
+"This sets the default type of Excellon zeros.\n"
+"If it is not detected in the parsed file the value here\n"
+"will be used.If LZ then Leading Zeros are kept and\n"
+"Trailing Zeros are removed.\n"
+"If TZ is checked then Trailing Zeros are kept\n"
+"and Leading Zeros are removed."
+
+#: flatcamGUI/FlatCAMGUI.py:4975
+msgid "Default Units"
+msgstr "Default Units"
+
+#: flatcamGUI/FlatCAMGUI.py:4978
+msgid ""
+"This sets the default units of Excellon files.\n"
+"If it is not detected in the parsed file the value here\n"
+"will be used.Some Excellon files don't have an header\n"
+"therefore this parameter will be used."
+msgstr ""
+"This sets the default units of Excellon files.\n"
+"If it is not detected in the parsed file the value here\n"
+"will be used.Some Excellon files don't have an header\n"
+"therefore this parameter will be used."
+
+#: flatcamGUI/FlatCAMGUI.py:4989
+msgid ""
+"This sets the units of Excellon files.\n"
+"Some Excellon files don't have an header\n"
+"therefore this parameter will be used."
+msgstr ""
+"This sets the units of Excellon files.\n"
+"Some Excellon files don't have an header\n"
+"therefore this parameter will be used."
+
+#: flatcamGUI/FlatCAMGUI.py:4997
+msgid "Excellon Optimization"
+msgstr "Excellon Optimization"
+
+#: flatcamGUI/FlatCAMGUI.py:5000
+msgid "Algorithm: "
+msgstr "Algorithm: "
+
+#: flatcamGUI/FlatCAMGUI.py:5002 flatcamGUI/FlatCAMGUI.py:5016
+msgid ""
+"This sets the optimization type for the Excellon drill path.\n"
+"If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
+"Guided Local Path is used. Default search time is 3sec.\n"
+"Use set_sys excellon_search_time value Tcl Command to set other values.\n"
+"If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
+"\n"
+"If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
+"Travelling Salesman algorithm for path optimization."
+msgstr ""
+"This sets the optimization type for the Excellon drill path.\n"
+"If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
+"Guided Local Path is used. Default search time is 3sec.\n"
+"Use set_sys excellon_search_time value Tcl Command to set other values.\n"
+"If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
+"\n"
+"If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
+"Travelling Salesman algorithm for path optimization."
+
+#: flatcamGUI/FlatCAMGUI.py:5013
+msgid "MH"
+msgstr "MH"
+
+#: flatcamGUI/FlatCAMGUI.py:5027
+msgid "Optimization Time"
+msgstr "Optimization Time"
+
+#: flatcamGUI/FlatCAMGUI.py:5030
+msgid ""
"When OR-Tools Metaheuristic (MH) is enabled there is a\n"
"maximum threshold for how much time is spent doing the\n"
"path optimization. This max duration is set here.\n"
@@ -7743,16 +8725,16 @@ msgstr ""
"path optimization. This max duration is set here.\n"
"In seconds."
-#: flatcamGUI/FlatCAMGUI.py:5008
+#: flatcamGUI/FlatCAMGUI.py:5073
msgid "Excellon Options"
msgstr "Excellon Options"
-#: flatcamGUI/FlatCAMGUI.py:5011 flatcamGUI/FlatCAMGUI.py:5752
-#: flatcamGUI/ObjectUI.py:582
+#: flatcamGUI/FlatCAMGUI.py:5076 flatcamGUI/FlatCAMGUI.py:5817
+#: flatcamGUI/ObjectUI.py:643
msgid "Create CNC Job"
msgstr "Create CNC Job"
-#: flatcamGUI/FlatCAMGUI.py:5013
+#: flatcamGUI/FlatCAMGUI.py:5078
msgid ""
"Parameters used to create a CNC Job object\n"
"for this drill object."
@@ -7760,13 +8742,14 @@ msgstr ""
"Parameters used to create a CNC Job object\n"
"for this drill object."
-#: flatcamGUI/FlatCAMGUI.py:5021 flatcamGUI/FlatCAMGUI.py:5764
-#: flatcamGUI/FlatCAMGUI.py:7004 flatcamGUI/ObjectUI.py:593
-#: flatcamGUI/ObjectUI.py:1069 flatcamTools/ToolCalculators.py:107
+#: flatcamGUI/FlatCAMGUI.py:5086 flatcamGUI/FlatCAMGUI.py:5829
+#: flatcamGUI/FlatCAMGUI.py:6530 flatcamGUI/FlatCAMGUI.py:7190
+#: flatcamGUI/ObjectUI.py:654 flatcamGUI/ObjectUI.py:1132
+#: flatcamTools/ToolCalculators.py:107 flatcamTools/ToolNonCopperClear.py:269
msgid "Cut Z"
msgstr "Cut Z"
-#: flatcamGUI/FlatCAMGUI.py:5023 flatcamGUI/ObjectUI.py:595
+#: flatcamGUI/FlatCAMGUI.py:5088 flatcamGUI/ObjectUI.py:656
msgid ""
"Drill depth (negative)\n"
"below the copper surface."
@@ -7774,12 +8757,12 @@ msgstr ""
"Drill depth (negative)\n"
"below the copper surface."
-#: flatcamGUI/FlatCAMGUI.py:5030 flatcamGUI/FlatCAMGUI.py:5802
-#: flatcamGUI/ObjectUI.py:603 flatcamGUI/ObjectUI.py:1103
+#: flatcamGUI/FlatCAMGUI.py:5095 flatcamGUI/FlatCAMGUI.py:5867
+#: flatcamGUI/ObjectUI.py:664 flatcamGUI/ObjectUI.py:1166
msgid "Travel Z"
msgstr "Travel Z"
-#: flatcamGUI/FlatCAMGUI.py:5032 flatcamGUI/ObjectUI.py:605
+#: flatcamGUI/FlatCAMGUI.py:5097 flatcamGUI/ObjectUI.py:666
msgid ""
"Tool height when travelling\n"
"across the XY plane."
@@ -7787,12 +8770,12 @@ msgstr ""
"Tool height when travelling\n"
"across the XY plane."
-#: flatcamGUI/FlatCAMGUI.py:5040 flatcamGUI/FlatCAMGUI.py:5812
-#: flatcamGUI/ObjectUI.py:613 flatcamGUI/ObjectUI.py:1121
+#: flatcamGUI/FlatCAMGUI.py:5105 flatcamGUI/FlatCAMGUI.py:5877
+#: flatcamGUI/ObjectUI.py:674 flatcamGUI/ObjectUI.py:1184
msgid "Tool change"
msgstr "Tool change"
-#: flatcamGUI/FlatCAMGUI.py:5042 flatcamGUI/ObjectUI.py:615
+#: flatcamGUI/FlatCAMGUI.py:5107 flatcamGUI/ObjectUI.py:676
msgid ""
"Include tool-change sequence\n"
"in G-Code (Pause for tool change)."
@@ -7800,12 +8783,12 @@ msgstr ""
"Include tool-change sequence\n"
"in G-Code (Pause for tool change)."
-#: flatcamGUI/FlatCAMGUI.py:5049 flatcamGUI/FlatCAMGUI.py:5824
+#: flatcamGUI/FlatCAMGUI.py:5114 flatcamGUI/FlatCAMGUI.py:5889
msgid "Toolchange Z"
msgstr "Toolchange Z"
-#: flatcamGUI/FlatCAMGUI.py:5051 flatcamGUI/FlatCAMGUI.py:5827
-#: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:1117
+#: flatcamGUI/FlatCAMGUI.py:5116 flatcamGUI/FlatCAMGUI.py:5892
+#: flatcamGUI/ObjectUI.py:684 flatcamGUI/ObjectUI.py:1180
msgid ""
"Z-axis position (height) for\n"
"tool change."
@@ -7813,11 +8796,12 @@ msgstr ""
"Z-axis position (height) for\n"
"tool change."
-#: flatcamGUI/FlatCAMGUI.py:5058 flatcamGUI/ObjectUI.py:652
-msgid "Feedrate (Plunge):"
-msgstr "Feedrate (Plunge):"
+#: flatcamGUI/FlatCAMGUI.py:5123 flatcamGUI/ObjectUI.py:713
+#| msgid "Feedrate (Plunge):"
+msgid "Feedrate (Plunge)"
+msgstr "Feedrate (Plunge)"
-#: flatcamGUI/FlatCAMGUI.py:5060 flatcamGUI/ObjectUI.py:654
+#: flatcamGUI/FlatCAMGUI.py:5125 flatcamGUI/ObjectUI.py:715
msgid ""
"Tool speed while drilling\n"
"(in units per minute).\n"
@@ -7827,11 +8811,11 @@ msgstr ""
"(in units per minute).\n"
"This is for linear move G01."
-#: flatcamGUI/FlatCAMGUI.py:5069
+#: flatcamGUI/FlatCAMGUI.py:5134
msgid "Spindle Speed"
msgstr "Spindle Speed"
-#: flatcamGUI/FlatCAMGUI.py:5071 flatcamGUI/ObjectUI.py:681
+#: flatcamGUI/FlatCAMGUI.py:5136 flatcamGUI/ObjectUI.py:742
msgid ""
"Speed of the spindle\n"
"in RPM (optional)"
@@ -7839,11 +8823,11 @@ msgstr ""
"Speed of the spindle\n"
"in RPM (optional)"
-#: flatcamGUI/FlatCAMGUI.py:5079 flatcamGUI/FlatCAMGUI.py:5870
+#: flatcamGUI/FlatCAMGUI.py:5144 flatcamGUI/FlatCAMGUI.py:5935
msgid "Spindle dir."
msgstr "Spindle dir."
-#: flatcamGUI/FlatCAMGUI.py:5081 flatcamGUI/FlatCAMGUI.py:5872
+#: flatcamGUI/FlatCAMGUI.py:5146 flatcamGUI/FlatCAMGUI.py:5937
msgid ""
"This sets the direction that the spindle is rotating.\n"
"It can be either:\n"
@@ -7855,13 +8839,13 @@ msgstr ""
"- CW = clockwise or\n"
"- CCW = counter clockwise"
-#: flatcamGUI/FlatCAMGUI.py:5093 flatcamGUI/FlatCAMGUI.py:5884
-#: flatcamGUI/ObjectUI.py:689 flatcamGUI/ObjectUI.py:1217
+#: flatcamGUI/FlatCAMGUI.py:5158 flatcamGUI/FlatCAMGUI.py:5949
+#: flatcamGUI/ObjectUI.py:750 flatcamGUI/ObjectUI.py:1280
msgid "Dwell"
msgstr "Dwell"
-#: flatcamGUI/FlatCAMGUI.py:5095 flatcamGUI/FlatCAMGUI.py:5886
-#: flatcamGUI/ObjectUI.py:691 flatcamGUI/ObjectUI.py:1220
+#: flatcamGUI/FlatCAMGUI.py:5160 flatcamGUI/FlatCAMGUI.py:5951
+#: flatcamGUI/ObjectUI.py:752 flatcamGUI/ObjectUI.py:1283
msgid ""
"Pause to allow the spindle to reach its\n"
"speed before cutting."
@@ -7869,21 +8853,21 @@ msgstr ""
"Pause to allow the spindle to reach its\n"
"speed before cutting."
-#: flatcamGUI/FlatCAMGUI.py:5098
-msgid "Duration:"
-msgstr "Duration:"
+#: flatcamGUI/FlatCAMGUI.py:5163 flatcamGUI/FlatCAMGUI.py:5954
+msgid "Duration"
+msgstr "Duration"
-#: flatcamGUI/FlatCAMGUI.py:5100 flatcamGUI/FlatCAMGUI.py:5891
-#: flatcamGUI/ObjectUI.py:696 flatcamGUI/ObjectUI.py:1226
+#: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/FlatCAMGUI.py:5956
+#: flatcamGUI/ObjectUI.py:757 flatcamGUI/ObjectUI.py:1289
msgid "Number of time units for spindle to dwell."
msgstr "Number of time units for spindle to dwell."
-#: flatcamGUI/FlatCAMGUI.py:5112 flatcamGUI/FlatCAMGUI.py:5901
-#: flatcamGUI/ObjectUI.py:704
+#: flatcamGUI/FlatCAMGUI.py:5177 flatcamGUI/FlatCAMGUI.py:5966
+#: flatcamGUI/ObjectUI.py:765
msgid "Postprocessor"
msgstr "Postprocessor"
-#: flatcamGUI/FlatCAMGUI.py:5114 flatcamGUI/ObjectUI.py:706
+#: flatcamGUI/FlatCAMGUI.py:5179 flatcamGUI/ObjectUI.py:767
msgid ""
"The postprocessor JSON file that dictates\n"
"Gcode output."
@@ -7891,11 +8875,11 @@ msgstr ""
"The postprocessor JSON file that dictates\n"
"Gcode output."
-#: flatcamGUI/FlatCAMGUI.py:5123 flatcamGUI/ObjectUI.py:745
+#: flatcamGUI/FlatCAMGUI.py:5188 flatcamGUI/ObjectUI.py:807
msgid "Gcode"
msgstr "Gcode"
-#: flatcamGUI/FlatCAMGUI.py:5125
+#: flatcamGUI/FlatCAMGUI.py:5190
msgid ""
"Choose what to use for GCode generation:\n"
"'Drills', 'Slots' or 'Both'.\n"
@@ -7907,23 +8891,23 @@ msgstr ""
"When choosing 'Slots' or 'Both', slots will be\n"
"converted to drills."
-#: flatcamGUI/FlatCAMGUI.py:5141 flatcamGUI/ObjectUI.py:769
+#: flatcamGUI/FlatCAMGUI.py:5206 flatcamGUI/ObjectUI.py:831
msgid "Mill Holes"
msgstr "Mill Holes"
-#: flatcamGUI/FlatCAMGUI.py:5143 flatcamGUI/ObjectUI.py:771
+#: flatcamGUI/FlatCAMGUI.py:5208 flatcamGUI/ObjectUI.py:833
msgid "Create Geometry for milling holes."
msgstr "Create Geometry for milling holes."
-#: flatcamGUI/FlatCAMGUI.py:5147 flatcamGUI/ObjectUI.py:783
+#: flatcamGUI/FlatCAMGUI.py:5212 flatcamGUI/ObjectUI.py:846
msgid "Drill Tool dia"
msgstr "Drill Tool dia"
-#: flatcamGUI/FlatCAMGUI.py:5154 flatcamGUI/ObjectUI.py:799
+#: flatcamGUI/FlatCAMGUI.py:5219 flatcamGUI/ObjectUI.py:862
msgid "Slot Tool dia"
msgstr "Slot Tool dia"
-#: flatcamGUI/FlatCAMGUI.py:5156 flatcamGUI/ObjectUI.py:801
+#: flatcamGUI/FlatCAMGUI.py:5221 flatcamGUI/ObjectUI.py:864
msgid ""
"Diameter of the cutting tool\n"
"when milling slots."
@@ -7931,19 +8915,19 @@ msgstr ""
"Diameter of the cutting tool\n"
"when milling slots."
-#: flatcamGUI/FlatCAMGUI.py:5168
+#: flatcamGUI/FlatCAMGUI.py:5233
msgid "Defaults"
msgstr "Defaults"
-#: flatcamGUI/FlatCAMGUI.py:5181
+#: flatcamGUI/FlatCAMGUI.py:5246
msgid "Excellon Adv. Options"
msgstr "Excellon Adv. Options"
-#: flatcamGUI/FlatCAMGUI.py:5187 flatcamGUI/FlatCAMGUI.py:5924
+#: flatcamGUI/FlatCAMGUI.py:5252 flatcamGUI/FlatCAMGUI.py:5989
msgid "Advanced Options"
msgstr "Advanced Options"
-#: flatcamGUI/FlatCAMGUI.py:5189
+#: flatcamGUI/FlatCAMGUI.py:5254
msgid ""
"Parameters used to create a CNC Job object\n"
"for this drill object that are shown when App Level is Advanced."
@@ -7951,11 +8935,11 @@ msgstr ""
"Parameters used to create a CNC Job object\n"
"for this drill object that are shown when App Level is Advanced."
-#: flatcamGUI/FlatCAMGUI.py:5197 flatcamGUI/ObjectUI.py:555
+#: flatcamGUI/FlatCAMGUI.py:5262 flatcamGUI/ObjectUI.py:614
msgid "Offset Z"
msgstr "Offset Z"
-#: flatcamGUI/FlatCAMGUI.py:5199 flatcamGUI/ObjectUI.py:572
+#: flatcamGUI/FlatCAMGUI.py:5264 flatcamGUI/ObjectUI.py:632
msgid ""
"Some drill bits (the larger ones) need to drill deeper\n"
"to create the desired exit hole diameter due of the tip shape.\n"
@@ -7965,20 +8949,20 @@ msgstr ""
"to create the desired exit hole diameter due of the tip shape.\n"
"The value here can compensate the Cut Z parameter."
-#: flatcamGUI/FlatCAMGUI.py:5206
+#: flatcamGUI/FlatCAMGUI.py:5271
msgid "Toolchange X,Y"
msgstr "Toolchange X,Y"
-#: flatcamGUI/FlatCAMGUI.py:5208 flatcamGUI/FlatCAMGUI.py:5937
+#: flatcamGUI/FlatCAMGUI.py:5273 flatcamGUI/FlatCAMGUI.py:6002
msgid "Toolchange X,Y position."
msgstr "Toolchange X,Y position."
-#: flatcamGUI/FlatCAMGUI.py:5214 flatcamGUI/FlatCAMGUI.py:5944
-#: flatcamGUI/ObjectUI.py:632
+#: flatcamGUI/FlatCAMGUI.py:5279 flatcamGUI/FlatCAMGUI.py:6009
+#: flatcamGUI/ObjectUI.py:693
msgid "Start move Z"
msgstr "Start move Z"
-#: flatcamGUI/FlatCAMGUI.py:5216 flatcamGUI/ObjectUI.py:634
+#: flatcamGUI/FlatCAMGUI.py:5281 flatcamGUI/ObjectUI.py:695
msgid ""
"Height of the tool just after start.\n"
"Delete the value if you don't need this feature."
@@ -7986,13 +8970,13 @@ msgstr ""
"Height of the tool just after start.\n"
"Delete the value if you don't need this feature."
-#: flatcamGUI/FlatCAMGUI.py:5223 flatcamGUI/FlatCAMGUI.py:5954
-#: flatcamGUI/ObjectUI.py:642 flatcamGUI/ObjectUI.py:1147
+#: flatcamGUI/FlatCAMGUI.py:5288 flatcamGUI/FlatCAMGUI.py:6019
+#: flatcamGUI/ObjectUI.py:703 flatcamGUI/ObjectUI.py:1210
msgid "End move Z"
msgstr "End move Z"
-#: flatcamGUI/FlatCAMGUI.py:5225 flatcamGUI/FlatCAMGUI.py:5956
-#: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1149
+#: flatcamGUI/FlatCAMGUI.py:5290 flatcamGUI/FlatCAMGUI.py:6021
+#: flatcamGUI/ObjectUI.py:705 flatcamGUI/ObjectUI.py:1212
msgid ""
"Height of the tool after\n"
"the last move at the end of the job."
@@ -8000,11 +8984,11 @@ msgstr ""
"Height of the tool after\n"
"the last move at the end of the job."
-#: flatcamGUI/FlatCAMGUI.py:5232 flatcamGUI/ObjectUI.py:663
+#: flatcamGUI/FlatCAMGUI.py:5297 flatcamGUI/ObjectUI.py:724
msgid "Feedrate Rapids"
msgstr "Feedrate Rapids"
-#: flatcamGUI/FlatCAMGUI.py:5234 flatcamGUI/ObjectUI.py:665
+#: flatcamGUI/FlatCAMGUI.py:5299 flatcamGUI/ObjectUI.py:726
msgid ""
"Tool speed while drilling\n"
"(in units per minute).\n"
@@ -8018,13 +9002,13 @@ msgstr ""
"It is useful only for Marlin,\n"
"ignore for any other cases."
-#: flatcamGUI/FlatCAMGUI.py:5245 flatcamGUI/FlatCAMGUI.py:5987
-#: flatcamGUI/ObjectUI.py:715 flatcamGUI/ObjectUI.py:1245
+#: flatcamGUI/FlatCAMGUI.py:5310 flatcamGUI/FlatCAMGUI.py:6052
+#: flatcamGUI/ObjectUI.py:776 flatcamGUI/ObjectUI.py:1308
msgid "Probe Z depth"
msgstr "Probe Z depth"
-#: flatcamGUI/FlatCAMGUI.py:5247 flatcamGUI/FlatCAMGUI.py:5989
-#: flatcamGUI/ObjectUI.py:717 flatcamGUI/ObjectUI.py:1247
+#: flatcamGUI/FlatCAMGUI.py:5312 flatcamGUI/FlatCAMGUI.py:6054
+#: flatcamGUI/ObjectUI.py:778 flatcamGUI/ObjectUI.py:1310
msgid ""
"The maximum depth that the probe is allowed\n"
"to probe. Negative value, in current units."
@@ -8032,21 +9016,21 @@ msgstr ""
"The maximum depth that the probe is allowed\n"
"to probe. Negative value, in current units."
-#: flatcamGUI/FlatCAMGUI.py:5255 flatcamGUI/FlatCAMGUI.py:5997
-#: flatcamGUI/ObjectUI.py:727 flatcamGUI/ObjectUI.py:1257
+#: flatcamGUI/FlatCAMGUI.py:5320 flatcamGUI/FlatCAMGUI.py:6062
+#: flatcamGUI/ObjectUI.py:788 flatcamGUI/ObjectUI.py:1320
msgid "Feedrate Probe"
msgstr "Feedrate Probe"
-#: flatcamGUI/FlatCAMGUI.py:5257 flatcamGUI/FlatCAMGUI.py:5999
-#: flatcamGUI/ObjectUI.py:729 flatcamGUI/ObjectUI.py:1259
+#: flatcamGUI/FlatCAMGUI.py:5322 flatcamGUI/FlatCAMGUI.py:6064
+#: flatcamGUI/ObjectUI.py:790 flatcamGUI/ObjectUI.py:1322
msgid "The feedrate used while the probe is probing."
msgstr "The feedrate used while the probe is probing."
-#: flatcamGUI/FlatCAMGUI.py:5263
-msgid "Fast Plunge:"
-msgstr "Fast Plunge:"
+#: flatcamGUI/FlatCAMGUI.py:5328 flatcamGUI/FlatCAMGUI.py:6071
+msgid "Fast Plunge"
+msgstr "Fast Plunge"
-#: flatcamGUI/FlatCAMGUI.py:5265 flatcamGUI/FlatCAMGUI.py:6008
+#: flatcamGUI/FlatCAMGUI.py:5330 flatcamGUI/FlatCAMGUI.py:6073
msgid ""
"By checking this, the vertical move from\n"
"Z_Toolchange to Z_move is done with G0,\n"
@@ -8058,11 +9042,11 @@ msgstr ""
"meaning the fastest speed available.\n"
"WARNING: the move is done at Toolchange X,Y coords."
-#: flatcamGUI/FlatCAMGUI.py:5274
+#: flatcamGUI/FlatCAMGUI.py:5339
msgid "Fast Retract"
msgstr "Fast Retract"
-#: flatcamGUI/FlatCAMGUI.py:5276
+#: flatcamGUI/FlatCAMGUI.py:5341
msgid ""
"Exit hole strategy.\n"
" - When uncheked, while exiting the drilled hole the drill bit\n"
@@ -8078,11 +9062,11 @@ msgstr ""
" - When checked the travel from Z cut (cut depth) to Z_move\n"
"(travel height) is done as fast as possible (G0) in one move."
-#: flatcamGUI/FlatCAMGUI.py:5295
+#: flatcamGUI/FlatCAMGUI.py:5360
msgid "Excellon Export"
msgstr "Excellon Export"
-#: flatcamGUI/FlatCAMGUI.py:5300
+#: flatcamGUI/FlatCAMGUI.py:5365
msgid ""
"The parameters set here are used in the file exported\n"
"when using the File -> Export -> Export Excellon menu entry."
@@ -8090,11 +9074,11 @@ msgstr ""
"The parameters set here are used in the file exported\n"
"when using the File -> Export -> Export Excellon menu entry."
-#: flatcamGUI/FlatCAMGUI.py:5311 flatcamGUI/FlatCAMGUI.py:5317
+#: flatcamGUI/FlatCAMGUI.py:5376 flatcamGUI/FlatCAMGUI.py:5382
msgid "The units used in the Excellon file."
msgstr "The units used in the Excellon file."
-#: flatcamGUI/FlatCAMGUI.py:5325
+#: flatcamGUI/FlatCAMGUI.py:5390
msgid ""
"The NC drill files, usually named Excellon files\n"
"are files that can be found in different formats.\n"
@@ -8106,11 +9090,11 @@ msgstr ""
"Here we set the format used when the provided\n"
"coordinates are not using period."
-#: flatcamGUI/FlatCAMGUI.py:5361
+#: flatcamGUI/FlatCAMGUI.py:5426
msgid "Format"
msgstr "Format"
-#: flatcamGUI/FlatCAMGUI.py:5363 flatcamGUI/FlatCAMGUI.py:5373
+#: flatcamGUI/FlatCAMGUI.py:5428 flatcamGUI/FlatCAMGUI.py:5438
msgid ""
"Select the kind of coordinates format used.\n"
"Coordinates can be saved with decimal point or without.\n"
@@ -8126,15 +9110,15 @@ msgstr ""
"Also it will have to be specified if LZ = leading zeros are kept\n"
"or TZ = trailing zeros are kept."
-#: flatcamGUI/FlatCAMGUI.py:5370
+#: flatcamGUI/FlatCAMGUI.py:5435
msgid "Decimal"
msgstr "Decimal"
-#: flatcamGUI/FlatCAMGUI.py:5371
+#: flatcamGUI/FlatCAMGUI.py:5436
msgid "No-Decimal"
msgstr "No-Decimal"
-#: flatcamGUI/FlatCAMGUI.py:5397
+#: flatcamGUI/FlatCAMGUI.py:5462
msgid ""
"This sets the default type of Excellon zeros.\n"
"If LZ then Leading Zeros are kept and\n"
@@ -8148,11 +9132,11 @@ msgstr ""
"If TZ is checked then Trailing Zeros are kept\n"
"and Leading Zeros are removed."
-#: flatcamGUI/FlatCAMGUI.py:5407
+#: flatcamGUI/FlatCAMGUI.py:5472
msgid "Slot type"
msgstr "Slot type"
-#: flatcamGUI/FlatCAMGUI.py:5410 flatcamGUI/FlatCAMGUI.py:5420
+#: flatcamGUI/FlatCAMGUI.py:5475 flatcamGUI/FlatCAMGUI.py:5485
msgid ""
"This sets how the slots will be exported.\n"
"If ROUTED then the slots will be routed\n"
@@ -8166,19 +9150,19 @@ msgstr ""
"If DRILLED(G85) the slots will be exported\n"
"using the Drilled slot command (G85)."
-#: flatcamGUI/FlatCAMGUI.py:5417
+#: flatcamGUI/FlatCAMGUI.py:5482
msgid "Routed"
msgstr "Routed"
-#: flatcamGUI/FlatCAMGUI.py:5418
+#: flatcamGUI/FlatCAMGUI.py:5483
msgid "Drilled(G85)"
msgstr "Drilled(G85)"
-#: flatcamGUI/FlatCAMGUI.py:5450
+#: flatcamGUI/FlatCAMGUI.py:5515
msgid "A list of Excellon Editor parameters."
msgstr "A list of Excellon Editor parameters."
-#: flatcamGUI/FlatCAMGUI.py:5460
+#: flatcamGUI/FlatCAMGUI.py:5525
msgid ""
"Set the number of selected Excellon geometry\n"
"items above which the utility geometry\n"
@@ -8192,56 +9176,40 @@ msgstr ""
"Increases the performance when moving a\n"
"large number of geometric elements."
-#: flatcamGUI/FlatCAMGUI.py:5472
+#: flatcamGUI/FlatCAMGUI.py:5537
msgid "New Tool Dia"
msgstr "New Tool Dia"
-#: flatcamGUI/FlatCAMGUI.py:5484
-msgid "Nr of drills"
-msgstr "Nr of drills"
-
-#: flatcamGUI/FlatCAMGUI.py:5495
+#: flatcamGUI/FlatCAMGUI.py:5560
msgid "Linear Drill Array"
msgstr "Linear Drill Array"
-#: flatcamGUI/FlatCAMGUI.py:5499
-msgid "Linear Dir.:"
-msgstr "Linear Dir.:"
-
-#: flatcamGUI/FlatCAMGUI.py:5515 flatcamGUI/FlatCAMGUI.py:5935
+#: flatcamGUI/FlatCAMGUI.py:5580 flatcamGUI/FlatCAMGUI.py:6000
#, python-format
msgid "%s:"
msgstr "%s:"
-#: flatcamGUI/FlatCAMGUI.py:5535
+#: flatcamGUI/FlatCAMGUI.py:5600
msgid "Circular Drill Array"
msgstr "Circular Drill Array"
-#: flatcamGUI/FlatCAMGUI.py:5563 flatcamGUI/ObjectUI.py:554
+#: flatcamGUI/FlatCAMGUI.py:5628 flatcamGUI/ObjectUI.py:613
msgid "Slots"
msgstr "Slots"
-#: flatcamGUI/FlatCAMGUI.py:5567 flatcamTools/ToolProperties.py:159
-msgid "Length"
-msgstr "Length"
-
-#: flatcamGUI/FlatCAMGUI.py:5614
+#: flatcamGUI/FlatCAMGUI.py:5679
msgid "Linear Slot Array"
msgstr "Linear Slot Array"
-#: flatcamGUI/FlatCAMGUI.py:5618
-msgid "Nr of slots"
-msgstr "Nr of slots"
-
-#: flatcamGUI/FlatCAMGUI.py:5666
+#: flatcamGUI/FlatCAMGUI.py:5731
msgid "Circular Slot Array"
msgstr "Circular Slot Array"
-#: flatcamGUI/FlatCAMGUI.py:5700
+#: flatcamGUI/FlatCAMGUI.py:5765
msgid "Geometry General"
msgstr "Geometry General"
-#: flatcamGUI/FlatCAMGUI.py:5719
+#: flatcamGUI/FlatCAMGUI.py:5784
msgid ""
"The number of circle steps for Geometry \n"
"circle and arc shapes linear approximation."
@@ -8249,11 +9217,11 @@ msgstr ""
"The number of circle steps for Geometry \n"
"circle and arc shapes linear approximation."
-#: flatcamGUI/FlatCAMGUI.py:5747
+#: flatcamGUI/FlatCAMGUI.py:5812
msgid "Geometry Options"
msgstr "Geometry Options"
-#: flatcamGUI/FlatCAMGUI.py:5754
+#: flatcamGUI/FlatCAMGUI.py:5819
msgid ""
"Create a CNC Job object\n"
"tracing the contours of this\n"
@@ -8263,7 +9231,7 @@ msgstr ""
"tracing the contours of this\n"
"Geometry object."
-#: flatcamGUI/FlatCAMGUI.py:5766 flatcamGUI/ObjectUI.py:1072
+#: flatcamGUI/FlatCAMGUI.py:5831 flatcamGUI/ObjectUI.py:1135
msgid ""
"Cutting depth (negative)\n"
"below the copper surface."
@@ -8271,11 +9239,11 @@ msgstr ""
"Cutting depth (negative)\n"
"below the copper surface."
-#: flatcamGUI/FlatCAMGUI.py:5774 flatcamGUI/ObjectUI.py:1081
+#: flatcamGUI/FlatCAMGUI.py:5839 flatcamGUI/ObjectUI.py:1144
msgid "Multi-Depth"
msgstr "Multi-Depth"
-#: flatcamGUI/FlatCAMGUI.py:5777 flatcamGUI/ObjectUI.py:1084
+#: flatcamGUI/FlatCAMGUI.py:5842 flatcamGUI/ObjectUI.py:1147
msgid ""
"Use multiple passes to limit\n"
"the cut depth in each pass. Will\n"
@@ -8287,11 +9255,11 @@ msgstr ""
"cut multiple times until Cut Z is\n"
"reached."
-#: flatcamGUI/FlatCAMGUI.py:5786
+#: flatcamGUI/FlatCAMGUI.py:5851
msgid "Depth/Pass"
msgstr "Depth/Pass"
-#: flatcamGUI/FlatCAMGUI.py:5788
+#: flatcamGUI/FlatCAMGUI.py:5853
msgid ""
"The depth to cut on each pass,\n"
"when multidepth is enabled.\n"
@@ -8305,7 +9273,7 @@ msgstr ""
"it is a fraction from the depth\n"
"which has negative value."
-#: flatcamGUI/FlatCAMGUI.py:5804 flatcamGUI/ObjectUI.py:1105
+#: flatcamGUI/FlatCAMGUI.py:5869 flatcamGUI/ObjectUI.py:1168
msgid ""
"Height of the tool when\n"
"moving without cutting."
@@ -8313,7 +9281,7 @@ msgstr ""
"Height of the tool when\n"
"moving without cutting."
-#: flatcamGUI/FlatCAMGUI.py:5815 flatcamGUI/ObjectUI.py:1124
+#: flatcamGUI/FlatCAMGUI.py:5880 flatcamGUI/ObjectUI.py:1187
msgid ""
"Include tool-change sequence\n"
"in the Machine Code (Pause for tool change)."
@@ -8321,11 +9289,11 @@ msgstr ""
"Include tool-change sequence\n"
"in the Machine Code (Pause for tool change)."
-#: flatcamGUI/FlatCAMGUI.py:5836 flatcamGUI/ObjectUI.py:1157
+#: flatcamGUI/FlatCAMGUI.py:5901 flatcamGUI/ObjectUI.py:1220
msgid "Feed Rate X-Y"
msgstr "Feed Rate X-Y"
-#: flatcamGUI/FlatCAMGUI.py:5838 flatcamGUI/ObjectUI.py:1159
+#: flatcamGUI/FlatCAMGUI.py:5903 flatcamGUI/ObjectUI.py:1222
msgid ""
"Cutting speed in the XY\n"
"plane in units per minute"
@@ -8333,11 +9301,11 @@ msgstr ""
"Cutting speed in the XY\n"
"plane in units per minute"
-#: flatcamGUI/FlatCAMGUI.py:5846 flatcamGUI/ObjectUI.py:1167
+#: flatcamGUI/FlatCAMGUI.py:5911 flatcamGUI/ObjectUI.py:1230
msgid "Feed Rate Z"
msgstr "Feed Rate Z"
-#: flatcamGUI/FlatCAMGUI.py:5848 flatcamGUI/ObjectUI.py:1169
+#: flatcamGUI/FlatCAMGUI.py:5913 flatcamGUI/ObjectUI.py:1232
msgid ""
"Cutting speed in the XY\n"
"plane in units per minute.\n"
@@ -8347,12 +9315,12 @@ msgstr ""
"plane in units per minute.\n"
"It is called also Plunge."
-#: flatcamGUI/FlatCAMGUI.py:5857 flatcamGUI/ObjectUI.py:679
-#: flatcamGUI/ObjectUI.py:1204
+#: flatcamGUI/FlatCAMGUI.py:5922 flatcamGUI/ObjectUI.py:740
+#: flatcamGUI/ObjectUI.py:1267
msgid "Spindle speed"
msgstr "Spindle speed"
-#: flatcamGUI/FlatCAMGUI.py:5860 flatcamGUI/ObjectUI.py:1207
+#: flatcamGUI/FlatCAMGUI.py:5925 flatcamGUI/ObjectUI.py:1270
msgid ""
"Speed of the spindle in RPM (optional).\n"
"If LASER postprocessor is used,\n"
@@ -8362,11 +9330,7 @@ msgstr ""
"If LASER postprocessor is used,\n"
"this value is the power of laser."
-#: flatcamGUI/FlatCAMGUI.py:5889
-msgid "Duration"
-msgstr "Duration"
-
-#: flatcamGUI/FlatCAMGUI.py:5903 flatcamGUI/ObjectUI.py:1236
+#: flatcamGUI/FlatCAMGUI.py:5968 flatcamGUI/ObjectUI.py:1299
msgid ""
"The Postprocessor file that dictates\n"
"the Machine Code (like GCode, RML, HPGL) output."
@@ -8374,11 +9338,11 @@ msgstr ""
"The Postprocessor file that dictates\n"
"the Machine Code (like GCode, RML, HPGL) output."
-#: flatcamGUI/FlatCAMGUI.py:5919
+#: flatcamGUI/FlatCAMGUI.py:5984
msgid "Geometry Adv. Options"
msgstr "Geometry Adv. Options"
-#: flatcamGUI/FlatCAMGUI.py:5926
+#: flatcamGUI/FlatCAMGUI.py:5991
msgid ""
"Parameters to create a CNC Job object\n"
"tracing the contours of a Geometry object."
@@ -8386,7 +9350,7 @@ msgstr ""
"Parameters to create a CNC Job object\n"
"tracing the contours of a Geometry object."
-#: flatcamGUI/FlatCAMGUI.py:5946
+#: flatcamGUI/FlatCAMGUI.py:6011
msgid ""
"Height of the tool just after starting the work.\n"
"Delete the value if you don't need this feature."
@@ -8394,11 +9358,11 @@ msgstr ""
"Height of the tool just after starting the work.\n"
"Delete the value if you don't need this feature."
-#: flatcamGUI/FlatCAMGUI.py:5964 flatcamGUI/ObjectUI.py:1178
+#: flatcamGUI/FlatCAMGUI.py:6029 flatcamGUI/ObjectUI.py:1241
msgid "Feed Rate Rapids"
msgstr "Feed Rate Rapids"
-#: flatcamGUI/FlatCAMGUI.py:5966 flatcamGUI/ObjectUI.py:1180
+#: flatcamGUI/FlatCAMGUI.py:6031 flatcamGUI/ObjectUI.py:1243
msgid ""
"Cutting speed in the XY plane\n"
"(in units per minute).\n"
@@ -8412,11 +9376,11 @@ msgstr ""
"It is useful only for Marlin,\n"
"ignore for any other cases."
-#: flatcamGUI/FlatCAMGUI.py:5977 flatcamGUI/ObjectUI.py:1194
+#: flatcamGUI/FlatCAMGUI.py:6042 flatcamGUI/ObjectUI.py:1257
msgid "Re-cut 1st pt."
msgstr "Re-cut 1st pt."
-#: flatcamGUI/FlatCAMGUI.py:5979 flatcamGUI/ObjectUI.py:1196
+#: flatcamGUI/FlatCAMGUI.py:6044 flatcamGUI/ObjectUI.py:1259
msgid ""
"In order to remove possible\n"
"copper leftovers where first cut\n"
@@ -8428,15 +9392,11 @@ msgstr ""
"meet with last cut, we generate an\n"
"extended cut over the first cut section."
-#: flatcamGUI/FlatCAMGUI.py:6006
-msgid "Fast Plunge"
-msgstr "Fast Plunge"
-
-#: flatcamGUI/FlatCAMGUI.py:6018
+#: flatcamGUI/FlatCAMGUI.py:6083
msgid "Seg. X size"
msgstr "Seg. X size"
-#: flatcamGUI/FlatCAMGUI.py:6020
+#: flatcamGUI/FlatCAMGUI.py:6085
msgid ""
"The size of the trace segment on the X axis.\n"
"Useful for auto-leveling.\n"
@@ -8446,11 +9406,11 @@ msgstr ""
"Useful for auto-leveling.\n"
"A value of 0 means no segmentation on the X axis."
-#: flatcamGUI/FlatCAMGUI.py:6029
+#: flatcamGUI/FlatCAMGUI.py:6094
msgid "Seg. Y size"
msgstr "Seg. Y size"
-#: flatcamGUI/FlatCAMGUI.py:6031
+#: flatcamGUI/FlatCAMGUI.py:6096
msgid ""
"The size of the trace segment on the Y axis.\n"
"Useful for auto-leveling.\n"
@@ -8460,15 +9420,15 @@ msgstr ""
"Useful for auto-leveling.\n"
"A value of 0 means no segmentation on the Y axis."
-#: flatcamGUI/FlatCAMGUI.py:6047
+#: flatcamGUI/FlatCAMGUI.py:6112
msgid "Geometry Editor"
msgstr "Geometry Editor"
-#: flatcamGUI/FlatCAMGUI.py:6052
+#: flatcamGUI/FlatCAMGUI.py:6117
msgid "A list of Geometry Editor parameters."
msgstr "A list of Geometry Editor parameters."
-#: flatcamGUI/FlatCAMGUI.py:6062
+#: flatcamGUI/FlatCAMGUI.py:6127
msgid ""
"Set the number of selected geometry\n"
"items above which the utility geometry\n"
@@ -8482,20 +9442,20 @@ msgstr ""
"Increases the performance when moving a\n"
"large number of geometric elements."
-#: flatcamGUI/FlatCAMGUI.py:6081
+#: flatcamGUI/FlatCAMGUI.py:6146
msgid "CNC Job General"
msgstr "CNC Job General"
-#: flatcamGUI/FlatCAMGUI.py:6094 flatcamGUI/ObjectUI.py:875
-#: flatcamGUI/ObjectUI.py:1439
+#: flatcamGUI/FlatCAMGUI.py:6159 flatcamGUI/ObjectUI.py:938
+#: flatcamGUI/ObjectUI.py:1501
msgid "Plot Object"
msgstr "Plot Object"
-#: flatcamGUI/FlatCAMGUI.py:6099
-msgid "Plot kind:"
-msgstr "Plot kind:"
+#: flatcamGUI/FlatCAMGUI.py:6164 flatcamGUI/ObjectUI.py:1396
+msgid "Plot kind"
+msgstr "Plot kind"
-#: flatcamGUI/FlatCAMGUI.py:6101 flatcamGUI/ObjectUI.py:1336
+#: flatcamGUI/FlatCAMGUI.py:6166 flatcamGUI/ObjectUI.py:1399
msgid ""
"This selects the kind of geometries on the canvas to plot.\n"
"Those can be either of type 'Travel' which means the moves\n"
@@ -8507,15 +9467,15 @@ msgstr ""
"above the work piece or it can be of type 'Cut',\n"
"which means the moves that cut into the material."
-#: flatcamGUI/FlatCAMGUI.py:6109 flatcamGUI/ObjectUI.py:1345
+#: flatcamGUI/FlatCAMGUI.py:6174 flatcamGUI/ObjectUI.py:1408
msgid "Travel"
msgstr "Travel"
-#: flatcamGUI/FlatCAMGUI.py:6118 flatcamGUI/ObjectUI.py:1349
+#: flatcamGUI/FlatCAMGUI.py:6183 flatcamGUI/ObjectUI.py:1412
msgid "Display Annotation"
msgstr "Display Annotation"
-#: flatcamGUI/FlatCAMGUI.py:6120 flatcamGUI/ObjectUI.py:1351
+#: flatcamGUI/FlatCAMGUI.py:6185 flatcamGUI/ObjectUI.py:1414
msgid ""
"This selects if to display text annotation on the plot.\n"
"When checked it will display numbers in order for each end\n"
@@ -8525,23 +9485,23 @@ msgstr ""
"When checked it will display numbers in order for each end\n"
"of a travel line."
-#: flatcamGUI/FlatCAMGUI.py:6132
+#: flatcamGUI/FlatCAMGUI.py:6197
msgid "Annotation Size"
msgstr "Annotation Size"
-#: flatcamGUI/FlatCAMGUI.py:6134
+#: flatcamGUI/FlatCAMGUI.py:6199
msgid "The font size of the annotation text. In pixels."
msgstr "The font size of the annotation text. In pixels."
-#: flatcamGUI/FlatCAMGUI.py:6142
+#: flatcamGUI/FlatCAMGUI.py:6207
msgid "Annotation Color"
msgstr "Annotation Color"
-#: flatcamGUI/FlatCAMGUI.py:6144
+#: flatcamGUI/FlatCAMGUI.py:6209
msgid "Set the font color for the annotation texts."
msgstr "Set the font color for the annotation texts."
-#: flatcamGUI/FlatCAMGUI.py:6167
+#: flatcamGUI/FlatCAMGUI.py:6232
msgid ""
"The number of circle steps for GCode \n"
"circle and arc shapes linear approximation."
@@ -8549,19 +9509,28 @@ msgstr ""
"The number of circle steps for GCode \n"
"circle and arc shapes linear approximation."
-#: flatcamGUI/FlatCAMGUI.py:6177
+#: flatcamGUI/FlatCAMGUI.py:6240
+#| msgid "Travel Z"
+msgid "Travel dia"
+msgstr "Travel dia"
+
+#: flatcamGUI/FlatCAMGUI.py:6242
+#| msgid ""
+#| "Diameter of the tool to be\n"
+#| "rendered in the plot."
msgid ""
-"Diameter of the tool to be\n"
+"The width of the travel lines to be\n"
"rendered in the plot."
msgstr ""
-"Diameter of the tool to be\n"
+"The width of the travel lines to be\n"
"rendered in the plot."
-#: flatcamGUI/FlatCAMGUI.py:6185
-msgid "Coords dec."
-msgstr "Coords dec."
+#: flatcamGUI/FlatCAMGUI.py:6253
+#| msgid "Coords dec."
+msgid "Coordinates decimals"
+msgstr "Coordinates decimals"
-#: flatcamGUI/FlatCAMGUI.py:6187
+#: flatcamGUI/FlatCAMGUI.py:6255
msgid ""
"The number of decimals to be used for \n"
"the X, Y, Z coordinates in CNC code (GCODE, etc.)"
@@ -8569,11 +9538,12 @@ msgstr ""
"The number of decimals to be used for \n"
"the X, Y, Z coordinates in CNC code (GCODE, etc.)"
-#: flatcamGUI/FlatCAMGUI.py:6195
-msgid "Feedrate dec."
-msgstr "Feedrate dec."
+#: flatcamGUI/FlatCAMGUI.py:6263
+#| msgid "Feedrate dec."
+msgid "Feedrate decimals"
+msgstr "Feedrate decimals"
-#: flatcamGUI/FlatCAMGUI.py:6197
+#: flatcamGUI/FlatCAMGUI.py:6265
msgid ""
"The number of decimals to be used for \n"
"the Feedrate parameter in CNC code (GCODE, etc.)"
@@ -8581,16 +9551,40 @@ msgstr ""
"The number of decimals to be used for \n"
"the Feedrate parameter in CNC code (GCODE, etc.)"
-#: flatcamGUI/FlatCAMGUI.py:6212
+#: flatcamGUI/FlatCAMGUI.py:6273
+msgid "Coordinates type"
+msgstr "Coordinates type"
+
+#: flatcamGUI/FlatCAMGUI.py:6275
+msgid ""
+"The type of coordinates to be used in Gcode.\n"
+"Can be:\n"
+"- Absolute G90 -> the reference is the origin x=0, y=0\n"
+"- Incremental G91 -> the reference is the previous position"
+msgstr ""
+"The type of coordinates to be used in Gcode.\n"
+"Can be:\n"
+"- Absolute G90 -> the reference is the origin x=0, y=0\n"
+"- Incremental G91 -> the reference is the previous position"
+
+#: flatcamGUI/FlatCAMGUI.py:6281
+msgid "Absolute G90"
+msgstr "Absolute G90"
+
+#: flatcamGUI/FlatCAMGUI.py:6282
+msgid "Incremental G91"
+msgstr "Incremental G91"
+
+#: flatcamGUI/FlatCAMGUI.py:6299
msgid "CNC Job Options"
msgstr "CNC Job Options"
-#: flatcamGUI/FlatCAMGUI.py:6215
+#: flatcamGUI/FlatCAMGUI.py:6302
msgid "Export G-Code"
msgstr "Export G-Code"
-#: flatcamGUI/FlatCAMGUI.py:6217 flatcamGUI/FlatCAMGUI.py:6258
-#: flatcamGUI/ObjectUI.py:1473
+#: flatcamGUI/FlatCAMGUI.py:6304 flatcamGUI/FlatCAMGUI.py:6345
+#: flatcamGUI/ObjectUI.py:1535
msgid ""
"Export and save G-Code to\n"
"make this object to a file."
@@ -8598,11 +9592,11 @@ msgstr ""
"Export and save G-Code to\n"
"make this object to a file."
-#: flatcamGUI/FlatCAMGUI.py:6223
+#: flatcamGUI/FlatCAMGUI.py:6310
msgid "Prepend to G-Code"
msgstr "Prepend to G-Code"
-#: flatcamGUI/FlatCAMGUI.py:6225 flatcamGUI/ObjectUI.py:1481
+#: flatcamGUI/FlatCAMGUI.py:6312 flatcamGUI/ObjectUI.py:1543
msgid ""
"Type here any G-Code commands you would\n"
"like to add at the beginning of the G-Code file."
@@ -8610,11 +9604,11 @@ msgstr ""
"Type here any G-Code commands you would\n"
"like to add at the beginning of the G-Code file."
-#: flatcamGUI/FlatCAMGUI.py:6234
+#: flatcamGUI/FlatCAMGUI.py:6321
msgid "Append to G-Code"
msgstr "Append to G-Code"
-#: flatcamGUI/FlatCAMGUI.py:6236 flatcamGUI/ObjectUI.py:1492
+#: flatcamGUI/FlatCAMGUI.py:6323 flatcamGUI/ObjectUI.py:1554
msgid ""
"Type here any G-Code commands you would\n"
"like to append to the generated file.\n"
@@ -8624,19 +9618,19 @@ msgstr ""
"like to append to the generated file.\n"
"I.e.: M2 (End of program)"
-#: flatcamGUI/FlatCAMGUI.py:6253
+#: flatcamGUI/FlatCAMGUI.py:6340
msgid "CNC Job Adv. Options"
msgstr "CNC Job Adv. Options"
-#: flatcamGUI/FlatCAMGUI.py:6256 flatcamGUI/ObjectUI.py:1471
+#: flatcamGUI/FlatCAMGUI.py:6343 flatcamGUI/ObjectUI.py:1533
msgid "Export CNC Code"
msgstr "Export CNC Code"
-#: flatcamGUI/FlatCAMGUI.py:6264 flatcamGUI/ObjectUI.py:1509
+#: flatcamGUI/FlatCAMGUI.py:6351 flatcamGUI/ObjectUI.py:1571
msgid "Toolchange G-Code"
msgstr "Toolchange G-Code"
-#: flatcamGUI/FlatCAMGUI.py:6267 flatcamGUI/ObjectUI.py:1512
+#: flatcamGUI/FlatCAMGUI.py:6354 flatcamGUI/ObjectUI.py:1574
msgid ""
"Type here any G-Code commands you would\n"
"like to be executed when Toolchange event is encountered.\n"
@@ -8658,11 +9652,11 @@ msgstr ""
"that has 'toolchange_custom' in it's name and this is built\n"
"having as template the 'Toolchange Custom' posprocessor file."
-#: flatcamGUI/FlatCAMGUI.py:6286 flatcamGUI/ObjectUI.py:1531
+#: flatcamGUI/FlatCAMGUI.py:6373 flatcamGUI/ObjectUI.py:1593
msgid "Use Toolchange Macro"
msgstr "Use Toolchange Macro"
-#: flatcamGUI/FlatCAMGUI.py:6288 flatcamGUI/ObjectUI.py:1533
+#: flatcamGUI/FlatCAMGUI.py:6375 flatcamGUI/ObjectUI.py:1595
msgid ""
"Check this box if you want to use\n"
"a Custom Toolchange GCode (macro)."
@@ -8670,7 +9664,7 @@ msgstr ""
"Check this box if you want to use\n"
"a Custom Toolchange GCode (macro)."
-#: flatcamGUI/FlatCAMGUI.py:6300 flatcamGUI/ObjectUI.py:1541
+#: flatcamGUI/FlatCAMGUI.py:6387 flatcamGUI/ObjectUI.py:1603
msgid ""
"A list of the FlatCAM variables that can be used\n"
"in the Toolchange event.\n"
@@ -8680,59 +9674,59 @@ msgstr ""
"in the Toolchange event.\n"
"They have to be surrounded by the '%' symbol"
-#: flatcamGUI/FlatCAMGUI.py:6310 flatcamGUI/ObjectUI.py:1551
+#: flatcamGUI/FlatCAMGUI.py:6397 flatcamGUI/ObjectUI.py:1613
msgid "FlatCAM CNC parameters"
msgstr "FlatCAM CNC parameters"
-#: flatcamGUI/FlatCAMGUI.py:6311 flatcamGUI/ObjectUI.py:1552
+#: flatcamGUI/FlatCAMGUI.py:6398 flatcamGUI/ObjectUI.py:1614
msgid "tool = tool number"
msgstr "tool = tool number"
-#: flatcamGUI/FlatCAMGUI.py:6312 flatcamGUI/ObjectUI.py:1553
+#: flatcamGUI/FlatCAMGUI.py:6399 flatcamGUI/ObjectUI.py:1615
msgid "tooldia = tool diameter"
msgstr "tooldia = tool diameter"
-#: flatcamGUI/FlatCAMGUI.py:6313 flatcamGUI/ObjectUI.py:1554
+#: flatcamGUI/FlatCAMGUI.py:6400 flatcamGUI/ObjectUI.py:1616
msgid "t_drills = for Excellon, total number of drills"
msgstr "t_drills = for Excellon, total number of drills"
-#: flatcamGUI/FlatCAMGUI.py:6314 flatcamGUI/ObjectUI.py:1555
+#: flatcamGUI/FlatCAMGUI.py:6401 flatcamGUI/ObjectUI.py:1617
msgid "x_toolchange = X coord for Toolchange"
msgstr "x_toolchange = X coord for Toolchange"
-#: flatcamGUI/FlatCAMGUI.py:6315 flatcamGUI/ObjectUI.py:1556
+#: flatcamGUI/FlatCAMGUI.py:6402 flatcamGUI/ObjectUI.py:1618
msgid "y_toolchange = Y coord for Toolchange"
msgstr "y_toolchange = Y coord for Toolchange"
-#: flatcamGUI/FlatCAMGUI.py:6316 flatcamGUI/ObjectUI.py:1557
+#: flatcamGUI/FlatCAMGUI.py:6403 flatcamGUI/ObjectUI.py:1619
msgid "z_toolchange = Z coord for Toolchange"
msgstr "z_toolchange = Z coord for Toolchange"
-#: flatcamGUI/FlatCAMGUI.py:6317
+#: flatcamGUI/FlatCAMGUI.py:6404
msgid "z_cut = Z depth for the cut"
msgstr "z_cut = Z depth for the cut"
-#: flatcamGUI/FlatCAMGUI.py:6318
+#: flatcamGUI/FlatCAMGUI.py:6405
msgid "z_move = Z height for travel"
msgstr "z_move = Z height for travel"
-#: flatcamGUI/FlatCAMGUI.py:6319 flatcamGUI/ObjectUI.py:1560
+#: flatcamGUI/FlatCAMGUI.py:6406 flatcamGUI/ObjectUI.py:1622
msgid "z_depthpercut = the step value for multidepth cut"
msgstr "z_depthpercut = the step value for multidepth cut"
-#: flatcamGUI/FlatCAMGUI.py:6320 flatcamGUI/ObjectUI.py:1561
+#: flatcamGUI/FlatCAMGUI.py:6407 flatcamGUI/ObjectUI.py:1623
msgid "spindlesspeed = the value for the spindle speed"
msgstr "spindlesspeed = the value for the spindle speed"
-#: flatcamGUI/FlatCAMGUI.py:6322 flatcamGUI/ObjectUI.py:1562
+#: flatcamGUI/FlatCAMGUI.py:6409 flatcamGUI/ObjectUI.py:1624
msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
msgstr "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
-#: flatcamGUI/FlatCAMGUI.py:6343
+#: flatcamGUI/FlatCAMGUI.py:6430
msgid "NCC Tool Options"
msgstr "NCC Tool Options"
-#: flatcamGUI/FlatCAMGUI.py:6348 flatcamGUI/ObjectUI.py:384
+#: flatcamGUI/FlatCAMGUI.py:6435 flatcamGUI/ObjectUI.py:447
msgid ""
"Create a Geometry object with\n"
"toolpaths to cut all non-copper regions."
@@ -8740,19 +9734,80 @@ msgstr ""
"Create a Geometry object with\n"
"toolpaths to cut all non-copper regions."
-#: flatcamGUI/FlatCAMGUI.py:6356 flatcamGUI/FlatCAMGUI.py:7211
+#: flatcamGUI/FlatCAMGUI.py:6443 flatcamGUI/FlatCAMGUI.py:7397
msgid "Tools dia"
msgstr "Tools dia"
-#: flatcamGUI/FlatCAMGUI.py:6364 flatcamGUI/FlatCAMGUI.py:6694
-#: flatcamTools/ToolNonCopperClear.py:137 flatcamTools/ToolPaint.py:136
+#: flatcamGUI/FlatCAMGUI.py:6452 flatcamTools/ToolNonCopperClear.py:195
+#| msgid "Box Type"
+msgid "Tool Type"
+msgstr "Tool Type"
+
+#: flatcamGUI/FlatCAMGUI.py:6454 flatcamGUI/FlatCAMGUI.py:6462
+#: flatcamTools/ToolNonCopperClear.py:197
+#: flatcamTools/ToolNonCopperClear.py:205
+msgid ""
+"Default tool type:\n"
+"- 'V-shape'\n"
+"- Circular"
+msgstr ""
+"Default tool type:\n"
+"- 'V-shape'\n"
+"- Circular"
+
+#: flatcamGUI/FlatCAMGUI.py:6459 flatcamTools/ToolNonCopperClear.py:202
+msgid "V-shape"
+msgstr "V-shape"
+
+#: flatcamGUI/FlatCAMGUI.py:6471 flatcamGUI/ObjectUI.py:1109
+#: flatcamTools/ToolNonCopperClear.py:220
+msgid "V-Tip Dia"
+msgstr "V-Tip Dia"
+
+#: flatcamGUI/FlatCAMGUI.py:6473 flatcamGUI/ObjectUI.py:1112
+#: flatcamTools/ToolNonCopperClear.py:222
+msgid "The tip diameter for V-Shape Tool"
+msgstr "The tip diameter for V-Shape Tool"
+
+#: flatcamGUI/FlatCAMGUI.py:6480 flatcamGUI/ObjectUI.py:1120
+#: flatcamTools/ToolNonCopperClear.py:227
+msgid "V-Tip Angle"
+msgstr "V-Tip Angle"
+
+#: flatcamGUI/FlatCAMGUI.py:6482 flatcamGUI/ObjectUI.py:1123
+#: flatcamTools/ToolNonCopperClear.py:229
+msgid ""
+"The tip angle for V-Shape Tool.\n"
+"In degree."
+msgstr ""
+"The tip angle for V-Shape Tool.\n"
+"In degree."
+
+#: flatcamGUI/FlatCAMGUI.py:6492 flatcamGUI/FlatCAMGUI.py:6500
+#: flatcamTools/ToolNonCopperClear.py:149
+#: flatcamTools/ToolNonCopperClear.py:157
+#| msgid ""
+#| "Milling type:\n"
+#| "- climb / best for precision milling and to reduce tool usage\n"
+#| "- conventional / useful when there is no backlash compensation"
+msgid ""
+"Milling type when the selected tool is of type: 'iso_op':\n"
+"- climb / best for precision milling and to reduce tool usage\n"
+"- conventional / useful when there is no backlash compensation"
+msgstr ""
+"Milling type when the selected tool is of type: 'iso_op':\n"
+"- climb / best for precision milling and to reduce tool usage\n"
+"- conventional / useful when there is no backlash compensation"
+
+#: flatcamGUI/FlatCAMGUI.py:6509 flatcamGUI/FlatCAMGUI.py:6869
+#: flatcamTools/ToolNonCopperClear.py:163 flatcamTools/ToolPaint.py:136
msgid "Tool order"
msgstr "Tool order"
-#: flatcamGUI/FlatCAMGUI.py:6365 flatcamGUI/FlatCAMGUI.py:6375
-#: flatcamGUI/FlatCAMGUI.py:6695 flatcamGUI/FlatCAMGUI.py:6705
-#: flatcamTools/ToolNonCopperClear.py:138
-#: flatcamTools/ToolNonCopperClear.py:148 flatcamTools/ToolPaint.py:137
+#: flatcamGUI/FlatCAMGUI.py:6510 flatcamGUI/FlatCAMGUI.py:6520
+#: flatcamGUI/FlatCAMGUI.py:6870 flatcamGUI/FlatCAMGUI.py:6880
+#: flatcamTools/ToolNonCopperClear.py:164
+#: flatcamTools/ToolNonCopperClear.py:174 flatcamTools/ToolPaint.py:137
#: flatcamTools/ToolPaint.py:147
msgid ""
"This set the way that the tools in the tools table are used.\n"
@@ -8771,22 +9826,27 @@ msgstr ""
"WARNING: using rest machining will automatically set the order\n"
"in reverse and disable this control."
-#: flatcamGUI/FlatCAMGUI.py:6373 flatcamGUI/FlatCAMGUI.py:6703
-#: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:145
+#: flatcamGUI/FlatCAMGUI.py:6518 flatcamGUI/FlatCAMGUI.py:6878
+#: flatcamTools/ToolNonCopperClear.py:172 flatcamTools/ToolPaint.py:145
msgid "Forward"
msgstr "Forward"
-#: flatcamGUI/FlatCAMGUI.py:6374 flatcamGUI/FlatCAMGUI.py:6704
-#: flatcamTools/ToolNonCopperClear.py:147 flatcamTools/ToolPaint.py:146
+#: flatcamGUI/FlatCAMGUI.py:6519 flatcamGUI/FlatCAMGUI.py:6879
+#: flatcamTools/ToolNonCopperClear.py:173 flatcamTools/ToolPaint.py:146
msgid "Reverse"
msgstr "Reverse"
-#: flatcamGUI/FlatCAMGUI.py:6384 flatcamGUI/FlatCAMGUI.py:6715
-#: flatcamTools/ToolPaint.py:205
-msgid "Overlap Rate"
-msgstr "Overlap Rate"
+#: flatcamGUI/FlatCAMGUI.py:6532 flatcamGUI/FlatCAMGUI.py:6537
+#: flatcamTools/ToolNonCopperClear.py:271
+#: flatcamTools/ToolNonCopperClear.py:276
+msgid ""
+"Depth of cut into material. Negative value.\n"
+"In FlatCAM units."
+msgstr ""
+"Depth of cut into material. Negative value.\n"
+"In FlatCAM units."
-#: flatcamGUI/FlatCAMGUI.py:6386 flatcamTools/ToolNonCopperClear.py:203
+#: flatcamGUI/FlatCAMGUI.py:6547 flatcamTools/ToolNonCopperClear.py:285
#, python-format
msgid ""
"How much (fraction) of the tool width to overlap each tool pass.\n"
@@ -8811,23 +9871,12 @@ msgstr ""
"Higher values = slow processing and slow execution on CNC\n"
"due of too many paths."
-#: flatcamGUI/FlatCAMGUI.py:6400 flatcamGUI/FlatCAMGUI.py:6548
-#: flatcamGUI/FlatCAMGUI.py:6732 flatcamTools/ToolNonCopperClear.py:217
-#: flatcamTools/ToolPaint.py:222
-msgid "Margin"
-msgstr "Margin"
-
-#: flatcamGUI/FlatCAMGUI.py:6402 flatcamTools/ToolNonCopperClear.py:219
+#: flatcamGUI/FlatCAMGUI.py:6564 flatcamTools/ToolNonCopperClear.py:301
msgid "Bounding box margin."
msgstr "Bounding box margin."
-#: flatcamGUI/FlatCAMGUI.py:6409 flatcamGUI/FlatCAMGUI.py:6743
-#: flatcamTools/ToolNonCopperClear.py:226 flatcamTools/ToolPaint.py:233
-msgid "Method"
-msgstr "Method"
-
-#: flatcamGUI/FlatCAMGUI.py:6411 flatcamGUI/FlatCAMGUI.py:6745
-#: flatcamTools/ToolNonCopperClear.py:228 flatcamTools/ToolPaint.py:235
+#: flatcamGUI/FlatCAMGUI.py:6573 flatcamGUI/FlatCAMGUI.py:6920
+#: flatcamTools/ToolNonCopperClear.py:310
msgid ""
"Algorithm for non-copper clearing:
Standard: Fixed step inwards."
"
Seed-based: Outwards from seed.
Line-based: Parallel "
@@ -8837,22 +9886,22 @@ msgstr ""
"
Seed-based: Outwards from seed.
Line-based: Parallel "
"lines."
-#: flatcamGUI/FlatCAMGUI.py:6425 flatcamGUI/FlatCAMGUI.py:6759
-#: flatcamTools/ToolNonCopperClear.py:242 flatcamTools/ToolPaint.py:249
+#: flatcamGUI/FlatCAMGUI.py:6587 flatcamGUI/FlatCAMGUI.py:6934
+#: flatcamTools/ToolNonCopperClear.py:324 flatcamTools/ToolPaint.py:249
msgid "Connect"
msgstr "Connect"
-#: flatcamGUI/FlatCAMGUI.py:6434 flatcamGUI/FlatCAMGUI.py:6769
-#: flatcamTools/ToolNonCopperClear.py:251 flatcamTools/ToolPaint.py:258
+#: flatcamGUI/FlatCAMGUI.py:6597 flatcamGUI/FlatCAMGUI.py:6944
+#: flatcamTools/ToolNonCopperClear.py:333 flatcamTools/ToolPaint.py:258
msgid "Contour"
msgstr "Contour"
-#: flatcamGUI/FlatCAMGUI.py:6443 flatcamTools/ToolNonCopperClear.py:260
+#: flatcamGUI/FlatCAMGUI.py:6607 flatcamTools/ToolNonCopperClear.py:342
#: flatcamTools/ToolPaint.py:267
msgid "Rest M."
msgstr "Rest M."
-#: flatcamGUI/FlatCAMGUI.py:6445 flatcamTools/ToolNonCopperClear.py:262
+#: flatcamGUI/FlatCAMGUI.py:6609 flatcamTools/ToolNonCopperClear.py:344
msgid ""
"If checked, use 'rest machining'.\n"
"Basically it will clear copper outside PCB features,\n"
@@ -8870,9 +9919,9 @@ msgstr ""
"no more copper to clear or there are no more tools.\n"
"If not checked, use the standard algorithm."
-#: flatcamGUI/FlatCAMGUI.py:6460 flatcamGUI/FlatCAMGUI.py:6472
-#: flatcamTools/ToolNonCopperClear.py:277
-#: flatcamTools/ToolNonCopperClear.py:289
+#: flatcamGUI/FlatCAMGUI.py:6624 flatcamGUI/FlatCAMGUI.py:6636
+#: flatcamTools/ToolNonCopperClear.py:359
+#: flatcamTools/ToolNonCopperClear.py:371
msgid ""
"If used, it will add an offset to the copper features.\n"
"The copper clearing will finish to a distance\n"
@@ -8884,27 +9933,27 @@ msgstr ""
"from the copper features.\n"
"The value can be between 0 and 10 FlatCAM units."
-#: flatcamGUI/FlatCAMGUI.py:6470 flatcamTools/ToolNonCopperClear.py:287
+#: flatcamGUI/FlatCAMGUI.py:6634 flatcamTools/ToolNonCopperClear.py:369
msgid "Offset value"
msgstr "Offset value"
-#: flatcamGUI/FlatCAMGUI.py:6487 flatcamTools/ToolNonCopperClear.py:313
+#: flatcamGUI/FlatCAMGUI.py:6651 flatcamTools/ToolNonCopperClear.py:395
msgid "Itself"
msgstr "Itself"
-#: flatcamGUI/FlatCAMGUI.py:6488 flatcamGUI/FlatCAMGUI.py:6791
+#: flatcamGUI/FlatCAMGUI.py:6652 flatcamGUI/FlatCAMGUI.py:6965
msgid "Area"
msgstr "Area"
-#: flatcamGUI/FlatCAMGUI.py:6489
+#: flatcamGUI/FlatCAMGUI.py:6653
msgid "Ref"
msgstr "Ref"
-#: flatcamGUI/FlatCAMGUI.py:6490
+#: flatcamGUI/FlatCAMGUI.py:6654
msgid "Reference"
msgstr "Reference"
-#: flatcamGUI/FlatCAMGUI.py:6492 flatcamTools/ToolNonCopperClear.py:319
+#: flatcamGUI/FlatCAMGUI.py:6656 flatcamTools/ToolNonCopperClear.py:401
msgid ""
"- 'Itself' - the non copper clearing extent\n"
"is based on the object that is copper cleared.\n"
@@ -8924,11 +9973,32 @@ msgstr ""
"- 'Reference Object' - will do non copper clearing within the area\n"
"specified by another object."
-#: flatcamGUI/FlatCAMGUI.py:6510
+#: flatcamGUI/FlatCAMGUI.py:6667 flatcamGUI/FlatCAMGUI.py:6973
+#| msgid "Format"
+msgid "Normal"
+msgstr "Normal"
+
+#: flatcamGUI/FlatCAMGUI.py:6668 flatcamGUI/FlatCAMGUI.py:6974
+msgid "Progressive"
+msgstr "Progressive"
+
+#: flatcamGUI/FlatCAMGUI.py:6669
+msgid "NCC Plotting"
+msgstr "NCC Plotting"
+
+#: flatcamGUI/FlatCAMGUI.py:6671
+msgid ""
+"- 'Normal' - normal plotting, done at the end of the NCC job\n"
+"- 'Progressive' - after each shape is generated it will be plotted."
+msgstr ""
+"- 'Normal' - normal plotting, done at the end of the NCC job\n"
+"- 'Progressive' - after each shape is generated it will be plotted."
+
+#: flatcamGUI/FlatCAMGUI.py:6685
msgid "Cutout Tool Options"
msgstr "Cutout Tool Options"
-#: flatcamGUI/FlatCAMGUI.py:6515 flatcamGUI/ObjectUI.py:400
+#: flatcamGUI/FlatCAMGUI.py:6690 flatcamGUI/ObjectUI.py:463
msgid ""
"Create toolpaths to cut around\n"
"the PCB and separate it from\n"
@@ -8938,7 +10008,7 @@ msgstr ""
"the PCB and separate it from\n"
"the original board."
-#: flatcamGUI/FlatCAMGUI.py:6526 flatcamTools/ToolCutOut.py:94
+#: flatcamGUI/FlatCAMGUI.py:6701 flatcamTools/ToolCutOut.py:93
msgid ""
"Diameter of the tool used to cutout\n"
"the PCB shape out of the surrounding material."
@@ -8946,11 +10016,11 @@ msgstr ""
"Diameter of the tool used to cutout\n"
"the PCB shape out of the surrounding material."
-#: flatcamGUI/FlatCAMGUI.py:6534 flatcamTools/ToolCutOut.py:77
+#: flatcamGUI/FlatCAMGUI.py:6709 flatcamTools/ToolCutOut.py:76
msgid "Obj kind"
msgstr "Obj kind"
-#: flatcamGUI/FlatCAMGUI.py:6536 flatcamTools/ToolCutOut.py:79
+#: flatcamGUI/FlatCAMGUI.py:6711 flatcamTools/ToolCutOut.py:78
msgid ""
"Choice of what kind the object we want to cutout is.
- Single: "
"contain a single PCB Gerber outline object.
- Panel: a panel PCB "
@@ -8962,16 +10032,16 @@ msgstr ""
"Gerber object, which is made\n"
"out of many individual PCB outlines."
-#: flatcamGUI/FlatCAMGUI.py:6543 flatcamGUI/FlatCAMGUI.py:6790
-#: flatcamTools/ToolCutOut.py:85
+#: flatcamGUI/FlatCAMGUI.py:6718 flatcamGUI/FlatCAMGUI.py:6964
+#: flatcamTools/ToolCutOut.py:84
msgid "Single"
msgstr "Single"
-#: flatcamGUI/FlatCAMGUI.py:6544 flatcamTools/ToolCutOut.py:86
+#: flatcamGUI/FlatCAMGUI.py:6719 flatcamTools/ToolCutOut.py:85
msgid "Panel"
msgstr "Panel"
-#: flatcamGUI/FlatCAMGUI.py:6550 flatcamTools/ToolCutOut.py:103
+#: flatcamGUI/FlatCAMGUI.py:6725 flatcamTools/ToolCutOut.py:102
msgid ""
"Margin over bounds. A positive value here\n"
"will make the cutout of the PCB further from\n"
@@ -8981,11 +10051,11 @@ msgstr ""
"will make the cutout of the PCB further from\n"
"the actual PCB border"
-#: flatcamGUI/FlatCAMGUI.py:6558
+#: flatcamGUI/FlatCAMGUI.py:6733
msgid "Gap size"
msgstr "Gap size"
-#: flatcamGUI/FlatCAMGUI.py:6560 flatcamTools/ToolCutOut.py:113
+#: flatcamGUI/FlatCAMGUI.py:6735 flatcamTools/ToolCutOut.py:112
msgid ""
"The size of the bridge gaps in the cutout\n"
"used to keep the board connected to\n"
@@ -8997,11 +10067,11 @@ msgstr ""
"the surrounding material (the one \n"
"from which the PCB is cutout)."
-#: flatcamGUI/FlatCAMGUI.py:6569 flatcamTools/ToolCutOut.py:149
+#: flatcamGUI/FlatCAMGUI.py:6744 flatcamTools/ToolCutOut.py:148
msgid "Gaps"
msgstr "Gaps"
-#: flatcamGUI/FlatCAMGUI.py:6571
+#: flatcamGUI/FlatCAMGUI.py:6746
msgid ""
"Number of gaps used for the cutout.\n"
"There can be maximum 8 bridges/gaps.\n"
@@ -9025,11 +10095,11 @@ msgstr ""
"- 2tb - 2*top + 2*bottom\n"
"- 8 - 2*left + 2*right +2*top + 2*bottom"
-#: flatcamGUI/FlatCAMGUI.py:6593 flatcamTools/ToolCutOut.py:130
+#: flatcamGUI/FlatCAMGUI.py:6768 flatcamTools/ToolCutOut.py:129
msgid "Convex Sh."
msgstr "Convex Sh."
-#: flatcamGUI/FlatCAMGUI.py:6595 flatcamTools/ToolCutOut.py:132
+#: flatcamGUI/FlatCAMGUI.py:6770 flatcamTools/ToolCutOut.py:131
msgid ""
"Create a convex shape surrounding the entire PCB.\n"
"Used only if the source object type is Gerber."
@@ -9037,11 +10107,11 @@ msgstr ""
"Create a convex shape surrounding the entire PCB.\n"
"Used only if the source object type is Gerber."
-#: flatcamGUI/FlatCAMGUI.py:6609
+#: flatcamGUI/FlatCAMGUI.py:6784
msgid "2Sided Tool Options"
msgstr "2Sided Tool Options"
-#: flatcamGUI/FlatCAMGUI.py:6614
+#: flatcamGUI/FlatCAMGUI.py:6789
msgid ""
"A tool to help in creating a double sided\n"
"PCB using alignment holes."
@@ -9049,36 +10119,36 @@ msgstr ""
"A tool to help in creating a double sided\n"
"PCB using alignment holes."
-#: flatcamGUI/FlatCAMGUI.py:6624 flatcamTools/ToolDblSided.py:234
+#: flatcamGUI/FlatCAMGUI.py:6799 flatcamTools/ToolDblSided.py:234
msgid "Drill dia"
msgstr "Drill dia"
-#: flatcamGUI/FlatCAMGUI.py:6626 flatcamTools/ToolDblSided.py:225
+#: flatcamGUI/FlatCAMGUI.py:6801 flatcamTools/ToolDblSided.py:225
#: flatcamTools/ToolDblSided.py:236
msgid "Diameter of the drill for the alignment holes."
msgstr "Diameter of the drill for the alignment holes."
-#: flatcamGUI/FlatCAMGUI.py:6635 flatcamTools/ToolDblSided.py:120
+#: flatcamGUI/FlatCAMGUI.py:6810 flatcamTools/ToolDblSided.py:120
msgid "Mirror Axis:"
msgstr "Mirror Axis:"
-#: flatcamGUI/FlatCAMGUI.py:6637 flatcamTools/ToolDblSided.py:122
+#: flatcamGUI/FlatCAMGUI.py:6812 flatcamTools/ToolDblSided.py:122
msgid "Mirror vertically (X) or horizontally (Y)."
msgstr "Mirror vertically (X) or horizontally (Y)."
-#: flatcamGUI/FlatCAMGUI.py:6646 flatcamTools/ToolDblSided.py:131
+#: flatcamGUI/FlatCAMGUI.py:6821 flatcamTools/ToolDblSided.py:131
msgid "Point"
msgstr "Point"
-#: flatcamGUI/FlatCAMGUI.py:6647 flatcamTools/ToolDblSided.py:132
+#: flatcamGUI/FlatCAMGUI.py:6822 flatcamTools/ToolDblSided.py:132
msgid "Box"
msgstr "Box"
-#: flatcamGUI/FlatCAMGUI.py:6648
+#: flatcamGUI/FlatCAMGUI.py:6823
msgid "Axis Ref"
msgstr "Axis Ref"
-#: flatcamGUI/FlatCAMGUI.py:6650 flatcamTools/ToolDblSided.py:135
+#: flatcamGUI/FlatCAMGUI.py:6825 flatcamTools/ToolDblSided.py:135
msgid ""
"The axis should pass through a point or cut\n"
" a specified box (in a FlatCAM object) through \n"
@@ -9088,15 +10158,15 @@ msgstr ""
" a specified box (in a FlatCAM object) through \n"
"the center."
-#: flatcamGUI/FlatCAMGUI.py:6666
+#: flatcamGUI/FlatCAMGUI.py:6841
msgid "Paint Tool Options"
msgstr "Paint Tool Options"
-#: flatcamGUI/FlatCAMGUI.py:6671
+#: flatcamGUI/FlatCAMGUI.py:6846
msgid "Parameters:"
msgstr "Parameters:"
-#: flatcamGUI/FlatCAMGUI.py:6673 flatcamGUI/ObjectUI.py:1288
+#: flatcamGUI/FlatCAMGUI.py:6848 flatcamGUI/ObjectUI.py:1351
msgid ""
"Creates tool paths to cover the\n"
"whole area of a polygon (remove\n"
@@ -9108,11 +10178,12 @@ msgstr ""
"all copper). You will be asked\n"
"to click on the desired polygon."
-#: flatcamGUI/FlatCAMGUI.py:6779 flatcamTools/ToolPaint.py:282
+#: flatcamGUI/FlatCAMGUI.py:6954 flatcamTools/ToolPaint.py:282
msgid "Selection"
msgstr "Selection"
-#: flatcamGUI/FlatCAMGUI.py:6781 flatcamTools/ToolPaint.py:300
+#: flatcamGUI/FlatCAMGUI.py:6956 flatcamTools/ToolPaint.py:284
+#: flatcamTools/ToolPaint.py:300
msgid ""
"How to select Polygons to be painted.\n"
"\n"
@@ -9134,15 +10205,28 @@ msgstr ""
"- 'Reference Object' - will do non copper clearing within the area\n"
"specified by another object."
-#: flatcamGUI/FlatCAMGUI.py:6793
+#: flatcamGUI/FlatCAMGUI.py:6967
msgid "Ref."
msgstr "Ref."
-#: flatcamGUI/FlatCAMGUI.py:6805
+#: flatcamGUI/FlatCAMGUI.py:6975
+#| msgid "Paint Tool Options"
+msgid "Paint Plotting"
+msgstr "Paint Plotting"
+
+#: flatcamGUI/FlatCAMGUI.py:6977
+msgid ""
+"- 'Normal' - normal plotting, done at the end of the Paint job\n"
+"- 'Progressive' - after each shape is generated it will be plotted."
+msgstr ""
+"- 'Normal' - normal plotting, done at the end of the Paint job\n"
+"- 'Progressive' - after each shape is generated it will be plotted."
+
+#: flatcamGUI/FlatCAMGUI.py:6991
msgid "Film Tool Options"
msgstr "Film Tool Options"
-#: flatcamGUI/FlatCAMGUI.py:6810
+#: flatcamGUI/FlatCAMGUI.py:6996
msgid ""
"Create a PCB film from a Gerber or Geometry\n"
"FlatCAM object.\n"
@@ -9152,11 +10236,12 @@ msgstr ""
"FlatCAM object.\n"
"The file is saved in SVG format."
-#: flatcamGUI/FlatCAMGUI.py:6821 flatcamTools/ToolFilm.py:116
-msgid "Film Type:"
-msgstr "Film Type:"
+#: flatcamGUI/FlatCAMGUI.py:7007
+#| msgid "Film Type:"
+msgid "Film Type"
+msgstr "Film Type"
-#: flatcamGUI/FlatCAMGUI.py:6823 flatcamTools/ToolFilm.py:118
+#: flatcamGUI/FlatCAMGUI.py:7009 flatcamTools/ToolFilm.py:118
msgid ""
"Generate a Positive black film or a Negative film.\n"
"Positive means that it will print the features\n"
@@ -9172,11 +10257,11 @@ msgstr ""
"with white on a black canvas.\n"
"The Film format is SVG."
-#: flatcamGUI/FlatCAMGUI.py:6834 flatcamTools/ToolFilm.py:130
+#: flatcamGUI/FlatCAMGUI.py:7020 flatcamTools/ToolFilm.py:130
msgid "Border"
msgstr "Border"
-#: flatcamGUI/FlatCAMGUI.py:6836 flatcamTools/ToolFilm.py:132
+#: flatcamGUI/FlatCAMGUI.py:7022 flatcamTools/ToolFilm.py:132
msgid ""
"Specify a border around the object.\n"
"Only for negative film.\n"
@@ -9196,11 +10281,11 @@ msgstr ""
"white color like the rest and which may confound with the\n"
"surroundings if not for this border."
-#: flatcamGUI/FlatCAMGUI.py:6849 flatcamTools/ToolFilm.py:144
+#: flatcamGUI/FlatCAMGUI.py:7035 flatcamTools/ToolFilm.py:144
msgid "Scale Stroke"
msgstr "Scale Stroke"
-#: flatcamGUI/FlatCAMGUI.py:6851 flatcamTools/ToolFilm.py:146
+#: flatcamGUI/FlatCAMGUI.py:7037 flatcamTools/ToolFilm.py:146
msgid ""
"Scale the line stroke thickness of each feature in the SVG file.\n"
"It means that the line that envelope each SVG feature will be thicker or "
@@ -9212,11 +10297,11 @@ msgstr ""
"thinner,\n"
"therefore the fine features may be more affected by this parameter."
-#: flatcamGUI/FlatCAMGUI.py:6866
+#: flatcamGUI/FlatCAMGUI.py:7052
msgid "Panelize Tool Options"
msgstr "Panelize Tool Options"
-#: flatcamGUI/FlatCAMGUI.py:6871
+#: flatcamGUI/FlatCAMGUI.py:7057
msgid ""
"Create an object that contains an array of (x, y) elements,\n"
"each element is a copy of the source object spaced\n"
@@ -9226,11 +10311,11 @@ msgstr ""
"each element is a copy of the source object spaced\n"
"at a X distance, Y distance of each other."
-#: flatcamGUI/FlatCAMGUI.py:6882 flatcamTools/ToolPanelize.py:147
+#: flatcamGUI/FlatCAMGUI.py:7068 flatcamTools/ToolPanelize.py:147
msgid "Spacing cols"
msgstr "Spacing cols"
-#: flatcamGUI/FlatCAMGUI.py:6884 flatcamTools/ToolPanelize.py:149
+#: flatcamGUI/FlatCAMGUI.py:7070 flatcamTools/ToolPanelize.py:149
msgid ""
"Spacing between columns of the desired panel.\n"
"In current units."
@@ -9238,11 +10323,11 @@ msgstr ""
"Spacing between columns of the desired panel.\n"
"In current units."
-#: flatcamGUI/FlatCAMGUI.py:6892 flatcamTools/ToolPanelize.py:156
+#: flatcamGUI/FlatCAMGUI.py:7078 flatcamTools/ToolPanelize.py:156
msgid "Spacing rows"
msgstr "Spacing rows"
-#: flatcamGUI/FlatCAMGUI.py:6894 flatcamTools/ToolPanelize.py:158
+#: flatcamGUI/FlatCAMGUI.py:7080 flatcamTools/ToolPanelize.py:158
msgid ""
"Spacing between rows of the desired panel.\n"
"In current units."
@@ -9250,35 +10335,35 @@ msgstr ""
"Spacing between rows of the desired panel.\n"
"In current units."
-#: flatcamGUI/FlatCAMGUI.py:6902 flatcamTools/ToolPanelize.py:165
+#: flatcamGUI/FlatCAMGUI.py:7088 flatcamTools/ToolPanelize.py:165
msgid "Columns"
msgstr "Columns"
-#: flatcamGUI/FlatCAMGUI.py:6904 flatcamTools/ToolPanelize.py:167
+#: flatcamGUI/FlatCAMGUI.py:7090 flatcamTools/ToolPanelize.py:167
msgid "Number of columns of the desired panel"
msgstr "Number of columns of the desired panel"
-#: flatcamGUI/FlatCAMGUI.py:6911 flatcamTools/ToolPanelize.py:173
+#: flatcamGUI/FlatCAMGUI.py:7097 flatcamTools/ToolPanelize.py:173
msgid "Rows"
msgstr "Rows"
-#: flatcamGUI/FlatCAMGUI.py:6913 flatcamTools/ToolPanelize.py:175
+#: flatcamGUI/FlatCAMGUI.py:7099 flatcamTools/ToolPanelize.py:175
msgid "Number of rows of the desired panel"
msgstr "Number of rows of the desired panel"
-#: flatcamGUI/FlatCAMGUI.py:6919 flatcamTools/ToolPanelize.py:181
+#: flatcamGUI/FlatCAMGUI.py:7105 flatcamTools/ToolPanelize.py:181
msgid "Gerber"
msgstr "Gerber"
-#: flatcamGUI/FlatCAMGUI.py:6920 flatcamTools/ToolPanelize.py:182
+#: flatcamGUI/FlatCAMGUI.py:7106 flatcamTools/ToolPanelize.py:182
msgid "Geo"
msgstr "Geo"
-#: flatcamGUI/FlatCAMGUI.py:6921 flatcamTools/ToolPanelize.py:183
+#: flatcamGUI/FlatCAMGUI.py:7107 flatcamTools/ToolPanelize.py:183
msgid "Panel Type"
msgstr "Panel Type"
-#: flatcamGUI/FlatCAMGUI.py:6923
+#: flatcamGUI/FlatCAMGUI.py:7109
msgid ""
"Choose the type of object for the panel object:\n"
"- Gerber\n"
@@ -9288,11 +10373,11 @@ msgstr ""
"- Gerber\n"
"- Geometry"
-#: flatcamGUI/FlatCAMGUI.py:6932
+#: flatcamGUI/FlatCAMGUI.py:7118
msgid "Constrain within"
msgstr "Constrain within"
-#: flatcamGUI/FlatCAMGUI.py:6934 flatcamTools/ToolPanelize.py:195
+#: flatcamGUI/FlatCAMGUI.py:7120 flatcamTools/ToolPanelize.py:195
msgid ""
"Area define by DX and DY within to constrain the panel.\n"
"DX and DY values are in current units.\n"
@@ -9306,11 +10391,11 @@ msgstr ""
"the final panel will have as many columns and rows as\n"
"they fit completely within selected area."
-#: flatcamGUI/FlatCAMGUI.py:6943 flatcamTools/ToolPanelize.py:204
+#: flatcamGUI/FlatCAMGUI.py:7129 flatcamTools/ToolPanelize.py:204
msgid "Width (DX)"
msgstr "Width (DX)"
-#: flatcamGUI/FlatCAMGUI.py:6945 flatcamTools/ToolPanelize.py:206
+#: flatcamGUI/FlatCAMGUI.py:7131 flatcamTools/ToolPanelize.py:206
msgid ""
"The width (DX) within which the panel must fit.\n"
"In current units."
@@ -9318,11 +10403,11 @@ msgstr ""
"The width (DX) within which the panel must fit.\n"
"In current units."
-#: flatcamGUI/FlatCAMGUI.py:6952 flatcamTools/ToolPanelize.py:212
+#: flatcamGUI/FlatCAMGUI.py:7138 flatcamTools/ToolPanelize.py:212
msgid "Height (DY)"
msgstr "Height (DY)"
-#: flatcamGUI/FlatCAMGUI.py:6954 flatcamTools/ToolPanelize.py:214
+#: flatcamGUI/FlatCAMGUI.py:7140 flatcamTools/ToolPanelize.py:214
msgid ""
"The height (DY)within which the panel must fit.\n"
"In current units."
@@ -9330,15 +10415,15 @@ msgstr ""
"The height (DY)within which the panel must fit.\n"
"In current units."
-#: flatcamGUI/FlatCAMGUI.py:6968
+#: flatcamGUI/FlatCAMGUI.py:7154
msgid "Calculators Tool Options"
msgstr "Calculators Tool Options"
-#: flatcamGUI/FlatCAMGUI.py:6971 flatcamTools/ToolCalculators.py:25
+#: flatcamGUI/FlatCAMGUI.py:7157 flatcamTools/ToolCalculators.py:25
msgid "V-Shape Tool Calculator"
msgstr "V-Shape Tool Calculator"
-#: flatcamGUI/FlatCAMGUI.py:6973
+#: flatcamGUI/FlatCAMGUI.py:7159
msgid ""
"Calculate the tool diameter for a given V-shape tool,\n"
"having the tip diameter, tip angle and\n"
@@ -9348,11 +10433,11 @@ msgstr ""
"having the tip diameter, tip angle and\n"
"depth-of-cut as parameters."
-#: flatcamGUI/FlatCAMGUI.py:6984 flatcamTools/ToolCalculators.py:92
+#: flatcamGUI/FlatCAMGUI.py:7170 flatcamTools/ToolCalculators.py:92
msgid "Tip Diameter"
msgstr "Tip Diameter"
-#: flatcamGUI/FlatCAMGUI.py:6986 flatcamTools/ToolCalculators.py:97
+#: flatcamGUI/FlatCAMGUI.py:7172 flatcamTools/ToolCalculators.py:97
msgid ""
"This is the tool tip diameter.\n"
"It is specified by manufacturer."
@@ -9360,11 +10445,11 @@ msgstr ""
"This is the tool tip diameter.\n"
"It is specified by manufacturer."
-#: flatcamGUI/FlatCAMGUI.py:6994 flatcamTools/ToolCalculators.py:100
+#: flatcamGUI/FlatCAMGUI.py:7180 flatcamTools/ToolCalculators.py:100
msgid "Tip Angle"
msgstr "Tip Angle"
-#: flatcamGUI/FlatCAMGUI.py:6996
+#: flatcamGUI/FlatCAMGUI.py:7182
msgid ""
"This is the angle on the tip of the tool.\n"
"It is specified by manufacturer."
@@ -9372,7 +10457,7 @@ msgstr ""
"This is the angle on the tip of the tool.\n"
"It is specified by manufacturer."
-#: flatcamGUI/FlatCAMGUI.py:7006
+#: flatcamGUI/FlatCAMGUI.py:7192
msgid ""
"This is depth to cut into material.\n"
"In the CNCJob object it is the CutZ parameter."
@@ -9380,11 +10465,11 @@ msgstr ""
"This is depth to cut into material.\n"
"In the CNCJob object it is the CutZ parameter."
-#: flatcamGUI/FlatCAMGUI.py:7013 flatcamTools/ToolCalculators.py:27
+#: flatcamGUI/FlatCAMGUI.py:7199 flatcamTools/ToolCalculators.py:27
msgid "ElectroPlating Calculator"
msgstr "ElectroPlating Calculator"
-#: flatcamGUI/FlatCAMGUI.py:7015 flatcamTools/ToolCalculators.py:149
+#: flatcamGUI/FlatCAMGUI.py:7201 flatcamTools/ToolCalculators.py:149
msgid ""
"This calculator is useful for those who plate the via/pad/drill holes,\n"
"using a method like grahite ink or calcium hypophosphite ink or palladium "
@@ -9394,27 +10479,27 @@ msgstr ""
"using a method like grahite ink or calcium hypophosphite ink or palladium "
"chloride."
-#: flatcamGUI/FlatCAMGUI.py:7025 flatcamTools/ToolCalculators.py:158
+#: flatcamGUI/FlatCAMGUI.py:7211 flatcamTools/ToolCalculators.py:158
msgid "Board Length"
msgstr "Board Length"
-#: flatcamGUI/FlatCAMGUI.py:7027 flatcamTools/ToolCalculators.py:162
+#: flatcamGUI/FlatCAMGUI.py:7213 flatcamTools/ToolCalculators.py:162
msgid "This is the board length. In centimeters."
msgstr "This is the board length. In centimeters."
-#: flatcamGUI/FlatCAMGUI.py:7033 flatcamTools/ToolCalculators.py:164
+#: flatcamGUI/FlatCAMGUI.py:7219 flatcamTools/ToolCalculators.py:164
msgid "Board Width"
msgstr "Board Width"
-#: flatcamGUI/FlatCAMGUI.py:7035 flatcamTools/ToolCalculators.py:168
+#: flatcamGUI/FlatCAMGUI.py:7221 flatcamTools/ToolCalculators.py:168
msgid "This is the board width.In centimeters."
msgstr "This is the board width.In centimeters."
-#: flatcamGUI/FlatCAMGUI.py:7040 flatcamTools/ToolCalculators.py:170
+#: flatcamGUI/FlatCAMGUI.py:7226 flatcamTools/ToolCalculators.py:170
msgid "Current Density"
msgstr "Current Density"
-#: flatcamGUI/FlatCAMGUI.py:7043 flatcamTools/ToolCalculators.py:174
+#: flatcamGUI/FlatCAMGUI.py:7229 flatcamTools/ToolCalculators.py:174
msgid ""
"Current density to pass through the board. \n"
"In Amps per Square Feet ASF."
@@ -9422,11 +10507,11 @@ msgstr ""
"Current density to pass through the board. \n"
"In Amps per Square Feet ASF."
-#: flatcamGUI/FlatCAMGUI.py:7049 flatcamTools/ToolCalculators.py:177
+#: flatcamGUI/FlatCAMGUI.py:7235 flatcamTools/ToolCalculators.py:177
msgid "Copper Growth"
msgstr "Copper Growth"
-#: flatcamGUI/FlatCAMGUI.py:7052 flatcamTools/ToolCalculators.py:181
+#: flatcamGUI/FlatCAMGUI.py:7238 flatcamTools/ToolCalculators.py:181
msgid ""
"How thick the copper growth is intended to be.\n"
"In microns."
@@ -9434,11 +10519,11 @@ msgstr ""
"How thick the copper growth is intended to be.\n"
"In microns."
-#: flatcamGUI/FlatCAMGUI.py:7065
+#: flatcamGUI/FlatCAMGUI.py:7251
msgid "Transform Tool Options"
msgstr "Transform Tool Options"
-#: flatcamGUI/FlatCAMGUI.py:7070
+#: flatcamGUI/FlatCAMGUI.py:7256
msgid ""
"Various transformations that can be applied\n"
"on a FlatCAM object."
@@ -9446,35 +10531,35 @@ msgstr ""
"Various transformations that can be applied\n"
"on a FlatCAM object."
-#: flatcamGUI/FlatCAMGUI.py:7080
+#: flatcamGUI/FlatCAMGUI.py:7266
msgid "Rotate Angle"
msgstr "Rotate Angle"
-#: flatcamGUI/FlatCAMGUI.py:7092 flatcamTools/ToolTransform.py:107
+#: flatcamGUI/FlatCAMGUI.py:7278 flatcamTools/ToolTransform.py:107
msgid "Skew_X angle"
msgstr "Skew_X angle"
-#: flatcamGUI/FlatCAMGUI.py:7102 flatcamTools/ToolTransform.py:125
+#: flatcamGUI/FlatCAMGUI.py:7288 flatcamTools/ToolTransform.py:125
msgid "Skew_Y angle"
msgstr "Skew_Y angle"
-#: flatcamGUI/FlatCAMGUI.py:7112 flatcamTools/ToolTransform.py:164
+#: flatcamGUI/FlatCAMGUI.py:7298 flatcamTools/ToolTransform.py:164
msgid "Scale_X factor"
msgstr "Scale_X factor"
-#: flatcamGUI/FlatCAMGUI.py:7114 flatcamTools/ToolTransform.py:166
+#: flatcamGUI/FlatCAMGUI.py:7300 flatcamTools/ToolTransform.py:166
msgid "Factor for scaling on X axis."
msgstr "Factor for scaling on X axis."
-#: flatcamGUI/FlatCAMGUI.py:7121 flatcamTools/ToolTransform.py:181
+#: flatcamGUI/FlatCAMGUI.py:7307 flatcamTools/ToolTransform.py:181
msgid "Scale_Y factor"
msgstr "Scale_Y factor"
-#: flatcamGUI/FlatCAMGUI.py:7123 flatcamTools/ToolTransform.py:183
+#: flatcamGUI/FlatCAMGUI.py:7309 flatcamTools/ToolTransform.py:183
msgid "Factor for scaling on Y axis."
msgstr "Factor for scaling on Y axis."
-#: flatcamGUI/FlatCAMGUI.py:7131 flatcamTools/ToolTransform.py:202
+#: flatcamGUI/FlatCAMGUI.py:7317 flatcamTools/ToolTransform.py:202
msgid ""
"Scale the selected object(s)\n"
"using the Scale_X factor for both axis."
@@ -9482,7 +10567,7 @@ msgstr ""
"Scale the selected object(s)\n"
"using the Scale_X factor for both axis."
-#: flatcamGUI/FlatCAMGUI.py:7139 flatcamTools/ToolTransform.py:211
+#: flatcamGUI/FlatCAMGUI.py:7325 flatcamTools/ToolTransform.py:211
msgid ""
"Scale the selected object(s)\n"
"using the origin reference when checked,\n"
@@ -9494,27 +10579,27 @@ msgstr ""
"and the center of the biggest bounding box\n"
"of the selected objects when unchecked."
-#: flatcamGUI/FlatCAMGUI.py:7148 flatcamTools/ToolTransform.py:239
+#: flatcamGUI/FlatCAMGUI.py:7334 flatcamTools/ToolTransform.py:239
msgid "Offset_X val"
msgstr "Offset_X val"
-#: flatcamGUI/FlatCAMGUI.py:7150 flatcamTools/ToolTransform.py:241
+#: flatcamGUI/FlatCAMGUI.py:7336 flatcamTools/ToolTransform.py:241
msgid "Distance to offset on X axis. In current units."
msgstr "Distance to offset on X axis. In current units."
-#: flatcamGUI/FlatCAMGUI.py:7157 flatcamTools/ToolTransform.py:256
+#: flatcamGUI/FlatCAMGUI.py:7343 flatcamTools/ToolTransform.py:256
msgid "Offset_Y val"
msgstr "Offset_Y val"
-#: flatcamGUI/FlatCAMGUI.py:7159 flatcamTools/ToolTransform.py:258
+#: flatcamGUI/FlatCAMGUI.py:7345 flatcamTools/ToolTransform.py:258
msgid "Distance to offset on Y axis. In current units."
msgstr "Distance to offset on Y axis. In current units."
-#: flatcamGUI/FlatCAMGUI.py:7165 flatcamTools/ToolTransform.py:313
+#: flatcamGUI/FlatCAMGUI.py:7351 flatcamTools/ToolTransform.py:313
msgid "Mirror Reference"
msgstr "Mirror Reference"
-#: flatcamGUI/FlatCAMGUI.py:7167 flatcamTools/ToolTransform.py:315
+#: flatcamGUI/FlatCAMGUI.py:7353 flatcamTools/ToolTransform.py:315
msgid ""
"Flip the selected object(s)\n"
"around the point in Point Entry Field.\n"
@@ -9536,11 +10621,11 @@ msgstr ""
"Or enter the coords in format (x, y) in the\n"
"Point Entry field and click Flip on X(Y)"
-#: flatcamGUI/FlatCAMGUI.py:7178 flatcamTools/ToolTransform.py:326
+#: flatcamGUI/FlatCAMGUI.py:7364 flatcamTools/ToolTransform.py:326
msgid " Mirror Ref. Point"
msgstr " Mirror Ref. Point"
-#: flatcamGUI/FlatCAMGUI.py:7180 flatcamTools/ToolTransform.py:328
+#: flatcamGUI/FlatCAMGUI.py:7366 flatcamTools/ToolTransform.py:328
msgid ""
"Coordinates in format (x, y) used as reference for mirroring.\n"
"The 'x' in (x, y) will be used when using Flip on X and\n"
@@ -9550,11 +10635,11 @@ msgstr ""
"The 'x' in (x, y) will be used when using Flip on X and\n"
"the 'y' in (x, y) will be used when using Flip on Y and"
-#: flatcamGUI/FlatCAMGUI.py:7197
+#: flatcamGUI/FlatCAMGUI.py:7383
msgid "SolderPaste Tool Options"
msgstr "SolderPaste Tool Options"
-#: flatcamGUI/FlatCAMGUI.py:7202
+#: flatcamGUI/FlatCAMGUI.py:7388
msgid ""
"A tool to create GCode for dispensing\n"
"solder paste onto a PCB."
@@ -9562,47 +10647,47 @@ msgstr ""
"A tool to create GCode for dispensing\n"
"solder paste onto a PCB."
-#: flatcamGUI/FlatCAMGUI.py:7213
+#: flatcamGUI/FlatCAMGUI.py:7399
msgid "Diameters of nozzle tools, separated by ','"
msgstr "Diameters of nozzle tools, separated by ','"
-#: flatcamGUI/FlatCAMGUI.py:7220
+#: flatcamGUI/FlatCAMGUI.py:7406
msgid "New Nozzle Dia"
msgstr "New Nozzle Dia"
-#: flatcamGUI/FlatCAMGUI.py:7222 flatcamTools/ToolSolderPaste.py:103
+#: flatcamGUI/FlatCAMGUI.py:7408 flatcamTools/ToolSolderPaste.py:103
msgid "Diameter for the new Nozzle tool to add in the Tool Table"
msgstr "Diameter for the new Nozzle tool to add in the Tool Table"
-#: flatcamGUI/FlatCAMGUI.py:7230 flatcamTools/ToolSolderPaste.py:166
+#: flatcamGUI/FlatCAMGUI.py:7416 flatcamTools/ToolSolderPaste.py:166
msgid "Z Dispense Start"
msgstr "Z Dispense Start"
-#: flatcamGUI/FlatCAMGUI.py:7232 flatcamTools/ToolSolderPaste.py:168
+#: flatcamGUI/FlatCAMGUI.py:7418 flatcamTools/ToolSolderPaste.py:168
msgid "The height (Z) when solder paste dispensing starts."
msgstr "The height (Z) when solder paste dispensing starts."
-#: flatcamGUI/FlatCAMGUI.py:7239 flatcamTools/ToolSolderPaste.py:174
+#: flatcamGUI/FlatCAMGUI.py:7425 flatcamTools/ToolSolderPaste.py:174
msgid "Z Dispense"
msgstr "Z Dispense"
-#: flatcamGUI/FlatCAMGUI.py:7241 flatcamTools/ToolSolderPaste.py:176
+#: flatcamGUI/FlatCAMGUI.py:7427 flatcamTools/ToolSolderPaste.py:176
msgid "The height (Z) when doing solder paste dispensing."
msgstr "The height (Z) when doing solder paste dispensing."
-#: flatcamGUI/FlatCAMGUI.py:7248 flatcamTools/ToolSolderPaste.py:182
+#: flatcamGUI/FlatCAMGUI.py:7434 flatcamTools/ToolSolderPaste.py:182
msgid "Z Dispense Stop"
msgstr "Z Dispense Stop"
-#: flatcamGUI/FlatCAMGUI.py:7250 flatcamTools/ToolSolderPaste.py:184
+#: flatcamGUI/FlatCAMGUI.py:7436 flatcamTools/ToolSolderPaste.py:184
msgid "The height (Z) when solder paste dispensing stops."
msgstr "The height (Z) when solder paste dispensing stops."
-#: flatcamGUI/FlatCAMGUI.py:7257 flatcamTools/ToolSolderPaste.py:190
+#: flatcamGUI/FlatCAMGUI.py:7443 flatcamTools/ToolSolderPaste.py:190
msgid "Z Travel"
msgstr "Z Travel"
-#: flatcamGUI/FlatCAMGUI.py:7259 flatcamTools/ToolSolderPaste.py:192
+#: flatcamGUI/FlatCAMGUI.py:7445 flatcamTools/ToolSolderPaste.py:192
msgid ""
"The height (Z) for travel between pads\n"
"(without dispensing solder paste)."
@@ -9610,19 +10695,19 @@ msgstr ""
"The height (Z) for travel between pads\n"
"(without dispensing solder paste)."
-#: flatcamGUI/FlatCAMGUI.py:7267 flatcamTools/ToolSolderPaste.py:199
+#: flatcamGUI/FlatCAMGUI.py:7453 flatcamTools/ToolSolderPaste.py:199
msgid "Z Toolchange"
msgstr "Z Toolchange"
-#: flatcamGUI/FlatCAMGUI.py:7269 flatcamTools/ToolSolderPaste.py:201
+#: flatcamGUI/FlatCAMGUI.py:7455 flatcamTools/ToolSolderPaste.py:201
msgid "The height (Z) for tool (nozzle) change."
msgstr "The height (Z) for tool (nozzle) change."
-#: flatcamGUI/FlatCAMGUI.py:7276 flatcamTools/ToolSolderPaste.py:207
+#: flatcamGUI/FlatCAMGUI.py:7462 flatcamTools/ToolSolderPaste.py:207
msgid "Toolchange X-Y"
msgstr "Toolchange X-Y"
-#: flatcamGUI/FlatCAMGUI.py:7278 flatcamTools/ToolSolderPaste.py:209
+#: flatcamGUI/FlatCAMGUI.py:7464 flatcamTools/ToolSolderPaste.py:209
msgid ""
"The X,Y location for tool (nozzle) change.\n"
"The format is (x, y) where x and y are real numbers."
@@ -9630,19 +10715,19 @@ msgstr ""
"The X,Y location for tool (nozzle) change.\n"
"The format is (x, y) where x and y are real numbers."
-#: flatcamGUI/FlatCAMGUI.py:7286 flatcamTools/ToolSolderPaste.py:216
+#: flatcamGUI/FlatCAMGUI.py:7472 flatcamTools/ToolSolderPaste.py:216
msgid "Feedrate X-Y"
msgstr "Feedrate X-Y"
-#: flatcamGUI/FlatCAMGUI.py:7288 flatcamTools/ToolSolderPaste.py:218
+#: flatcamGUI/FlatCAMGUI.py:7474 flatcamTools/ToolSolderPaste.py:218
msgid "Feedrate (speed) while moving on the X-Y plane."
msgstr "Feedrate (speed) while moving on the X-Y plane."
-#: flatcamGUI/FlatCAMGUI.py:7295 flatcamTools/ToolSolderPaste.py:224
+#: flatcamGUI/FlatCAMGUI.py:7481 flatcamTools/ToolSolderPaste.py:224
msgid "Feedrate Z"
msgstr "Feedrate Z"
-#: flatcamGUI/FlatCAMGUI.py:7297 flatcamTools/ToolSolderPaste.py:226
+#: flatcamGUI/FlatCAMGUI.py:7483 flatcamTools/ToolSolderPaste.py:226
msgid ""
"Feedrate (speed) while moving vertically\n"
"(on Z plane)."
@@ -9650,11 +10735,11 @@ msgstr ""
"Feedrate (speed) while moving vertically\n"
"(on Z plane)."
-#: flatcamGUI/FlatCAMGUI.py:7305 flatcamTools/ToolSolderPaste.py:233
+#: flatcamGUI/FlatCAMGUI.py:7491 flatcamTools/ToolSolderPaste.py:233
msgid "Feedrate Z Dispense"
msgstr "Feedrate Z Dispense"
-#: flatcamGUI/FlatCAMGUI.py:7307
+#: flatcamGUI/FlatCAMGUI.py:7493
msgid ""
"Feedrate (speed) while moving up vertically\n"
"to Dispense position (on Z plane)."
@@ -9662,11 +10747,11 @@ msgstr ""
"Feedrate (speed) while moving up vertically\n"
"to Dispense position (on Z plane)."
-#: flatcamGUI/FlatCAMGUI.py:7315 flatcamTools/ToolSolderPaste.py:242
+#: flatcamGUI/FlatCAMGUI.py:7501 flatcamTools/ToolSolderPaste.py:242
msgid "Spindle Speed FWD"
msgstr "Spindle Speed FWD"
-#: flatcamGUI/FlatCAMGUI.py:7317 flatcamTools/ToolSolderPaste.py:244
+#: flatcamGUI/FlatCAMGUI.py:7503 flatcamTools/ToolSolderPaste.py:244
msgid ""
"The dispenser speed while pushing solder paste\n"
"through the dispenser nozzle."
@@ -9674,19 +10759,19 @@ msgstr ""
"The dispenser speed while pushing solder paste\n"
"through the dispenser nozzle."
-#: flatcamGUI/FlatCAMGUI.py:7325 flatcamTools/ToolSolderPaste.py:251
+#: flatcamGUI/FlatCAMGUI.py:7511 flatcamTools/ToolSolderPaste.py:251
msgid "Dwell FWD"
msgstr "Dwell FWD"
-#: flatcamGUI/FlatCAMGUI.py:7327 flatcamTools/ToolSolderPaste.py:253
+#: flatcamGUI/FlatCAMGUI.py:7513 flatcamTools/ToolSolderPaste.py:253
msgid "Pause after solder dispensing."
msgstr "Pause after solder dispensing."
-#: flatcamGUI/FlatCAMGUI.py:7334 flatcamTools/ToolSolderPaste.py:259
+#: flatcamGUI/FlatCAMGUI.py:7520 flatcamTools/ToolSolderPaste.py:259
msgid "Spindle Speed REV"
msgstr "Spindle Speed REV"
-#: flatcamGUI/FlatCAMGUI.py:7336 flatcamTools/ToolSolderPaste.py:261
+#: flatcamGUI/FlatCAMGUI.py:7522 flatcamTools/ToolSolderPaste.py:261
msgid ""
"The dispenser speed while retracting solder paste\n"
"through the dispenser nozzle."
@@ -9694,11 +10779,11 @@ msgstr ""
"The dispenser speed while retracting solder paste\n"
"through the dispenser nozzle."
-#: flatcamGUI/FlatCAMGUI.py:7344 flatcamTools/ToolSolderPaste.py:268
+#: flatcamGUI/FlatCAMGUI.py:7530 flatcamTools/ToolSolderPaste.py:268
msgid "Dwell REV"
msgstr "Dwell REV"
-#: flatcamGUI/FlatCAMGUI.py:7346 flatcamTools/ToolSolderPaste.py:270
+#: flatcamGUI/FlatCAMGUI.py:7532 flatcamTools/ToolSolderPaste.py:270
msgid ""
"Pause after solder paste dispenser retracted,\n"
"to allow pressure equilibrium."
@@ -9706,20 +10791,20 @@ msgstr ""
"Pause after solder paste dispenser retracted,\n"
"to allow pressure equilibrium."
-#: flatcamGUI/FlatCAMGUI.py:7353 flatcamGUI/ObjectUI.py:1234
+#: flatcamGUI/FlatCAMGUI.py:7539 flatcamGUI/ObjectUI.py:1297
#: flatcamTools/ToolSolderPaste.py:276
msgid "PostProcessor"
msgstr "PostProcessor"
-#: flatcamGUI/FlatCAMGUI.py:7355 flatcamTools/ToolSolderPaste.py:278
+#: flatcamGUI/FlatCAMGUI.py:7541 flatcamTools/ToolSolderPaste.py:278
msgid "Files that control the GCode generation."
msgstr "Files that control the GCode generation."
-#: flatcamGUI/FlatCAMGUI.py:7370
+#: flatcamGUI/FlatCAMGUI.py:7556
msgid "Substractor Tool Options"
msgstr "Substractor Tool Options"
-#: flatcamGUI/FlatCAMGUI.py:7375
+#: flatcamGUI/FlatCAMGUI.py:7561
msgid ""
"A tool to substract one Gerber or Geometry object\n"
"from another of the same type."
@@ -9727,25 +10812,66 @@ msgstr ""
"A tool to substract one Gerber or Geometry object\n"
"from another of the same type."
-#: flatcamGUI/FlatCAMGUI.py:7380 flatcamTools/ToolSub.py:135
+#: flatcamGUI/FlatCAMGUI.py:7566 flatcamTools/ToolSub.py:135
msgid "Close paths"
msgstr "Close paths"
-#: flatcamGUI/FlatCAMGUI.py:7381 flatcamTools/ToolSub.py:136
+#: flatcamGUI/FlatCAMGUI.py:7567 flatcamTools/ToolSub.py:136
msgid ""
"Checking this will close the paths cut by the Geometry substractor object."
msgstr ""
"Checking this will close the paths cut by the Geometry substractor object."
-#: flatcamGUI/FlatCAMGUI.py:7407 flatcamGUI/FlatCAMGUI.py:7413
+#: flatcamGUI/FlatCAMGUI.py:7578
+#| msgid "Excellon Optimization"
+msgid "Excellon File associations"
+msgstr "Excellon File associations"
+
+#: flatcamGUI/FlatCAMGUI.py:7581 flatcamGUI/FlatCAMGUI.py:7614
+#: flatcamGUI/FlatCAMGUI.py:7647
+msgid "Extensions list"
+msgstr "Extensions list"
+
+#: flatcamGUI/FlatCAMGUI.py:7583 flatcamGUI/FlatCAMGUI.py:7616
+#: flatcamGUI/FlatCAMGUI.py:7649
+msgid ""
+"List of file extensions to be\n"
+"associated with FlatCAM."
+msgstr ""
+"List of file extensions to be\n"
+"associated with FlatCAM."
+
+#: flatcamGUI/FlatCAMGUI.py:7597 flatcamGUI/FlatCAMGUI.py:7630
+#: flatcamGUI/FlatCAMGUI.py:7662
+msgid ""
+"Apply the file associations between\n"
+"FlatCAM and the files with above extensions.\n"
+"They will be active after next logon.\n"
+"This work only in Windows."
+msgstr ""
+"Apply the file associations between\n"
+"FlatCAM and the files with above extensions.\n"
+"They will be active after next logon.\n"
+"This work only in Windows."
+
+#: flatcamGUI/FlatCAMGUI.py:7611
+msgid "GCode File associations"
+msgstr "GCode File associations"
+
+#: flatcamGUI/FlatCAMGUI.py:7644
+#| msgid "Gerber Options"
+msgid "Gerber File associations"
+msgstr "Gerber File associations"
+
+#: flatcamGUI/FlatCAMGUI.py:7691 flatcamGUI/FlatCAMGUI.py:7697
msgid "Idle."
msgstr "Idle."
-#: flatcamGUI/FlatCAMGUI.py:7437
+#: flatcamGUI/FlatCAMGUI.py:7722
msgid "Application started ..."
msgstr "Application started ..."
-#: flatcamGUI/FlatCAMGUI.py:7438
+#: flatcamGUI/FlatCAMGUI.py:7723
msgid "Hello!"
msgstr "Hello!"
@@ -9815,8 +10941,8 @@ msgstr "Perform the offset operation."
msgid "Gerber Object"
msgstr "Gerber Object"
-#: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:515
-#: flatcamGUI/ObjectUI.py:837 flatcamGUI/ObjectUI.py:1361
+#: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:574
+#: flatcamGUI/ObjectUI.py:900 flatcamGUI/ObjectUI.py:1423
msgid "Name"
msgstr "Name"
@@ -9848,7 +10974,7 @@ msgstr ""
msgid "Mark the aperture instances on canvas."
msgstr "Mark the aperture instances on canvas."
-#: flatcamGUI/ObjectUI.py:261
+#: flatcamGUI/ObjectUI.py:266
msgid ""
"Diameter of the cutting tool.\n"
"If you want to have an isolation path\n"
@@ -9862,12 +10988,58 @@ msgstr ""
"feature, use a negative value for\n"
"this parameter."
-#: flatcamGUI/ObjectUI.py:323
-msgid "Generate Isolation Geometry"
-msgstr "Generate Isolation Geometry"
+#: flatcamGUI/ObjectUI.py:324
+msgid "Except"
+msgstr "Except"
#: flatcamGUI/ObjectUI.py:325
msgid ""
+"When the isolation geometry is generated,\n"
+"by checking this, the area of the object bellow\n"
+"will be subtracted from the isolation geometry."
+msgstr ""
+"When the isolation geometry is generated,\n"
+"by checking this, the area of the object bellow\n"
+"will be subtracted from the isolation geometry."
+
+#: flatcamGUI/ObjectUI.py:350 flatcamTools/ToolCutOut.py:53
+#: flatcamTools/ToolNonCopperClear.py:69 flatcamTools/ToolPaint.py:68
+msgid "Obj Type"
+msgstr "Obj Type"
+
+#: flatcamGUI/ObjectUI.py:352
+#| msgid ""
+#| "Specify the type of object to be cutout.\n"
+#| "It can be of type: Gerber or Geometry.\n"
+#| "What is selected here will dictate the kind\n"
+#| "of objects that will populate the 'Object' combobox."
+msgid ""
+"Specify the type of object to be excepted from isolation.\n"
+"It can be of type: Gerber or Geometry.\n"
+"What is selected here will dictate the kind\n"
+"of objects that will populate the 'Object' combobox."
+msgstr ""
+"Specify the type of object to be excepted from isolation.\n"
+"It can be of type: Gerber or Geometry.\n"
+"What is selected here will dictate the kind\n"
+"of objects that will populate the 'Object' combobox."
+
+#: flatcamGUI/ObjectUI.py:365 flatcamTools/ToolCutOut.py:69
+#: flatcamTools/ToolNonCopperClear.py:87 flatcamTools/ToolPaint.py:86
+#: flatcamTools/ToolPanelize.py:71 flatcamTools/ToolPanelize.py:84
+msgid "Object"
+msgstr "Object"
+
+#: flatcamGUI/ObjectUI.py:366
+msgid "Object whose area will be removed from isolation geometry."
+msgstr "Object whose area will be removed from isolation geometry."
+
+#: flatcamGUI/ObjectUI.py:370
+msgid "Generate Isolation Geometry"
+msgstr "Generate Isolation Geometry"
+
+#: flatcamGUI/ObjectUI.py:372
+msgid ""
"Create a Geometry object with toolpaths to cut \n"
"isolation outside, inside or on both sides of the\n"
"object. For a Gerber object outside means outside\n"
@@ -9888,11 +11060,28 @@ msgstr ""
"inside the actual Gerber feature, use a negative tool\n"
"diameter above."
-#: flatcamGUI/ObjectUI.py:344
+#: flatcamGUI/ObjectUI.py:384
+#| msgid "Generate Isolation Geometry"
+msgid "Buffer Solid Geometry"
+msgstr "Buffer Solid Geometry"
+
+#: flatcamGUI/ObjectUI.py:386
+msgid ""
+"This button is shown only when the Gerber file\n"
+"is loaded without buffering.\n"
+"Clicking this will create the buffered geometry\n"
+"required for isolation."
+msgstr ""
+"This button is shown only when the Gerber file\n"
+"is loaded without buffering.\n"
+"Clicking this will create the buffered geometry\n"
+"required for isolation."
+
+#: flatcamGUI/ObjectUI.py:393
msgid "FULL Geo"
msgstr "FULL Geo"
-#: flatcamGUI/ObjectUI.py:346
+#: flatcamGUI/ObjectUI.py:395
msgid ""
"Create the Geometry Object\n"
"for isolation routing. It contains both\n"
@@ -9902,11 +11091,11 @@ msgstr ""
"for isolation routing. It contains both\n"
"the interiors and exteriors geometry."
-#: flatcamGUI/ObjectUI.py:355
+#: flatcamGUI/ObjectUI.py:404
msgid "Ext Geo"
msgstr "Ext Geo"
-#: flatcamGUI/ObjectUI.py:357
+#: flatcamGUI/ObjectUI.py:406
msgid ""
"Create the Geometry Object\n"
"for isolation routing containing\n"
@@ -9916,11 +11105,11 @@ msgstr ""
"for isolation routing containing\n"
"only the exteriors geometry."
-#: flatcamGUI/ObjectUI.py:364
+#: flatcamGUI/ObjectUI.py:413
msgid "Int Geo"
msgstr "Int Geo"
-#: flatcamGUI/ObjectUI.py:366
+#: flatcamGUI/ObjectUI.py:415
msgid ""
"Create the Geometry Object\n"
"for isolation routing containing\n"
@@ -9930,11 +11119,11 @@ msgstr ""
"for isolation routing containing\n"
"only the interiors geometry."
-#: flatcamGUI/ObjectUI.py:382
+#: flatcamGUI/ObjectUI.py:445
msgid "Clear N-copper"
msgstr "Clear N-copper"
-#: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:360
+#: flatcamGUI/ObjectUI.py:454 flatcamTools/ToolNonCopperClear.py:442
msgid ""
"Create the Geometry Object\n"
"for non-copper routing."
@@ -9942,15 +11131,15 @@ msgstr ""
"Create the Geometry Object\n"
"for non-copper routing."
-#: flatcamGUI/ObjectUI.py:398
+#: flatcamGUI/ObjectUI.py:461
msgid "Board cutout"
msgstr "Board cutout"
-#: flatcamGUI/ObjectUI.py:406 flatcamTools/ToolCutOut.py:337
+#: flatcamGUI/ObjectUI.py:468 flatcamTools/ToolCutOut.py:343
msgid "Cutout Tool"
msgstr "Cutout Tool"
-#: flatcamGUI/ObjectUI.py:408
+#: flatcamGUI/ObjectUI.py:470
msgid ""
"Generate the geometry for\n"
"the board cutout."
@@ -9958,13 +11147,13 @@ msgstr ""
"Generate the geometry for\n"
"the board cutout."
-#: flatcamGUI/ObjectUI.py:448 flatcamGUI/ObjectUI.py:482
-#: flatcamTools/ToolCutOut.py:184 flatcamTools/ToolCutOut.py:204
-#: flatcamTools/ToolCutOut.py:255 flatcamTools/ToolSolderPaste.py:127
+#: flatcamGUI/ObjectUI.py:508 flatcamGUI/ObjectUI.py:540
+#: flatcamTools/ToolCutOut.py:183 flatcamTools/ToolCutOut.py:203
+#: flatcamTools/ToolCutOut.py:254 flatcamTools/ToolSolderPaste.py:127
msgid "Generate Geo"
msgstr "Generate Geo"
-#: flatcamGUI/ObjectUI.py:454
+#: flatcamGUI/ObjectUI.py:515
msgid ""
"Create a geometry surrounding the Gerber object.\n"
"Square shape."
@@ -9972,34 +11161,42 @@ msgstr ""
"Create a geometry surrounding the Gerber object.\n"
"Square shape."
-#: flatcamGUI/ObjectUI.py:484
+#: flatcamGUI/ObjectUI.py:542
msgid "Generate the Geometry object."
msgstr "Generate the Geometry object."
-#: flatcamGUI/ObjectUI.py:495
+#: flatcamGUI/ObjectUI.py:554
msgid "Excellon Object"
msgstr "Excellon Object"
-#: flatcamGUI/ObjectUI.py:506
+#: flatcamGUI/ObjectUI.py:565
msgid "Solid circles."
msgstr "Solid circles."
-#: flatcamGUI/ObjectUI.py:554
+#: flatcamGUI/ObjectUI.py:613
msgid "Drills"
msgstr "Drills"
-#: flatcamGUI/ObjectUI.py:559
+#: flatcamGUI/ObjectUI.py:618
+#| msgid ""
+#| "This is the Tool Number.\n"
+#| "When ToolChange is checked, on toolchange event this value\n"
+#| "will be showed as a T1, T2 ... Tn in the Machine Code."
msgid ""
"This is the Tool Number.\n"
"When ToolChange is checked, on toolchange event this value\n"
-"will be showed as a T1, T2 ... Tn in the Machine Code."
+"will be showed as a T1, T2 ... Tn in the Machine Code.\n"
+"\n"
+"Here the tools are selected for G-code generation."
msgstr ""
"This is the Tool Number.\n"
"When ToolChange is checked, on toolchange event this value\n"
-"will be showed as a T1, T2 ... Tn in the Machine Code."
+"will be showed as a T1, T2 ... Tn in the Machine Code.\n"
+"\n"
+"Here the tools are selected for G-code generation."
-#: flatcamGUI/ObjectUI.py:563 flatcamGUI/ObjectUI.py:902
-#: flatcamTools/ToolNonCopperClear.py:121 flatcamTools/ToolPaint.py:120
+#: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:965
+#: flatcamTools/ToolPaint.py:120
msgid ""
"Tool Diameter. It's value (in current FlatCAM units) \n"
"is the cut width into the material."
@@ -10007,7 +11204,7 @@ msgstr ""
"Tool Diameter. It's value (in current FlatCAM units) \n"
"is the cut width into the material."
-#: flatcamGUI/ObjectUI.py:566
+#: flatcamGUI/ObjectUI.py:626
msgid ""
"The number of Drill holes. Holes that are drilled with\n"
"a drill bit."
@@ -10015,7 +11212,7 @@ msgstr ""
"The number of Drill holes. Holes that are drilled with\n"
"a drill bit."
-#: flatcamGUI/ObjectUI.py:569
+#: flatcamGUI/ObjectUI.py:629
msgid ""
"The number of Slot holes. Holes that are created by\n"
"milling them with an endmill bit."
@@ -10023,11 +11220,16 @@ msgstr ""
"The number of Slot holes. Holes that are created by\n"
"milling them with an endmill bit."
-#: flatcamGUI/ObjectUI.py:576
-msgid "Toggle display of the drills for the current tool."
-msgstr "Toggle display of the drills for the current tool."
+#: flatcamGUI/ObjectUI.py:636
+#| msgid "Toggle display of the drills for the current tool."
+msgid ""
+"Toggle display of the drills for the current tool.\n"
+"This does not select the tools for G-code generation."
+msgstr ""
+"Toggle display of the drills for the current tool.\n"
+"This does not select the tools for G-code generation."
-#: flatcamGUI/ObjectUI.py:584
+#: flatcamGUI/ObjectUI.py:645
msgid ""
"Create a CNC Job object\n"
"for this drill object."
@@ -10035,75 +11237,86 @@ msgstr ""
"Create a CNC Job object\n"
"for this drill object."
-#: flatcamGUI/ObjectUI.py:621 flatcamGUI/ObjectUI.py:1114
+#: flatcamGUI/ObjectUI.py:682 flatcamGUI/ObjectUI.py:1177
msgid "Tool change Z"
msgstr "Tool change Z"
-#: flatcamGUI/ObjectUI.py:738
+#: flatcamGUI/ObjectUI.py:799
+#| msgid ""
+#| "Select from the Tools Table above\n"
+#| " the hole dias that are to be milled."
msgid ""
"Select from the Tools Table above\n"
-"the tools you want to include."
+"the hole dias that are to be drilled.\n"
+"Use the # column to make the selection."
msgstr ""
"Select from the Tools Table above\n"
-"the tools you want to include."
-
-#: flatcamGUI/ObjectUI.py:747
-msgid ""
-"Choose what to use for GCode generation:\n"
-"'Drills', 'Slots' or 'Both'.\n"
-"When choosing 'Slots' or 'Both', slots will be\n"
-"converted to a series of drills."
-msgstr ""
-"Choose what to use for GCode generation:\n"
-"'Drills', 'Slots' or 'Both'.\n"
-"When choosing 'Slots' or 'Both', slots will be\n"
-"converted to a series of drills."
-
-#: flatcamGUI/ObjectUI.py:762
-msgid "Create GCode"
-msgstr "Create GCode"
-
-#: flatcamGUI/ObjectUI.py:764
-msgid "Generate the CNC Job."
-msgstr "Generate the CNC Job."
-
-#: flatcamGUI/ObjectUI.py:776
-msgid ""
-"Select from the Tools Table above\n"
-" the hole dias that are to be milled."
-msgstr ""
-"Select from the Tools Table above\n"
-" the hole dias that are to be milled."
-
-#: flatcamGUI/ObjectUI.py:790
-msgid "Mill Drills Geo"
-msgstr "Mill Drills Geo"
-
-#: flatcamGUI/ObjectUI.py:792
-msgid ""
-"Create the Geometry Object\n"
-"for milling DRILLS toolpaths."
-msgstr ""
-"Create the Geometry Object\n"
-"for milling DRILLS toolpaths."
-
-#: flatcamGUI/ObjectUI.py:807
-msgid "Mill Slots Geo"
-msgstr "Mill Slots Geo"
+"the hole dias that are to be drilled.\n"
+"Use the # column to make the selection."
#: flatcamGUI/ObjectUI.py:809
msgid ""
+"Choose what to use for GCode generation:\n"
+"'Drills', 'Slots' or 'Both'.\n"
+"When choosing 'Slots' or 'Both', slots will be\n"
+"converted to a series of drills."
+msgstr ""
+"Choose what to use for GCode generation:\n"
+"'Drills', 'Slots' or 'Both'.\n"
+"When choosing 'Slots' or 'Both', slots will be\n"
+"converted to a series of drills."
+
+#: flatcamGUI/ObjectUI.py:824
+#| msgid "Create GCode"
+msgid "Create Drills GCode"
+msgstr "Create Drills GCode"
+
+#: flatcamGUI/ObjectUI.py:826
+msgid "Generate the CNC Job."
+msgstr "Generate the CNC Job."
+
+#: flatcamGUI/ObjectUI.py:838
+#| msgid ""
+#| "Select from the Tools Table above\n"
+#| " the hole dias that are to be milled."
+msgid ""
+"Select from the Tools Table above\n"
+"the hole dias that are to be milled.\n"
+"Use the # column to make the selection."
+msgstr ""
+"Select from the Tools Table above\n"
+"the hole dias that are to be milled.\n"
+"Use the # column to make the selection."
+
+#: flatcamGUI/ObjectUI.py:853
+msgid "Mill Drills Geo"
+msgstr "Mill Drills Geo"
+
+#: flatcamGUI/ObjectUI.py:855
+msgid ""
+"Create the Geometry Object\n"
+"for milling DRILLS toolpaths."
+msgstr ""
+"Create the Geometry Object\n"
+"for milling DRILLS toolpaths."
+
+#: flatcamGUI/ObjectUI.py:870
+msgid "Mill Slots Geo"
+msgstr "Mill Slots Geo"
+
+#: flatcamGUI/ObjectUI.py:872
+msgid ""
"Create the Geometry Object\n"
"for milling SLOTS toolpaths."
msgstr ""
"Create the Geometry Object\n"
"for milling SLOTS toolpaths."
-#: flatcamGUI/ObjectUI.py:827
+#: flatcamGUI/ObjectUI.py:890
msgid "Geometry Object"
msgstr "Geometry Object"
-#: flatcamGUI/ObjectUI.py:858
+#: flatcamGUI/ObjectUI.py:921
msgid ""
"Tools in this Geometry object used for cutting.\n"
"The 'Offset' entry will set an offset for the cut.\n"
@@ -10131,16 +11344,16 @@ msgstr ""
"grayed out and Cut Z is automatically calculated from the newly \n"
"showed UI form entries named V-Tip Dia and V-Tip Angle."
-#: flatcamGUI/ObjectUI.py:889 flatcamGUI/ObjectUI.py:1455
+#: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
msgid "Dia"
msgstr "Dia"
-#: flatcamGUI/ObjectUI.py:889 flatcamGUI/ObjectUI.py:1455
+#: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
#: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
msgid "TT"
msgstr "TT"
-#: flatcamGUI/ObjectUI.py:896
+#: flatcamGUI/ObjectUI.py:959
msgid ""
"This is the Tool Number.\n"
"When ToolChange is checked, on toolchange event this value\n"
@@ -10150,7 +11363,7 @@ msgstr ""
"When ToolChange is checked, on toolchange event this value\n"
"will be showed as a T1, T2 ... Tn"
-#: flatcamGUI/ObjectUI.py:907
+#: flatcamGUI/ObjectUI.py:970
msgid ""
"The value for the Offset can be:\n"
"- Path -> There is no offset, the tool cut will be done through the geometry "
@@ -10166,11 +11379,21 @@ msgstr ""
"'pocket'.\n"
"- Out(side) -> The tool cut will follow the geometry line on the outside."
-#: flatcamGUI/ObjectUI.py:914
+#: flatcamGUI/ObjectUI.py:977
+#| msgid ""
+#| "The (Operation) Type has only informative value. Usually the UI form "
+#| "values \n"
+#| "are choosed based on the operation type and this will serve as a "
+#| "reminder.\n"
+#| "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
+#| "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
+#| "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
+#| "For Isolation we need a lower Feedrate as it use a milling bit with a "
+#| "fine tip."
msgid ""
"The (Operation) Type has only informative value. Usually the UI form "
"values \n"
-"are choosed based on the operation type and this will serve as a reminder.\n"
+"are choose based on the operation type and this will serve as a reminder.\n"
"Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
"For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
"For Finishing we may choose a higher Feedrate, without multiDepth.\n"
@@ -10179,14 +11402,14 @@ msgid ""
msgstr ""
"The (Operation) Type has only informative value. Usually the UI form "
"values \n"
-"are choosed based on the operation type and this will serve as a reminder.\n"
+"are choose based on the operation type and this will serve as a reminder.\n"
"Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
"For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
"For Finishing we may choose a higher Feedrate, without multiDepth.\n"
"For Isolation we need a lower Feedrate as it use a milling bit with a fine "
"tip."
-#: flatcamGUI/ObjectUI.py:923
+#: flatcamGUI/ObjectUI.py:986
msgid ""
"The Tool Type (TT) can be:\n"
"- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
@@ -10216,7 +11439,7 @@ msgstr ""
"Choosing the V-Shape Tool Type automatically will select the Operation Type "
"as Isolation."
-#: flatcamGUI/ObjectUI.py:935
+#: flatcamGUI/ObjectUI.py:998
msgid ""
"Plot column. It is visible only for MultiGeo geometries, meaning geometries "
"that holds the geometry\n"
@@ -10234,11 +11457,11 @@ msgstr ""
"plot on canvas\n"
"for the corresponding tool."
-#: flatcamGUI/ObjectUI.py:948
+#: flatcamGUI/ObjectUI.py:1011
msgid "Tool Offset"
msgstr "Tool Offset"
-#: flatcamGUI/ObjectUI.py:951
+#: flatcamGUI/ObjectUI.py:1014
msgid ""
"The value to offset the cut when \n"
"the Offset type selected is 'Offset'.\n"
@@ -10250,12 +11473,7 @@ msgstr ""
"The value can be positive for 'outside'\n"
"cut and negative for 'inside' cut."
-#: flatcamGUI/ObjectUI.py:974 flatcamTools/ToolNonCopperClear.py:160
-#: flatcamTools/ToolPaint.py:162
-msgid "Tool Dia"
-msgstr "Tool Dia"
-
-#: flatcamGUI/ObjectUI.py:993 flatcamTools/ToolNonCopperClear.py:172
+#: flatcamGUI/ObjectUI.py:1056 flatcamTools/ToolNonCopperClear.py:239
#: flatcamTools/ToolPaint.py:178
msgid ""
"Add a new tool to the Tool Table\n"
@@ -10264,7 +11482,7 @@ msgstr ""
"Add a new tool to the Tool Table\n"
"with the diameter specified above."
-#: flatcamGUI/ObjectUI.py:1001
+#: flatcamGUI/ObjectUI.py:1064
msgid ""
"Copy a selection of tools in the Tool Table\n"
"by first selecting a row in the Tool Table."
@@ -10272,7 +11490,7 @@ msgstr ""
"Copy a selection of tools in the Tool Table\n"
"by first selecting a row in the Tool Table."
-#: flatcamGUI/ObjectUI.py:1009
+#: flatcamGUI/ObjectUI.py:1072
msgid ""
"Delete a selection of tools in the Tool Table\n"
"by first selecting a row in the Tool Table."
@@ -10280,11 +11498,11 @@ msgstr ""
"Delete a selection of tools in the Tool Table\n"
"by first selecting a row in the Tool Table."
-#: flatcamGUI/ObjectUI.py:1025
+#: flatcamGUI/ObjectUI.py:1088
msgid "Tool Data"
msgstr "Tool Data"
-#: flatcamGUI/ObjectUI.py:1028
+#: flatcamGUI/ObjectUI.py:1091
msgid ""
"The data used for creating GCode.\n"
"Each tool store it's own set of such data."
@@ -10292,31 +11510,11 @@ msgstr ""
"The data used for creating GCode.\n"
"Each tool store it's own set of such data."
-#: flatcamGUI/ObjectUI.py:1046
-msgid "V-Tip Dia"
-msgstr "V-Tip Dia"
-
-#: flatcamGUI/ObjectUI.py:1049
-msgid "The tip diameter for V-Shape Tool"
-msgstr "The tip diameter for V-Shape Tool"
-
-#: flatcamGUI/ObjectUI.py:1057
-msgid "V-Tip Angle"
-msgstr "V-Tip Angle"
-
-#: flatcamGUI/ObjectUI.py:1060
-msgid ""
-"The tip angle for V-Shape Tool.\n"
-"In degree."
-msgstr ""
-"The tip angle for V-Shape Tool.\n"
-"In degree."
-
-#: flatcamGUI/ObjectUI.py:1095
+#: flatcamGUI/ObjectUI.py:1158
msgid "Depth of each pass (positive)."
msgstr "Depth of each pass (positive)."
-#: flatcamGUI/ObjectUI.py:1269
+#: flatcamGUI/ObjectUI.py:1332
msgid ""
"Add at least one tool in the tool-table.\n"
"Click the header to select all, or Ctrl + LMB\n"
@@ -10326,35 +11524,31 @@ msgstr ""
"Click the header to select all, or Ctrl + LMB\n"
"for custom selection of tools."
-#: flatcamGUI/ObjectUI.py:1276
+#: flatcamGUI/ObjectUI.py:1339
msgid "Generate"
msgstr "Generate"
-#: flatcamGUI/ObjectUI.py:1278
+#: flatcamGUI/ObjectUI.py:1341
msgid "Generate the CNC Job object."
msgstr "Generate the CNC Job object."
-#: flatcamGUI/ObjectUI.py:1285
+#: flatcamGUI/ObjectUI.py:1348
msgid "Paint Area"
msgstr "Paint Area"
-#: flatcamGUI/ObjectUI.py:1299
+#: flatcamGUI/ObjectUI.py:1362
msgid "Launch Paint Tool in Tools Tab."
msgstr "Launch Paint Tool in Tools Tab."
-#: flatcamGUI/ObjectUI.py:1315
+#: flatcamGUI/ObjectUI.py:1378
msgid "CNC Job Object"
msgstr "CNC Job Object"
-#: flatcamGUI/ObjectUI.py:1333
-msgid "Plot kind"
-msgstr "Plot kind"
-
-#: flatcamGUI/ObjectUI.py:1367
+#: flatcamGUI/ObjectUI.py:1429
msgid "Travelled dist."
msgstr "Travelled dist."
-#: flatcamGUI/ObjectUI.py:1369 flatcamGUI/ObjectUI.py:1374
+#: flatcamGUI/ObjectUI.py:1431 flatcamGUI/ObjectUI.py:1436
msgid ""
"This is the total travelled distance on X-Y plane.\n"
"In current units."
@@ -10362,11 +11556,11 @@ msgstr ""
"This is the total travelled distance on X-Y plane.\n"
"In current units."
-#: flatcamGUI/ObjectUI.py:1379
+#: flatcamGUI/ObjectUI.py:1441
msgid "Estimated time"
msgstr "Estimated time"
-#: flatcamGUI/ObjectUI.py:1381 flatcamGUI/ObjectUI.py:1386
+#: flatcamGUI/ObjectUI.py:1443 flatcamGUI/ObjectUI.py:1448
msgid ""
"This is the estimated time to do the routing/drilling,\n"
"without the time spent in ToolChange events."
@@ -10374,11 +11568,11 @@ msgstr ""
"This is the estimated time to do the routing/drilling,\n"
"without the time spent in ToolChange events."
-#: flatcamGUI/ObjectUI.py:1421
+#: flatcamGUI/ObjectUI.py:1483
msgid "CNC Tools Table"
msgstr "CNC Tools Table"
-#: flatcamGUI/ObjectUI.py:1424
+#: flatcamGUI/ObjectUI.py:1486
msgid ""
"Tools in this CNCJob object used for cutting.\n"
"The tool diameter is used for plotting on canvas.\n"
@@ -10400,39 +11594,39 @@ msgstr ""
"The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
"ball(B), or V-Shaped(V)."
-#: flatcamGUI/ObjectUI.py:1456
+#: flatcamGUI/ObjectUI.py:1518
msgid "P"
msgstr "P"
-#: flatcamGUI/ObjectUI.py:1462
+#: flatcamGUI/ObjectUI.py:1524
msgid "Update Plot"
msgstr "Update Plot"
-#: flatcamGUI/ObjectUI.py:1464
+#: flatcamGUI/ObjectUI.py:1526
msgid "Update the plot."
msgstr "Update the plot."
-#: flatcamGUI/ObjectUI.py:1479
+#: flatcamGUI/ObjectUI.py:1541
msgid "Prepend to CNC Code"
msgstr "Prepend to CNC Code"
-#: flatcamGUI/ObjectUI.py:1490
+#: flatcamGUI/ObjectUI.py:1552
msgid "Append to CNC Code"
msgstr "Append to CNC Code"
-#: flatcamGUI/ObjectUI.py:1558
+#: flatcamGUI/ObjectUI.py:1620
msgid "z_cut = depth where to cut"
msgstr "z_cut = depth where to cut"
-#: flatcamGUI/ObjectUI.py:1559
+#: flatcamGUI/ObjectUI.py:1621
msgid "z_move = height where to travel"
msgstr "z_move = height where to travel"
-#: flatcamGUI/ObjectUI.py:1578
+#: flatcamGUI/ObjectUI.py:1640
msgid "View CNC Code"
msgstr "View CNC Code"
-#: flatcamGUI/ObjectUI.py:1580
+#: flatcamGUI/ObjectUI.py:1642
msgid ""
"Opens TAB to view/modify/print G-Code\n"
"file."
@@ -10440,11 +11634,11 @@ msgstr ""
"Opens TAB to view/modify/print G-Code\n"
"file."
-#: flatcamGUI/ObjectUI.py:1585
+#: flatcamGUI/ObjectUI.py:1647
msgid "Save CNC Code"
msgstr "Save CNC Code"
-#: flatcamGUI/ObjectUI.py:1587
+#: flatcamGUI/ObjectUI.py:1649
msgid ""
"Opens dialog to save G-Code\n"
"file."
@@ -10452,6 +11646,10 @@ msgstr ""
"Opens dialog to save G-Code\n"
"file."
+#: flatcamParsers/ParseFont.py:305
+msgid "Font not supported, try another one."
+msgstr "Font not supported, try another one."
+
#: flatcamTools/ToolCalculators.py:24
msgid "Calculators"
msgstr "Calculators"
@@ -10550,12 +11748,7 @@ msgstr "Calc. Tool"
msgid "Cutout PCB"
msgstr "Cutout PCB"
-#: flatcamTools/ToolCutOut.py:54 flatcamTools/ToolNonCopperClear.py:69
-#: flatcamTools/ToolPaint.py:68
-msgid "Obj Type"
-msgstr "Obj Type"
-
-#: flatcamTools/ToolCutOut.py:56
+#: flatcamTools/ToolCutOut.py:55
msgid ""
"Specify the type of object to be cutout.\n"
"It can be of type: Gerber or Geometry.\n"
@@ -10567,29 +11760,27 @@ msgstr ""
"What is selected here will dictate the kind\n"
"of objects that will populate the 'Object' combobox."
-#: flatcamTools/ToolCutOut.py:70 flatcamTools/ToolNonCopperClear.py:87
-#: flatcamTools/ToolPaint.py:86 flatcamTools/ToolPanelize.py:71
-#: flatcamTools/ToolPanelize.py:84
-msgid "Object"
-msgstr "Object"
-
-#: flatcamTools/ToolCutOut.py:72
+#: flatcamTools/ToolCutOut.py:71
msgid "Object to be cutout. "
msgstr "Object to be cutout. "
-#: flatcamTools/ToolCutOut.py:111
+#: flatcamTools/ToolCutOut.py:100
+msgid "Margin:"
+msgstr "Margin:"
+
+#: flatcamTools/ToolCutOut.py:110
msgid "Gap size:"
msgstr "Gap size:"
-#: flatcamTools/ToolCutOut.py:138
+#: flatcamTools/ToolCutOut.py:137
msgid "A. Automatic Bridge Gaps"
msgstr "A. Automatic Bridge Gaps"
-#: flatcamTools/ToolCutOut.py:140
+#: flatcamTools/ToolCutOut.py:139
msgid "This section handle creation of automatic bridge gaps."
msgstr "This section handle creation of automatic bridge gaps."
-#: flatcamTools/ToolCutOut.py:151
+#: flatcamTools/ToolCutOut.py:150
msgid ""
"Number of gaps used for the Automatic cutout.\n"
"There can be maximum 8 bridges/gaps.\n"
@@ -10613,11 +11804,11 @@ msgstr ""
"- 2tb - 2*top + 2*bottom\n"
"- 8 - 2*left + 2*right +2*top + 2*bottom"
-#: flatcamTools/ToolCutOut.py:175
+#: flatcamTools/ToolCutOut.py:174
msgid "FreeForm"
msgstr "FreeForm"
-#: flatcamTools/ToolCutOut.py:177
+#: flatcamTools/ToolCutOut.py:176
msgid ""
"The cutout shape can be of ny shape.\n"
"Useful when the PCB has a non-rectangular shape."
@@ -10625,7 +11816,7 @@ msgstr ""
"The cutout shape can be of ny shape.\n"
"Useful when the PCB has a non-rectangular shape."
-#: flatcamTools/ToolCutOut.py:186
+#: flatcamTools/ToolCutOut.py:185
msgid ""
"Cutout the selected object.\n"
"The cutout shape can be of any shape.\n"
@@ -10635,11 +11826,11 @@ msgstr ""
"The cutout shape can be of any shape.\n"
"Useful when the PCB has a non-rectangular shape."
-#: flatcamTools/ToolCutOut.py:195
+#: flatcamTools/ToolCutOut.py:194
msgid "Rectangular"
msgstr "Rectangular"
-#: flatcamTools/ToolCutOut.py:197
+#: flatcamTools/ToolCutOut.py:196
msgid ""
"The resulting cutout shape is\n"
"always a rectangle shape and it will be\n"
@@ -10649,7 +11840,7 @@ msgstr ""
"always a rectangle shape and it will be\n"
"the bounding box of the Object."
-#: flatcamTools/ToolCutOut.py:206
+#: flatcamTools/ToolCutOut.py:205
msgid ""
"Cutout the selected object.\n"
"The resulting cutout shape is\n"
@@ -10661,11 +11852,11 @@ msgstr ""
"always a rectangle shape and it will be\n"
"the bounding box of the Object."
-#: flatcamTools/ToolCutOut.py:214
+#: flatcamTools/ToolCutOut.py:213
msgid "B. Manual Bridge Gaps"
msgstr "B. Manual Bridge Gaps"
-#: flatcamTools/ToolCutOut.py:216
+#: flatcamTools/ToolCutOut.py:215
msgid ""
"This section handle creation of manual bridge gaps.\n"
"This is done by mouse clicking on the perimeter of the\n"
@@ -10675,19 +11866,19 @@ msgstr ""
"This is done by mouse clicking on the perimeter of the\n"
"Geometry object that is used as a cutout object. "
-#: flatcamTools/ToolCutOut.py:232
+#: flatcamTools/ToolCutOut.py:231
msgid "Geo Obj"
msgstr "Geo Obj"
-#: flatcamTools/ToolCutOut.py:234
+#: flatcamTools/ToolCutOut.py:233
msgid "Geometry object used to create the manual cutout."
msgstr "Geometry object used to create the manual cutout."
-#: flatcamTools/ToolCutOut.py:245
+#: flatcamTools/ToolCutOut.py:244
msgid "Manual Geo"
msgstr "Manual Geo"
-#: flatcamTools/ToolCutOut.py:247 flatcamTools/ToolCutOut.py:257
+#: flatcamTools/ToolCutOut.py:246 flatcamTools/ToolCutOut.py:256
msgid ""
"If the object to be cutout is a Gerber\n"
"first create a Geometry that surrounds it,\n"
@@ -10699,11 +11890,11 @@ msgstr ""
"to be used as the cutout, if one doesn't exist yet.\n"
"Select the source Gerber file in the top object combobox."
-#: flatcamTools/ToolCutOut.py:267
+#: flatcamTools/ToolCutOut.py:266
msgid "Manual Add Bridge Gaps"
msgstr "Manual Add Bridge Gaps"
-#: flatcamTools/ToolCutOut.py:269
+#: flatcamTools/ToolCutOut.py:268
msgid ""
"Use the left mouse button (LMB) click\n"
"to create a bridge gap to separate the PCB from\n"
@@ -10713,11 +11904,11 @@ msgstr ""
"to create a bridge gap to separate the PCB from\n"
"the surrounding material."
-#: flatcamTools/ToolCutOut.py:276
+#: flatcamTools/ToolCutOut.py:275
msgid "Generate Gap"
msgstr "Generate Gap"
-#: flatcamTools/ToolCutOut.py:278
+#: flatcamTools/ToolCutOut.py:277
msgid ""
"Use the left mouse button (LMB) click\n"
"to create a bridge gap to separate the PCB from\n"
@@ -10731,141 +11922,153 @@ msgstr ""
"The LMB click has to be done on the perimeter of\n"
"the Geometry object used as a cutout geometry."
-#: flatcamTools/ToolCutOut.py:367 flatcamTools/ToolCutOut.py:564
-#: flatcamTools/ToolNonCopperClear.py:836
-#: flatcamTools/ToolNonCopperClear.py:845
-#: flatcamTools/ToolNonCopperClear.py:1001 flatcamTools/ToolPaint.py:929
-#: flatcamTools/ToolPaint.py:1093 flatcamTools/ToolPanelize.py:358
-#: flatcamTools/ToolPanelize.py:373 flatcamTools/ToolSub.py:252
-#: flatcamTools/ToolSub.py:265 flatcamTools/ToolSub.py:448
-#: flatcamTools/ToolSub.py:461
-#, python-format
-msgid "[ERROR_NOTCL] Could not retrieve object: %s"
-msgstr "[ERROR_NOTCL] Could not retrieve object: %s"
+#: flatcamTools/ToolCutOut.py:371 flatcamTools/ToolCutOut.py:571
+#: flatcamTools/ToolNonCopperClear.py:1124
+#: flatcamTools/ToolNonCopperClear.py:1265 flatcamTools/ToolPaint.py:1149
+#: flatcamTools/ToolPanelize.py:359 flatcamTools/ToolPanelize.py:376
+#: flatcamTools/ToolSub.py:254 flatcamTools/ToolSub.py:269
+#: flatcamTools/ToolSub.py:456 flatcamTools/ToolSub.py:471
+#: tclCommands/TclCommandCopperClear.py:131
+#: tclCommands/TclCommandCopperClear.py:207 tclCommands/TclCommandPaint.py:133
+#| msgid "[ERROR_NOTCL] Could not retrieve object: %s"
+msgid "Could not retrieve object"
+msgstr "Could not retrieve object"
-#: flatcamTools/ToolCutOut.py:371
+#: flatcamTools/ToolCutOut.py:376
+#| msgid ""
+#| "[ERROR_NOTCL] There is no object selected for Cutout.\n"
+#| "Select one and try again."
msgid ""
-"[ERROR_NOTCL] There is no object selected for Cutout.\n"
+"There is no object selected for Cutout.\n"
"Select one and try again."
msgstr ""
-"[ERROR_NOTCL] There is no object selected for Cutout.\n"
+"There is no object selected for Cutout.\n"
"Select one and try again."
-#: flatcamTools/ToolCutOut.py:386
+#: flatcamTools/ToolCutOut.py:392 flatcamTools/ToolCutOut.py:590
+#: flatcamTools/ToolCutOut.py:760 flatcamTools/ToolCutOut.py:854
+#| msgid ""
+#| "[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real "
+#| "number."
+msgid "Tool Diameter is zero value. Change it to a positive real number."
+msgstr "Tool Diameter is zero value. Change it to a positive real number."
+
+#: flatcamTools/ToolCutOut.py:408 flatcamTools/ToolCutOut.py:606
+#: flatcamTools/ToolCutOut.py:870
+#| msgid ""
+#| "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
+msgid "Margin value is missing or wrong format. Add it and retry."
+msgstr "Margin value is missing or wrong format. Add it and retry."
+
+#: flatcamTools/ToolCutOut.py:419 flatcamTools/ToolCutOut.py:617
+#: flatcamTools/ToolCutOut.py:771
+#| msgid ""
+#| "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and "
+#| "retry."
+msgid "Gap size value is missing or wrong format. Add it and retry."
+msgstr "Gap size value is missing or wrong format. Add it and retry."
+
+#: flatcamTools/ToolCutOut.py:425 flatcamTools/ToolCutOut.py:624
+#| msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
+msgid "Number of gaps value is missing. Add it and retry."
+msgstr "Number of gaps value is missing. Add it and retry."
+
+#: flatcamTools/ToolCutOut.py:430 flatcamTools/ToolCutOut.py:628
+#| msgid ""
+#| "[WARNING_NOTCL] Gaps value can be only one of: 'None', 'lr', 'tb', '2lr', "
+#| "'2tb', 4 or 8. Fill in a correct value and retry. "
msgid ""
-"[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
-"number."
+"Gaps value can be only one of: 'None', 'lr', 'tb', '2lr', '2tb', 4 or 8. "
+"Fill in a correct value and retry. "
msgstr ""
-"[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
-"number."
+"Gaps value can be only one of: 'None', 'lr', 'tb', '2lr', '2tb', 4 or 8. "
+"Fill in a correct value and retry. "
-#: flatcamTools/ToolCutOut.py:401 flatcamTools/ToolCutOut.py:597
-#: flatcamTools/ToolCutOut.py:893
+#: flatcamTools/ToolCutOut.py:435 flatcamTools/ToolCutOut.py:634
+#| msgid ""
+#| "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
+#| "Optionally, this Multi-geo Geometry can be converted to Single-geo "
+#| "Geometry,\n"
+#| "and after that perform Cutout."
msgid ""
-"[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
-msgstr ""
-"[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
-
-#: flatcamTools/ToolCutOut.py:412 flatcamTools/ToolCutOut.py:608
-#: flatcamTools/ToolCutOut.py:758
-msgid ""
-"[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
-msgstr ""
-"[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
-
-#: flatcamTools/ToolCutOut.py:419 flatcamTools/ToolCutOut.py:615
-msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
-msgstr "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
-
-#: flatcamTools/ToolCutOut.py:423 flatcamTools/ToolCutOut.py:619
-msgid ""
-"[WARNING_NOTCL] Gaps value can be only one of: 'None', 'lr', 'tb', '2lr', "
-"'2tb', 4 or 8. Fill in a correct value and retry. "
-msgstr ""
-"[WARNING_NOTCL] Gaps value can be only one of: 'None', 'lr', 'tb', '2lr', "
-"'2tb', 4 or 8. Fill in a correct value and retry. "
-
-#: flatcamTools/ToolCutOut.py:429 flatcamTools/ToolCutOut.py:625
-msgid ""
-"[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
+"Cutout operation cannot be done on a multi-geo Geometry.\n"
"Optionally, this Multi-geo Geometry can be converted to Single-geo "
"Geometry,\n"
"and after that perform Cutout."
msgstr ""
-"[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
+"Cutout operation cannot be done on a multi-geo Geometry.\n"
"Optionally, this Multi-geo Geometry can be converted to Single-geo "
"Geometry,\n"
"and after that perform Cutout."
-#: flatcamTools/ToolCutOut.py:547 flatcamTools/ToolCutOut.py:728
-msgid "[success] Any form CutOut operation finished."
-msgstr "[success] Any form CutOut operation finished."
+#: flatcamTools/ToolCutOut.py:554 flatcamTools/ToolCutOut.py:739
+#| msgid "[success] Any form CutOut operation finished."
+msgid "Any form CutOut operation finished."
+msgstr "Any form CutOut operation finished."
-#: flatcamTools/ToolCutOut.py:568 flatcamTools/ToolPaint.py:933
-#: flatcamTools/ToolPanelize.py:364
+#: flatcamTools/ToolCutOut.py:575 flatcamTools/ToolNonCopperClear.py:1087
#, python-format
-msgid "[ERROR_NOTCL] Object not found: %s"
-msgstr "[ERROR_NOTCL] Object not found: %s"
+#| msgid "[ERROR_NOTCL] Object not found: %s"
+msgid "Object not found: %s"
+msgstr "Object not found: %s"
-#: flatcamTools/ToolCutOut.py:582 flatcamTools/ToolCutOut.py:748
-#: flatcamTools/ToolCutOut.py:878
-msgid ""
-"[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real "
-"number."
-msgstr ""
-"[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real "
-"number."
-
-#: flatcamTools/ToolCutOut.py:733
+#: flatcamTools/ToolCutOut.py:744
msgid ""
"Click on the selected geometry object perimeter to create a bridge gap ..."
msgstr ""
"Click on the selected geometry object perimeter to create a bridge gap ..."
-#: flatcamTools/ToolCutOut.py:768 flatcamTools/ToolCutOut.py:820
-#, python-format
-msgid "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
-msgstr "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
+#: flatcamTools/ToolCutOut.py:780 flatcamTools/ToolCutOut.py:799
+#| msgid "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
+msgid "Could not retrieve Geometry object"
+msgstr "Could not retrieve Geometry object"
-#: flatcamTools/ToolCutOut.py:783
+#: flatcamTools/ToolCutOut.py:804
+#| msgid "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
+msgid "Geometry object for manual cutout not found"
+msgstr "Geometry object for manual cutout not found"
+
+#: flatcamTools/ToolCutOut.py:814
+#| msgid "[success] Added manual Bridge Gap."
+msgid "Added manual Bridge Gap."
+msgstr "Added manual Bridge Gap."
+
+#: flatcamTools/ToolCutOut.py:826
+#| msgid "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
+msgid "Could not retrieve Gerber object"
+msgstr "Could not retrieve Gerber object"
+
+#: flatcamTools/ToolCutOut.py:831
+#| msgid ""
+#| "[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
+#| "Select one and try again."
+msgid ""
+"There is no Gerber object selected for Cutout.\n"
+"Select one and try again."
+msgstr ""
+"There is no Gerber object selected for Cutout.\n"
+"Select one and try again."
+
+#: flatcamTools/ToolCutOut.py:837
+#| msgid ""
+#| "[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
+#| "Select a Gerber file and try again."
+msgid ""
+"The selected object has to be of Gerber type.\n"
+"Select a Gerber file and try again."
+msgstr ""
+"The selected object has to be of Gerber type.\n"
+"Select a Gerber file and try again."
+
+#: flatcamTools/ToolCutOut.py:892
+#| msgid "[ERROR_NOTCL] Geometry not supported for cutout: %s"
+msgid "Geometry not supported for cutout"
+msgstr "Geometry not supported for cutout"
+
+#: flatcamTools/ToolCutOut.py:928
msgid "Making manual bridge gap..."
msgstr "Making manual bridge gap..."
-#: flatcamTools/ToolCutOut.py:825
-#, python-format
-msgid "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
-msgstr "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
-
-#: flatcamTools/ToolCutOut.py:835
-msgid "[success] Added manual Bridge Gap."
-msgstr "[success] Added manual Bridge Gap."
-
-#: flatcamTools/ToolCutOut.py:853
-#, python-format
-msgid "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
-msgstr "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
-
-#: flatcamTools/ToolCutOut.py:857
-msgid ""
-"[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
-"Select one and try again."
-msgstr ""
-"[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
-"Select one and try again."
-
-#: flatcamTools/ToolCutOut.py:862
-msgid ""
-"[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
-"Select a Gerber file and try again."
-msgstr ""
-"[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
-"Select a Gerber file and try again."
-
-#: flatcamTools/ToolCutOut.py:915
-#, python-format
-msgid "[ERROR_NOTCL] Geometry not supported for cutout: %s"
-msgstr "[ERROR_NOTCL] Geometry not supported for cutout: %s"
-
#: flatcamTools/ToolDblSided.py:18
msgid "2-Sided PCB"
msgstr "2-Sided PCB"
@@ -10930,17 +12133,17 @@ msgstr ""
"The (x, y) coordinates are captured by pressing SHIFT key\n"
"and left mouse button click on canvas or you can enter the coords manually."
-#: flatcamTools/ToolDblSided.py:182 flatcamTools/ToolNonCopperClear.py:338
+#: flatcamTools/ToolDblSided.py:182 flatcamTools/ToolNonCopperClear.py:420
#: flatcamTools/ToolPaint.py:318
msgid "Gerber Reference Box Object"
msgstr "Gerber Reference Box Object"
-#: flatcamTools/ToolDblSided.py:183 flatcamTools/ToolNonCopperClear.py:339
+#: flatcamTools/ToolDblSided.py:183 flatcamTools/ToolNonCopperClear.py:421
#: flatcamTools/ToolPaint.py:319
msgid "Excellon Reference Box Object"
msgstr "Excellon Reference Box Object"
-#: flatcamTools/ToolDblSided.py:184 flatcamTools/ToolNonCopperClear.py:340
+#: flatcamTools/ToolDblSided.py:184 flatcamTools/ToolNonCopperClear.py:422
#: flatcamTools/ToolPaint.py:320
msgid "Geometry Reference Box Object"
msgstr "Geometry Reference Box Object"
@@ -11022,100 +12225,101 @@ msgid "2-Sided Tool"
msgstr "2-Sided Tool"
#: flatcamTools/ToolDblSided.py:331
+#| msgid ""
+#| "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
+#| "missing. Add them and retry."
msgid ""
-"[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
-"missing. Add them and retry."
+"'Point' reference is selected and 'Point' coordinates are missing. Add them "
+"and retry."
msgstr ""
-"[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
-"missing. Add them and retry."
+"'Point' reference is selected and 'Point' coordinates are missing. Add them "
+"and retry."
#: flatcamTools/ToolDblSided.py:350
+#| msgid ""
+#| "[WARNING_NOTCL] There is no Box reference object loaded. Load one and "
+#| "retry."
+msgid "There is no Box reference object loaded. Load one and retry."
+msgstr "There is no Box reference object loaded. Load one and retry."
+
+#: flatcamTools/ToolDblSided.py:373
+#| msgid ""
+#| "[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and "
+#| "retry."
+msgid "No value or wrong format in Drill Dia entry. Add it and retry."
+msgstr "No value or wrong format in Drill Dia entry. Add it and retry."
+
+#: flatcamTools/ToolDblSided.py:380
+#| msgid ""
+#| "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
+#| "and retry."
+msgid "There are no Alignment Drill Coordinates to use. Add them and retry."
+msgstr "There are no Alignment Drill Coordinates to use. Add them and retry."
+
+#: flatcamTools/ToolDblSided.py:403
+#| msgid "[success] Excellon object with alignment drills created..."
+msgid "Excellon object with alignment drills created..."
+msgstr "Excellon object with alignment drills created..."
+
+#: flatcamTools/ToolDblSided.py:412
+#| msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
+msgid "There is no Gerber object loaded ..."
+msgstr "There is no Gerber object loaded ..."
+
+#: flatcamTools/ToolDblSided.py:416 flatcamTools/ToolDblSided.py:459
+#: flatcamTools/ToolDblSided.py:503
+#| msgid ""
+#| "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
+msgid "Only Gerber, Excellon and Geometry objects can be mirrored."
+msgstr "Only Gerber, Excellon and Geometry objects can be mirrored."
+
+#: flatcamTools/ToolDblSided.py:426
+#| msgid ""
+#| "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
+#| "mirroring reference."
msgid ""
-"[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
+"'Point' coordinates missing. Using Origin (0, 0) as mirroring reference."
msgstr ""
-"[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
+"'Point' coordinates missing. Using Origin (0, 0) as mirroring reference."
-#: flatcamTools/ToolDblSided.py:372
+#: flatcamTools/ToolDblSided.py:436 flatcamTools/ToolDblSided.py:480
+#: flatcamTools/ToolDblSided.py:517
+#| msgid "[WARNING_NOTCL] There is no Box object loaded ..."
+msgid "There is no Box object loaded ..."
+msgstr "There is no Box object loaded ..."
+
+#: flatcamTools/ToolDblSided.py:446 flatcamTools/ToolDblSided.py:490
+#: flatcamTools/ToolDblSided.py:527
+msgid "was mirrored"
+msgstr "was mirrored"
+
+#: flatcamTools/ToolDblSided.py:455
+#| msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
+msgid "There is no Excellon object loaded ..."
+msgstr "There is no Excellon object loaded ..."
+
+#: flatcamTools/ToolDblSided.py:470
+#| msgid ""
+#| "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
+#| "coords and try again ..."
msgid ""
-"[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and "
-"retry."
+"There are no Point coordinates in the Point field. Add coords and try "
+"again ..."
msgstr ""
-"[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and "
-"retry."
+"There are no Point coordinates in the Point field. Add coords and try "
+"again ..."
-#: flatcamTools/ToolDblSided.py:379
-msgid ""
-"[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
-"and retry."
-msgstr ""
-"[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
-"and retry."
-
-#: flatcamTools/ToolDblSided.py:402
-msgid "[success] Excellon object with alignment drills created..."
-msgstr "[success] Excellon object with alignment drills created..."
-
-#: flatcamTools/ToolDblSided.py:411
-msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
-msgstr "[WARNING_NOTCL] There is no Gerber object loaded ..."
-
-#: flatcamTools/ToolDblSided.py:415 flatcamTools/ToolDblSided.py:458
-#: flatcamTools/ToolDblSided.py:502
-msgid ""
-"[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
-msgstr ""
-"[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
-
-#: flatcamTools/ToolDblSided.py:425
-msgid ""
-"[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
-"mirroring reference."
-msgstr ""
-"[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
-"mirroring reference."
-
-#: flatcamTools/ToolDblSided.py:435 flatcamTools/ToolDblSided.py:479
-#: flatcamTools/ToolDblSided.py:516
-msgid "[WARNING_NOTCL] There is no Box object loaded ..."
-msgstr "[WARNING_NOTCL] There is no Box object loaded ..."
-
-#: flatcamTools/ToolDblSided.py:445
-#, python-format
-msgid "[success] Gerber %s was mirrored..."
-msgstr "[success] Gerber %s was mirrored..."
-
-#: flatcamTools/ToolDblSided.py:454
-msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
-msgstr "[WARNING_NOTCL] There is no Excellon object loaded ..."
-
-#: flatcamTools/ToolDblSided.py:469
-msgid ""
-"[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
-"coords and try again ..."
-msgstr ""
-"[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
-"coords and try again ..."
-
-#: flatcamTools/ToolDblSided.py:489
-#, python-format
-msgid "[success] Excellon %s was mirrored..."
-msgstr "[success] Excellon %s was mirrored..."
-
-#: flatcamTools/ToolDblSided.py:498
-msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
-msgstr "[WARNING_NOTCL] There is no Geometry object loaded ..."
-
-#: flatcamTools/ToolDblSided.py:526
-#, python-format
-msgid "[success] Geometry %s was mirrored..."
-msgstr "[success] Geometry %s was mirrored..."
+#: flatcamTools/ToolDblSided.py:499
+#| msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
+msgid "There is no Geometry object loaded ..."
+msgstr "There is no Geometry object loaded ..."
#: flatcamTools/ToolFilm.py:25
msgid "Film PCB"
msgstr "Film PCB"
#: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
-#: flatcamTools/ToolPanelize.py:56 flatcamTools/ToolProperties.py:138
+#: flatcamTools/ToolPanelize.py:56 flatcamTools/ToolProperties.py:143
msgid "Object Type"
msgstr "Object Type"
@@ -11179,6 +12383,10 @@ msgstr "Positive"
msgid "Negative"
msgstr "Negative"
+#: flatcamTools/ToolFilm.py:116
+msgid "Film Type:"
+msgstr "Film Type:"
+
#: flatcamTools/ToolFilm.py:157
msgid "Save Film"
msgstr "Save Film"
@@ -11195,17 +12403,19 @@ msgstr ""
" FlatCAM object, but directly save it in SVG format\n"
"which can be opened with Inkscape."
-#: flatcamTools/ToolFilm.py:230
-msgid ""
-"[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
-msgstr ""
-"[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
+#: flatcamTools/ToolFilm.py:231
+#| msgid ""
+#| "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and "
+#| "retry."
+msgid "No FlatCAM object selected. Load an object for Film and retry."
+msgstr "No FlatCAM object selected. Load an object for Film and retry."
-#: flatcamTools/ToolFilm.py:236
-msgid ""
-"[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
-msgstr ""
-"[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
+#: flatcamTools/ToolFilm.py:238
+#| msgid ""
+#| "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and "
+#| "retry."
+msgid "No FlatCAM object selected. Load an object for Box and retry."
+msgstr "No FlatCAM object selected. Load an object for Box and retry."
#: flatcamTools/ToolFilm.py:260
msgid "Generating Film ..."
@@ -11216,16 +12426,18 @@ msgid "Export SVG positive"
msgstr "Export SVG positive"
#: flatcamTools/ToolFilm.py:274
-msgid "[WARNING_NOTCL] Export SVG positive cancelled."
-msgstr "[WARNING_NOTCL] Export SVG positive cancelled."
+#| msgid "[WARNING_NOTCL] Export SVG positive cancelled."
+msgid "Export SVG positive cancelled."
+msgstr "Export SVG positive cancelled."
#: flatcamTools/ToolFilm.py:281 flatcamTools/ToolFilm.py:285
msgid "Export SVG negative"
msgstr "Export SVG negative"
#: flatcamTools/ToolFilm.py:290
-msgid "[WARNING_NOTCL] Export SVG negative cancelled."
-msgstr "[WARNING_NOTCL] Export SVG negative cancelled."
+#| msgid "[WARNING_NOTCL] Export SVG negative cancelled."
+msgid "Export SVG negative cancelled."
+msgstr "Export SVG negative cancelled."
#: flatcamTools/ToolImage.py:25
msgid "Image as Object"
@@ -11421,48 +12633,49 @@ msgstr "MEASURING: Click on the Destination point ..."
msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
msgstr "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
-#: flatcamTools/ToolMove.py:81
+#: flatcamTools/ToolMove.py:84
msgid "MOVE: Click on the Start point ..."
msgstr "MOVE: Click on the Start point ..."
-#: flatcamTools/ToolMove.py:88
-msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
-msgstr "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
+#: flatcamTools/ToolMove.py:91
+#| msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
+msgid "MOVE action cancelled. No object(s) to move."
+msgstr "MOVE action cancelled. No object(s) to move."
-#: flatcamTools/ToolMove.py:110
+#: flatcamTools/ToolMove.py:113
msgid "MOVE: Click on the Destination point ..."
msgstr "MOVE: Click on the Destination point ..."
-#: flatcamTools/ToolMove.py:128
-msgid "Moving ..."
-msgstr "Moving ..."
+#: flatcamTools/ToolMove.py:134
+#| msgid "Moving ..."
+msgid "Moving..."
+msgstr "Moving..."
-#: flatcamTools/ToolMove.py:135
-msgid "[WARNING_NOTCL] No object(s) selected."
-msgstr "[WARNING_NOTCL] No object(s) selected."
+#: flatcamTools/ToolMove.py:137
+#| msgid "Failed. No object(s) selected..."
+msgid "No object(s) selected."
+msgstr "No object(s) selected."
-#: flatcamTools/ToolMove.py:158
-#, python-format
-msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
-msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
+#: flatcamTools/ToolMove.py:162
+#| msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
+msgid "ToolMove.on_left_click()"
+msgstr "ToolMove.on_left_click()"
-#: flatcamTools/ToolMove.py:164
-#, python-format
-msgid "[success] %s object was moved ..."
-msgstr "[success] %s object was moved ..."
+#: flatcamTools/ToolMove.py:179
+#| msgid ""
+#| "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
+msgid "ToolMove.on_left_click() --> Error when mouse left click."
+msgstr "ToolMove.on_left_click() --> Error when mouse left click."
-#: flatcamTools/ToolMove.py:174
-msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
-msgstr ""
-"[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
+#: flatcamTools/ToolMove.py:215
+#| msgid "[WARNING_NOTCL] Move action cancelled."
+msgid "Move action cancelled."
+msgstr "Move action cancelled."
-#: flatcamTools/ToolMove.py:202
-msgid "[WARNING_NOTCL] Move action cancelled."
-msgstr "[WARNING_NOTCL] Move action cancelled."
-
-#: flatcamTools/ToolMove.py:214
-msgid "[WARNING_NOTCL] Object(s) not selected"
-msgstr "[WARNING_NOTCL] Object(s) not selected"
+#: flatcamTools/ToolMove.py:227
+#| msgid "Object(s) deleted ..."
+msgid "Object(s) not selected"
+msgstr "Object(s) not selected"
#: flatcamTools/ToolNonCopperClear.py:26
msgid "Non-Copper Clearing"
@@ -11492,6 +12705,11 @@ msgstr ""
"Tools pool from which the algorithm\n"
"will pick the ones used for copper clearing."
+#: flatcamTools/ToolNonCopperClear.py:107
+#| msgid "Options"
+msgid "Operation"
+msgstr "Operation"
+
#: flatcamTools/ToolNonCopperClear.py:113
msgid ""
"This is the Tool Number.\n"
@@ -11508,35 +12726,87 @@ msgstr ""
"in the resulting geometry. This is because with some tools\n"
"this function will not be able to create painting geometry."
-#: flatcamTools/ToolNonCopperClear.py:125 flatcamTools/ToolPaint.py:124
+#: flatcamTools/ToolNonCopperClear.py:121
+#| msgid ""
+#| "Tool Diameter. It's value (in current FlatCAM units) \n"
+#| "is the cut width into the material."
msgid ""
-"The Tool Type (TT) can be:
- Circular with 1 ... 4 teeth -> it is "
-"informative only. Being circular,
the cut width in material is exactly "
-"the tool diameter.
- Ball -> informative only and make reference "
-"to the Ball type endmill.
- V-Shape -> it will disable de Z-Cut "
-"parameter in the resulting geometry UI form and enable two additional UI "
-"form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
-"those two values will adjust the Z-Cut parameter such as the cut width into "
-"material will be equal with the value in the Tool Diameter column of this "
-"table.
Choosing the V-Shape Tool Type automatically will select "
-"the Operation Type in the resulting geometry as Isolation."
+"Tool Diameter. It's value (in current FlatCAM units)\n"
+"is the cut width into the material."
msgstr ""
-"The Tool Type (TT) can be:
- Circular with 1 ... 4 teeth -> it is "
-"informative only. Being circular,
the cut width in material is exactly "
-"the tool diameter.
- Ball -> informative only and make reference "
-"to the Ball type endmill.
- V-Shape -> it will disable de Z-Cut "
-"parameter in the resulting geometry UI form and enable two additional UI "
-"form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
-"those two values will adjust the Z-Cut parameter such as the cut width into "
-"material will be equal with the value in the Tool Diameter column of this "
-"table.
Choosing the V-Shape Tool Type automatically will select "
-"the Operation Type in the resulting geometry as Isolation."
+"Tool Diameter. It's value (in current FlatCAM units)\n"
+"is the cut width into the material."
-#: flatcamTools/ToolNonCopperClear.py:162
+#: flatcamTools/ToolNonCopperClear.py:125
+#| msgid ""
+#| "The Tool Type (TT) can be:
- Circular with 1 ... 4 teeth -> it "
+#| "is informative only. Being circular,
the cut width in material is "
+#| "exactly the tool diameter.
- Ball -> informative only and make "
+#| "reference to the Ball type endmill.
- V-Shape -> it will "
+#| "disable de Z-Cut parameter in the resulting geometry UI form and enable "
+#| "two additional UI form fields in the resulting geometry: V-Tip Dia and V-"
+#| "Tip Angle. Adjusting those two values will adjust the Z-Cut parameter "
+#| "such as the cut width into material will be equal with the value in the "
+#| "Tool Diameter column of this table.
Choosing the V-Shape Tool "
+#| "Type automatically will select the Operation Type in the resulting "
+#| "geometry as Isolation."
+msgid ""
+"The Tool Type (TT) can be:\n"
+"- Circular with 1 ... 4 teeth -> it is informative only. Being circular,\n"
+"the cut width in material is exactly the tool diameter.\n"
+"- Ball -> informative only and make reference to the Ball type endmill.\n"
+"- V-Shape -> it will disable de Z-Cut parameter in the resulting geometry UI "
+"form\n"
+"and enable two additional UI form fields in the resulting geometry: V-Tip "
+"Dia and\n"
+"V-Tip Angle. Adjusting those two values will adjust the Z-Cut parameter "
+"such\n"
+"as the cut width into material will be equal with the value in the Tool "
+"Diameter\n"
+"column of this table.\n"
+"Choosing the 'V-Shape' Tool Type automatically will select the Operation "
+"Type\n"
+"in the resulting geometry as Isolation."
+msgstr ""
+"The Tool Type (TT) can be:\n"
+"- Circular with 1 ... 4 teeth -> it is informative only. Being circular,\n"
+"the cut width in material is exactly the tool diameter.\n"
+"- Ball -> informative only and make reference to the Ball type endmill.\n"
+"- V-Shape -> it will disable de Z-Cut parameter in the resulting geometry UI "
+"form\n"
+"and enable two additional UI form fields in the resulting geometry: V-Tip "
+"Dia and\n"
+"V-Tip Angle. Adjusting those two values will adjust the Z-Cut parameter "
+"such\n"
+"as the cut width into material will be equal with the value in the Tool "
+"Diameter\n"
+"column of this table.\n"
+"Choosing the 'V-Shape' Tool Type automatically will select the Operation "
+"Type\n"
+"in the resulting geometry as Isolation."
+
+#: flatcamTools/ToolNonCopperClear.py:138
+msgid ""
+"The 'Operation' can be:\n"
+"- Isolation -> will ensure that the non-copper clearing is always complete.\n"
+"If it's not successful then the non-copper clearing will fail, too.\n"
+"- Clear -> the regular non-copper clearing."
+msgstr ""
+"The 'Operation' can be:\n"
+"- Isolation -> will ensure that the non-copper clearing is always complete.\n"
+"If it's not successful then the non-copper clearing will fail, too.\n"
+"- Clear -> the regular non-copper clearing."
+
+#: flatcamTools/ToolNonCopperClear.py:191
+#| msgid "Selection"
+msgid "Tool Selection"
+msgstr "Tool Selection"
+
+#: flatcamTools/ToolNonCopperClear.py:214
msgid "Diameter for the new tool to add in the Tool Table"
msgstr "Diameter for the new tool to add in the Tool Table"
-#: flatcamTools/ToolNonCopperClear.py:184 flatcamTools/ToolPaint.py:190
+#: flatcamTools/ToolNonCopperClear.py:251 flatcamTools/ToolPaint.py:190
#: flatcamTools/ToolSolderPaste.py:123
msgid ""
"Delete a selection of tools in the Tool Table\n"
@@ -11545,23 +12815,23 @@ msgstr ""
"Delete a selection of tools in the Tool Table\n"
"by first selecting a row(s) in the Tool Table."
-#: flatcamTools/ToolNonCopperClear.py:314 flatcamTools/ToolPaint.py:295
+#: flatcamTools/ToolNonCopperClear.py:396 flatcamTools/ToolPaint.py:295
msgid "Area Selection"
msgstr "Area Selection"
-#: flatcamTools/ToolNonCopperClear.py:315 flatcamTools/ToolPaint.py:297
+#: flatcamTools/ToolNonCopperClear.py:397 flatcamTools/ToolPaint.py:297
msgid "Reference Object"
msgstr "Reference Object"
-#: flatcamTools/ToolNonCopperClear.py:317
+#: flatcamTools/ToolNonCopperClear.py:399
msgid "Reference:"
msgstr "Reference:"
-#: flatcamTools/ToolNonCopperClear.py:332 flatcamTools/ToolPaint.py:312
+#: flatcamTools/ToolNonCopperClear.py:414 flatcamTools/ToolPaint.py:312
msgid "Ref. Type"
msgstr "Ref. Type"
-#: flatcamTools/ToolNonCopperClear.py:334
+#: flatcamTools/ToolNonCopperClear.py:416
msgid ""
"The type of FlatCAM object to be used as non copper clearing reference.\n"
"It can be Gerber, Excellon or Geometry."
@@ -11569,138 +12839,228 @@ msgstr ""
"The type of FlatCAM object to be used as non copper clearing reference.\n"
"It can be Gerber, Excellon or Geometry."
-#: flatcamTools/ToolNonCopperClear.py:343 flatcamTools/ToolPaint.py:323
+#: flatcamTools/ToolNonCopperClear.py:425 flatcamTools/ToolPaint.py:323
msgid "Ref. Object"
msgstr "Ref. Object"
-#: flatcamTools/ToolNonCopperClear.py:345 flatcamTools/ToolPaint.py:325
+#: flatcamTools/ToolNonCopperClear.py:427 flatcamTools/ToolPaint.py:325
msgid "The FlatCAM object to be used as non copper clearing reference."
msgstr "The FlatCAM object to be used as non copper clearing reference."
-#: flatcamTools/ToolNonCopperClear.py:358
+#: flatcamTools/ToolNonCopperClear.py:440
msgid "Generate Geometry"
msgstr "Generate Geometry"
-#: flatcamTools/ToolNonCopperClear.py:689 flatcamTools/ToolPaint.py:700
-#: flatcamTools/ToolSolderPaste.py:768
-msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
-msgstr "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
+#: flatcamTools/ToolNonCopperClear.py:906 flatcamTools/ToolPaint.py:705
+#: flatcamTools/ToolSolderPaste.py:769
+#| msgid ""
+#| "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
+msgid "Please enter a tool diameter to add, in Float format."
+msgstr "Please enter a tool diameter to add, in Float format."
-#: flatcamTools/ToolNonCopperClear.py:718 flatcamTools/ToolPaint.py:724
-msgid "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
-msgstr "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
+#: flatcamTools/ToolNonCopperClear.py:940 flatcamTools/ToolPaint.py:730
+#| msgid "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
+msgid "Adding tool cancelled. Tool already in Tool Table."
+msgstr "Adding tool cancelled. Tool already in Tool Table."
-#: flatcamTools/ToolNonCopperClear.py:723 flatcamTools/ToolPaint.py:729
-msgid "[success] New tool added to Tool Table."
-msgstr "[success] New tool added to Tool Table."
+#: flatcamTools/ToolNonCopperClear.py:945 flatcamTools/ToolPaint.py:736
+#| msgid "[success] New tool added to Tool Table."
+msgid "New tool added to Tool Table."
+msgstr "New tool added to Tool Table."
-#: flatcamTools/ToolNonCopperClear.py:765 flatcamTools/ToolPaint.py:774
-msgid "[success] Tool from Tool Table was edited."
-msgstr "[success] Tool from Tool Table was edited."
+#: flatcamTools/ToolNonCopperClear.py:989 flatcamTools/ToolPaint.py:782
+#| msgid "[success] Tool from Tool Table was edited."
+msgid "Tool from Tool Table was edited."
+msgstr "Tool from Tool Table was edited."
-#: flatcamTools/ToolNonCopperClear.py:776 flatcamTools/ToolPaint.py:785
-#: flatcamTools/ToolSolderPaste.py:855
-msgid ""
-"[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
-"Table."
-msgstr ""
-"[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
-"Table."
+#: flatcamTools/ToolNonCopperClear.py:1000 flatcamTools/ToolPaint.py:794
+#: flatcamTools/ToolSolderPaste.py:860
+#| msgid ""
+#| "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
+#| "Table."
+msgid "Edit cancelled. New diameter value is already in the Tool Table."
+msgstr "Edit cancelled. New diameter value is already in the Tool Table."
-#: flatcamTools/ToolNonCopperClear.py:816 flatcamTools/ToolPaint.py:884
-msgid "[WARNING_NOTCL] Delete failed. Select a tool to delete."
-msgstr "[WARNING_NOTCL] Delete failed. Select a tool to delete."
+#: flatcamTools/ToolNonCopperClear.py:1040 flatcamTools/ToolPaint.py:892
+#| msgid "[WARNING_NOTCL] Delete failed. Select a tool to delete."
+msgid "Delete failed. Select a tool to delete."
+msgstr "Delete failed. Select a tool to delete."
-#: flatcamTools/ToolNonCopperClear.py:821 flatcamTools/ToolPaint.py:889
-msgid "[success] Tool(s) deleted from Tool Table."
-msgstr "[success] Tool(s) deleted from Tool Table."
+#: flatcamTools/ToolNonCopperClear.py:1045 flatcamTools/ToolPaint.py:898
+#| msgid "[success] Tool(s) deleted from Tool Table."
+msgid "Tool(s) deleted from Tool Table."
+msgstr "Tool(s) deleted from Tool Table."
-#: flatcamTools/ToolNonCopperClear.py:849
-msgid "[WARNING_NOTCL] Click the start point of the area."
-msgstr "[WARNING_NOTCL] Click the start point of the area."
+#: flatcamTools/ToolNonCopperClear.py:1053 flatcamTools/ToolPaint.py:906
+#| msgid "geometry_on_paint_button"
+msgid "on_paint_button_click"
+msgstr "on_paint_button_click"
-#: flatcamTools/ToolNonCopperClear.py:860 flatcamTools/ToolPaint.py:991
-msgid "[WARNING_NOTCL] Click the end point of the paint area."
-msgstr "[WARNING_NOTCL] Click the end point of the paint area."
+#: flatcamTools/ToolNonCopperClear.py:1067
+#| msgid ""
+#| "[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 "
+#| "(exclusive), "
+msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive), "
+msgstr "Overlap value must be between 0 (inclusive) and 1 (exclusive), "
-#: flatcamTools/ToolNonCopperClear.py:866 flatcamTools/ToolPaint.py:997
-msgid "Zone added. Right click to finish."
-msgstr "Zone added. Right click to finish."
-
-#: flatcamTools/ToolNonCopperClear.py:959 flatcamTools/ToolPaint.py:912
-msgid ""
-"[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), "
-msgstr ""
-"[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), "
-
-#: flatcamTools/ToolNonCopperClear.py:1027 flatcamTools/ToolPaint.py:1109
-msgid "[ERROR_NOTCL] No object available."
-msgstr "[ERROR_NOTCL] No object available."
-
-#: flatcamTools/ToolNonCopperClear.py:1033
-#: flatcamTools/ToolNonCopperClear.py:1042
-msgid "[WARNING_NOTCL] Buffering ..."
-msgstr "[WARNING_NOTCL] Buffering ..."
-
-#: flatcamTools/ToolNonCopperClear.py:1035
-#: flatcamTools/ToolNonCopperClear.py:1044
-msgid "[success] Buffering finished ..."
-msgstr "[success] Buffering finished ..."
-
-#: flatcamTools/ToolNonCopperClear.py:1049
-msgid "[ERROR_NOTCL] The selected object is not suitable for copper clearing."
-msgstr "[ERROR_NOTCL] The selected object is not suitable for copper clearing."
-
-#: flatcamTools/ToolNonCopperClear.py:1056
-msgid ""
-"[ERROR_NOTCL] Could not get the extent of the area to be non copper cleared."
-msgstr ""
-"[ERROR_NOTCL] Could not get the extent of the area to be non copper cleared."
-
-#: flatcamTools/ToolNonCopperClear.py:1096
-#: flatcamTools/ToolNonCopperClear.py:1217
-msgid "Clearing Non-Copper areas."
-msgstr "Clearing Non-Copper areas."
-
-#: flatcamTools/ToolNonCopperClear.py:1115
+#: flatcamTools/ToolNonCopperClear.py:1083 flatcamTools/ToolPaint.py:945
#, python-format
-msgid "[success] Non-Copper Clearing with ToolDia = %s started."
-msgstr "[success] Non-Copper Clearing with ToolDia = %s started."
+#| msgid "[ERROR_NOTCL] Could not retrieve object: %s"
+msgid "Could not retrieve object: %s"
+msgstr "Could not retrieve object: %s"
-#: flatcamTools/ToolNonCopperClear.py:1184
-#, python-format
-msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
-msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
+#: flatcamTools/ToolNonCopperClear.py:1103
+#| msgid "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number."
+msgid "Wrong Tool Dia value format entered, use a number."
+msgstr "Wrong Tool Dia value format entered, use a number."
-#: flatcamTools/ToolNonCopperClear.py:1189
-msgid "[success] NCC Tool finished."
-msgstr "[success] NCC Tool finished."
+#: flatcamTools/ToolNonCopperClear.py:1112 flatcamTools/ToolPaint.py:981
+#| msgid "[WARNING_NOTCL] Select a tool in Tool Table"
+msgid "No selected tools in Tool Table."
+msgstr "No selected tools in Tool Table."
-#: flatcamTools/ToolNonCopperClear.py:1191
+#: flatcamTools/ToolNonCopperClear.py:1137
+#| msgid "[WARNING_NOTCL] Click the start point of the area."
+msgid "Click the start point of the area."
+msgstr "Click the start point of the area."
+
+#: flatcamTools/ToolNonCopperClear.py:1148 flatcamTools/ToolPaint.py:1037
+#| msgid "[WARNING_NOTCL] Click the end point of the paint area."
+msgid "Click the end point of the paint area."
+msgstr "Click the end point of the paint area."
+
+#: flatcamTools/ToolNonCopperClear.py:1154 flatcamTools/ToolPaint.py:1043
+#| msgid "Zone added. Right click to finish."
+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."
+
+#: flatcamTools/ToolNonCopperClear.py:1318
+#| msgid "Non-Copper Clearing"
+msgid "Non-Copper clearing ..."
+msgstr "Non-Copper clearing ..."
+
+#: flatcamTools/ToolNonCopperClear.py:1327
+msgid "NCC Tool started. Reading parameters."
+msgstr "NCC Tool started. Reading parameters."
+
+#: flatcamTools/ToolNonCopperClear.py:1395
+#| msgid "Clearing Non-Copper areas."
+msgid "NCC Tool. Preparing non-copper polygons."
+msgstr "NCC Tool. Preparing non-copper polygons."
+
+#: flatcamTools/ToolNonCopperClear.py:1423 flatcamTools/ToolPaint.py:2431
+#| msgid "[ERROR_NOTCL] No object available."
+msgid "No object available."
+msgstr "No object available."
+
+#: flatcamTools/ToolNonCopperClear.py:1465
+msgid "The reference object type is not supported."
+msgstr "The reference object type is not supported."
+
+#: flatcamTools/ToolNonCopperClear.py:1487
msgid ""
-"[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
-"cleared. Check the result."
+"NCC Tool. Finished non-copper polygons. Normal copper clearing task started."
msgstr ""
-"[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
-"cleared. Check the result."
+"NCC Tool. Finished non-copper polygons. Normal copper clearing task started."
-#: flatcamTools/ToolNonCopperClear.py:1236
-#, python-format
-msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
-msgstr "[success] Non-Copper Rest Clearing with ToolDia = %s started."
+#: flatcamTools/ToolNonCopperClear.py:1519
+msgid "NCC Tool. Calculate 'empty' area."
+msgstr "NCC Tool. Calculate 'empty' area."
-#: flatcamTools/ToolNonCopperClear.py:1334
-#, python-format
-msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
-msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
+#: flatcamTools/ToolNonCopperClear.py:1534
+#: flatcamTools/ToolNonCopperClear.py:1628
+#: flatcamTools/ToolNonCopperClear.py:1640
+#: flatcamTools/ToolNonCopperClear.py:1867
+#: flatcamTools/ToolNonCopperClear.py:1959
+#: flatcamTools/ToolNonCopperClear.py:1971
+#| msgid "[success] Buffering finished ..."
+msgid "Buffering finished"
+msgstr "Buffering finished"
-#: flatcamTools/ToolNonCopperClear.py:1342
+#: flatcamTools/ToolNonCopperClear.py:1647
+#: flatcamTools/ToolNonCopperClear.py:1977
+#| msgid ""
+#| "[ERROR_NOTCL] The selected object is not suitable for copper clearing."
+msgid "The selected object is not suitable for copper clearing."
+msgstr "The selected object is not suitable for copper clearing."
+
+#: flatcamTools/ToolNonCopperClear.py:1652
+#: flatcamTools/ToolNonCopperClear.py:1982
+#| msgid ""
+#| "[ERROR_NOTCL] Could not get the extent of the area to be non copper "
+#| "cleared."
+msgid "Could not get the extent of the area to be non copper cleared."
+msgstr "Could not get the extent of the area to be non copper cleared."
+
+#: flatcamTools/ToolNonCopperClear.py:1659
+msgid "NCC Tool. Finished calculation of 'empty' area."
+msgstr "NCC Tool. Finished calculation of 'empty' area."
+
+#: flatcamTools/ToolNonCopperClear.py:1669
+#: flatcamTools/ToolNonCopperClear.py:2007
+#| msgid "tooldia = tool diameter"
+msgid "NCC Tool clearing with tool diameter = "
+msgstr "NCC Tool clearing with tool diameter = "
+
+#: flatcamTools/ToolNonCopperClear.py:1672
+#: flatcamTools/ToolNonCopperClear.py:2010
+#| msgid "Start"
+msgid "started."
+msgstr "started."
+
+#: flatcamTools/ToolNonCopperClear.py:1810 flatcamTools/ToolPaint.py:1412
+#: flatcamTools/ToolPaint.py:1742 flatcamTools/ToolPaint.py:1890
+#: flatcamTools/ToolPaint.py:2203 flatcamTools/ToolPaint.py:2355
+#| msgid ""
+#| "[ERROR] There is no Painting Geometry in the file.\n"
+#| "Usually it means that the tool diameter is too big for the painted "
+#| "geometry.\n"
+#| "Change the painting parameters and try again."
msgid ""
-"[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
-"settings."
+"There is no Painting Geometry in the file.\n"
+"Usually it means that the tool diameter is too big for the painted "
+"geometry.\n"
+"Change the painting parameters and try again."
msgstr ""
-"[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
-"settings."
+"There is no Painting Geometry in the file.\n"
+"Usually it means that the tool diameter is too big for the painted "
+"geometry.\n"
+"Change the painting parameters and try again."
+
+#: flatcamTools/ToolNonCopperClear.py:1820
+msgid "NCC Tool clear all done."
+msgstr "NCC Tool clear all done."
+
+#: flatcamTools/ToolNonCopperClear.py:1822
+msgid "NCC Tool clear all done but the copper features isolation is broken for"
+msgstr ""
+"NCC Tool clear all done but the copper features isolation is broken for"
+
+#: flatcamTools/ToolNonCopperClear.py:1825
+#: flatcamTools/ToolNonCopperClear.py:2173
+#| msgid "Tools"
+msgid "tools"
+msgstr "tools"
+
+#: flatcamTools/ToolNonCopperClear.py:2169
+msgid "NCC Tool Rest Machining clear all done."
+msgstr "NCC Tool Rest Machining clear all done."
+
+#: flatcamTools/ToolNonCopperClear.py:2172
+msgid ""
+"NCC Tool Rest Machining clear all done but the copper features isolation is "
+"broken for"
+msgstr ""
+"NCC Tool Rest Machining clear all done but the copper features isolation is "
+"broken for"
+
+#: flatcamTools/ToolNonCopperClear.py:2596
+msgid ""
+"Try to use the Buffering Type = Full in Preferences -> Gerber General. "
+"Reload the Gerber file after this change."
+msgstr ""
+"Try to use the Buffering Type = Full in Preferences -> Gerber General. "
+"Reload the Gerber file after this change."
#: flatcamTools/ToolPDF.py:38
msgid "PDF Import Tool"
@@ -11711,26 +13071,32 @@ msgid "Open PDF"
msgstr "Open PDF"
#: flatcamTools/ToolPDF.py:159
-msgid "[WARNING_NOTCL] Open PDF cancelled."
-msgstr "[WARNING_NOTCL] Open PDF cancelled."
+#| msgid "Open cancelled."
+msgid "Open PDF cancelled"
+msgstr "Open PDF cancelled"
-#: flatcamTools/ToolPDF.py:186
+#: flatcamTools/ToolPDF.py:190
msgid "Parsing PDF file ..."
msgstr "Parsing PDF file ..."
-#: flatcamTools/ToolPDF.py:265 flatcamTools/ToolPDF.py:338
+#: flatcamTools/ToolPDF.py:220
+#, python-format
+msgid "[success] Opened: %s"
+msgstr "[success] Opened: %s"
+
+#: flatcamTools/ToolPDF.py:273 flatcamTools/ToolPDF.py:348
#, python-format
msgid "Rendering PDF layer #%d ..."
msgstr "Rendering PDF layer #%d ..."
-#: flatcamTools/ToolPDF.py:269 flatcamTools/ToolPDF.py:342
-msgid "[ERROR_NOTCL] Open PDF file failed."
-msgstr "[ERROR_NOTCL] Open PDF file failed."
+#: flatcamTools/ToolPDF.py:278 flatcamTools/ToolPDF.py:353
+#| msgid "Open Config file failed."
+msgid "Open PDF file failed."
+msgstr "Open PDF file failed."
-#: flatcamTools/ToolPDF.py:274 flatcamTools/ToolPDF.py:347
-#, python-format
-msgid "[success] Rendered: %s"
-msgstr "[success] Rendered: %s"
+#: flatcamTools/ToolPDF.py:284 flatcamTools/ToolPDF.py:358
+msgid "Rendered"
+msgstr "Rendered"
#: flatcamTools/ToolPaint.py:70
msgid ""
@@ -11772,10 +13138,50 @@ msgstr ""
"in the resulting geometry. This is because with some tools\n"
"this function will not be able to create painting geometry."
+#: flatcamTools/ToolPaint.py:124
+msgid ""
+"The Tool Type (TT) can be:
- Circular with 1 ... 4 teeth -> it is "
+"informative only. Being circular,
the cut width in material is exactly "
+"the tool diameter.
- Ball -> informative only and make reference "
+"to the Ball type endmill.
- V-Shape -> it will disable de Z-Cut "
+"parameter in the resulting geometry UI form and enable two additional UI "
+"form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
+"those two values will adjust the Z-Cut parameter such as the cut width into "
+"material will be equal with the value in the Tool Diameter column of this "
+"table.
Choosing the V-Shape Tool Type automatically will select "
+"the Operation Type in the resulting geometry as Isolation."
+msgstr ""
+"The Tool Type (TT) can be:
- Circular with 1 ... 4 teeth -> it is "
+"informative only. Being circular,
the cut width in material is exactly "
+"the tool diameter.
- Ball -> informative only and make reference "
+"to the Ball type endmill.
- V-Shape -> it will disable de Z-Cut "
+"parameter in the resulting geometry UI form and enable two additional UI "
+"form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
+"those two values will adjust the Z-Cut parameter such as the cut width into "
+"material will be equal with the value in the Tool Diameter column of this "
+"table.
Choosing the V-Shape Tool Type automatically will select "
+"the Operation Type in the resulting geometry as Isolation."
+
#: flatcamTools/ToolPaint.py:164
msgid "Diameter for the new tool."
msgstr "Diameter for the new tool."
+#: flatcamTools/ToolPaint.py:235
+#| msgid ""
+#| "Algorithm for non-copper clearing:
Standard: Fixed step inwards."
+#| "
Seed-based: Outwards from seed.
Line-based: Parallel "
+#| "lines."
+msgid ""
+"Algorithm for painting:\n"
+"- Standard: Fixed step inwards.\n"
+"- Seed-based: Outwards from seed.\n"
+"- Line-based: Parallel lines."
+msgstr ""
+"Algorithm for painting:\n"
+"- Standard: Fixed step inwards.\n"
+"- Seed-based: Outwards from seed.\n"
+"- Line-based: Parallel lines."
+
#: flatcamTools/ToolPaint.py:269
msgid ""
"If checked, use 'rest machining'.\n"
@@ -11796,20 +13202,6 @@ msgstr ""
"\n"
"If not checked, use the standard algorithm."
-#: flatcamTools/ToolPaint.py:284
-msgid ""
-"How to select the polygons to paint.
Options:
- Single Polygons"
-"B>: left mouse click on the polygon to be painted.
- Area Selection"
-"B>: left mouse click to start selection of the area to be painted.
- "
-"All Polygons: paint all polygons.
- Reference Object: paint "
-"an area described by an external reference object."
-msgstr ""
-"How to select the polygons to paint.
Options:
- Single Polygons"
-"B>: left mouse click on the polygon to be painted.
- Area Selection"
-"B>: left mouse click to start selection of the area to be painted.
- "
-"All Polygons: paint all polygons.
- Reference Object: paint "
-"an area described by an external reference object."
-
#: flatcamTools/ToolPaint.py:294
msgid "Single Polygon"
msgstr "Single Polygon"
@@ -11848,103 +13240,175 @@ msgstr ""
"- 'Reference Object' - will do non copper clearing within the area\n"
"specified by another object."
-#: flatcamTools/ToolPaint.py:897
-msgid "geometry_on_paint_button"
-msgstr "geometry_on_paint_button"
+#: flatcamTools/ToolPaint.py:912
+#| msgid ""
+#| "Select tools.\n"
+#| "Modify parameters."
+msgid "Paint Tool. Reading parameters."
+msgstr "Paint Tool. Reading parameters."
-#: flatcamTools/ToolPaint.py:916 flatcamTools/ToolPaint.py:952
-msgid "[WARNING_NOTCL] Click inside the desired polygon."
-msgstr "[WARNING_NOTCL] Click inside the desired polygon."
+#: flatcamTools/ToolPaint.py:927
+#| msgid ""
+#| "[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 "
+#| "(exclusive), "
+msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive)"
+msgstr "Overlap value must be between 0 (inclusive) and 1 (exclusive)"
-#: flatcamTools/ToolPaint.py:939
-msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
-msgstr "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
+#: flatcamTools/ToolPaint.py:931 flatcamTools/ToolPaint.py:994
+#| msgid "[WARNING_NOTCL] Click inside the desired polygon."
+msgid "Click inside the desired polygon."
+msgstr "Click inside the desired polygon."
-#: flatcamTools/ToolPaint.py:961 flatcamTools/ToolPaint.py:1305
-#: flatcamTools/ToolPaint.py:1612
+#: flatcamTools/ToolPaint.py:951 flatcamTools/ToolPanelize.py:366
+#: tclCommands/TclCommandBbox.py:66 tclCommands/TclCommandNregions.py:65
+#| msgid "[ERROR_NOTCL] Object not found: %s"
+msgid "Object not found"
+msgstr "Object not found"
+
+#: flatcamTools/ToolPaint.py:959
+#| msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
+msgid "Can't do Paint on MultiGeo geometries"
+msgstr "Can't do Paint on MultiGeo geometries"
+
+#: flatcamTools/ToolPaint.py:1003 flatcamTools/ToolPaint.py:1239
msgid "Painting polygon..."
msgstr "Painting polygon..."
-#: flatcamTools/ToolPaint.py:980
-msgid "[WARNING_NOTCL] Click the start point of the paint area."
-msgstr "[WARNING_NOTCL] Click the start point of the paint area."
+#: flatcamTools/ToolPaint.py:1025
+#| msgid "[WARNING_NOTCL] Click the start point of the paint area."
+msgid "Click the start point of the paint area."
+msgstr "Click the start point of the paint area."
-#: flatcamTools/ToolPaint.py:1154
+#: flatcamTools/ToolPaint.py:1197 flatcamTools/ToolPaint.py:1200
+#: flatcamTools/ToolPaint.py:1202
+msgid "Paint Tool. Normal painting polygon task started."
+msgstr "Paint Tool. Normal painting polygon task started."
+
+#: flatcamTools/ToolPaint.py:1198 flatcamTools/ToolPaint.py:1588
+#: flatcamTools/ToolPaint.py:1763 flatcamTools/ToolPaint.py:2045
+#: flatcamTools/ToolPaint.py:2224
+#| msgid "Create buffer geometry ..."
+msgid "Buffering geometry..."
+msgstr "Buffering geometry..."
+
+#: flatcamTools/ToolPaint.py:1236
msgid "[WARNING] No polygon found."
msgstr "[WARNING] No polygon found."
-#: flatcamTools/ToolPaint.py:1157
-msgid "Painting polygon."
-msgstr "Painting polygon."
-
-#: flatcamTools/ToolPaint.py:1199
-msgid "[ERROR_NOTCL] Geometry could not be painted completely"
-msgstr "[ERROR_NOTCL] Geometry could not be painted completely"
-
-#: flatcamTools/ToolPaint.py:1225
+#: flatcamTools/ToolPaint.py:1240
#, python-format
+msgid "Paint Tool. Painting polygon at location: %s"
+msgstr "Paint Tool. Painting polygon at location: %s"
+
+#: flatcamTools/ToolPaint.py:1323
+#| msgid "[ERROR_NOTCL] Geometry could not be painted completely"
+msgid "Geometry could not be painted completely"
+msgstr "Geometry could not be painted completely"
+
+#: flatcamTools/ToolPaint.py:1368
+#| msgid ""
+#| "[ERROR] Could not do Paint. Try a different combination of parameters. Or "
+#| "a different strategy of paint\n"
+#| "%s"
msgid ""
-"[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
-"different strategy of paint\n"
-"%s"
+"Could not do Paint. Try a different combination of parameters. Or a "
+"different strategy of paint"
msgstr ""
-"[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
-"different strategy of paint\n"
-"%s"
+"Could not do Paint. Try a different combination of parameters. Or a "
+"different strategy of paint"
-#: flatcamTools/ToolPaint.py:1267
-#, python-format
-msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
-msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
+#: flatcamTools/ToolPaint.py:1417
+#| msgid "Painting polygon."
+msgid "Paint Single Done."
+msgstr "Paint Single Done."
-#: flatcamTools/ToolPaint.py:1273 flatcamTools/ToolPaint.py:1579
-#: flatcamTools/ToolPaint.py:1882
+#: flatcamTools/ToolPaint.py:1442
+#| msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
+msgid "PaintTool.paint_poly()"
+msgstr "PaintTool.paint_poly()"
+
+#: flatcamTools/ToolPaint.py:1449 flatcamTools/ToolPaint.py:1918
+#: flatcamTools/ToolPaint.py:2383
msgid "Polygon Paint started ..."
msgstr "Polygon Paint started ..."
-#: flatcamTools/ToolPaint.py:1433 flatcamTools/ToolPaint.py:1524
-#: flatcamTools/ToolPaint.py:1736 flatcamTools/ToolPaint.py:1827
-#, python-format
-msgid ""
-"[ERROR] Could not do Paint All. Try a different combination of parameters. "
-"Or a different Method of paint\n"
-"%s"
-msgstr ""
-"[ERROR] Could not do Paint All. Try a different combination of parameters. "
-"Or a different Method of paint\n"
-"%s"
+#: flatcamTools/ToolPaint.py:1505 flatcamTools/ToolPaint.py:1975
+#| msgid "Painting polygon..."
+msgid "Painting polygons..."
+msgstr "Painting polygons..."
-#: flatcamTools/ToolPaint.py:1457 flatcamTools/ToolPaint.py:1760
-msgid ""
-"[ERROR] There is no Painting Geometry in the file.\n"
-"Usually it means that the tool diameter is too big for the painted "
-"geometry.\n"
-"Change the painting parameters and try again."
-msgstr ""
-"[ERROR] There is no Painting Geometry in the file.\n"
-"Usually it means that the tool diameter is too big for the painted "
-"geometry.\n"
-"Change the painting parameters and try again."
+#: flatcamTools/ToolPaint.py:1587 flatcamTools/ToolPaint.py:1590
+#: flatcamTools/ToolPaint.py:1592
+msgid "Paint Tool. Normal painting all task started."
+msgstr "Paint Tool. Normal painting all task started."
-#: flatcamTools/ToolPaint.py:1466 flatcamTools/ToolPaint.py:1769
+#: flatcamTools/ToolPaint.py:1626 flatcamTools/ToolPaint.py:1796
+#: flatcamTools/ToolPaint.py:2090 flatcamTools/ToolPaint.py:2264
+#| msgid "tooldia = tool diameter"
+msgid "Painting with tool diameter = "
+msgstr "Painting with tool diameter = "
+
+#: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:1799
+#: flatcamTools/ToolPaint.py:2093 flatcamTools/ToolPaint.py:2267
+#| msgid "Start"
+msgid "started"
+msgstr "started"
+
+#: flatcamTools/ToolPaint.py:1691 flatcamTools/ToolPaint.py:1845
+#| msgid ""
+#| "[ERROR] Could not do Paint All. Try a different combination of "
+#| "parameters. Or a different Method of paint\n"
+#| "%s"
+msgid ""
+"Could not do Paint All. Try a different combination of parameters. Or a "
+"different Method of paint"
+msgstr ""
+"Could not do Paint All. Try a different combination of parameters. Or a "
+"different Method of paint"
+
+#: flatcamTools/ToolPaint.py:1751
msgid "[success] Paint All Done."
msgstr "[success] Paint All Done."
-#: flatcamTools/ToolPaint.py:1554 flatcamTools/ToolPaint.py:1857
-msgid ""
-"[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
-"Usually it means that the tool diameter is too big for the painted "
-"geometry.\n"
-"Change the painting parameters and try again."
-msgstr ""
-"[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
-"Usually it means that the tool diameter is too big for the painted "
-"geometry.\n"
-"Change the painting parameters and try again."
+#: flatcamTools/ToolPaint.py:1762 flatcamTools/ToolPaint.py:1765
+#: flatcamTools/ToolPaint.py:1767
+msgid "Paint Tool. Rest machining painting all task started."
+msgstr "Paint Tool. Rest machining painting all task started."
-#: flatcamTools/ToolPaint.py:1563 flatcamTools/ToolPaint.py:1866
-msgid "[success] Paint All with Rest-Machining done."
-msgstr "[success] Paint All with Rest-Machining done."
+#: flatcamTools/ToolPaint.py:1899 flatcamTools/ToolPaint.py:2364
+#| msgid "[success] Paint All with Rest-Machining done."
+msgid "Paint All with Rest-Machining done."
+msgstr "Paint All with Rest-Machining done."
+
+#: flatcamTools/ToolPaint.py:2044 flatcamTools/ToolPaint.py:2047
+#: flatcamTools/ToolPaint.py:2049
+msgid "Paint Tool. Normal painting area task started."
+msgstr "Paint Tool. Normal painting area task started."
+
+#: flatcamTools/ToolPaint.py:2153 flatcamTools/ToolPaint.py:2311
+#, python-format
+#| msgid ""
+#| "[ERROR] Could not do Paint All. Try a different combination of "
+#| "parameters. Or a different Method of paint\n"
+#| "%s"
+msgid ""
+"Could not do Paint All. Try a different combination of parameters. Or a "
+"different Method of paint\n"
+"%s"
+msgstr ""
+"Could not do Paint All. Try a different combination of parameters. Or a "
+"different Method of paint\n"
+"%s"
+
+#: flatcamTools/ToolPaint.py:2212
+#| msgid "[success] Paint All Done."
+msgid "[success] Paint Area Done."
+msgstr "[success] Paint Area Done."
+
+#: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2226
+#: flatcamTools/ToolPaint.py:2228
+msgid "Paint Tool. Rest machining painting area task started."
+msgstr "Paint Tool. Rest machining painting area task started."
#: flatcamTools/ToolPanelize.py:25
msgid "Panelize PCB"
@@ -12070,39 +13534,43 @@ msgstr ""
msgid "Panel. Tool"
msgstr "Panel. Tool"
-#: flatcamTools/ToolPanelize.py:377
-#, python-format
-msgid "[WARNING_NOTCL]No object Box. Using instead %s"
-msgstr "[WARNING_NOTCL]No object Box. Using instead %s"
+#: flatcamTools/ToolPanelize.py:465
+#| msgid ""
+#| "[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive "
+#| "integer."
+msgid "Columns or Rows are zero value. Change them to a positive integer."
+msgstr "Columns or Rows are zero value. Change them to a positive integer."
-#: flatcamTools/ToolPanelize.py:460
-msgid ""
-"[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive "
-"integer."
-msgstr ""
-"[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive "
-"integer."
-
-#: flatcamTools/ToolPanelize.py:485 flatcamTools/ToolPanelize.py:642
+#: flatcamTools/ToolPanelize.py:490
msgid "Generating panel ... Please wait."
msgstr "Generating panel ... Please wait."
-#: flatcamTools/ToolPanelize.py:635
-msgid "[success] Panel done..."
-msgstr "[success] Panel done..."
+#: flatcamTools/ToolPanelize.py:631
+#| msgid "[success] Panel done..."
+msgid "Panel done..."
+msgstr "Panel done..."
-#: flatcamTools/ToolPanelize.py:638
+#: flatcamTools/ToolPanelize.py:634
#, python-brace-format
+#| msgid ""
+#| "[WARNING] Too big for the constrain area. Final panel has {col} columns "
+#| "and {row} rows"
msgid ""
-"[WARNING] Too big for the constrain area. Final panel has {col} columns and "
+"{text} Too big for the constrain area. Final panel has {col} columns and "
"{row} rows"
msgstr ""
-"[WARNING] Too big for the constrain area. Final panel has {col} columns and "
+"{text} Too big for the constrain area. Final panel has {col} columns and "
"{row} rows"
-#: flatcamTools/ToolPanelize.py:647
-msgid "[success] Panel created successfully."
-msgstr "[success] Panel created successfully."
+#: flatcamTools/ToolPanelize.py:638
+#| msgid "Generating Film ..."
+msgid "Generating panel..."
+msgstr "Generating panel..."
+
+#: flatcamTools/ToolPanelize.py:643
+#| msgid "[success] Panel created successfully."
+msgid "Panel created successfully."
+msgstr "Panel created successfully."
#: flatcamTools/ToolPcbWizard.py:32
msgid "PcbWizard Import Tool"
@@ -12222,119 +13690,130 @@ msgstr "Load PcbWizard Excellon file"
msgid "Load PcbWizard INF file"
msgstr "Load PcbWizard INF file"
-#: flatcamTools/ToolPcbWizard.py:365
+#: flatcamTools/ToolPcbWizard.py:366
+#| msgid ""
+#| "[ERROR] The INF file does not contain the tool table.\n"
+#| "Try to open the Excellon file from File -> Open -> Excellon\n"
+#| "and edit the drill diameters manually."
msgid ""
-"[ERROR] The INF file does not contain the tool table.\n"
+"The INF file does not contain the tool table.\n"
"Try to open the Excellon file from File -> Open -> Excellon\n"
"and edit the drill diameters manually."
msgstr ""
-"[ERROR] The INF file does not contain the tool table.\n"
+"The INF file does not contain the tool table.\n"
"Try to open the Excellon file from File -> Open -> Excellon\n"
"and edit the drill diameters manually."
-#: flatcamTools/ToolPcbWizard.py:385
-msgid "[success] PcbWizard .INF file loaded."
-msgstr "[success] PcbWizard .INF file loaded."
+#: flatcamTools/ToolPcbWizard.py:387
+#| msgid "[success] PcbWizard .INF file loaded."
+msgid "PcbWizard .INF file loaded."
+msgstr "PcbWizard .INF file loaded."
-#: flatcamTools/ToolPcbWizard.py:389
-msgid "[success] Main PcbWizard Excellon file loaded."
-msgstr "[success] Main PcbWizard Excellon file loaded."
+#: flatcamTools/ToolPcbWizard.py:392
+#| msgid "[success] Main PcbWizard Excellon file loaded."
+msgid "Main PcbWizard Excellon file loaded."
+msgstr "Main PcbWizard Excellon file loaded."
-#: flatcamTools/ToolPcbWizard.py:426
-#, python-format
-msgid "[ERROR_NOTCL] Cannot parse file: %s"
-msgstr "[ERROR_NOTCL] Cannot parse file: %s"
+#: flatcamTools/ToolPcbWizard.py:431
+#| msgid "[ERROR_NOTCL] Cannot parse file: %s"
+msgid "Cannot parse file"
+msgstr "Cannot parse file"
-#: flatcamTools/ToolPcbWizard.py:450
+#: flatcamTools/ToolPcbWizard.py:456
msgid "Importing Excellon."
msgstr "Importing Excellon."
-#: flatcamTools/ToolPcbWizard.py:457
-msgid "[ERROR_NOTCL] Import Excellon file failed."
-msgstr "[ERROR_NOTCL] Import Excellon file failed."
+#: flatcamTools/ToolPcbWizard.py:463
+#| msgid "[ERROR_NOTCL] Import Excellon file failed."
+msgid "Import Excellon file failed."
+msgstr "Import Excellon file failed."
-#: flatcamTools/ToolPcbWizard.py:464
-#, python-format
-msgid "[success] Imported: %s"
-msgstr "[success] Imported: %s"
+#: flatcamTools/ToolPcbWizard.py:471
+#| msgid "Import"
+msgid "Imported"
+msgstr "Imported"
-#: flatcamTools/ToolPcbWizard.py:467
-msgid "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
-msgstr "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
+#: flatcamTools/ToolPcbWizard.py:475
+#| msgid "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
+msgid "Excellon merging is in progress. Please wait..."
+msgstr "Excellon merging is in progress. Please wait..."
-#: flatcamTools/ToolPcbWizard.py:469
-msgid "[ERROR_NOTCL] The imported Excellon file is None."
-msgstr "[ERROR_NOTCL] The imported Excellon file is None."
+#: flatcamTools/ToolPcbWizard.py:478
+#| msgid "[ERROR_NOTCL] The imported Excellon file is None."
+msgid "The imported Excellon file is None."
+msgstr "The imported Excellon file is None."
-#: flatcamTools/ToolProperties.py:108
-msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
-msgstr "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
+#: flatcamTools/ToolProperties.py:112
+#| msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
+msgid "Properties Tool was not displayed. No object selected."
+msgstr "Properties Tool was not displayed. No object selected."
-#: flatcamTools/ToolProperties.py:115
-msgid "[success] Object Properties are displayed."
-msgstr "[success] Object Properties are displayed."
+#: flatcamTools/ToolProperties.py:120
+#| msgid "[success] Object Properties are displayed."
+msgid "Object Properties are displayed."
+msgstr "Object Properties are displayed."
-#: flatcamTools/ToolProperties.py:116
+#: flatcamTools/ToolProperties.py:121
msgid "Properties Tool"
msgstr "Properties Tool"
-#: flatcamTools/ToolProperties.py:125
+#: flatcamTools/ToolProperties.py:130
msgid "TYPE"
msgstr "TYPE"
-#: flatcamTools/ToolProperties.py:126
+#: flatcamTools/ToolProperties.py:131
msgid "NAME"
msgstr "NAME"
-#: flatcamTools/ToolProperties.py:127
+#: flatcamTools/ToolProperties.py:132
msgid "Dimensions"
msgstr "Dimensions"
-#: flatcamTools/ToolProperties.py:130
+#: flatcamTools/ToolProperties.py:135
msgid "Options"
msgstr "Options"
-#: flatcamTools/ToolProperties.py:141
+#: flatcamTools/ToolProperties.py:146
msgid "Geo Type"
msgstr "Geo Type"
-#: flatcamTools/ToolProperties.py:142
+#: flatcamTools/ToolProperties.py:147
msgid "Single-Geo"
msgstr "Single-Geo"
-#: flatcamTools/ToolProperties.py:142
+#: flatcamTools/ToolProperties.py:147
msgid "Multi-Geo"
msgstr "Multi-Geo"
-#: flatcamTools/ToolProperties.py:161
-msgid "Width"
-msgstr "Width"
+#: flatcamTools/ToolProperties.py:155
+#| msgid "Generating Film ... Please wait."
+msgid "Calculating dimensions ... Please wait."
+msgstr "Calculating dimensions ... Please wait."
-#: flatcamTools/ToolProperties.py:167 flatcamTools/ToolProperties.py:170
-msgid "Box Area"
-msgstr "Box Area"
-
-#: flatcamTools/ToolProperties.py:187 flatcamTools/ToolProperties.py:190
-msgid "Convex_Hull Area"
-msgstr "Convex_Hull Area"
-
-#: flatcamTools/ToolProperties.py:195
+#: flatcamTools/ToolProperties.py:246
msgid "Inch"
msgstr "Inch"
-#: flatcamTools/ToolProperties.py:196
+#: flatcamTools/ToolProperties.py:247
msgid "Metric"
msgstr "Metric"
-#: flatcamTools/ToolProperties.py:247 flatcamTools/ToolProperties.py:261
-#: flatcamTools/ToolProperties.py:264 flatcamTools/ToolProperties.py:267
+#: flatcamTools/ToolProperties.py:298 flatcamTools/ToolProperties.py:312
+#: flatcamTools/ToolProperties.py:315 flatcamTools/ToolProperties.py:318
msgid "Present"
msgstr "Present"
-#: flatcamTools/ToolProperties.py:247 flatcamTools/ToolProperties.py:261
-#: flatcamTools/ToolProperties.py:264 flatcamTools/ToolProperties.py:267
-msgid "None"
-msgstr "None"
+#: flatcamTools/ToolProperties.py:352
+msgid "Width"
+msgstr "Width"
+
+#: flatcamTools/ToolProperties.py:357 flatcamTools/ToolProperties.py:361
+msgid "Box Area"
+msgstr "Box Area"
+
+#: flatcamTools/ToolProperties.py:358 flatcamTools/ToolProperties.py:362
+msgid "Convex_Hull Area"
+msgstr "Convex_Hull Area"
#: flatcamTools/ToolShell.py:69
msgid "...proccessing..."
@@ -12541,99 +14020,112 @@ msgstr ""
msgid "Delete Object"
msgstr "Delete Object"
-#: flatcamTools/ToolSolderPaste.py:797
-msgid ""
-"[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
-msgstr ""
-"[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
+#: flatcamTools/ToolSolderPaste.py:799
+#| msgid ""
+#| "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
+msgid "Adding Nozzle tool cancelled. Tool already in Tool Table."
+msgstr "Adding Nozzle tool cancelled. Tool already in Tool Table."
-#: flatcamTools/ToolSolderPaste.py:802
-msgid "[success] New Nozzle tool added to Tool Table."
-msgstr "[success] New Nozzle tool added to Tool Table."
+#: flatcamTools/ToolSolderPaste.py:805
+#| msgid "[success] New Nozzle tool added to Tool Table."
+msgid "New Nozzle tool added to Tool Table."
+msgstr "New Nozzle tool added to Tool Table."
-#: flatcamTools/ToolSolderPaste.py:844
-msgid "[success] Nozzle tool from Tool Table was edited."
-msgstr "[success] Nozzle tool from Tool Table was edited."
-
-#: flatcamTools/ToolSolderPaste.py:901
-msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
-msgstr "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
+#: flatcamTools/ToolSolderPaste.py:848
+#| msgid "[success] Nozzle tool from Tool Table was edited."
+msgid "Nozzle tool from Tool Table was edited."
+msgstr "Nozzle tool from Tool Table was edited."
#: flatcamTools/ToolSolderPaste.py:906
-msgid "[success] Nozzle tool(s) deleted from Tool Table."
-msgstr "[success] Nozzle tool(s) deleted from Tool Table."
+#| msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
+msgid "Delete failed. Select a Nozzle tool to delete."
+msgstr "Delete failed. Select a Nozzle tool to delete."
-#: flatcamTools/ToolSolderPaste.py:961
-msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
-msgstr "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
+#: flatcamTools/ToolSolderPaste.py:912
+#| msgid "[success] Nozzle tool(s) deleted from Tool Table."
+msgid "Nozzle tool(s) deleted from Tool Table."
+msgstr "Nozzle tool(s) deleted from Tool Table."
-#: flatcamTools/ToolSolderPaste.py:979
+#: flatcamTools/ToolSolderPaste.py:968
+#| msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
+msgid "No SolderPaste mask Gerber object loaded."
+msgstr "No SolderPaste mask Gerber object loaded."
+
+#: flatcamTools/ToolSolderPaste.py:986
msgid "Creating Solder Paste dispensing geometry."
msgstr "Creating Solder Paste dispensing geometry."
-#: flatcamTools/ToolSolderPaste.py:991
-msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
-msgstr "[WARNING_NOTCL] No Nozzle tools in the tool table."
-
-#: flatcamTools/ToolSolderPaste.py:1120
-msgid "[success] Solder Paste geometry generated successfully..."
-msgstr "[success] Solder Paste geometry generated successfully..."
+#: flatcamTools/ToolSolderPaste.py:999
+#| msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
+msgid "No Nozzle tools in the tool table."
+msgstr "No Nozzle tools in the tool table."
#: flatcamTools/ToolSolderPaste.py:1126
-msgid ""
-"[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
-"diameters..."
-msgstr ""
-"[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
-"diameters..."
+#| msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
+msgid "Cancelled. Empty file, it has no geometry..."
+msgstr "Cancelled. Empty file, it has no geometry..."
-#: flatcamTools/ToolSolderPaste.py:1140
+#: flatcamTools/ToolSolderPaste.py:1130
+#| msgid "[success] Solder Paste geometry generated successfully..."
+msgid "Solder Paste geometry generated successfully"
+msgstr "Solder Paste geometry generated successfully"
+
+#: flatcamTools/ToolSolderPaste.py:1137
+#| msgid ""
+#| "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
+#| "diameters..."
+msgid "Some or all pads have no solder due of inadequate nozzle diameters..."
+msgstr "Some or all pads have no solder due of inadequate nozzle diameters..."
+
+#: flatcamTools/ToolSolderPaste.py:1151
msgid "Generating Solder Paste dispensing geometry..."
msgstr "Generating Solder Paste dispensing geometry..."
-#: flatcamTools/ToolSolderPaste.py:1160
-msgid "[WARNING_NOTCL] There is no Geometry object available."
-msgstr "[WARNING_NOTCL] There is no Geometry object available."
+#: flatcamTools/ToolSolderPaste.py:1172
+#| msgid "[WARNING_NOTCL] There is no Geometry object available."
+msgid "There is no Geometry object available."
+msgstr "There is no Geometry object available."
-#: flatcamTools/ToolSolderPaste.py:1164
+#: flatcamTools/ToolSolderPaste.py:1177
+#| msgid ""
+#| "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
+#| "geometry."
+msgid "This Geometry can't be processed. NOT a solder_paste_tool geometry."
+msgstr "This Geometry can't be processed. NOT a solder_paste_tool geometry."
+
+#: flatcamTools/ToolSolderPaste.py:1285
+#| msgid "[success] ToolSolderPaste CNCjob created: %s"
+msgid "ToolSolderPaste CNCjob created"
+msgstr "ToolSolderPaste CNCjob created"
+
+#: flatcamTools/ToolSolderPaste.py:1318 flatcamTools/ToolSolderPaste.py:1323
+#: flatcamTools/ToolSolderPaste.py:1378
+#| msgid ""
+#| "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
+#| "solder_paste_tool CNCJob object."
msgid ""
-"[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
-"geometry."
+"This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object."
msgstr ""
-"[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
-"geometry."
+"This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object."
-#: flatcamTools/ToolSolderPaste.py:1270
-#, python-format
-msgid "[success] ToolSolderPaste CNCjob created: %s"
-msgstr "[success] ToolSolderPaste CNCjob created: %s"
+#: flatcamTools/ToolSolderPaste.py:1348
+#| msgid "[ERROR_NOTCL] No Gcode in the object..."
+msgid "No Gcode in the object"
+msgstr "No Gcode in the object"
-#: flatcamTools/ToolSolderPaste.py:1302 flatcamTools/ToolSolderPaste.py:1306
#: flatcamTools/ToolSolderPaste.py:1358
-msgid ""
-"[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
-"solder_paste_tool CNCJob object."
-msgstr ""
-"[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
-"solder_paste_tool CNCJob object."
+#| msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
+msgid "ToolSolderPaste.on_view_gcode()"
+msgstr "ToolSolderPaste.on_view_gcode()"
-#: flatcamTools/ToolSolderPaste.py:1330
-msgid "[ERROR_NOTCL] No Gcode in the object..."
-msgstr "[ERROR_NOTCL] No Gcode in the object..."
-
-#: flatcamTools/ToolSolderPaste.py:1339
-#, python-format
-msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
-msgstr "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
-
-#: flatcamTools/ToolSolderPaste.py:1368
+#: flatcamTools/ToolSolderPaste.py:1388
msgid "Export GCode ..."
msgstr "Export GCode ..."
-#: flatcamTools/ToolSolderPaste.py:1412
-#, python-format
-msgid "[success] Solder paste dispenser GCode file saved to: %s"
-msgstr "[success] Solder paste dispenser GCode file saved to: %s"
+#: flatcamTools/ToolSolderPaste.py:1436
+#| msgid "[success] Solder paste dispenser GCode file saved to: %s"
+msgid "Solder paste dispenser GCode file saved to"
+msgstr "Solder paste dispenser GCode file saved to"
#: flatcamTools/ToolSub.py:57
msgid "Gerber Objects"
@@ -12715,44 +14207,48 @@ msgstr ""
msgid "Sub Tool"
msgstr "Sub Tool"
-#: flatcamTools/ToolSub.py:244 flatcamTools/ToolSub.py:440
-msgid "[ERROR_NOTCL] No Target object loaded."
-msgstr "[ERROR_NOTCL] No Target object loaded."
+#: flatcamTools/ToolSub.py:245 flatcamTools/ToolSub.py:447
+#| msgid "[ERROR_NOTCL] No Target object loaded."
+msgid "No Target object loaded."
+msgstr "No Target object loaded."
-#: flatcamTools/ToolSub.py:257 flatcamTools/ToolSub.py:453
-msgid "[ERROR_NOTCL] No Substractor object loaded."
-msgstr "[ERROR_NOTCL] No Substractor object loaded."
+#: flatcamTools/ToolSub.py:260 flatcamTools/ToolSub.py:462
+#| msgid "[ERROR_NOTCL] No Substractor object loaded."
+msgid "No Substractor object loaded."
+msgstr "No Substractor object loaded."
-#: flatcamTools/ToolSub.py:310
+#: flatcamTools/ToolSub.py:314
#, python-format
msgid "Parsing aperture %s geometry ..."
msgstr "Parsing aperture %s geometry ..."
-#: flatcamTools/ToolSub.py:412 flatcamTools/ToolSub.py:608
+#: flatcamTools/ToolSub.py:416 flatcamTools/ToolSub.py:619
msgid "Generating new object ..."
msgstr "Generating new object ..."
-#: flatcamTools/ToolSub.py:415 flatcamTools/ToolSub.py:611
-#: flatcamTools/ToolSub.py:690
-msgid "[ERROR_NOTCL] Generating new object failed."
-msgstr "[ERROR_NOTCL] Generating new object failed."
+#: flatcamTools/ToolSub.py:420 flatcamTools/ToolSub.py:623
+#: flatcamTools/ToolSub.py:704
+#| msgid "Generating new object ..."
+msgid "Generating new object failed."
+msgstr "Generating new object failed."
-#: flatcamTools/ToolSub.py:419 flatcamTools/ToolSub.py:616
-#, python-format
-msgid "[success] Created: %s"
-msgstr "[success] Created: %s"
+#: flatcamTools/ToolSub.py:425 flatcamTools/ToolSub.py:629
+#| msgid "Create GCode"
+msgid "Created"
+msgstr "Created"
-#: flatcamTools/ToolSub.py:465
-msgid ""
-"[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo."
-msgstr ""
-"[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo."
+#: flatcamTools/ToolSub.py:476
+#| msgid ""
+#| "[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type "
+#| "Multigeo."
+msgid "Currently, the Substractor geometry cannot be of type Multigeo."
+msgstr "Currently, the Substractor geometry cannot be of type Multigeo."
-#: flatcamTools/ToolSub.py:510
+#: flatcamTools/ToolSub.py:521
msgid "Parsing solid_geometry ..."
msgstr "Parsing solid_geometry ..."
-#: flatcamTools/ToolSub.py:512
+#: flatcamTools/ToolSub.py:523
#, python-format
msgid "Parsing tool %s geometry ..."
msgstr "Parsing tool %s geometry ..."
@@ -12811,51 +14307,445 @@ msgstr ""
"Does not create a new object.\n"
" "
-#: flatcamTools/ToolTransform.py:642
-msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
-msgstr "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
+#: flatcamTools/ToolTransform.py:643
+#| msgid ""
+#| "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
+msgid "No object selected. Please Select an object to rotate!"
+msgstr "No object selected. Please Select an object to rotate!"
-#: flatcamTools/ToolTransform.py:670
+#: flatcamTools/ToolTransform.py:671
msgid "CNCJob objects can't be rotated."
msgstr "CNCJob objects can't be rotated."
-#: flatcamTools/ToolTransform.py:678
-msgid "[success] Rotate done ..."
-msgstr "[success] Rotate done ..."
+#: flatcamTools/ToolTransform.py:679
+#| msgid "Rotate Angle"
+msgid "Rotate done"
+msgstr "Rotate done"
-#: flatcamTools/ToolTransform.py:693
-msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
-msgstr "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
+#: flatcamTools/ToolTransform.py:684 flatcamTools/ToolTransform.py:759
+#: flatcamTools/ToolTransform.py:808 flatcamTools/ToolTransform.py:867
+#: flatcamTools/ToolTransform.py:903
+msgid "Due of"
+msgstr "Due of"
-#: flatcamTools/ToolTransform.py:728
+#: flatcamTools/ToolTransform.py:684 flatcamTools/ToolTransform.py:759
+#: flatcamTools/ToolTransform.py:808 flatcamTools/ToolTransform.py:867
+#: flatcamTools/ToolTransform.py:903
+#| msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
+msgid "action was not executed."
+msgstr "action was not executed."
+
+#: flatcamTools/ToolTransform.py:696
+#| msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
+msgid "No object selected. Please Select an object to flip"
+msgstr "No object selected. Please Select an object to flip"
+
+#: flatcamTools/ToolTransform.py:731
msgid "CNCJob objects can't be mirrored/flipped."
msgstr "CNCJob objects can't be mirrored/flipped."
-#: flatcamTools/ToolTransform.py:762
-msgid ""
-"[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
-msgstr ""
-"[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
+#: flatcamTools/ToolTransform.py:769
+#| msgid ""
+#| "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
+msgid "No object selected. Please Select an object to shear/skew!"
+msgstr "No object selected. Please Select an object to shear/skew!"
-#: flatcamTools/ToolTransform.py:784
+#: flatcamTools/ToolTransform.py:791
msgid "CNCJob objects can't be skewed."
msgstr "CNCJob objects can't be skewed."
-#: flatcamTools/ToolTransform.py:811
-msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
-msgstr "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
+#: flatcamTools/ToolTransform.py:803
+#, python-format
+msgid "[success] Skew on the %s axis done ..."
+msgstr "[success] Skew on the %s axis done ..."
-#: flatcamTools/ToolTransform.py:844
+#: flatcamTools/ToolTransform.py:820
+#| msgid ""
+#| "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
+msgid "No object selected. Please Select an object to scale!"
+msgstr "No object selected. Please Select an object to scale!"
+
+#: flatcamTools/ToolTransform.py:853
msgid "CNCJob objects can't be scaled."
msgstr "CNCJob objects can't be scaled."
#: flatcamTools/ToolTransform.py:863
-msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
-msgstr "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
+#| msgid "Scale Stroke"
+msgid "Scale on the"
+msgstr "Scale on the"
-#: flatcamTools/ToolTransform.py:872
-msgid "CNCJob objects can't be offseted."
-msgstr "CNCJob objects can't be offseted."
+#: flatcamTools/ToolTransform.py:863 flatcamTools/ToolTransform.py:898
+msgid "axis done"
+msgstr "axis done"
+
+#: flatcamTools/ToolTransform.py:875
+#| msgid ""
+#| "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
+msgid "No object selected. Please Select an object to offset!"
+msgstr "No object selected. Please Select an object to offset!"
+
+#: flatcamTools/ToolTransform.py:884
+#| msgid "CNCJob objects can't be offseted."
+msgid "CNCJob objects can't be offset."
+msgstr "CNCJob objects can't be offset."
+
+#: flatcamTools/ToolTransform.py:898
+#| msgid "Offset X"
+msgid "Offset on the"
+msgstr "Offset on the"
+
+#: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:68
+#| msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
+msgid "Expected FlatCAMGerber or FlatCAMGeometry, got"
+msgstr "Expected FlatCAMGerber or FlatCAMGeometry, got"
+
+#: tclCommands/TclCommandCopperClear.py:234 tclCommands/TclCommandPaint.py:231
+msgid "Expected -box ."
+msgstr "Expected -box ."
+
+#: tclCommands/TclCommandCopperClear.py:243 tclCommands/TclCommandPaint.py:240
+#: tclCommands/TclCommandScale.py:63
+#| msgid "[ERROR_NOTCL] Could not retrieve object: %s"
+msgid "Could not retrieve box object"
+msgstr "Could not retrieve box object"
+
+#: tclCommands/TclCommandCopperClear.py:263
+msgid ""
+"None of the following args: 'ref', 'all' were found or none was set to 1.\n"
+"Copper clearing failed."
+msgstr ""
+"None of the following args: 'ref', 'all' were found or none was set to 1.\n"
+"Copper clearing failed."
+
+#: tclCommands/TclCommandPaint.py:210
+msgid "Expected -x and -y ."
+msgstr "Expected -x and -y ."
+
+#: tclCommands/TclCommandPaint.py:257
+msgid ""
+"There was none of the following args: 'ref', 'single', 'all'.\n"
+"Paint failed."
+msgstr ""
+"There was none of the following args: 'ref', 'single', 'all'.\n"
+"Paint failed."
+
+#: tclCommands/TclCommandScale.py:83
+msgid "Expected -origin or -origin or -origin ."
+msgstr "Expected -origin or -origin or -origin ."
+
+#: tclCommands/TclCommandScale.py:92
+msgid "Expected -x -y ."
+msgstr "Expected -x -y ."
+
+#: tclCommands/TclCommandSubtractRectangle.py:49
+msgid "No Geometry name in args. Provide a name and try again."
+msgstr "No Geometry name in args. Provide a name and try again."
+
+#~ msgid "[ERROR_NOTCL] Could not load defaults file."
+#~ msgstr "[ERROR_NOTCL] Could not load defaults file."
+
+#~ msgid "[ERROR_NOTCL] Failed to parse defaults file."
+#~ msgstr "[ERROR_NOTCL] Failed to parse defaults file."
+
+#~ msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
+#~ msgstr "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
+
+#~ msgid "[success] Defaults saved."
+#~ msgstr "[success] Defaults saved."
+
+#~ msgid "[success] Converted units to %s"
+#~ msgstr "[success] Converted units to %s"
+
+#~ msgid "[WARNING_NOTCL] Export Code cancelled."
+#~ msgstr "[WARNING_NOTCL] Export Code cancelled."
+
+#~ msgid "[success] Origin set ..."
+#~ msgstr "[success] Origin set ..."
+
+#~ msgid "[success] Skew on X axis done."
+#~ msgstr "[success] Skew on X axis done."
+
+#~ msgid "[success] Skew on Y axis done."
+#~ msgstr "[success] Skew on Y axis done."
+
+#~ msgid "[success] New Grid added ..."
+#~ msgstr "[success] New Grid added ..."
+
+#~ msgid "[WARNING_NOTCL] Open Gerber cancelled."
+#~ msgstr "[WARNING_NOTCL] Open Gerber cancelled."
+
+#~ msgid "[WARNING_NOTCL] Open G-Code cancelled."
+#~ msgstr "[WARNING_NOTCL] Open G-Code cancelled."
+
+#~ msgid "[WARNING_NOTCL] Open Project cancelled."
+#~ msgstr "[WARNING_NOTCL] Open Project cancelled."
+
+#~ msgid "[WARNING_NOTCL] Open Config cancelled."
+#~ msgstr "[WARNING_NOTCL] Open Config cancelled."
+
+#~ msgid "[WARNING_NOTCL] No object selected."
+#~ msgstr "[WARNING_NOTCL] No object selected."
+
+#~ msgid "[WARNING_NOTCL] Export SVG cancelled."
+#~ msgstr "[WARNING_NOTCL] Export SVG cancelled."
+
+#~ msgid "[WARNING_NOTCL] Export Excellon cancelled."
+#~ msgstr "[WARNING_NOTCL] Export Excellon cancelled."
+
+#~ msgid "[WARNING_NOTCL] Export Gerber cancelled."
+#~ msgstr "[WARNING_NOTCL] Export Gerber cancelled."
+
+#~ msgid "[WARNING_NOTCL] Export DXF cancelled."
+#~ msgstr "[WARNING_NOTCL] Export DXF cancelled."
+
+#~ msgid "[WARNING_NOTCL] Open SVG cancelled."
+#~ msgstr "[WARNING_NOTCL] Open SVG cancelled."
+
+#~ msgid "[WARNING_NOTCL] Open DXF cancelled."
+#~ msgstr "[WARNING_NOTCL] Open DXF cancelled."
+
+#~ msgid "[WARNING_NOTCL] No object Box. Using instead %s"
+#~ msgstr "[WARNING_NOTCL] No object Box. Using instead %s"
+
+#~ msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
+#~ msgstr "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
+
+#~ msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
+#~ msgstr "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
+
+#~ msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
+#~ msgstr "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
+
+#~ msgid ""
+#~ "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
+
+#~ msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
+#~ msgstr "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
+#~ msgstr "[ERROR_NOTCL] Wrong value format entered, use a number."
+
+#~ msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
+#~ msgstr "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
+
+#~ msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
+#~ msgstr "[WARNING_NOTCL] Export Machine Code cancelled ..."
+
+#~ msgid "[WARNING_NOTCL] No such file or directory"
+#~ msgstr "[WARNING_NOTCL] No such file or directory"
+
+#~ msgid ""
+#~ "[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
+#~ "current_geometry.\n"
+#~ "Raise the value (in module) and try again."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
+#~ "current_geometry.\n"
+#~ "Raise the value (in module) and try again."
+
+#~ msgid "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
+#~ msgstr "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
+
+#~ msgid "[ERROR_NOTCL] Cancelled."
+#~ msgstr "[ERROR_NOTCL] Cancelled."
+
+#~ msgid "Tool Dia:"
+#~ msgstr "Tool Dia:"
+
+#~ msgid "Nr of drills:"
+#~ msgstr "Nr of drills:"
+
+#~ msgid "Direction:"
+#~ msgstr "Direction:"
+
+#~ msgid "Pitch:"
+#~ msgstr "Pitch:"
+
+#~ msgid "Length:"
+#~ msgstr "Length:"
+
+#~ msgid "Nr of slots:"
+#~ msgstr "Nr of slots:"
+
+#~ msgid "[success] Deleted tool with dia: {del_dia} {units}"
+#~ msgstr "[success] Deleted tool with dia: {del_dia} {units}"
+
+#~ msgid "Tool dia:"
+#~ msgstr "Tool dia:"
+
+#~ msgid "Overlap Rate:"
+#~ msgstr "Overlap Rate:"
+
+#~ msgid "Method:"
+#~ msgstr "Method:"
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
+#~ msgstr "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
+#~ msgstr "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
+#~ msgstr "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
+#~ msgstr "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
+#~ msgstr "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
+
+#~ msgid "[success] Flip on the Y axis done ..."
+#~ msgstr "[success] Flip on the Y axis done ..."
+
+#~ msgid "[success] Flip on the X axis done ..."
+#~ msgstr "[success] Flip on the X axis done ..."
+
+#~ msgid "[success] Offset on the %s axis done ..."
+#~ msgstr "[success] Offset on the %s axis done ..."
+
+#~ msgid ""
+#~ "[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: "
+#~ "{dia}"
+#~ msgstr ""
+#~ "[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: "
+#~ "{dia}"
+
+#~ msgid "Clear GUI Settings:"
+#~ msgstr "Clear GUI Settings:"
+
+#~ msgid "Duration:"
+#~ msgstr "Duration:"
+
+#~ msgid "Fast Plunge:"
+#~ msgstr "Fast Plunge:"
+
+#~ msgid "Linear Dir.:"
+#~ msgstr "Linear Dir.:"
+
+#~ msgid "Plot kind:"
+#~ msgstr "Plot kind:"
+
+#~ msgid ""
+#~ "Select from the Tools Table above\n"
+#~ "the tools you want to include."
+#~ msgstr ""
+#~ "Select from the Tools Table above\n"
+#~ "the tools you want to include."
+
+#~ msgid ""
+#~ "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
+#~ "number."
+#~ msgstr ""
+#~ "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
+#~ "number."
+
+#~ msgid "[success] Gerber %s was mirrored..."
+#~ msgstr "[success] Gerber %s was mirrored..."
+
+#~ msgid "[success] Excellon %s was mirrored..."
+#~ msgstr "[success] Excellon %s was mirrored..."
+
+#~ msgid "[success] Geometry %s was mirrored..."
+#~ msgstr "[success] Geometry %s was mirrored..."
+
+#~ msgid "[WARNING_NOTCL] No object(s) selected."
+#~ msgstr "[WARNING_NOTCL] No object(s) selected."
+
+#~ msgid "[success] %s object was moved ..."
+#~ msgstr "[success] %s object was moved ..."
+
+#~ msgid "[WARNING_NOTCL] Object(s) not selected"
+#~ msgstr "[WARNING_NOTCL] Object(s) not selected"
+
+#~ msgid "[WARNING_NOTCL] Buffering ..."
+#~ msgstr "[WARNING_NOTCL] Buffering ..."
+
+#~ msgid "[success] Non-Copper Clearing with ToolDia = %s started."
+#~ msgstr "[success] Non-Copper Clearing with ToolDia = %s started."
+
+#~ msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
+#~ msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
+
+#~ msgid "[success] NCC Tool finished."
+#~ msgstr "[success] NCC Tool finished."
+
+#~ msgid ""
+#~ "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
+#~ "cleared. Check the result."
+#~ msgstr ""
+#~ "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
+#~ "cleared. Check the result."
+
+#~ msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
+#~ msgstr "[success] Non-Copper Rest Clearing with ToolDia = %s started."
+
+#~ msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
+#~ msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
+
+#~ msgid ""
+#~ "[ERROR_NOTCL] NCC Tool finished but could not clear the object with "
+#~ "current settings."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] NCC Tool finished but could not clear the object with "
+#~ "current settings."
+
+#~ msgid "[WARNING_NOTCL] Open PDF cancelled."
+#~ msgstr "[WARNING_NOTCL] Open PDF cancelled."
+
+#~ msgid "[ERROR_NOTCL] Open PDF file failed."
+#~ msgstr "[ERROR_NOTCL] Open PDF file failed."
+
+#~ msgid "[success] Rendered: %s"
+#~ msgstr "[success] Rendered: %s"
+
+#~ msgid ""
+#~ "How to select the polygons to paint.
Options:
- Single Polygons"
+#~ "B>: left mouse click on the polygon to be painted.
- Area "
+#~ "Selection: left mouse click to start selection of the area to be "
+#~ "painted.
- All Polygons: paint all polygons.
- Reference "
+#~ "Object: paint an area described by an external reference object."
+#~ msgstr ""
+#~ "How to select the polygons to paint.
Options:
- Single Polygons"
+#~ "B>: left mouse click on the polygon to be painted.
- Area "
+#~ "Selection: left mouse click to start selection of the area to be "
+#~ "painted.
- All Polygons: paint all polygons.
- Reference "
+#~ "Object: paint an area described by an external reference object."
+
+#~ msgid ""
+#~ "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
+#~ "Usually it means that the tool diameter is too big for the painted "
+#~ "geometry.\n"
+#~ "Change the painting parameters and try again."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
+#~ "Usually it means that the tool diameter is too big for the painted "
+#~ "geometry.\n"
+#~ "Change the painting parameters and try again."
+
+#~ msgid "[WARNING_NOTCL]No object Box. Using instead %s"
+#~ msgstr "[WARNING_NOTCL]No object Box. Using instead %s"
+
+#~ msgid "[success] Imported: %s"
+#~ msgstr "[success] Imported: %s"
+
+#~ msgid "[ERROR_NOTCL] Generating new object failed."
+#~ msgstr "[ERROR_NOTCL] Generating new object failed."
+
+#~ msgid "[success] Created: %s"
+#~ msgstr "[success] Created: %s"
+
+#~ msgid "[success] Rotate done ..."
+#~ msgstr "[success] Rotate done ..."
#~ msgid ""
#~ "When choosing the 'Itself' option the non copper clearing extent\n"
@@ -12903,9 +14793,6 @@ msgstr "CNCJob objects can't be offseted."
#~ "described by a selected object.
A new Geometry object with the tool "
#~ "paths will be created."
-#~ msgid "Done."
-#~ msgstr "Done."
-
#~ msgid "Apertures:"
#~ msgstr "Apertures:"
@@ -13303,9 +15190,6 @@ msgstr "CNCJob objects can't be offseted."
#~ "Factor by which to expand/shrink\n"
#~ "geometric features of this object."
-#~ msgid "[WARNING]No object Box. Using instead %s"
-#~ msgstr "[WARNING]No object Box. Using instead %s"
-
#~ msgid "In"
#~ msgstr "In"
@@ -13773,20 +15657,11 @@ msgstr "CNCJob objects can't be offseted."
#~ msgid "[ERROR_NOTCL]Could not load defaults file."
#~ msgstr "[ERROR_NOTCL]Could not load defaults file."
-#~ msgid "[ERROR_NOTCL] Failed to parse project file: %s"
-#~ msgstr "[ERROR_NOTCL] Failed to parse project file: %s"
-
-#~ msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
-#~ msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."
-
#~ msgid ""
#~ "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
#~ msgstr ""
#~ "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
-#~ msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
-#~ msgstr "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
-
#~ msgid "[WARNING_NOTCL]Export Machine Code cancelled ..."
#~ msgstr "[WARNING_NOTCL]Export Machine Code cancelled ..."
@@ -13812,15 +15687,6 @@ msgstr "CNCJob objects can't be offseted."
#~ "Will generate a new Gerber object from the changed apertures.\n"
#~ "This new object can then be isolated etc."
-#~ msgid "[success]Flip on the Y axis done ..."
-#~ msgstr "[success]Flip on the Y axis done ..."
-
-#~ msgid "[success]Flip on the X axis done ..."
-#~ msgstr "[success]Flip on the X axis done ..."
-
-#~ msgid "[success]Skew on the %s axis done ..."
-#~ msgstr "[success]Skew on the %s axis done ..."
-
#~ msgid "[success]Offset on the %s axis done ..."
#~ msgstr "[success]Offset on the %s axis done ..."
diff --git a/locale/ro/LC_MESSAGES/strings.mo b/locale/ro/LC_MESSAGES/strings.mo
index b8508a68..e18054a9 100644
Binary files a/locale/ro/LC_MESSAGES/strings.mo and b/locale/ro/LC_MESSAGES/strings.mo differ
diff --git a/locale/ro/LC_MESSAGES/strings.po b/locale/ro/LC_MESSAGES/strings.po
index ee57f5d2..0b8fc6c3 100644
--- a/locale/ro/LC_MESSAGES/strings.po
+++ b/locale/ro/LC_MESSAGES/strings.po
@@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"POT-Creation-Date: 2019-08-23 23:04+0300\n"
-"PO-Revision-Date: 2019-08-23 23:19+0300\n"
+"POT-Creation-Date: 2019-09-10 00:47+0300\n"
+"PO-Revision-Date: 2019-09-10 03:18+0300\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ro\n"
@@ -23,173 +23,179 @@ msgstr ""
"X-Poedit-SearchPathExcluded-1: tests\n"
"X-Poedit-SearchPathExcluded-2: doc\n"
-#: FlatCAMApp.py:1053
-msgid "[ERROR] Could not find the Language files. The App strings are missing."
-msgstr ""
-"[ERROR] Nu am gasit fişierele cu traduceri. Mesajele aplicaţiei lipsesc."
+#: FlatCAMApp.py:1113
+msgid "Could not find the Language files. The App strings are missing."
+msgstr "Nu am gasit fişierele cu traduceri. Mesajele aplicaţiei lipsesc."
-#: FlatCAMApp.py:1587
+#: FlatCAMApp.py:1655
msgid "Detachable Tabs"
msgstr "Taburi detașabile"
-#: FlatCAMApp.py:1977
+#: FlatCAMApp.py:2067
msgid ""
-"(Type help to get started)\n"
+"Open Source Software - Type help to get started\n"
"\n"
msgstr ""
-"(Tastează help pt. a începe)\n"
+"Software open source - Introduceți help pentru a începe\n"
"\n"
-#: FlatCAMApp.py:2172 FlatCAMApp.py:6595
+#: FlatCAMApp.py:2270 FlatCAMApp.py:7220
msgid "New Project - Not saved"
msgstr "Proiect nou - Nu a fost salvat"
-#: FlatCAMApp.py:2205 ObjectCollection.py:80 flatcamTools/ToolImage.py:218
+#: FlatCAMApp.py:2320 ObjectCollection.py:80 flatcamTools/ToolImage.py:218
#: flatcamTools/ToolPcbWizard.py:301 flatcamTools/ToolPcbWizard.py:324
msgid "Open cancelled."
msgstr "Deschidere anulată."
-#: FlatCAMApp.py:2220
+#: FlatCAMApp.py:2335
msgid "Open Config file failed."
msgstr "Deschiderea fişierului de configurare a eşuat."
-#: FlatCAMApp.py:2234
+#: FlatCAMApp.py:2349
msgid "Open Script file failed."
msgstr "Deschiderea fişierului Script eşuat."
-#: FlatCAMApp.py:2440
-msgid "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit."
-msgstr ""
-"[WARNING_NOTCL] Selectează un obiect tip Geometrie Gerber sau Excellon "
-"pentru editare."
+#: FlatCAMApp.py:2366
+msgid "Open Excellon file failed."
+msgstr "Deschiderea fişierului Excellon a eşuat."
-#: FlatCAMApp.py:2453
+#: FlatCAMApp.py:2377
+msgid "Open GCode file failed."
+msgstr "Deschiderea fişierului GCode a eşuat."
+
+#: FlatCAMApp.py:2388
+msgid "Open Gerber file failed."
+msgstr "Deschiderea fişierului Gerber a eşuat."
+
+#: FlatCAMApp.py:2652
+msgid "Select a Geometry, Gerber or Excellon Object to edit."
+msgstr "Selectează un obiect tip Geometrie Gerber sau Excellon pentru editare."
+
+#: FlatCAMApp.py:2666
msgid ""
-"[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo "
-"Geometry is not possible.\n"
+"Simultanoeus editing of tools geometry in a MultiGeo Geometry is not "
+"possible.\n"
"Edit only one geometry at a time."
msgstr ""
-"[WARNING_NOTCL] Editarea simultană de geometrii ale uneltelor dintr-un "
-"obiect tip Geometrie MultiGeo nu este posibilă.\n"
+"Editarea simultană de geometrii ale uneltelor dintr-un obiect tip Geometrie "
+"MultiGeo nu este posibilă.\n"
"Se poate edita numai o singură geometrie de fiecare dată."
-#: FlatCAMApp.py:2507
-msgid "[WARNING_NOTCL] Editor is activated ..."
-msgstr "[WARNING_NOTCL] Editorul este activ. .."
+#: FlatCAMApp.py:2721
+msgid "Editor is activated ..."
+msgstr "Editorul este activ ..."
-#: FlatCAMApp.py:2525
+#: FlatCAMApp.py:2739
msgid "Do you want to save the edited object?"
msgstr "Vrei sa salvezi obiectul editat?"
-#: FlatCAMApp.py:2526 flatcamGUI/FlatCAMGUI.py:1703
+#: FlatCAMApp.py:2740 flatcamGUI/FlatCAMGUI.py:1721
msgid "Close Editor"
msgstr "Inchide Editorul"
-#: FlatCAMApp.py:2529 FlatCAMApp.py:3654 FlatCAMApp.py:5627 FlatCAMApp.py:6504
+#: FlatCAMApp.py:2743 FlatCAMApp.py:4028 FlatCAMApp.py:6224 FlatCAMApp.py:7128
#: FlatCAMTranslation.py:96 FlatCAMTranslation.py:169
-#: flatcamGUI/FlatCAMGUI.py:3945
+#: flatcamGUI/FlatCAMGUI.py:3996
msgid "Yes"
msgstr "Da"
-#: FlatCAMApp.py:2530 FlatCAMApp.py:3655 FlatCAMApp.py:5628 FlatCAMApp.py:6505
+#: FlatCAMApp.py:2744 FlatCAMApp.py:4029 FlatCAMApp.py:6225 FlatCAMApp.py:7129
#: FlatCAMTranslation.py:97 FlatCAMTranslation.py:170
-#: flatcamGUI/FlatCAMGUI.py:3946 flatcamGUI/FlatCAMGUI.py:6372
-#: flatcamGUI/FlatCAMGUI.py:6702 flatcamTools/ToolNonCopperClear.py:145
+#: flatcamGUI/FlatCAMGUI.py:3997 flatcamGUI/FlatCAMGUI.py:6517
+#: flatcamGUI/FlatCAMGUI.py:6877 flatcamTools/ToolNonCopperClear.py:171
#: flatcamTools/ToolPaint.py:144
msgid "No"
msgstr "Nu"
-#: FlatCAMApp.py:2531 FlatCAMApp.py:3656 FlatCAMApp.py:4176 FlatCAMApp.py:5163
-#: FlatCAMApp.py:6506
+#: FlatCAMApp.py:2745 FlatCAMApp.py:4030 FlatCAMApp.py:4719 FlatCAMApp.py:5720
+#: FlatCAMApp.py:7130
msgid "Cancel"
msgstr "Anuleaza"
-#: FlatCAMApp.py:2558
-msgid "[WARNING] Object empty after edit."
-msgstr "[WARNING] Obiectul nu are date dupa editare."
+#: FlatCAMApp.py:2773
+msgid "Object empty after edit."
+msgstr "Obiectul nu are date dupa editare."
-#: FlatCAMApp.py:2580 FlatCAMApp.py:2599 FlatCAMApp.py:2611
-msgid "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update."
+#: FlatCAMApp.py:2796 FlatCAMApp.py:2817 FlatCAMApp.py:2830
+msgid "Select a Gerber, Geometry or Excellon Object to update."
msgstr ""
-"[WARNING_NOTCL] Selectează un obiect tip Gerber, Geometrie sau Excellon "
-"pentru salvare."
+"Selectează un obiect tip Gerber, Geometrie sau Excellon pentru actualizare."
-#: FlatCAMApp.py:2583
-#, python-format
-msgid "[selected] %s is updated, returning to App..."
-msgstr "[selected] %s este actualizat, întoarcere la aplicaţie."
+#: FlatCAMApp.py:2800
+msgid "is updated, returning to App..."
+msgstr "este actualizat, întoarcere la aplicaţie..."
-#: FlatCAMApp.py:2948
-msgid "[ERROR] Could not load defaults file."
-msgstr "[ERROR] Nu am putut incărca fişierul cu valori default."
+#: FlatCAMApp.py:3186 FlatCAMApp.py:3240 FlatCAMApp.py:3889
+msgid "Could not load defaults file."
+msgstr "Nu am putut incărca fişierul cu valori default."
-#: FlatCAMApp.py:2960
-msgid "[ERROR] Failed to parse defaults file."
-msgstr "[ERROR] Parsarea fişierului cu valori default a eșuat."
+#: FlatCAMApp.py:3199 FlatCAMApp.py:3249 FlatCAMApp.py:3899
+msgid "Failed to parse defaults file."
+msgstr "Parsarea fişierului cu valori default a eșuat."
-#: FlatCAMApp.py:2981 FlatCAMApp.py:2985
+#: FlatCAMApp.py:3220 FlatCAMApp.py:3224
msgid "Import FlatCAM Preferences"
-msgstr "Importa Preferințele FlatCAM"
+msgstr "Importă Preferințele FlatCAM"
-#: FlatCAMApp.py:2991
-msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled."
-msgstr "[WARNING_NOTCL] Importul preferințelor FlatCAM a eșuat."
+#: FlatCAMApp.py:3231
+msgid "FlatCAM preferences import cancelled."
+msgstr "Importul preferințelor FlatCAM a eșuat."
-#: FlatCAMApp.py:2999 FlatCAMApp.py:3058 FlatCAMApp.py:3530
-msgid "[ERROR_NOTCL] Could not load defaults file."
-msgstr ""
-"[ERROR_NOTCL] Nu a fost posibilă incărcarea fişierului cu valori default."
+#: FlatCAMApp.py:3254
+msgid "Imported Defaults from"
+msgstr "Valorile default au fost importate din"
-#: FlatCAMApp.py:3007 FlatCAMApp.py:3539
-msgid "[ERROR_NOTCL] Failed to parse defaults file."
-msgstr "[ERROR_NOTCL] Parsarea fişierului cu valori default a eșuat."
-
-#: FlatCAMApp.py:3011
-#, python-format
-msgid "[success] Imported Defaults from %s"
-msgstr "[success] Valorile default au fost importate din %s"
-
-#: FlatCAMApp.py:3026 FlatCAMApp.py:3031
+#: FlatCAMApp.py:3274 FlatCAMApp.py:3279
msgid "Export FlatCAM Preferences"
-msgstr "Exporta Preferințele FlatCAM"
+msgstr "Exportă Preferințele FlatCAM"
-#: FlatCAMApp.py:3038
-msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled."
-msgstr "[WARNING_NOTCL] Exportul preferințelor FlatCAM este anulat."
+#: FlatCAMApp.py:3287
+msgid "FlatCAM preferences export cancelled."
+msgstr "Exportul preferințelor FlatCAM este anulat."
-#: FlatCAMApp.py:3046 FlatCAMApp.py:4974 FlatCAMApp.py:7446 FlatCAMApp.py:7559
-#: FlatCAMApp.py:7682 FlatCAMApp.py:7739 FlatCAMApp.py:7852 FlatCAMApp.py:7977
-#: FlatCAMObj.py:5888 flatcamTools/ToolSolderPaste.py:1405
+#: FlatCAMApp.py:3296 FlatCAMApp.py:5531 FlatCAMApp.py:8113 FlatCAMApp.py:8229
+#: FlatCAMApp.py:8355 FlatCAMApp.py:8414 FlatCAMApp.py:8528 FlatCAMApp.py:8657
+#: FlatCAMObj.py:6167 flatcamTools/ToolSolderPaste.py:1428
msgid ""
-"[WARNING] Permission denied, saving not possible.\n"
+"Permission denied, saving not possible.\n"
"Most likely another app is holding the file open and not accessible."
msgstr ""
-"[WARNING] Permisiune refuzată, salvarea nu este posibilă.\n"
+"Permisiune refuzată, salvarea nu este posibilă.\n"
"Cel mai probabil o altă aplicație ține fișierul deschis și inaccesibil."
-#: FlatCAMApp.py:3077 FlatCAMApp.py:3584
-msgid "[ERROR_NOTCL] Failed to write defaults to file."
-msgstr "[ERROR_NOTCL] Salvarea valorilor default intr-un fişier a eșuat."
+#: FlatCAMApp.py:3309
+msgid "Could not load preferences file."
+msgstr "Nu am putut incărca fişierul cu valori default."
-#: FlatCAMApp.py:3137
-msgid "[ERROR_NOTCL] Failed to open recent files file for writing."
+#: FlatCAMApp.py:3329 FlatCAMApp.py:3945
+msgid "Failed to write defaults to file."
+msgstr "Salvarea valorilor default intr-un fişier a eșuat."
+
+#: FlatCAMApp.py:3335
+msgid "Exported preferences to"
+msgstr "Exportă Preferințele in"
+
+#: FlatCAMApp.py:3352
+msgid "FlatCAM Preferences Folder opened."
+msgstr "Folderul de preferințe FlatCAM a fost deschis."
+
+#: FlatCAMApp.py:3425
+msgid "Failed to open recent files file for writing."
msgstr ""
-"[ERROR_NOTCL] Deschiderea fişierului cu >fişiere recente< pentru a fi salvat "
-"a eșuat."
+"Deschiderea fişierului cu >fişiere recente< pentru a fi salvat a eșuat."
-#: FlatCAMApp.py:3147
-msgid "[ERROR_NOTCL] Failed to open recent projects file for writing."
+#: FlatCAMApp.py:3436
+msgid "Failed to open recent projects file for writing."
msgstr ""
-"[ERROR_NOTCL] Deschiderea fişierului cu >proiecte recente< pentru a fi "
-"salvat a eșuat."
+"Deschiderea fişierului cu >proiecte recente< pentru a fi salvat a eșuat."
-#: FlatCAMApp.py:3229 camlib.py:4501
-msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
+#: FlatCAMApp.py:3519 camlib.py:4806 flatcamTools/ToolSolderPaste.py:1214
+msgid "An internal error has ocurred. See shell.\n"
msgstr ""
-"[ERROR_NOTCL] A apărut o eroare internă. Verifică in TCL Shell pt mai multe "
-"detalii.\n"
+"A apărut o eroare internă. Verifică in TCL Shell pt mai multe detalii.\n"
-#: FlatCAMApp.py:3230
+#: FlatCAMApp.py:3520
#, python-brace-format
msgid ""
"Object ({kind}) failed because: {error} \n"
@@ -198,11 +204,11 @@ msgstr ""
"Obiectul ({kind}) a eșuat din cauza: {error} \n"
"\n"
-#: FlatCAMApp.py:3250
+#: FlatCAMApp.py:3541
msgid "Converting units to "
msgstr "Se convertesc unitătile la "
-#: FlatCAMApp.py:3327 FlatCAMApp.py:3330 FlatCAMApp.py:3333 FlatCAMApp.py:3336
+#: FlatCAMApp.py:3637 FlatCAMApp.py:3640 FlatCAMApp.py:3643 FlatCAMApp.py:3646
#, python-brace-format
msgid ""
"[selected] {kind} created/selected: {name}"
@@ -210,63 +216,66 @@ msgid ""
msgstr ""
"[selected]{kind} creat/selectat: {name}"
-#: FlatCAMApp.py:3432
+#: FlatCAMApp.py:3663 FlatCAMApp.py:5787 FlatCAMObj.py:225 FlatCAMObj.py:240
+#: FlatCAMObj.py:256 FlatCAMObj.py:336 flatcamTools/ToolMove.py:187
+msgid "Plotting"
+msgstr "Se afișeaz"
+
+#: FlatCAMApp.py:3782
#, python-brace-format
msgid ""
"FlatCAM
Version {version} {beta} ({date}) - "
"{arch}
2D Computer-Aided Printed Circuit Board
Manufacturing."
-"
(c) 2014-2019 Juan Pablo Caram
Main Contributors:"
-"B>
Denis Hayrullin
Kamil Sopko
Marius Stanciu
Matthieu "
-"Berthomé
and many others found here.
Development is done "
-"here."
-"a>
DOWNLOAD area here.
"
+"
License:
Licensed under MIT license (2014 - 2019)
by "
+"(c)Juan Pablo Caram
Programmers:
Denis Hayrullin
Kamil "
+"Sopko
Marius Stanciu
Matthieu Berthomé
and many others found here.
Development is done here.
DOWNLOAD area here.
"
msgstr ""
-"FlatCAM
Versiunea {version} {beta} ({date}) - "
-"{arch}
Producţie PCB in 2D asistata de calculator.
(c) "
-"2014-2019 Juan Pablo Caram
Contributori principali:"
-"B>
Denis Hayrullin
Kamil Sopko
Marius Stanciu
Matthieu "
-"Berthomé
si multi altii care pot fi gasiti aici here."
-"a>
Dezvoltarea este realizata aici.
Sectiunea DOWNLOAD este aici.
"
+"FlatCAM
Versiunea {version} {beta} ({date}) "
+"- {arch}
Fabricare de Plăci de circuit imprimat asistată de
"
+"procesare PC 2D.
Licență:
Licențiat sub licență MIT (2014 "
+"- 2019)
de (c) Juan Pablo Caram
Programatori:
Denis "
+"Hayrullin
Kamil Sopko
Marius Stanciu
Matthieu Berthomé
și mulți "
+"alții pot fi găsiti aici.
Dezvoltarease face aici."
+"a>
DOWLOAD:aici.
"
-#: FlatCAMApp.py:3465
+#: FlatCAMApp.py:3818
msgid "Close"
msgstr "Închide"
-#: FlatCAMApp.py:3588
-msgid "[success] Defaults saved."
-msgstr "[success] Valorile default au fost salvate."
+#: FlatCAMApp.py:3950 FlatCAMApp.py:6234
+msgid "Preferences saved."
+msgstr "Preferințele au fost salvate."
-#: FlatCAMApp.py:3612
-msgid "[ERROR_NOTCL] Could not load factory defaults file."
+#: FlatCAMApp.py:3978
+msgid "Could not load factory defaults file."
msgstr ""
-"[ERROR_NOTCL] Fişierul cu valori default de fabrică nu a fost posibil să fie "
-"deschis."
+"Fişierul cu valori default de fabrică nu a fost posibil să fie deschis."
-#: FlatCAMApp.py:3621
-msgid "[ERROR_NOTCL] Failed to parse factory defaults file."
+#: FlatCAMApp.py:3988
+msgid "Failed to parse factory defaults file."
+msgstr "Parsarea fişierului cu valori default de fabrică a eșuat."
+
+#: FlatCAMApp.py:4003
+msgid "Failed to write factory defaults to file."
msgstr ""
-"[ERROR_NOTCL] Parsarea fişierului cu valori default de fabrică a eșuat."
+"Salvarea fişierului cu valori default de fabrică intr-un fişier a eșuat."
-#: FlatCAMApp.py:3635
-msgid "[ERROR_NOTCL] Failed to write factory defaults to file."
-msgstr ""
-"[ERROR_NOTCL]] Salvarea fişierului cu valori default de fabrică intr-un "
-"fişier a eșuat."
-
-#: FlatCAMApp.py:3639
+#: FlatCAMApp.py:4007
msgid "Factory defaults saved."
msgstr "Valori default de fabrică au fost salvate."
-#: FlatCAMApp.py:3644 flatcamGUI/FlatCAMGUI.py:3282
-msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
-msgstr "[WARNING_NOTCL] Aplicația salvează proiectul. Vă rugăm aşteptați ..."
+#: FlatCAMApp.py:4018
+msgid "Application is saving the project. Please wait ..."
+msgstr "Aplicația salvează proiectul. Vă rugăm aşteptați ..."
-#: FlatCAMApp.py:3649 FlatCAMTranslation.py:164
+#: FlatCAMApp.py:4023 FlatCAMTranslation.py:164
msgid ""
"There are files/objects modified in FlatCAM. \n"
"Do you want to Save the project?"
@@ -274,20 +283,33 @@ msgstr ""
"FlatCAM are fişiere/obiecte care au fost modificate. \n"
"Dorești să Salvezi proiectul?"
-#: FlatCAMApp.py:3652 FlatCAMApp.py:6502 FlatCAMTranslation.py:167
+#: FlatCAMApp.py:4026 FlatCAMApp.py:7126 FlatCAMTranslation.py:167
msgid "Save changes"
-msgstr "Salvează modificarile."
+msgstr "Salvează modificarile"
-#: FlatCAMApp.py:3808
+#: FlatCAMApp.py:4237
+msgid "[success] Selected Excellon file extensions registered with FlatCAM."
+msgstr ""
+"[success] Extensiile de fișiere Excellon selectate înregistrate cu FlatCAM."
+
+#: FlatCAMApp.py:4259
+msgid "Selected GCode file extensions registered with FlatCAM."
+msgstr "Extensii de fișiere GCode selectate înregistrate cu FlatCAM."
+
+#: FlatCAMApp.py:4281
+msgid "Selected Gerber file extensions registered with FlatCAM."
+msgstr "Extensii de fișiere Gerber selectate înregistrate cu FlatCAM."
+
+#: FlatCAMApp.py:4305
msgid ""
-"[ERROR] Failed join. The Geometry objects are of different types.\n"
+"Failed join. The Geometry objects are of different types.\n"
"At least one is MultiGeo type and the other is SingleGeo type. A possibility "
"is to convert from one to another and retry joining \n"
"but in the case of converting from MultiGeo to SingleGeo, informations may "
"be lost and the result may not be what was expected. \n"
"Check the generated GCODE."
msgstr ""
-"[ERROR] Fuziune eșuata. Obiectele Geometrii sunt de tipuri diferite.\n"
+"Fuziune eșuata. Obiectele Geometrii sunt de tipuri diferite.\n"
"Cel puțin unul este de tip Multigeo și celalalt este tip SinglGeo. O "
"posibilitate este să convertesti dintr-unul in celalalt și să reincerci "
"fuzionarea \n"
@@ -295,45 +317,45 @@ msgstr ""
"informatii și rezultatul ar putea să nu fie cel dorit. \n"
"Verifică codul G-Code generat."
-#: FlatCAMApp.py:3849
-msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects."
+#: FlatCAMApp.py:4347
+msgid "Failed. Excellon joining works only on Excellon objects."
msgstr ""
-"[ERROR_NOTCL] Eșuat. Fuzionarea Excellon functionează doar cu obiecte de tip "
-"Excellon."
+"Eșuat. Fuzionarea Excellon functionează doar cu obiecte de tip Excellon."
-#: FlatCAMApp.py:3871
-msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects."
-msgstr ""
-"[ERROR_NOTCL] Eșuat. Fuzionarea Gerber functionează doar cu obiecte de tip "
-"Gerber ."
+#: FlatCAMApp.py:4370
+msgid "Failed. Gerber joining works only on Gerber objects."
+msgstr "Eșuat. Fuzionarea Gerber functionează doar cu obiecte de tip Gerber ."
-#: FlatCAMApp.py:3886 FlatCAMApp.py:3911
-msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again."
-msgstr ""
-"[ERROR_NOTCL] Eșuat. Selectează un obiect Geometrie și încearcă din nou."
+#: FlatCAMApp.py:4395 FlatCAMApp.py:4432
+msgid "Failed. Select a Geometry Object and try again."
+msgstr "Eșuat. Selectează un obiect Geometrie și încearcă din nou."
-#: FlatCAMApp.py:3890 FlatCAMApp.py:3915
+#: FlatCAMApp.py:4400
+msgid "Expected a FlatCAMGeometry, got"
+msgstr "Se astepta o Geometrie FlatCAM, s-a primit"
+
+#: FlatCAMApp.py:4414
+msgid "A Geometry object was converted to MultiGeo type."
+msgstr "Un obiect Geometrie a fost convertit la tipul MultiGeo."
+
+#: FlatCAMApp.py:4437
#, python-format
-msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
-msgstr "[ERROR_NOTCL] Se astepta o Geometrie FlatCAM, s-a primit %s"
+msgid "Expected a FlatCAMGeometry, got %s"
+msgstr "Se astepta o Geometrie FlatCAM, s-a primit %s"
-#: FlatCAMApp.py:3903
-msgid "[success] A Geometry object was converted to MultiGeo type."
-msgstr "[success] Un obiect Geometrie a fost convertit la tipul MultiGeo."
+#: FlatCAMApp.py:4452
+msgid "A Geometry object was converted to SingleGeo type."
+msgstr "Un obiect Geometrie a fost convertit la tipul SingleGeo ."
-#: FlatCAMApp.py:3929
-msgid "[success] A Geometry object was converted to SingleGeo type."
-msgstr "[success] Un obiect Geometrie a fost convertit la tipul SingleGeo ."
-
-#: FlatCAMApp.py:4170
+#: FlatCAMApp.py:4713
msgid "Toggle Units"
msgstr "Comută Unitati"
-#: FlatCAMApp.py:4172
+#: FlatCAMApp.py:4715
msgid "Change project units ..."
msgstr "Schimbă unitătile de măsură ..."
-#: FlatCAMApp.py:4173
+#: FlatCAMApp.py:4716
msgid ""
"Changing the units of the project causes all geometrical properties of all "
"objects to be scaled accordingly.\n"
@@ -343,56 +365,52 @@ msgstr ""
"geometrice ale obiectelor sa fie scalate corespunzător.\n"
"Continuati?"
-#: FlatCAMApp.py:4175 FlatCAMApp.py:5057 FlatCAMApp.py:5162 FlatCAMApp.py:6780
-#: FlatCAMApp.py:6793 FlatCAMApp.py:7033 FlatCAMApp.py:7043
+#: FlatCAMApp.py:4718 FlatCAMApp.py:5614 FlatCAMApp.py:5719 FlatCAMApp.py:7419
+#: FlatCAMApp.py:7433 FlatCAMApp.py:7688 FlatCAMApp.py:7699
msgid "Ok"
msgstr "Ok"
-#: FlatCAMApp.py:4223
+#: FlatCAMApp.py:4767
#, python-format
-msgid "[success] Converted units to %s"
-msgstr "[success] Conversie unitati la %s"
+msgid "Converted units to %s"
+msgstr "Unitătile au fost convertite in %s"
-#: FlatCAMApp.py:4234
-msgid "[WARNING_NOTCL] Units conversion cancelled."
-msgstr "[WARNING_NOTCL] Conversia unitatilor este anulată."
+#: FlatCAMApp.py:4779
+msgid " Units conversion cancelled."
+msgstr " Conversia unitătilor este anulată."
-#: FlatCAMApp.py:4923
+#: FlatCAMApp.py:5477
msgid "Open file"
-msgstr "Deschide fişierul ..."
+msgstr "Deschide fişierul"
-#: FlatCAMApp.py:4954 FlatCAMApp.py:4959
+#: FlatCAMApp.py:5508 FlatCAMApp.py:5513
msgid "Export G-Code ..."
msgstr "Exporta G-Code ..."
-#: FlatCAMApp.py:4962
-msgid "[WARNING_NOTCL] Export Code cancelled."
-msgstr "[WARNING_NOTCL Exportul GCode este anulat."
+#: FlatCAMApp.py:5517
+msgid "Export Code cancelled."
+msgstr "Exportul Codului este anulat."
-#: FlatCAMApp.py:4971
-msgid "[WARNING] No such file or directory"
-msgstr "[WARNING] Nu exista un aşa fişier sau director"
+#: FlatCAMApp.py:5527 FlatCAMObj.py:6163 flatcamTools/ToolSolderPaste.py:1424
+msgid "No such file or directory"
+msgstr "Nu exista un aşa fişier sau director"
-#: FlatCAMApp.py:4982
+#: FlatCAMApp.py:5539
#, python-format
msgid "Saved to: %s"
msgstr "Salvat in: %s"
-#: FlatCAMApp.py:5045 FlatCAMApp.py:5078 FlatCAMApp.py:5089 FlatCAMApp.py:5100
-#: flatcamTools/ToolNonCopperClear.py:693 flatcamTools/ToolSolderPaste.py:772
-msgid ""
-"[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
-"format."
+#: FlatCAMApp.py:5602 FlatCAMApp.py:5635 FlatCAMApp.py:5646 FlatCAMApp.py:5657
+#: flatcamTools/ToolNonCopperClear.py:915 flatcamTools/ToolSolderPaste.py:774
+msgid "Please enter a tool diameter with non-zero value, in Float format."
msgstr ""
-"[WARNING_NOTCL] Introdu un diametru al uneltei valid: valoare ne-nula in "
-"format Real."
+"Introduceti un diametru al uneltei valid: valoare ne-nula in format Real."
-#: FlatCAMApp.py:5050 FlatCAMApp.py:5083 FlatCAMApp.py:5094 FlatCAMApp.py:5105
-#: flatcamGUI/FlatCAMGUI.py:3138
-msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
-msgstr "[WARNING_NOTCL] Adăugarea unei unelte anulată ..."
+#: FlatCAMApp.py:5607 FlatCAMApp.py:5640 FlatCAMApp.py:5662
+msgid "Adding Tool cancelled"
+msgstr "Adăugarea unei unelte anulată"
-#: FlatCAMApp.py:5053
+#: FlatCAMApp.py:5610
msgid ""
"Adding Tool works only when Advanced is checked.\n"
"Go to Preferences -> General - Show Advanced Options."
@@ -400,11 +418,15 @@ msgstr ""
"Adăugarea de unelte noi functionează doar in modul Avansat.\n"
"Pentru aceasta mergi in Preferințe -> General - Activează Modul Avansat."
-#: FlatCAMApp.py:5157
+#: FlatCAMApp.py:5651 flatcamGUI/FlatCAMGUI.py:3168
+msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
+msgstr "[WARNING_NOTCL] Adăugarea unei unelte anulată ..."
+
+#: FlatCAMApp.py:5714
msgid "Delete objects"
msgstr "Șterge obiectele"
-#: FlatCAMApp.py:5160
+#: FlatCAMApp.py:5717
msgid ""
"Are you sure you want to permanently delete\n"
"the selected objects?"
@@ -412,67 +434,82 @@ msgstr ""
"Sigur doriți să ștergeți definitiv\n"
"obiectele selectate?"
-#: FlatCAMApp.py:5189
-msgid "Object(s) deleted ..."
-msgstr "Obiect(ele) șters(e)."
+#: FlatCAMApp.py:5747
+msgid "Object(s) deleted"
+msgstr "Obiect(ele) șters(e)"
-#: FlatCAMApp.py:5193
+#: FlatCAMApp.py:5751
msgid "Failed. No object(s) selected..."
msgstr "Eșuat. Nici-un obiect nu este selectat."
-#: FlatCAMApp.py:5195
+#: FlatCAMApp.py:5753
msgid "Save the work in Editor and try again ..."
msgstr "Salvează continutul din Editor și încearcă din nou."
-#: FlatCAMApp.py:5225
+#: FlatCAMApp.py:5771
+msgid "Object deleted"
+msgstr "Obiectul este șters"
+
+#: FlatCAMApp.py:5795
msgid "Click to set the origin ..."
msgstr "Click pentru a seta originea..."
-#: FlatCAMApp.py:5237
+#: FlatCAMApp.py:5819
+msgid "Setting Origin..."
+msgstr "Setează Originea..."
+
+#: FlatCAMApp.py:5831
+msgid "Origin set"
+msgstr "Originea a fost setată"
+
+#: FlatCAMApp.py:5846
msgid "Jump to ..."
msgstr "Sari la ..."
-#: FlatCAMApp.py:5238
+#: FlatCAMApp.py:5847
msgid "Enter the coordinates in format X,Y:"
msgstr "Introduceți coordonatele in format X,Y:"
-#: FlatCAMApp.py:5245
+#: FlatCAMApp.py:5854
msgid "Wrong coordinates. Enter coordinates in format: X,Y"
-msgstr "Coordonate gresite. Introduceți coordonatele in format X,Y."
+msgstr "Coordonate gresite. Introduceți coordonatele in format X,Y"
-#: FlatCAMApp.py:5263 flatcamEditors/FlatCAMExcEditor.py:3422
-#: flatcamEditors/FlatCAMExcEditor.py:3429
-#: flatcamEditors/FlatCAMGeoEditor.py:3747
-#: flatcamEditors/FlatCAMGeoEditor.py:3761
-#: flatcamEditors/FlatCAMGrbEditor.py:1057
-#: flatcamEditors/FlatCAMGrbEditor.py:1160
-#: flatcamEditors/FlatCAMGrbEditor.py:1433
-#: flatcamEditors/FlatCAMGrbEditor.py:1690
-#: flatcamEditors/FlatCAMGrbEditor.py:4153
-#: flatcamEditors/FlatCAMGrbEditor.py:4167 flatcamGUI/FlatCAMGUI.py:2530
-#: flatcamGUI/FlatCAMGUI.py:2542
-msgid "[success] Done."
-msgstr "[success] Executat."
+#: FlatCAMApp.py:5873 flatcamEditors/FlatCAMExcEditor.py:3445
+#: flatcamEditors/FlatCAMExcEditor.py:3453
+#: flatcamEditors/FlatCAMGeoEditor.py:3791
+#: flatcamEditors/FlatCAMGeoEditor.py:3806
+#: flatcamEditors/FlatCAMGrbEditor.py:1067
+#: flatcamEditors/FlatCAMGrbEditor.py:1171
+#: flatcamEditors/FlatCAMGrbEditor.py:1445
+#: flatcamEditors/FlatCAMGrbEditor.py:1703
+#: flatcamEditors/FlatCAMGrbEditor.py:4182
+#: flatcamEditors/FlatCAMGrbEditor.py:4197
+msgid "Done."
+msgstr "Executat."
-#: FlatCAMApp.py:5395 FlatCAMApp.py:5462
-msgid "[WARNING_NOTCL] No object is selected. Select an object and try again."
+#: FlatCAMApp.py:6007 FlatCAMApp.py:6075
+msgid "No object is selected. Select an object and try again."
msgstr ""
-"[WARNING_NOTCL] Nici-un obiect nu este selectat. Selectează un obiect și "
-"incearcă din nou."
+"Nici-un obiect nu este selectat. Selectează un obiect și incearcă din nou."
-#: FlatCAMApp.py:5503
-msgid "[success] Origin set ..."
-msgstr "[success] Originea a fost setată ..."
+#: FlatCAMApp.py:6095
+msgid ""
+"Aborting. The current task will be gracefully closed as soon as possible..."
+msgstr "Intrerup. Taskul curent va fi închis cât mai curând posibil ..."
-#: FlatCAMApp.py:5522 flatcamGUI/GUIElements.py:1439
+#: FlatCAMApp.py:6101
+msgid "The current task was gracefully closed on user request..."
+msgstr "Taskul curent a fost închis la cererea utilizatorului ..."
+
+#: FlatCAMApp.py:6118 flatcamGUI/GUIElements.py:1443
msgid "Preferences"
msgstr "Preferințe"
-#: FlatCAMApp.py:5588
-msgid "[WARNING_NOTCL] Preferences edited but not saved."
-msgstr "[WARNING_NOTCL] Preferințele au fost editate dar nu au fost salvate."
+#: FlatCAMApp.py:6185
+msgid "Preferences edited but not saved."
+msgstr "Preferințele au fost editate dar nu au fost salvate."
-#: FlatCAMApp.py:5622
+#: FlatCAMApp.py:6219
msgid ""
"One or more values are changed.\n"
"Do you want to save the Preferences?"
@@ -480,166 +517,152 @@ msgstr ""
"Una sau mai multe valori au fost schimbate.\n"
"Dorești să salvezi Preferințele?"
-#: FlatCAMApp.py:5624 flatcamGUI/FlatCAMGUI.py:198 flatcamGUI/FlatCAMGUI.py:979
+#: FlatCAMApp.py:6221 flatcamGUI/FlatCAMGUI.py:198 flatcamGUI/FlatCAMGUI.py:989
msgid "Save Preferences"
msgstr "Salvează Pref"
-#: FlatCAMApp.py:5636
-msgid "[success] Preferences saved."
-msgstr "[success] Preferințele au fost salvate."
+#: FlatCAMApp.py:6250
+msgid "No object selected to Flip on Y axis."
+msgstr "Nu sete nici-un obiect selectat pentru oglindire pe axa Y."
-#: FlatCAMApp.py:5651
-msgid "[WARNING_NOTCL] No object selected to Flip on Y axis."
-msgstr ""
-"[WARNING_NOTCL] Nu sete nici-un obiect selectat pentru oglindire pe axa Y."
+#: FlatCAMApp.py:6276
+msgid "Flip on Y axis done."
+msgstr "Oglindire pe axa Y executată."
-#: FlatCAMApp.py:5676
-msgid "[success] Flip on Y axis done."
-msgstr "[success] Oglindire pe axa Y executată."
+#: FlatCAMApp.py:6279 FlatCAMApp.py:6322
+#: flatcamEditors/FlatCAMGrbEditor.py:5624
+msgid "Flip action was not executed."
+msgstr "Acțiunea de Oglindire nu a fost executată."
-#: FlatCAMApp.py:5678 FlatCAMApp.py:5718
-#: flatcamEditors/FlatCAMGeoEditor.py:1357
-#: flatcamEditors/FlatCAMGrbEditor.py:5581 flatcamTools/ToolTransform.py:753
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
-msgstr "[ERROR_NOTCL] Datorita %s, oglindirea a eșuat."
+#: FlatCAMApp.py:6293
+msgid "No object selected to Flip on X axis."
+msgstr "Nu este nici-un obiect selectat pentru oglindire pe axa X."
-#: FlatCAMApp.py:5691
-msgid "[WARNING_NOTCL] No object selected to Flip on X axis."
-msgstr ""
-"[WARNING_NOTCL] Nu sete nici-un obiect selectat pentru oglindire pe axa X."
+#: FlatCAMApp.py:6319
+msgid "Flip on X axis done."
+msgstr "Oglindirea pe axa X executată."
-#: FlatCAMApp.py:5716
-msgid "[success] Flip on X axis done."
-msgstr "[success] Oglindirea pe axa X executată."
+#: FlatCAMApp.py:6336
+msgid "No object selected to Rotate."
+msgstr "Nici-un obiect selectat pentru Rotaţie."
-#: FlatCAMApp.py:5731
-msgid "[WARNING_NOTCL] No object selected to Rotate."
-msgstr "[WARNING_NOTCL] Nici-un obiect selectat pentru Rotaţie."
-
-#: FlatCAMApp.py:5734 FlatCAMApp.py:5779 FlatCAMApp.py:5810
+#: FlatCAMApp.py:6339 FlatCAMApp.py:6387 FlatCAMApp.py:6420
msgid "Transform"
msgstr "Transformare"
-#: FlatCAMApp.py:5734 FlatCAMApp.py:5779 FlatCAMApp.py:5810
+#: FlatCAMApp.py:6339 FlatCAMApp.py:6387 FlatCAMApp.py:6420
msgid "Enter the Angle value:"
msgstr "Introduceți valoaea Unghiului:"
-#: FlatCAMApp.py:5764
-msgid "[success] Rotation done."
-msgstr "[success] Rotaţie executată."
+#: FlatCAMApp.py:6370
+msgid "Rotation done."
+msgstr "Rotaţie executată."
-#: FlatCAMApp.py:5766 flatcamEditors/FlatCAMGeoEditor.py:1300
-#: flatcamEditors/FlatCAMGrbEditor.py:5510 flatcamTools/ToolTransform.py:682
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
-msgstr "[ERROR_NOTCL] Datorita %s, Rotatia a eșuat."
+#: FlatCAMApp.py:6373
+msgid "Rotation movement was not executed."
+msgstr "Mișcarea de rotație nu a fost executată."
-#: FlatCAMApp.py:5777
-msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
-msgstr "[WARNING_NOTCL] Nici-un obiect selectat pentru Deformare pe axa X."
+#: FlatCAMApp.py:6385
+msgid "No object selected to Skew/Shear on X axis."
+msgstr "Nici-un obiect nu este selectat pentru Deformare pe axa X."
-#: FlatCAMApp.py:5798
-msgid "[success] Skew on X axis done."
-msgstr "[success] Deformare pe axa X executată."
+#: FlatCAMApp.py:6407
+msgid "Skew on X axis done."
+msgstr "Deformare pe axa X terminată."
-#: FlatCAMApp.py:5808
-msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
-msgstr "[WARNING_NOTCL] Nici-un obiect selectat pentru Deformare pe axa Y."
+#: FlatCAMApp.py:6418
+msgid "No object selected to Skew/Shear on Y axis."
+msgstr "Nici-un obiect nu este selectat pentru Deformare pe axa Y."
-#: FlatCAMApp.py:5829
-msgid "[success] Skew on Y axis done."
-msgstr "[success] Deformare pe axa Y executată."
+#: FlatCAMApp.py:6440
+msgid "Skew on Y axis done."
+msgstr "Deformare pe axa Y terminată."
-#: FlatCAMApp.py:5880
+#: FlatCAMApp.py:6491
msgid "Grid On/Off"
msgstr "Grid On/Off"
-#: FlatCAMApp.py:5893 flatcamEditors/FlatCAMGeoEditor.py:939
-#: flatcamEditors/FlatCAMGrbEditor.py:2457
-#: flatcamEditors/FlatCAMGrbEditor.py:5099 flatcamGUI/ObjectUI.py:990
+#: FlatCAMApp.py:6504 flatcamEditors/FlatCAMGeoEditor.py:940
+#: flatcamEditors/FlatCAMGrbEditor.py:2477
+#: flatcamEditors/FlatCAMGrbEditor.py:5134 flatcamGUI/ObjectUI.py:1053
#: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:207
-#: flatcamTools/ToolNonCopperClear.py:170 flatcamTools/ToolPaint.py:176
+#: flatcamTools/ToolNonCopperClear.py:237 flatcamTools/ToolPaint.py:176
#: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:483
#: flatcamTools/ToolTransform.py:338
msgid "Add"
msgstr "Adaugă"
-#: FlatCAMApp.py:5894 FlatCAMObj.py:3398
-#: flatcamEditors/FlatCAMGrbEditor.py:2462 flatcamGUI/FlatCAMGUI.py:545
-#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:1701
-#: flatcamGUI/FlatCAMGUI.py:2069 flatcamGUI/ObjectUI.py:1006
-#: flatcamTools/ToolNonCopperClear.py:182 flatcamTools/ToolPaint.py:188
+#: FlatCAMApp.py:6505 FlatCAMObj.py:3566
+#: flatcamEditors/FlatCAMGrbEditor.py:2482 flatcamGUI/FlatCAMGUI.py:545
+#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:1719
+#: flatcamGUI/FlatCAMGUI.py:2094 flatcamGUI/ObjectUI.py:1069
+#: flatcamTools/ToolNonCopperClear.py:249 flatcamTools/ToolPaint.py:188
#: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:485
msgid "Delete"
msgstr "Șterge"
-#: FlatCAMApp.py:5907
+#: FlatCAMApp.py:6518
msgid "New Grid ..."
msgstr "Grid nou ..."
-#: FlatCAMApp.py:5908
+#: FlatCAMApp.py:6519
msgid "Enter a Grid Value:"
msgstr "Introduceti of valoare pt Grid:"
-#: FlatCAMApp.py:5916 FlatCAMApp.py:5943
-msgid ""
-"[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
-"format."
-msgstr ""
-"[WARNING_NOTCL] Introduceți o valoare pentru Grila ne-nula și in format Real."
+#: FlatCAMApp.py:6527 FlatCAMApp.py:6554
+msgid "Please enter a grid value with non-zero value, in Float format."
+msgstr "Introduceți o valoare pentru Grila ne-nula și in format Real."
-#: FlatCAMApp.py:5922
-msgid "[success] New Grid added ..."
-msgstr "[success] O noua valoare pt Grila a fost adăugată..."
+#: FlatCAMApp.py:6533
+msgid "New Grid added"
+msgstr "Grid nou"
-#: FlatCAMApp.py:5925
-msgid "[WARNING_NOTCL] Grid already exists ..."
-msgstr "[WARNING_NOTCL] Grila există deja."
+#: FlatCAMApp.py:6536
+msgid "Grid already exists"
+msgstr "Grila există deja"
-#: FlatCAMApp.py:5928
-msgid "[WARNING_NOTCL] Adding New Grid cancelled ..."
-msgstr "[WARNING_NOTCL] Adăugarea unei valori de Grilă a fost anulată ..."
+#: FlatCAMApp.py:6539
+msgid "Adding New Grid cancelled"
+msgstr "Adăugarea unei valori de Grilă a fost anulată"
-#: FlatCAMApp.py:5950
-msgid "[ERROR_NOTCL] Grid Value does not exist ..."
-msgstr "[ERROR_NOTCL] Valoarea Grilei nu există ..."
+#: FlatCAMApp.py:6561
+msgid " Grid Value does not exist"
+msgstr " Valoarea Grilei nu există"
-#: FlatCAMApp.py:5953
-msgid "[success] Grid Value deleted ..."
-msgstr "[success] Valoarea Grila a fost stearsă."
+#: FlatCAMApp.py:6564
+msgid "Grid Value deleted"
+msgstr "Valoarea Grila a fost stearsă"
-#: FlatCAMApp.py:5956
-msgid "[WARNING_NOTCL] Delete Grid value cancelled ..."
-msgstr "[WARNING_NOTCL] Ștergerea unei valori de Grilă a fost anulată ..."
+#: FlatCAMApp.py:6567
+msgid "Delete Grid value cancelled"
+msgstr "Ștergerea unei valori de Grilă a fost anulată"
-#: FlatCAMApp.py:5962
+#: FlatCAMApp.py:6573
msgid "Key Shortcut List"
msgstr "Lista de shortcut-uri"
-#: FlatCAMApp.py:5995
-msgid "[WARNING_NOTCL] No object selected to copy it's name"
-msgstr ""
-"[WARNING_NOTCL] Nici-un obiect nu este selectat pentru i se copia valoarea"
+#: FlatCAMApp.py:6607
+msgid " No object selected to copy it's name"
+msgstr " Nici-un obiect nu este selectat pentru i se copia valoarea"
-#: FlatCAMApp.py:5999
+#: FlatCAMApp.py:6611
msgid "Name copied on clipboard ..."
msgstr "Numele a fost copiat pe Clipboard ..."
-#: FlatCAMApp.py:6041 flatcamEditors/FlatCAMGrbEditor.py:4094
-msgid "[success] Coordinates copied to clipboard."
-msgstr "[success] Coordonatele au fost copiate in clipboard."
+#: FlatCAMApp.py:6654 flatcamEditors/FlatCAMGrbEditor.py:4122
+msgid "Coordinates copied to clipboard."
+msgstr "Coordonatele au fost copiate in clipboard."
-#: FlatCAMApp.py:6290 FlatCAMApp.py:6293 FlatCAMApp.py:6296 FlatCAMApp.py:6299
-#: FlatCAMApp.py:6314 FlatCAMApp.py:6317 FlatCAMApp.py:6320 FlatCAMApp.py:6323
-#: FlatCAMApp.py:6363 FlatCAMApp.py:6366 FlatCAMApp.py:6369 FlatCAMApp.py:6372
+#: FlatCAMApp.py:6907 FlatCAMApp.py:6911 FlatCAMApp.py:6915 FlatCAMApp.py:6919
+#: FlatCAMApp.py:6935 FlatCAMApp.py:6939 FlatCAMApp.py:6943 FlatCAMApp.py:6947
+#: FlatCAMApp.py:6987 FlatCAMApp.py:6990 FlatCAMApp.py:6993 FlatCAMApp.py:6996
#: ObjectCollection.py:725 ObjectCollection.py:728 ObjectCollection.py:731
#: ObjectCollection.py:734
#, python-brace-format
msgid "[selected]{name} selected"
msgstr "[selected]{name} selectat"
-#: FlatCAMApp.py:6499
+#: FlatCAMApp.py:7123
msgid ""
"There are files/objects opened in FlatCAM.\n"
"Creating a New project will delete them.\n"
@@ -649,229 +672,204 @@ msgstr ""
"Crearea unui nou Proiect le va șterge..\n"
"Doriti să Salvati proiectul curentt?"
-#: FlatCAMApp.py:6520
-msgid "[success] New Project created..."
-msgstr "[success] Un nou Proiect a fost creat..."
+#: FlatCAMApp.py:7145
+msgid "New Project created"
+msgstr "Un nou Proiect a fost creat"
-#: FlatCAMApp.py:6639 FlatCAMApp.py:6642 flatcamGUI/FlatCAMGUI.py:626
-#: flatcamGUI/FlatCAMGUI.py:1945
+#: FlatCAMApp.py:7265 FlatCAMApp.py:7269 flatcamGUI/FlatCAMGUI.py:626
+#: flatcamGUI/FlatCAMGUI.py:1970
msgid "Open Gerber"
msgstr "Încarcă Gerber"
-#: FlatCAMApp.py:6647
-msgid "[WARNING_NOTCL] Open Gerber cancelled."
-msgstr "[WARNING_NOTCL] Incărcarea unui fişier Gerber este anulată."
+#: FlatCAMApp.py:7277
+msgid "Open Gerber cancelled."
+msgstr "Incărcarea unui fişier Gerber este anulată."
-#: FlatCAMApp.py:6668 FlatCAMApp.py:6671 flatcamGUI/FlatCAMGUI.py:627
-#: flatcamGUI/FlatCAMGUI.py:1946
+#: FlatCAMApp.py:7297 FlatCAMApp.py:7301 flatcamGUI/FlatCAMGUI.py:627
+#: flatcamGUI/FlatCAMGUI.py:1971
msgid "Open Excellon"
msgstr "Încarcă Excellon"
-#: FlatCAMApp.py:6676
-msgid "[WARNING_NOTCL] Open Excellon cancelled."
-msgstr "[WARNING_NOTCL] Incărcarea unui fişier Excellon este anulată."
+#: FlatCAMApp.py:7308
+msgid " Open Excellon cancelled."
+msgstr " Incărcarea unui fişier Excellon este anulată."
-#: FlatCAMApp.py:6698 FlatCAMApp.py:6701
+#: FlatCAMApp.py:7331 FlatCAMApp.py:7335
msgid "Open G-Code"
msgstr "Încarcă G-Code"
-#: FlatCAMApp.py:6706
-msgid "[WARNING_NOTCL] Open G-Code cancelled."
-msgstr "[WARNING_NOTCL] Incărcarea unui fişier G-Code este anulată."
+#: FlatCAMApp.py:7343
+msgid "Open G-Code cancelled."
+msgstr "Incărcarea unui fişier G-Code este anulată."
-#: FlatCAMApp.py:6724 FlatCAMApp.py:6727
+#: FlatCAMApp.py:7360 FlatCAMApp.py:7363
msgid "Open Project"
msgstr "Încarcă Project"
-#: FlatCAMApp.py:6735
-msgid "[WARNING_NOTCL] Open Project cancelled."
-msgstr "[WARNING_NOTCL] Incărcarea unui Proiect a fost anulată."
+#: FlatCAMApp.py:7372
+msgid "Open Project cancelled."
+msgstr "Incărcarea unui fişier Proiect FlatCAM este anulată."
-#: FlatCAMApp.py:6754 FlatCAMApp.py:6757
+#: FlatCAMApp.py:7391 FlatCAMApp.py:7394
msgid "Open Configuration File"
msgstr "Încarcă un fişier de Configurare"
-#: FlatCAMApp.py:6761
-msgid "[WARNING_NOTCL] Open Config cancelled."
-msgstr "[WARNING_NOTCL] Incărcarea unui fişier de Configurare este anulată."
+#: FlatCAMApp.py:7399
+msgid "Open Config cancelled."
+msgstr "Incărcarea unui fişier configurare FlatCAM este anulată."
-#: FlatCAMApp.py:6776 FlatCAMApp.py:7029 FlatCAMApp.py:9352 FlatCAMApp.py:9372
-#: FlatCAMApp.py:9393 FlatCAMApp.py:9415
-msgid "[WARNING_NOTCL] No object selected."
-msgstr "[WARNING_NOTCL] Nici-un obiect selectat."
+#: FlatCAMApp.py:7415 FlatCAMApp.py:7684 FlatCAMApp.py:10115
+#: FlatCAMApp.py:10136 FlatCAMApp.py:10158 FlatCAMApp.py:10181
+msgid "No object selected."
+msgstr "Nici-un obiect nu este selectat."
-#: FlatCAMApp.py:6777 FlatCAMApp.py:7030
+#: FlatCAMApp.py:7416 FlatCAMApp.py:7685
msgid "Please Select a Geometry object to export"
msgstr "Selectează un obiect Geometrie pentru export"
-#: FlatCAMApp.py:6790
-msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
-msgstr ""
-"[ERROR_NOTCL] Doar obiectele Geometrie, Gerber și CNCJob pot fi folosite."
+#: FlatCAMApp.py:7430
+msgid "Only Geometry, Gerber and CNCJob objects can be used."
+msgstr "Doar obiectele Geometrie, Gerber și CNCJob pot fi folosite."
-#: FlatCAMApp.py:6803 FlatCAMApp.py:6807
+#: FlatCAMApp.py:7443 FlatCAMApp.py:7447
msgid "Export SVG"
msgstr "Exporta SVG"
-#: FlatCAMApp.py:6812
-msgid "[WARNING_NOTCL] Export SVG cancelled."
-msgstr "[WARNING_NOTCL] Exportul SVG este anulat."
+#: FlatCAMApp.py:7453
+msgid " Export SVG cancelled."
+msgstr " Exportul fisierului SVG a fost anulat."
-#: FlatCAMApp.py:6831
-msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
+#: FlatCAMApp.py:7473
+msgid "Data must be a 3D array with last dimension 3 or 4"
msgstr ""
-"[[WARNING_NOTCL]] Datele trebuie să fie organizate intr-o arie 3D cu ultima "
-"dimensiune cu valoarea 3 sau 4."
+"Datele trebuie să fie organizate intr-o arie 3D cu ultima dimensiune cu "
+"valoarea 3 sau 4"
-#: FlatCAMApp.py:6837 FlatCAMApp.py:6841
+#: FlatCAMApp.py:7479 FlatCAMApp.py:7483
msgid "Export PNG Image"
msgstr "Exporta imagine PNG"
-#: FlatCAMApp.py:6846
+#: FlatCAMApp.py:7488
msgid "Export PNG cancelled."
msgstr "Exportul imagine PNG este anulat."
-#: FlatCAMApp.py:6865
-msgid ""
-"[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
-msgstr ""
-"[WARNING_NOTCL] Nici-un obiect selectat. Selectează un obiect Gerber pentru "
-"export."
+#: FlatCAMApp.py:7508
+msgid "No object selected. Please select an Gerber object to export."
+msgstr "Nici-un obiect selectat. Selectează un obiect Gerber pentru export."
-#: FlatCAMApp.py:6870 FlatCAMApp.py:6993
-msgid ""
-"[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
-msgstr ""
-"[ERROR_NOTCL] Eșuat. Doar obiectele tip Gerber pot fi salvate ca fişiere "
-"Gerber..."
+#: FlatCAMApp.py:7514 FlatCAMApp.py:7646
+msgid "Failed. Only Gerber objects can be saved as Gerber files..."
+msgstr "Eșuat. Doar obiectele tip Gerber pot fi salvate ca fişiere Gerber..."
-#: FlatCAMApp.py:6882
+#: FlatCAMApp.py:7526
msgid "Save Gerber source file"
msgstr "Salvează codul sursa Gerber ca fişier"
-#: FlatCAMApp.py:6887
-msgid "[WARNING_NOTCL] Save Gerber source file cancelled."
-msgstr "[WARNING_NOTCL] Salvarea codului sursa Gerber este anulată."
+#: FlatCAMApp.py:7532
+msgid "Save Gerber source file cancelled."
+msgstr "Salvarea codului sursa Gerber este anulată."
-#: FlatCAMApp.py:6906
-msgid ""
-"[WARNING_NOTCL] No object selected. Please select an Excellon object to "
-"export."
+#: FlatCAMApp.py:7552
+msgid "No object selected. Please select an Excellon object to export."
+msgstr "Nici-un obiect selectat. Selectează un obiect Excellon pentru export."
+
+#: FlatCAMApp.py:7558 FlatCAMApp.py:7602
+msgid "Failed. Only Excellon objects can be saved as Excellon files..."
msgstr ""
-"[WARNING_NOTCL] Nici-un obiect selectat. Selectează un obiect Excellon "
-"pentru export."
+"Eșuat. Doar obiectele tip Excellon pot fi salvate ca fişiere Excellon ..."
-#: FlatCAMApp.py:6911 FlatCAMApp.py:6952
-msgid ""
-"[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
-msgstr ""
-"[ERROR_NOTCL] Eșuat. Doar obiectele tip Excellon pot fi salvate ca fişiere "
-"Excellon ..."
-
-#: FlatCAMApp.py:6919 FlatCAMApp.py:6923
+#: FlatCAMApp.py:7566 FlatCAMApp.py:7570
msgid "Save Excellon source file"
msgstr "Salvează codul sursa Excellon ca fişier"
-#: FlatCAMApp.py:6928
-msgid "[WARNING_NOTCL] Saving Excellon source file cancelled."
-msgstr "[WARNING_NOTCL] Salvarea codului sursa Excellon este anulată."
+#: FlatCAMApp.py:7576
+msgid "Saving Excellon source file cancelled."
+msgstr "Salvarea codului sursa Excellon este anulată."
-#: FlatCAMApp.py:6947
-msgid ""
-"[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
-"export."
-msgstr ""
-"[WARNING_NOTCL] Nici-un obiect selectat. Selectează un obiect Excellon "
-"pentru export."
+#: FlatCAMApp.py:7596
+msgid "No object selected. Please Select an Excellon object to export."
+msgstr "Nici-un obiect selectat. Selectează un obiect Excellon pentru export."
-#: FlatCAMApp.py:6960 FlatCAMApp.py:6964
+#: FlatCAMApp.py:7610 FlatCAMApp.py:7614
msgid "Export Excellon"
-msgstr "Exporta Excellon"
+msgstr "Exportă Excellon"
-#: FlatCAMApp.py:6969
-msgid "[WARNING_NOTCL] Export Excellon cancelled."
-msgstr "[WARNING_NOTCL] Exportul Excellon anulat."
+#: FlatCAMApp.py:7620
+msgid "Export Excellon cancelled."
+msgstr "Exportul fișierului Excellon a fost anulat."
-#: FlatCAMApp.py:6988
-msgid ""
-"[WARNING_NOTCL] No object selected. Please Select an Gerber object to export."
-msgstr ""
-"[WARNING_NOTCL] Nici-un obiect selectat. Selectează un obiect Gerber pentru "
-"export."
+#: FlatCAMApp.py:7640
+msgid "No object selected. Please Select an Gerber object to export."
+msgstr "Nici-un obiect selectat. Selectează un obiect Gerber pentru export."
-#: FlatCAMApp.py:7001 FlatCAMApp.py:7005
+#: FlatCAMApp.py:7654 FlatCAMApp.py:7658
msgid "Export Gerber"
-msgstr "Exporta Gerber"
+msgstr "Exportă Gerber"
-#: FlatCAMApp.py:7010
-msgid "[WARNING_NOTCL] Export Gerber cancelled."
-msgstr "[WARNING_NOTCL] Exportul Gerber este anulat."
+#: FlatCAMApp.py:7664
+msgid "Export Gerber cancelled."
+msgstr "Exportul fișierului Gerber a fost anulat."
-#: FlatCAMApp.py:7040
-msgid "[ERROR_NOTCL] Only Geometry objects can be used."
-msgstr "[ERROR_NOTCL] Doar obiecte tip Geometrie pot fi folosite."
+#: FlatCAMApp.py:7696
+msgid "Only Geometry objects can be used."
+msgstr "Doar obiecte tip Geometrie pot fi folosite."
-#: FlatCAMApp.py:7054 FlatCAMApp.py:7058
+#: FlatCAMApp.py:7710 FlatCAMApp.py:7714
msgid "Export DXF"
-msgstr "Exporta DXF"
+msgstr "Exportă DXF"
-#: FlatCAMApp.py:7064
-msgid "[WARNING_NOTCL] Export DXF cancelled."
-msgstr "[WARNING_NOTCL] Exportul DXF anulat."
+#: FlatCAMApp.py:7721
+msgid "Export DXF cancelled."
+msgstr "Exportul fișierului DXF a fost anulat."
-#: FlatCAMApp.py:7084 FlatCAMApp.py:7087
+#: FlatCAMApp.py:7741 FlatCAMApp.py:7744
msgid "Import SVG"
-msgstr "Importa SVG"
+msgstr "Importă SVG"
-#: FlatCAMApp.py:7096
-msgid "[WARNING_NOTCL] Open SVG cancelled."
-msgstr "[WARNING_NOTCL] Importul SVG anulat."
+#: FlatCAMApp.py:7754
+msgid "Open SVG cancelled."
+msgstr "Incărcarea fișierului SVG a fost anulată."
-#: FlatCAMApp.py:7115 FlatCAMApp.py:7119
+#: FlatCAMApp.py:7773 FlatCAMApp.py:7777
msgid "Import DXF"
msgstr "Importa DXF"
-#: FlatCAMApp.py:7128
-msgid "[WARNING_NOTCL] Open DXF cancelled."
-msgstr "[WARNING_NOTCL] Incărcarea fişier DXF anulată."
+#: FlatCAMApp.py:7787
+msgid "Open DXF cancelled."
+msgstr "Incărcarea fișierului DXF a fost anulată."
-#: FlatCAMApp.py:7146
+#: FlatCAMApp.py:7805
#, python-format
msgid "%s"
msgstr "%s"
-#: FlatCAMApp.py:7166
-msgid ""
-"[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
-msgstr ""
-"[WARNING_NOTCL] Selectati un obiect Gerber sau Excellon pentru a-i vedea "
-"codul sursa."
+#: FlatCAMApp.py:7826
+msgid "Select an Gerber or Excellon file to view it's source file."
+msgstr "Selectati un obiect Gerber sau Excellon pentru a-i vedea codul sursa."
-#: FlatCAMApp.py:7173
-msgid ""
-"[WARNING_NOTCL] There is no selected object for which to see it's source "
-"file code."
-msgstr "[WARNING_NOTCL] Nici-un obiect selectat pentru a-i vedea codul sursa."
+#: FlatCAMApp.py:7834
+msgid "There is no selected object for which to see it's source file code."
+msgstr "Nici-un obiect selectat pentru a-i vedea codul sursa."
-#: FlatCAMApp.py:7181
+#: FlatCAMApp.py:7842
msgid "Source Editor"
-msgstr "Editor Cod"
+msgstr "Editor Cod Sursă"
-#: FlatCAMApp.py:7191
-#, python-format
-msgid "[ERROR]App.on_view_source() -->%s"
-msgstr "[ERROR]App.on_view_source() -->%s"
+#: FlatCAMApp.py:7853
+#| msgid "[ERROR]App.on_view_source() -->%s"
+msgid "App.on_view_source() -->"
+msgstr "App.on_view_source() -->"
-#: FlatCAMApp.py:7203 FlatCAMApp.py:8404 FlatCAMObj.py:5669
-#: flatcamTools/ToolSolderPaste.py:1289
+#: FlatCAMApp.py:7865 FlatCAMApp.py:9110 FlatCAMObj.py:5946
+#: flatcamTools/ToolSolderPaste.py:1304
msgid "Code Editor"
msgstr "Editor Cod"
-#: FlatCAMApp.py:7215
+#: FlatCAMApp.py:7877
msgid "Script Editor"
-msgstr "Editor Script."
+msgstr "Editor Script"
-#: FlatCAMApp.py:7218
+#: FlatCAMApp.py:7880
msgid ""
"#\n"
"# CREATE A NEW FLATCAM TCL SCRIPT\n"
@@ -915,240 +913,211 @@ msgstr ""
"#\n"
"\n"
-#: FlatCAMApp.py:7241 FlatCAMApp.py:7244
+#: FlatCAMApp.py:7903 FlatCAMApp.py:7906
msgid "Open TCL script"
msgstr "Încarcă TCL script"
-#: FlatCAMApp.py:7252
-msgid "[WARNING_NOTCL] Open TCL script cancelled."
-msgstr "[WARNING_NOTCL] Incărcarea TCL script anulată."
+#: FlatCAMApp.py:7915
+msgid "Open TCL script cancelled."
+msgstr "Incărcarea fisierului TCL script anulată."
-#: FlatCAMApp.py:7264
-#, python-format
-msgid "[ERROR]App.on_fileopenscript() -->%s"
-msgstr "[ERROR]App.on_fileopenscript() -->%s"
+#: FlatCAMApp.py:7928
+#| msgid "[ERROR]App.on_fileopenscript() -->%s"
+msgid "App.on_fileopenscript() -->"
+msgstr "App.on_fileopenscript() -->"
-#: FlatCAMApp.py:7290 FlatCAMApp.py:7293
+#: FlatCAMApp.py:7954 FlatCAMApp.py:7957
msgid "Run TCL script"
msgstr "Ruleaza TCL script"
-#: FlatCAMApp.py:7301
-msgid "[WARNING_NOTCL] Run TCL script cancelled."
-msgstr "[WARNING_NOTCL] Rularea fisierului Script a fost anulată."
+#: FlatCAMApp.py:7966
+msgid "Run TCL script cancelled."
+msgstr "Executarea fisierului Script a fost anulată."
-#: FlatCAMApp.py:7356 FlatCAMApp.py:7360
+#: FlatCAMApp.py:8021 FlatCAMApp.py:8025
msgid "Save Project As ..."
msgstr "Salvează Proiectul ca ..."
-#: FlatCAMApp.py:7357
+#: FlatCAMApp.py:8022
#, python-brace-format
msgid "{l_save}/Project_{date}"
msgstr "{l_save}/Proiect_{date}"
-#: FlatCAMApp.py:7365
-msgid "[WARNING_NOTCL] Save Project cancelled."
-msgstr "[WARNING_NOTCL] Salvarea Proiect anulată."
+#: FlatCAMApp.py:8031
+msgid "Save Project cancelled."
+msgstr "Salvarea Proiect anulată."
-#: FlatCAMApp.py:7413
+#: FlatCAMApp.py:8079
msgid "Exporting SVG"
msgstr "SVG in curs de export"
-#: FlatCAMApp.py:7453 FlatCAMApp.py:7567 FlatCAMApp.py:7690
-#, python-format
-msgid "[success] SVG file exported to %s"
-msgstr "[success] Fişier SVG exportat in %s"
+#: FlatCAMApp.py:8121 FlatCAMApp.py:8238 FlatCAMApp.py:8364
+msgid "SVG file exported to"
+msgstr "Fişier SVG exportat in"
-#: FlatCAMApp.py:7487 FlatCAMApp.py:7615
-#, python-format
-msgid "[WARNING_NOTCL] No object Box. Using instead %s"
-msgstr ""
-"[WARNING_NOTCL] Nu este nici-un container Box pentru obiect. Se foloseşte %s"
+#: FlatCAMApp.py:8156 FlatCAMApp.py:8287 flatcamTools/ToolPanelize.py:381
+msgid "No object Box. Using instead"
+msgstr "Nu exista container. Se foloseşte in schimb"
-#: FlatCAMApp.py:7570 FlatCAMApp.py:7693
+#: FlatCAMApp.py:8241 FlatCAMApp.py:8367
msgid "Generating Film ... Please wait."
-msgstr "Filmul se generează ... Aşteaptă!"
+msgstr "Filmul se generează ... Aşteaptă."
-#: FlatCAMApp.py:7859
-#, python-format
-msgid "[success] Excellon file exported to %s"
-msgstr "[success] Fişierul Excellon exportat in %s"
+#: FlatCAMApp.py:8536
+msgid "Excellon file exported to"
+msgstr "Fişierul Excellon exportat in"
-#: FlatCAMApp.py:7866
+#: FlatCAMApp.py:8543
msgid "Exporting Excellon"
msgstr "Excellon in curs de export"
-#: FlatCAMApp.py:7871 FlatCAMApp.py:7878
-msgid "[ERROR_NOTCL] Could not export Excellon file."
-msgstr "[ERROR_NOTCL] Fişierul Excellon nu a fost posibil să fie exportat."
+#: FlatCAMApp.py:8549 FlatCAMApp.py:8557
+msgid "Could not export Excellon file."
+msgstr "Fişierul Excellon nu a fost posibil să fie exportat."
-#: FlatCAMApp.py:7984
-#, python-format
-msgid "[success] Gerber file exported to %s"
-msgstr "[success] Fişier Gerber exportat in %s"
+#: FlatCAMApp.py:8665
+msgid "Gerber file exported to"
+msgstr "Fişier Gerber exportat in"
-#: FlatCAMApp.py:7991
+#: FlatCAMApp.py:8672
msgid "Exporting Gerber"
msgstr "Gerber in curs de export"
-#: FlatCAMApp.py:7996 FlatCAMApp.py:8003
-msgid "[ERROR_NOTCL] Could not export Gerber file."
-msgstr "[ERROR_NOTCL] Fişierul Gerber nu a fost posibil să fie exportat."
+#: FlatCAMApp.py:8678 FlatCAMApp.py:8686
+msgid "Could not export Gerber file."
+msgstr "Fişierul Gerber nu a fost posibil să fie exportat."
-#: FlatCAMApp.py:8045
-#, python-format
-msgid "[success] DXF file exported to %s"
-msgstr "[success] Fişierul DXF exportat in %s"
+#: FlatCAMApp.py:8729
+msgid "DXF file exported to"
+msgstr "Fişierul DXF exportat in"
-#: FlatCAMApp.py:8051
+#: FlatCAMApp.py:8735
msgid "Exporting DXF"
msgstr "DXF in curs de export"
-#: FlatCAMApp.py:8056 FlatCAMApp.py:8063
-msgid "[[WARNING_NOTCL]] Could not export DXF file."
-msgstr "[[WARNING_NOTCL]] Fişierul DXF nu a fost posibil să fie exportat."
+#: FlatCAMApp.py:8741 FlatCAMApp.py:8749
+msgid "Could not export DXF file."
+msgstr "Fişierul DXF nu a fost posibil să fie exportat."
-#: FlatCAMApp.py:8083 FlatCAMApp.py:8125 FlatCAMApp.py:8169
+#: FlatCAMApp.py:8770 FlatCAMApp.py:8814 FlatCAMApp.py:8860
msgid ""
-"[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
-"Gerber are supported"
+"Not supported type is picked as parameter. Only Geometry and Gerber are "
+"supported"
msgstr ""
-"[ERROR_NOTCL] Typul parametrului nu este compatibil. Doar Geometrie is "
-"Gerber sunt acceptate."
+"Tipul parametrului nu este compatibil. Doar obiectele tip Geometrie si "
+"Gerber sunt acceptate"
-#: FlatCAMApp.py:8093
+#: FlatCAMApp.py:8780
msgid "Importing SVG"
msgstr "SVG in curs de ia fi importat"
-#: FlatCAMApp.py:8104 FlatCAMApp.py:8146 FlatCAMApp.py:8189 FlatCAMApp.py:8266
-#: FlatCAMApp.py:8327 FlatCAMApp.py:8390 flatcamTools/ToolPDF.py:212
-#, python-format
-msgid "[success] Opened: %s"
-msgstr "[success] Incărcat: %s"
+#: FlatCAMApp.py:8792 FlatCAMApp.py:8836 FlatCAMApp.py:8881 FlatCAMApp.py:8962
+#: FlatCAMApp.py:9029 FlatCAMApp.py:9096
+msgid "Opened"
+msgstr "Încarcat"
-#: FlatCAMApp.py:8135
+#: FlatCAMApp.py:8824
msgid "Importing DXF"
msgstr "DXF in curs de a fi importat"
-#: FlatCAMApp.py:8177
+#: FlatCAMApp.py:8868
msgid "Importing Image"
msgstr "Imaginea in curs de a fi importata"
-#: FlatCAMApp.py:8218 FlatCAMApp.py:8220
-#, python-format
-msgid "[ERROR_NOTCL] Failed to open file: %s"
-msgstr "[ERROR_NOTCL] Eşec in incărcarea fişierului %s"
+#: FlatCAMApp.py:8911
+msgid "Failed to open file"
+msgstr "Eşec in incărcarea fişierului"
-#: FlatCAMApp.py:8223
-#, python-brace-format
-msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
-msgstr "[ERROR_NOTCL] Eşec in parsarea fişierului: {name}. {error}"
+#: FlatCAMApp.py:8916
+msgid "Failed to parse file"
+msgstr "Parsarea fişierului a eșuat"
-#: FlatCAMApp.py:8230 FlatCAMObj.py:4344
-#: flatcamEditors/FlatCAMGrbEditor.py:3914
-msgid "[ERROR] An internal error has occurred. See shell.\n"
+#: FlatCAMApp.py:8923 FlatCAMApp.py:8997 FlatCAMObj.py:4523
+#: flatcamEditors/FlatCAMGrbEditor.py:3939 flatcamTools/ToolPcbWizard.py:437
+msgid "An internal error has occurred. See shell.\n"
msgstr ""
-"[ERROR] A apărut o eroare internă. Verifică in TCL Shell pt mai multe "
-"detalii.\n"
+"A apărut o eroare internă. Verifică in TCL Shell pt mai multe detalii.\n"
-#: FlatCAMApp.py:8239
-msgid ""
-"[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
+#: FlatCAMApp.py:8933
+msgid "Object is not Gerber file or empty. Aborting object creation."
msgstr ""
-"[ERROR_NOTCL] Obiectul nu estetip Gerber sau este gol. Se anulează crearea "
-"obiectului."
+"Obiectul nu estetip Gerber sau este gol. Se anulează crearea obiectului."
-#: FlatCAMApp.py:8247
+#: FlatCAMApp.py:8941
msgid "Opening Gerber"
msgstr "Gerber in curs de incărcare"
-#: FlatCAMApp.py:8257
-msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
-msgstr ""
-"[ERROR_NOTCL] Incărcarea Gerber a eșuat. Probabil nu este de tip Gerber."
+#: FlatCAMApp.py:8952
+msgid " Open Gerber failed. Probable not a Gerber file."
+msgstr " Incărcarea Gerber a eșuat. Probabil nu este de tip Gerber."
-#: FlatCAMApp.py:8290 flatcamTools/ToolPcbWizard.py:423
-msgid "[ERROR_NOTCL] This is not Excellon file."
-msgstr "[ERROR_NOTCL] Acesta nu este un fişier Excellon."
+#: FlatCAMApp.py:8987 flatcamTools/ToolPcbWizard.py:427
+msgid "This is not Excellon file."
+msgstr "Acesta nu este un fişier Excellon."
-#: FlatCAMApp.py:8293
-#, python-format
-msgid "[ERROR_NOTCL] Cannot open file: %s"
-msgstr "[ERROR_NOTCL] Fişierul %s nu se poate incărca."
+#: FlatCAMApp.py:8991
+msgid "Cannot open file"
+msgstr "Nu se poate incărca fişierul"
-#: FlatCAMApp.py:8298 flatcamTools/ToolPcbWizard.py:432
-msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
-msgstr ""
-"[ERROR_NOTCL] A apărut o eroare interna. Verifică in TCL Shell pt mai multe "
-"detalii.\n"
+#: FlatCAMApp.py:9011 flatcamTools/ToolPDF.py:270
+#: flatcamTools/ToolPcbWizard.py:451
+msgid "No geometry found in file"
+msgstr "Nici-o informaţie de tip geometrie nu s-a gasit in fişierul"
-#: FlatCAMApp.py:8311 flatcamTools/ToolPDF.py:262
-#: flatcamTools/ToolPcbWizard.py:445
-#, python-format
-msgid "[ERROR_NOTCL] No geometry found in file: %s"
-msgstr ""
-"[ERROR_NOTCL] Nici-o informaţie de tip geometrie nu s-a gasit in fişierul: %s"
-
-#: FlatCAMApp.py:8314
+#: FlatCAMApp.py:9014
msgid "Opening Excellon."
-msgstr "Excellon in curs de incărcare"
+msgstr "Excellon in curs de incărcare."
-#: FlatCAMApp.py:8320
-msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
-msgstr ""
-"[ERROR_NOTCL] Incărcarea Excellon a eșuat. Probabil nu este de tip Excellon."
+#: FlatCAMApp.py:9021
+msgid "Open Excellon file failed. Probable not an Excellon file."
+msgstr "Incărcarea Excellon a eșuat. Probabil nu este de tip Excellon."
-#: FlatCAMApp.py:8357
-#, python-format
-msgid "[ERROR_NOTCL] Failed to open %s"
-msgstr "[ERROR_NOTCL] Incărcarea fişierului %s a eșuat."
+#: FlatCAMApp.py:9060
+msgid "Failed to open"
+msgstr "A eșuat incărcarea fişierului"
-#: FlatCAMApp.py:8367
-msgid "[ERROR_NOTCL] This is not GCODE"
-msgstr "[ERROR_NOTCL] Acest obiect nu este de tip GCode"
+#: FlatCAMApp.py:9071
+msgid "This is not GCODE"
+msgstr "Acest obiect nu este de tip GCode"
-#: FlatCAMApp.py:8373
+#: FlatCAMApp.py:9077
msgid "Opening G-Code."
-msgstr "G-Code in curs de incărcare"
+msgstr "G-Code in curs de incărcare."
-#: FlatCAMApp.py:8381
+#: FlatCAMApp.py:9086
msgid ""
-"[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
+"Failed to create CNCJob Object. Probable not a GCode file.\n"
" Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
"processing"
msgstr ""
-"[ERROR_NOTCL] Eşec in crearea unui obiect CNCJob. Probabil nu este un fişier "
-"GCode.\n"
-"Incercarea de a crea un obiect CNCJob din G-Code a eșuat in timpul "
-"procesarii."
+"Eşec in crearea unui obiect CNCJob. Probabil nu este un fişier GCode.\n"
+"Incercarea de a crea un obiect CNCJob din G-Code a eșuat in timpul procesarii"
-#: FlatCAMApp.py:8421
-#, python-format
-msgid "[ERROR_NOTCL] Failed to open config file: %s"
-msgstr "[ERROR_NOTCL] Eşec in incărcarea fişierului de configurare: %s"
+#: FlatCAMApp.py:9128
+msgid "Failed to open config file"
+msgstr "Eşec in incărcarea fişierului de configurare"
-#: FlatCAMApp.py:8442
+#: FlatCAMApp.py:9149
msgid "Loading Project ... Please Wait ..."
msgstr "Se încarcă proiectul ... Vă rugăm să așteptați ..."
-#: FlatCAMApp.py:8449 FlatCAMApp.py:8467
-#, python-format
-msgid "[ERROR_NOTCL] Failed to open project file: %s"
-msgstr "[ERROR_NOTCL] Eşec in incărcarea fişierului proiect: %s"
+#: FlatCAMApp.py:9157 FlatCAMApp.py:9176
+msgid "Failed to open project file"
+msgstr "Eşec in incărcarea fişierului proiect"
-#: FlatCAMApp.py:8491
+#: FlatCAMApp.py:9200
msgid "Loading Project ... restoring"
msgstr "Se încarcă proiectul ... se restabileste"
-#: FlatCAMApp.py:8496
-#, python-format
-msgid "[success] Project loaded from: %s"
-msgstr "[success] Proeictul a fost incărcat din: %s"
+#: FlatCAMApp.py:9210
+msgid "Project loaded from"
+msgstr "Proiectul a fost incărcat din"
-#: FlatCAMApp.py:8602
+#: FlatCAMApp.py:9316
msgid "Available commands:\n"
msgstr "Comenzi disponibile:\n"
-#: FlatCAMApp.py:8604
+#: FlatCAMApp.py:9318
msgid ""
"\n"
"\n"
@@ -1160,35 +1129,35 @@ msgstr ""
"Introduceți help pentru utilizare.\n"
"Exemplu: help open_gerber"
-#: FlatCAMApp.py:8754
+#: FlatCAMApp.py:9468
msgid "Shows list of commands."
msgstr "Arata o lista de comenzi."
-#: FlatCAMApp.py:8811
-msgid "[ERROR_NOTCL] Failed to load recent item list."
-msgstr "[ERROR_NOTCL] Eşec in incărcarea listei cu fişiere recente."
+#: FlatCAMApp.py:9526
+msgid "Failed to load recent item list."
+msgstr "Eşec in incărcarea listei cu fişiere recente."
-#: FlatCAMApp.py:8818
-msgid "[ERROR_NOTCL] Failed to parse recent item list."
-msgstr "[ERROR_NOTCL] Eşec in parsarea listei cu fişiere recente."
+#: FlatCAMApp.py:9534
+msgid "Failed to parse recent item list."
+msgstr "Eşec in parsarea listei cu fişiere recente."
-#: FlatCAMApp.py:8828
-msgid "[ERROR_NOTCL] Failed to load recent projects item list."
-msgstr "[ERROR_NOTCL] Eşec in incărcarea listei cu proiecte recente."
+#: FlatCAMApp.py:9545
+msgid "Failed to load recent projects item list."
+msgstr "Eşec in incărcarea listei cu proiecte recente."
-#: FlatCAMApp.py:8835
-msgid "[ERROR_NOTCL] Failed to parse recent project item list."
-msgstr "[ERROR_NOTCL] Eşec in parsarea listei cu proiecte recente."
+#: FlatCAMApp.py:9553
+msgid "Failed to parse recent project item list."
+msgstr "Eşec in parsarea listei cu proiecte recente."
-#: FlatCAMApp.py:8894 FlatCAMApp.py:8917
+#: FlatCAMApp.py:9612 FlatCAMApp.py:9635
msgid "Clear Recent files"
msgstr "Sterge fişierele recente"
-#: FlatCAMApp.py:8934 flatcamGUI/FlatCAMGUI.py:996
+#: FlatCAMApp.py:9652 flatcamGUI/FlatCAMGUI.py:1006
msgid "Shortcut Key List"
msgstr "Lista cu taste Shortcut"
-#: FlatCAMApp.py:8946
+#: FlatCAMApp.py:9664
#, python-brace-format
msgid ""
"\n"
@@ -1286,27 +1255,25 @@ msgstr ""
"\n"
" "
-#: FlatCAMApp.py:9024
-msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
+#: FlatCAMApp.py:9743
+msgid "Failed checking for latest version. Could not connect."
msgstr ""
-"[WARNING_NOTCL] Verificarea pentru ultima versiune a eșuat. Nu a fost "
-"posibilă conectarea la server."
+"Verificarea pentru ultima versiune a eșuat. Nu a fost posibilă conectarea la "
+"server."
-#: FlatCAMApp.py:9031
-msgid "[ERROR_NOTCL] Could not parse information about latest version."
-msgstr ""
-"[ERROR_NOTCL] Informatia cu privire la ultima versiune nu s-a putut "
-"interpreta."
+#: FlatCAMApp.py:9751
+msgid "Could not parse information about latest version."
+msgstr "Informatia cu privire la ultima versiune nu s-a putut interpreta."
-#: FlatCAMApp.py:9041
-msgid "[success] FlatCAM is up to date!"
-msgstr "[success] FlatCAM este la ultima versiune!"
+#: FlatCAMApp.py:9762
+msgid "FlatCAM is up to date!"
+msgstr "FlatCAM este la ultima versiune!"
-#: FlatCAMApp.py:9046
+#: FlatCAMApp.py:9767
msgid "Newer Version Available"
msgstr "O nouă versiune este disponibila"
-#: FlatCAMApp.py:9047
+#: FlatCAMApp.py:9768
msgid ""
"There is a newer version of FlatCAM available for download:\n"
"\n"
@@ -1314,362 +1281,435 @@ msgstr ""
"O nouă versiune de FlatCAM este disponibilă pentru download::\n"
"\n"
-#: FlatCAMApp.py:9049
+#: FlatCAMApp.py:9770
msgid "info"
-msgstr "Informaţie"
+msgstr "informaţie"
-#: FlatCAMApp.py:9103
-msgid "[success] All plots disabled."
-msgstr "[success] Toate afişările sunt dezactivate."
+#: FlatCAMApp.py:9825
+msgid "All plots disabled."
+msgstr "Toate afişările sunt dezactivate."
-#: FlatCAMApp.py:9109
-msgid "[success] All non selected plots disabled."
-msgstr "[success] Toate afişările care nu sunt selectate sunt dezactivate."
+#: FlatCAMApp.py:9832
+msgid "All non selected plots disabled."
+msgstr "Toate afişările care nu sunt selectate sunt dezactivate."
-#: FlatCAMApp.py:9115
-msgid "[success] All plots enabled."
-msgstr "[success] Toate afişările sunt activate."
+#: FlatCAMApp.py:9839
+msgid "All plots enabled."
+msgstr "Toate afişările sunt activate."
-#: FlatCAMApp.py:9121
-msgid "[success] Selected plots enabled..."
-msgstr "[success] Toate afişările sunt activate..."
+#: FlatCAMApp.py:9846
+msgid "Selected plots enabled..."
+msgstr "Toate afişările selectate sunt activate..."
-#: FlatCAMApp.py:9129
-msgid "[success] Selected plots disabled..."
-msgstr "[success] Toate afişările sunt dezactivate..."
+#: FlatCAMApp.py:9855
+msgid "Selected plots disabled..."
+msgstr "Toate afişările selectate sunt dezactivate..."
-#: FlatCAMApp.py:9138 FlatCAMApp.py:9156 FlatCAMApp.py:9174
+#: FlatCAMApp.py:9873
+msgid "Enabling plots ..."
+msgstr "Activează Afișare ..."
+
+#: FlatCAMApp.py:9907
+msgid "Disabling plots ..."
+msgstr "Dezactivează Afișare ..."
+
+#: FlatCAMApp.py:9929
msgid "Working ..."
msgstr "Se lucrează..."
-#: FlatCAMApp.py:9212
+#: FlatCAMApp.py:9967
msgid "Saving FlatCAM Project"
msgstr "Proiectul FlatCAM este in curs de salvare"
-#: FlatCAMApp.py:9233 FlatCAMApp.py:9264
-#, python-format
-msgid "[success] Project saved to: %s"
-msgstr "[success] Proiectul s-a salvat in: %s"
+#: FlatCAMApp.py:9989 FlatCAMApp.py:10024
+msgid "Project saved to"
+msgstr "Proiectul s-a salvat in"
-#: FlatCAMApp.py:9251
-#, python-format
-msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
-msgstr ""
-"[ERROR_NOTCL] Verificarea proiectului salvat a eșuat: %s. Incearcă să il "
-"salvezi din nou."
+#: FlatCAMApp.py:10008
+msgid "Failed to verify project file"
+msgstr "Eşec in incărcarea fişierului proiect"
-#: FlatCAMApp.py:9258
-#, python-format
-msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
-msgstr ""
-"[ERROR_NOTCL] Parsarea proiectului salvat a eșuat: %s. Incearcă să il "
-"salvezi din nou."
+#: FlatCAMApp.py:10008 FlatCAMApp.py:10016 FlatCAMApp.py:10027
+msgid "Retry to save it."
+msgstr "Încercați din nou pentru a-l salva."
-#: FlatCAMApp.py:9266
-#, python-format
-msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
-msgstr ""
-"[ERROR_NOTCL] Salvarea proiectului a eșuat: %s. Incearcă să il salvezi din "
-"nou."
+#: FlatCAMApp.py:10016 FlatCAMApp.py:10027
+msgid "Failed to parse saved project file"
+msgstr "Esec in analizarea fişierului Proiect"
-#: FlatCAMObj.py:208
+#: FlatCAMApp.py:10238
+msgid "The user requested a graceful exit of the current task."
+msgstr "Utilizatorul a solicitat o inchidere grațioasă a taskului curent."
+
+#: FlatCAMObj.py:213
#, python-brace-format
msgid "[success] Name changed from {old} to {new}"
msgstr "[success] Numele schimbat din {old} in {new}"
-#: FlatCAMObj.py:557 FlatCAMObj.py:2128 FlatCAMObj.py:3403 FlatCAMObj.py:5562
+#: FlatCAMObj.py:222
+msgid "Offsetting..."
+msgstr "Ofsetare..."
+
+#: FlatCAMObj.py:237
+msgid "Scaling..."
+msgstr "Scalare..."
+
+#: FlatCAMObj.py:253
+msgid "Skewing..."
+msgstr "Deformare..."
+
+#: FlatCAMObj.py:600 FlatCAMObj.py:2293 FlatCAMObj.py:3571 FlatCAMObj.py:5837
msgid "Basic"
msgstr "Baza"
-#: FlatCAMObj.py:569 FlatCAMObj.py:2144 FlatCAMObj.py:3425 FlatCAMObj.py:5568
+#: FlatCAMObj.py:613 FlatCAMObj.py:2309 FlatCAMObj.py:3593 FlatCAMObj.py:5843
msgid "Advanced"
msgstr "Avansat"
-#: FlatCAMObj.py:947 FlatCAMObj.py:1050
-msgid "[ERROR_NOTCL] Isolation geometry could not be generated."
-msgstr "[ERROR_NOTCL] Geometria nu a fost posibil să fie 'generată."
+#: FlatCAMObj.py:802
+msgid "Buffering solid geometry"
+msgstr "Buferarea geometriei solide"
-#: FlatCAMObj.py:984 FlatCAMObj.py:3098 FlatCAMObj.py:3360 FlatCAMObj.py:3637
+#: FlatCAMObj.py:805 flatcamGUI/FlatCAMGUI.py:4322
+#: flatcamTools/ToolNonCopperClear.py:1531
+#: flatcamTools/ToolNonCopperClear.py:1625
+#: flatcamTools/ToolNonCopperClear.py:1637
+#: flatcamTools/ToolNonCopperClear.py:1864
+#: flatcamTools/ToolNonCopperClear.py:1956
+#: flatcamTools/ToolNonCopperClear.py:1968
+msgid "Buffering"
+msgstr "Buferare"
+
+#: FlatCAMObj.py:811
+msgid "Done"
+msgstr "Executat"
+
+#: FlatCAMObj.py:1071 FlatCAMObj.py:1178
+#: flatcamTools/ToolNonCopperClear.py:1560
+#: flatcamTools/ToolNonCopperClear.py:1888
+msgid "Isolation geometry could not be generated."
+msgstr "Geometria de izolare nu a fost posibil să fie generată."
+
+#: FlatCAMObj.py:1108 FlatCAMObj.py:3261 FlatCAMObj.py:3528 FlatCAMObj.py:3804
msgid "Rough"
msgstr "Grosier"
-#: FlatCAMObj.py:1002 FlatCAMObj.py:1066
-#, python-format
-msgid "[success] Isolation geometry created: %s"
-msgstr "[success] Geometria de izolare creată: %s"
+#: FlatCAMObj.py:1133 FlatCAMObj.py:1201
+msgid "Isolation geometry created"
+msgstr "Geometria de izolare creată"
-#: FlatCAMObj.py:1246
+#: FlatCAMObj.py:1386
msgid "Plotting Apertures"
msgstr "Aperturile sunt in curs de afișare"
-#: FlatCAMObj.py:1969 flatcamEditors/FlatCAMExcEditor.py:2290
+#: FlatCAMObj.py:2121 flatcamEditors/FlatCAMExcEditor.py:2309
msgid "Total Drills"
msgstr "Nr. Tot. Op. Găurire"
-#: FlatCAMObj.py:1995 flatcamEditors/FlatCAMExcEditor.py:2322
+#: FlatCAMObj.py:2153 flatcamEditors/FlatCAMExcEditor.py:2341
msgid "Total Slots"
msgstr "Nr. Tot. Sloturi"
-#: FlatCAMObj.py:2202 FlatCAMObj.py:3475 FlatCAMObj.py:3765 FlatCAMObj.py:3952
-#: FlatCAMObj.py:3963 FlatCAMObj.py:4081 FlatCAMObj.py:4486 FlatCAMObj.py:4712
-#: FlatCAMObj.py:5128 flatcamEditors/FlatCAMExcEditor.py:2396
-#: flatcamTools/ToolCalculators.py:310 flatcamTools/ToolCalculators.py:321
-#: flatcamTools/ToolCalculators.py:333 flatcamTools/ToolCalculators.py:348
-#: flatcamTools/ToolCalculators.py:361 flatcamTools/ToolCalculators.py:375
-#: flatcamTools/ToolCalculators.py:386 flatcamTools/ToolCalculators.py:397
-#: flatcamTools/ToolCalculators.py:408 flatcamTools/ToolFilm.py:246
-#: flatcamTools/ToolFilm.py:253 flatcamTools/ToolNonCopperClear.py:684
-#: flatcamTools/ToolNonCopperClear.py:756
-#: flatcamTools/ToolNonCopperClear.py:953
-#: flatcamTools/ToolNonCopperClear.py:970
-#: flatcamTools/ToolNonCopperClear.py:978 flatcamTools/ToolPaint.py:694
-#: flatcamTools/ToolPaint.py:766 flatcamTools/ToolPaint.py:907
-#: flatcamTools/ToolPaint.py:1147 flatcamTools/ToolPaint.py:1301
-#: flatcamTools/ToolPaint.py:1608 flatcamTools/ToolPanelize.py:392
-#: flatcamTools/ToolPanelize.py:404 flatcamTools/ToolPanelize.py:417
-#: flatcamTools/ToolPanelize.py:430 flatcamTools/ToolPanelize.py:442
-#: flatcamTools/ToolPanelize.py:453 flatcamTools/ToolSolderPaste.py:763
-#: flatcamTools/ToolSolderPaste.py:835
-msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
-msgstr "[ERROR_NOTCL] O valoare gresita a fost introdusa. Foloseşte un număr."
+#: FlatCAMObj.py:2367 FlatCAMObj.py:3644 FlatCAMObj.py:3938 FlatCAMObj.py:4129
+#: FlatCAMObj.py:4140 FlatCAMObj.py:4258 FlatCAMObj.py:4461 FlatCAMObj.py:4668
+#: FlatCAMObj.py:4907 FlatCAMObj.py:5405
+#: flatcamEditors/FlatCAMExcEditor.py:2416
+#: flatcamEditors/FlatCAMGeoEditor.py:1080
+#: flatcamEditors/FlatCAMGeoEditor.py:1117
+#: flatcamEditors/FlatCAMGeoEditor.py:1138
+#: flatcamEditors/FlatCAMGeoEditor.py:1159
+#: flatcamEditors/FlatCAMGeoEditor.py:1196
+#: flatcamEditors/FlatCAMGeoEditor.py:1228
+#: flatcamEditors/FlatCAMGeoEditor.py:1249
+#: flatcamEditors/FlatCAMGrbEditor.py:5283
+#: flatcamEditors/FlatCAMGrbEditor.py:5326
+#: flatcamEditors/FlatCAMGrbEditor.py:5353
+#: flatcamEditors/FlatCAMGrbEditor.py:5380
+#: flatcamEditors/FlatCAMGrbEditor.py:5421
+#: flatcamEditors/FlatCAMGrbEditor.py:5459
+#: flatcamEditors/FlatCAMGrbEditor.py:5485 flatcamTools/ToolCalculators.py:311
+#: flatcamTools/ToolCalculators.py:322 flatcamTools/ToolCalculators.py:334
+#: flatcamTools/ToolCalculators.py:349 flatcamTools/ToolCalculators.py:362
+#: flatcamTools/ToolCalculators.py:376 flatcamTools/ToolCalculators.py:387
+#: flatcamTools/ToolCalculators.py:398 flatcamTools/ToolCalculators.py:409
+#: flatcamTools/ToolFilm.py:248 flatcamTools/ToolFilm.py:254
+#: flatcamTools/ToolNonCopperClear.py:862
+#: flatcamTools/ToolNonCopperClear.py:873
+#: flatcamTools/ToolNonCopperClear.py:883
+#: flatcamTools/ToolNonCopperClear.py:901
+#: flatcamTools/ToolNonCopperClear.py:980
+#: flatcamTools/ToolNonCopperClear.py:1062
+#: flatcamTools/ToolNonCopperClear.py:1341
+#: flatcamTools/ToolNonCopperClear.py:1371 flatcamTools/ToolPaint.py:699
+#: flatcamTools/ToolPaint.py:774 flatcamTools/ToolPaint.py:922
+#: flatcamTools/ToolPaint.py:976 flatcamTools/ToolPaint.py:1225
+#: flatcamTools/ToolPaint.py:1496 flatcamTools/ToolPaint.py:1966
+#: flatcamTools/ToolPanelize.py:397 flatcamTools/ToolPanelize.py:409
+#: flatcamTools/ToolPanelize.py:422 flatcamTools/ToolPanelize.py:435
+#: flatcamTools/ToolPanelize.py:447 flatcamTools/ToolPanelize.py:458
+#: flatcamTools/ToolSolderPaste.py:764 flatcamTools/ToolSolderPaste.py:839
+#: flatcamTools/ToolTransform.py:474 flatcamTools/ToolTransform.py:508
+#: flatcamTools/ToolTransform.py:526 flatcamTools/ToolTransform.py:544
+#: flatcamTools/ToolTransform.py:578 flatcamTools/ToolTransform.py:607
+#: flatcamTools/ToolTransform.py:625
+msgid "Wrong value format entered, use a number."
+msgstr "Valoare in format incorect, foloseşte un număr."
-#: FlatCAMObj.py:2444 FlatCAMObj.py:2536 FlatCAMObj.py:2659
-msgid ""
-"[ERROR_NOTCL] Please select one or more tools from the list and try again."
+#: FlatCAMObj.py:2608 FlatCAMObj.py:2698 FlatCAMObj.py:2819
+msgid "Please select one or more tools from the list and try again."
+msgstr "Selectează una sau mai multe unelte din lista și încearcă din nou."
+
+#: FlatCAMObj.py:2614
+msgid "Milling tool for DRILLS is larger than hole size. Cancelled."
msgstr ""
-"[ERROR_NOTCL] Selectează una sau mai multe unelte din lista și încearcă din "
-"nou."
+"Anulat. Freza pt frezarea găurilor este mai mare decat diametrul găurii."
-#: FlatCAMObj.py:2451
-msgid ""
-"[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
-msgstr ""
-"[ERROR_NOTCL] Anulat. Freza pt frezarea găurilor este mai mare decat "
-"diametrul găurii."
-
-#: FlatCAMObj.py:2465 FlatCAMObj.py:2560 FlatCAMObj.py:2679
+#: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
msgid "Tool_nr"
msgstr "Nr. Unealtă"
-#: FlatCAMObj.py:2465 FlatCAMObj.py:2560 FlatCAMObj.py:2679
-#: flatcamEditors/FlatCAMExcEditor.py:1481
-#: flatcamEditors/FlatCAMExcEditor.py:3114 flatcamGUI/ObjectUI.py:554
+#: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
+#: flatcamEditors/FlatCAMExcEditor.py:1500
+#: flatcamEditors/FlatCAMExcEditor.py:3133 flatcamGUI/ObjectUI.py:613
#: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
#: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolSolderPaste.py:81
msgid "Diameter"
msgstr "Diametru"
-#: FlatCAMObj.py:2465 FlatCAMObj.py:2560 FlatCAMObj.py:2679
+#: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
msgid "Drills_Nr"
msgstr "Nr. gaura"
-#: FlatCAMObj.py:2465 FlatCAMObj.py:2560 FlatCAMObj.py:2679
+#: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
msgid "Slots_Nr"
msgstr "Nr. slot"
-#: FlatCAMObj.py:2546
-msgid ""
-"[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
-msgstr ""
-"[ERROR_NOTCL] Anulat. Freza este mai mare decat diametrul slotului de frezat."
+#: FlatCAMObj.py:2707
+msgid "Milling tool for SLOTS is larger than hole size. Cancelled."
+msgstr "Anulat. Freza este mai mare decat diametrul slotului de frezat."
-#: FlatCAMObj.py:2720 FlatCAMObj.py:4379 FlatCAMObj.py:4585 FlatCAMObj.py:4891
+#: FlatCAMObj.py:2879 FlatCAMObj.py:4559 FlatCAMObj.py:4777 FlatCAMObj.py:5100
msgid ""
-"[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self."
-"options[\"z_pdepth\"]"
+"Wrong value format for self.defaults[\"z_pdepth\"] or self.options[\"z_pdepth"
+"\"]"
msgstr ""
-"[ERROR_NOTCL] Valoare gresita pt self.defaults[\"z_pdepth\"] sau self."
-"options[\"z_pdepth\"]"
+"Valoare gresita pt self.defaults[\"z_pdepth\"] sau self.options[\"z_pdepth\"]"
-#: FlatCAMObj.py:2730 FlatCAMObj.py:4389 FlatCAMObj.py:4595 FlatCAMObj.py:4901
+#: FlatCAMObj.py:2890 FlatCAMObj.py:4570 FlatCAMObj.py:5111
msgid ""
-"[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or "
-"self.options[\"feedrate_probe\"]"
+"Wrong value format for self.defaults[\"feedrate_probe\"] or self."
+"options[\"feedrate_probe\"]"
msgstr ""
-"[ERROR_NOTCL] Valoare gresita pt self.defaults[\"feedrate_probe\"] sau self."
+"Valoare gresita pt self.defaults[\"feedrate_probe\"] sau self."
"options[\"feedrate_probe\"]"
-#: FlatCAMObj.py:2760 FlatCAMObj.py:4781 FlatCAMObj.py:4786 FlatCAMObj.py:4933
+#: FlatCAMObj.py:2920 FlatCAMObj.py:4987 FlatCAMObj.py:4993 FlatCAMObj.py:5145
msgid "Generating CNC Code"
msgstr "CNC Code in curs de generare"
-#: FlatCAMObj.py:2786 FlatCAMObj.py:5088 camlib.py:5244 camlib.py:5740
-#: camlib.py:6030
+#: FlatCAMObj.py:2946 camlib.py:5658 camlib.py:6632
msgid ""
-"[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
-"format (x, y) \n"
+"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
+"y) \n"
"but now there is only one value, not two. "
msgstr ""
-"[ERROR] Parametrul >Schimbare Unealtă X, Y< in Editare -> Peferințe trebuie "
-"să fie in formatul (x, y) \n"
+"Parametrul >Schimbare Unealtă X, Y< in Editare -> Peferințe trebuie să fie "
+"in formatul (x, y) \n"
"dar are o singură valoare in loc de doua. "
-#: FlatCAMObj.py:3098 FlatCAMObj.py:4004 FlatCAMObj.py:4005 FlatCAMObj.py:4014
+#: FlatCAMObj.py:3261 FlatCAMObj.py:4180 FlatCAMObj.py:4181 FlatCAMObj.py:4190
msgid "Iso"
-msgstr "Izo."
+msgstr "Izo"
-#: FlatCAMObj.py:3098
+#: FlatCAMObj.py:3261
msgid "Finish"
msgstr "Finisare"
-#: FlatCAMObj.py:3396 flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:746
-#: flatcamGUI/FlatCAMGUI.py:1700 flatcamGUI/FlatCAMGUI.py:2067
-#: flatcamGUI/ObjectUI.py:998
+#: FlatCAMObj.py:3564 flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:746
+#: flatcamGUI/FlatCAMGUI.py:1718 flatcamGUI/FlatCAMGUI.py:2092
+#: flatcamGUI/ObjectUI.py:1061
msgid "Copy"
msgstr "Copiază"
-#: FlatCAMObj.py:3607
-msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
-msgstr "[ERROR_NOTCL] Introdu diametrul dorit pt unealtă in format Real."
+#: FlatCAMObj.py:3775
+msgid "Please enter the desired tool diameter in Float format."
+msgstr "Introdu diametrul dorit pt unealtă in format Real."
-#: FlatCAMObj.py:3681
-msgid "[success] Tool added in Tool Table."
-msgstr "[success] Unealtă adăugată in Tabela de Unelte."
+#: FlatCAMObj.py:3849
+msgid "Tool added in Tool Table."
+msgstr "Unealtă adăugată in Tabela de Unelte."
-#: FlatCAMObj.py:3684
-msgid "[WARNING_NOTCL] Default Tool added. Wrong value format entered."
-msgstr ""
-"[WARNING_NOTCL] Unealta implicita adăugată dar valoarea are un format gresit."
+#: FlatCAMObj.py:3853
+msgid "Default Tool added. Wrong value format entered."
+msgstr "Unealta implicita adăugată dar valoarea are un format gresit."
-#: FlatCAMObj.py:3716 FlatCAMObj.py:3724
-msgid "[WARNING_NOTCL] Failed. Select a tool to copy."
-msgstr "[WARNING_NOTCL] Eșuat. Selectează o unealtă pt copiere."
+#: FlatCAMObj.py:3886 FlatCAMObj.py:3895
+msgid "Failed. Select a tool to copy."
+msgstr "Eșuat. Selectează o unealtă pt copiere."
-#: FlatCAMObj.py:3751
-msgid "[success] Tool was copied in Tool Table."
-msgstr "[success] Unealta a fost copiata in Tabela de Unelte."
+#: FlatCAMObj.py:3923
+msgid "Tool was copied in Tool Table."
+msgstr "Unealta a fost copiata in Tabela de Unelte."
-#: FlatCAMObj.py:3780
-msgid "[success] Tool was edited in Tool Table."
-msgstr "[success] Unealta a fost editata in Tabela de Unelte."
+#: FlatCAMObj.py:3953
+msgid "Tool was edited in Tool Table."
+msgstr "Unealta a fost editata in Tabela de Unelte."
-#: FlatCAMObj.py:3808 FlatCAMObj.py:3816
-msgid "[WARNING_NOTCL] Failed. Select a tool to delete."
-msgstr "[WARNING_NOTCL] Eșuat. Selectează o unealtă pentru ștergere."
+#: FlatCAMObj.py:3982 FlatCAMObj.py:3991
+msgid "Failed. Select a tool to delete."
+msgstr "Eșuat. Selectează o unealtă pentru ștergere."
-#: FlatCAMObj.py:3838
-msgid "[success] Tool was deleted in Tool Table."
-msgstr "[success] Unealta a fost stearsa din Tabela de Unelte."
+#: FlatCAMObj.py:4014
+msgid "Tool was deleted in Tool Table."
+msgstr "Unealta a fost stearsa din Tabela de Unelte."
-#: FlatCAMObj.py:4267
+#: FlatCAMObj.py:4444
#, python-format
+msgid "This Geometry can't be processed because it is %s geometry."
+msgstr ""
+"Acest obiect Geometrie nu poate fi procesar decoarece este Geometrie %s."
+
+#: FlatCAMObj.py:4486
+msgid "Failed. No tool selected in the tool table ..."
+msgstr "Eșuat. Nici-o unealtă nu este selectată in Tabela de Unelte ..."
+
+#: FlatCAMObj.py:4524
+#| msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
+msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() -->"
+msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() -->"
+
+#: FlatCAMObj.py:4673 FlatCAMObj.py:4913
msgid ""
-"[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry."
-msgstr ""
-"[WARNING_NOTCL] Acest obiect Geometrie nu poate fi procesar decoarece este "
-"Geometrie %s."
-
-#: FlatCAMObj.py:4283
-msgid "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number."
-msgstr ""
-"[ERROR_NOTCL] Diametrul uneltei este in format gresit, foloseşte un număr "
-"Real."
-
-#: FlatCAMObj.py:4308
-msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
-msgstr ""
-"[ERROR_NOTCL] Eșuat. Nici-o unealtă nu este selectată in Tabela de Unelte ..."
-
-#: FlatCAMObj.py:4345
-#, python-format
-msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
-msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
-
-#: FlatCAMObj.py:4492 FlatCAMObj.py:4718
-msgid ""
-"[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
+"Tool Offset is selected in Tool Table but no value is provided.\n"
"Add a Tool Offset or change the Offset Type."
msgstr ""
-"[WARNING] Un ofset pt unealtă este selectat in Tabela de Unelte dar nici-o "
-"val. nu este oferita.\n"
+"Un ofset pt unealtă este selectat in Tabela de Unelte dar nici-o val. nu "
+"este oferita.\n"
"Adaugă un ofset pt unealtă sau schimbă Tipul Ofset."
-#: FlatCAMObj.py:4605 flatcamTools/ToolSolderPaste.py:1117
-#: flatcamTools/ToolSolderPaste.py:1173
-msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
-msgstr "[ERROR_NOTCL] Anulat. Fişier gol, nu are date geometrice."
+#: FlatCAMObj.py:4724 FlatCAMObj.py:4954
+msgid "G-Code parsing in progress..."
+msgstr "Analiza codului G în curs ..."
-#: FlatCAMObj.py:4967 FlatCAMObj.py:4976 camlib.py:3373 camlib.py:3382
-msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
-msgstr ""
-"[ERROR_NOTCL] Factorul de scalare trebuie să fie un număr: natural sau real."
+#: FlatCAMObj.py:4726 FlatCAMObj.py:4956
+msgid "G-Code parsing finished..."
+msgstr "Analizarea codului G s-a terminat ..."
-#: FlatCAMObj.py:5019
-msgid "[success] Geometry Scale done."
-msgstr "[success] Scalare Geometrie executată."
+#: FlatCAMObj.py:4734 FlatCAMObj.py:4966 FlatCAMObj.py:5138
+msgid "Finished G-Code processing..."
+msgstr "Prelucrarea G-Code terminată ..."
-#: FlatCAMObj.py:5037 camlib.py:3456
+#: FlatCAMObj.py:4736 FlatCAMObj.py:4968
+#, python-format
+msgid "G-Code processing failed with error: %s"
+msgstr "Procesarea G-Code a eșuat cu eroarea: %s"
+
+#: FlatCAMObj.py:4788
msgid ""
-"[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only "
-"one value in the Offset field."
+" Wrong value format for self.defaults[\"feedrate_probe\"] or self."
+"options[\"feedrate_probe\"]"
msgstr ""
-"[ERROR_NOTCL] O pereche de valori (x,y) este necesară. Probabil că ai "
-"introdus numai o singură valoare in câmpul Offset."
+" Valoare gresita pt self.defaults[\"feedrate_probe\"] sau self."
+"options[\"feedrate_probe\"]"
-#: FlatCAMObj.py:5059
-msgid "[success] Geometry Offset done."
-msgstr "[success] Ofset Geometrie executat."
+#: FlatCAMObj.py:4799 flatcamTools/ToolSolderPaste.py:1187
+msgid "Cancelled. Empty file, it has no geometry"
+msgstr "Anulat. Fişier gol, nu are geometrie"
-#: FlatCAMObj.py:5630 FlatCAMObj.py:5635 flatcamTools/ToolSolderPaste.py:1373
+#: FlatCAMObj.py:4990 FlatCAMObj.py:4996 FlatCAMObj.py:5148
+msgid "CNCjob created"
+msgstr "CNCjob creat"
+
+#: FlatCAMObj.py:5180 FlatCAMObj.py:5190 camlib.py:3581 camlib.py:3591
+msgid "Scale factor has to be a number: integer or float."
+msgstr "Factorul de scalare trebuie să fie un număr: natural sau real."
+
+#: FlatCAMObj.py:5264
+msgid "Geometry Scale done."
+msgstr "Scalare Geometrie executată."
+
+#: FlatCAMObj.py:5281 camlib.py:3685
+msgid ""
+"An (x,y) pair of values are needed. Probable you entered only one value in "
+"the Offset field."
+msgstr ""
+"O pereche de valori (x,y) este necesară. Probabil că ai introdus numai o "
+"singură valoare in câmpul Offset."
+
+#: FlatCAMObj.py:5335
+msgid "Geometry Offset done."
+msgstr "Ofset Geometrie executat."
+
+#: FlatCAMObj.py:5364
+msgid ""
+"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
+"y)\n"
+"but now there is only one value, not two."
+msgstr ""
+"Parametrul >Schimbare Unealtă X, Y< in Editare -> Peferințele trebuie să fie "
+"in formatul (x, y) \n"
+"dar are o singură valoare in loc de două"
+
+#: FlatCAMObj.py:5905 FlatCAMObj.py:5910 flatcamTools/ToolSolderPaste.py:1393
msgid "Export Machine Code ..."
msgstr "Exporta CNC Cod Masina ..."
-#: FlatCAMObj.py:5641 flatcamTools/ToolSolderPaste.py:1376
-msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
-msgstr "[WARNING_NOTCL] Exportul codului masina CNC a fost anulat ..."
+#: FlatCAMObj.py:5916 flatcamTools/ToolSolderPaste.py:1397
+msgid "Export Machine Code cancelled ..."
+msgstr "Exportul Codului Mașina a fost anulat ..."
-#: FlatCAMObj.py:5658
-#, python-format
-msgid "[success] Machine Code file saved to: %s"
-msgstr "[success] Fişierul cu cod CNC este salvat in: %s"
+#: FlatCAMObj.py:5934
+msgid "Machine Code file saved to"
+msgstr "Fişierul cu cod CNC este salvat in"
-#: FlatCAMObj.py:5680
-#, python-format
-msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
-msgstr "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
+#: FlatCAMObj.py:5958
+#| msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
+msgid "FlatCAMCNNJob.on_edit_code_click() -->"
+msgstr "FlatCAMCNNJob.on_edit_code_click() -->"
-#: FlatCAMObj.py:5797
-#, python-format
+#: FlatCAMObj.py:5966
+msgid "Loaded Machine Code into Code Editor"
+msgstr "S-a încărcat Codul Masina în Editorul Cod"
+
+#: FlatCAMObj.py:6078
+msgid "This CNCJob object can't be processed because it is a"
+msgstr "Acest obiect CNCJob nu poate fi procesat deoarece este un"
+
+#: FlatCAMObj.py:6080
+msgid "CNCJob object"
+msgstr "Obiect CNCJob"
+
+#: FlatCAMObj.py:6132
+msgid "G-code does not have a units code: either G20 or G21"
+msgstr "G-code nu contine codul pt unitati: G20 sau G21"
+
+#: FlatCAMObj.py:6144
+msgid "Cancelled. The Toolchange Custom code is enabled but it's empty."
+msgstr ""
+"Anulat. Codul G-Code din Macro-ul Schimbare unealtă este activat dar nu "
+"contine nimic."
+
+#: FlatCAMObj.py:6150
+msgid "Toolchange G-code was replaced by a custom code."
+msgstr "G-Code-ul pt schimbare unealtă a fost inlocuit cu un cod pesonalizat."
+
+#: FlatCAMObj.py:6177
+msgid "Saved to"
+msgstr "Salvat in"
+
+#: FlatCAMObj.py:6187 FlatCAMObj.py:6197
msgid ""
-"[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s "
-"CNCJob object."
+"The used postprocessor file has to have in it's name: 'toolchange_custom'"
msgstr ""
-"[WARNING_NOTCL] Acest obiect CNCJob nu poate fi procesar deoarece este un "
-"obiect CNCJob tip %s."
+"Postprocesorul folosit trebuie să aibă in numele sau: 'toolchange_custom'"
-#: FlatCAMObj.py:5850
-msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
-msgstr "[ERROR_NOTCL] G-code nu contine codul pt unitati: G20 sau G21"
+#: FlatCAMObj.py:6201
+msgid "There is no postprocessor file."
+msgstr "Nu exista nici-un fişier postprocesor."
-#: FlatCAMObj.py:5863
-msgid ""
-"[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
-"empty."
-msgstr ""
-"[ERROR_NOTCL] Anulat. Codul G-Code din Macro-ul Schimbare unealtă este "
-"activat dar nuc contine nimic."
-
-#: FlatCAMObj.py:5870
-msgid "[success] Toolchange G-code was replaced by a custom code."
-msgstr ""
-"[success] G-Code-ul pt schimbare unealtă a fost inlocuit cu un cod "
-"pesonalizat."
-
-#: FlatCAMObj.py:5884 flatcamTools/ToolSolderPaste.py:1402
-msgid "[WARNING_NOTCL] No such file or directory"
-msgstr "[WARNING_NOTCL] Nu exista un asemenea fişier sau director"
-
-#: FlatCAMObj.py:5908 FlatCAMObj.py:5920
-msgid ""
-"[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
-"'toolchange_custom'"
-msgstr ""
-"[WARNING_NOTCL] Postprocesorul folosit trebuie să aibă in numele sau: "
-"'toolchange_custom'"
-
-#: FlatCAMObj.py:5926
-msgid "[ERROR] There is no postprocessor file."
-msgstr "[ERROR] Nu exista nici-un fişier postprocesor."
+#: FlatCAMProcess.py:172
+msgid "processes running."
+msgstr "procesele care rulează."
#: FlatCAMTranslation.py:91
msgid "The application will restart."
@@ -1689,399 +1729,461 @@ msgstr "Aplică Traducere ..."
msgid "Object renamed from {old} to {new}"
msgstr "Obiectul este redenumit din {old} in {new}"
-#: ObjectCollection.py:765
-#, python-format
-msgid "[ERROR] Cause of error: %s"
-msgstr "[ERROR] Motivul erorii: %s"
+#: ObjectCollection.py:766
+msgid "Cause of error"
+msgstr "Motivul erorii"
-#: camlib.py:197
-msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
-msgstr ""
-"[ERROR_NOTCL] self.solid_geometry nu este tip BaseGeometry sau tip lista."
+#: camlib.py:215
+msgid "self.solid_geometry is neither BaseGeometry or list."
+msgstr "self.solid_geometry nu este tip BaseGeometry sau tip listă."
-#: camlib.py:1405
-msgid "[success] Object was mirrored ..."
-msgstr "[success] Obiectul a fost oglindit ..."
+#: camlib.py:1522
+msgid "Object was mirrored"
+msgstr "Obiectul a fost oglindit"
-#: camlib.py:1407
-msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
-msgstr "[ERROR_NOTCL] Oglindire eșuata. Nici-un obiect nu este selectat ..."
+#: camlib.py:1525
+msgid "Failed to mirror. No object selected"
+msgstr "Oglindire eșuată. Nici-un obiect nu este selectat"
-#: camlib.py:1447
-msgid "[success] Object was rotated ..."
-msgstr "[success] Obiectul a fost rotit ..."
+#: camlib.py:1594
+msgid "Object was rotated"
+msgstr "Obiectul a fost rotit"
-#: camlib.py:1449
-msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
-msgstr "[ERROR_NOTCL] Rotaţie eșuata. Nici-un obiect nu este selectat ..."
+#: camlib.py:1597
+msgid "Failed to rotate. No object selected"
+msgstr "Rotaţie eșuată. Nici-un obiect nu este selectat"
-#: camlib.py:1488
-msgid "[success] Object was skewed ..."
-msgstr "[success] Obiectul a fost deformat ..."
+#: camlib.py:1665
+msgid "Object was skewed"
+msgstr "Obiectul a fost deformat"
-#: camlib.py:1490
-msgid "[ERROR_NOTCL] Failed to skew. No object selected"
-msgstr "[ERROR_NOTCL] Deformare eșuata. Nici-un obiect nu este selectat ..."
+#: camlib.py:1668
+msgid "Failed to skew. No object selected"
+msgstr "Deformare eșuată. Nici-un obiect nu este selectat"
-#: camlib.py:2752 camlib.py:2837
-#, python-format
-msgid "[WARNING] Coordinates missing, line ignored: %s"
-msgstr "[WARNING] Coordonatele lipsesc, linia este ignorata: %s"
+#: camlib.py:2443
+msgid "Gerber processing. Parsing"
+msgstr "Prelucrare Gerber. Analizare"
-#: camlib.py:2753 camlib.py:2838
-msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
-msgstr ""
-"[WARNING_NOTCL] Fişierul Gerber poate fi corrupt. Verificati fişierul!!!"
+#: camlib.py:2443
+msgid "lines"
+msgstr "linii"
-#: camlib.py:2802
-#, python-format
+#: camlib.py:2942 camlib.py:3030
+msgid "Coordinates missing, line ignored"
+msgstr "Coordonatele lipsesc, linia este ignorată"
+
+#: camlib.py:2944 camlib.py:3032
+msgid "GERBER file might be CORRUPT. Check the file !!!"
+msgstr "Fişierul Gerber poate fi corrupt. Verificati fişierul!!!"
+
+#: camlib.py:2994
msgid ""
-"[ERROR] Region does not have enough points. File will be processed but there "
-"are parser errors. Line number: %s"
+"Region does not have enough points. File will be processed but there are "
+"parser errors. Line number"
msgstr ""
-"[ERROR] Regiunea Gerber nu are suficiente puncte. Fişierul va fi procesat "
-"dar sunt erori de parsare. Numărul liniei: %s"
+"Regiunea Gerber nu are suficiente puncte. Fişierul va fi procesat dar sunt "
+"erori de parsare. Numărul liniei"
-#: camlib.py:3194
-#, python-format
+#: camlib.py:3364
+msgid "Gerber processing. Joining"
+msgstr "Prelucrare Gerber. Se combină"
+
+#: camlib.py:3364
+msgid "polygons"
+msgstr "poligoane"
+
+#: camlib.py:3399
+msgid "Gerber Line"
+msgstr "Linia Gerber"
+
+#: camlib.py:3399
+msgid "Gerber Line Content"
+msgstr "Continut linie Gerber"
+
+#: camlib.py:3401
+msgid "Gerber Parser ERROR"
+msgstr "Eroare in parserul Gerber"
+
+#: camlib.py:3649
+msgid "Gerber Scale done."
+msgstr "Scalarea Gerber efectuată."
+
+#: camlib.py:3739
+msgid "Gerber Offset done."
+msgstr "Offsetare Gerber efectuată."
+
+#: camlib.py:3816
+msgid "Gerber Mirror done."
+msgstr "Oglindirea Gerber efectuată."
+
+#: camlib.py:3885
+msgid "Gerber Skew done."
+msgstr "Deformarea Gerber efectuată."
+
+#: camlib.py:3946
+msgid "Gerber Rotate done."
+msgstr "Rotatia Gerber efectuată."
+
+#: camlib.py:4233
+msgid "This is GCODE mark"
+msgstr "Acesta este un marcaj Gerber"
+
+#: camlib.py:4349
msgid ""
-"[ERROR]Gerber Parser ERROR.\n"
-"%s:"
+"No tool diameter info's. See shell.\n"
+"A tool change event: T"
msgstr ""
-"[ERROR] Eroare in parserul Gerber.\n"
-"%s:"
+"Nu există informații despre diametrul uneltei. Vezi Shell.\n"
+"Un eveniment de schimbare a uneltei: T"
-#: camlib.py:3422
-msgid "[success] Gerber Scale done."
-msgstr "[success] Scalarea Gerber efectuata."
-
-#: camlib.py:3492
-msgid "[success] Gerber Offset done."
-msgstr "[success] Offsetare Gerber efectuata."
-
-#: camlib.py:3550
-msgid "[success] Gerber Mirror done."
-msgstr "[success] Oglindirea Gerber efectuata."
-
-#: camlib.py:3600
-msgid "[success] Gerber Skew done."
-msgstr "[success] Deformarea Gerber efectuata."
-
-#: camlib.py:3642
-msgid "[success] Gerber Rotate done."
-msgstr "[success] Rotatia Gerber efectuata."
-
-#: camlib.py:3923
-#, python-format
-msgid "[ERROR_NOTCL] This is GCODE mark: %s"
-msgstr "[ERROR_NOTCL] Acesta este un marcaj Gerber: %s"
-
-#: camlib.py:4038
-#, python-format
+#: camlib.py:4352
msgid ""
-"[WARNING] No tool diameter info's. See shell.\n"
-"A tool change event: T%s was found but the Excellon file have no "
-"informations regarding the tool diameters therefore the application will try "
-"to load it by using some 'fake' diameters.\n"
+"was found but the Excellon file have no informations regarding the tool "
+"diameters therefore the application will try to load it by using some 'fake' "
+"diameters.\n"
"The user needs to edit the resulting Excellon object and change the "
"diameters to reflect the real diameters."
msgstr ""
-"[WARNING] Nu sunt date despre diametrul uneltei. Vezi in Shell.\n"
-"Schimbare Unealtă: T%s a fost gasită dar fisierul Excellon nu are info's "
-"despre diametrele uneltelor prin urmare aplicatia va folosi valori 'false'.\n"
+"a fost gasită dar fisierul Excellon nu are info's despre diametrele "
+"uneltelor prin urmare aplicatia va folosi valori 'false'.\n"
"Userul trebuie să editeze obictul Excellon rezultat si sa ajusteze "
"diametrele a.i sa reflecte diametrele reale."
-#: camlib.py:4502
+#: camlib.py:4807
#, python-brace-format
+#| msgid ""
+#| "[ERROR] Excellon Parser error.\n"
+#| "Parsing Failed. Line {l_nr}: {line}\n"
msgid ""
-"[ERROR] Excellon Parser error.\n"
+"{e_code} Excellon Parser error.\n"
"Parsing Failed. Line {l_nr}: {line}\n"
msgstr ""
-"[ERROR] Eroare in parserul Excellon.\n"
-"Parsare eșuata. Linia {l_nr}: {line}\n"
-"\n"
+"{e_code} Eroare de analiza Excellon.\n"
+"Analizarea a esuat. Linia {l_nr}: {line}\n"
-#: camlib.py:4581
+#: camlib.py:4890
msgid ""
-"[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
-"not having a tool associated.\n"
+"Excellon.create_geometry() -> a drill location was skipped due of not having "
+"a tool associated.\n"
"Check the resulting GCode."
msgstr ""
-"[WARNING] Excellon.create_geometry() -> o locaţie de găurire a fost sarita "
-"deoarece nu are o unealtă asociata.\n"
+"Excellon.create_geometry() -> o locaţie de găurire a fost sarita deoarece nu "
+"are o unealtă asociata.\n"
"Verifică codul G-Code rezultat."
-#: camlib.py:5153
-#, python-format
-msgid "[ERROR] There is no such parameter: %s"
-msgstr "[ERROR] Nu exista un asemenea parametru: %s"
+#: camlib.py:5564
+msgid "There is no such parameter"
+msgstr "Nu exista un asemenea parametru"
-#: camlib.py:5223
+#: camlib.py:5635
msgid ""
-"[WARNING] The Cut Z parameter has positive value. It is the depth value to "
-"drill into material.\n"
+"The Cut Z parameter has positive value. It is the depth value to drill into "
+"material.\n"
"The Cut Z parameter needs to have a negative value, assuming it is a typo "
"therefore the app will convert the value to negative. Check the resulting "
"CNC code (Gcode etc)."
msgstr ""
-"[WARNING] Parametrul >Z tăiere< are o valoare pozitivă. Reprezinta adâncimea "
-"de tăiere in material prin urmare poate fi numai negativ.\n"
+"Parametrul >Z tăiere< are o valoare pozitivă. Reprezinta adâncimea de tăiere "
+"in material prin urmare poate fi numai negativ.\n"
"Se presupune că este o eroare de tastare astfel ca aplicaţia va converti "
"intr-o valoare negativă. Verifică codul masina (G-Code etc) rezultat."
-#: camlib.py:5230 camlib.py:5763 camlib.py:6053
-#, python-format
-msgid ""
-"[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
+#: camlib.py:5643 camlib.py:6316 camlib.py:6658
+msgid "The Cut Z parameter is zero. There will be no cut, skipping file"
msgstr ""
-"[WARNING] Parametrul >Z tăiere< este nul. Nu va fi nici-o tăiere prin urmare "
-"nu procesam fişierul %s"
+"Parametrul >Z tăiere< este nul. Nu va fi nici-o tăiere prin urmare nu "
+"procesam fişierul"
-#: camlib.py:5470 camlib.py:5576 camlib.py:5642
-msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..."
-msgstr "[ERROR_NOTCL] Fişierul Excellon incărcat nu are găuri ..."
+#: camlib.py:5695
+msgid "Creating a list of points to drill..."
+msgstr "Crearea unei liste de puncte pentru găurire ..."
-#: camlib.py:5581
-msgid "[ERROR_NOTCL] Wrong optimization type selected."
-msgstr "[ERROR_NOTCL] Un tip de optimizare incorrect a fost selectat."
+#: camlib.py:5778
+msgid "Starting G-Code"
+msgstr "Începând G-Code"
-#: camlib.py:5751 camlib.py:6041
+#: camlib.py:5874 camlib.py:6020 camlib.py:6126 camlib.py:6425 camlib.py:6767
+msgid "Starting G-Code for tool with diameter"
+msgstr "Pornirea codului G pentru scula cu diametrul"
+
+#: camlib.py:5931 camlib.py:6077 camlib.py:6184
+msgid "G91 coordinates not implemented"
+msgstr "Coordonatele G91 nu au fost implementate"
+
+#: camlib.py:5937 camlib.py:6083 camlib.py:6190
+msgid "The loaded Excellon file has no drills"
+msgstr "Fişierul Excellon incărcat nu are găuri"
+
+#: camlib.py:6089
+msgid "Wrong optimization type selected."
+msgstr "Un tip de optimizare incorrect a fost selectat."
+
+#: camlib.py:6212
+msgid "Finished G-Code generation..."
+msgstr "Generarea G-Code finalizata ..."
+
+#: camlib.py:6289
msgid ""
-"[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
-"combinations of other parameters."
+"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
+"y) \n"
+"but now there is only one value, not two."
msgstr ""
-"[ERROR_NOTCL] Parametrul >Z tăiere< este None sau zero. Cel mai probabil o "
-"combinaţie nefericita de parametri."
+"Parametrul >Schimbare Unealtă X, Y< in Editare -> Peferințe trebuie să fie "
+"in formatul (x, y) \n"
+"dar are o singură valoare in loc de doua."
-#: camlib.py:5756 camlib.py:6046
+#: camlib.py:6302 camlib.py:6644
msgid ""
-"[WARNING] The Cut Z parameter has positive value. It is the depth value to "
-"cut into material.\n"
+"Cut_Z parameter is None or zero. Most likely a bad combinations of other "
+"parameters."
+msgstr ""
+"Parametrul >Z tăiere< este None sau zero. Cel mai probabil o combinaţie "
+"nefericita de parametri."
+
+#: camlib.py:6308 camlib.py:6650
+msgid ""
+"The Cut Z parameter has positive value. It is the depth value to cut into "
+"material.\n"
"The Cut Z parameter needs to have a negative value, assuming it is a typo "
"therefore the app will convert the value to negative.Check the resulting CNC "
"code (Gcode etc)."
msgstr ""
-"[WARNING] Parametrul >Z tăiere< are o valoare pozitivă. Reprezinta adâncimea "
-"de tăiere in material prin urmare poate fi numai negativ.\n"
+"Parametrul >Z tăiere< are o valoare pozitivă. Reprezinta adâncimea de tăiere "
+"in material prin urmare poate fi numai negativ.\n"
"Se presupune că este o eroare de tastare astfel ca aplicaţia va converti "
"intr-o valoare negativă. Verifică codul masina (G-Code etc) rezultat."
-#: camlib.py:5772 camlib.py:6058
-msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
-msgstr "[ERROR_NOTCL] Parametrul >Z deplasare< este None sau zero."
+#: camlib.py:6326 camlib.py:6664
+msgid "Travel Z parameter is None or zero."
+msgstr "Parametrul >Z deplasare< este None sau zero."
-#: camlib.py:5776 camlib.py:6062
+#: camlib.py:6331 camlib.py:6669
msgid ""
-"[WARNING] The Travel Z parameter has negative value. It is the height value "
-"to travel between cuts.\n"
+"The Travel Z parameter has negative value. It is the height value to travel "
+"between cuts.\n"
"The Z Travel parameter needs to have a positive value, assuming it is a typo "
"therefore the app will convert the value to positive.Check the resulting CNC "
"code (Gcode etc)."
msgstr ""
-"[WARNING] Parametrul >Z deplasare< are o valoare negativă. Reprezinta "
-"Înălţimea la care unealtă se deplasează fără să taie prin urmare poate fi "
-"numai pozitiv.\n"
+"Parametrul >Z deplasare< are o valoare negativă. Reprezinta Înălţimea la "
+"care unealtă se deplasează fără să taie prin urmare poate fi numai pozitiv.\n"
"Se presupune că este o eroare de tastare astfel ca aplicaţia va converti "
"intr-o valoare pozitivă. Verifică codul masina (G-Code etc) rezultat."
-#: camlib.py:5783 camlib.py:6069
-#, python-format
-msgid ""
-"[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
+#: camlib.py:6339 camlib.py:6677
+msgid "The Z Travel parameter is zero. This is dangerous, skipping file"
msgstr ""
-"[WARNING] Parametrul >Z deplasare< este zero. Aceasta este periculos, prin "
-"urmare fişierul %s nu se procesează."
+"Parametrul >Z deplasare< este zero. Aceasta este periculos, prin urmare nu "
+"se procesează fişierul"
-#: camlib.py:5936
-#, python-format
-msgid "[ERROR]Expected a Geometry, got %s"
-msgstr "[ERROR] Se astepta o Geometrie, am primit in schimb %s"
+#: camlib.py:6354 camlib.py:6696
+msgid "Indexing geometry before generating G-Code..."
+msgstr "Geometria se indexeaza înainte de a genera G-Code..."
-#: camlib.py:5942
+#: camlib.py:6408 camlib.py:6753
+msgid "Starting G-Code..."
+msgstr "Pornirea G-Code ..."
+
+#: camlib.py:6495 camlib.py:6837
+msgid "Finished G-Code generation"
+msgstr "Generarea G-Code terminată"
+
+#: camlib.py:6497
+msgid "paths traced"
+msgstr "căi trasate"
+
+#: camlib.py:6532
+msgid "Expected a Geometry, got"
+msgstr "Se astepta o Geometrie, am primit in schimb"
+
+#: camlib.py:6539
msgid ""
-"[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without "
+"Trying to generate a CNC Job from a Geometry object without solid_geometry."
+msgstr ""
+"Se încearcă generarea unui CNC Job dintr-un obiect Geometrie fără atributul "
"solid_geometry."
-msgstr ""
-"[ERROR_NOTCL] Se încearcă generarea unui CNC Job dintr-un obiect Geometrie "
-"fără atributul solid_geometry."
-#: camlib.py:5981
-msgid ""
-"[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
-"current_geometry.\n"
-"Raise the value (in module) and try again."
-msgstr ""
-"[ERROR_NOTCL] Valoarea pentru >Offset unealtă< este prea negativă pentru a "
-"fi folosita. \n"
-"Mareste valoarea absoluta și încearcă din nou."
+#: camlib.py:6578
+#, python-format
+#| msgid ""
+#| "[ERROR_NOTCL] Failed.\n"
+#| "%s"
+msgid "[ERROR_NOTCL] %s"
+msgstr "[ERROR_NOTCL] %s"
-#: camlib.py:6215
-msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
-msgstr ""
-"[ERROR_NOTCL] Nu exista date cu privier la unealtă in geometria SolderPaste."
+#: camlib.py:6839
+msgid " paths traced."
+msgstr " căi trasate."
-#: flatcamEditors/FlatCAMExcEditor.py:45 flatcamEditors/FlatCAMExcEditor.py:69
-#: flatcamEditors/FlatCAMExcEditor.py:150
-#: flatcamEditors/FlatCAMExcEditor.py:350
-#: flatcamEditors/FlatCAMExcEditor.py:540
-#: flatcamEditors/FlatCAMGrbEditor.py:237
-#: flatcamEditors/FlatCAMGrbEditor.py:242
+#: camlib.py:6868
+msgid "There is no tool data in the SolderPaste geometry."
+msgstr "Nu există date cu privire la unealtă in Geometria SolderPaste."
+
+#: camlib.py:6955
+msgid "Finished SolderPste G-Code generation"
+msgstr "Generarea G-Code SolderPaste s-a terminat"
+
+#: camlib.py:6957
+msgid "paths traced."
+msgstr "căi trasate."
+
+#: camlib.py:7430 camlib.py:7708 camlib.py:7811 camlib.py:7858
+msgid "G91 coordinates not implemented ..."
+msgstr "Coordonatele G91 nu au fost implementate ..."
+
+#: flatcamEditors/FlatCAMExcEditor.py:45 flatcamEditors/FlatCAMExcEditor.py:70
+#: flatcamEditors/FlatCAMExcEditor.py:152
+#: flatcamEditors/FlatCAMExcEditor.py:356
+#: flatcamEditors/FlatCAMExcEditor.py:548
+#: flatcamEditors/FlatCAMGrbEditor.py:238
+#: flatcamEditors/FlatCAMGrbEditor.py:243
msgid "Click to place ..."
msgstr "Click pt a plasa ..."
-#: flatcamEditors/FlatCAMExcEditor.py:53
-msgid "[WARNING_NOTCL] To add a drill first select a tool"
+#: flatcamEditors/FlatCAMExcEditor.py:54
+msgid "To add a drill first select a tool"
msgstr ""
-"[WARNING_NOTCL] Pentru a adăuga o operaţie de găurire mai intai selectează "
-"un burghiu (unealtă)"
+"Pentru a adăuga o operaţie de găurire mai intai selectează un burghiu "
+"(unealtă)"
-#: flatcamEditors/FlatCAMExcEditor.py:115
-msgid "[success] Done. Drill added."
-msgstr "[success] Executat. Operaţie de găurire adăugată."
+#: flatcamEditors/FlatCAMExcEditor.py:117
+msgid "Done. Drill added."
+msgstr "Executat. Operaţie de găurire adăugată."
-#: flatcamEditors/FlatCAMExcEditor.py:157
-msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
+#: flatcamEditors/FlatCAMExcEditor.py:160
+msgid "To add an Drill Array first select a tool in Tool Table"
msgstr ""
-"[WARNING_NOTCL] Pentru a adăuga o arie de operațiuni de găurire mai intai "
-"selectează un burghiu (unealtă)"
+"Pentru a adăuga o arie de operațiuni de găurire mai intai selectează un "
+"burghiu (unealtă)"
-#: flatcamEditors/FlatCAMExcEditor.py:173
-#: flatcamEditors/FlatCAMExcEditor.py:379
-#: flatcamEditors/FlatCAMExcEditor.py:587
-#: flatcamEditors/FlatCAMExcEditor.py:1083
-#: flatcamEditors/FlatCAMExcEditor.py:1108
-#: flatcamEditors/FlatCAMGrbEditor.py:459
-#: flatcamEditors/FlatCAMGrbEditor.py:1845
-#: flatcamEditors/FlatCAMGrbEditor.py:1873
+#: flatcamEditors/FlatCAMExcEditor.py:176
+#: flatcamEditors/FlatCAMExcEditor.py:386
+#: flatcamEditors/FlatCAMExcEditor.py:596
+#: flatcamEditors/FlatCAMExcEditor.py:1098
+#: flatcamEditors/FlatCAMExcEditor.py:1123
+#: flatcamEditors/FlatCAMGrbEditor.py:462
+#: flatcamEditors/FlatCAMGrbEditor.py:1859
+#: flatcamEditors/FlatCAMGrbEditor.py:1887
msgid "Click on target location ..."
-msgstr "Click pe locatia tinta ..."
+msgstr "Click pe locatia tintă ..."
-#: flatcamEditors/FlatCAMExcEditor.py:190
+#: flatcamEditors/FlatCAMExcEditor.py:193
msgid "Click on the Drill Circular Array Start position"
msgstr "Click pe punctul de Start al ariei de operațiuni de găurire"
-#: flatcamEditors/FlatCAMExcEditor.py:212
-#: flatcamEditors/FlatCAMExcEditor.py:626
-#: flatcamEditors/FlatCAMGrbEditor.py:502
-msgid ""
-"[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
-"separator."
-msgstr ""
-"[ERROR_NOTCL] Valoarea nu este număr Real. Verifică să nu fi folosit virgula "
-"in loc de punct ca și separator decimal."
-
#: flatcamEditors/FlatCAMExcEditor.py:215
-#, python-format
-msgid "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
-msgstr "[ERROR_NOTCL] Valoarea este gresita. Verifică valoarea. %s"
-
-#: flatcamEditors/FlatCAMExcEditor.py:313
-msgid "[WARNING_NOTCL] Too many drills for the selected spacing angle."
+#: flatcamEditors/FlatCAMExcEditor.py:635
+#: flatcamEditors/FlatCAMGrbEditor.py:505
+msgid "The value is not Float. Check for comma instead of dot separator."
msgstr ""
-"[WARNING_NOTCL] Prea multe operațiuni de găurire pentru unghiul selectat."
+"Valoarea nu este număr Real. Verifică să nu fi folosit virgula in loc de "
+"punct ca și separator decimal."
-#: flatcamEditors/FlatCAMExcEditor.py:330
-msgid "[success] Done. Drill Array added."
-msgstr "[success] Executat. Aria de operațiuni de găurire a fost adăugată."
+#: flatcamEditors/FlatCAMExcEditor.py:219
+msgid "The value is mistyped. Check the value"
+msgstr "Valoarea este gresită. Verifică ce ai introdus"
-#: flatcamEditors/FlatCAMExcEditor.py:358
-msgid "[WARNING_NOTCL] To add a slot first select a tool"
-msgstr "[WARNING_NOTCL] Pentru a adăuga un slot mai întâi, selectați o unealtă"
+#: flatcamEditors/FlatCAMExcEditor.py:318
+msgid "Too many drills for the selected spacing angle."
+msgstr "Prea multe operațiuni de găurire pentru unghiul selectat."
-#: flatcamEditors/FlatCAMExcEditor.py:415
-#: flatcamEditors/FlatCAMExcEditor.py:422
-#: flatcamEditors/FlatCAMExcEditor.py:690
-#: flatcamEditors/FlatCAMExcEditor.py:697
-msgid "[WARNING_NOTCL] Value is missing or wrong format. Add it and retry."
+#: flatcamEditors/FlatCAMExcEditor.py:336
+msgid "Done. Drill Array added."
+msgstr "Executat. Aria de operațiuni de găurire a fost adăugată."
+
+#: flatcamEditors/FlatCAMExcEditor.py:365
+msgid "To add a slot first select a tool"
+msgstr "Pentru a adăuga un slot mai întâi, selectați o unealtă"
+
+#: flatcamEditors/FlatCAMExcEditor.py:423
+#: flatcamEditors/FlatCAMExcEditor.py:430
+#: flatcamEditors/FlatCAMExcEditor.py:701
+#: flatcamEditors/FlatCAMExcEditor.py:708
+msgid "Value is missing or wrong format. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Valoarea lipsește sau formatul greșit. Adăugați-l și "
-"încercați din nou."
+"Valoarea lipsește sau formatul greșit. Adăugați-l și încercați din nou."
-#: flatcamEditors/FlatCAMExcEditor.py:521
-msgid "[success] Done. Adding Slot completed."
-msgstr "[success] Terminat. Adăugarea slotului finalizată."
+#: flatcamEditors/FlatCAMExcEditor.py:529
+msgid "Done. Adding Slot completed."
+msgstr "Terminat. Adăugarea slotului finalizată."
-#: flatcamEditors/FlatCAMExcEditor.py:547
-msgid "[WARNING_NOTCL] To add an Slot Array first select a tool in Tool Table"
+#: flatcamEditors/FlatCAMExcEditor.py:556
+msgid "To add an Slot Array first select a tool in Tool Table"
msgstr ""
-"[WARNING_NOTCL] Pentru a adăuga o arie de sloturi, selectați mai întâi un "
-"instrument din tabelul instrumentelor"
+"Pentru a adăuga o arie de sloturi, selectați mai întâi o unealtă din tabelul "
+"de unelte"
-#: flatcamEditors/FlatCAMExcEditor.py:604
+#: flatcamEditors/FlatCAMExcEditor.py:613
msgid "Click on the Slot Circular Array Start position"
msgstr "Faceți clic pe poziția de pornire a ariei circulare de slotuluri"
-#: flatcamEditors/FlatCAMExcEditor.py:629
-#: flatcamEditors/FlatCAMGrbEditor.py:505
-msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
-msgstr "[ERROR_NOTCL] Valoarea este gresita. Verifică ce ai introdus."
+#: flatcamEditors/FlatCAMExcEditor.py:639
+#: flatcamEditors/FlatCAMGrbEditor.py:509
+msgid "The value is mistyped. Check the value."
+msgstr "Valoarea este gresită. Verifică ce ai introdus."
-#: flatcamEditors/FlatCAMExcEditor.py:807
-msgid "[WARNING_NOTCL] Too many Slots for the selected spacing angle."
-msgstr ""
-"[WARNING_NOTCL] Prea multe sloturi pentru unghiul de distanțare selectat."
+#: flatcamEditors/FlatCAMExcEditor.py:818
+msgid "Too many Slots for the selected spacing angle."
+msgstr "Prea multe sloturi pentru unghiul de distanțare selectat."
-#: flatcamEditors/FlatCAMExcEditor.py:829
-msgid "[success] Done. Slot Array added."
-msgstr "[success] Terminat. S-a adăugat aria de sloturi."
+#: flatcamEditors/FlatCAMExcEditor.py:841
+msgid "Done. Slot Array added."
+msgstr "Terminat. S-a adăugat aria de sloturi."
-#: flatcamEditors/FlatCAMExcEditor.py:846
+#: flatcamEditors/FlatCAMExcEditor.py:858
msgid "Click on the Drill(s) to resize ..."
msgstr ""
"Click pe operațiunile de găurire care se dorește să fie redimensionate ..."
-#: flatcamEditors/FlatCAMExcEditor.py:876
-msgid ""
-"[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
+#: flatcamEditors/FlatCAMExcEditor.py:888
+msgid "Resize drill(s) failed. Please enter a diameter for resize."
msgstr ""
-"[ERROR_NOTCL] Redimensionarea operațiunilor de găurire a eșuat. Adaugă o "
-"valoare pentru dimetrul la care se face redimensionarea."
+"Redimensionarea operațiunilor de găurire a eșuat. Adaugă o valoare pentru "
+"dimetrul la care se face redimensionarea."
-#: flatcamEditors/FlatCAMExcEditor.py:966
-#: flatcamEditors/FlatCAMExcEditor.py:1035
-msgid "[ERROR_NOTCL] Cancelled."
-msgstr "[ERROR_NOTCL] Anulat."
+#: flatcamEditors/FlatCAMExcEditor.py:978
+#: flatcamEditors/FlatCAMExcEditor.py:1048
+msgid "Cancelled."
+msgstr "Anulat."
-#: flatcamEditors/FlatCAMExcEditor.py:1055
-msgid "[success] Done. Drill/Slot Resize completed."
-msgstr "[success] Executat. Redimensionarea Perforării / slotului finalizată."
+#: flatcamEditors/FlatCAMExcEditor.py:1069
+msgid "Drill/Slot Resize completed."
+msgstr "Executat. Redimensionarea Perforării / slotului finalizată."
-#: flatcamEditors/FlatCAMExcEditor.py:1057
-msgid "[WARNING_NOTCL] Cancelled. No drills/slots selected for resize ..."
-msgstr ""
-"[WARNING_NOTCL] Anulat. Nu au fost selectate găuri / sloturi pentru "
-"redimensionare ..."
+#: flatcamEditors/FlatCAMExcEditor.py:1072
+msgid "Cancelled. No drills/slots selected for resize ..."
+msgstr "Anulat. Nu au fost selectate găuri / sloturi pentru redimensionare ..."
-#: flatcamEditors/FlatCAMExcEditor.py:1085
-#: flatcamEditors/FlatCAMGrbEditor.py:1847
+#: flatcamEditors/FlatCAMExcEditor.py:1100
+#: flatcamEditors/FlatCAMGrbEditor.py:1861
msgid "Click on reference location ..."
msgstr "Click pe locatia de referinţă ..."
-#: flatcamEditors/FlatCAMExcEditor.py:1140
-msgid "[success] Done. Drill(s) Move completed."
-msgstr "[success] Executat. Operatiile de găurire au fost mutate."
+#: flatcamEditors/FlatCAMExcEditor.py:1156
+msgid "Done. Drill(s) Move completed."
+msgstr "Executat. Operatiile de găurire au fost mutate."
-#: flatcamEditors/FlatCAMExcEditor.py:1237
-msgid "[success] Done. Drill(s) copied."
-msgstr "[success] Executat. Operatiile de găurire au fost copiate."
+#: flatcamEditors/FlatCAMExcEditor.py:1254
+msgid "Done. Drill(s) copied."
+msgstr "Executat. Operatiile de găurire au fost copiate."
-#: flatcamEditors/FlatCAMExcEditor.py:1454 flatcamGUI/FlatCAMGUI.py:5445
+#: flatcamEditors/FlatCAMExcEditor.py:1473 flatcamGUI/FlatCAMGUI.py:5510
msgid "Excellon Editor"
msgstr "Editor Excellon"
-#: flatcamEditors/FlatCAMExcEditor.py:1461
-#: flatcamEditors/FlatCAMGrbEditor.py:2341
+#: flatcamEditors/FlatCAMExcEditor.py:1480
+#: flatcamEditors/FlatCAMGrbEditor.py:2361
msgid "Name:"
msgstr "Nume:"
-#: flatcamEditors/FlatCAMExcEditor.py:1467 flatcamGUI/ObjectUI.py:534
-#: flatcamGUI/ObjectUI.py:856 flatcamTools/ToolNonCopperClear.py:96
+#: flatcamEditors/FlatCAMExcEditor.py:1486 flatcamGUI/ObjectUI.py:593
+#: flatcamGUI/ObjectUI.py:919 flatcamTools/ToolNonCopperClear.py:96
#: flatcamTools/ToolPaint.py:95 flatcamTools/ToolSolderPaste.py:70
msgid "Tools Table"
msgstr "Tabela Unelte"
-#: flatcamEditors/FlatCAMExcEditor.py:1469 flatcamGUI/ObjectUI.py:536
+#: flatcamEditors/FlatCAMExcEditor.py:1488 flatcamGUI/ObjectUI.py:595
msgid ""
"Tools in this Excellon object\n"
"when are used for drilling."
@@ -2089,11 +2191,11 @@ msgstr ""
"Burghie (unelte) in acest obiect Excellon\n"
"când se face găurire."
-#: flatcamEditors/FlatCAMExcEditor.py:1489
+#: flatcamEditors/FlatCAMExcEditor.py:1508
msgid "Add/Delete Tool"
msgstr "Adaugă/Șterge Unealta"
-#: flatcamEditors/FlatCAMExcEditor.py:1491
+#: flatcamEditors/FlatCAMExcEditor.py:1510
msgid ""
"Add/Delete a tool to the tool list\n"
"for this Excellon object."
@@ -2101,20 +2203,21 @@ msgstr ""
"Adaugă/Șterge o unealtă la lista de unelte\n"
"pentru acest obiect Excellon."
-#: flatcamEditors/FlatCAMExcEditor.py:1499
-msgid "Tool Dia:"
-msgstr "Dia. Unealtă:"
+#: flatcamEditors/FlatCAMExcEditor.py:1518 flatcamGUI/ObjectUI.py:1037
+#: flatcamTools/ToolNonCopperClear.py:212 flatcamTools/ToolPaint.py:162
+msgid "Tool Dia"
+msgstr "Dia Unealtă"
-#: flatcamEditors/FlatCAMExcEditor.py:1501 flatcamGUI/FlatCAMGUI.py:5474
-#: flatcamGUI/ObjectUI.py:977
+#: flatcamEditors/FlatCAMExcEditor.py:1520 flatcamGUI/FlatCAMGUI.py:5539
+#: flatcamGUI/ObjectUI.py:1040
msgid "Diameter for the new tool"
msgstr "Diametru pentru noua unealtă (burghiu, freza)"
-#: flatcamEditors/FlatCAMExcEditor.py:1509
+#: flatcamEditors/FlatCAMExcEditor.py:1528
msgid "Add Tool"
msgstr "Adaugă Unealta"
-#: flatcamEditors/FlatCAMExcEditor.py:1511
+#: flatcamEditors/FlatCAMExcEditor.py:1530
msgid ""
"Add a new tool to the tool list\n"
"with the diameter specified above."
@@ -2122,11 +2225,11 @@ msgstr ""
"Adaugă o unealtă noua la lista de unelte\n"
"cu diametrul specificat deasupra."
-#: flatcamEditors/FlatCAMExcEditor.py:1523
+#: flatcamEditors/FlatCAMExcEditor.py:1542
msgid "Delete Tool"
msgstr "Șterge Unealta"
-#: flatcamEditors/FlatCAMExcEditor.py:1525
+#: flatcamEditors/FlatCAMExcEditor.py:1544
msgid ""
"Delete a tool in the tool list\n"
"by selecting a row in the tool table."
@@ -2134,80 +2237,83 @@ msgstr ""
"Șterge o unealtă in lista de unelte\n"
"prin selectarea unei linii in tabela de unelte."
-#: flatcamEditors/FlatCAMExcEditor.py:1543
+#: flatcamEditors/FlatCAMExcEditor.py:1562
msgid "Resize Drill(s)"
msgstr "Redimensionare operațiuni de găurire"
-#: flatcamEditors/FlatCAMExcEditor.py:1545
+#: flatcamEditors/FlatCAMExcEditor.py:1564
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."
-#: flatcamEditors/FlatCAMExcEditor.py:1552
-msgid "Resize Dia:"
-msgstr "Redimensionare Dia:"
+#: flatcamEditors/FlatCAMExcEditor.py:1571
+msgid "Resize Dia"
+msgstr "Redimens. Dia"
-#: flatcamEditors/FlatCAMExcEditor.py:1554
+#: flatcamEditors/FlatCAMExcEditor.py:1573
msgid "Diameter to resize to."
msgstr "Diametrul la care se face redimensionarea."
-#: flatcamEditors/FlatCAMExcEditor.py:1562
+#: flatcamEditors/FlatCAMExcEditor.py:1581
msgid "Resize"
msgstr "Redimensionează"
-#: flatcamEditors/FlatCAMExcEditor.py:1564
+#: flatcamEditors/FlatCAMExcEditor.py:1583
msgid "Resize drill(s)"
msgstr "Redimensionează op. de găurire."
-#: flatcamEditors/FlatCAMExcEditor.py:1589 flatcamGUI/FlatCAMGUI.py:1692
+#: flatcamEditors/FlatCAMExcEditor.py:1608 flatcamGUI/FlatCAMGUI.py:1710
msgid "Add Drill Array"
msgstr "Adaugă o arie de op. găurire"
-#: flatcamEditors/FlatCAMExcEditor.py:1591
+#: flatcamEditors/FlatCAMExcEditor.py:1610
msgid "Add an array of drills (linear or circular array)"
msgstr "Adaugă o arie de operațiuni de găurire (arie lineara sau circulara)."
-#: flatcamEditors/FlatCAMExcEditor.py:1597
+#: flatcamEditors/FlatCAMExcEditor.py:1616
msgid ""
"Select the type of drills array to create.\n"
"It can be Linear X(Y) or Circular"
msgstr ""
"Selectează tipul de arii de operațiuni de găurire.\n"
-"Poate fi Liniar X(Y) sau Circular."
+"Poate fi Liniar X(Y) sau Circular"
-#: flatcamEditors/FlatCAMExcEditor.py:1600
-#: flatcamEditors/FlatCAMExcEditor.py:1802
-#: flatcamEditors/FlatCAMGrbEditor.py:2627
+#: flatcamEditors/FlatCAMExcEditor.py:1619
+#: flatcamEditors/FlatCAMExcEditor.py:1821
+#: flatcamEditors/FlatCAMGrbEditor.py:2647
msgid "Linear"
msgstr "Liniar"
-#: flatcamEditors/FlatCAMExcEditor.py:1601
-#: flatcamEditors/FlatCAMExcEditor.py:1803
-#: flatcamEditors/FlatCAMGrbEditor.py:2628
+#: flatcamEditors/FlatCAMExcEditor.py:1620
+#: flatcamEditors/FlatCAMExcEditor.py:1822
+#: flatcamEditors/FlatCAMGrbEditor.py:2648 flatcamGUI/FlatCAMGUI.py:6460
+#: flatcamTools/ToolNonCopperClear.py:203
msgid "Circular"
msgstr "Circular"
-#: flatcamEditors/FlatCAMExcEditor.py:1609
-msgid "Nr of drills:"
+#: flatcamEditors/FlatCAMExcEditor.py:1628 flatcamGUI/FlatCAMGUI.py:5549
+msgid "Nr of drills"
msgstr "Nr. op. găurire"
-#: flatcamEditors/FlatCAMExcEditor.py:1610 flatcamGUI/FlatCAMGUI.py:5486
+#: flatcamEditors/FlatCAMExcEditor.py:1629 flatcamGUI/FlatCAMGUI.py:5551
msgid "Specify how many drills to be in the array."
msgstr "Specifica cate operațiuni de găurire să fie incluse in arie."
-#: flatcamEditors/FlatCAMExcEditor.py:1627
-#: flatcamEditors/FlatCAMExcEditor.py:1674
-#: flatcamEditors/FlatCAMExcEditor.py:1738
-#: flatcamEditors/FlatCAMExcEditor.py:1829
-#: flatcamEditors/FlatCAMExcEditor.py:1876
-msgid "Direction:"
-msgstr "Direcţie:"
+#: flatcamEditors/FlatCAMExcEditor.py:1646
+#: flatcamEditors/FlatCAMExcEditor.py:1693
+#: flatcamEditors/FlatCAMExcEditor.py:1757
+#: flatcamEditors/FlatCAMExcEditor.py:1848
+#: flatcamEditors/FlatCAMExcEditor.py:1895
+#: flatcamEditors/FlatCAMGrbEditor.py:2674
+#: flatcamEditors/FlatCAMGrbEditor.py:2719 flatcamGUI/FlatCAMGUI.py:5643
+msgid "Direction"
+msgstr "Direcţie"
-#: flatcamEditors/FlatCAMExcEditor.py:1629
-#: flatcamEditors/FlatCAMExcEditor.py:1831
-#: flatcamEditors/FlatCAMGrbEditor.py:2656 flatcamGUI/FlatCAMGUI.py:4652
-#: flatcamGUI/FlatCAMGUI.py:5501 flatcamGUI/FlatCAMGUI.py:5632
+#: flatcamEditors/FlatCAMExcEditor.py:1648
+#: flatcamEditors/FlatCAMExcEditor.py:1850
+#: flatcamEditors/FlatCAMGrbEditor.py:2676 flatcamGUI/FlatCAMGUI.py:4717
+#: flatcamGUI/FlatCAMGUI.py:5566 flatcamGUI/FlatCAMGUI.py:5697
msgid ""
"Direction on which the linear array is oriented:\n"
"- 'X' - horizontal axis \n"
@@ -2219,62 +2325,59 @@ msgstr ""
"- 'Y' - pe axa verticala sau \n"
"- 'Unghi' - un unghi particular pentru inclinatia ariei"
-#: flatcamEditors/FlatCAMExcEditor.py:1636
-#: flatcamEditors/FlatCAMExcEditor.py:1747
-#: flatcamEditors/FlatCAMExcEditor.py:1838
-#: flatcamEditors/FlatCAMGrbEditor.py:2663 flatcamGUI/FlatCAMGUI.py:4658
-#: flatcamGUI/FlatCAMGUI.py:5507 flatcamGUI/FlatCAMGUI.py:5587
-#: flatcamGUI/FlatCAMGUI.py:5638
+#: flatcamEditors/FlatCAMExcEditor.py:1655
+#: flatcamEditors/FlatCAMExcEditor.py:1766
+#: flatcamEditors/FlatCAMExcEditor.py:1857
+#: flatcamEditors/FlatCAMGrbEditor.py:2683 flatcamGUI/FlatCAMGUI.py:4723
+#: flatcamGUI/FlatCAMGUI.py:5572 flatcamGUI/FlatCAMGUI.py:5652
+#: flatcamGUI/FlatCAMGUI.py:5703
msgid "X"
msgstr "X"
-#: flatcamEditors/FlatCAMExcEditor.py:1637
-#: flatcamEditors/FlatCAMExcEditor.py:1748
-#: flatcamEditors/FlatCAMExcEditor.py:1839
-#: flatcamEditors/FlatCAMGrbEditor.py:2664 flatcamGUI/FlatCAMGUI.py:4659
-#: flatcamGUI/FlatCAMGUI.py:5508 flatcamGUI/FlatCAMGUI.py:5588
-#: flatcamGUI/FlatCAMGUI.py:5639
+#: flatcamEditors/FlatCAMExcEditor.py:1656
+#: flatcamEditors/FlatCAMExcEditor.py:1767
+#: flatcamEditors/FlatCAMExcEditor.py:1858
+#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:4724
+#: flatcamGUI/FlatCAMGUI.py:5573 flatcamGUI/FlatCAMGUI.py:5653
+#: flatcamGUI/FlatCAMGUI.py:5704
msgid "Y"
msgstr "Y"
-#: flatcamEditors/FlatCAMExcEditor.py:1638
-#: flatcamEditors/FlatCAMExcEditor.py:1749
-#: flatcamEditors/FlatCAMExcEditor.py:1840
-#: flatcamEditors/FlatCAMGrbEditor.py:2665
-#: flatcamEditors/FlatCAMGrbEditor.py:2678
-#: flatcamEditors/FlatCAMGrbEditor.py:2714 flatcamGUI/FlatCAMGUI.py:4660
-#: flatcamGUI/FlatCAMGUI.py:4677 flatcamGUI/FlatCAMGUI.py:5509
-#: flatcamGUI/FlatCAMGUI.py:5526 flatcamGUI/FlatCAMGUI.py:5589
-#: flatcamGUI/FlatCAMGUI.py:5594 flatcamGUI/FlatCAMGUI.py:5640
-#: flatcamGUI/FlatCAMGUI.py:5657 flatcamTools/ToolTransform.py:68
+#: flatcamEditors/FlatCAMExcEditor.py:1657
+#: flatcamEditors/FlatCAMExcEditor.py:1671
+#: flatcamEditors/FlatCAMExcEditor.py:1705
+#: flatcamEditors/FlatCAMExcEditor.py:1768
+#: flatcamEditors/FlatCAMExcEditor.py:1772
+#: flatcamEditors/FlatCAMExcEditor.py:1859
+#: flatcamEditors/FlatCAMExcEditor.py:1873
+#: flatcamEditors/FlatCAMExcEditor.py:1907
+#: flatcamEditors/FlatCAMGrbEditor.py:2685
+#: flatcamEditors/FlatCAMGrbEditor.py:2698
+#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/FlatCAMGUI.py:4725
+#: flatcamGUI/FlatCAMGUI.py:4742 flatcamGUI/FlatCAMGUI.py:5574
+#: flatcamGUI/FlatCAMGUI.py:5591 flatcamGUI/FlatCAMGUI.py:5654
+#: flatcamGUI/FlatCAMGUI.py:5659 flatcamGUI/FlatCAMGUI.py:5705
+#: flatcamGUI/FlatCAMGUI.py:5722 flatcamTools/ToolTransform.py:68
msgid "Angle"
msgstr "Unghi"
-#: flatcamEditors/FlatCAMExcEditor.py:1642
-#: flatcamEditors/FlatCAMExcEditor.py:1844
-msgid "Pitch:"
-msgstr "Pas:"
+#: flatcamEditors/FlatCAMExcEditor.py:1661
+#: flatcamEditors/FlatCAMExcEditor.py:1863
+#: flatcamEditors/FlatCAMGrbEditor.py:2689 flatcamGUI/FlatCAMGUI.py:4731
+#: flatcamGUI/FlatCAMGUI.py:5711
+msgid "Pitch"
+msgstr "Pas"
-#: flatcamEditors/FlatCAMExcEditor.py:1644
-#: flatcamEditors/FlatCAMExcEditor.py:1846
-#: flatcamEditors/FlatCAMGrbEditor.py:2671 flatcamGUI/FlatCAMGUI.py:4668
-#: flatcamGUI/FlatCAMGUI.py:5517 flatcamGUI/FlatCAMGUI.py:5648
+#: flatcamEditors/FlatCAMExcEditor.py:1663
+#: flatcamEditors/FlatCAMExcEditor.py:1865
+#: flatcamEditors/FlatCAMGrbEditor.py:2691 flatcamGUI/FlatCAMGUI.py:4733
+#: flatcamGUI/FlatCAMGUI.py:5582 flatcamGUI/FlatCAMGUI.py:5713
msgid "Pitch = Distance between elements of the array."
msgstr "Pas = Distanta între elementele ariei."
-#: flatcamEditors/FlatCAMExcEditor.py:1652
-#: flatcamEditors/FlatCAMExcEditor.py:1686
-#: flatcamEditors/FlatCAMExcEditor.py:1753
-#: flatcamEditors/FlatCAMExcEditor.py:1854
-#: flatcamEditors/FlatCAMExcEditor.py:1888
-#: flatcamEditors/FlatCAMGeoEditor.py:667
-#: flatcamEditors/FlatCAMGrbEditor.py:4826
-msgid "Angle:"
-msgstr "Unghi:"
-
-#: flatcamEditors/FlatCAMExcEditor.py:1654
-#: flatcamEditors/FlatCAMExcEditor.py:1856
-#: flatcamEditors/FlatCAMGrbEditor.py:2680
+#: flatcamEditors/FlatCAMExcEditor.py:1673
+#: flatcamEditors/FlatCAMExcEditor.py:1875
+#: flatcamEditors/FlatCAMGrbEditor.py:2700
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -2286,48 +2389,48 @@ msgstr ""
"Val minima este: -359.99 grade.\n"
"Val maxima este: 360.00 grade."
-#: flatcamEditors/FlatCAMExcEditor.py:1675
-#: flatcamEditors/FlatCAMExcEditor.py:1877
-#: flatcamEditors/FlatCAMGrbEditor.py:2701
+#: flatcamEditors/FlatCAMExcEditor.py:1694
+#: flatcamEditors/FlatCAMExcEditor.py:1896
+#: flatcamEditors/FlatCAMGrbEditor.py:2721
msgid ""
"Direction for circular array.Can be CW = clockwise or CCW = counter "
"clockwise."
msgstr ""
-"Directia pentru aria circulara. Poate fi CW = in sensul acelor de ceasornic "
-"sau CCW = invers acelor de ceasornic"
+"Directia pentru aria circulară. Poate fi CW = in sensul acelor de ceasornic "
+"sau CCW = invers acelor de ceasornic."
-#: flatcamEditors/FlatCAMExcEditor.py:1682
-#: flatcamEditors/FlatCAMExcEditor.py:1884
-#: flatcamEditors/FlatCAMGrbEditor.py:2709 flatcamGUI/FlatCAMGUI.py:4696
-#: flatcamGUI/FlatCAMGUI.py:5087 flatcamGUI/FlatCAMGUI.py:5545
-#: flatcamGUI/FlatCAMGUI.py:5676 flatcamGUI/FlatCAMGUI.py:5878
+#: flatcamEditors/FlatCAMExcEditor.py:1701
+#: flatcamEditors/FlatCAMExcEditor.py:1903
+#: flatcamEditors/FlatCAMGrbEditor.py:2729 flatcamGUI/FlatCAMGUI.py:4761
+#: flatcamGUI/FlatCAMGUI.py:5152 flatcamGUI/FlatCAMGUI.py:5610
+#: flatcamGUI/FlatCAMGUI.py:5741 flatcamGUI/FlatCAMGUI.py:5943
msgid "CW"
msgstr "Orar"
-#: flatcamEditors/FlatCAMExcEditor.py:1683
-#: flatcamEditors/FlatCAMExcEditor.py:1885
-#: flatcamEditors/FlatCAMGrbEditor.py:2710 flatcamGUI/FlatCAMGUI.py:4697
-#: flatcamGUI/FlatCAMGUI.py:5088 flatcamGUI/FlatCAMGUI.py:5546
-#: flatcamGUI/FlatCAMGUI.py:5677 flatcamGUI/FlatCAMGUI.py:5879
+#: flatcamEditors/FlatCAMExcEditor.py:1702
+#: flatcamEditors/FlatCAMExcEditor.py:1904
+#: flatcamEditors/FlatCAMGrbEditor.py:2730 flatcamGUI/FlatCAMGUI.py:4762
+#: flatcamGUI/FlatCAMGUI.py:5153 flatcamGUI/FlatCAMGUI.py:5611
+#: flatcamGUI/FlatCAMGUI.py:5742 flatcamGUI/FlatCAMGUI.py:5944
msgid "CCW"
msgstr "Antiorar"
-#: flatcamEditors/FlatCAMExcEditor.py:1687
-#: flatcamEditors/FlatCAMExcEditor.py:1889
-#: flatcamEditors/FlatCAMGrbEditor.py:2716 flatcamGUI/FlatCAMGUI.py:4679
-#: flatcamGUI/FlatCAMGUI.py:4705 flatcamGUI/FlatCAMGUI.py:5528
-#: flatcamGUI/FlatCAMGUI.py:5554 flatcamGUI/FlatCAMGUI.py:5659
-#: flatcamGUI/FlatCAMGUI.py:5685
+#: flatcamEditors/FlatCAMExcEditor.py:1706
+#: flatcamEditors/FlatCAMExcEditor.py:1908
+#: flatcamEditors/FlatCAMGrbEditor.py:2736 flatcamGUI/FlatCAMGUI.py:4744
+#: flatcamGUI/FlatCAMGUI.py:4770 flatcamGUI/FlatCAMGUI.py:5593
+#: flatcamGUI/FlatCAMGUI.py:5619 flatcamGUI/FlatCAMGUI.py:5724
+#: flatcamGUI/FlatCAMGUI.py:5750
msgid "Angle at which each element in circular array is placed."
msgstr ""
"Unghiul la care fiecare element al ariei circulare este plasat fata de "
"originea ariei."
-#: flatcamEditors/FlatCAMExcEditor.py:1717
+#: flatcamEditors/FlatCAMExcEditor.py:1736
msgid "Slot Parameters"
msgstr "Parametrii pt slot"
-#: flatcamEditors/FlatCAMExcEditor.py:1719
+#: flatcamEditors/FlatCAMExcEditor.py:1738
msgid ""
"Parameters for adding a slot (hole with oval shape)\n"
"either single or as an part of an array."
@@ -2335,15 +2438,16 @@ msgstr ""
"Parametri pentru adăugarea unui slot (gaură cu formă ovală)\n"
"fie single sau ca parte a unei arii."
-#: flatcamEditors/FlatCAMExcEditor.py:1728
-msgid "Length:"
-msgstr "Lungime:"
+#: flatcamEditors/FlatCAMExcEditor.py:1747 flatcamGUI/FlatCAMGUI.py:5632
+#: flatcamTools/ToolProperties.py:350
+msgid "Length"
+msgstr "Lungime"
-#: flatcamEditors/FlatCAMExcEditor.py:1730 flatcamGUI/FlatCAMGUI.py:5569
+#: flatcamEditors/FlatCAMExcEditor.py:1749 flatcamGUI/FlatCAMGUI.py:5634
msgid "Length = The length of the slot."
msgstr "Lungime = Lungimea slotului."
-#: flatcamEditors/FlatCAMExcEditor.py:1740 flatcamGUI/FlatCAMGUI.py:5580
+#: flatcamEditors/FlatCAMExcEditor.py:1759 flatcamGUI/FlatCAMGUI.py:5645
msgid ""
"Direction on which the slot is oriented:\n"
"- 'X' - horizontal axis \n"
@@ -2355,7 +2459,7 @@ msgstr ""
"- „Y” - axa verticală sau\n"
"- „Unghi” - un unghi personalizat pentru înclinarea slotului"
-#: flatcamEditors/FlatCAMExcEditor.py:1755 flatcamGUI/FlatCAMGUI.py:5596
+#: flatcamEditors/FlatCAMExcEditor.py:1774 flatcamGUI/FlatCAMGUI.py:5661
msgid ""
"Angle at which the slot is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -2367,15 +2471,15 @@ msgstr ""
"Valoarea minimă este: -359,99 grade.\n"
"Valoarea maximă este: 360,00 grade."
-#: flatcamEditors/FlatCAMExcEditor.py:1788
+#: flatcamEditors/FlatCAMExcEditor.py:1807
msgid "Slot Array Parameters"
msgstr "Parametri Arie sloturi"
-#: flatcamEditors/FlatCAMExcEditor.py:1790
+#: flatcamEditors/FlatCAMExcEditor.py:1809
msgid "Parameters for the array of slots (linear or circular array)"
msgstr "Parametri pentru Aria de sloturi (arie circulară sau liniară)"
-#: flatcamEditors/FlatCAMExcEditor.py:1799
+#: flatcamEditors/FlatCAMExcEditor.py:1818
msgid ""
"Select the type of slot array to create.\n"
"It can be Linear X(Y) or Circular"
@@ -2383,77 +2487,71 @@ msgstr ""
"Selectați tipul de slot pentru creare.\n"
"Poate fi liniar X (Y) sau circular"
-#: flatcamEditors/FlatCAMExcEditor.py:1811
-msgid "Nr of slots:"
-msgstr "Nr de sloturi:"
+#: flatcamEditors/FlatCAMExcEditor.py:1830 flatcamGUI/FlatCAMGUI.py:5683
+msgid "Nr of slots"
+msgstr "Nr de sloturi"
-#: flatcamEditors/FlatCAMExcEditor.py:1812 flatcamGUI/FlatCAMGUI.py:5620
+#: flatcamEditors/FlatCAMExcEditor.py:1831 flatcamGUI/FlatCAMGUI.py:5685
msgid "Specify how many slots to be in the array."
msgstr "Specificați câte sloturi trebuie să fie în arie."
-#: flatcamEditors/FlatCAMExcEditor.py:2409
+#: flatcamEditors/FlatCAMExcEditor.py:2428
msgid ""
-"[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
+"Tool already in the original or actual tool list.\n"
"Save and reedit Excellon if you need to add this tool. "
msgstr ""
-"[WARNING_NOTCL] Unealta este deja in lista originala sau actuala de unelte.\n"
-"Salvează și reeditează obiectul Excellon daca ai nevoie să adaugi aceasta "
-"unealtă."
+"Unealta este deja in lista originală sau actuală de unelte.\n"
+"Salvează și reeditează obiectul Excellon dacă ai nevoie să adaugi această "
+"unealtă"
-#: flatcamEditors/FlatCAMExcEditor.py:2418 flatcamGUI/FlatCAMGUI.py:3134
-#, python-brace-format
-msgid "[success] Added new tool with dia: {dia} {units}"
-msgstr "[success] O noua unealtă este adăugată cu diametrul: {dia} {units}"
+#: flatcamEditors/FlatCAMExcEditor.py:2437
+msgid "Added new tool with dia"
+msgstr "O nouă unealtă este adăugată cu diametrul"
-#: flatcamEditors/FlatCAMExcEditor.py:2450
-msgid "[WARNING_NOTCL] Select a tool in Tool Table"
-msgstr "[WARNING_NOTCL] Selectează o unealtă in Tabela de Unelte"
+#: flatcamEditors/FlatCAMExcEditor.py:2469
+msgid "Select a tool in Tool Table"
+msgstr "Selectează o unealtă in Tabela de Unelte"
-#: flatcamEditors/FlatCAMExcEditor.py:2482
-#, python-brace-format
-msgid "[success] Deleted tool with dia: {del_dia} {units}"
-msgstr "[success] Unealta stearsa cu diametrul: {del_dia} {units}"
+#: flatcamEditors/FlatCAMExcEditor.py:2502
+msgid "Deleted tool with diameter"
+msgstr "Unealtă ștearsă cu diametrul"
-#: flatcamEditors/FlatCAMExcEditor.py:2633
-msgid "[success] Done. Tool edit completed."
-msgstr "[success] Terminat. Editarea uneltei a fost finalizată."
+#: flatcamEditors/FlatCAMExcEditor.py:2652
+msgid "Done. Tool edit completed."
+msgstr "Terminat. Editarea uneltei a fost finalizată."
-#: flatcamEditors/FlatCAMExcEditor.py:3168
-msgid ""
-"[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
-"creation."
+#: flatcamEditors/FlatCAMExcEditor.py:3187
+msgid "There are no Tools definitions in the file. Aborting Excellon creation."
msgstr ""
-"[ERROR_NOTCL] Nu exista definitii de unelte in fişier. Se anulează crearea "
-"de obiect Excellon."
+"Nu exista definitii de unelte in fişier. Se anulează crearea de obiect "
+"Excellon."
-#: flatcamEditors/FlatCAMExcEditor.py:3171
-msgid "[ERROR] An internal error has ocurred. See shell.\n"
+#: flatcamEditors/FlatCAMExcEditor.py:3191
+msgid "An internal error has ocurred. See Shell.\n"
msgstr ""
-"[ERROR] A apărut o eroare interna. Verifică in TCL Shell pt mai multe "
-"detalii.\n"
+"A apărut o eroare internă. Verifică in TCL Shell pt mai multe detalii.\n"
-#: flatcamEditors/FlatCAMExcEditor.py:3177
+#: flatcamEditors/FlatCAMExcEditor.py:3197
msgid "Creating Excellon."
msgstr "In curs de creere Excellon."
-#: flatcamEditors/FlatCAMExcEditor.py:3186
-msgid "[success] Excellon editing finished."
-msgstr "[success] Editarea Excellon a fost terminată."
+#: flatcamEditors/FlatCAMExcEditor.py:3207
+msgid "Excellon editing finished."
+msgstr "Editarea Excellon a fost terminată."
-#: flatcamEditors/FlatCAMExcEditor.py:3203
-msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
-msgstr ""
-"[WARNING_NOTCL] Anulata. Nu este selectată nici-o unealtă sau op. de găurire."
+#: flatcamEditors/FlatCAMExcEditor.py:3225
+msgid "Cancelled. There is no Tool/Drill selected"
+msgstr "Anulat. Nu este selectată nici-o unealtă sau op. de găurire"
-#: flatcamEditors/FlatCAMExcEditor.py:3785
-msgid "[success] Done. Drill(s) deleted."
-msgstr "[success] Executat. Operatiile de găurire șterse."
+#: flatcamEditors/FlatCAMExcEditor.py:3810
+msgid "Done. Drill(s) deleted."
+msgstr "Executat. Operatiile de găurire șterse."
-#: flatcamEditors/FlatCAMExcEditor.py:3857
-#: flatcamEditors/FlatCAMExcEditor.py:3867
-#: flatcamEditors/FlatCAMGrbEditor.py:4544
+#: flatcamEditors/FlatCAMExcEditor.py:3882
+#: flatcamEditors/FlatCAMExcEditor.py:3892
+#: flatcamEditors/FlatCAMGrbEditor.py:4576
msgid "Click on the circular array Center position"
-msgstr "Click pe punctul de Centru al ariei circulare."
+msgstr "Click pe punctul de Centru al ariei circulare"
#: flatcamEditors/FlatCAMGeoEditor.py:82
msgid "Buffer distance:"
@@ -2478,17 +2576,17 @@ msgstr ""
"care formează coltul"
#: flatcamEditors/FlatCAMGeoEditor.py:91
-#: flatcamEditors/FlatCAMGrbEditor.py:2502
+#: flatcamEditors/FlatCAMGrbEditor.py:2522
msgid "Round"
msgstr "Rotund"
#: flatcamEditors/FlatCAMGeoEditor.py:92
-#: flatcamEditors/FlatCAMGrbEditor.py:2503
+#: flatcamEditors/FlatCAMGrbEditor.py:2523
msgid "Square"
msgstr "Patrat"
#: flatcamEditors/FlatCAMGeoEditor.py:93
-#: flatcamEditors/FlatCAMGrbEditor.py:2504
+#: flatcamEditors/FlatCAMGrbEditor.py:2524
msgid "Beveled"
msgstr "Beveled"
@@ -2505,23 +2603,21 @@ msgid "Full Buffer"
msgstr "Bufer complet"
#: flatcamEditors/FlatCAMGeoEditor.py:129
-#: flatcamEditors/FlatCAMGeoEditor.py:2689 flatcamGUI/FlatCAMGUI.py:4712
+#: flatcamEditors/FlatCAMGeoEditor.py:2720 flatcamGUI/FlatCAMGUI.py:4777
msgid "Buffer Tool"
msgstr "Unealta Bufer"
-#: flatcamEditors/FlatCAMGeoEditor.py:140
-#: flatcamEditors/FlatCAMGeoEditor.py:157
-#: flatcamEditors/FlatCAMGeoEditor.py:174
-#: flatcamEditors/FlatCAMGeoEditor.py:2707
-#: flatcamEditors/FlatCAMGeoEditor.py:2735
-#: flatcamEditors/FlatCAMGeoEditor.py:2763
-#: flatcamEditors/FlatCAMGrbEditor.py:4596
-msgid ""
-"[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGeoEditor.py:141
+#: flatcamEditors/FlatCAMGeoEditor.py:158
+#: flatcamEditors/FlatCAMGeoEditor.py:175
+#: flatcamEditors/FlatCAMGeoEditor.py:2740
+#: flatcamEditors/FlatCAMGeoEditor.py:2770
+#: flatcamEditors/FlatCAMGeoEditor.py:2800
+#: flatcamEditors/FlatCAMGrbEditor.py:4629
+msgid "Buffer distance value is missing or wrong format. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Valoarea distantei bufer lipseste sau este intr-un format "
-"gresit. Adaugă din nou și reîncearcă."
+"Valoarea distantei bufer lipseste sau este intr-un format gresit. Adaugă din "
+"nou și reîncearcă."
#: flatcamEditors/FlatCAMGeoEditor.py:345
msgid "Text Tool"
@@ -2531,11 +2627,14 @@ msgstr "Unealta Text"
msgid "Tool"
msgstr "Unealta"
-#: flatcamEditors/FlatCAMGeoEditor.py:434
-msgid "Tool dia:"
-msgstr "Dia unealtă:"
+#: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:4356
+#: flatcamGUI/FlatCAMGUI.py:5796 flatcamGUI/FlatCAMGUI.py:6699
+#: flatcamGUI/FlatCAMGUI.py:6859 flatcamGUI/ObjectUI.py:264
+#: flatcamTools/ToolCutOut.py:91
+msgid "Tool dia"
+msgstr "Dia unealtă"
-#: flatcamEditors/FlatCAMGeoEditor.py:436 flatcamGUI/FlatCAMGUI.py:6686
+#: flatcamEditors/FlatCAMGeoEditor.py:436 flatcamGUI/FlatCAMGUI.py:6861
msgid ""
"Diameter of the tool to\n"
"be used in the operation."
@@ -2543,12 +2642,13 @@ msgstr ""
"Diametrul uneltei care este utilizata in operaţie. \n"
"Este și lăţimea de tăiere pentru uneltele cilindrice."
-#: flatcamEditors/FlatCAMGeoEditor.py:445
-#: flatcamTools/ToolNonCopperClear.py:201
-msgid "Overlap Rate:"
-msgstr "Rata suprapunere:"
+#: flatcamEditors/FlatCAMGeoEditor.py:445 flatcamGUI/FlatCAMGUI.py:6545
+#: flatcamGUI/FlatCAMGUI.py:6890 flatcamTools/ToolNonCopperClear.py:283
+#: flatcamTools/ToolPaint.py:205
+msgid "Overlap Rate"
+msgstr "Rată suprapunere"
-#: flatcamEditors/FlatCAMGeoEditor.py:447 flatcamGUI/FlatCAMGUI.py:6717
+#: flatcamEditors/FlatCAMGeoEditor.py:447 flatcamGUI/FlatCAMGUI.py:6892
#: flatcamTools/ToolPaint.py:207
#, python-format
msgid ""
@@ -2575,11 +2675,13 @@ msgstr ""
"Valori mari= procesare lenta cat și o execuţie la fel de lenta a PCB-ului,\n"
"datorita numărului mai mare de treceri-tăiere."
-#: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamTools/ToolCutOut.py:101
-msgid "Margin:"
-msgstr "Margine:"
+#: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:6562
+#: flatcamGUI/FlatCAMGUI.py:6723 flatcamGUI/FlatCAMGUI.py:6907
+#: flatcamTools/ToolNonCopperClear.py:299 flatcamTools/ToolPaint.py:222
+msgid "Margin"
+msgstr "Margine"
-#: flatcamEditors/FlatCAMGeoEditor.py:465 flatcamGUI/FlatCAMGUI.py:6734
+#: flatcamEditors/FlatCAMGeoEditor.py:465 flatcamGUI/FlatCAMGUI.py:6909
#: flatcamTools/ToolPaint.py:224
msgid ""
"Distance by which to avoid\n"
@@ -2590,9 +2692,11 @@ msgstr ""
"poligonului care trebuie\n"
"să fie >pictat<."
-#: flatcamEditors/FlatCAMGeoEditor.py:474
-msgid "Method:"
-msgstr "Metoda:"
+#: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:6571
+#: flatcamGUI/FlatCAMGUI.py:6918 flatcamTools/ToolNonCopperClear.py:308
+#: flatcamTools/ToolPaint.py:233
+msgid "Method"
+msgstr "Metodă"
#: flatcamEditors/FlatCAMGeoEditor.py:476
msgid ""
@@ -2602,20 +2706,20 @@ msgstr ""
"Algoritm pentru a picta poligonul
Standard: Pas fix spre interior."
"
Samanta: Spre exterior pornind de la un punct-samanta."
-#: flatcamEditors/FlatCAMGeoEditor.py:482 flatcamGUI/FlatCAMGUI.py:6418
-#: flatcamGUI/FlatCAMGUI.py:6752 flatcamTools/ToolNonCopperClear.py:235
+#: flatcamEditors/FlatCAMGeoEditor.py:482 flatcamGUI/FlatCAMGUI.py:6580
+#: flatcamGUI/FlatCAMGUI.py:6927 flatcamTools/ToolNonCopperClear.py:317
#: flatcamTools/ToolPaint.py:242
msgid "Standard"
msgstr "Standard"
-#: flatcamEditors/FlatCAMGeoEditor.py:483 flatcamGUI/FlatCAMGUI.py:6419
-#: flatcamGUI/FlatCAMGUI.py:6753 flatcamTools/ToolNonCopperClear.py:236
+#: flatcamEditors/FlatCAMGeoEditor.py:483 flatcamGUI/FlatCAMGUI.py:6581
+#: flatcamGUI/FlatCAMGUI.py:6928 flatcamTools/ToolNonCopperClear.py:318
#: flatcamTools/ToolPaint.py:243
msgid "Seed-based"
msgstr "Punct-samanta"
-#: flatcamEditors/FlatCAMGeoEditor.py:484 flatcamGUI/FlatCAMGUI.py:6420
-#: flatcamGUI/FlatCAMGUI.py:6754 flatcamTools/ToolNonCopperClear.py:237
+#: flatcamEditors/FlatCAMGeoEditor.py:484 flatcamGUI/FlatCAMGUI.py:6582
+#: flatcamGUI/FlatCAMGUI.py:6929 flatcamTools/ToolNonCopperClear.py:319
#: flatcamTools/ToolPaint.py:244
msgid "Straight lines"
msgstr "Linii drepte"
@@ -2624,8 +2728,8 @@ msgstr "Linii drepte"
msgid "Connect:"
msgstr "Conectează:"
-#: flatcamEditors/FlatCAMGeoEditor.py:491 flatcamGUI/FlatCAMGUI.py:6427
-#: flatcamGUI/FlatCAMGUI.py:6761 flatcamTools/ToolNonCopperClear.py:244
+#: flatcamEditors/FlatCAMGeoEditor.py:491 flatcamGUI/FlatCAMGUI.py:6589
+#: flatcamGUI/FlatCAMGUI.py:6936 flatcamTools/ToolNonCopperClear.py:326
#: flatcamTools/ToolPaint.py:251
msgid ""
"Draw lines between resulting\n"
@@ -2639,8 +2743,8 @@ msgstr ""
msgid "Contour:"
msgstr "Contur:"
-#: flatcamEditors/FlatCAMGeoEditor.py:500 flatcamGUI/FlatCAMGUI.py:6436
-#: flatcamGUI/FlatCAMGUI.py:6771 flatcamTools/ToolNonCopperClear.py:253
+#: flatcamEditors/FlatCAMGeoEditor.py:500 flatcamGUI/FlatCAMGUI.py:6599
+#: flatcamGUI/FlatCAMGUI.py:6946 flatcamTools/ToolNonCopperClear.py:335
#: flatcamTools/ToolPaint.py:260
msgid ""
"Cut around the perimeter of the polygon\n"
@@ -2649,104 +2753,104 @@ msgstr ""
"Taie de-a lungul perimetrului poligonului\n"
"pentru a elimina bavurile."
-#: flatcamEditors/FlatCAMGeoEditor.py:511 flatcamGUI/FlatCAMGUI.py:1655
+#: flatcamEditors/FlatCAMGeoEditor.py:511 flatcamGUI/FlatCAMGUI.py:1673
msgid "Paint"
msgstr "Pictează"
#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:661
-#: flatcamGUI/FlatCAMGUI.py:1979 flatcamGUI/ObjectUI.py:1297
-#: flatcamTools/ToolPaint.py:25 flatcamTools/ToolPaint.py:446
+#: flatcamGUI/FlatCAMGUI.py:2004 flatcamGUI/ObjectUI.py:1360
+#: flatcamTools/ToolPaint.py:25 flatcamTools/ToolPaint.py:448
msgid "Paint Tool"
msgstr "Unealta Paint"
-#: flatcamEditors/FlatCAMGeoEditor.py:565
-msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
-msgstr "[WARNING_NOTCL] Operaţie Paint anulată. Nici-o forma selectată."
+#: flatcamEditors/FlatCAMGeoEditor.py:566
+msgid "Paint cancelled. No shape selected."
+msgstr "Operaţie Paint anulată. Nici-o forma selectată."
-#: flatcamEditors/FlatCAMGeoEditor.py:576 flatcamTools/ToolCutOut.py:381
-#: flatcamTools/ToolCutOut.py:577 flatcamTools/ToolCutOut.py:743
-#: flatcamTools/ToolCutOut.py:873 flatcamTools/ToolDblSided.py:367
-msgid ""
-"[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGeoEditor.py:578 flatcamTools/ToolCutOut.py:387
+#: flatcamTools/ToolCutOut.py:585 flatcamTools/ToolCutOut.py:755
+#: flatcamTools/ToolCutOut.py:849 flatcamTools/ToolDblSided.py:367
+msgid "Tool diameter value is missing or wrong format. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Diametrul uneltei lipseste sau este intr-un format "
-"incompatibil. Adaugă-l și reîncearcă."
+"Diametrul uneltei lipseste sau este intr-un format incompatibil. Adaugă-l și "
+"reîncearcă."
-#: flatcamEditors/FlatCAMGeoEditor.py:587
-msgid ""
-"[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
+#: flatcamEditors/FlatCAMGeoEditor.py:589
+msgid "Overlap value is missing or wrong format. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Valoarea de suprapunere a uneltei lipseste sau este intr-un "
-"format incompatibil. Adaugă-o și reîncearcă."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:599
-msgid ""
-"[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
-"retry."
-msgstr ""
-"[WARNING_NOTCL] Valoarea de margine lipseste sau este intr-un format "
+"Valoarea de suprapunere a uneltei lipseste sau este intr-un format "
"incompatibil. Adaugă-o și reîncearcă."
-#: flatcamEditors/FlatCAMGeoEditor.py:608
-#: flatcamEditors/FlatCAMGeoEditor.py:2714
-#: flatcamEditors/FlatCAMGeoEditor.py:2742
-#: flatcamEditors/FlatCAMGeoEditor.py:2770 flatcamGUI/FlatCAMGUI.py:5727
-#: flatcamTools/ToolProperties.py:109 flatcamTools/ToolProperties.py:134
+#: flatcamEditors/FlatCAMGeoEditor.py:601
+msgid "Margin distance value is missing or wrong format. Add it and retry."
+msgstr ""
+"Valoarea de margine lipseste sau este intr-un format incompatibil. Adaugă-o "
+"și reîncearcă."
+
+#: flatcamEditors/FlatCAMGeoEditor.py:609
+#: flatcamEditors/FlatCAMGeoEditor.py:2746
+#: flatcamEditors/FlatCAMGeoEditor.py:2776
+#: flatcamEditors/FlatCAMGeoEditor.py:2806 flatcamGUI/FlatCAMGUI.py:5792
+#: flatcamTools/ToolProperties.py:113 flatcamTools/ToolProperties.py:139
msgid "Tools"
msgstr "Unelte"
-#: flatcamEditors/FlatCAMGeoEditor.py:619
-#: flatcamEditors/FlatCAMGeoEditor.py:992
-#: flatcamEditors/FlatCAMGrbEditor.py:4777
-#: flatcamEditors/FlatCAMGrbEditor.py:5162 flatcamGUI/FlatCAMGUI.py:672
-#: flatcamGUI/FlatCAMGUI.py:1992 flatcamTools/ToolTransform.py:403
+#: flatcamEditors/FlatCAMGeoEditor.py:620
+#: flatcamEditors/FlatCAMGeoEditor.py:993
+#: flatcamEditors/FlatCAMGrbEditor.py:4812
+#: flatcamEditors/FlatCAMGrbEditor.py:5197 flatcamGUI/FlatCAMGUI.py:672
+#: flatcamGUI/FlatCAMGUI.py:2017 flatcamTools/ToolTransform.py:403
msgid "Transform Tool"
msgstr "Unealta Transformare"
-#: flatcamEditors/FlatCAMGeoEditor.py:620
-#: flatcamEditors/FlatCAMGeoEditor.py:681
-#: flatcamEditors/FlatCAMGrbEditor.py:4778
-#: flatcamEditors/FlatCAMGrbEditor.py:4840 flatcamTools/ToolTransform.py:24
+#: flatcamEditors/FlatCAMGeoEditor.py:621
+#: flatcamEditors/FlatCAMGeoEditor.py:682
+#: flatcamEditors/FlatCAMGrbEditor.py:4813
+#: flatcamEditors/FlatCAMGrbEditor.py:4875 flatcamTools/ToolTransform.py:24
#: flatcamTools/ToolTransform.py:82
msgid "Rotate"
msgstr "Rotaţie"
-#: flatcamEditors/FlatCAMGeoEditor.py:621
-#: flatcamEditors/FlatCAMGrbEditor.py:4779 flatcamTools/ToolTransform.py:25
+#: flatcamEditors/FlatCAMGeoEditor.py:622
+#: flatcamEditors/FlatCAMGrbEditor.py:4814 flatcamTools/ToolTransform.py:25
msgid "Skew/Shear"
msgstr "Deformare"
-#: flatcamEditors/FlatCAMGeoEditor.py:622
-#: flatcamEditors/FlatCAMGrbEditor.py:2549
-#: flatcamEditors/FlatCAMGrbEditor.py:4780 flatcamGUI/FlatCAMGUI.py:739
-#: flatcamGUI/FlatCAMGUI.py:1682 flatcamGUI/FlatCAMGUI.py:2061
+#: flatcamEditors/FlatCAMGeoEditor.py:623
+#: flatcamEditors/FlatCAMGrbEditor.py:2569
+#: flatcamEditors/FlatCAMGrbEditor.py:4815 flatcamGUI/FlatCAMGUI.py:739
+#: flatcamGUI/FlatCAMGUI.py:1700 flatcamGUI/FlatCAMGUI.py:2086
#: flatcamGUI/ObjectUI.py:79 flatcamGUI/ObjectUI.py:100
#: flatcamTools/ToolTransform.py:26
msgid "Scale"
msgstr "Scalare"
-#: flatcamEditors/FlatCAMGeoEditor.py:623
-#: flatcamEditors/FlatCAMGrbEditor.py:4781 flatcamTools/ToolTransform.py:27
+#: flatcamEditors/FlatCAMGeoEditor.py:624
+#: flatcamEditors/FlatCAMGrbEditor.py:4816 flatcamTools/ToolTransform.py:27
msgid "Mirror (Flip)"
msgstr "Oglindire"
-#: flatcamEditors/FlatCAMGeoEditor.py:624
-#: flatcamEditors/FlatCAMGrbEditor.py:4782 flatcamGUI/FlatCAMGUI.py:6458
+#: flatcamEditors/FlatCAMGeoEditor.py:625
+#: flatcamEditors/FlatCAMGrbEditor.py:4817 flatcamGUI/FlatCAMGUI.py:6622
#: flatcamGUI/ObjectUI.py:108 flatcamGUI/ObjectUI.py:127
-#: flatcamGUI/ObjectUI.py:889 flatcamGUI/ObjectUI.py:1455
-#: flatcamTools/ToolNonCopperClear.py:275 flatcamTools/ToolTransform.py:28
+#: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
+#: flatcamTools/ToolNonCopperClear.py:357 flatcamTools/ToolTransform.py:28
msgid "Offset"
msgstr "Ofset"
-#: flatcamEditors/FlatCAMGeoEditor.py:635
-#: flatcamEditors/FlatCAMGrbEditor.py:4794
+#: flatcamEditors/FlatCAMGeoEditor.py:636
+#: flatcamEditors/FlatCAMGrbEditor.py:4829
#, python-format
msgid "Editor %s"
msgstr "Editor %s"
-#: flatcamEditors/FlatCAMGeoEditor.py:669
-#: flatcamEditors/FlatCAMGrbEditor.py:4828 flatcamGUI/FlatCAMGUI.py:7082
+#: flatcamEditors/FlatCAMGeoEditor.py:668
+#: flatcamEditors/FlatCAMGrbEditor.py:4861
+msgid "Angle:"
+msgstr "Unghi:"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:670
+#: flatcamEditors/FlatCAMGrbEditor.py:4863 flatcamGUI/FlatCAMGUI.py:7268
#: flatcamTools/ToolTransform.py:70
msgid ""
"Angle for Rotation action, in degrees.\n"
@@ -2758,8 +2862,8 @@ msgstr ""
"Numerele pozitive inseamna o mișcare in sens ace ceasornic.\n"
"Numerele negative inseamna o mișcare in sens invers ace ceasornic."
-#: flatcamEditors/FlatCAMGeoEditor.py:683
-#: flatcamEditors/FlatCAMGrbEditor.py:4842
+#: flatcamEditors/FlatCAMGeoEditor.py:684
+#: flatcamEditors/FlatCAMGrbEditor.py:4877
msgid ""
"Rotate the selected shape(s).\n"
"The point of reference is the middle of\n"
@@ -2770,16 +2874,16 @@ msgstr ""
"formei înconjurătoare care cuprinde\n"
"toate formele selectate."
-#: flatcamEditors/FlatCAMGeoEditor.py:706
-#: flatcamEditors/FlatCAMGrbEditor.py:4865
+#: flatcamEditors/FlatCAMGeoEditor.py:707
+#: flatcamEditors/FlatCAMGrbEditor.py:4900
msgid "Angle X:"
msgstr "Unghi X:"
-#: flatcamEditors/FlatCAMGeoEditor.py:708
-#: flatcamEditors/FlatCAMGeoEditor.py:726
-#: flatcamEditors/FlatCAMGrbEditor.py:4867
-#: flatcamEditors/FlatCAMGrbEditor.py:4885 flatcamGUI/FlatCAMGUI.py:7094
-#: flatcamGUI/FlatCAMGUI.py:7104 flatcamTools/ToolTransform.py:109
+#: flatcamEditors/FlatCAMGeoEditor.py:709
+#: flatcamEditors/FlatCAMGeoEditor.py:727
+#: flatcamEditors/FlatCAMGrbEditor.py:4902
+#: flatcamEditors/FlatCAMGrbEditor.py:4920 flatcamGUI/FlatCAMGUI.py:7280
+#: flatcamGUI/FlatCAMGUI.py:7290 flatcamTools/ToolTransform.py:109
#: flatcamTools/ToolTransform.py:127
msgid ""
"Angle for Skew action, in degrees.\n"
@@ -2788,15 +2892,15 @@ msgstr ""
"Valoarea unghiului de Deformare, in grade.\n"
"Ia valori Reale între -360 and 359 grade."
-#: flatcamEditors/FlatCAMGeoEditor.py:717
-#: flatcamEditors/FlatCAMGrbEditor.py:4876 flatcamTools/ToolTransform.py:118
+#: flatcamEditors/FlatCAMGeoEditor.py:718
+#: flatcamEditors/FlatCAMGrbEditor.py:4911 flatcamTools/ToolTransform.py:118
msgid "Skew X"
msgstr "Deformare X"
-#: flatcamEditors/FlatCAMGeoEditor.py:719
-#: flatcamEditors/FlatCAMGeoEditor.py:737
-#: flatcamEditors/FlatCAMGrbEditor.py:4878
-#: flatcamEditors/FlatCAMGrbEditor.py:4896
+#: flatcamEditors/FlatCAMGeoEditor.py:720
+#: flatcamEditors/FlatCAMGeoEditor.py:738
+#: flatcamEditors/FlatCAMGrbEditor.py:4913
+#: flatcamEditors/FlatCAMGrbEditor.py:4931
msgid ""
"Skew/shear the selected shape(s).\n"
"The point of reference is the middle of\n"
@@ -2807,35 +2911,35 @@ msgstr ""
"formei înconjurătoare care cuprinde\n"
"toate formele selectate."
-#: flatcamEditors/FlatCAMGeoEditor.py:724
-#: flatcamEditors/FlatCAMGrbEditor.py:4883
+#: flatcamEditors/FlatCAMGeoEditor.py:725
+#: flatcamEditors/FlatCAMGrbEditor.py:4918
msgid "Angle Y:"
msgstr "Unghi Y:"
-#: flatcamEditors/FlatCAMGeoEditor.py:735
-#: flatcamEditors/FlatCAMGrbEditor.py:4894 flatcamTools/ToolTransform.py:136
+#: flatcamEditors/FlatCAMGeoEditor.py:736
+#: flatcamEditors/FlatCAMGrbEditor.py:4929 flatcamTools/ToolTransform.py:136
msgid "Skew Y"
msgstr "Deformare Y"
-#: flatcamEditors/FlatCAMGeoEditor.py:763
-#: flatcamEditors/FlatCAMGrbEditor.py:4922
+#: flatcamEditors/FlatCAMGeoEditor.py:764
+#: flatcamEditors/FlatCAMGrbEditor.py:4957
msgid "Factor X:"
msgstr "Factor X:"
-#: flatcamEditors/FlatCAMGeoEditor.py:765
-#: flatcamEditors/FlatCAMGrbEditor.py:4924
+#: flatcamEditors/FlatCAMGeoEditor.py:766
+#: flatcamEditors/FlatCAMGrbEditor.py:4959
msgid "Factor for Scale action over X axis."
-msgstr "Factor pentru scalarea pe axa X"
+msgstr "Factor pentru scalarea pe axa X."
-#: flatcamEditors/FlatCAMGeoEditor.py:773
-#: flatcamEditors/FlatCAMGrbEditor.py:4932 flatcamTools/ToolTransform.py:174
+#: flatcamEditors/FlatCAMGeoEditor.py:774
+#: flatcamEditors/FlatCAMGrbEditor.py:4967 flatcamTools/ToolTransform.py:174
msgid "Scale X"
msgstr "Scalează X"
-#: flatcamEditors/FlatCAMGeoEditor.py:775
-#: flatcamEditors/FlatCAMGeoEditor.py:792
-#: flatcamEditors/FlatCAMGrbEditor.py:4934
-#: flatcamEditors/FlatCAMGrbEditor.py:4951
+#: flatcamEditors/FlatCAMGeoEditor.py:776
+#: flatcamEditors/FlatCAMGeoEditor.py:793
+#: flatcamEditors/FlatCAMGrbEditor.py:4969
+#: flatcamEditors/FlatCAMGrbEditor.py:4986
msgid ""
"Scale the selected shape(s).\n"
"The point of reference depends on \n"
@@ -2845,29 +2949,29 @@ msgstr ""
"Punctul de referinţă depinde de \n"
"starea checkbox-ului >Referința scalare<."
-#: flatcamEditors/FlatCAMGeoEditor.py:780
-#: flatcamEditors/FlatCAMGrbEditor.py:4939
+#: flatcamEditors/FlatCAMGeoEditor.py:781
+#: flatcamEditors/FlatCAMGrbEditor.py:4974
msgid "Factor Y:"
msgstr "Factor Y:"
-#: flatcamEditors/FlatCAMGeoEditor.py:782
-#: flatcamEditors/FlatCAMGrbEditor.py:4941
+#: flatcamEditors/FlatCAMGeoEditor.py:783
+#: flatcamEditors/FlatCAMGrbEditor.py:4976
msgid "Factor for Scale action over Y axis."
msgstr "Factor pentru scalarea pe axa Y."
-#: flatcamEditors/FlatCAMGeoEditor.py:790
-#: flatcamEditors/FlatCAMGrbEditor.py:4949 flatcamTools/ToolTransform.py:191
+#: flatcamEditors/FlatCAMGeoEditor.py:791
+#: flatcamEditors/FlatCAMGrbEditor.py:4984 flatcamTools/ToolTransform.py:191
msgid "Scale Y"
msgstr "Scalează Y"
-#: flatcamEditors/FlatCAMGeoEditor.py:799
-#: flatcamEditors/FlatCAMGrbEditor.py:4958 flatcamGUI/FlatCAMGUI.py:7129
+#: flatcamEditors/FlatCAMGeoEditor.py:800
+#: flatcamEditors/FlatCAMGrbEditor.py:4993 flatcamGUI/FlatCAMGUI.py:7315
#: flatcamTools/ToolTransform.py:200
msgid "Link"
msgstr "Legatura"
-#: flatcamEditors/FlatCAMGeoEditor.py:801
-#: flatcamEditors/FlatCAMGrbEditor.py:4960
+#: flatcamEditors/FlatCAMGeoEditor.py:802
+#: flatcamEditors/FlatCAMGrbEditor.py:4995
msgid ""
"Scale the selected shape(s)\n"
"using the Scale Factor X for both axis."
@@ -2875,14 +2979,14 @@ msgstr ""
"Scalează formele selectate\n"
"folsoind factorul: Factor X pentru ambele axe."
-#: flatcamEditors/FlatCAMGeoEditor.py:807
-#: flatcamEditors/FlatCAMGrbEditor.py:4966 flatcamGUI/FlatCAMGUI.py:7137
+#: flatcamEditors/FlatCAMGeoEditor.py:808
+#: flatcamEditors/FlatCAMGrbEditor.py:5001 flatcamGUI/FlatCAMGUI.py:7323
#: flatcamTools/ToolTransform.py:209
msgid "Scale Reference"
msgstr "Referința scalare"
-#: flatcamEditors/FlatCAMGeoEditor.py:809
-#: flatcamEditors/FlatCAMGrbEditor.py:4968
+#: flatcamEditors/FlatCAMGeoEditor.py:810
+#: flatcamEditors/FlatCAMGrbEditor.py:5003
msgid ""
"Scale the selected shape(s)\n"
"using the origin reference when checked,\n"
@@ -2895,25 +2999,25 @@ msgstr ""
"toate formele selectate când nu este\n"
"bifat și este originea când este bifat."
-#: flatcamEditors/FlatCAMGeoEditor.py:837
-#: flatcamEditors/FlatCAMGrbEditor.py:4997
+#: flatcamEditors/FlatCAMGeoEditor.py:838
+#: flatcamEditors/FlatCAMGrbEditor.py:5032
msgid "Value X:"
msgstr "Valoare X:"
-#: flatcamEditors/FlatCAMGeoEditor.py:839
-#: flatcamEditors/FlatCAMGrbEditor.py:4999
+#: flatcamEditors/FlatCAMGeoEditor.py:840
+#: flatcamEditors/FlatCAMGrbEditor.py:5034
msgid "Value for Offset action on X axis."
msgstr "Valoare pentru deplasarea pe axa X."
-#: flatcamEditors/FlatCAMGeoEditor.py:847
-#: flatcamEditors/FlatCAMGrbEditor.py:5007 flatcamTools/ToolTransform.py:249
+#: flatcamEditors/FlatCAMGeoEditor.py:848
+#: flatcamEditors/FlatCAMGrbEditor.py:5042 flatcamTools/ToolTransform.py:249
msgid "Offset X"
msgstr "Ofset pe X"
-#: flatcamEditors/FlatCAMGeoEditor.py:849
-#: flatcamEditors/FlatCAMGeoEditor.py:867
-#: flatcamEditors/FlatCAMGrbEditor.py:5009
-#: flatcamEditors/FlatCAMGrbEditor.py:5027
+#: flatcamEditors/FlatCAMGeoEditor.py:850
+#: flatcamEditors/FlatCAMGeoEditor.py:868
+#: flatcamEditors/FlatCAMGrbEditor.py:5044
+#: flatcamEditors/FlatCAMGrbEditor.py:5062
msgid ""
"Offset the selected shape(s).\n"
"The point of reference is the middle of\n"
@@ -2924,30 +3028,30 @@ msgstr ""
"formei înconjurătoare care cuprinde\n"
"toate formele selectate.\n"
-#: flatcamEditors/FlatCAMGeoEditor.py:855
-#: flatcamEditors/FlatCAMGrbEditor.py:5015
+#: flatcamEditors/FlatCAMGeoEditor.py:856
+#: flatcamEditors/FlatCAMGrbEditor.py:5050
msgid "Value Y:"
msgstr "Valoare Y:"
-#: flatcamEditors/FlatCAMGeoEditor.py:857
-#: flatcamEditors/FlatCAMGrbEditor.py:5017
+#: flatcamEditors/FlatCAMGeoEditor.py:858
+#: flatcamEditors/FlatCAMGrbEditor.py:5052
msgid "Value for Offset action on Y axis."
msgstr "Valoare pentru deplasarea pe axa Y."
-#: flatcamEditors/FlatCAMGeoEditor.py:865
-#: flatcamEditors/FlatCAMGrbEditor.py:5025 flatcamTools/ToolTransform.py:266
+#: flatcamEditors/FlatCAMGeoEditor.py:866
+#: flatcamEditors/FlatCAMGrbEditor.py:5060 flatcamTools/ToolTransform.py:266
msgid "Offset Y"
msgstr "Ofset pe Y"
-#: flatcamEditors/FlatCAMGeoEditor.py:896
-#: flatcamEditors/FlatCAMGrbEditor.py:5056 flatcamTools/ToolTransform.py:296
+#: flatcamEditors/FlatCAMGeoEditor.py:897
+#: flatcamEditors/FlatCAMGrbEditor.py:5091 flatcamTools/ToolTransform.py:296
msgid "Flip on X"
msgstr "Oglindește pe X"
-#: flatcamEditors/FlatCAMGeoEditor.py:898
-#: flatcamEditors/FlatCAMGeoEditor.py:906
-#: flatcamEditors/FlatCAMGrbEditor.py:5058
-#: flatcamEditors/FlatCAMGrbEditor.py:5066
+#: flatcamEditors/FlatCAMGeoEditor.py:899
+#: flatcamEditors/FlatCAMGeoEditor.py:907
+#: flatcamEditors/FlatCAMGrbEditor.py:5093
+#: flatcamEditors/FlatCAMGrbEditor.py:5101
msgid ""
"Flip the selected shape(s) over the X axis.\n"
"Does not create a new shape."
@@ -2955,18 +3059,18 @@ msgstr ""
"Oglindește formele selectate peste axa X\n"
"Nu crează noi forme."
-#: flatcamEditors/FlatCAMGeoEditor.py:904
-#: flatcamEditors/FlatCAMGrbEditor.py:5064 flatcamTools/ToolTransform.py:304
+#: flatcamEditors/FlatCAMGeoEditor.py:905
+#: flatcamEditors/FlatCAMGrbEditor.py:5099 flatcamTools/ToolTransform.py:304
msgid "Flip on Y"
msgstr "Oglindește pe Y"
-#: flatcamEditors/FlatCAMGeoEditor.py:913
-#: flatcamEditors/FlatCAMGrbEditor.py:5073
+#: flatcamEditors/FlatCAMGeoEditor.py:914
+#: flatcamEditors/FlatCAMGrbEditor.py:5108
msgid "Ref Pt"
msgstr "Pt ref"
-#: flatcamEditors/FlatCAMGeoEditor.py:915
-#: flatcamEditors/FlatCAMGrbEditor.py:5075
+#: flatcamEditors/FlatCAMGeoEditor.py:916
+#: flatcamEditors/FlatCAMGrbEditor.py:5110
msgid ""
"Flip the selected shape(s)\n"
"around the point in Point Entry Field.\n"
@@ -2989,13 +3093,13 @@ msgstr ""
"Alternativ se pot introduce manual in formatul (x, y). \n"
"La final click pe >Oglindește pe X(Y)<."
-#: flatcamEditors/FlatCAMGeoEditor.py:927
-#: flatcamEditors/FlatCAMGrbEditor.py:5087
+#: flatcamEditors/FlatCAMGeoEditor.py:928
+#: flatcamEditors/FlatCAMGrbEditor.py:5122
msgid "Point:"
msgstr "Punct:"
-#: flatcamEditors/FlatCAMGeoEditor.py:929
-#: flatcamEditors/FlatCAMGrbEditor.py:5089
+#: flatcamEditors/FlatCAMGeoEditor.py:930
+#: flatcamEditors/FlatCAMGrbEditor.py:5124
msgid ""
"Coordinates in format (x, y) used as reference for mirroring.\n"
"The 'x' in (x, y) will be used when using Flip on X and\n"
@@ -3005,8 +3109,8 @@ msgstr ""
"Valoarea 'x' in (x, y) va fi folosita când se face oglindire pe X\n"
"și valoarea 'y' in (x, y) va fi folosita când se face oglindire pe Y."
-#: flatcamEditors/FlatCAMGeoEditor.py:941
-#: flatcamEditors/FlatCAMGrbEditor.py:5101 flatcamTools/ToolTransform.py:340
+#: flatcamEditors/FlatCAMGeoEditor.py:942
+#: flatcamEditors/FlatCAMGrbEditor.py:5136 flatcamTools/ToolTransform.py:340
msgid ""
"The point coordinates can be captured by\n"
"left click on canvas together with pressing\n"
@@ -3017,776 +3121,718 @@ msgstr ""
"tasta SHIFT.\n"
"La final, apasa butonul >Adaugă< pt a le insera."
-#: flatcamEditors/FlatCAMGeoEditor.py:1056
-#: flatcamEditors/FlatCAMGrbEditor.py:5226
-msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
-msgstr "[WARNING_NOTCL] Transformare anulată. Nici-o formă nu este selectată."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1077
-#: flatcamEditors/FlatCAMGrbEditor.py:5246 flatcamTools/ToolTransform.py:473
-msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
-msgstr ""
-"[ERROR_NOTCL] Valoare incorecta intodusa pentru Rotaţie, foloseşte un număr "
-"Real."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1114
-#: flatcamEditors/FlatCAMGrbEditor.py:5289 flatcamTools/ToolTransform.py:507
-msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
-msgstr ""
-"[ERROR_NOTCL] Valoare incorecta intodusa pentru Deformare X, foloseşte un "
-"număr Real."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1135
-#: flatcamEditors/FlatCAMGrbEditor.py:5316 flatcamTools/ToolTransform.py:525
-msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
-msgstr ""
-"[ERROR_NOTCL] Valoare incorecta intodusa pentru Deformare Y, foloseşte un "
-"număr Real."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1156
-#: flatcamEditors/FlatCAMGrbEditor.py:5343 flatcamTools/ToolTransform.py:543
-msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
-msgstr ""
-"[ERROR_NOTCL] Valoare incorecta intodusa pentru Scalare X, foloseşte un "
-"număr Real."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1193
-#: flatcamEditors/FlatCAMGrbEditor.py:5384 flatcamTools/ToolTransform.py:577
-msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
-msgstr ""
-"[ERROR_NOTCL] Valoare incorecta intodusa pentru Scalare Y, foloseşte un "
-"număr Real."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1225
-#: flatcamEditors/FlatCAMGrbEditor.py:5422 flatcamTools/ToolTransform.py:606
-msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
-msgstr ""
-"[ERROR_NOTCL] Valoare incorecta intodusa pentru Ofset pe X, foloseşte un "
-"număr Real."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1246
-#: flatcamEditors/FlatCAMGrbEditor.py:5448 flatcamTools/ToolTransform.py:624
-msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
-msgstr ""
-"[ERROR_NOTCL] Valoare incorecta intodusa pentru Ofset pe Y, foloseşte un "
-"număr Real."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1264
-#: flatcamEditors/FlatCAMGrbEditor.py:5471
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
-msgstr ""
-"[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a "
-"putea face Rotaţie!"
+#: flatcamEditors/FlatCAMGeoEditor.py:1058
+#: flatcamEditors/FlatCAMGrbEditor.py:5262
+msgid "Transformation cancelled. No shape selected."
+msgstr "Transformare anulată. Nici-o formă nu este selectată."
#: flatcamEditors/FlatCAMGeoEditor.py:1267
-#: flatcamEditors/FlatCAMGrbEditor.py:5474 flatcamTools/ToolTransform.py:645
+#: flatcamEditors/FlatCAMGrbEditor.py:5508
+msgid "No shape selected. Please Select a shape to rotate!"
+msgstr ""
+"Nici-o forma nu este selectată. Selectează o forma pentru a putea face "
+"Rotaţie!"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1270
+#: flatcamEditors/FlatCAMGrbEditor.py:5511 flatcamTools/ToolTransform.py:646
msgid "Appying Rotate"
msgstr "Execuţie Rotaţie"
-#: flatcamEditors/FlatCAMGeoEditor.py:1295
-#: flatcamEditors/FlatCAMGrbEditor.py:5507
-msgid "[success] Done. Rotate completed."
-msgstr "[success] Executat. Rotaţie finalizata."
+#: flatcamEditors/FlatCAMGeoEditor.py:1299
+#: flatcamEditors/FlatCAMGrbEditor.py:5545
+msgid "Done. Rotate completed."
+msgstr "Executat. Rotaţie finalizată."
-#: flatcamEditors/FlatCAMGeoEditor.py:1311
-#: flatcamEditors/FlatCAMGrbEditor.py:5526
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
+#: flatcamEditors/FlatCAMGeoEditor.py:1305
+msgid "Rotation action was not executed"
+msgstr "Actiunea de rotatie nu a fost efectuată"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1317
+#: flatcamEditors/FlatCAMGrbEditor.py:5566
+msgid "No shape selected. Please Select a shape to flip!"
msgstr ""
-"[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a "
-"putea face Oglindire!"
+"Nici-o formă nu este selectată. Selectează o formă pentru a putea face "
+"Oglindire!"
-#: flatcamEditors/FlatCAMGeoEditor.py:1314
-#: flatcamEditors/FlatCAMGrbEditor.py:5529 flatcamTools/ToolTransform.py:696
+#: flatcamEditors/FlatCAMGeoEditor.py:1320
+#: flatcamEditors/FlatCAMGrbEditor.py:5569 flatcamTools/ToolTransform.py:699
msgid "Applying Flip"
msgstr "Execuţie Oglindire"
-#: flatcamEditors/FlatCAMGeoEditor.py:1344
-#: flatcamEditors/FlatCAMGrbEditor.py:5568 flatcamTools/ToolTransform.py:738
-msgid "[success] Flip on the Y axis done ..."
-msgstr "Oglindirea pe axa X efectuata ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1351
+#: flatcamEditors/FlatCAMGrbEditor.py:5609 flatcamTools/ToolTransform.py:742
+msgid "Flip on the Y axis done"
+msgstr "Oglindire pe axa Y executată"
-#: flatcamEditors/FlatCAMGeoEditor.py:1347
-#: flatcamEditors/FlatCAMGrbEditor.py:5576 flatcamTools/ToolTransform.py:747
-msgid "[success] Flip on the X axis done ..."
-msgstr "Oglindirea pe axa Y efectuata ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1355
+#: flatcamEditors/FlatCAMGrbEditor.py:5618 flatcamTools/ToolTransform.py:752
+msgid "Flip on the X axis done"
+msgstr "Oglindire pe axa X executată"
#: flatcamEditors/FlatCAMGeoEditor.py:1366
-#: flatcamEditors/FlatCAMGrbEditor.py:5596
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
-msgstr ""
-"[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a "
-"putea face Deformare!"
+msgid "Flip action was not executed"
+msgstr "Actiunea de oglindire nu a fost efectuată"
-#: flatcamEditors/FlatCAMGeoEditor.py:1369
-#: flatcamEditors/FlatCAMGrbEditor.py:5599 flatcamTools/ToolTransform.py:765
+#: flatcamEditors/FlatCAMGeoEditor.py:1376
+#: flatcamEditors/FlatCAMGrbEditor.py:5640
+msgid "No shape selected. Please Select a shape to shear/skew!"
+msgstr ""
+"Nici-o formă nu este selectată. Selectează o formă pentru a putea face "
+"Deformare!"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1379
+#: flatcamEditors/FlatCAMGrbEditor.py:5643 flatcamTools/ToolTransform.py:772
msgid "Applying Skew"
msgstr "Execuţie Deformare"
-#: flatcamEditors/FlatCAMGeoEditor.py:1394
-#: flatcamEditors/FlatCAMGrbEditor.py:5634 flatcamTools/ToolTransform.py:796
-#, python-format
-msgid "[success] Skew on the %s axis done ..."
-msgstr "[success] Deformarea pe axa %s executată ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1405
+#: flatcamEditors/FlatCAMGrbEditor.py:5680
+msgid "Skew on the X axis done"
+msgstr "Oglindire pe axa X executată"
-#: flatcamEditors/FlatCAMGeoEditor.py:1398
-#: flatcamEditors/FlatCAMGrbEditor.py:5638 flatcamTools/ToolTransform.py:800
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
-msgstr "[ERROR_NOTCL] Datorită erorii: %s, Deformarea a fost anulată."
+#: flatcamEditors/FlatCAMGeoEditor.py:1408
+#: flatcamEditors/FlatCAMGrbEditor.py:5683
+msgid "Skew on the Y axis done"
+msgstr "Oglindire pe axa Y executată"
-#: flatcamEditors/FlatCAMGeoEditor.py:1409
-#: flatcamEditors/FlatCAMGrbEditor.py:5657
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
+#: flatcamEditors/FlatCAMGeoEditor.py:1413
+msgid "Skew action was not executed"
+msgstr "Actiunea de deformare nu a fost efectuată"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1425
+#: flatcamEditors/FlatCAMGrbEditor.py:5708
+msgid "No shape selected. Please Select a shape to scale!"
msgstr ""
-"[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a "
-"putea face Scalare!"
+"Nici-o formă nu este selectată. Selectează o formă pentru a putea face "
+"Scalare!"
-#: flatcamEditors/FlatCAMGeoEditor.py:1412
-#: flatcamEditors/FlatCAMGrbEditor.py:5660 flatcamTools/ToolTransform.py:814
+#: flatcamEditors/FlatCAMGeoEditor.py:1428
+#: flatcamEditors/FlatCAMGrbEditor.py:5711 flatcamTools/ToolTransform.py:823
msgid "Applying Scale"
msgstr "Execuţie Scalare"
-#: flatcamEditors/FlatCAMGeoEditor.py:1445
-#: flatcamEditors/FlatCAMGrbEditor.py:5698 flatcamTools/ToolTransform.py:853
-#, python-format
-msgid "[success] Scale on the %s axis done ..."
-msgstr "[success] Scalarea pe axa %s executată ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1463
+#: flatcamEditors/FlatCAMGrbEditor.py:5751
+msgid "Scale on the X axis done"
+msgstr "Scalarea pe axa X executată"
-#: flatcamEditors/FlatCAMGeoEditor.py:1448
-#: flatcamEditors/FlatCAMGrbEditor.py:5701 flatcamTools/ToolTransform.py:856
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
-msgstr "[ERROR_NOTCL] Datorită erorii: %s, Scalarea a fost anulată ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1466
+#: flatcamEditors/FlatCAMGrbEditor.py:5754
+msgid "Scale on the Y axis done"
+msgstr "Scalarea pe axa Y executată"
-#: flatcamEditors/FlatCAMGeoEditor.py:1457
-#: flatcamEditors/FlatCAMGrbEditor.py:5714
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
+#: flatcamEditors/FlatCAMGeoEditor.py:1470
+msgid "Scale action was not executed"
+msgstr "Scalarea nu a fost efectuată"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1480
+#: flatcamEditors/FlatCAMGrbEditor.py:5772
+msgid "No shape selected. Please Select a shape to offset!"
msgstr ""
-"[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a "
-"putea face Ofset!"
+"Nici-o formă nu este selectată. Selectează o formă pentru a putea face Ofset!"
-#: flatcamEditors/FlatCAMGeoEditor.py:1460
-#: flatcamEditors/FlatCAMGrbEditor.py:5717 flatcamTools/ToolTransform.py:866
+#: flatcamEditors/FlatCAMGeoEditor.py:1483
+#: flatcamEditors/FlatCAMGrbEditor.py:5775 flatcamTools/ToolTransform.py:878
msgid "Applying Offset"
msgstr "Execuţie Ofset"
-#: flatcamEditors/FlatCAMGeoEditor.py:1471
-#: flatcamEditors/FlatCAMGrbEditor.py:5739 flatcamTools/ToolTransform.py:885
-#, python-format
-msgid "[success] Offset on the %s axis done ..."
-msgstr "[success] Deplasarea pe axa %s executată ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1496
+#: flatcamEditors/FlatCAMGrbEditor.py:5799
+msgid "Offset on the X axis done"
+msgstr "Ofset pe axa X efectuat"
-#: flatcamEditors/FlatCAMGeoEditor.py:1475
-#: flatcamEditors/FlatCAMGrbEditor.py:5743 flatcamTools/ToolTransform.py:889
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
-msgstr "[ERROR_NOTCL] Datorită erorii: %s, Deplasarea a fost anulată."
+#: flatcamEditors/FlatCAMGeoEditor.py:1499
+#: flatcamEditors/FlatCAMGrbEditor.py:5802
+msgid "Offset on the Y axis done"
+msgstr "Ofset pe axa Y efectuat"
-#: flatcamEditors/FlatCAMGeoEditor.py:1479
-#: flatcamEditors/FlatCAMGrbEditor.py:5747
+#: flatcamEditors/FlatCAMGeoEditor.py:1504
+msgid "Offset action was not executed"
+msgstr "Actiuena de Ofset nu a fost efectuată"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1508
+#: flatcamEditors/FlatCAMGrbEditor.py:5811
msgid "Rotate ..."
msgstr "Rotaţie ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1480
-#: flatcamEditors/FlatCAMGeoEditor.py:1537
-#: flatcamEditors/FlatCAMGeoEditor.py:1554
-#: flatcamEditors/FlatCAMGrbEditor.py:5748
-#: flatcamEditors/FlatCAMGrbEditor.py:5805
-#: flatcamEditors/FlatCAMGrbEditor.py:5822
-msgid "Enter an Angle Value (degrees):"
-msgstr "Introdu o valoare in grade pt Unghi:"
+#: flatcamEditors/FlatCAMGeoEditor.py:1509
+#: flatcamEditors/FlatCAMGeoEditor.py:1564
+#: flatcamEditors/FlatCAMGeoEditor.py:1581
+#: flatcamEditors/FlatCAMGrbEditor.py:5812
+#: flatcamEditors/FlatCAMGrbEditor.py:5867
+#: flatcamEditors/FlatCAMGrbEditor.py:5884
+msgid "Enter an Angle Value (degrees)"
+msgstr "Introdu o valoare in grade pt Unghi"
-#: flatcamEditors/FlatCAMGeoEditor.py:1489
-#: flatcamEditors/FlatCAMGrbEditor.py:5757
-msgid "[success] Geometry shape rotate done..."
-msgstr "[success] Rotatia formei geometrice executată ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1518
+#: flatcamEditors/FlatCAMGrbEditor.py:5821
+msgid "Geometry shape rotate done"
+msgstr "Rotatia formei geometrice executată"
-#: flatcamEditors/FlatCAMGeoEditor.py:1494
-#: flatcamEditors/FlatCAMGrbEditor.py:5762
-msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
-msgstr "[WARNING_NOTCL] Rotatia formei geometrice anulată ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1522
+#: flatcamEditors/FlatCAMGrbEditor.py:5825
+msgid "Geometry shape rotate cancelled"
+msgstr "Rotatia formei geometrice anulată"
-#: flatcamEditors/FlatCAMGeoEditor.py:1500
-#: flatcamEditors/FlatCAMGrbEditor.py:5768
+#: flatcamEditors/FlatCAMGeoEditor.py:1527
+#: flatcamEditors/FlatCAMGrbEditor.py:5830
msgid "Offset on X axis ..."
msgstr "Ofset pe axa X ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1501
-#: flatcamEditors/FlatCAMGeoEditor.py:1520
-#: flatcamEditors/FlatCAMGrbEditor.py:5769
-#: flatcamEditors/FlatCAMGrbEditor.py:5788
-#, python-format
-msgid "Enter a distance Value (%s):"
-msgstr "Introdu of valoare pt Distanta (%s):"
+#: flatcamEditors/FlatCAMGeoEditor.py:1528
+#: flatcamEditors/FlatCAMGeoEditor.py:1547
+#: flatcamEditors/FlatCAMGrbEditor.py:5831
+#: flatcamEditors/FlatCAMGrbEditor.py:5850
+msgid "Enter a distance Value"
+msgstr "Introdu of valoare pt Distantă"
-#: flatcamEditors/FlatCAMGeoEditor.py:1510
-#: flatcamEditors/FlatCAMGrbEditor.py:5778
-msgid "[success] Geometry shape offset on X axis done..."
-msgstr "[success] Deplasarea formei geometrice pe axa X executată ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1537
+#: flatcamEditors/FlatCAMGrbEditor.py:5840
+msgid "Geometry shape offset on X axis done"
+msgstr "Ofset pe axa X executat"
-#: flatcamEditors/FlatCAMGeoEditor.py:1514
-#: flatcamEditors/FlatCAMGrbEditor.py:5782
-msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
-msgstr "[WARNING_NOTCL] Deplasarea formei geometrice pe axa X anulată ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1541
+#: flatcamEditors/FlatCAMGrbEditor.py:5844
+msgid "Geometry shape offset X cancelled"
+msgstr "Ofset pe axa X anulat"
-#: flatcamEditors/FlatCAMGeoEditor.py:1519
-#: flatcamEditors/FlatCAMGrbEditor.py:5787
+#: flatcamEditors/FlatCAMGeoEditor.py:1546
+#: flatcamEditors/FlatCAMGrbEditor.py:5849
msgid "Offset on Y axis ..."
msgstr "Ofset pe axa Y ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1529
-#: flatcamEditors/FlatCAMGrbEditor.py:5797
-msgid "[success] Geometry shape offset on Y axis done..."
-msgstr "[success] Deplasarea formei geometrice pe axa Y executată ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1556
+#: flatcamEditors/FlatCAMGrbEditor.py:5859
+msgid "Geometry shape offset on Y axis done"
+msgstr "Ofset pe axa Y executat"
-#: flatcamEditors/FlatCAMGeoEditor.py:1533
-#: flatcamEditors/FlatCAMGrbEditor.py:5801
-msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
-msgstr "[WARNING_NOTCL] Deplasarea formei geometrice pe axa Y anulată ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1560
+msgid "Geometry shape offset on Y axis canceled"
+msgstr "Ofset pe axa Y anulat"
-#: flatcamEditors/FlatCAMGeoEditor.py:1536
-#: flatcamEditors/FlatCAMGrbEditor.py:5804
+#: flatcamEditors/FlatCAMGeoEditor.py:1563
+#: flatcamEditors/FlatCAMGrbEditor.py:5866
msgid "Skew on X axis ..."
msgstr "Deformare pe axa X ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1546
-#: flatcamEditors/FlatCAMGrbEditor.py:5814
-msgid "[success] Geometry shape skew on X axis done..."
-msgstr "[success] Deformarea formei geometrice pe axa X executată ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1573
+#: flatcamEditors/FlatCAMGrbEditor.py:5876
+msgid "Geometry shape skew on X axis done"
+msgstr "Deformarea pe axa X executată"
-#: flatcamEditors/FlatCAMGeoEditor.py:1550
-#: flatcamEditors/FlatCAMGrbEditor.py:5818
-msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
-msgstr "[WARNING_NOTCL] Deformarea formei geometrice pe axa X anulată ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1577
+msgid "Geometry shape skew on X axis canceled"
+msgstr "Deformarea pe axa X anulată"
-#: flatcamEditors/FlatCAMGeoEditor.py:1553
-#: flatcamEditors/FlatCAMGrbEditor.py:5821
+#: flatcamEditors/FlatCAMGeoEditor.py:1580
+#: flatcamEditors/FlatCAMGrbEditor.py:5883
msgid "Skew on Y axis ..."
msgstr "Deformare pe axa Y ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1563
-#: flatcamEditors/FlatCAMGrbEditor.py:5831
-msgid "[success] Geometry shape skew on Y axis done..."
-msgstr "[success] Deformarea formei geometrice pe axa Y executată ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1590
+#: flatcamEditors/FlatCAMGrbEditor.py:5893
+msgid "Geometry shape skew on Y axis done"
+msgstr "Deformarea pe axa Y executată"
-#: flatcamEditors/FlatCAMGeoEditor.py:1567
-#: flatcamEditors/FlatCAMGrbEditor.py:5835
-msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
-msgstr "[success] Deformarea formei geometrice pe axa Y executată ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1594
+msgid "Geometry shape skew on Y axis canceled"
+msgstr "Deformarea pe axa Y anulată"
-#: flatcamEditors/FlatCAMGeoEditor.py:1931
-#: flatcamEditors/FlatCAMGeoEditor.py:1982
-#: flatcamEditors/FlatCAMGrbEditor.py:1385
-#: flatcamEditors/FlatCAMGrbEditor.py:1454
+#: flatcamEditors/FlatCAMGeoEditor.py:1958
+#: flatcamEditors/FlatCAMGeoEditor.py:2010
+#: flatcamEditors/FlatCAMGrbEditor.py:1396
+#: flatcamEditors/FlatCAMGrbEditor.py:1466
msgid "Click on Center point ..."
msgstr "Click pe punctul de Centru ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1938
-#: flatcamEditors/FlatCAMGrbEditor.py:1393
+#: flatcamEditors/FlatCAMGeoEditor.py:1965
+#: flatcamEditors/FlatCAMGrbEditor.py:1404
msgid "Click on Perimeter point to complete ..."
msgstr "Click pe un punct aflat pe Circumferintă pentru terminare ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:1967
-msgid "[success] Done. Adding Circle completed."
-msgstr "[success] Executat. Adăugarea unei forme Cerc terminată."
+#: flatcamEditors/FlatCAMGeoEditor.py:1995
+msgid "Done. Adding Circle completed."
+msgstr "Executat. Adăugarea unei forme Cerc terminată."
-#: flatcamEditors/FlatCAMGeoEditor.py:2002
-#: flatcamEditors/FlatCAMGrbEditor.py:1486
+#: flatcamEditors/FlatCAMGeoEditor.py:2030
+#: flatcamEditors/FlatCAMGrbEditor.py:1498
msgid "Click on Start point ..."
msgstr "Click pe punctul de Start ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2004
-#: flatcamEditors/FlatCAMGrbEditor.py:1488
+#: flatcamEditors/FlatCAMGeoEditor.py:2032
+#: flatcamEditors/FlatCAMGrbEditor.py:1500
msgid "Click on Point3 ..."
msgstr "Click pe Punctul3 ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2006
-#: flatcamEditors/FlatCAMGrbEditor.py:1490
+#: flatcamEditors/FlatCAMGeoEditor.py:2034
+#: flatcamEditors/FlatCAMGrbEditor.py:1502
msgid "Click on Stop point ..."
msgstr "Click pe punctulde Stop ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2011
-#: flatcamEditors/FlatCAMGrbEditor.py:1495
+#: flatcamEditors/FlatCAMGeoEditor.py:2039
+#: flatcamEditors/FlatCAMGrbEditor.py:1507
msgid "Click on Stop point to complete ..."
msgstr "Click pe punctul de Stop pentru terminare ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2013
-#: flatcamEditors/FlatCAMGrbEditor.py:1497
+#: flatcamEditors/FlatCAMGeoEditor.py:2041
+#: flatcamEditors/FlatCAMGrbEditor.py:1509
msgid "Click on Point2 to complete ..."
msgstr "Click pe Punctul2 pentru terminare ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2015
-#: flatcamEditors/FlatCAMGrbEditor.py:1499
+#: flatcamEditors/FlatCAMGeoEditor.py:2043
+#: flatcamEditors/FlatCAMGrbEditor.py:1511
msgid "Click on Center point to complete ..."
msgstr "Click pe punctul de Centru pentru terminare ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2027
-#: flatcamEditors/FlatCAMGrbEditor.py:1511
+#: flatcamEditors/FlatCAMGeoEditor.py:2055
+#: flatcamEditors/FlatCAMGrbEditor.py:1523
#, python-format
msgid "Direction: %s"
msgstr "Direcţie: %s"
-#: flatcamEditors/FlatCAMGeoEditor.py:2037
-#: flatcamEditors/FlatCAMGrbEditor.py:1521
+#: flatcamEditors/FlatCAMGeoEditor.py:2065
+#: flatcamEditors/FlatCAMGrbEditor.py:1533
msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
msgstr "Mod: Start -> Stop -> Centru. Click pe punctul de Start ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2040
-#: flatcamEditors/FlatCAMGrbEditor.py:1524
+#: flatcamEditors/FlatCAMGeoEditor.py:2068
+#: flatcamEditors/FlatCAMGrbEditor.py:1536
msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
msgstr "Mod: Point1 -> Point3 -> Point2. Click pe Punctul1 ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2043
-#: flatcamEditors/FlatCAMGrbEditor.py:1527
+#: flatcamEditors/FlatCAMGeoEditor.py:2071
+#: flatcamEditors/FlatCAMGrbEditor.py:1539
msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
msgstr "Mod: Center -> Start -> Stop. Click pe punctul de Centru ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2181
-msgid "[success] Done. Arc completed."
-msgstr "[success] Executat. Adăugarea unei forme Arc terminată."
+#: flatcamEditors/FlatCAMGeoEditor.py:2210
+msgid "Done. Arc completed."
+msgstr "Executat. Adăugarea unei forme Arc terminată."
-#: flatcamEditors/FlatCAMGeoEditor.py:2200
-#: flatcamEditors/FlatCAMGeoEditor.py:2253
-#: flatcamEditors/FlatCAMGeoEditor.py:2628
+#: flatcamEditors/FlatCAMGeoEditor.py:2229
+#: flatcamEditors/FlatCAMGeoEditor.py:2283
+#: flatcamEditors/FlatCAMGeoEditor.py:2656
msgid "Click on 1st corner ..."
msgstr "Click pe primul colt ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2206
+#: flatcamEditors/FlatCAMGeoEditor.py:2235
msgid "Click on opposite corner to complete ..."
msgstr "Click pe punctul opus pentru terminare ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2234
-msgid "[success] Done. Rectangle completed."
-msgstr "[success] Executat. Rotaţie finalizata."
+#: flatcamEditors/FlatCAMGeoEditor.py:2264
+msgid "Done. Rectangle completed."
+msgstr "Executat. Adăugare Pătrat terminată."
-#: flatcamEditors/FlatCAMGeoEditor.py:2260
+#: flatcamEditors/FlatCAMGeoEditor.py:2290
msgid "Click on next Point or click right mouse button to complete ..."
msgstr ""
"Click pe punctul următor sau click buton dreapta al mousului pentru "
"terminare ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2288
-msgid "[success] Done. Polygon completed."
-msgstr "[success] Executat. Adăugarea unei forme Poligon terminată."
+#: flatcamEditors/FlatCAMGeoEditor.py:2319
+msgid "Done. Polygon completed."
+msgstr "Executat. Adăugarea unei forme Poligon terminată."
-#: flatcamEditors/FlatCAMGeoEditor.py:2298
-#: flatcamEditors/FlatCAMGeoEditor.py:2344
-#: flatcamEditors/FlatCAMGrbEditor.py:1075
-#: flatcamEditors/FlatCAMGrbEditor.py:1276
+#: flatcamEditors/FlatCAMGeoEditor.py:2329
+#: flatcamEditors/FlatCAMGeoEditor.py:2375
+#: flatcamEditors/FlatCAMGrbEditor.py:1085
+#: flatcamEditors/FlatCAMGrbEditor.py:1287
msgid "Backtracked one point ..."
msgstr "Revenit la penultimul Punct ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2326
+#: flatcamEditors/FlatCAMGeoEditor.py:2357
msgid "[success] Done. Path completed."
msgstr "[success] Executata. Adăugarea unei forme tip Cale terminată."
-#: flatcamEditors/FlatCAMGeoEditor.py:2449
-msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:2475
+msgid "MOVE: No shape selected. Select a shape to move"
msgstr ""
-"[WARNING_NOTCL] MUTARE: Nici-o forma nu este selectată. Selectează o forma "
-"pentru a putea face deplasare!"
+"MUTARE: Nici-o formă nu este selectată. Selectează o formă pentru a putea "
+"face deplasare"
-#: flatcamEditors/FlatCAMGeoEditor.py:2451
-#: flatcamEditors/FlatCAMGeoEditor.py:2463
+#: flatcamEditors/FlatCAMGeoEditor.py:2477
+#: flatcamEditors/FlatCAMGeoEditor.py:2489
msgid " MOVE: Click on reference point ..."
-msgstr "MUTARE: Click pe punctul de referinţă ..."
+msgstr " MUTARE: Click pe punctul de referinţă ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2454
+#: flatcamEditors/FlatCAMGeoEditor.py:2480
msgid " Click on destination point ..."
msgstr " Click pe punctul de Destinaţie ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2488
-msgid "[success] Done. Geometry(s) Move completed."
-msgstr "[success] Executat. Mutarea Geometriilor terminată."
+#: flatcamEditors/FlatCAMGeoEditor.py:2515
+msgid "Done. Geometry(s) Move completed."
+msgstr "Executat. Mutarea Geometriilor terminată."
-#: flatcamEditors/FlatCAMGeoEditor.py:2608
-msgid "[success] Done. Geometry(s) Copy completed."
-msgstr "[success] Executat. Copierea Geometriilor terminată."
+#: flatcamEditors/FlatCAMGeoEditor.py:2636
+msgid "Done. Geometry(s) Copy completed."
+msgstr "Executat. Copierea Geometriilor terminată."
-#: flatcamEditors/FlatCAMGeoEditor.py:2644
-#, python-format
+#: flatcamEditors/FlatCAMGeoEditor.py:2673
msgid ""
-"[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
-"supported. Error: %s"
+"Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
+"Error"
msgstr ""
-"[ERROR] Fontul nu este compatibil. Doar cele tip: Regular, Bold, Italic și "
-"BoldItalic sunt acceptate. Eroarea:: %s"
+"Fontul nu este compatibil. Doar cele tip: Regular, Bold, Italic și "
+"BoldItalic sunt acceptate. Eroarea"
-#: flatcamEditors/FlatCAMGeoEditor.py:2651
-msgid "[WARNING_NOTCL] No text to add."
-msgstr "[WARNING_NOTCL] Niciun text de adăugat."
+#: flatcamEditors/FlatCAMGeoEditor.py:2681
+msgid "No text to add."
+msgstr "Niciun text de adăugat."
-#: flatcamEditors/FlatCAMGeoEditor.py:2657
-msgid "[success] Done. Adding Text completed."
-msgstr "[success] Executat. Adăugarea de Text terminată."
+#: flatcamEditors/FlatCAMGeoEditor.py:2688
+msgid " Done. Adding Text completed."
+msgstr " Executat. Adăugarea de Text terminată."
-#: flatcamEditors/FlatCAMGeoEditor.py:2685
+#: flatcamEditors/FlatCAMGeoEditor.py:2716
msgid "Create buffer geometry ..."
msgstr "Crează o geometrie de tipe Bufer ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2696
-#: flatcamEditors/FlatCAMGeoEditor.py:2724
-#: flatcamEditors/FlatCAMGeoEditor.py:2752
-msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
+#: flatcamEditors/FlatCAMGeoEditor.py:2728
+#: flatcamEditors/FlatCAMGeoEditor.py:2758
+#: flatcamEditors/FlatCAMGeoEditor.py:2788
+msgid "Buffer cancelled. No shape selected."
msgstr ""
-"[WARNING_NOTCL] Crearea de geometrie Bufer anulată. Nici-o forma geometrică "
-"nu este selectată."
+"Crearea de geometrie Bufer anulată. Nici-o forma geometrică nu este "
+"selectată."
-#: flatcamEditors/FlatCAMGeoEditor.py:2720
-#: flatcamEditors/FlatCAMGrbEditor.py:4641
-msgid "[success] Done. Buffer Tool completed."
-msgstr "[success] Executat. Unealta Bufer terminată."
+#: flatcamEditors/FlatCAMGeoEditor.py:2753
+#: flatcamEditors/FlatCAMGrbEditor.py:4674
+msgid "Done. Buffer Tool completed."
+msgstr "Executat. Unealta Bufer terminată."
-#: flatcamEditors/FlatCAMGeoEditor.py:2748
-msgid "[success] Done. Buffer Int Tool completed."
-msgstr "[success] Executat. Unealta Bufer Intern terminată."
+#: flatcamEditors/FlatCAMGeoEditor.py:2783
+msgid "Done. Buffer Int Tool completed."
+msgstr "Executat. Unealta Bufer Intern terminată."
-#: flatcamEditors/FlatCAMGeoEditor.py:2776
-msgid "[success] Done. Buffer Ext Tool completed."
-msgstr "[success] Executat. Unealta Bufer Extern terminată."
+#: flatcamEditors/FlatCAMGeoEditor.py:2813
+msgid "Done. Buffer Ext Tool completed."
+msgstr "Executat. Unealta Bufer Extern terminată."
-#: flatcamEditors/FlatCAMGeoEditor.py:2811
-#: flatcamEditors/FlatCAMGrbEditor.py:2052
+#: flatcamEditors/FlatCAMGeoEditor.py:2848
+#: flatcamEditors/FlatCAMGrbEditor.py:2068
msgid "Select a shape to act as deletion area ..."
msgstr "Selectează o formă geometrică ca formă de stergere ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2813
-#: flatcamEditors/FlatCAMGeoEditor.py:2832
-#: flatcamEditors/FlatCAMGeoEditor.py:2838
-#: flatcamEditors/FlatCAMGrbEditor.py:2054
+#: flatcamEditors/FlatCAMGeoEditor.py:2850
+#: flatcamEditors/FlatCAMGeoEditor.py:2869
+#: flatcamEditors/FlatCAMGeoEditor.py:2875
+#: flatcamEditors/FlatCAMGrbEditor.py:2070
msgid "Click to pick-up the erase shape..."
msgstr "Click pentru a activa forma de stergere..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2842
-#: flatcamEditors/FlatCAMGrbEditor.py:2111
+#: flatcamEditors/FlatCAMGeoEditor.py:2879
+#: flatcamEditors/FlatCAMGrbEditor.py:2127
msgid "Click to erase ..."
msgstr "Click pt a sterge ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2871
-#: flatcamEditors/FlatCAMGrbEditor.py:2144
-msgid "[success] Done. Eraser tool action completed."
-msgstr "[success] Executat. Unealta Stergere s-a terminat."
+#: flatcamEditors/FlatCAMGeoEditor.py:2909
+#: flatcamEditors/FlatCAMGrbEditor.py:2161
+msgid "Done. Eraser tool action completed."
+msgstr "Executat. Unealta Stergere s-a terminat."
-#: flatcamEditors/FlatCAMGeoEditor.py:2914
+#: flatcamEditors/FlatCAMGeoEditor.py:2952
msgid "Create Paint geometry ..."
msgstr "Crează o geometrie Paint ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:2928
-#: flatcamEditors/FlatCAMGrbEditor.py:2292
+#: flatcamEditors/FlatCAMGeoEditor.py:2966
+#: flatcamEditors/FlatCAMGrbEditor.py:2312
msgid "Shape transformations ..."
msgstr "Transformări de forme geometrice ..."
-#: flatcamEditors/FlatCAMGeoEditor.py:3506
-#, python-brace-format
-msgid ""
-"[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
-msgstr ""
-"[WARNING_NOTCL] Se editeaza un obiect tip Geometrie MultiGeo , unealta: "
-"{tool} cu diametrul: {dia}"
+#: flatcamEditors/FlatCAMGeoEditor.py:3545
+msgid "Editing MultiGeo Geometry, tool"
+msgstr "Se editează Geometrie tip MultiGeo. unealta"
-#: flatcamEditors/FlatCAMGeoEditor.py:3863
-msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
-msgstr ""
-"[WARNING_NOTCL] Copiere anulată. Nici-o forma geometrică nu este selectată."
+#: flatcamEditors/FlatCAMGeoEditor.py:3547
+msgid "with diameter"
+msgstr "cu diametrul"
-#: flatcamEditors/FlatCAMGeoEditor.py:3870 flatcamGUI/FlatCAMGUI.py:2852
-#: flatcamGUI/FlatCAMGUI.py:2898 flatcamGUI/FlatCAMGUI.py:2916
-#: flatcamGUI/FlatCAMGUI.py:3047 flatcamGUI/FlatCAMGUI.py:3059
-#: flatcamGUI/FlatCAMGUI.py:3093 flatcamGUI/FlatCAMGUI.py:3150
+#: flatcamEditors/FlatCAMGeoEditor.py:3924
+msgid "Copy cancelled. No shape selected."
+msgstr "Copiere anulată. Nici-o forma geometrică nu este selectată."
+
+#: flatcamEditors/FlatCAMGeoEditor.py:3931 flatcamGUI/FlatCAMGUI.py:2882
+#: flatcamGUI/FlatCAMGUI.py:2928 flatcamGUI/FlatCAMGUI.py:2946
+#: flatcamGUI/FlatCAMGUI.py:3077 flatcamGUI/FlatCAMGUI.py:3089
+#: flatcamGUI/FlatCAMGUI.py:3123 flatcamGUI/FlatCAMGUI.py:3180
msgid "Click on target point."
msgstr "Click pe punctul tinta."
-#: flatcamEditors/FlatCAMGeoEditor.py:4114
-#: flatcamEditors/FlatCAMGeoEditor.py:4149
-msgid ""
-"[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
-"Intersection."
+#: flatcamEditors/FlatCAMGeoEditor.py:4175
+#: flatcamEditors/FlatCAMGeoEditor.py:4210
+msgid "A selection of at least 2 geo items is required to do Intersection."
msgstr ""
-"[WARNING_NOTCL] Cel puțin o selecţie de doua forme geometrice este necesară "
-"pentru a face o Intersecţie."
+"Cel puțin o selecţie de doua forme geometrice este necesară pentru a face o "
+"Intersecţie."
-#: flatcamEditors/FlatCAMGeoEditor.py:4235
-#: flatcamEditors/FlatCAMGeoEditor.py:4335
-msgid ""
-"[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to "
-"generate an 'inside' shape"
-msgstr ""
-"[ERROR_NOTCL] O valoare de bufer negativă nu se acceptă. Folosete Bufer "
-"Interior pentru a genera o forma geo. interioara."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:4244
#: flatcamEditors/FlatCAMGeoEditor.py:4296
-#: flatcamEditors/FlatCAMGeoEditor.py:4343
-msgid "[WARNING_NOTCL] Nothing selected for buffering."
-msgstr ""
-"[WARNING_NOTCL] Nici-o forma geometrică nu este selectată pentru a face "
-"Bufer."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:4248
-#: flatcamEditors/FlatCAMGeoEditor.py:4300
-#: flatcamEditors/FlatCAMGeoEditor.py:4347
-msgid "[WARNING_NOTCL] Invalid distance for buffering."
-msgstr "[WARNING_NOTCL] Distanta invalida pentru a face Bufer."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:4271
-#: flatcamEditors/FlatCAMGeoEditor.py:4366
+#: flatcamEditors/FlatCAMGeoEditor.py:4405
msgid ""
-"[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
+"Negative buffer value is not accepted. Use Buffer interior to generate an "
+"'inside' shape"
msgstr ""
-"[ERROR_NOTCL] Eșuat, rezultatul este gol. Foloseşte o valoare diferita "
-"pentru Bufer."
+"O valoare de bufer negativă nu se acceptă. Foloseste Bufer Interior pentru a "
+"genera o formă geo. interioară"
-#: flatcamEditors/FlatCAMGeoEditor.py:4281
-msgid "[success] Full buffer geometry created."
-msgstr "[success] Geometrie tip Bufer Complet creată."
+#: flatcamEditors/FlatCAMGeoEditor.py:4306
+#: flatcamEditors/FlatCAMGeoEditor.py:4362
+#: flatcamEditors/FlatCAMGeoEditor.py:4414
+msgid "Nothing selected for buffering."
+msgstr "Nici-o forma geometrică nu este selectată pentru a face Bufer."
-#: flatcamEditors/FlatCAMGeoEditor.py:4288
-msgid "[ERROR_NOTCL] Negative buffer value is not accepted."
-msgstr "[ERROR_NOTCL] Valoarea bufer negativă nu este acceptată."
+#: flatcamEditors/FlatCAMGeoEditor.py:4311
+#: flatcamEditors/FlatCAMGeoEditor.py:4367
+#: flatcamEditors/FlatCAMGeoEditor.py:4419
+msgid "Invalid distance for buffering."
+msgstr "Distanta invalida pentru a face Bufer."
-#: flatcamEditors/FlatCAMGeoEditor.py:4319
-msgid ""
-"[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
+#: flatcamEditors/FlatCAMGeoEditor.py:4335
+#: flatcamEditors/FlatCAMGeoEditor.py:4439
+msgid "Failed, the result is empty. Choose a different buffer value."
+msgstr "Eșuat, rezultatul este gol. Foloseşte o valoare diferita pentru Bufer."
+
+#: flatcamEditors/FlatCAMGeoEditor.py:4346
+msgid "Full buffer geometry created."
+msgstr "Geometrie tip Bufer Complet creată."
+
+#: flatcamEditors/FlatCAMGeoEditor.py:4353
+msgid "Negative buffer value is not accepted."
+msgstr "Valoarea bufer negativă nu este acceptată."
+
+#: flatcamEditors/FlatCAMGeoEditor.py:4387
+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."
+
+#: flatcamEditors/FlatCAMGeoEditor.py:4398
+msgid "Interior buffer geometry created."
+msgstr "Geometrie Bufer interior creată."
+
+#: flatcamEditors/FlatCAMGeoEditor.py:4450
+msgid "Exterior buffer geometry created."
+msgstr "Geometrie Bufer Exterior creată."
+
+#: flatcamEditors/FlatCAMGeoEditor.py:4515
+msgid "Nothing selected for painting."
+msgstr "Nici-o forma geometrică nu este selectată pentru Paint."
+
+#: flatcamEditors/FlatCAMGeoEditor.py:4522
+msgid "Invalid value for"
+msgstr "Valoare invalida pentru"
+
+#: flatcamEditors/FlatCAMGeoEditor.py:4528
+#, python-format
+msgid "Could not do Paint. Overlap value has to be less than 1.00 (100%%)."
msgstr ""
-"[ERROR_NOTCL] Eșuat, rezultatul este gol. Foloseşte of valoare mai mica pt. "
-"Bufer."
+"Nu se poate face Paint. Valoarea de suprapunere trebuie să fie mai puțin de "
+"1.00 (100%%)."
-#: flatcamEditors/FlatCAMGeoEditor.py:4329
-msgid "[success] Interior buffer geometry created."
-msgstr "[success] Geometrie Bufer interior creată."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:4376
-msgid "[success] Exterior buffer geometry created."
-msgstr "[success] Geometrie Bufer Exterior creată."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:4440
-msgid "[WARNING_NOTCL] Nothing selected for painting."
-msgstr ""
-"[WARNING_NOTCL] Nici-o forma geometrică nu este selectată pentru Paint."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:4446
-msgid "[WARNING] Invalid value for {}"
-msgstr "[WARNING] Valoare invalida pentru {}"
-
-#: flatcamEditors/FlatCAMGeoEditor.py:4452
-msgid ""
-"[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
-"(100%)."
-msgstr ""
-"[ERROR_NOTCL] Nu se poate face Paint. Valoarea de suprapunere trebuie să fie "
-"mai puțin de 1.00 (100%)."
-
-#: flatcamEditors/FlatCAMGeoEditor.py:4511
+#: flatcamEditors/FlatCAMGeoEditor.py:4587
#, python-format
msgid ""
-"[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
+"Could not do Paint. Try a different combination of parameters. Or a "
"different method of Paint\n"
"%s"
msgstr ""
-"[ERROR] Nu se poate face Paint. Incearcă o combinaţie diferita de parametri. "
-"Or o metoda diferita de Paint\n"
+"Nu se poate face Paint. Incearcă o combinaţie diferita de parametri. Or o "
+"metoda diferita de Paint\n"
"%s"
-#: flatcamEditors/FlatCAMGeoEditor.py:4522
+#: flatcamEditors/FlatCAMGeoEditor.py:4598
msgid "[success] Paint done."
msgstr "[success] Paint executat."
#: flatcamEditors/FlatCAMGrbEditor.py:208
-msgid "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
+msgid "To add an Pad first select a aperture in Aperture Table"
msgstr ""
-"[WARNING_NOTCL] Pentru a adăuga un Pad mai intai selectează o apertură "
-"(unealtă) in Tabela de Aperturi"
+"Pentru a adăuga un Pad mai intai selectează o apertură (unealtă) in Tabela "
+"de Aperturi"
-#: flatcamEditors/FlatCAMGrbEditor.py:214
-#: flatcamEditors/FlatCAMGrbEditor.py:406
-msgid ""
-"[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
-msgstr ""
-"[WARNING_NOTCL] Dimens. aperturii este zero. Trebuie sa fie mai mare ca zero."
+#: flatcamEditors/FlatCAMGrbEditor.py:215
+#: flatcamEditors/FlatCAMGrbEditor.py:409
+msgid "Aperture size is zero. It needs to be greater than zero."
+msgstr "Dimens. aperturii este zero. Trebuie sa fie mai mare ca zero."
-#: flatcamEditors/FlatCAMGrbEditor.py:365
-#: flatcamEditors/FlatCAMGrbEditor.py:670
+#: flatcamEditors/FlatCAMGrbEditor.py:366
+#: flatcamEditors/FlatCAMGrbEditor.py:674
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'."
-#: flatcamEditors/FlatCAMGrbEditor.py:377
-msgid "[success] Done. Adding Pad completed."
-msgstr "[success] Executat. Adăugarea padului terminată."
+#: flatcamEditors/FlatCAMGrbEditor.py:379
+msgid "Done. Adding Pad completed."
+msgstr "Executat. Adăugarea padului terminată."
-#: flatcamEditors/FlatCAMGrbEditor.py:399
-msgid ""
-"[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
+#: flatcamEditors/FlatCAMGrbEditor.py:401
+msgid "To add an Pad Array first select a aperture in Aperture Table"
msgstr ""
-"[WARNING_NOTCL] Pentru a adăuga o arie de paduri mai intai selectează o "
-"apertura (unealtă) in Tabela de Aperturi"
+"Pentru a adăuga o arie de paduri mai intai selectează o apertura (unealtă) "
+"in Tabela de Aperturi"
-#: flatcamEditors/FlatCAMGrbEditor.py:476
+#: flatcamEditors/FlatCAMGrbEditor.py:479
msgid "Click on the Pad Circular Array Start position"
msgstr "Click pe punctul de Start al ariei de paduri"
-#: flatcamEditors/FlatCAMGrbEditor.py:695
-msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
-msgstr "[WARNING_NOTCL] Prea multe paduri pentru unghiul selectat."
+#: flatcamEditors/FlatCAMGrbEditor.py:700
+msgid "Too many Pads for the selected spacing angle."
+msgstr "Prea multe paduri pentru unghiul selectat."
-#: flatcamEditors/FlatCAMGrbEditor.py:717
-msgid "[success] Done. Pad Array added."
-msgstr "[success] Executat. Aria de paduri a fost adăugată."
+#: flatcamEditors/FlatCAMGrbEditor.py:723
+msgid "Done. Pad Array added."
+msgstr "Executat. Aria de paduri a fost adăugată."
-#: flatcamEditors/FlatCAMGrbEditor.py:738
+#: flatcamEditors/FlatCAMGrbEditor.py:744
msgid "Select shape(s) and then click ..."
msgstr "Selectează formele si apoi click ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:749
-msgid "[ERROR_NOTCL] Failed. Nothing selected."
-msgstr "[ERROR_NOTCL] Eșuat. Nu este nimic selectat."
+#: flatcamEditors/FlatCAMGrbEditor.py:756
+msgid "Failed. Nothing selected."
+msgstr "Eșuat. Nu este nimic selectat."
-#: flatcamEditors/FlatCAMGrbEditor.py:764
+#: flatcamEditors/FlatCAMGrbEditor.py:772
msgid ""
-"[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the "
-"same aperture."
+"Failed. Poligonize works only on geometries belonging to the same aperture."
msgstr ""
-"[WARNING_NOTCL] Esuat. Poligonizarea lucrează doar asupra geometriilor care "
-"apartin aceleasi aperturi."
+"Esuat. Poligonizarea lucrează doar asupra geometriilor care apartin aceleasi "
+"aperturi."
-#: flatcamEditors/FlatCAMGrbEditor.py:817
-msgid "[success] Done. Poligonize completed."
-msgstr "[success] Executat. Poligonizare completă."
+#: flatcamEditors/FlatCAMGrbEditor.py:826
+msgid "Done. Poligonize completed."
+msgstr "Executat. Poligonizare completă."
-#: flatcamEditors/FlatCAMGrbEditor.py:870
-#: flatcamEditors/FlatCAMGrbEditor.py:1092
-#: flatcamEditors/FlatCAMGrbEditor.py:1116
+#: flatcamEditors/FlatCAMGrbEditor.py:879
+#: flatcamEditors/FlatCAMGrbEditor.py:1102
+#: flatcamEditors/FlatCAMGrbEditor.py:1126
msgid "Corner Mode 1: 45 degrees ..."
msgstr "Mod Colt 1: 45 grade ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:872
+#: flatcamEditors/FlatCAMGrbEditor.py:881
msgid "Click on 1st point ..."
msgstr "Click pe primul punct ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:882
-#: flatcamEditors/FlatCAMGrbEditor.py:1191
+#: flatcamEditors/FlatCAMGrbEditor.py:891
+#: flatcamEditors/FlatCAMGrbEditor.py:1202
msgid "Click on next Point or click Right mouse button to complete ..."
msgstr ""
"Click pe punctul următor sau click buton dreapta al mousului pentru "
"terminare ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1080
-#: flatcamEditors/FlatCAMGrbEditor.py:1113
+#: flatcamEditors/FlatCAMGrbEditor.py:1090
+#: flatcamEditors/FlatCAMGrbEditor.py:1123
msgid "Corner Mode 2: Reverse 45 degrees ..."
msgstr "Mod Colt 2: Invers 45 grade ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1083
-#: flatcamEditors/FlatCAMGrbEditor.py:1110
+#: flatcamEditors/FlatCAMGrbEditor.py:1093
+#: flatcamEditors/FlatCAMGrbEditor.py:1120
msgid "Corner Mode 3: 90 degrees ..."
msgstr "Mod Colt 3: 90 grade ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1086
-#: flatcamEditors/FlatCAMGrbEditor.py:1107
+#: flatcamEditors/FlatCAMGrbEditor.py:1096
+#: flatcamEditors/FlatCAMGrbEditor.py:1117
msgid "Corner Mode 4: Reverse 90 degrees ..."
msgstr "Mod Colt 4: Invers 90 grade ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1089
-#: flatcamEditors/FlatCAMGrbEditor.py:1104
+#: flatcamEditors/FlatCAMGrbEditor.py:1099
+#: flatcamEditors/FlatCAMGrbEditor.py:1114
msgid "Corner Mode 5: Free angle ..."
msgstr "Mod Colt 5: Unghi liber ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1143
-#: flatcamEditors/FlatCAMGrbEditor.py:1308
-#: flatcamEditors/FlatCAMGrbEditor.py:1347
+#: flatcamEditors/FlatCAMGrbEditor.py:1153
+#: flatcamEditors/FlatCAMGrbEditor.py:1319
+#: flatcamEditors/FlatCAMGrbEditor.py:1358
msgid "Track Mode 1: 45 degrees ..."
msgstr "Mod Traseu 1: 45 grade ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1288
-#: flatcamEditors/FlatCAMGrbEditor.py:1342
+#: flatcamEditors/FlatCAMGrbEditor.py:1299
+#: flatcamEditors/FlatCAMGrbEditor.py:1353
msgid "Track Mode 2: Reverse 45 degrees ..."
msgstr "Mod Traseu 2: Invers 45 grade ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1293
-#: flatcamEditors/FlatCAMGrbEditor.py:1337
+#: flatcamEditors/FlatCAMGrbEditor.py:1304
+#: flatcamEditors/FlatCAMGrbEditor.py:1348
msgid "Track Mode 3: 90 degrees ..."
msgstr "Mod Traseu 3: 90 grade ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1298
-#: flatcamEditors/FlatCAMGrbEditor.py:1332
+#: flatcamEditors/FlatCAMGrbEditor.py:1309
+#: flatcamEditors/FlatCAMGrbEditor.py:1343
msgid "Track Mode 4: Reverse 90 degrees ..."
msgstr "Mod Traseu 4: Invers 90 grade ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1303
-#: flatcamEditors/FlatCAMGrbEditor.py:1327
+#: flatcamEditors/FlatCAMGrbEditor.py:1314
+#: flatcamEditors/FlatCAMGrbEditor.py:1338
msgid "Track Mode 5: Free angle ..."
msgstr "Mod Traseu 5: Unghi liber ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1707
+#: flatcamEditors/FlatCAMGrbEditor.py:1720
msgid "Scale the selected Gerber apertures ..."
msgstr "Șterge aperturile Gerber selectate ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1749
+#: flatcamEditors/FlatCAMGrbEditor.py:1762
msgid "Buffer the selected apertures ..."
msgstr "Bufereaza aperturile selectate."
-#: flatcamEditors/FlatCAMGrbEditor.py:1791
+#: flatcamEditors/FlatCAMGrbEditor.py:1804
msgid "Mark polygon areas in the edited Gerber ..."
msgstr "Marchează ariile poligonale in obiectul Gerber editat ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:1838
-msgid "[WARNING_NOTCL] Nothing selected to move ..."
-msgstr "[WARNING_NOTCL] Nimic nu este selectat pentru mutare ..."
+#: flatcamEditors/FlatCAMGrbEditor.py:1852
+msgid "Nothing selected to move"
+msgstr "Nimic nu este selectat pentru mutare"
-#: flatcamEditors/FlatCAMGrbEditor.py:1961
-msgid "[success] Done. Apertures Move completed."
-msgstr "[success] Executat. Mutarea Aperturilor terminată."
+#: flatcamEditors/FlatCAMGrbEditor.py:1976
+msgid "Done. Apertures Move completed."
+msgstr "Executat. Mutarea Aperturilor terminată."
-#: flatcamEditors/FlatCAMGrbEditor.py:2037
-msgid "[success] Done. Apertures copied."
-msgstr "[success] Executat. Aperturile au fost copiate."
+#: flatcamEditors/FlatCAMGrbEditor.py:2053
+msgid "Done. Apertures copied."
+msgstr "Executat. Aperturile au fost copiate."
-#: flatcamEditors/FlatCAMGrbEditor.py:2334 flatcamGUI/FlatCAMGUI.py:1668
-#: flatcamGUI/FlatCAMGUI.py:4564
+#: flatcamEditors/FlatCAMGrbEditor.py:2354 flatcamGUI/FlatCAMGUI.py:1686
+#: flatcamGUI/FlatCAMGUI.py:4629
msgid "Gerber Editor"
msgstr "Editor Gerber"
-#: flatcamEditors/FlatCAMGrbEditor.py:2354 flatcamGUI/ObjectUI.py:192
-#: flatcamTools/ToolProperties.py:132
+#: flatcamEditors/FlatCAMGrbEditor.py:2374 flatcamGUI/ObjectUI.py:192
+#: flatcamTools/ToolProperties.py:137
msgid "Apertures"
msgstr "Aperturi"
-#: flatcamEditors/FlatCAMGrbEditor.py:2356 flatcamGUI/ObjectUI.py:194
+#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/ObjectUI.py:194
msgid "Apertures Table for the Gerber Object."
msgstr "Tabela de aperturi pt obiectul Gerber."
-#: flatcamEditors/FlatCAMGrbEditor.py:2367
-#: flatcamEditors/FlatCAMGrbEditor.py:3794 flatcamGUI/ObjectUI.py:227
+#: flatcamEditors/FlatCAMGrbEditor.py:2387
+#: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
msgid "Code"
msgstr "Cod"
-#: flatcamEditors/FlatCAMGrbEditor.py:2367
-#: flatcamEditors/FlatCAMGrbEditor.py:3794 flatcamGUI/ObjectUI.py:227
-#: flatcamGUI/ObjectUI.py:889 flatcamGUI/ObjectUI.py:1455
+#: flatcamEditors/FlatCAMGrbEditor.py:2387
+#: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
+#: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
msgid "Type"
msgstr "Tip"
-#: flatcamEditors/FlatCAMGrbEditor.py:2367
-#: flatcamEditors/FlatCAMGrbEditor.py:3794 flatcamGUI/ObjectUI.py:227
+#: flatcamEditors/FlatCAMGrbEditor.py:2387
+#: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
msgid "Size"
msgstr "Dimens."
-#: flatcamEditors/FlatCAMGrbEditor.py:2367
-#: flatcamEditors/FlatCAMGrbEditor.py:3794 flatcamGUI/ObjectUI.py:227
+#: flatcamEditors/FlatCAMGrbEditor.py:2387
+#: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
msgid "Dim"
msgstr "Dim"
-#: flatcamEditors/FlatCAMGrbEditor.py:2371 flatcamGUI/ObjectUI.py:231
+#: flatcamEditors/FlatCAMGrbEditor.py:2391 flatcamGUI/ObjectUI.py:231
msgid "Index"
msgstr "Index"
-#: flatcamEditors/FlatCAMGrbEditor.py:2373
-#: flatcamEditors/FlatCAMGrbEditor.py:2400 flatcamGUI/ObjectUI.py:233
+#: flatcamEditors/FlatCAMGrbEditor.py:2393
+#: flatcamEditors/FlatCAMGrbEditor.py:2420 flatcamGUI/ObjectUI.py:233
msgid "Aperture Code"
msgstr "Cod"
-#: flatcamEditors/FlatCAMGrbEditor.py:2375 flatcamGUI/ObjectUI.py:235
+#: flatcamEditors/FlatCAMGrbEditor.py:2395 flatcamGUI/ObjectUI.py:235
msgid "Type of aperture: circular, rectangle, macros etc"
msgstr ""
"Tipul aperturilor:\n"
@@ -3795,11 +3841,11 @@ msgstr ""
"- macro-uri\n"
"etc"
-#: flatcamEditors/FlatCAMGrbEditor.py:2377 flatcamGUI/ObjectUI.py:237
+#: flatcamEditors/FlatCAMGrbEditor.py:2397 flatcamGUI/ObjectUI.py:237
msgid "Aperture Size:"
msgstr "Dim. aper."
-#: flatcamEditors/FlatCAMGrbEditor.py:2379 flatcamGUI/ObjectUI.py:239
+#: flatcamEditors/FlatCAMGrbEditor.py:2399 flatcamGUI/ObjectUI.py:239
msgid ""
"Aperture Dimensions:\n"
" - (width, height) for R, O type.\n"
@@ -3809,15 +3855,15 @@ msgstr ""
"- (latime, inaltime) pt tipurile R, O.\n"
"- (diametru, nVertices) pt tipul P"
-#: flatcamEditors/FlatCAMGrbEditor.py:2402 flatcamGUI/FlatCAMGUI.py:4593
+#: flatcamEditors/FlatCAMGrbEditor.py:2422 flatcamGUI/FlatCAMGUI.py:4658
msgid "Code for the new aperture"
msgstr "Diametru pentru noua apertură"
-#: flatcamEditors/FlatCAMGrbEditor.py:2410
+#: flatcamEditors/FlatCAMGrbEditor.py:2430
msgid "Aperture Size"
msgstr "Dim. aper"
-#: flatcamEditors/FlatCAMGrbEditor.py:2412
+#: flatcamEditors/FlatCAMGrbEditor.py:2432
msgid ""
"Size for the new aperture.\n"
"If aperture type is 'R' or 'O' then\n"
@@ -3830,11 +3876,11 @@ msgstr ""
"valoarea este calculată automat prin:\n"
"sqrt(lătime**2 + inăltime**2)"
-#: flatcamEditors/FlatCAMGrbEditor.py:2424
+#: flatcamEditors/FlatCAMGrbEditor.py:2444
msgid "Aperture Type"
msgstr "Tip aper"
-#: flatcamEditors/FlatCAMGrbEditor.py:2426
+#: flatcamEditors/FlatCAMGrbEditor.py:2446
msgid ""
"Select the type of new aperture. Can be:\n"
"C = circular\n"
@@ -3846,11 +3892,11 @@ msgstr ""
"R = rectangular\n"
"O = oval"
-#: flatcamEditors/FlatCAMGrbEditor.py:2437
+#: flatcamEditors/FlatCAMGrbEditor.py:2457
msgid "Aperture Dim"
msgstr "Dim. aper"
-#: flatcamEditors/FlatCAMGrbEditor.py:2439
+#: flatcamEditors/FlatCAMGrbEditor.py:2459
msgid ""
"Dimensions for the new aperture.\n"
"Active only for rectangular apertures (type R).\n"
@@ -3860,39 +3906,39 @@ msgstr ""
"Activă doar pentru aperturile rectangulare (tip 'R').\n"
"Formatul este (lătime, inăltime)"
-#: flatcamEditors/FlatCAMGrbEditor.py:2448
-msgid "Add/Delete Aperture:"
-msgstr "Adaugă/Șterge aper."
+#: flatcamEditors/FlatCAMGrbEditor.py:2468
+msgid "Add/Delete Aperture"
+msgstr "Adaugă/Șterge apertură"
-#: flatcamEditors/FlatCAMGrbEditor.py:2450
+#: flatcamEditors/FlatCAMGrbEditor.py:2470
msgid "Add/Delete an aperture in the aperture table"
-msgstr "Adaugă/Șterge o apertură din lista de aperturi."
+msgstr "Adaugă/Șterge o apertură din lista de aperturi"
-#: flatcamEditors/FlatCAMGrbEditor.py:2459
+#: flatcamEditors/FlatCAMGrbEditor.py:2479
msgid "Add a new aperture to the aperture list."
msgstr "Adaugă o nouă apertură in lista de aperturi."
-#: flatcamEditors/FlatCAMGrbEditor.py:2464
+#: flatcamEditors/FlatCAMGrbEditor.py:2484
msgid "Delete a aperture in the aperture list"
-msgstr "Șterge o apertură din lista de aperturi."
+msgstr "Șterge o apertură din lista de aperturi"
-#: flatcamEditors/FlatCAMGrbEditor.py:2481
-msgid "Buffer Aperture:"
-msgstr "Bufer pt apertură:"
+#: flatcamEditors/FlatCAMGrbEditor.py:2501
+msgid "Buffer Aperture"
+msgstr "Bufer pt apertură"
-#: flatcamEditors/FlatCAMGrbEditor.py:2483
+#: flatcamEditors/FlatCAMGrbEditor.py:2503
msgid "Buffer a aperture in the aperture list"
msgstr "Fă bufer pt o apertură din lista de aperturi"
-#: flatcamEditors/FlatCAMGrbEditor.py:2493 flatcamGUI/FlatCAMGUI.py:4716
+#: flatcamEditors/FlatCAMGrbEditor.py:2513 flatcamGUI/FlatCAMGUI.py:4781
msgid "Buffer distance"
msgstr "Distanta pt bufer"
-#: flatcamEditors/FlatCAMGrbEditor.py:2494
+#: flatcamEditors/FlatCAMGrbEditor.py:2514
msgid "Buffer corner"
msgstr "Coltul pt bufer"
-#: flatcamEditors/FlatCAMGrbEditor.py:2496
+#: flatcamEditors/FlatCAMGrbEditor.py:2516
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded.\n"
@@ -3906,25 +3952,25 @@ msgstr ""
" - 'Beveled:' coltul este inlocuit cu o linie care uneste capetele liniilor "
"care formează coltul"
-#: flatcamEditors/FlatCAMGrbEditor.py:2511 flatcamGUI/FlatCAMGUI.py:738
-#: flatcamGUI/FlatCAMGUI.py:1654 flatcamGUI/FlatCAMGUI.py:1681
-#: flatcamGUI/FlatCAMGUI.py:2060
+#: flatcamEditors/FlatCAMGrbEditor.py:2531 flatcamGUI/FlatCAMGUI.py:738
+#: flatcamGUI/FlatCAMGUI.py:1672 flatcamGUI/FlatCAMGUI.py:1699
+#: flatcamGUI/FlatCAMGUI.py:2085
msgid "Buffer"
msgstr "Bufer"
-#: flatcamEditors/FlatCAMGrbEditor.py:2526
+#: flatcamEditors/FlatCAMGrbEditor.py:2546
msgid "Scale Aperture"
msgstr "Scalează aper."
-#: flatcamEditors/FlatCAMGrbEditor.py:2528
+#: flatcamEditors/FlatCAMGrbEditor.py:2548
msgid "Scale a aperture in the aperture list"
msgstr "Scalează o apertură in lista de aperturi"
-#: flatcamEditors/FlatCAMGrbEditor.py:2536 flatcamGUI/FlatCAMGUI.py:4729
+#: flatcamEditors/FlatCAMGrbEditor.py:2556 flatcamGUI/FlatCAMGUI.py:4794
msgid "Scale factor"
msgstr "Factor Scalare"
-#: flatcamEditors/FlatCAMGrbEditor.py:2538
+#: flatcamEditors/FlatCAMGrbEditor.py:2558
msgid ""
"The factor by which to scale the selected aperture.\n"
"Values can be between 0.0000 and 999.9999"
@@ -3932,19 +3978,19 @@ msgstr ""
"Factorul cu care se va face scalarea aperturii selectate.\n"
"Poate lua valori intre: 0.000 si 999.9999"
-#: flatcamEditors/FlatCAMGrbEditor.py:2564
+#: flatcamEditors/FlatCAMGrbEditor.py:2584
msgid "Mark polygon areas"
msgstr "Marchează ariile poligonale"
-#: flatcamEditors/FlatCAMGrbEditor.py:2566
+#: flatcamEditors/FlatCAMGrbEditor.py:2586
msgid "Mark the polygon areas."
msgstr "Marchează ariile poligonale."
-#: flatcamEditors/FlatCAMGrbEditor.py:2574
+#: flatcamEditors/FlatCAMGrbEditor.py:2594
msgid "Area UPPER threshold"
msgstr "Pragul de sus pt. arie"
-#: flatcamEditors/FlatCAMGrbEditor.py:2576
+#: flatcamEditors/FlatCAMGrbEditor.py:2596
msgid ""
"The threshold value, all areas less than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3952,11 +3998,11 @@ msgstr ""
"Valoare de prag, toate poligoanele cu arii mai mici vor fi marcate.\n"
"Poate lua valori intre: 0.000 si 999.9999"
-#: flatcamEditors/FlatCAMGrbEditor.py:2582
+#: flatcamEditors/FlatCAMGrbEditor.py:2602
msgid "Area LOWER threshold"
msgstr "Pragul de jos pt. arie"
-#: flatcamEditors/FlatCAMGrbEditor.py:2584
+#: flatcamEditors/FlatCAMGrbEditor.py:2604
msgid ""
"The threshold value, all areas more than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
@@ -3964,171 +4010,169 @@ msgstr ""
"Valoare de prag, toate poligoanele cu arii mai mari vor fi marcate.\n"
"Poate lua valori intre: 0.000 si 999.9999"
-#: flatcamEditors/FlatCAMGrbEditor.py:2597
+#: flatcamEditors/FlatCAMGrbEditor.py:2617
msgid "Go"
-msgstr "Execută!"
+msgstr "Execută"
-#: flatcamEditors/FlatCAMGrbEditor.py:2616 flatcamGUI/FlatCAMGUI.py:728
-#: flatcamGUI/FlatCAMGUI.py:2050
+#: flatcamEditors/FlatCAMGrbEditor.py:2636 flatcamGUI/FlatCAMGUI.py:728
+#: flatcamGUI/FlatCAMGUI.py:2075
msgid "Add Pad Array"
msgstr "Adaugă o arie de paduri"
-#: flatcamEditors/FlatCAMGrbEditor.py:2618
+#: flatcamEditors/FlatCAMGrbEditor.py:2638
msgid "Add an array of pads (linear or circular array)"
msgstr "Adaugă o arie de paduri (arie lineara sau circulara)."
-#: flatcamEditors/FlatCAMGrbEditor.py:2624
+#: flatcamEditors/FlatCAMGrbEditor.py:2644
msgid ""
"Select the type of pads array to create.\n"
"It can be Linear X(Y) or Circular"
msgstr ""
"Selectează tipul de arii de paduri.\n"
-"Poate fi Liniar X(Y) sau Circular."
+"Poate fi Liniar X(Y) sau Circular"
-#: flatcamEditors/FlatCAMGrbEditor.py:2635 flatcamGUI/FlatCAMGUI.py:4628
+#: flatcamEditors/FlatCAMGrbEditor.py:2655 flatcamGUI/FlatCAMGUI.py:4693
msgid "Nr of pads"
msgstr "Nr. paduri"
-#: flatcamEditors/FlatCAMGrbEditor.py:2637 flatcamGUI/FlatCAMGUI.py:4630
+#: flatcamEditors/FlatCAMGrbEditor.py:2657 flatcamGUI/FlatCAMGUI.py:4695
msgid "Specify how many pads to be in the array."
msgstr "Specifica cate paduri să fie incluse in arie."
-#: flatcamEditors/FlatCAMGrbEditor.py:2654
-#: flatcamEditors/FlatCAMGrbEditor.py:2699 flatcamGUI/FlatCAMGUI.py:5578
-msgid "Direction"
-msgstr "Direcţie"
-
-#: flatcamEditors/FlatCAMGrbEditor.py:2669 flatcamGUI/FlatCAMGUI.py:4666
-#: flatcamGUI/FlatCAMGUI.py:5646
-msgid "Pitch"
-msgstr "Pas"
-
-#: flatcamEditors/FlatCAMGrbEditor.py:3132
-#: flatcamEditors/FlatCAMGrbEditor.py:3136
-msgid ""
-"[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGrbEditor.py:3153
+#: flatcamEditors/FlatCAMGrbEditor.py:3157
+msgid "Aperture code value is missing or wrong format. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Valoarea codului aperturii lipseste sau este in format "
-"greșit. Adaugă din nou și reîncearcă."
+"Valoarea codului aperturii lipseste sau este in format greșit. Adaugă din "
+"nou și reîncearcă."
-#: flatcamEditors/FlatCAMGrbEditor.py:3172
+#: flatcamEditors/FlatCAMGrbEditor.py:3193
msgid ""
-"[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it "
-"in format (width, height) and retry."
+"Aperture dimensions value is missing or wrong format. Add it in format "
+"(width, height) and retry."
msgstr ""
-"[WARNING_NOTCL] Dimensiunile aperturii lipsesc sau sunt intr-un format "
-"greșit. Adaugă din nou și reîncearcă."
+"Dimensiunile aperturii lipsesc sau sunt intr-un format greșit. Adaugă din "
+"nou și reîncearcă."
-#: flatcamEditors/FlatCAMGrbEditor.py:3184
-msgid ""
-"[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGrbEditor.py:3206
+msgid "Aperture size value is missing or wrong format. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Valoarea mărimii aperturii lipseste sau este in format "
-"greșit. Adaugă din nou și reîncearcă."
+"Valoarea mărimii aperturii lipseste sau este in format greșit. Adaugă din "
+"nou și reîncearcă."
-#: flatcamEditors/FlatCAMGrbEditor.py:3195
-msgid "[WARNING_NOTCL] Aperture already in the aperture table."
-msgstr "[WARNING_NOTCL] Apertura este deja in lista de aperturi."
+#: flatcamEditors/FlatCAMGrbEditor.py:3217
+msgid "Aperture already in the aperture table."
+msgstr "Apertura este deja in lista de aperturi."
-#: flatcamEditors/FlatCAMGrbEditor.py:3202
-#, python-brace-format
-msgid "[success] Added new aperture with code: {apid}"
-msgstr "[success] O nouă apertură este adăugată cu codul: {apid}"
+#: flatcamEditors/FlatCAMGrbEditor.py:3225
+msgid "Added new aperture with code"
+msgstr "O nouă apertură este adăugată cu codul"
-#: flatcamEditors/FlatCAMGrbEditor.py:3230
-msgid "[WARNING_NOTCL] Select an aperture in Aperture Table"
-msgstr "[WARNING_NOTCL] Selectează o unealtă in Tabela de Aperturi"
+#: flatcamEditors/FlatCAMGrbEditor.py:3254
+msgid " Select an aperture in Aperture Table"
+msgstr " Selectează o unealtă in Tabela de Aperturi"
-#: flatcamEditors/FlatCAMGrbEditor.py:3236
-#, python-format
-msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
-msgstr "[WARNING_NOTCL] Selectează o unealtă in Tabela de Aperturi --> %s"
+#: flatcamEditors/FlatCAMGrbEditor.py:3261
+msgid "Select an aperture in Aperture Table -->"
+msgstr "Selectează o unealtă in Tabela de Aperturi -->"
-#: flatcamEditors/FlatCAMGrbEditor.py:3259
-#, python-brace-format
-msgid "[success] Deleted aperture with code: {del_dia}"
-msgstr "[success] Unealta cu diametrul: {del_dia} a fost stearsă"
+#: flatcamEditors/FlatCAMGrbEditor.py:3285
+msgid "Deleted aperture with code"
+msgstr "A fost stearsă unealta cu codul"
-#: flatcamEditors/FlatCAMGrbEditor.py:3723
+#: flatcamEditors/FlatCAMGrbEditor.py:3748
#, python-format
msgid "Adding aperture: %s geo ..."
msgstr "Se adaugă apertura: %s geo ..."
-#: flatcamEditors/FlatCAMGrbEditor.py:3911
+#: flatcamEditors/FlatCAMGrbEditor.py:3936
msgid ""
-"[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber "
-"creation."
+"There are no Aperture definitions in the file. Aborting Gerber creation."
msgstr ""
-"[ERROR_NOTCL] Nu există definitii de aperturi in fişier. Se anulează crearea "
-"de obiect Gerber."
+"Nu există definitii de aperturi in fişier. Se anulează crearea de obiect "
+"Gerber."
-#: flatcamEditors/FlatCAMGrbEditor.py:3919
+#: flatcamEditors/FlatCAMGrbEditor.py:3944
msgid "Creating Gerber."
msgstr "Gerber in curs de creare."
-#: flatcamEditors/FlatCAMGrbEditor.py:3927
-msgid "[success] Gerber editing finished."
-msgstr "[success] Editarea Gerber a fost terminată."
+#: flatcamEditors/FlatCAMGrbEditor.py:3953
+msgid "Done. Gerber editing finished."
+msgstr "Editarea Gerber a fost terminată."
-#: flatcamEditors/FlatCAMGrbEditor.py:3943
-msgid "[WARNING_NOTCL] Cancelled. No aperture is selected"
-msgstr "[WARNING_NOTCL] Anulat. Nici-o apertură nu este selectată."
+#: flatcamEditors/FlatCAMGrbEditor.py:3970
+msgid "Cancelled. No aperture is selected"
+msgstr "Anulat. Nici-o apertură nu este selectată"
-#: flatcamEditors/FlatCAMGrbEditor.py:4474
-msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected."
+#: flatcamEditors/FlatCAMGrbEditor.py:4505
+msgid "Failed. No aperture geometry is selected."
+msgstr "Anulat. Nici-o geometrie de apertură nu este selectată."
+
+#: flatcamEditors/FlatCAMGrbEditor.py:4514
+msgid "Done. Apertures geometry deleted."
+msgstr "Executat. Geometriile aperturilor au fost șterse."
+
+#: flatcamEditors/FlatCAMGrbEditor.py:4657
+msgid "No aperture to buffer. Select at least one aperture and try again."
msgstr ""
-"[WARNING_NOTCL] Anulat. Nici-o geometrie de apertură nu este selectată."
+"Nici-o apertură sel. pt a face bufer. Selectează cel puțin o apertură și "
+"încearcă din nou."
-#: flatcamEditors/FlatCAMGrbEditor.py:4482
-msgid "[success] Done. Apertures geometry deleted."
-msgstr "[success] Executat. Geometriile aperturilor au fost șterse."
+#: flatcamEditors/FlatCAMGrbEditor.py:4670
+msgid "Failed."
+msgstr "Esuat."
-#: flatcamEditors/FlatCAMGrbEditor.py:4625
-msgid ""
-"[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try "
-"again."
+#: flatcamEditors/FlatCAMGrbEditor.py:4689
+msgid "Scale factor value is missing or wrong format. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Nici-o apertură sel. pt a face bufer. Selectează cel puțin o "
-"apertură și încearcă din nou."
+"Valoarea factorului de scalare lipseste sau este in format gresit. Adaugă "
+"din nou și reîncearcă."
-#: flatcamEditors/FlatCAMGrbEditor.py:4638
-#, python-format
-msgid ""
-"[ERROR_NOTCL] Failed.\n"
-"%s"
+#: flatcamEditors/FlatCAMGrbEditor.py:4721
+msgid "No aperture to scale. Select at least one aperture and try again."
msgstr ""
-"[ERROR_NOTCL] Actiune esuată.\n"
-"%s"
+"Nici-o apertură sel. pt scalare. Selectează cel puțin o apertură și încearcă "
+"din nou."
-#: flatcamEditors/FlatCAMGrbEditor.py:4655
-msgid ""
-"[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
-"retry."
-msgstr ""
-"[WARNING_NOTCL] Valoarea factorului de scalare lipseste sau este in format "
-"gresit. Adaugă din nou și reîncearcă."
+#: flatcamEditors/FlatCAMGrbEditor.py:4737
+msgid "Done. Scale Tool completed."
+msgstr "Executat. Unealta Scalare a terminat."
-#: flatcamEditors/FlatCAMGrbEditor.py:4688
-msgid ""
-"[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
-"again."
-msgstr ""
-"[WARNING_NOTCL] Nici-o apertură sel. pt scalare. Selectează cel puțin o "
-"apertură și încearcă din nou."
+#: flatcamEditors/FlatCAMGrbEditor.py:4775
+msgid "Polygon areas marked."
+msgstr "Ariile poligonale sunt marcate."
-#: flatcamEditors/FlatCAMGrbEditor.py:4704
-msgid "[success] Done. Scale Tool completed."
-msgstr "[success] Executat. Unealta Scalare a terminat."
+#: flatcamEditors/FlatCAMGrbEditor.py:4778
+msgid "There are no polygons to mark area."
+msgstr "Nu există poligoane care sa fie marcate."
-#: flatcamEditors/FlatCAMGrbEditor.py:4741
-msgid "[success] Polygon areas marked."
-msgstr "[success] Ariile poligonale sunt marcate."
+#: flatcamEditors/FlatCAMGrbEditor.py:5549
+msgid "Rotation action was not executed."
+msgstr "Actiuena de rotatie nu a fost efectuatăt."
-#: flatcamEditors/FlatCAMGrbEditor.py:4743
-msgid "[WARNING_NOTCL] There are no polygons to mark area."
-msgstr "[WARNING_NOTCL] Nu există poligoane care sa fie marcate."
+#: flatcamEditors/FlatCAMGrbEditor.py:5688
+msgid "Skew action was not executed."
+msgstr "Actiunea de deformare nu a fost efectuată."
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5758
+msgid "Scale action was not executed."
+msgstr "Actiuena de scalare nu a fost efectuată."
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5807
+msgid "Offset action was not executed."
+msgstr "Actiuena de offset nu a fost efectuată."
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5863
+msgid "Geometry shape offset Y cancelled"
+msgstr "Deplasarea formei geometrice pe axa Y anulată"
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5880
+msgid "Geometry shape skew X cancelled"
+msgstr "Deformarea formei geometrice pe axa X anulată"
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5897
+msgid "Geometry shape skew Y cancelled"
+msgstr "Deformarea formei geometrice pe axa Y executată"
#: flatcamGUI/FlatCAMGUI.py:52
msgid "&File"
@@ -4376,7 +4420,8 @@ msgstr "Fuzionează Excellon(s) -> Excellon"
#: flatcamGUI/FlatCAMGUI.py:270
msgid "Merge a selection of Excellon objects into a new combo Excellon object."
msgstr ""
-"Fuzionează o selecţie de obiecte Excellon intr-un nou obiect Excellon >combo<"
+"Fuzionează o selecţie de obiecte Excellon intr-un nou obiect Excellon "
+">combo<."
#: flatcamGUI/FlatCAMGUI.py:273
msgid "Join Gerber(s) -> Gerber"
@@ -4385,7 +4430,7 @@ msgstr "Fuzionează Gerber(s) -> Gerber"
#: flatcamGUI/FlatCAMGUI.py:275
msgid "Merge a selection of Gerber objects into a new combo Gerber object."
msgstr ""
-"Fuzionează o selecţie de obiecte Gerber intr-un nou obiect Gerber >combo<"
+"Fuzionează o selecţie de obiecte Gerber intr-un nou obiect Gerber >combo<."
#: flatcamGUI/FlatCAMGUI.py:280
msgid "Convert Single to MultiGeo"
@@ -4735,12 +4780,12 @@ msgstr "Generează CNC"
msgid "View Source"
msgstr "Vizualiz. Sursa"
-#: flatcamGUI/FlatCAMGUI.py:543 flatcamGUI/FlatCAMGUI.py:1702
+#: flatcamGUI/FlatCAMGUI.py:543 flatcamGUI/FlatCAMGUI.py:1720
msgid "Edit"
msgstr "Editează"
-#: flatcamGUI/FlatCAMGUI.py:549 flatcamGUI/FlatCAMGUI.py:1708
-#: flatcamTools/ToolProperties.py:25
+#: flatcamGUI/FlatCAMGUI.py:549 flatcamGUI/FlatCAMGUI.py:1726
+#: flatcamTools/ToolProperties.py:24
msgid "Properties"
msgstr "Proprietati"
@@ -4780,15 +4825,15 @@ msgstr "Toolbar Editor Gerber"
msgid "Grid Toolbar"
msgstr "Toolbar Grid-uri"
-#: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1948
+#: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1973
msgid "Open project"
msgstr "Încarcă Proiect"
-#: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1949
+#: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1974
msgid "Save project"
msgstr "Salvează Proiect"
-#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1952
+#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1977
msgid "New Blank Geometry"
msgstr "Geometrie Noua (goală)"
@@ -4796,175 +4841,175 @@ msgstr "Geometrie Noua (goală)"
msgid "New Blank Gerber"
msgstr "Gerber Nou (gol)"
-#: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1953
+#: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1978
msgid "New Blank Excellon"
msgstr "Excellon nou (gol)"
-#: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1955
+#: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1980
msgid "Editor"
msgstr "Editor"
-#: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1957
+#: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1982
msgid "Save Object and close the Editor"
msgstr "Salvează Obiectul și inchide Editorul"
-#: flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1961
+#: flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1986
msgid "&Delete"
msgstr "&Șterge"
-#: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1964
+#: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1989
msgid "&Replot"
msgstr "&Reafișare"
-#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1965
+#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1990
msgid "&Clear plot"
msgstr "&Șterge Afișare"
-#: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1966
+#: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1991
msgid "Zoom In"
msgstr "Marire"
-#: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1967
+#: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1992
msgid "Zoom Out"
msgstr "Micsorare"
-#: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1639
-#: flatcamGUI/FlatCAMGUI.py:1968
+#: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1657
+#: flatcamGUI/FlatCAMGUI.py:1993
msgid "Zoom Fit"
msgstr "Marire și ajustare"
-#: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1973
+#: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1998
msgid "&Command Line"
msgstr "&Linie de comanda"
-#: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1976
+#: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:2001
msgid "2Sided Tool"
msgstr "Unealta 2-fețe"
-#: flatcamGUI/FlatCAMGUI.py:659 flatcamGUI/FlatCAMGUI.py:1977
+#: flatcamGUI/FlatCAMGUI.py:659 flatcamGUI/FlatCAMGUI.py:2002
msgid "&Cutout Tool"
msgstr "Unealta Decupare"
-#: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:1978
-#: flatcamGUI/ObjectUI.py:390 flatcamTools/ToolNonCopperClear.py:437
+#: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:2003
+#: flatcamGUI/ObjectUI.py:452 flatcamTools/ToolNonCopperClear.py:531
msgid "NCC Tool"
msgstr "Unealta NCC"
-#: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:1982
+#: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:2007
msgid "Panel Tool"
msgstr "Unealta Panel"
-#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1983
+#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:2008
#: flatcamTools/ToolFilm.py:209
msgid "Film Tool"
msgstr "Unealta Film"
-#: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:1985
+#: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:2010
#: flatcamTools/ToolSolderPaste.py:455
msgid "SolderPaste Tool"
msgstr "Unealta Dispenser SP"
-#: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:1986
+#: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:2011
#: flatcamTools/ToolSub.py:28
msgid "Substract Tool"
msgstr "Unealta Scădere"
-#: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1991
+#: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:2016
msgid "Calculators Tool"
msgstr "Unealta Calculatoare"
#: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:692
-#: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:1995
-#: flatcamGUI/FlatCAMGUI.py:2048
+#: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:2020
+#: flatcamGUI/FlatCAMGUI.py:2073
msgid "Select"
msgstr "Selectează"
-#: flatcamGUI/FlatCAMGUI.py:676 flatcamGUI/FlatCAMGUI.py:1996
+#: flatcamGUI/FlatCAMGUI.py:676 flatcamGUI/FlatCAMGUI.py:2021
msgid "Add Drill Hole"
msgstr "Adaugă o Găurire"
-#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1998
+#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:2023
msgid "Add Drill Hole Array"
msgstr "Adaugă o arie de Găuriri"
-#: flatcamGUI/FlatCAMGUI.py:679 flatcamGUI/FlatCAMGUI.py:1694
-#: flatcamGUI/FlatCAMGUI.py:2000
+#: flatcamGUI/FlatCAMGUI.py:679 flatcamGUI/FlatCAMGUI.py:1712
+#: flatcamGUI/FlatCAMGUI.py:2025
msgid "Add Slot"
msgstr "Adaugă Slot"
-#: flatcamGUI/FlatCAMGUI.py:681 flatcamGUI/FlatCAMGUI.py:1695
-#: flatcamGUI/FlatCAMGUI.py:2002
+#: flatcamGUI/FlatCAMGUI.py:681 flatcamGUI/FlatCAMGUI.py:1713
+#: flatcamGUI/FlatCAMGUI.py:2027
msgid "Add Slot Array"
msgstr "Adaugă o Arie sloturi"
-#: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1697
-#: flatcamGUI/FlatCAMGUI.py:1999
+#: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1715
+#: flatcamGUI/FlatCAMGUI.py:2024
msgid "Resize Drill"
msgstr "Redimens. Găurire"
-#: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:2005
+#: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:2030
msgid "Copy Drill"
msgstr "Copiază Găurire"
-#: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:2007
+#: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:2032
msgid "Delete Drill"
msgstr "Șterge Găurire"
-#: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:2010
+#: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:2035
msgid "Move Drill"
msgstr "Muta Găurire"
-#: flatcamGUI/FlatCAMGUI.py:693 flatcamGUI/FlatCAMGUI.py:2014
+#: flatcamGUI/FlatCAMGUI.py:693 flatcamGUI/FlatCAMGUI.py:2039
msgid "Add Circle"
msgstr "Adaugă Cerc"
-#: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:2015
+#: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:2040
msgid "Add Arc"
msgstr "Adaugă Arc"
-#: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:2017
+#: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:2042
msgid "Add Rectangle"
msgstr "Adaugă Patrulater"
-#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2020
+#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2045
msgid "Add Path"
msgstr "Adaugă Cale"
-#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2022
+#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2047
msgid "Add Polygon"
msgstr "Adaugă Poligon"
-#: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:2024
+#: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:2049
msgid "Add Text"
msgstr "Adaugă Text"
-#: flatcamGUI/FlatCAMGUI.py:703 flatcamGUI/FlatCAMGUI.py:2025
+#: flatcamGUI/FlatCAMGUI.py:703 flatcamGUI/FlatCAMGUI.py:2050
msgid "Add Buffer"
msgstr "Adaugă Bufer"
-#: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:2026
+#: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:2051
msgid "Paint Shape"
msgstr "Paint o forma"
#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:743
-#: flatcamGUI/FlatCAMGUI.py:1656 flatcamGUI/FlatCAMGUI.py:1684
-#: flatcamGUI/FlatCAMGUI.py:2027 flatcamGUI/FlatCAMGUI.py:2064
+#: flatcamGUI/FlatCAMGUI.py:1674 flatcamGUI/FlatCAMGUI.py:1702
+#: flatcamGUI/FlatCAMGUI.py:2052 flatcamGUI/FlatCAMGUI.py:2089
msgid "Eraser"
msgstr "Stergere Selectivă"
-#: flatcamGUI/FlatCAMGUI.py:708 flatcamGUI/FlatCAMGUI.py:2030
+#: flatcamGUI/FlatCAMGUI.py:708 flatcamGUI/FlatCAMGUI.py:2055
msgid "Polygon Union"
msgstr "Uniune Poligoane"
-#: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:2032
+#: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:2057
msgid "Polygon Intersection"
msgstr "Intersecţie Poligoane"
-#: flatcamGUI/FlatCAMGUI.py:712 flatcamGUI/FlatCAMGUI.py:2034
+#: flatcamGUI/FlatCAMGUI.py:712 flatcamGUI/FlatCAMGUI.py:2059
msgid "Polygon Subtraction"
msgstr "Substracţie Poligoane"
-#: flatcamGUI/FlatCAMGUI.py:715 flatcamGUI/FlatCAMGUI.py:2037
+#: flatcamGUI/FlatCAMGUI.py:715 flatcamGUI/FlatCAMGUI.py:2062
msgid "Cut Path"
msgstr "Taie Cale"
@@ -4977,83 +5022,83 @@ msgid "Delete Shape '-'"
msgstr "Șterge forme geo."
#: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:750
-#: flatcamGUI/FlatCAMGUI.py:1663 flatcamGUI/FlatCAMGUI.py:1688
-#: flatcamGUI/FlatCAMGUI.py:2042 flatcamGUI/FlatCAMGUI.py:2071
+#: flatcamGUI/FlatCAMGUI.py:1681 flatcamGUI/FlatCAMGUI.py:1706
+#: flatcamGUI/FlatCAMGUI.py:2067 flatcamGUI/FlatCAMGUI.py:2096
msgid "Transformations"
msgstr "Transformări"
#: flatcamGUI/FlatCAMGUI.py:723
msgid "Move Objects "
-msgstr "Muta obiecte"
+msgstr "Mută Obiecte "
-#: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2049
+#: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2074
msgid "Add Pad"
msgstr "Adaugă Pad"
-#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:2051
+#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:2076
msgid "Add Track"
msgstr "Adaugă Traseu"
-#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:2052
+#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:2077
msgid "Add Region"
msgstr "Adaugă Regiune"
-#: flatcamGUI/FlatCAMGUI.py:732 flatcamGUI/FlatCAMGUI.py:1676
-#: flatcamGUI/FlatCAMGUI.py:2054
+#: flatcamGUI/FlatCAMGUI.py:732 flatcamGUI/FlatCAMGUI.py:1694
+#: flatcamGUI/FlatCAMGUI.py:2079
msgid "Poligonize"
msgstr "Poligonizare"
-#: flatcamGUI/FlatCAMGUI.py:734 flatcamGUI/FlatCAMGUI.py:1677
-#: flatcamGUI/FlatCAMGUI.py:2056
+#: flatcamGUI/FlatCAMGUI.py:734 flatcamGUI/FlatCAMGUI.py:1695
+#: flatcamGUI/FlatCAMGUI.py:2081
msgid "SemiDisc"
msgstr "SemiDisc"
-#: flatcamGUI/FlatCAMGUI.py:735 flatcamGUI/FlatCAMGUI.py:1678
-#: flatcamGUI/FlatCAMGUI.py:2057
+#: flatcamGUI/FlatCAMGUI.py:735 flatcamGUI/FlatCAMGUI.py:1696
+#: flatcamGUI/FlatCAMGUI.py:2082
msgid "Disc"
msgstr "Disc"
-#: flatcamGUI/FlatCAMGUI.py:741 flatcamGUI/FlatCAMGUI.py:1683
-#: flatcamGUI/FlatCAMGUI.py:2063
+#: flatcamGUI/FlatCAMGUI.py:741 flatcamGUI/FlatCAMGUI.py:1701
+#: flatcamGUI/FlatCAMGUI.py:2088
msgid "Mark Area"
msgstr "Marc. aria"
-#: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:1666
-#: flatcamGUI/FlatCAMGUI.py:1707 flatcamGUI/FlatCAMGUI.py:2073
+#: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:1684
+#: flatcamGUI/FlatCAMGUI.py:1725 flatcamGUI/FlatCAMGUI.py:2098
#: flatcamTools/ToolMove.py:26
msgid "Move"
msgstr "Mutare"
-#: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2079
+#: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2104
msgid "Snap to grid"
msgstr "Lipire la grid"
-#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:2082
+#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:2107
msgid "Grid X snapping distance"
msgstr "Distanta de lipire la grid pe axa X"
-#: flatcamGUI/FlatCAMGUI.py:766 flatcamGUI/FlatCAMGUI.py:2087
+#: flatcamGUI/FlatCAMGUI.py:766 flatcamGUI/FlatCAMGUI.py:2112
msgid "Grid Y snapping distance"
msgstr "Distanta de lipire la grid pe axa Y"
-#: flatcamGUI/FlatCAMGUI.py:772 flatcamGUI/FlatCAMGUI.py:2093
+#: flatcamGUI/FlatCAMGUI.py:772 flatcamGUI/FlatCAMGUI.py:2118
msgid ""
"When active, value on Grid_X\n"
"is copied to the Grid_Y value."
msgstr ""
-"când este activ, valoarea de pe Grid_X\n"
-"este copiata și in Grid_Y"
+"Când este activ, valoarea de pe Grid_X\n"
+"este copiata și in Grid_Y."
-#: flatcamGUI/FlatCAMGUI.py:778 flatcamGUI/FlatCAMGUI.py:2099
+#: flatcamGUI/FlatCAMGUI.py:778 flatcamGUI/FlatCAMGUI.py:2124
msgid "Snap to corner"
msgstr "Lipire la colt"
-#: flatcamGUI/FlatCAMGUI.py:782 flatcamGUI/FlatCAMGUI.py:2103
-#: flatcamGUI/FlatCAMGUI.py:3524
+#: flatcamGUI/FlatCAMGUI.py:782 flatcamGUI/FlatCAMGUI.py:2128
+#: flatcamGUI/FlatCAMGUI.py:3575
msgid "Max. magnet distance"
msgstr "Distanta magnetica maxima"
-#: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:1633
+#: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:1651
msgid "Project"
msgstr "Proiect"
@@ -5075,7 +5120,7 @@ msgstr "Default for App"
#: flatcamGUI/FlatCAMGUI.py:882
msgid "PROJ. OPTIONS "
-msgstr "Opțiuni Proiect"
+msgstr "Opțiuni Proiect "
#: flatcamGUI/FlatCAMGUI.py:894 flatcamTools/ToolDblSided.py:47
msgid "GERBER"
@@ -5093,15 +5138,19 @@ msgstr "GEOMETRIE"
msgid "CNC-JOB"
msgstr "CNCJob"
-#: flatcamGUI/FlatCAMGUI.py:933
+#: flatcamGUI/FlatCAMGUI.py:933 flatcamGUI/ObjectUI.py:441
msgid "TOOLS"
msgstr "Unelte"
-#: flatcamGUI/FlatCAMGUI.py:950
+#: flatcamGUI/FlatCAMGUI.py:943
+msgid "FILE ASSOCIATIONS"
+msgstr "ASOCIERI FISIERE"
+
+#: flatcamGUI/FlatCAMGUI.py:960
msgid "Import Preferences"
msgstr "Importa Preferințele"
-#: flatcamGUI/FlatCAMGUI.py:953
+#: flatcamGUI/FlatCAMGUI.py:963
msgid ""
"Import a full set of FlatCAM settings from a file\n"
"previously saved on HDD.\n"
@@ -5115,11 +5164,11 @@ msgstr ""
"FlatCAM salvează automat un fişier numit 'factory_defaults'\n"
"la prima pornire. Nu șterge acel fişier."
-#: flatcamGUI/FlatCAMGUI.py:960
+#: flatcamGUI/FlatCAMGUI.py:970
msgid "Export Preferences"
msgstr "Exporta Preferințele"
-#: flatcamGUI/FlatCAMGUI.py:963
+#: flatcamGUI/FlatCAMGUI.py:973
msgid ""
"Export a full set of FlatCAM settings in a file\n"
"that is saved on HDD."
@@ -5127,15 +5176,15 @@ msgstr ""
"Exporta un set complet de setări ale FlatCAM\n"
"intr-un fişier care se salvează pe HDD."
-#: flatcamGUI/FlatCAMGUI.py:968
+#: flatcamGUI/FlatCAMGUI.py:978
msgid "Open Pref Folder"
msgstr "Deschide Pref Dir"
-#: flatcamGUI/FlatCAMGUI.py:971
+#: flatcamGUI/FlatCAMGUI.py:981
msgid "Open the folder where FlatCAM save the preferences files."
msgstr "Deschide directorul unde FlatCAM salvează fişierele cu setări."
-#: flatcamGUI/FlatCAMGUI.py:982
+#: flatcamGUI/FlatCAMGUI.py:992
msgid ""
"Save the current settings in the 'current_defaults' file\n"
"which is the file storing the working default preferences."
@@ -5143,7 +5192,7 @@ msgstr ""
"Salvează setările curente in fişierul numit: 'current_defaults'\n"
"fişier care este cel unde se salvează preferințele cu care se va lucra."
-#: flatcamGUI/FlatCAMGUI.py:1008
+#: flatcamGUI/FlatCAMGUI.py:1018
msgid ""
"General Shortcut list
\n"
" \n"
" | ALT+F10 | \n"
" Toggle Full Screen | \n"
+" \n"
+" \n"
+" | | \n"
+" | \n"
"
\n"
" \n"
+" | CTRL+ALT+X | \n"
+" Abort current task (gracefully) | \n"
+"
\n"
+" \n"
" | | \n"
" | \n"
"
\n"
@@ -5676,6 +5733,14 @@ msgstr ""
" | \n"
" \n"
" \n"
+" | CTRL+ALT+X | \n"
+" Anuleaza taskul curent | \n"
+"
\n"
+" \n"
+" | | \n"
+" | \n"
+"
\n"
+" \n"
" | F1 | \n"
" Deschide Manualul Online | \n"
"
\n"
@@ -5709,7 +5774,7 @@ msgstr ""
" \n"
" "
-#: flatcamGUI/FlatCAMGUI.py:1293
+#: flatcamGUI/FlatCAMGUI.py:1311
msgid ""
"Editor Shortcut list
\n"
"
\n"
@@ -6383,186 +6448,186 @@ msgstr ""
"
\n"
" "
-#: flatcamGUI/FlatCAMGUI.py:1624
+#: flatcamGUI/FlatCAMGUI.py:1642
msgid "Toggle Visibility"
msgstr "Comută Vizibilitate"
-#: flatcamGUI/FlatCAMGUI.py:1625
+#: flatcamGUI/FlatCAMGUI.py:1643
msgid "Toggle Panel"
msgstr "Comută Panel"
-#: flatcamGUI/FlatCAMGUI.py:1628
+#: flatcamGUI/FlatCAMGUI.py:1646
msgid "New"
msgstr "Nou"
-#: flatcamGUI/FlatCAMGUI.py:1629
+#: flatcamGUI/FlatCAMGUI.py:1647
msgid "Geometry"
msgstr "Geometrie"
-#: flatcamGUI/FlatCAMGUI.py:1631
+#: flatcamGUI/FlatCAMGUI.py:1649
msgid "Excellon"
msgstr "Excellon"
-#: flatcamGUI/FlatCAMGUI.py:1636
+#: flatcamGUI/FlatCAMGUI.py:1654
msgid "Grids"
msgstr "Grid-uri"
-#: flatcamGUI/FlatCAMGUI.py:1638
+#: flatcamGUI/FlatCAMGUI.py:1656
msgid "View"
msgstr "Vizualizare"
-#: flatcamGUI/FlatCAMGUI.py:1640
+#: flatcamGUI/FlatCAMGUI.py:1658
msgid "Clear Plot"
msgstr "Șterge Afișare"
-#: flatcamGUI/FlatCAMGUI.py:1641
+#: flatcamGUI/FlatCAMGUI.py:1659
msgid "Replot"
msgstr "Reafișare"
-#: flatcamGUI/FlatCAMGUI.py:1644
+#: flatcamGUI/FlatCAMGUI.py:1662
msgid "Geo Editor"
msgstr "Editor Geometrii"
-#: flatcamGUI/FlatCAMGUI.py:1645
+#: flatcamGUI/FlatCAMGUI.py:1663
msgid "Path"
msgstr "Pe cale"
-#: flatcamGUI/FlatCAMGUI.py:1646
+#: flatcamGUI/FlatCAMGUI.py:1664
msgid "Rectangle"
msgstr "Patrulater"
-#: flatcamGUI/FlatCAMGUI.py:1648
+#: flatcamGUI/FlatCAMGUI.py:1666
msgid "Circle"
msgstr "Cerc"
-#: flatcamGUI/FlatCAMGUI.py:1649
+#: flatcamGUI/FlatCAMGUI.py:1667
msgid "Polygon"
msgstr "Poligon"
-#: flatcamGUI/FlatCAMGUI.py:1650
+#: flatcamGUI/FlatCAMGUI.py:1668
msgid "Arc"
msgstr "Arc"
-#: flatcamGUI/FlatCAMGUI.py:1653
+#: flatcamGUI/FlatCAMGUI.py:1671
msgid "Text"
msgstr "Text"
-#: flatcamGUI/FlatCAMGUI.py:1659
+#: flatcamGUI/FlatCAMGUI.py:1677
msgid "Union"
msgstr "Uniune"
-#: flatcamGUI/FlatCAMGUI.py:1660
+#: flatcamGUI/FlatCAMGUI.py:1678
msgid "Intersection"
msgstr "Intersecţie"
-#: flatcamGUI/FlatCAMGUI.py:1661
+#: flatcamGUI/FlatCAMGUI.py:1679
msgid "Substraction"
msgstr "Scădere"
-#: flatcamGUI/FlatCAMGUI.py:1662 flatcamGUI/FlatCAMGUI.py:6110
-#: flatcamGUI/ObjectUI.py:1346
+#: flatcamGUI/FlatCAMGUI.py:1680 flatcamGUI/FlatCAMGUI.py:6175
+#: flatcamGUI/ObjectUI.py:1409
msgid "Cut"
msgstr "Tăiere"
-#: flatcamGUI/FlatCAMGUI.py:1669
+#: flatcamGUI/FlatCAMGUI.py:1687
msgid "Pad"
msgstr "Pad"
-#: flatcamGUI/FlatCAMGUI.py:1670
+#: flatcamGUI/FlatCAMGUI.py:1688
msgid "Pad Array"
msgstr "Arie de paduri"
-#: flatcamGUI/FlatCAMGUI.py:1673
+#: flatcamGUI/FlatCAMGUI.py:1691
msgid "Track"
msgstr "Traseu"
-#: flatcamGUI/FlatCAMGUI.py:1674
+#: flatcamGUI/FlatCAMGUI.py:1692
msgid "Region"
msgstr "Regiune"
-#: flatcamGUI/FlatCAMGUI.py:1690
+#: flatcamGUI/FlatCAMGUI.py:1708
msgid "Exc Editor"
-msgstr "Editor EXC."
+msgstr "Editor EXC"
-#: flatcamGUI/FlatCAMGUI.py:1691
+#: flatcamGUI/FlatCAMGUI.py:1709
msgid "Add Drill"
msgstr "Adaugă găurire"
-#: flatcamGUI/FlatCAMGUI.py:1727
+#: flatcamGUI/FlatCAMGUI.py:1745
msgid "Print Preview"
msgstr "Preview tiparire"
-#: flatcamGUI/FlatCAMGUI.py:1728
+#: flatcamGUI/FlatCAMGUI.py:1746
msgid "Print Code"
msgstr "Tipareste Cod"
-#: flatcamGUI/FlatCAMGUI.py:1729
+#: flatcamGUI/FlatCAMGUI.py:1747
msgid "Find in Code"
msgstr "Cauta in Cod"
-#: flatcamGUI/FlatCAMGUI.py:1734
+#: flatcamGUI/FlatCAMGUI.py:1752
msgid "Replace With"
msgstr "Inlocuieste cu"
-#: flatcamGUI/FlatCAMGUI.py:1738 flatcamGUI/FlatCAMGUI.py:6108
-#: flatcamGUI/FlatCAMGUI.py:6792 flatcamGUI/ObjectUI.py:1344
+#: flatcamGUI/FlatCAMGUI.py:1756 flatcamGUI/FlatCAMGUI.py:6173
+#: flatcamGUI/FlatCAMGUI.py:6966 flatcamGUI/ObjectUI.py:1407
msgid "All"
msgstr "Toate"
-#: flatcamGUI/FlatCAMGUI.py:1740
+#: flatcamGUI/FlatCAMGUI.py:1758
msgid ""
"When checked it will replace all instances in the 'Find' box\n"
"with the text in the 'Replace' box.."
msgstr ""
-"Când este bifat, va inlocui toate cuvintele gasite conform ce este in "
-"'Cauta'\n"
-"cu textul din casuta 'Inlocuieste'"
+"Când este bifat, va inlocui toate cuvintele gasite conform cu ce este in "
+"'Caută'\n"
+"cu textul din casuta 'Inlocuieste'..."
-#: flatcamGUI/FlatCAMGUI.py:1743
+#: flatcamGUI/FlatCAMGUI.py:1761
msgid "Open Code"
msgstr "Deschide Cod"
-#: flatcamGUI/FlatCAMGUI.py:1744
+#: flatcamGUI/FlatCAMGUI.py:1762
msgid "Save Code"
msgstr "Salvează Cod"
-#: flatcamGUI/FlatCAMGUI.py:1779
+#: flatcamGUI/FlatCAMGUI.py:1797
msgid ""
"Relative neasurement.\n"
"Reference is last click position"
msgstr ""
"Măsurătoare relativă.\n"
-"Referința este poziţia ultimului click pe canvas."
+"Referința este poziţia ultimului click pe canvas"
-#: flatcamGUI/FlatCAMGUI.py:1785
+#: flatcamGUI/FlatCAMGUI.py:1803
msgid ""
"Absolute neasurement.\n"
"Reference is (X=0, Y= 0) position"
msgstr ""
"Măsurătoare absolută.\n"
-"Referința este originea (0, 0)."
+"Referința este originea (0, 0)"
-#: flatcamGUI/FlatCAMGUI.py:1909
+#: flatcamGUI/FlatCAMGUI.py:1933
msgid "Lock Toolbars"
msgstr "Blochează Toolbar-uri"
-#: flatcamGUI/FlatCAMGUI.py:2013
+#: flatcamGUI/FlatCAMGUI.py:2038
msgid "Select 'Esc'"
msgstr "Select"
-#: flatcamGUI/FlatCAMGUI.py:2038
+#: flatcamGUI/FlatCAMGUI.py:2063
msgid "Copy Objects"
msgstr "Copiază Obiecte"
-#: flatcamGUI/FlatCAMGUI.py:2040
+#: flatcamGUI/FlatCAMGUI.py:2065
msgid "Delete Shape"
msgstr "Șterge forme geo"
-#: flatcamGUI/FlatCAMGUI.py:2045
+#: flatcamGUI/FlatCAMGUI.py:2070
msgid "Move Objects"
msgstr "Mută Obiecte"
-#: flatcamGUI/FlatCAMGUI.py:2476
+#: flatcamGUI/FlatCAMGUI.py:2506
msgid ""
"Please first select a geometry item to be cutted\n"
"then select the geometry item that will be cutted\n"
@@ -6573,17 +6638,21 @@ msgstr ""
"apoi selectează forma geo. tăietoare. La final apasă tasta ~X~ sau\n"
"butonul corespunzator din Toolbar."
-#: flatcamGUI/FlatCAMGUI.py:2483 flatcamGUI/FlatCAMGUI.py:2620
-#: flatcamGUI/FlatCAMGUI.py:2679 flatcamGUI/FlatCAMGUI.py:2699
+#: flatcamGUI/FlatCAMGUI.py:2513 flatcamGUI/FlatCAMGUI.py:2650
+#: flatcamGUI/FlatCAMGUI.py:2709 flatcamGUI/FlatCAMGUI.py:2729
msgid "Warning"
msgstr "Atenţie"
-#: flatcamGUI/FlatCAMGUI.py:2550 flatcamGUI/FlatCAMGUI.py:2758
-#: flatcamGUI/FlatCAMGUI.py:2969
+#: flatcamGUI/FlatCAMGUI.py:2560 flatcamGUI/FlatCAMGUI.py:2572
+msgid "[success] Done."
+msgstr "[success] Executat."
+
+#: flatcamGUI/FlatCAMGUI.py:2580 flatcamGUI/FlatCAMGUI.py:2788
+#: flatcamGUI/FlatCAMGUI.py:2999
msgid "[WARNING_NOTCL] Cancelled."
msgstr "[WARNING_NOTCL] Anulat."
-#: flatcamGUI/FlatCAMGUI.py:2615
+#: flatcamGUI/FlatCAMGUI.py:2645
msgid ""
"Please select geometry items \n"
"on which to perform Intersection Tool."
@@ -6591,7 +6660,7 @@ msgstr ""
"Selectează forma geometrică asupra căreia să se\n"
"aplice Unealta Intersecţie."
-#: flatcamGUI/FlatCAMGUI.py:2674
+#: flatcamGUI/FlatCAMGUI.py:2704
msgid ""
"Please select geometry items \n"
"on which to perform Substraction Tool."
@@ -6599,7 +6668,7 @@ msgstr ""
"Selectează forma geometrică asupra căreia să se\n"
"aplice Unealta Substracţie."
-#: flatcamGUI/FlatCAMGUI.py:2694
+#: flatcamGUI/FlatCAMGUI.py:2724
msgid ""
"Please select geometry items \n"
"on which to perform union."
@@ -6607,59 +6676,68 @@ msgstr ""
"Selectează forma geometrică asupra căreia să se\n"
"aplice Unealta Uniune."
-#: flatcamGUI/FlatCAMGUI.py:2774 flatcamGUI/FlatCAMGUI.py:2986
+#: flatcamGUI/FlatCAMGUI.py:2804 flatcamGUI/FlatCAMGUI.py:3016
msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
msgstr "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentru ștergere."
-#: flatcamGUI/FlatCAMGUI.py:2858 flatcamGUI/FlatCAMGUI.py:3053
+#: flatcamGUI/FlatCAMGUI.py:2888 flatcamGUI/FlatCAMGUI.py:3083
msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
msgstr "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentru copiere."
-#: flatcamGUI/FlatCAMGUI.py:2904 flatcamGUI/FlatCAMGUI.py:3099
+#: flatcamGUI/FlatCAMGUI.py:2934 flatcamGUI/FlatCAMGUI.py:3129
msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
msgstr "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentru mutare."
-#: flatcamGUI/FlatCAMGUI.py:3125
+#: flatcamGUI/FlatCAMGUI.py:3155
msgid "New Tool ..."
msgstr "O noua Unealtă ..."
-#: flatcamGUI/FlatCAMGUI.py:3126
-msgid "Enter a Tool Diameter:"
-msgstr "Introduceti un Diametru de Unealtă:"
+#: flatcamGUI/FlatCAMGUI.py:3156
+msgid "Enter a Tool Diameter"
+msgstr "Introduceti un Diametru de Unealtă"
-#: flatcamGUI/FlatCAMGUI.py:3181
+#: flatcamGUI/FlatCAMGUI.py:3164
+#, python-brace-format
+msgid "[success] Added new tool with dia: {dia} {units}"
+msgstr "[success] O noua unealtă este adăugată cu diametrul: {dia} {units}"
+
+#: flatcamGUI/FlatCAMGUI.py:3211
msgid "Measurement Tool exit..."
msgstr "Măsurătoarea s-a terminat ..."
-#: flatcamGUI/FlatCAMGUI.py:3503
+#: flatcamGUI/FlatCAMGUI.py:3312
+msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
+msgstr "[WARNING_NOTCL] Aplicația salvează proiectul. Vă rugăm aşteptați ..."
+
+#: flatcamGUI/FlatCAMGUI.py:3554
msgid "GUI Preferences"
msgstr "Preferințe GUI"
-#: flatcamGUI/FlatCAMGUI.py:3509
-msgid "Grid X value:"
-msgstr "Valoarea Grid_X:"
+#: flatcamGUI/FlatCAMGUI.py:3560
+msgid "Grid X value"
+msgstr "Valoarea Grid_X"
-#: flatcamGUI/FlatCAMGUI.py:3511
+#: flatcamGUI/FlatCAMGUI.py:3562
msgid "This is the Grid snap value on X axis."
msgstr "Aceasta este valoare pentru lipire pe Grid pe axa X."
-#: flatcamGUI/FlatCAMGUI.py:3516
-msgid "Grid Y value:"
-msgstr "Valoarea Grid_Y:"
+#: flatcamGUI/FlatCAMGUI.py:3567
+msgid "Grid Y value"
+msgstr "Valoarea Grid_Y"
-#: flatcamGUI/FlatCAMGUI.py:3518
+#: flatcamGUI/FlatCAMGUI.py:3569
msgid "This is the Grid snap value on Y axis."
msgstr "Aceasta este valoare pentru lipire pe Grid pe axa Y."
-#: flatcamGUI/FlatCAMGUI.py:3523
-msgid "Snap Max:"
-msgstr "Lipire Max:"
+#: flatcamGUI/FlatCAMGUI.py:3574
+msgid "Snap Max"
+msgstr "Lipire Max"
-#: flatcamGUI/FlatCAMGUI.py:3528
-msgid "Workspace:"
-msgstr "Spatiu de lucru:"
+#: flatcamGUI/FlatCAMGUI.py:3579
+msgid "Workspace"
+msgstr "Spatiu de lucru"
-#: flatcamGUI/FlatCAMGUI.py:3530
+#: flatcamGUI/FlatCAMGUI.py:3581
msgid ""
"Draw a delimiting rectangle on canvas.\n"
"The purpose is to illustrate the limits for our work."
@@ -6667,11 +6745,11 @@ msgstr ""
"Desenează un patrulater care delimitează o suprafată de lucru.\n"
"Scopul este de a ilustra limitele suprafetei noastre de lucru."
-#: flatcamGUI/FlatCAMGUI.py:3533
-msgid "Wk. format:"
-msgstr "Format SL:"
+#: flatcamGUI/FlatCAMGUI.py:3584
+msgid "Wk. format"
+msgstr "Format SL"
-#: flatcamGUI/FlatCAMGUI.py:3535
+#: flatcamGUI/FlatCAMGUI.py:3586
msgid ""
"Select the type of rectangle to be used on canvas,\n"
"as valid workspace."
@@ -6679,11 +6757,11 @@ msgstr ""
"Selectează tipul de patrulater care va fi desenat pe canvas,\n"
"pentru a delimita suprafata de lucru disponibilă (SL)."
-#: flatcamGUI/FlatCAMGUI.py:3548
-msgid "Plot Fill:"
-msgstr "Culoare Afișare:"
+#: flatcamGUI/FlatCAMGUI.py:3599
+msgid "Plot Fill"
+msgstr "Culoare Afișare"
-#: flatcamGUI/FlatCAMGUI.py:3550
+#: flatcamGUI/FlatCAMGUI.py:3601
msgid ""
"Set the fill color for plotted objects.\n"
"First 6 digits are the color and the last 2\n"
@@ -6693,28 +6771,28 @@ msgstr ""
"Primii 6 digiti sunt culoarea efectivă și ultimii\n"
"doi sunt pentru nivelul de transparenţă (alfa)."
-#: flatcamGUI/FlatCAMGUI.py:3564 flatcamGUI/FlatCAMGUI.py:3614
-#: flatcamGUI/FlatCAMGUI.py:3664
-msgid "Alpha Level:"
-msgstr "Nivel Alfa:"
+#: flatcamGUI/FlatCAMGUI.py:3615 flatcamGUI/FlatCAMGUI.py:3665
+#: flatcamGUI/FlatCAMGUI.py:3715
+msgid "Alpha Level"
+msgstr "Nivel Alfa"
-#: flatcamGUI/FlatCAMGUI.py:3566
+#: flatcamGUI/FlatCAMGUI.py:3617
msgid "Set the fill transparency for plotted objects."
msgstr "Setează nivelul de transparenţă pentru obiectele afisate."
-#: flatcamGUI/FlatCAMGUI.py:3583
-msgid "Plot Line:"
-msgstr "Culoare contur:"
+#: flatcamGUI/FlatCAMGUI.py:3634
+msgid "Plot Line"
+msgstr "Culoare contur"
-#: flatcamGUI/FlatCAMGUI.py:3585
+#: flatcamGUI/FlatCAMGUI.py:3636
msgid "Set the line color for plotted objects."
msgstr "Setează culoarea conturului."
-#: flatcamGUI/FlatCAMGUI.py:3597
-msgid "Sel. Fill:"
-msgstr "Culoare Selecţie:"
+#: flatcamGUI/FlatCAMGUI.py:3648
+msgid "Sel. Fill"
+msgstr "Culoare Selecţie"
-#: flatcamGUI/FlatCAMGUI.py:3599
+#: flatcamGUI/FlatCAMGUI.py:3650
msgid ""
"Set the fill color for the selection box\n"
"in case that the selection is done from left to right.\n"
@@ -6726,27 +6804,27 @@ msgstr ""
"Primii 6 digiti sunt culoarea efectivă și ultimii\n"
"doi sunt pentru nivelul de transparenţă (alfa)."
-#: flatcamGUI/FlatCAMGUI.py:3616
+#: flatcamGUI/FlatCAMGUI.py:3667
msgid "Set the fill transparency for the 'left to right' selection box."
msgstr ""
"Setează transparenţa formei de selecţie când selectia\n"
"se face de la stânga la dreapta."
-#: flatcamGUI/FlatCAMGUI.py:3633
-msgid "Sel. Line:"
-msgstr "Contur Selecţie:"
+#: flatcamGUI/FlatCAMGUI.py:3684
+msgid "Sel. Line"
+msgstr "Contur Selecţie"
-#: flatcamGUI/FlatCAMGUI.py:3635
+#: flatcamGUI/FlatCAMGUI.py:3686
msgid "Set the line color for the 'left to right' selection box."
msgstr ""
"Setează transparenţa conturului formei de selecţie\n"
"când selectia se face de la stânga la dreapta."
-#: flatcamGUI/FlatCAMGUI.py:3647
-msgid "Sel2. Fill:"
-msgstr "Culoare Selecţie 2:"
+#: flatcamGUI/FlatCAMGUI.py:3698
+msgid "Sel2. Fill"
+msgstr "Culoare Selecţie 2"
-#: flatcamGUI/FlatCAMGUI.py:3649
+#: flatcamGUI/FlatCAMGUI.py:3700
msgid ""
"Set the fill color for the selection box\n"
"in case that the selection is done from right to left.\n"
@@ -6758,53 +6836,53 @@ msgstr ""
"Primii 6 digiti sunt culoarea efectiva și ultimii\n"
"doi sunt pentru nivelul de transparenţă (alfa)."
-#: flatcamGUI/FlatCAMGUI.py:3666
+#: flatcamGUI/FlatCAMGUI.py:3717
msgid "Set the fill transparency for selection 'right to left' box."
msgstr ""
"Setează transparenţa formei de selecţie când selectia\n"
"se face de la dreapta la stânga."
-#: flatcamGUI/FlatCAMGUI.py:3683
-msgid "Sel2. Line:"
-msgstr "Contur Selecţie 2:"
+#: flatcamGUI/FlatCAMGUI.py:3734
+msgid "Sel2. Line"
+msgstr "Contur Selecţie 2"
-#: flatcamGUI/FlatCAMGUI.py:3685
+#: flatcamGUI/FlatCAMGUI.py:3736
msgid "Set the line color for the 'right to left' selection box."
msgstr ""
"Setează transparenţa conturului formei de selecţie\n"
"când selectia se face de la dreapta la stânga."
-#: flatcamGUI/FlatCAMGUI.py:3697
-msgid "Editor Draw:"
-msgstr "Desen Editor:"
+#: flatcamGUI/FlatCAMGUI.py:3748
+msgid "Editor Draw"
+msgstr "Desen Editor"
-#: flatcamGUI/FlatCAMGUI.py:3699
+#: flatcamGUI/FlatCAMGUI.py:3750
msgid "Set the color for the shape."
msgstr "Setează culoarea pentru forma geometrică din Editor."
-#: flatcamGUI/FlatCAMGUI.py:3711
-msgid "Editor Draw Sel.:"
-msgstr "Sel. Desen Editor:"
+#: flatcamGUI/FlatCAMGUI.py:3762
+msgid "Editor Draw Sel."
+msgstr "Sel. Desen Editor"
-#: flatcamGUI/FlatCAMGUI.py:3713
+#: flatcamGUI/FlatCAMGUI.py:3764
msgid "Set the color of the shape when selected."
msgstr ""
"Setează culoarea formei geometrice in Editor\n"
"când se face o selecţie."
-#: flatcamGUI/FlatCAMGUI.py:3725
-msgid "Project Items:"
-msgstr "Elemente Proiect:"
+#: flatcamGUI/FlatCAMGUI.py:3776
+msgid "Project Items"
+msgstr "Elemente Proiect"
-#: flatcamGUI/FlatCAMGUI.py:3727
+#: flatcamGUI/FlatCAMGUI.py:3778
msgid "Set the color of the items in Project Tab Tree."
msgstr "Setează culoarea elementelor din tab-ul Proiect."
-#: flatcamGUI/FlatCAMGUI.py:3738
-msgid "Proj. Dis. Items:"
+#: flatcamGUI/FlatCAMGUI.py:3789
+msgid "Proj. Dis. Items"
msgstr "Elem. proj. dez."
-#: flatcamGUI/FlatCAMGUI.py:3740
+#: flatcamGUI/FlatCAMGUI.py:3791
msgid ""
"Set the color of the items in Project Tab Tree,\n"
"for the case when the items are disabled."
@@ -6812,15 +6890,15 @@ msgstr ""
"Setează culoarea elementelor din tab-ul Proiect\n"
"in cazul in care elementele sunt dezactivate."
-#: flatcamGUI/FlatCAMGUI.py:3791
+#: flatcamGUI/FlatCAMGUI.py:3842
msgid "GUI Settings"
msgstr "Setări GUI"
-#: flatcamGUI/FlatCAMGUI.py:3797
-msgid "Layout:"
-msgstr "Amplasare:"
+#: flatcamGUI/FlatCAMGUI.py:3848
+msgid "Layout"
+msgstr "Amplasare"
-#: flatcamGUI/FlatCAMGUI.py:3799
+#: flatcamGUI/FlatCAMGUI.py:3850
msgid ""
"Select an layout for FlatCAM.\n"
"It is applied immediately."
@@ -6828,11 +6906,11 @@ msgstr ""
"Selectează un stil de amplasare a elementelor GUI in FlatCAM.\n"
"Se aplică imediat."
-#: flatcamGUI/FlatCAMGUI.py:3815
-msgid "Style:"
-msgstr "Stil:"
+#: flatcamGUI/FlatCAMGUI.py:3866
+msgid "Style"
+msgstr "Stil"
-#: flatcamGUI/FlatCAMGUI.py:3817
+#: flatcamGUI/FlatCAMGUI.py:3868
msgid ""
"Select an style for FlatCAM.\n"
"It will be applied at the next app start."
@@ -6840,11 +6918,11 @@ msgstr ""
"Selectează un stil pentru FlatCAM.\n"
"Se va aplic la următoarea pornire a aplicaţiei."
-#: flatcamGUI/FlatCAMGUI.py:3828
-msgid "HDPI Support:"
-msgstr "Suport H-DPI:"
+#: flatcamGUI/FlatCAMGUI.py:3879
+msgid "HDPI Support"
+msgstr "Suport H-DPI"
-#: flatcamGUI/FlatCAMGUI.py:3830
+#: flatcamGUI/FlatCAMGUI.py:3881
msgid ""
"Enable High DPI support for FlatCAM.\n"
"It will be applied at the next app start."
@@ -6853,11 +6931,11 @@ msgstr ""
"Util pentru monitoarele 4k.\n"
"Va fi aplicată la următoarea pornire a aplicaţiei."
-#: flatcamGUI/FlatCAMGUI.py:3843
-msgid "Clear GUI Settings:"
-msgstr "Șterge setările GUI:"
+#: flatcamGUI/FlatCAMGUI.py:3894 flatcamGUI/FlatCAMGUI.py:3994
+msgid "Clear GUI Settings"
+msgstr "Șterge Setările GUI"
-#: flatcamGUI/FlatCAMGUI.py:3845
+#: flatcamGUI/FlatCAMGUI.py:3896
msgid ""
"Clear the GUI settings for FlatCAM,\n"
"such as: layout, gui state, style, hdpi support etc."
@@ -6865,15 +6943,15 @@ msgstr ""
"Șterge setările GUI pentru FlatCAM,\n"
"cum ar fi: amplasare, stare UI, suport HDPI sau traducerea."
-#: flatcamGUI/FlatCAMGUI.py:3848
+#: flatcamGUI/FlatCAMGUI.py:3899
msgid "Clear"
msgstr "Șterge"
-#: flatcamGUI/FlatCAMGUI.py:3852
-msgid "Hover Shape:"
-msgstr "Forma Hover:"
+#: flatcamGUI/FlatCAMGUI.py:3903
+msgid "Hover Shape"
+msgstr "Forma Hover"
-#: flatcamGUI/FlatCAMGUI.py:3854
+#: flatcamGUI/FlatCAMGUI.py:3905
msgid ""
"Enable display of a hover shape for FlatCAM objects.\n"
"It is displayed whenever the mouse cursor is hovering\n"
@@ -6883,11 +6961,11 @@ msgstr ""
"in canvas-ul FlatCAM. Forma este afișată doar dacă obiectul \n"
"nu este selectat."
-#: flatcamGUI/FlatCAMGUI.py:3861
-msgid "Sel. Shape:"
-msgstr "Forma Sel.:"
+#: flatcamGUI/FlatCAMGUI.py:3912
+msgid "Sel. Shape"
+msgstr "Forma Sel."
-#: flatcamGUI/FlatCAMGUI.py:3863
+#: flatcamGUI/FlatCAMGUI.py:3914
msgid ""
"Enable the display of a selection shape for FlatCAM objects.\n"
"It is displayed whenever the mouse selects an object\n"
@@ -6899,11 +6977,11 @@ msgstr ""
"pe canvas-ul FlatCAM fie făcând click pe obiect fie prin\n"
"crearea unei ferestre de selectie."
-#: flatcamGUI/FlatCAMGUI.py:3870
-msgid "NB Font Size:"
-msgstr "Dim. font NB:"
+#: flatcamGUI/FlatCAMGUI.py:3921
+msgid "NB Font Size"
+msgstr "Dim. font NB"
-#: flatcamGUI/FlatCAMGUI.py:3872
+#: flatcamGUI/FlatCAMGUI.py:3923
msgid ""
"This sets the font size for the elements found in the Notebook.\n"
"The notebook is the collapsible area in the left side of the GUI,\n"
@@ -6914,33 +6992,29 @@ msgstr ""
"Notebook-ul este zona pliabilă din partea stângă a GUI,\n"
"și include filele Proiect, Selectat și Unelte."
-#: flatcamGUI/FlatCAMGUI.py:3887
-msgid "Axis Font Size:"
-msgstr "Dim. font axe:"
+#: flatcamGUI/FlatCAMGUI.py:3938
+msgid "Axis Font Size"
+msgstr "Dim. font axe"
-#: flatcamGUI/FlatCAMGUI.py:3889
+#: flatcamGUI/FlatCAMGUI.py:3940
msgid "This sets the font size for canvas axis."
msgstr "Aceasta setează dimensiunea fontului pentru axele zonei de afisare."
-#: flatcamGUI/FlatCAMGUI.py:3940
+#: flatcamGUI/FlatCAMGUI.py:3991
msgid "Are you sure you want to delete the GUI Settings? \n"
msgstr "Esti sigur că dorești să ștergi setările GUI?\n"
-#: flatcamGUI/FlatCAMGUI.py:3943
-msgid "Clear GUI Settings"
-msgstr "Șterge Setările GUI"
-
-#: flatcamGUI/FlatCAMGUI.py:3964
+#: flatcamGUI/FlatCAMGUI.py:4015
msgid "App Preferences"
msgstr "Preferințele Aplicaţie"
-#: flatcamGUI/FlatCAMGUI.py:3970 flatcamGUI/FlatCAMGUI.py:4484
-#: flatcamGUI/FlatCAMGUI.py:5309 flatcamTools/ToolMeasurement.py:43
-#: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:128
+#: flatcamGUI/FlatCAMGUI.py:4021 flatcamGUI/FlatCAMGUI.py:4549
+#: flatcamGUI/FlatCAMGUI.py:5374 flatcamTools/ToolMeasurement.py:43
+#: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:133
msgid "Units"
msgstr "Unităti"
-#: flatcamGUI/FlatCAMGUI.py:3971
+#: flatcamGUI/FlatCAMGUI.py:4022
msgid ""
"The default value for FlatCAM units.\n"
"Whatever is selected here is set every time\n"
@@ -6949,21 +7023,21 @@ msgstr ""
"Unitatea de masura pt FlatCAM.\n"
"Este setată la fiecare pornire a programului."
-#: flatcamGUI/FlatCAMGUI.py:3974
+#: flatcamGUI/FlatCAMGUI.py:4025
msgid "IN"
msgstr "Inch"
-#: flatcamGUI/FlatCAMGUI.py:3975 flatcamGUI/FlatCAMGUI.py:4490
-#: flatcamGUI/FlatCAMGUI.py:4922 flatcamGUI/FlatCAMGUI.py:5315
+#: flatcamGUI/FlatCAMGUI.py:4026 flatcamGUI/FlatCAMGUI.py:4555
+#: flatcamGUI/FlatCAMGUI.py:4987 flatcamGUI/FlatCAMGUI.py:5380
#: flatcamTools/ToolCalculators.py:61 flatcamTools/ToolPcbWizard.py:126
msgid "MM"
msgstr "MM"
-#: flatcamGUI/FlatCAMGUI.py:3978
+#: flatcamGUI/FlatCAMGUI.py:4029
msgid "APP. LEVEL"
msgstr "Nivel aplicatie"
-#: flatcamGUI/FlatCAMGUI.py:3979
+#: flatcamGUI/FlatCAMGUI.py:4030
msgid ""
"Choose the default level of usage for FlatCAM.\n"
"BASIC level -> reduced functionality, best for beginner's.\n"
@@ -6979,19 +7053,19 @@ msgstr ""
"Alegerea efectuata aici va influenta ce aparamtri sunt disponibili\n"
"in Tab-ul SELECTAT dar și in alte parti ale FlatCAM."
-#: flatcamGUI/FlatCAMGUI.py:3984 flatcamGUI/FlatCAMGUI.py:4949
+#: flatcamGUI/FlatCAMGUI.py:4035 flatcamGUI/FlatCAMGUI.py:5014
msgid "Basic"
msgstr "Baza"
-#: flatcamGUI/FlatCAMGUI.py:3985
+#: flatcamGUI/FlatCAMGUI.py:4036
msgid "Advanced"
msgstr "Avansat"
-#: flatcamGUI/FlatCAMGUI.py:3988
+#: flatcamGUI/FlatCAMGUI.py:4039
msgid "Portable app"
msgstr "Aplicație portabilă"
-#: flatcamGUI/FlatCAMGUI.py:3989
+#: flatcamGUI/FlatCAMGUI.py:4040
msgid ""
"Choose if the application should run as portable.\n"
"\n"
@@ -7005,19 +7079,19 @@ msgstr ""
"ceea ce înseamnă că fișierele de preferințe vor fi salvate\n"
"în folderul aplicației, în subfolderul lib \\ config."
-#: flatcamGUI/FlatCAMGUI.py:3996
+#: flatcamGUI/FlatCAMGUI.py:4047
msgid "Languages"
msgstr "Traduceri"
-#: flatcamGUI/FlatCAMGUI.py:3997
+#: flatcamGUI/FlatCAMGUI.py:4048
msgid "Set the language used throughout FlatCAM."
msgstr "Setează limba folosita pentru textele din FlatCAM."
-#: flatcamGUI/FlatCAMGUI.py:4000
+#: flatcamGUI/FlatCAMGUI.py:4051
msgid "Apply Language"
msgstr "Aplica Traducere"
-#: flatcamGUI/FlatCAMGUI.py:4001
+#: flatcamGUI/FlatCAMGUI.py:4052
msgid ""
"Set the language used throughout FlatCAM.\n"
"The app will restart after click.Windows: When FlatCAM is installed in "
@@ -7027,17 +7101,17 @@ msgid ""
"security features. In this case the language will be\n"
"applied at the next app start."
msgstr ""
-"Seteaza limba folosita in FlatCAM.\n"
+"Seteaza limba folosită in FlatCAM.\n"
"Aplicatia se va restarta după click.\n"
"Windows: cand FlatCAM este instalat in directorul\n"
"Program Files este posibil ca aplicatia să nu se restarteze\n"
-"după click datorită unor setări de securitate ale Windows. "
+"după click datorită unor setări de securitate ale Windows."
-#: flatcamGUI/FlatCAMGUI.py:4010
+#: flatcamGUI/FlatCAMGUI.py:4061
msgid "Shell at StartUp"
msgstr "Shell la pornire"
-#: flatcamGUI/FlatCAMGUI.py:4012 flatcamGUI/FlatCAMGUI.py:4017
+#: flatcamGUI/FlatCAMGUI.py:4063 flatcamGUI/FlatCAMGUI.py:4068
msgid ""
"Check this box if you want the shell to\n"
"start automatically at startup."
@@ -7046,11 +7120,11 @@ msgstr ""
"automata a ferestrei Shell (linia de comanda)\n"
"la initializarea aplicaţiei."
-#: flatcamGUI/FlatCAMGUI.py:4022
+#: flatcamGUI/FlatCAMGUI.py:4073
msgid "Version Check"
msgstr "Verificare versiune"
-#: flatcamGUI/FlatCAMGUI.py:4024 flatcamGUI/FlatCAMGUI.py:4029
+#: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/FlatCAMGUI.py:4080
msgid ""
"Check this box if you want to check\n"
"for a new version automatically at startup."
@@ -7059,11 +7133,11 @@ msgstr ""
"daca exista o versiune mai noua,\n"
"la pornirea aplicaţiei."
-#: flatcamGUI/FlatCAMGUI.py:4034
+#: flatcamGUI/FlatCAMGUI.py:4085
msgid "Send Stats"
msgstr "Statistici"
-#: flatcamGUI/FlatCAMGUI.py:4036 flatcamGUI/FlatCAMGUI.py:4041
+#: flatcamGUI/FlatCAMGUI.py:4087 flatcamGUI/FlatCAMGUI.py:4092
msgid ""
"Check this box if you agree to send anonymous\n"
"stats automatically at startup, to help improve FlatCAM."
@@ -7073,11 +7147,11 @@ msgstr ""
"aplicaţia. In acest fel dezvoltatorii vor sti unde să se focalizeze\n"
"in crearea de inbunatatiri."
-#: flatcamGUI/FlatCAMGUI.py:4048
+#: flatcamGUI/FlatCAMGUI.py:4099
msgid "Pan Button"
msgstr "Buton Pan (mișcare)"
-#: flatcamGUI/FlatCAMGUI.py:4049
+#: flatcamGUI/FlatCAMGUI.py:4100
msgid ""
"Select the mouse button to use for panning:\n"
"- MMB --> Middle Mouse Button\n"
@@ -7085,37 +7159,37 @@ msgid ""
msgstr ""
"Selectează butonul folosit pentru 'mișcare':\n"
"- MMB - butonul din mijloc al mouse-ului\n"
-"- RMB - butonul in dreapta al mouse-ului."
+"- RMB - butonul in dreapta al mouse-ului"
-#: flatcamGUI/FlatCAMGUI.py:4052
+#: flatcamGUI/FlatCAMGUI.py:4103
msgid "MMB"
msgstr "MMB"
-#: flatcamGUI/FlatCAMGUI.py:4053
+#: flatcamGUI/FlatCAMGUI.py:4104
msgid "RMB"
msgstr "RMB"
-#: flatcamGUI/FlatCAMGUI.py:4056
-msgid "Multiple Sel:"
+#: flatcamGUI/FlatCAMGUI.py:4107
+msgid "Multiple Sel"
msgstr "Sel. multiplă"
-#: flatcamGUI/FlatCAMGUI.py:4057
+#: flatcamGUI/FlatCAMGUI.py:4108
msgid "Select the key used for multiple selection."
msgstr "Selectează tasta folosita pentru selectia multipla."
-#: flatcamGUI/FlatCAMGUI.py:4058
+#: flatcamGUI/FlatCAMGUI.py:4109
msgid "CTRL"
msgstr "CTRL"
-#: flatcamGUI/FlatCAMGUI.py:4059
+#: flatcamGUI/FlatCAMGUI.py:4110
msgid "SHIFT"
msgstr "SHIFT"
-#: flatcamGUI/FlatCAMGUI.py:4062
+#: flatcamGUI/FlatCAMGUI.py:4113
msgid "Project at StartUp"
msgstr "Proiect la pornire"
-#: flatcamGUI/FlatCAMGUI.py:4064 flatcamGUI/FlatCAMGUI.py:4069
+#: flatcamGUI/FlatCAMGUI.py:4115 flatcamGUI/FlatCAMGUI.py:4120
msgid ""
"Check this box if you want the project/selected/tool tab area to\n"
"to be shown automatically at startup."
@@ -7123,11 +7197,11 @@ msgstr ""
"Bifează aici daca dorești ca zona Notebook să fie\n"
"afișată automat la pornire."
-#: flatcamGUI/FlatCAMGUI.py:4074
+#: flatcamGUI/FlatCAMGUI.py:4125
msgid "Project AutoHide"
msgstr "Ascundere Proiect"
-#: flatcamGUI/FlatCAMGUI.py:4076 flatcamGUI/FlatCAMGUI.py:4082
+#: flatcamGUI/FlatCAMGUI.py:4127 flatcamGUI/FlatCAMGUI.py:4133
msgid ""
"Check this box if you want the project/selected/tool tab area to\n"
"hide automatically when there are no objects loaded and\n"
@@ -7137,11 +7211,11 @@ msgstr ""
"când nu sunt obiecte incărcate și să fie afișată automat\n"
"când un obiect nou este creat/incărcat."
-#: flatcamGUI/FlatCAMGUI.py:4088
+#: flatcamGUI/FlatCAMGUI.py:4139
msgid "Enable ToolTips"
msgstr "Activează ToolTip-uri"
-#: flatcamGUI/FlatCAMGUI.py:4090 flatcamGUI/FlatCAMGUI.py:4095
+#: flatcamGUI/FlatCAMGUI.py:4141 flatcamGUI/FlatCAMGUI.py:4146
msgid ""
"Check this box if you want to have toolTips displayed\n"
"when hovering with mouse over items throughout the App."
@@ -7149,11 +7223,11 @@ msgstr ""
"Bifează daca dorești ca să fie afisate texte explicative când se\n"
"tine mouse-ul deasupra diverselor texte din FlatCAM."
-#: flatcamGUI/FlatCAMGUI.py:4098
+#: flatcamGUI/FlatCAMGUI.py:4149
msgid "Workers number"
msgstr "Număr de worker's"
-#: flatcamGUI/FlatCAMGUI.py:4100 flatcamGUI/FlatCAMGUI.py:4109
+#: flatcamGUI/FlatCAMGUI.py:4151 flatcamGUI/FlatCAMGUI.py:4160
msgid ""
"The number of Qthreads made available to the App.\n"
"A bigger number may finish the jobs more quickly but\n"
@@ -7169,11 +7243,11 @@ msgstr ""
"Valoarea standard este 2.\n"
"Dupa schimbarea valoarii, se va aplica la următoarea pornire a aplicatiei."
-#: flatcamGUI/FlatCAMGUI.py:4119
+#: flatcamGUI/FlatCAMGUI.py:4170
msgid "Geo Tolerance"
msgstr "Toleranta geometrică"
-#: flatcamGUI/FlatCAMGUI.py:4121 flatcamGUI/FlatCAMGUI.py:4130
+#: flatcamGUI/FlatCAMGUI.py:4172 flatcamGUI/FlatCAMGUI.py:4181
msgid ""
"This value can counter the effect of the Circle Steps\n"
"parameter. Default value is 0.01.\n"
@@ -7189,11 +7263,11 @@ msgstr ""
"O valoare mai mare va oferi mai multă performantă dar in\n"
"defavoarea nievelului de detalii."
-#: flatcamGUI/FlatCAMGUI.py:4169
+#: flatcamGUI/FlatCAMGUI.py:4220
msgid "\"Open\" behavior"
msgstr "Stil \"Încarcare\""
-#: flatcamGUI/FlatCAMGUI.py:4171
+#: flatcamGUI/FlatCAMGUI.py:4222
msgid ""
"When checked the path for the last saved file is used when saving files,\n"
"and the path for the last opened file is used when opening files.\n"
@@ -7211,11 +7285,11 @@ msgstr ""
"ambele \n"
"cazuri: fie că se deschide un fisier, fie că se salvează un fisier."
-#: flatcamGUI/FlatCAMGUI.py:4180
+#: flatcamGUI/FlatCAMGUI.py:4231
msgid "Delete object confirmation"
msgstr "Confirmare de ștergere a obiectului"
-#: flatcamGUI/FlatCAMGUI.py:4182
+#: flatcamGUI/FlatCAMGUI.py:4233
msgid ""
"When checked the application will ask for user confirmation\n"
"whenever the Delete object(s) event is triggered, either by\n"
@@ -7225,11 +7299,11 @@ msgstr ""
"ori de câte ori este declanșat evenimentul de Ștergere a \n"
"unor obiecte, fie de cu ajutorul meniurilor sau cu combinatii de taste."
-#: flatcamGUI/FlatCAMGUI.py:4189
+#: flatcamGUI/FlatCAMGUI.py:4240
msgid "Save Compressed Project"
msgstr "Salvează Proiectul comprimat"
-#: flatcamGUI/FlatCAMGUI.py:4191
+#: flatcamGUI/FlatCAMGUI.py:4242
msgid ""
"Whether to save a compressed or uncompressed project.\n"
"When checked it will save a compressed FlatCAM project."
@@ -7238,11 +7312,11 @@ msgstr ""
"Când este bifat aici, se va salva o arhiva a proiectului\n"
"lucru care poate reduce dimensiunea semnificativ."
-#: flatcamGUI/FlatCAMGUI.py:4202
+#: flatcamGUI/FlatCAMGUI.py:4253
msgid "Compression Level"
msgstr "Nivel compresie"
-#: flatcamGUI/FlatCAMGUI.py:4204
+#: flatcamGUI/FlatCAMGUI.py:4255
msgid ""
"The level of compression used when saving\n"
"a FlatCAM project. Higher value means better compression\n"
@@ -7253,55 +7327,55 @@ msgstr ""
"dar cu consum redus de resurse in timp ce valoarea 9 cere multa memorie RAM\n"
"și in plus, durează semnificativ mai mult."
-#: flatcamGUI/FlatCAMGUI.py:4230
+#: flatcamGUI/FlatCAMGUI.py:4281
msgid "Gerber General"
msgstr "Gerber General"
-#: flatcamGUI/FlatCAMGUI.py:4233 flatcamGUI/FlatCAMGUI.py:4773
-#: flatcamGUI/FlatCAMGUI.py:5703 flatcamGUI/FlatCAMGUI.py:6084
-#: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:503
-#: flatcamGUI/ObjectUI.py:831 flatcamGUI/ObjectUI.py:1330
+#: flatcamGUI/FlatCAMGUI.py:4284 flatcamGUI/FlatCAMGUI.py:4838
+#: flatcamGUI/FlatCAMGUI.py:5768 flatcamGUI/FlatCAMGUI.py:6149
+#: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:562
+#: flatcamGUI/ObjectUI.py:894 flatcamGUI/ObjectUI.py:1393
msgid "Plot Options"
msgstr "Opțiuni afișare"
-#: flatcamGUI/FlatCAMGUI.py:4240 flatcamGUI/FlatCAMGUI.py:4785
-#: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:504
+#: flatcamGUI/FlatCAMGUI.py:4291 flatcamGUI/FlatCAMGUI.py:4850
+#: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:563
msgid "Solid"
msgstr "Solid"
-#: flatcamGUI/FlatCAMGUI.py:4242 flatcamGUI/ObjectUI.py:158
+#: flatcamGUI/FlatCAMGUI.py:4293 flatcamGUI/ObjectUI.py:158
msgid "Solid color polygons."
msgstr "Poligoane color solide."
-#: flatcamGUI/FlatCAMGUI.py:4247 flatcamGUI/ObjectUI.py:164
+#: flatcamGUI/FlatCAMGUI.py:4298 flatcamGUI/ObjectUI.py:164
msgid "M-Color"
msgstr "M-Color"
-#: flatcamGUI/FlatCAMGUI.py:4249 flatcamGUI/ObjectUI.py:166
+#: flatcamGUI/FlatCAMGUI.py:4300 flatcamGUI/ObjectUI.py:166
msgid "Draw polygons in different colors."
msgstr ""
"Desenează poligoanele Gerber din multiple culori\n"
"alese in mod aleator."
-#: flatcamGUI/FlatCAMGUI.py:4254 flatcamGUI/FlatCAMGUI.py:4779
-#: flatcamGUI/FlatCAMGUI.py:5707 flatcamGUI/ObjectUI.py:172
-#: flatcamGUI/ObjectUI.py:542
+#: flatcamGUI/FlatCAMGUI.py:4305 flatcamGUI/FlatCAMGUI.py:4844
+#: flatcamGUI/FlatCAMGUI.py:5772 flatcamGUI/ObjectUI.py:172
+#: flatcamGUI/ObjectUI.py:601
msgid "Plot"
msgstr "Afisează"
-#: flatcamGUI/FlatCAMGUI.py:4256 flatcamGUI/FlatCAMGUI.py:5709
-#: flatcamGUI/FlatCAMGUI.py:6095 flatcamGUI/ObjectUI.py:174
-#: flatcamGUI/ObjectUI.py:544 flatcamGUI/ObjectUI.py:877
-#: flatcamGUI/ObjectUI.py:1441
+#: flatcamGUI/FlatCAMGUI.py:4307 flatcamGUI/FlatCAMGUI.py:5774
+#: flatcamGUI/FlatCAMGUI.py:6160 flatcamGUI/ObjectUI.py:174
+#: flatcamGUI/ObjectUI.py:603 flatcamGUI/ObjectUI.py:940
+#: flatcamGUI/ObjectUI.py:1503
msgid "Plot (show) this object."
msgstr "Afisează (arata) acest obiect."
-#: flatcamGUI/FlatCAMGUI.py:4261 flatcamGUI/FlatCAMGUI.py:5717
-#: flatcamGUI/FlatCAMGUI.py:6165
+#: flatcamGUI/FlatCAMGUI.py:4312 flatcamGUI/FlatCAMGUI.py:5782
+#: flatcamGUI/FlatCAMGUI.py:6230
msgid "Circle Steps"
msgstr "Pași pt. cerc"
-#: flatcamGUI/FlatCAMGUI.py:4263
+#: flatcamGUI/FlatCAMGUI.py:4314
msgid ""
"The number of circle steps for Gerber \n"
"circular aperture linear approximation."
@@ -7309,15 +7383,39 @@ msgstr ""
"Numărul de segmente utilizate pentru\n"
"aproximarea lineara a aperturilor Gerber circulare."
-#: flatcamGUI/FlatCAMGUI.py:4278
+#: flatcamGUI/FlatCAMGUI.py:4324
+msgid ""
+"Buffering type:\n"
+"- None --> best performance, fast file loading but no so good display\n"
+"- Full --> slow file loading but good visuals. This is the default.\n"
+"<>: Don't change this unless you know what you are doing !!!"
+msgstr ""
+"Tip de buferare:\n"
+"- Nimic --> performanta superioară, incărcare rapidă a fisierului dar "
+"afisarea nu este prea bună\n"
+"- Complet --> incărcare lentă dar calitate vizuală bună. Aceasta este "
+"valoarea de bază.\n"
+"<>: Nu schimba această valoare decat dacă stii ce faci !!!"
+
+#: flatcamGUI/FlatCAMGUI.py:4329 flatcamTools/ToolProperties.py:298
+#: flatcamTools/ToolProperties.py:312 flatcamTools/ToolProperties.py:315
+#: flatcamTools/ToolProperties.py:318
+msgid "None"
+msgstr "Nimic"
+
+#: flatcamGUI/FlatCAMGUI.py:4330
+msgid "Full"
+msgstr "Complet"
+
+#: flatcamGUI/FlatCAMGUI.py:4342
msgid "Gerber Options"
msgstr "Opțiuni Gerber"
-#: flatcamGUI/FlatCAMGUI.py:4281 flatcamGUI/ObjectUI.py:250
+#: flatcamGUI/FlatCAMGUI.py:4345 flatcamGUI/ObjectUI.py:250
msgid "Isolation Routing"
msgstr "Izolare"
-#: flatcamGUI/FlatCAMGUI.py:4283 flatcamGUI/ObjectUI.py:252
+#: flatcamGUI/FlatCAMGUI.py:4347 flatcamGUI/ObjectUI.py:252
msgid ""
"Create a Geometry object with\n"
"toolpaths to cut outside polygons."
@@ -7326,23 +7424,16 @@ msgstr ""
"care să fie taiate in afara poligoanelor,\n"
"urmărindu-le conturul."
-#: flatcamGUI/FlatCAMGUI.py:4292 flatcamGUI/FlatCAMGUI.py:5731
-#: flatcamGUI/FlatCAMGUI.py:6175 flatcamGUI/FlatCAMGUI.py:6524
-#: flatcamGUI/FlatCAMGUI.py:6684 flatcamGUI/ObjectUI.py:259
-#: flatcamTools/ToolCutOut.py:92
-msgid "Tool dia"
-msgstr "Dia unealtă"
-
-#: flatcamGUI/FlatCAMGUI.py:4294 flatcamGUI/FlatCAMGUI.py:5149
-#: flatcamGUI/ObjectUI.py:785
+#: flatcamGUI/FlatCAMGUI.py:4358 flatcamGUI/FlatCAMGUI.py:5214
+#: flatcamGUI/ObjectUI.py:848
msgid "Diameter of the cutting tool."
msgstr "Diametrul uneltei taietoare."
-#: flatcamGUI/FlatCAMGUI.py:4301 flatcamGUI/ObjectUI.py:272
+#: flatcamGUI/FlatCAMGUI.py:4365 flatcamGUI/ObjectUI.py:277
msgid "# Passes"
msgstr "# Treceri"
-#: flatcamGUI/FlatCAMGUI.py:4303 flatcamGUI/ObjectUI.py:274
+#: flatcamGUI/FlatCAMGUI.py:4367 flatcamGUI/ObjectUI.py:279
msgid ""
"Width of the isolation gap in\n"
"number (integer) of tool widths."
@@ -7350,11 +7441,11 @@ msgstr ""
"Lăţimea spatiului de izolare\n"
"in număr intreg de grosimi ale uneltei."
-#: flatcamGUI/FlatCAMGUI.py:4312 flatcamGUI/ObjectUI.py:283
+#: flatcamGUI/FlatCAMGUI.py:4376 flatcamGUI/ObjectUI.py:288
msgid "Pass overlap"
msgstr "Suprapunere"
-#: flatcamGUI/FlatCAMGUI.py:4314 flatcamGUI/ObjectUI.py:285
+#: flatcamGUI/FlatCAMGUI.py:4378 flatcamGUI/ObjectUI.py:290
#, python-format
msgid ""
"How much (fraction) of the tool width to overlap each tool pass.\n"
@@ -7368,11 +7459,12 @@ msgstr ""
"Exemplu:\n"
"O valoare de 0.25 reprezinta o suprapunere de 25%% din diametrul uneltei."
-#: flatcamGUI/FlatCAMGUI.py:4322 flatcamGUI/ObjectUI.py:295
+#: flatcamGUI/FlatCAMGUI.py:4387 flatcamGUI/FlatCAMGUI.py:6490
+#: flatcamGUI/ObjectUI.py:300 flatcamTools/ToolNonCopperClear.py:147
msgid "Milling Type"
msgstr "Tip Frezare"
-#: flatcamGUI/FlatCAMGUI.py:4324 flatcamGUI/ObjectUI.py:297
+#: flatcamGUI/FlatCAMGUI.py:4389 flatcamGUI/ObjectUI.py:302
msgid ""
"Milling type:\n"
"- climb / best for precision milling and to reduce tool usage\n"
@@ -7383,27 +7475,29 @@ msgstr ""
"uneltei\n"
"- conventional -> pentru cazul când nu exista o compensare a 'backlash-ului'"
-#: flatcamGUI/FlatCAMGUI.py:4329 flatcamGUI/ObjectUI.py:302
+#: flatcamGUI/FlatCAMGUI.py:4394 flatcamGUI/FlatCAMGUI.py:6497
+#: flatcamGUI/ObjectUI.py:306 flatcamTools/ToolNonCopperClear.py:154
msgid "Climb"
msgstr "Urcare"
-#: flatcamGUI/FlatCAMGUI.py:4330 flatcamGUI/ObjectUI.py:303
+#: flatcamGUI/FlatCAMGUI.py:4395 flatcamGUI/FlatCAMGUI.py:6498
+#: flatcamGUI/ObjectUI.py:307 flatcamTools/ToolNonCopperClear.py:155
msgid "Conv."
msgstr "Conv."
-#: flatcamGUI/FlatCAMGUI.py:4334 flatcamGUI/ObjectUI.py:307
+#: flatcamGUI/FlatCAMGUI.py:4399 flatcamGUI/ObjectUI.py:312
msgid "Combine Passes"
msgstr "Combina"
-#: flatcamGUI/FlatCAMGUI.py:4336 flatcamGUI/ObjectUI.py:309
+#: flatcamGUI/FlatCAMGUI.py:4401 flatcamGUI/ObjectUI.py:314
msgid "Combine all passes into one object"
msgstr "Combina toate trecerile intr-un singur obiect"
-#: flatcamGUI/FlatCAMGUI.py:4341 flatcamGUI/ObjectUI.py:414
+#: flatcamGUI/FlatCAMGUI.py:4406 flatcamGUI/ObjectUI.py:477
msgid "Non-copper regions"
msgstr "Regiuni fără Cu"
-#: flatcamGUI/FlatCAMGUI.py:4343 flatcamGUI/ObjectUI.py:416
+#: flatcamGUI/FlatCAMGUI.py:4408 flatcamGUI/ObjectUI.py:479
msgid ""
"Create polygons covering the\n"
"areas without copper on the PCB.\n"
@@ -7416,12 +7510,12 @@ msgstr ""
"obiectului sursa. Poate fi folosit pt a indeparta\n"
"cuprul din zona specificata."
-#: flatcamGUI/FlatCAMGUI.py:4355 flatcamGUI/FlatCAMGUI.py:4380
-#: flatcamGUI/ObjectUI.py:428 flatcamGUI/ObjectUI.py:462
+#: flatcamGUI/FlatCAMGUI.py:4420 flatcamGUI/FlatCAMGUI.py:4445
+#: flatcamGUI/ObjectUI.py:489 flatcamGUI/ObjectUI.py:521
msgid "Boundary Margin"
msgstr "Margine"
-#: flatcamGUI/FlatCAMGUI.py:4357 flatcamGUI/ObjectUI.py:430
+#: flatcamGUI/FlatCAMGUI.py:4422 flatcamGUI/ObjectUI.py:491
msgid ""
"Specify the edge of the PCB\n"
"by drawing a box around all\n"
@@ -7432,23 +7526,23 @@ msgstr ""
"unei forme patratice de jur imprejurul la toate obiectele\n"
"la o distanţa minima cu valoarea din acest câmp."
-#: flatcamGUI/FlatCAMGUI.py:4367 flatcamGUI/FlatCAMGUI.py:4389
-#: flatcamGUI/ObjectUI.py:441 flatcamGUI/ObjectUI.py:472
+#: flatcamGUI/FlatCAMGUI.py:4432 flatcamGUI/FlatCAMGUI.py:4454
+#: flatcamGUI/ObjectUI.py:502 flatcamGUI/ObjectUI.py:531
msgid "Rounded Geo"
msgstr "Geo rotunjita"
-#: flatcamGUI/FlatCAMGUI.py:4369 flatcamGUI/ObjectUI.py:443
+#: flatcamGUI/FlatCAMGUI.py:4434 flatcamGUI/ObjectUI.py:504
msgid "Resulting geometry will have rounded corners."
msgstr ""
"Obiectul Geometrie rezultat \n"
"va avea colțurile rotunjite."
-#: flatcamGUI/FlatCAMGUI.py:4374 flatcamGUI/ObjectUI.py:452
+#: flatcamGUI/FlatCAMGUI.py:4439 flatcamGUI/ObjectUI.py:513
#: flatcamTools/ToolPanelize.py:85
msgid "Bounding Box"
-msgstr "Forma înconjurătoare::"
+msgstr "Forma înconjurătoare:"
-#: flatcamGUI/FlatCAMGUI.py:4382 flatcamGUI/ObjectUI.py:464
+#: flatcamGUI/FlatCAMGUI.py:4447 flatcamGUI/ObjectUI.py:523
msgid ""
"Distance of the edges of the box\n"
"to the nearest polygon."
@@ -7456,7 +7550,7 @@ msgstr ""
"Distanta de la marginile formei înconjurătoare\n"
"pana la cel mai apropiat poligon."
-#: flatcamGUI/FlatCAMGUI.py:4391 flatcamGUI/ObjectUI.py:474
+#: flatcamGUI/FlatCAMGUI.py:4456 flatcamGUI/ObjectUI.py:533
msgid ""
"If the bounding box is \n"
"to have rounded corners\n"
@@ -7466,15 +7560,15 @@ msgstr ""
"Daca forma înconjurătoare să aibă colțuri rotunjite.\n"
"Raza acesor colțuri va fi egală cu parametrul Margine."
-#: flatcamGUI/FlatCAMGUI.py:4405
+#: flatcamGUI/FlatCAMGUI.py:4470
msgid "Gerber Adv. Options"
msgstr "Opțiuni Av. Gerber"
-#: flatcamGUI/FlatCAMGUI.py:4408
+#: flatcamGUI/FlatCAMGUI.py:4473
msgid "Advanced Param."
-msgstr "Param. avansați"
+msgstr "Param. Avansați"
-#: flatcamGUI/FlatCAMGUI.py:4410
+#: flatcamGUI/FlatCAMGUI.py:4475
msgid ""
"A list of Gerber advanced parameters.\n"
"Those parameters are available only for\n"
@@ -7483,13 +7577,13 @@ msgstr ""
"O lista de parametri Gerber avansati.\n"
"Acesti parametri sunt disponibili doar\n"
"când este selectat Nivelul Avansat pentru\n"
-"aplicaţie in Preferințe - > General"
+"aplicaţie in Preferințe - > General."
-#: flatcamGUI/FlatCAMGUI.py:4420 flatcamGUI/ObjectUI.py:314
+#: flatcamGUI/FlatCAMGUI.py:4485 flatcamGUI/ObjectUI.py:318
msgid "\"Follow\""
msgstr "\"Urmareste\""
-#: flatcamGUI/FlatCAMGUI.py:4422 flatcamGUI/ObjectUI.py:316
+#: flatcamGUI/FlatCAMGUI.py:4487 flatcamGUI/ObjectUI.py:319
msgid ""
"Generate a 'Follow' geometry.\n"
"This means that it will cut through\n"
@@ -7499,11 +7593,11 @@ msgstr ""
"Mai exact, in loc să se genereze un poligon se va genera o 'linie'.\n"
"In acest fel se taie prin mijlocul unui traseu și nu in jurul lui."
-#: flatcamGUI/FlatCAMGUI.py:4429
+#: flatcamGUI/FlatCAMGUI.py:4494
msgid "Table Show/Hide"
msgstr "Arata/Ascunde Tabela"
-#: flatcamGUI/FlatCAMGUI.py:4431
+#: flatcamGUI/FlatCAMGUI.py:4496
msgid ""
"Toggle the display of the Gerber Apertures Table.\n"
"Also, on hide, it will delete all mark shapes\n"
@@ -7513,38 +7607,38 @@ msgstr ""
"când se ascunde aceasta, se vor șterge și toate\n"
"posibil afisatele marcaje ale aperturilor."
-#: flatcamGUI/FlatCAMGUI.py:4470
+#: flatcamGUI/FlatCAMGUI.py:4535
msgid "Gerber Export"
msgstr "Export Gerber"
-#: flatcamGUI/FlatCAMGUI.py:4473 flatcamGUI/FlatCAMGUI.py:5298
+#: flatcamGUI/FlatCAMGUI.py:4538 flatcamGUI/FlatCAMGUI.py:5363
msgid "Export Options"
msgstr "Opțiuni de Export"
-#: flatcamGUI/FlatCAMGUI.py:4475
+#: flatcamGUI/FlatCAMGUI.py:4540
msgid ""
"The parameters set here are used in the file exported\n"
"when using the File -> Export -> Export Gerber menu entry."
msgstr ""
"Acesti parametri listati aici sunt folositi atunci când\n"
"se exporta un fişier Gerber folosind:\n"
-"File -> Exportă -> Exportă Gerber"
+"File -> Exportă -> Exportă Gerber."
-#: flatcamGUI/FlatCAMGUI.py:4486 flatcamGUI/FlatCAMGUI.py:4492
+#: flatcamGUI/FlatCAMGUI.py:4551 flatcamGUI/FlatCAMGUI.py:4557
msgid "The units used in the Gerber file."
msgstr "Unitătile de măsură folosite in fişierul Gerber."
-#: flatcamGUI/FlatCAMGUI.py:4489 flatcamGUI/FlatCAMGUI.py:4819
-#: flatcamGUI/FlatCAMGUI.py:4921 flatcamGUI/FlatCAMGUI.py:5314
+#: flatcamGUI/FlatCAMGUI.py:4554 flatcamGUI/FlatCAMGUI.py:4884
+#: flatcamGUI/FlatCAMGUI.py:4986 flatcamGUI/FlatCAMGUI.py:5379
#: flatcamTools/ToolCalculators.py:60 flatcamTools/ToolPcbWizard.py:125
msgid "INCH"
msgstr "Inch"
-#: flatcamGUI/FlatCAMGUI.py:4498 flatcamGUI/FlatCAMGUI.py:5323
+#: flatcamGUI/FlatCAMGUI.py:4563 flatcamGUI/FlatCAMGUI.py:5388
msgid "Int/Decimals"
-msgstr "Înt/Zecimale:"
+msgstr "Înt/Zecimale"
-#: flatcamGUI/FlatCAMGUI.py:4500
+#: flatcamGUI/FlatCAMGUI.py:4565
msgid ""
"The number of digits in the whole part of the number\n"
"and in the fractional part of the number."
@@ -7552,7 +7646,7 @@ msgstr ""
"Acest număr reprezinta numărul de digiti din partea\n"
"intreagă si in partea fractională a numărului."
-#: flatcamGUI/FlatCAMGUI.py:4511
+#: flatcamGUI/FlatCAMGUI.py:4576
msgid ""
"This numbers signify the number of digits in\n"
"the whole part of Gerber coordinates."
@@ -7560,7 +7654,7 @@ msgstr ""
"Acest număr reprezinta numărul de digiti din partea\n"
"intreagă a coordonatelor Gerber."
-#: flatcamGUI/FlatCAMGUI.py:4525
+#: flatcamGUI/FlatCAMGUI.py:4590
msgid ""
"This numbers signify the number of digits in\n"
"the decimal part of Gerber coordinates."
@@ -7568,11 +7662,11 @@ msgstr ""
"Acest număr reprezinta numărul de digiti din partea\n"
"zecimală a coordonatelor Gerber."
-#: flatcamGUI/FlatCAMGUI.py:4534 flatcamGUI/FlatCAMGUI.py:5384
+#: flatcamGUI/FlatCAMGUI.py:4599 flatcamGUI/FlatCAMGUI.py:5449
msgid "Zeros"
msgstr "Zero-uri"
-#: flatcamGUI/FlatCAMGUI.py:4537 flatcamGUI/FlatCAMGUI.py:4547
+#: flatcamGUI/FlatCAMGUI.py:4602 flatcamGUI/FlatCAMGUI.py:4612
msgid ""
"This sets the type of Gerber zeros.\n"
"If LZ then Leading Zeros are removed and\n"
@@ -7588,36 +7682,36 @@ msgstr ""
"cele de la final sunt păstrate.\n"
"(Invers fată de fişierele Excellon)."
-#: flatcamGUI/FlatCAMGUI.py:4544 flatcamGUI/FlatCAMGUI.py:4897
-#: flatcamGUI/FlatCAMGUI.py:5394 flatcamTools/ToolPcbWizard.py:111
+#: flatcamGUI/FlatCAMGUI.py:4609 flatcamGUI/FlatCAMGUI.py:4962
+#: flatcamGUI/FlatCAMGUI.py:5459 flatcamTools/ToolPcbWizard.py:111
msgid "LZ"
msgstr "LZ"
-#: flatcamGUI/FlatCAMGUI.py:4545 flatcamGUI/FlatCAMGUI.py:4898
-#: flatcamGUI/FlatCAMGUI.py:5395 flatcamTools/ToolPcbWizard.py:112
+#: flatcamGUI/FlatCAMGUI.py:4610 flatcamGUI/FlatCAMGUI.py:4963
+#: flatcamGUI/FlatCAMGUI.py:5460 flatcamTools/ToolPcbWizard.py:112
msgid "TZ"
msgstr "TZ"
-#: flatcamGUI/FlatCAMGUI.py:4567 flatcamGUI/FlatCAMGUI.py:5448
-#: flatcamGUI/FlatCAMGUI.py:6050 flatcamGUI/FlatCAMGUI.py:6307
-#: flatcamGUI/FlatCAMGUI.py:6346 flatcamGUI/FlatCAMGUI.py:6513
-#: flatcamGUI/FlatCAMGUI.py:6612 flatcamGUI/FlatCAMGUI.py:6808
-#: flatcamGUI/FlatCAMGUI.py:6869 flatcamGUI/FlatCAMGUI.py:7068
-#: flatcamGUI/FlatCAMGUI.py:7200 flatcamGUI/FlatCAMGUI.py:7373
-#: flatcamGUI/ObjectUI.py:1548 flatcamTools/ToolNonCopperClear.py:198
+#: flatcamGUI/FlatCAMGUI.py:4632 flatcamGUI/FlatCAMGUI.py:5513
+#: flatcamGUI/FlatCAMGUI.py:6115 flatcamGUI/FlatCAMGUI.py:6394
+#: flatcamGUI/FlatCAMGUI.py:6433 flatcamGUI/FlatCAMGUI.py:6688
+#: flatcamGUI/FlatCAMGUI.py:6787 flatcamGUI/FlatCAMGUI.py:6994
+#: flatcamGUI/FlatCAMGUI.py:7055 flatcamGUI/FlatCAMGUI.py:7254
+#: flatcamGUI/FlatCAMGUI.py:7386 flatcamGUI/FlatCAMGUI.py:7559
+#: flatcamGUI/ObjectUI.py:1610 flatcamTools/ToolNonCopperClear.py:265
msgid "Parameters"
msgstr "Parametri"
-#: flatcamGUI/FlatCAMGUI.py:4569
+#: flatcamGUI/FlatCAMGUI.py:4634
msgid "A list of Gerber Editor parameters."
msgstr "O listă de parametri ai Editorului Gerber."
-#: flatcamGUI/FlatCAMGUI.py:4577 flatcamGUI/FlatCAMGUI.py:5458
-#: flatcamGUI/FlatCAMGUI.py:6060
+#: flatcamGUI/FlatCAMGUI.py:4642 flatcamGUI/FlatCAMGUI.py:5523
+#: flatcamGUI/FlatCAMGUI.py:6125
msgid "Selection limit"
msgstr "Limita selecţie"
-#: flatcamGUI/FlatCAMGUI.py:4579
+#: flatcamGUI/FlatCAMGUI.py:4644
msgid ""
"Set the number of selected Gerber geometry\n"
"items above which the utility geometry\n"
@@ -7630,23 +7724,23 @@ msgstr ""
"Creste performanta cand se mută un număr mai mare\n"
"de elemente geometrice."
-#: flatcamGUI/FlatCAMGUI.py:4591
+#: flatcamGUI/FlatCAMGUI.py:4656
msgid "New Aperture code"
msgstr "Cod pt aperture noua"
-#: flatcamGUI/FlatCAMGUI.py:4603
+#: flatcamGUI/FlatCAMGUI.py:4668
msgid "New Aperture size"
msgstr "Dim. pt aperture noua"
-#: flatcamGUI/FlatCAMGUI.py:4605
+#: flatcamGUI/FlatCAMGUI.py:4670
msgid "Size for the new aperture"
msgstr "Dim. pentru noua apertură"
-#: flatcamGUI/FlatCAMGUI.py:4615
+#: flatcamGUI/FlatCAMGUI.py:4680
msgid "New Aperture type"
msgstr "Tip pt noua apaertura"
-#: flatcamGUI/FlatCAMGUI.py:4617
+#: flatcamGUI/FlatCAMGUI.py:4682
msgid ""
"Type for the new aperture.\n"
"Can be 'C', 'R' or 'O'."
@@ -7654,85 +7748,86 @@ msgstr ""
"Tipul noii aperture.\n"
"Poate fi „C”, „R” sau „O”."
-#: flatcamGUI/FlatCAMGUI.py:4638
+#: flatcamGUI/FlatCAMGUI.py:4703
msgid "Aperture Dimensions"
msgstr "Dim. aper"
-#: flatcamGUI/FlatCAMGUI.py:4640 flatcamGUI/FlatCAMGUI.py:5733
-#: flatcamGUI/FlatCAMGUI.py:6358
+#: flatcamGUI/FlatCAMGUI.py:4705 flatcamGUI/FlatCAMGUI.py:5798
+#: flatcamGUI/FlatCAMGUI.py:6445
msgid "Diameters of the cutting tools, separated by ','"
msgstr "Diametrele pentru unelte tăietoare, separate cu virgula"
-#: flatcamGUI/FlatCAMGUI.py:4646
+#: flatcamGUI/FlatCAMGUI.py:4711
#, python-format
msgid "%s:"
msgstr "%s:"
-#: flatcamGUI/FlatCAMGUI.py:4650 flatcamGUI/FlatCAMGUI.py:5630
+#: flatcamGUI/FlatCAMGUI.py:4715 flatcamGUI/FlatCAMGUI.py:5564
+#: flatcamGUI/FlatCAMGUI.py:5695
msgid "Linear Dir."
msgstr "Dir. Lineara"
-#: flatcamGUI/FlatCAMGUI.py:4686
+#: flatcamGUI/FlatCAMGUI.py:4751
msgid "Circular Pad Array"
msgstr "Arie de Sloturi circ"
-#: flatcamGUI/FlatCAMGUI.py:4690 flatcamGUI/FlatCAMGUI.py:5539
-#: flatcamGUI/FlatCAMGUI.py:5670
+#: flatcamGUI/FlatCAMGUI.py:4755 flatcamGUI/FlatCAMGUI.py:5604
+#: flatcamGUI/FlatCAMGUI.py:5735
msgid "Circular Dir."
msgstr "Directie circ."
-#: flatcamGUI/FlatCAMGUI.py:4692 flatcamGUI/FlatCAMGUI.py:5541
-#: flatcamGUI/FlatCAMGUI.py:5672
+#: flatcamGUI/FlatCAMGUI.py:4757 flatcamGUI/FlatCAMGUI.py:5606
+#: flatcamGUI/FlatCAMGUI.py:5737
msgid ""
"Direction for circular array.\n"
"Can be CW = clockwise or CCW = counter clockwise."
msgstr ""
"Directia pentru aria circulară.\n"
"Poate fi CW = in sensul acelor de ceasornic sau CCW = invers acelor de "
-"ceasornic"
+"ceasornic."
-#: flatcamGUI/FlatCAMGUI.py:4703 flatcamGUI/FlatCAMGUI.py:5552
-#: flatcamGUI/FlatCAMGUI.py:5683
+#: flatcamGUI/FlatCAMGUI.py:4768 flatcamGUI/FlatCAMGUI.py:5617
+#: flatcamGUI/FlatCAMGUI.py:5748
msgid "Circ. Angle"
msgstr "Unghi circ."
-#: flatcamGUI/FlatCAMGUI.py:4718
+#: flatcamGUI/FlatCAMGUI.py:4783
msgid "Distance at which to buffer the Gerber element."
msgstr "Distanța la care se bufferează elementul Gerber."
-#: flatcamGUI/FlatCAMGUI.py:4725
+#: flatcamGUI/FlatCAMGUI.py:4790
msgid "Scale Tool"
msgstr "Unalta de Scalare"
-#: flatcamGUI/FlatCAMGUI.py:4731
+#: flatcamGUI/FlatCAMGUI.py:4796
msgid "Factor to scale the Gerber element."
msgstr "Factor pentru scalarea elementului Gerber."
-#: flatcamGUI/FlatCAMGUI.py:4738
+#: flatcamGUI/FlatCAMGUI.py:4803
msgid "Mark Area Tool"
msgstr "Unealta de Marc. Arie"
-#: flatcamGUI/FlatCAMGUI.py:4742 flatcamGUI/FlatCAMGUI.py:4752
+#: flatcamGUI/FlatCAMGUI.py:4807 flatcamGUI/FlatCAMGUI.py:4817
msgid "Threshold low"
msgstr "Prag minim"
-#: flatcamGUI/FlatCAMGUI.py:4744
+#: flatcamGUI/FlatCAMGUI.py:4809
msgid "Threshold value under which the apertures are not marked."
msgstr "Valoarea pragului sub care aperturile nu sunt marcate."
-#: flatcamGUI/FlatCAMGUI.py:4754
+#: flatcamGUI/FlatCAMGUI.py:4819
msgid "Threshold value over which the apertures are not marked."
msgstr "Valoarea pragului peste care nu sunt marcate aperturile."
-#: flatcamGUI/FlatCAMGUI.py:4770
+#: flatcamGUI/FlatCAMGUI.py:4835
msgid "Excellon General"
msgstr "Excellon General"
-#: flatcamGUI/FlatCAMGUI.py:4792
+#: flatcamGUI/FlatCAMGUI.py:4857
msgid "Excellon Format"
msgstr "Format Excellon"
-#: flatcamGUI/FlatCAMGUI.py:4794
+#: flatcamGUI/FlatCAMGUI.py:4859
msgid ""
"The NC drill files, usually named Excellon files\n"
"are files that can be found in different formats.\n"
@@ -7778,14 +7873,14 @@ msgstr ""
"Sprint Layout 2:4 INCH LZ\n"
"KiCAD 3:5 INCH TZ"
-#: flatcamGUI/FlatCAMGUI.py:4822
+#: flatcamGUI/FlatCAMGUI.py:4887
msgid "Default values for INCH are 2:4"
msgstr ""
"Valorile default pentru Inch sunt 2:4\n"
-"adica 2 parti intregi și 4 zecimale."
+"adica 2 parti intregi și 4 zecimale"
-#: flatcamGUI/FlatCAMGUI.py:4830 flatcamGUI/FlatCAMGUI.py:4863
-#: flatcamGUI/FlatCAMGUI.py:5338
+#: flatcamGUI/FlatCAMGUI.py:4895 flatcamGUI/FlatCAMGUI.py:4928
+#: flatcamGUI/FlatCAMGUI.py:5403
msgid ""
"This numbers signify the number of digits in\n"
"the whole part of Excellon coordinates."
@@ -7793,8 +7888,8 @@ msgstr ""
"Acest număr reprezinta numărul de digiti din partea\n"
"intreaga a coordonatelor Excellon."
-#: flatcamGUI/FlatCAMGUI.py:4844 flatcamGUI/FlatCAMGUI.py:4877
-#: flatcamGUI/FlatCAMGUI.py:5352
+#: flatcamGUI/FlatCAMGUI.py:4909 flatcamGUI/FlatCAMGUI.py:4942
+#: flatcamGUI/FlatCAMGUI.py:5417
msgid ""
"This numbers signify the number of digits in\n"
"the decimal part of Excellon coordinates."
@@ -7802,21 +7897,21 @@ msgstr ""
"Acest număr reprezinta numărul de digiti din partea\n"
"zecimala a coordonatelor Excellon."
-#: flatcamGUI/FlatCAMGUI.py:4852
+#: flatcamGUI/FlatCAMGUI.py:4917
msgid "METRIC"
msgstr "Metric"
-#: flatcamGUI/FlatCAMGUI.py:4855
+#: flatcamGUI/FlatCAMGUI.py:4920
msgid "Default values for METRIC are 3:3"
msgstr ""
"Valorile default pentru Metric sunt 3:3\n"
-"adica 3 parti intregi și 3 zecimale."
+"adica 3 parti intregi și 3 zecimale"
-#: flatcamGUI/FlatCAMGUI.py:4886
+#: flatcamGUI/FlatCAMGUI.py:4951
msgid "Default Zeros"
msgstr "Suprimare Zero"
-#: flatcamGUI/FlatCAMGUI.py:4889 flatcamGUI/FlatCAMGUI.py:5387
+#: flatcamGUI/FlatCAMGUI.py:4954 flatcamGUI/FlatCAMGUI.py:5452
msgid ""
"This sets the type of Excellon zeros.\n"
"If LZ then Leading Zeros are kept and\n"
@@ -7832,7 +7927,7 @@ msgstr ""
"cele de la final sunt pastrate.\n"
"(Invers fata de fişierele Gerber)."
-#: flatcamGUI/FlatCAMGUI.py:4900
+#: flatcamGUI/FlatCAMGUI.py:4965
msgid ""
"This sets the default type of Excellon zeros.\n"
"If it is not detected in the parsed file the value here\n"
@@ -7851,11 +7946,11 @@ msgstr ""
"cele de la final sunt pastrate.\n"
"(Invers fata de fişierele Gerber)."
-#: flatcamGUI/FlatCAMGUI.py:4910
+#: flatcamGUI/FlatCAMGUI.py:4975
msgid "Default Units"
msgstr "Unitati Excellon"
-#: flatcamGUI/FlatCAMGUI.py:4913
+#: flatcamGUI/FlatCAMGUI.py:4978
msgid ""
"This sets the default units of Excellon files.\n"
"If it is not detected in the parsed file the value here\n"
@@ -7869,7 +7964,7 @@ msgstr ""
"(unde se gasesc unitatile) și atunci se va folosi\n"
"aceasta valoare."
-#: flatcamGUI/FlatCAMGUI.py:4924
+#: flatcamGUI/FlatCAMGUI.py:4989
msgid ""
"This sets the units of Excellon files.\n"
"Some Excellon files don't have an header\n"
@@ -7882,15 +7977,15 @@ msgstr ""
"(unde se gasesc unitatile) și atunci se va folosi\n"
"aceasta valoare."
-#: flatcamGUI/FlatCAMGUI.py:4932
+#: flatcamGUI/FlatCAMGUI.py:4997
msgid "Excellon Optimization"
msgstr "Optimizare Excellon"
-#: flatcamGUI/FlatCAMGUI.py:4935
+#: flatcamGUI/FlatCAMGUI.py:5000
msgid "Algorithm: "
-msgstr "Algoritm:"
+msgstr "Algoritm"
-#: flatcamGUI/FlatCAMGUI.py:4937 flatcamGUI/FlatCAMGUI.py:4951
+#: flatcamGUI/FlatCAMGUI.py:5002 flatcamGUI/FlatCAMGUI.py:5016
msgid ""
"This sets the optimization type for the Excellon drill path.\n"
"If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
@@ -7914,15 +8009,15 @@ msgstr ""
"care nu este compatibila cu pachetul OR Tools și in acest caz se foloseşte\n"
"algoritmul default: Travelling Salesman (vanzatorul ambulant)."
-#: flatcamGUI/FlatCAMGUI.py:4948
+#: flatcamGUI/FlatCAMGUI.py:5013
msgid "MH"
msgstr "MH"
-#: flatcamGUI/FlatCAMGUI.py:4962
+#: flatcamGUI/FlatCAMGUI.py:5027
msgid "Optimization Time"
msgstr "Durata optimiz."
-#: flatcamGUI/FlatCAMGUI.py:4965
+#: flatcamGUI/FlatCAMGUI.py:5030
msgid ""
"When OR-Tools Metaheuristic (MH) is enabled there is a\n"
"maximum threshold for how much time is spent doing the\n"
@@ -7933,16 +8028,16 @@ msgstr ""
"reprezinta cat timp se sta pentru fiecare element in\n"
"incercarea de a afla calea optima."
-#: flatcamGUI/FlatCAMGUI.py:5008
+#: flatcamGUI/FlatCAMGUI.py:5073
msgid "Excellon Options"
msgstr "Opțiuni Excellon"
-#: flatcamGUI/FlatCAMGUI.py:5011 flatcamGUI/FlatCAMGUI.py:5752
-#: flatcamGUI/ObjectUI.py:582
+#: flatcamGUI/FlatCAMGUI.py:5076 flatcamGUI/FlatCAMGUI.py:5817
+#: flatcamGUI/ObjectUI.py:643
msgid "Create CNC Job"
msgstr "Crează CNCJob"
-#: flatcamGUI/FlatCAMGUI.py:5013
+#: flatcamGUI/FlatCAMGUI.py:5078
msgid ""
"Parameters used to create a CNC Job object\n"
"for this drill object."
@@ -7950,13 +8045,14 @@ msgstr ""
"Parametrii folositi pentru a crea un obiect FlatCAM tip CNCJob\n"
"din acest obiect Excellon."
-#: flatcamGUI/FlatCAMGUI.py:5021 flatcamGUI/FlatCAMGUI.py:5764
-#: flatcamGUI/FlatCAMGUI.py:7004 flatcamGUI/ObjectUI.py:593
-#: flatcamGUI/ObjectUI.py:1069 flatcamTools/ToolCalculators.py:107
+#: flatcamGUI/FlatCAMGUI.py:5086 flatcamGUI/FlatCAMGUI.py:5829
+#: flatcamGUI/FlatCAMGUI.py:6530 flatcamGUI/FlatCAMGUI.py:7190
+#: flatcamGUI/ObjectUI.py:654 flatcamGUI/ObjectUI.py:1132
+#: flatcamTools/ToolCalculators.py:107 flatcamTools/ToolNonCopperClear.py:269
msgid "Cut Z"
msgstr "Z tăiere"
-#: flatcamGUI/FlatCAMGUI.py:5023 flatcamGUI/ObjectUI.py:595
+#: flatcamGUI/FlatCAMGUI.py:5088 flatcamGUI/ObjectUI.py:656
msgid ""
"Drill depth (negative)\n"
"below the copper surface."
@@ -7965,12 +8061,12 @@ msgstr ""
"Daca se foloseşte o val. pozitivă, aplicaţia\n"
"va incerca in mod automat să schimbe semnul."
-#: flatcamGUI/FlatCAMGUI.py:5030 flatcamGUI/FlatCAMGUI.py:5802
-#: flatcamGUI/ObjectUI.py:603 flatcamGUI/ObjectUI.py:1103
+#: flatcamGUI/FlatCAMGUI.py:5095 flatcamGUI/FlatCAMGUI.py:5867
+#: flatcamGUI/ObjectUI.py:664 flatcamGUI/ObjectUI.py:1166
msgid "Travel Z"
msgstr "Z Deplasare"
-#: flatcamGUI/FlatCAMGUI.py:5032 flatcamGUI/ObjectUI.py:605
+#: flatcamGUI/FlatCAMGUI.py:5097 flatcamGUI/ObjectUI.py:666
msgid ""
"Tool height when travelling\n"
"across the XY plane."
@@ -7979,12 +8075,12 @@ msgstr ""
"in planul X-Y, fără a efectua taieri, adica\n"
"in afara materialului."
-#: flatcamGUI/FlatCAMGUI.py:5040 flatcamGUI/FlatCAMGUI.py:5812
-#: flatcamGUI/ObjectUI.py:613 flatcamGUI/ObjectUI.py:1121
+#: flatcamGUI/FlatCAMGUI.py:5105 flatcamGUI/FlatCAMGUI.py:5877
+#: flatcamGUI/ObjectUI.py:674 flatcamGUI/ObjectUI.py:1184
msgid "Tool change"
msgstr "Schimb unealtă"
-#: flatcamGUI/FlatCAMGUI.py:5042 flatcamGUI/ObjectUI.py:615
+#: flatcamGUI/FlatCAMGUI.py:5107 flatcamGUI/ObjectUI.py:676
msgid ""
"Include tool-change sequence\n"
"in G-Code (Pause for tool change)."
@@ -7993,22 +8089,22 @@ msgstr ""
"in codul G-Code (pauza pentru schimbare unealtă).\n"
"De obicei este folosita comanda G-Code M6."
-#: flatcamGUI/FlatCAMGUI.py:5049 flatcamGUI/FlatCAMGUI.py:5824
+#: flatcamGUI/FlatCAMGUI.py:5114 flatcamGUI/FlatCAMGUI.py:5889
msgid "Toolchange Z"
msgstr "Z schimb. unealtă"
-#: flatcamGUI/FlatCAMGUI.py:5051 flatcamGUI/FlatCAMGUI.py:5827
-#: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:1117
+#: flatcamGUI/FlatCAMGUI.py:5116 flatcamGUI/FlatCAMGUI.py:5892
+#: flatcamGUI/ObjectUI.py:684 flatcamGUI/ObjectUI.py:1180
msgid ""
"Z-axis position (height) for\n"
"tool change."
msgstr "Înălţimea, pe axa Z, pentru schimbul uneltei."
-#: flatcamGUI/FlatCAMGUI.py:5058 flatcamGUI/ObjectUI.py:652
-msgid "Feedrate (Plunge):"
-msgstr "Feedrate (Plonjare):"
+#: flatcamGUI/FlatCAMGUI.py:5123 flatcamGUI/ObjectUI.py:713
+msgid "Feedrate (Plunge)"
+msgstr "Feedrate (Plonjare)"
-#: flatcamGUI/FlatCAMGUI.py:5060 flatcamGUI/ObjectUI.py:654
+#: flatcamGUI/FlatCAMGUI.py:5125 flatcamGUI/ObjectUI.py:715
msgid ""
"Tool speed while drilling\n"
"(in units per minute).\n"
@@ -8018,11 +8114,11 @@ msgstr ""
"(in unitati pe minut).\n"
"Aceasta este mișcarea lineara G01."
-#: flatcamGUI/FlatCAMGUI.py:5069
+#: flatcamGUI/FlatCAMGUI.py:5134
msgid "Spindle Speed"
msgstr "Viteza Motor"
-#: flatcamGUI/FlatCAMGUI.py:5071 flatcamGUI/ObjectUI.py:681
+#: flatcamGUI/FlatCAMGUI.py:5136 flatcamGUI/ObjectUI.py:742
msgid ""
"Speed of the spindle\n"
"in RPM (optional)"
@@ -8032,11 +8128,11 @@ msgstr ""
"Acest parametru este optional și se poate lasa gol\n"
"daca nu se foloseşte."
-#: flatcamGUI/FlatCAMGUI.py:5079 flatcamGUI/FlatCAMGUI.py:5870
+#: flatcamGUI/FlatCAMGUI.py:5144 flatcamGUI/FlatCAMGUI.py:5935
msgid "Spindle dir."
msgstr "Directie Motor"
-#: flatcamGUI/FlatCAMGUI.py:5081 flatcamGUI/FlatCAMGUI.py:5872
+#: flatcamGUI/FlatCAMGUI.py:5146 flatcamGUI/FlatCAMGUI.py:5937
msgid ""
"This sets the direction that the spindle is rotating.\n"
"It can be either:\n"
@@ -8048,13 +8144,13 @@ msgstr ""
"- CW = in sensul acelor de ceasornic\n"
"- CCW = in sensul invers acelor de ceasornic"
-#: flatcamGUI/FlatCAMGUI.py:5093 flatcamGUI/FlatCAMGUI.py:5884
-#: flatcamGUI/ObjectUI.py:689 flatcamGUI/ObjectUI.py:1217
+#: flatcamGUI/FlatCAMGUI.py:5158 flatcamGUI/FlatCAMGUI.py:5949
+#: flatcamGUI/ObjectUI.py:750 flatcamGUI/ObjectUI.py:1280
msgid "Dwell"
msgstr "Pauza"
-#: flatcamGUI/FlatCAMGUI.py:5095 flatcamGUI/FlatCAMGUI.py:5886
-#: flatcamGUI/ObjectUI.py:691 flatcamGUI/ObjectUI.py:1220
+#: flatcamGUI/FlatCAMGUI.py:5160 flatcamGUI/FlatCAMGUI.py:5951
+#: flatcamGUI/ObjectUI.py:752 flatcamGUI/ObjectUI.py:1283
msgid ""
"Pause to allow the spindle to reach its\n"
"speed before cutting."
@@ -8062,21 +8158,21 @@ msgstr ""
"O pauza care permite motorului să ajunga la turatia specificata,\n"
"inainte de a incepe mișcarea spre poziţia de tăiere (găurire)."
-#: flatcamGUI/FlatCAMGUI.py:5098
-msgid "Duration:"
-msgstr "Durata:"
+#: flatcamGUI/FlatCAMGUI.py:5163 flatcamGUI/FlatCAMGUI.py:5954
+msgid "Duration"
+msgstr "Durată"
-#: flatcamGUI/FlatCAMGUI.py:5100 flatcamGUI/FlatCAMGUI.py:5891
-#: flatcamGUI/ObjectUI.py:696 flatcamGUI/ObjectUI.py:1226
+#: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/FlatCAMGUI.py:5956
+#: flatcamGUI/ObjectUI.py:757 flatcamGUI/ObjectUI.py:1289
msgid "Number of time units for spindle to dwell."
msgstr "Timpul (ori secunde ori milisec) cat se stă in pauză."
-#: flatcamGUI/FlatCAMGUI.py:5112 flatcamGUI/FlatCAMGUI.py:5901
-#: flatcamGUI/ObjectUI.py:704
+#: flatcamGUI/FlatCAMGUI.py:5177 flatcamGUI/FlatCAMGUI.py:5966
+#: flatcamGUI/ObjectUI.py:765
msgid "Postprocessor"
msgstr "Postprocesor"
-#: flatcamGUI/FlatCAMGUI.py:5114 flatcamGUI/ObjectUI.py:706
+#: flatcamGUI/FlatCAMGUI.py:5179 flatcamGUI/ObjectUI.py:767
msgid ""
"The postprocessor JSON file that dictates\n"
"Gcode output."
@@ -8084,11 +8180,11 @@ msgstr ""
"Fișierul JSON postprocesor care dictează\n"
"codul Gcode."
-#: flatcamGUI/FlatCAMGUI.py:5123 flatcamGUI/ObjectUI.py:745
+#: flatcamGUI/FlatCAMGUI.py:5188 flatcamGUI/ObjectUI.py:807
msgid "Gcode"
msgstr "Gcode"
-#: flatcamGUI/FlatCAMGUI.py:5125
+#: flatcamGUI/FlatCAMGUI.py:5190
msgid ""
"Choose what to use for GCode generation:\n"
"'Drills', 'Slots' or 'Both'.\n"
@@ -8102,41 +8198,41 @@ msgstr ""
"Când se alege Sloturi sau Ambele, sloturile vor fi convertite in serii de "
"găuri."
-#: flatcamGUI/FlatCAMGUI.py:5141 flatcamGUI/ObjectUI.py:769
+#: flatcamGUI/FlatCAMGUI.py:5206 flatcamGUI/ObjectUI.py:831
msgid "Mill Holes"
msgstr "Frezare găuri"
-#: flatcamGUI/FlatCAMGUI.py:5143 flatcamGUI/ObjectUI.py:771
+#: flatcamGUI/FlatCAMGUI.py:5208 flatcamGUI/ObjectUI.py:833
msgid "Create Geometry for milling holes."
msgstr "Crează un obiect tip Geometrie pentru frezarea găurilor."
-#: flatcamGUI/FlatCAMGUI.py:5147 flatcamGUI/ObjectUI.py:783
+#: flatcamGUI/FlatCAMGUI.py:5212 flatcamGUI/ObjectUI.py:846
msgid "Drill Tool dia"
msgstr "Dia. Burghiu Găurire"
-#: flatcamGUI/FlatCAMGUI.py:5154 flatcamGUI/ObjectUI.py:799
+#: flatcamGUI/FlatCAMGUI.py:5219 flatcamGUI/ObjectUI.py:862
msgid "Slot Tool dia"
msgstr "Dia. Freza Slot"
-#: flatcamGUI/FlatCAMGUI.py:5156 flatcamGUI/ObjectUI.py:801
+#: flatcamGUI/FlatCAMGUI.py:5221 flatcamGUI/ObjectUI.py:864
msgid ""
"Diameter of the cutting tool\n"
"when milling slots."
msgstr "Diametrul frezei când se frezează sloturile."
-#: flatcamGUI/FlatCAMGUI.py:5168
+#: flatcamGUI/FlatCAMGUI.py:5233
msgid "Defaults"
msgstr "Val. Implicite"
-#: flatcamGUI/FlatCAMGUI.py:5181
+#: flatcamGUI/FlatCAMGUI.py:5246
msgid "Excellon Adv. Options"
msgstr "Opțiuni Avans. Excellon"
-#: flatcamGUI/FlatCAMGUI.py:5187 flatcamGUI/FlatCAMGUI.py:5924
+#: flatcamGUI/FlatCAMGUI.py:5252 flatcamGUI/FlatCAMGUI.py:5989
msgid "Advanced Options"
msgstr "Opțiuni avansate"
-#: flatcamGUI/FlatCAMGUI.py:5189
+#: flatcamGUI/FlatCAMGUI.py:5254
msgid ""
"Parameters used to create a CNC Job object\n"
"for this drill object that are shown when App Level is Advanced."
@@ -8145,11 +8241,11 @@ msgstr ""
"pt acest obiect Excellon, parametri care sunt disponibili\n"
"doar in modul Avansat al aplicaţiei."
-#: flatcamGUI/FlatCAMGUI.py:5197 flatcamGUI/ObjectUI.py:555
+#: flatcamGUI/FlatCAMGUI.py:5262 flatcamGUI/ObjectUI.py:614
msgid "Offset Z"
-msgstr "Ofset Z:"
+msgstr "Ofset Z"
-#: flatcamGUI/FlatCAMGUI.py:5199 flatcamGUI/ObjectUI.py:572
+#: flatcamGUI/FlatCAMGUI.py:5264 flatcamGUI/ObjectUI.py:632
msgid ""
"Some drill bits (the larger ones) need to drill deeper\n"
"to create the desired exit hole diameter due of the tip shape.\n"
@@ -8162,20 +8258,20 @@ msgstr ""
"Valoarea de aici efectuează o compensare asupra\n"
"parametrului >Z tăiere<."
-#: flatcamGUI/FlatCAMGUI.py:5206
+#: flatcamGUI/FlatCAMGUI.py:5271
msgid "Toolchange X,Y"
msgstr "X,Y schimb. unealtă"
-#: flatcamGUI/FlatCAMGUI.py:5208 flatcamGUI/FlatCAMGUI.py:5937
+#: flatcamGUI/FlatCAMGUI.py:5273 flatcamGUI/FlatCAMGUI.py:6002
msgid "Toolchange X,Y position."
msgstr "Poziţia X,Y in format (x,y) unde se face schimbarea uneltei."
-#: flatcamGUI/FlatCAMGUI.py:5214 flatcamGUI/FlatCAMGUI.py:5944
-#: flatcamGUI/ObjectUI.py:632
+#: flatcamGUI/FlatCAMGUI.py:5279 flatcamGUI/FlatCAMGUI.py:6009
+#: flatcamGUI/ObjectUI.py:693
msgid "Start move Z"
msgstr "Z pornire"
-#: flatcamGUI/FlatCAMGUI.py:5216 flatcamGUI/ObjectUI.py:634
+#: flatcamGUI/FlatCAMGUI.py:5281 flatcamGUI/ObjectUI.py:695
msgid ""
"Height of the tool just after start.\n"
"Delete the value if you don't need this feature."
@@ -8183,23 +8279,23 @@ msgstr ""
"Înălţimea uneltei imediat dupa ce se porneste operatia CNC.\n"
"Lasa casuta goala daca nu se foloseşte."
-#: flatcamGUI/FlatCAMGUI.py:5223 flatcamGUI/FlatCAMGUI.py:5954
-#: flatcamGUI/ObjectUI.py:642 flatcamGUI/ObjectUI.py:1147
+#: flatcamGUI/FlatCAMGUI.py:5288 flatcamGUI/FlatCAMGUI.py:6019
+#: flatcamGUI/ObjectUI.py:703 flatcamGUI/ObjectUI.py:1210
msgid "End move Z"
msgstr "Z oprire"
-#: flatcamGUI/FlatCAMGUI.py:5225 flatcamGUI/FlatCAMGUI.py:5956
-#: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1149
+#: flatcamGUI/FlatCAMGUI.py:5290 flatcamGUI/FlatCAMGUI.py:6021
+#: flatcamGUI/ObjectUI.py:705 flatcamGUI/ObjectUI.py:1212
msgid ""
"Height of the tool after\n"
"the last move at the end of the job."
msgstr "Înălţimea la care se parchează freza dupa ce se termina lucrul."
-#: flatcamGUI/FlatCAMGUI.py:5232 flatcamGUI/ObjectUI.py:663
+#: flatcamGUI/FlatCAMGUI.py:5297 flatcamGUI/ObjectUI.py:724
msgid "Feedrate Rapids"
msgstr "Feedrate rapizi"
-#: flatcamGUI/FlatCAMGUI.py:5234 flatcamGUI/ObjectUI.py:665
+#: flatcamGUI/FlatCAMGUI.py:5299 flatcamGUI/ObjectUI.py:726
msgid ""
"Tool speed while drilling\n"
"(in units per minute).\n"
@@ -8212,13 +8308,13 @@ msgstr ""
"printerul 3D Marlin, implicit când se foloseşte fişierul\n"
"postprocesor: Marlin. Ignora aceasta parametru in rest."
-#: flatcamGUI/FlatCAMGUI.py:5245 flatcamGUI/FlatCAMGUI.py:5987
-#: flatcamGUI/ObjectUI.py:715 flatcamGUI/ObjectUI.py:1245
+#: flatcamGUI/FlatCAMGUI.py:5310 flatcamGUI/FlatCAMGUI.py:6052
+#: flatcamGUI/ObjectUI.py:776 flatcamGUI/ObjectUI.py:1308
msgid "Probe Z depth"
msgstr "Z sonda"
-#: flatcamGUI/FlatCAMGUI.py:5247 flatcamGUI/FlatCAMGUI.py:5989
-#: flatcamGUI/ObjectUI.py:717 flatcamGUI/ObjectUI.py:1247
+#: flatcamGUI/FlatCAMGUI.py:5312 flatcamGUI/FlatCAMGUI.py:6054
+#: flatcamGUI/ObjectUI.py:778 flatcamGUI/ObjectUI.py:1310
msgid ""
"The maximum depth that the probe is allowed\n"
"to probe. Negative value, in current units."
@@ -8226,21 +8322,21 @@ msgstr ""
"Adâncimea maxima la care este permis sondei să coboare.\n"
"Are o valoare negativă, in unitatile curente."
-#: flatcamGUI/FlatCAMGUI.py:5255 flatcamGUI/FlatCAMGUI.py:5997
-#: flatcamGUI/ObjectUI.py:727 flatcamGUI/ObjectUI.py:1257
+#: flatcamGUI/FlatCAMGUI.py:5320 flatcamGUI/FlatCAMGUI.py:6062
+#: flatcamGUI/ObjectUI.py:788 flatcamGUI/ObjectUI.py:1320
msgid "Feedrate Probe"
msgstr "Feedrate sonda"
-#: flatcamGUI/FlatCAMGUI.py:5257 flatcamGUI/FlatCAMGUI.py:5999
-#: flatcamGUI/ObjectUI.py:729 flatcamGUI/ObjectUI.py:1259
+#: flatcamGUI/FlatCAMGUI.py:5322 flatcamGUI/FlatCAMGUI.py:6064
+#: flatcamGUI/ObjectUI.py:790 flatcamGUI/ObjectUI.py:1322
msgid "The feedrate used while the probe is probing."
msgstr "Viteza sondei când aceasta coboara."
-#: flatcamGUI/FlatCAMGUI.py:5263
-msgid "Fast Plunge:"
-msgstr "Plonjare rapida:"
+#: flatcamGUI/FlatCAMGUI.py:5328 flatcamGUI/FlatCAMGUI.py:6071
+msgid "Fast Plunge"
+msgstr "Plonjare rapidă"
-#: flatcamGUI/FlatCAMGUI.py:5265 flatcamGUI/FlatCAMGUI.py:6008
+#: flatcamGUI/FlatCAMGUI.py:5330 flatcamGUI/FlatCAMGUI.py:6073
msgid ""
"By checking this, the vertical move from\n"
"Z_Toolchange to Z_move is done with G0,\n"
@@ -8257,11 +8353,11 @@ msgstr ""
"schimba\n"
"unealta. Daca aveti ceva plasat sub unealtă ceva se va strica."
-#: flatcamGUI/FlatCAMGUI.py:5274
+#: flatcamGUI/FlatCAMGUI.py:5339
msgid "Fast Retract"
msgstr "Retragere rapida"
-#: flatcamGUI/FlatCAMGUI.py:5276
+#: flatcamGUI/FlatCAMGUI.py:5341
msgid ""
"Exit hole strategy.\n"
" - When uncheked, while exiting the drilled hole the drill bit\n"
@@ -8280,24 +8376,24 @@ msgstr ""
"adâncimea\n"
"de deplasare cu viteza maxima G0, intr-o singură mișcare."
-#: flatcamGUI/FlatCAMGUI.py:5295
+#: flatcamGUI/FlatCAMGUI.py:5360
msgid "Excellon Export"
msgstr "Export Excellon"
-#: flatcamGUI/FlatCAMGUI.py:5300
+#: flatcamGUI/FlatCAMGUI.py:5365
msgid ""
"The parameters set here are used in the file exported\n"
"when using the File -> Export -> Export Excellon menu entry."
msgstr ""
"Acesti parametri listati aici sunt folositi atunci când\n"
"se exporta un fişier Excellon folosind:\n"
-"File -> Exporta -> Exporta Excellon"
+"File -> Exporta -> Exporta Excellon."
-#: flatcamGUI/FlatCAMGUI.py:5311 flatcamGUI/FlatCAMGUI.py:5317
+#: flatcamGUI/FlatCAMGUI.py:5376 flatcamGUI/FlatCAMGUI.py:5382
msgid "The units used in the Excellon file."
msgstr "Unitatile de masura folosite in fişierul Excellon."
-#: flatcamGUI/FlatCAMGUI.py:5325
+#: flatcamGUI/FlatCAMGUI.py:5390
msgid ""
"The NC drill files, usually named Excellon files\n"
"are files that can be found in different formats.\n"
@@ -8309,11 +8405,11 @@ msgstr ""
"Aici se setează formatul Excellon când nu se utilizează\n"
"coordonate cu zecimale."
-#: flatcamGUI/FlatCAMGUI.py:5361
+#: flatcamGUI/FlatCAMGUI.py:5426
msgid "Format"
msgstr "Format"
-#: flatcamGUI/FlatCAMGUI.py:5363 flatcamGUI/FlatCAMGUI.py:5373
+#: flatcamGUI/FlatCAMGUI.py:5428 flatcamGUI/FlatCAMGUI.py:5438
msgid ""
"Select the kind of coordinates format used.\n"
"Coordinates can be saved with decimal point or without.\n"
@@ -8332,15 +8428,15 @@ msgstr ""
"- LZ = zerourile prefix sunt pastrate și cele sufix eliminate\n"
"- TZ = zerourile prefix sunt eliminate și cele sufix pastrate."
-#: flatcamGUI/FlatCAMGUI.py:5370
+#: flatcamGUI/FlatCAMGUI.py:5435
msgid "Decimal"
-msgstr "Cu dec."
+msgstr "Zecimale"
-#: flatcamGUI/FlatCAMGUI.py:5371
+#: flatcamGUI/FlatCAMGUI.py:5436
msgid "No-Decimal"
-msgstr "Fără dec."
+msgstr "Fără zecimale"
-#: flatcamGUI/FlatCAMGUI.py:5397
+#: flatcamGUI/FlatCAMGUI.py:5462
msgid ""
"This sets the default type of Excellon zeros.\n"
"If LZ then Leading Zeros are kept and\n"
@@ -8352,11 +8448,11 @@ msgstr ""
"- LZ = zerourile prefix sunt pastrate și cele sufix eliminate\n"
"- TZ = zerourile prefix sunt eliminate și cele sufix pastrate."
-#: flatcamGUI/FlatCAMGUI.py:5407
+#: flatcamGUI/FlatCAMGUI.py:5472
msgid "Slot type"
msgstr "Tip slot"
-#: flatcamGUI/FlatCAMGUI.py:5410 flatcamGUI/FlatCAMGUI.py:5420
+#: flatcamGUI/FlatCAMGUI.py:5475 flatcamGUI/FlatCAMGUI.py:5485
msgid ""
"This sets how the slots will be exported.\n"
"If ROUTED then the slots will be routed\n"
@@ -8370,19 +8466,19 @@ msgstr ""
"Dacă sunt Găurite (G85) sloturile vor fi exportate\n"
"folosind comanda slotului găurit (G85)."
-#: flatcamGUI/FlatCAMGUI.py:5417
+#: flatcamGUI/FlatCAMGUI.py:5482
msgid "Routed"
msgstr "Decupate"
-#: flatcamGUI/FlatCAMGUI.py:5418
+#: flatcamGUI/FlatCAMGUI.py:5483
msgid "Drilled(G85)"
msgstr "Găurite(G85)"
-#: flatcamGUI/FlatCAMGUI.py:5450
+#: flatcamGUI/FlatCAMGUI.py:5515
msgid "A list of Excellon Editor parameters."
msgstr "O listă de parametri ai Editorului Excellon."
-#: flatcamGUI/FlatCAMGUI.py:5460
+#: flatcamGUI/FlatCAMGUI.py:5525
msgid ""
"Set the number of selected Excellon geometry\n"
"items above which the utility geometry\n"
@@ -8396,56 +8492,40 @@ msgstr ""
"Creste performanta cand se muta un număr mai mare de \n"
"elemente geometrice."
-#: flatcamGUI/FlatCAMGUI.py:5472
+#: flatcamGUI/FlatCAMGUI.py:5537
msgid "New Tool Dia"
msgstr "Dia. nou unealtă"
-#: flatcamGUI/FlatCAMGUI.py:5484
-msgid "Nr of drills"
-msgstr "Nr. op. găurire"
-
-#: flatcamGUI/FlatCAMGUI.py:5495
+#: flatcamGUI/FlatCAMGUI.py:5560
msgid "Linear Drill Array"
msgstr "Arie lineară de găuri"
-#: flatcamGUI/FlatCAMGUI.py:5499
-msgid "Linear Dir.:"
-msgstr "Dir. Lineara:"
-
-#: flatcamGUI/FlatCAMGUI.py:5515 flatcamGUI/FlatCAMGUI.py:5935
+#: flatcamGUI/FlatCAMGUI.py:5580 flatcamGUI/FlatCAMGUI.py:6000
#, python-format
msgid "%s:"
msgstr "%s:"
-#: flatcamGUI/FlatCAMGUI.py:5535
+#: flatcamGUI/FlatCAMGUI.py:5600
msgid "Circular Drill Array"
msgstr "Arie circ. de găuri"
-#: flatcamGUI/FlatCAMGUI.py:5563 flatcamGUI/ObjectUI.py:554
+#: flatcamGUI/FlatCAMGUI.py:5628 flatcamGUI/ObjectUI.py:613
msgid "Slots"
msgstr "Sloturi"
-#: flatcamGUI/FlatCAMGUI.py:5567 flatcamTools/ToolProperties.py:159
-msgid "Length"
-msgstr "Lungime"
-
-#: flatcamGUI/FlatCAMGUI.py:5614
+#: flatcamGUI/FlatCAMGUI.py:5679
msgid "Linear Slot Array"
msgstr "Arie lineară de Sloturi"
-#: flatcamGUI/FlatCAMGUI.py:5618
-msgid "Nr of slots"
-msgstr "Nr de sloturi"
-
-#: flatcamGUI/FlatCAMGUI.py:5666
+#: flatcamGUI/FlatCAMGUI.py:5731
msgid "Circular Slot Array"
msgstr "Arie circ. de Sloturi"
-#: flatcamGUI/FlatCAMGUI.py:5700
+#: flatcamGUI/FlatCAMGUI.py:5765
msgid "Geometry General"
msgstr "Geometrie General"
-#: flatcamGUI/FlatCAMGUI.py:5719
+#: flatcamGUI/FlatCAMGUI.py:5784
msgid ""
"The number of circle steps for Geometry \n"
"circle and arc shapes linear approximation."
@@ -8453,11 +8533,11 @@ msgstr ""
"Numărul de segmente utilizate pentru\n"
"aproximarea lineara a Geometriilor circulare."
-#: flatcamGUI/FlatCAMGUI.py:5747
+#: flatcamGUI/FlatCAMGUI.py:5812
msgid "Geometry Options"
msgstr "Opțiuni Geometrie"
-#: flatcamGUI/FlatCAMGUI.py:5754
+#: flatcamGUI/FlatCAMGUI.py:5819
msgid ""
"Create a CNC Job object\n"
"tracing the contours of this\n"
@@ -8466,7 +8546,7 @@ msgstr ""
"Crează un obiect CNCJob care urmăreste conturul\n"
"acestui obiect tip Geometrie."
-#: flatcamGUI/FlatCAMGUI.py:5766 flatcamGUI/ObjectUI.py:1072
+#: flatcamGUI/FlatCAMGUI.py:5831 flatcamGUI/ObjectUI.py:1135
msgid ""
"Cutting depth (negative)\n"
"below the copper surface."
@@ -8474,11 +8554,11 @@ msgstr ""
"Adâncimea la care se taie sub suprafata de cupru.\n"
"Valoare negativă."
-#: flatcamGUI/FlatCAMGUI.py:5774 flatcamGUI/ObjectUI.py:1081
+#: flatcamGUI/FlatCAMGUI.py:5839 flatcamGUI/ObjectUI.py:1144
msgid "Multi-Depth"
msgstr "Multi-Pas"
-#: flatcamGUI/FlatCAMGUI.py:5777 flatcamGUI/ObjectUI.py:1084
+#: flatcamGUI/FlatCAMGUI.py:5842 flatcamGUI/ObjectUI.py:1147
msgid ""
"Use multiple passes to limit\n"
"the cut depth in each pass. Will\n"
@@ -8490,11 +8570,11 @@ msgstr ""
"va tăia de mai multe ori până când este\n"
"atins Z de tăiere, Z Cut."
-#: flatcamGUI/FlatCAMGUI.py:5786
+#: flatcamGUI/FlatCAMGUI.py:5851
msgid "Depth/Pass"
msgstr "Adânc./Trecere"
-#: flatcamGUI/FlatCAMGUI.py:5788
+#: flatcamGUI/FlatCAMGUI.py:5853
msgid ""
"The depth to cut on each pass,\n"
"when multidepth is enabled.\n"
@@ -8507,7 +8587,7 @@ msgstr ""
"Valoarea este pozitivă desi reprezinta o fracţie\n"
"a adancimii de tăiere care este o valoare negativă."
-#: flatcamGUI/FlatCAMGUI.py:5804 flatcamGUI/ObjectUI.py:1105
+#: flatcamGUI/FlatCAMGUI.py:5869 flatcamGUI/ObjectUI.py:1168
msgid ""
"Height of the tool when\n"
"moving without cutting."
@@ -8515,7 +8595,7 @@ msgstr ""
"Înălţimea la care se misca unealta când nu taie,\n"
"deasupra materialului."
-#: flatcamGUI/FlatCAMGUI.py:5815 flatcamGUI/ObjectUI.py:1124
+#: flatcamGUI/FlatCAMGUI.py:5880 flatcamGUI/ObjectUI.py:1187
msgid ""
"Include tool-change sequence\n"
"in the Machine Code (Pause for tool change)."
@@ -8524,23 +8604,23 @@ msgstr ""
"codul masina CNC. O pauza pentru schimbul\n"
"uneltei (M6)."
-#: flatcamGUI/FlatCAMGUI.py:5836 flatcamGUI/ObjectUI.py:1157
+#: flatcamGUI/FlatCAMGUI.py:5901 flatcamGUI/ObjectUI.py:1220
msgid "Feed Rate X-Y"
msgstr "Feedrate X-Y"
-#: flatcamGUI/FlatCAMGUI.py:5838 flatcamGUI/ObjectUI.py:1159
+#: flatcamGUI/FlatCAMGUI.py:5903 flatcamGUI/ObjectUI.py:1222
msgid ""
"Cutting speed in the XY\n"
"plane in units per minute"
msgstr ""
"Viteza de tăiere in planul X-Y\n"
-"in unitati pe minut."
+"in unitati pe minut"
-#: flatcamGUI/FlatCAMGUI.py:5846 flatcamGUI/ObjectUI.py:1167
+#: flatcamGUI/FlatCAMGUI.py:5911 flatcamGUI/ObjectUI.py:1230
msgid "Feed Rate Z"
msgstr "Feedrate Z"
-#: flatcamGUI/FlatCAMGUI.py:5848 flatcamGUI/ObjectUI.py:1169
+#: flatcamGUI/FlatCAMGUI.py:5913 flatcamGUI/ObjectUI.py:1232
msgid ""
"Cutting speed in the XY\n"
"plane in units per minute.\n"
@@ -8550,12 +8630,12 @@ msgstr ""
"in unitati pe minut.\n"
"Mai este numita și viteza de plonjare."
-#: flatcamGUI/FlatCAMGUI.py:5857 flatcamGUI/ObjectUI.py:679
-#: flatcamGUI/ObjectUI.py:1204
+#: flatcamGUI/FlatCAMGUI.py:5922 flatcamGUI/ObjectUI.py:740
+#: flatcamGUI/ObjectUI.py:1267
msgid "Spindle speed"
msgstr "Viteza motor"
-#: flatcamGUI/FlatCAMGUI.py:5860 flatcamGUI/ObjectUI.py:1207
+#: flatcamGUI/FlatCAMGUI.py:5925 flatcamGUI/ObjectUI.py:1270
msgid ""
"Speed of the spindle in RPM (optional).\n"
"If LASER postprocessor is used,\n"
@@ -8565,11 +8645,7 @@ msgstr ""
"Daca postprocesorul Laser este folosit,\n"
"valoarea să este puterea laserului."
-#: flatcamGUI/FlatCAMGUI.py:5889
-msgid "Duration"
-msgstr "Durată"
-
-#: flatcamGUI/FlatCAMGUI.py:5903 flatcamGUI/ObjectUI.py:1236
+#: flatcamGUI/FlatCAMGUI.py:5968 flatcamGUI/ObjectUI.py:1299
msgid ""
"The Postprocessor file that dictates\n"
"the Machine Code (like GCode, RML, HPGL) output."
@@ -8578,11 +8654,11 @@ msgstr ""
"codului masina CNC (GCode, RML, HPGL) care \n"
"mai apoi este salvat."
-#: flatcamGUI/FlatCAMGUI.py:5919
+#: flatcamGUI/FlatCAMGUI.py:5984
msgid "Geometry Adv. Options"
msgstr "Opțiuni Avans. Geometrie"
-#: flatcamGUI/FlatCAMGUI.py:5926
+#: flatcamGUI/FlatCAMGUI.py:5991
msgid ""
"Parameters to create a CNC Job object\n"
"tracing the contours of a Geometry object."
@@ -8590,7 +8666,7 @@ msgstr ""
"Parametrii folositi pentru a crea un obiect CNCJob,\n"
"urmărind contururile unui obiect tip Geometrie."
-#: flatcamGUI/FlatCAMGUI.py:5946
+#: flatcamGUI/FlatCAMGUI.py:6011
msgid ""
"Height of the tool just after starting the work.\n"
"Delete the value if you don't need this feature."
@@ -8598,11 +8674,11 @@ msgstr ""
"Înălţimea uneltei la care se gaseste la inceputul lucrului.\n"
"Lasa câmpul gol daca nu folosești aceasta."
-#: flatcamGUI/FlatCAMGUI.py:5964 flatcamGUI/ObjectUI.py:1178
+#: flatcamGUI/FlatCAMGUI.py:6029 flatcamGUI/ObjectUI.py:1241
msgid "Feed Rate Rapids"
msgstr "Feedrate rapizi"
-#: flatcamGUI/FlatCAMGUI.py:5966 flatcamGUI/ObjectUI.py:1180
+#: flatcamGUI/FlatCAMGUI.py:6031 flatcamGUI/ObjectUI.py:1243
msgid ""
"Cutting speed in the XY plane\n"
"(in units per minute).\n"
@@ -8615,11 +8691,11 @@ msgstr ""
"Este utila doar când se foloseşte cu un printer 3D Marlin,\n"
"pentru toate celelalte cazuri ignora acest parametru."
-#: flatcamGUI/FlatCAMGUI.py:5977 flatcamGUI/ObjectUI.py:1194
+#: flatcamGUI/FlatCAMGUI.py:6042 flatcamGUI/ObjectUI.py:1257
msgid "Re-cut 1st pt."
msgstr "Re-tăiere 1-ul pt."
-#: flatcamGUI/FlatCAMGUI.py:5979 flatcamGUI/ObjectUI.py:1196
+#: flatcamGUI/FlatCAMGUI.py:6044 flatcamGUI/ObjectUI.py:1259
msgid ""
"In order to remove possible\n"
"copper leftovers where first cut\n"
@@ -8631,15 +8707,11 @@ msgstr ""
"cu sfârşitul acesteia (este vorba de un contur), sunt eliminate\n"
"prin taierea peste acest punct."
-#: flatcamGUI/FlatCAMGUI.py:6006
-msgid "Fast Plunge"
-msgstr "Plonjare rapidă"
-
-#: flatcamGUI/FlatCAMGUI.py:6018
+#: flatcamGUI/FlatCAMGUI.py:6083
msgid "Seg. X size"
msgstr "Dim. seg X"
-#: flatcamGUI/FlatCAMGUI.py:6020
+#: flatcamGUI/FlatCAMGUI.py:6085
msgid ""
"The size of the trace segment on the X axis.\n"
"Useful for auto-leveling.\n"
@@ -8650,11 +8722,11 @@ msgstr ""
"O valoare de 0 inseamnaca nu se face segmentare\n"
"pe axa X."
-#: flatcamGUI/FlatCAMGUI.py:6029
+#: flatcamGUI/FlatCAMGUI.py:6094
msgid "Seg. Y size"
msgstr "Dim. seg Y"
-#: flatcamGUI/FlatCAMGUI.py:6031
+#: flatcamGUI/FlatCAMGUI.py:6096
msgid ""
"The size of the trace segment on the Y axis.\n"
"Useful for auto-leveling.\n"
@@ -8665,15 +8737,15 @@ msgstr ""
"O valoare de 0 inseamnaca nu se face segmentare\n"
"pe axa Y."
-#: flatcamGUI/FlatCAMGUI.py:6047
+#: flatcamGUI/FlatCAMGUI.py:6112
msgid "Geometry Editor"
msgstr "Editor Geometrii"
-#: flatcamGUI/FlatCAMGUI.py:6052
+#: flatcamGUI/FlatCAMGUI.py:6117
msgid "A list of Geometry Editor parameters."
msgstr "O lista de parametri ai Editorului de Geometrii."
-#: flatcamGUI/FlatCAMGUI.py:6062
+#: flatcamGUI/FlatCAMGUI.py:6127
msgid ""
"Set the number of selected geometry\n"
"items above which the utility geometry\n"
@@ -8687,20 +8759,20 @@ msgstr ""
"Creste performanta cand se muta un număr mai mare de \n"
"elemente geometrice."
-#: flatcamGUI/FlatCAMGUI.py:6081
+#: flatcamGUI/FlatCAMGUI.py:6146
msgid "CNC Job General"
msgstr "CNCJob General"
-#: flatcamGUI/FlatCAMGUI.py:6094 flatcamGUI/ObjectUI.py:875
-#: flatcamGUI/ObjectUI.py:1439
+#: flatcamGUI/FlatCAMGUI.py:6159 flatcamGUI/ObjectUI.py:938
+#: flatcamGUI/ObjectUI.py:1501
msgid "Plot Object"
msgstr "Afisează"
-#: flatcamGUI/FlatCAMGUI.py:6099
-msgid "Plot kind:"
-msgstr "Tip afișare:"
+#: flatcamGUI/FlatCAMGUI.py:6164 flatcamGUI/ObjectUI.py:1396
+msgid "Plot kind"
+msgstr "Tip afișare"
-#: flatcamGUI/FlatCAMGUI.py:6101 flatcamGUI/ObjectUI.py:1336
+#: flatcamGUI/FlatCAMGUI.py:6166 flatcamGUI/ObjectUI.py:1399
msgid ""
"This selects the kind of geometries on the canvas to plot.\n"
"Those can be either of type 'Travel' which means the moves\n"
@@ -8710,18 +8782,17 @@ msgstr ""
"Aici se poate selecta tipul de afișare a geometriilor.\n"
"Acestea pot fi:\n"
"- Voiaj -> miscarile deasupra materialului\n"
-"- Tăiere -> miscarile in material, tăiere\n"
-"- Amandoua"
+"- Tăiere -> miscarile in material, tăiere."
-#: flatcamGUI/FlatCAMGUI.py:6109 flatcamGUI/ObjectUI.py:1345
+#: flatcamGUI/FlatCAMGUI.py:6174 flatcamGUI/ObjectUI.py:1408
msgid "Travel"
msgstr "Voiaj"
-#: flatcamGUI/FlatCAMGUI.py:6118 flatcamGUI/ObjectUI.py:1349
+#: flatcamGUI/FlatCAMGUI.py:6183 flatcamGUI/ObjectUI.py:1412
msgid "Display Annotation"
msgstr "Afişează notații"
-#: flatcamGUI/FlatCAMGUI.py:6120 flatcamGUI/ObjectUI.py:1351
+#: flatcamGUI/FlatCAMGUI.py:6185 flatcamGUI/ObjectUI.py:1414
msgid ""
"This selects if to display text annotation on the plot.\n"
"When checked it will display numbers in order for each end\n"
@@ -8731,23 +8802,23 @@ msgstr ""
"Cand este selectat va afisa numerele in ordine pt fiecare\n"
"capat al liniilor de traversare."
-#: flatcamGUI/FlatCAMGUI.py:6132
+#: flatcamGUI/FlatCAMGUI.py:6197
msgid "Annotation Size"
msgstr "Dim. anotate"
-#: flatcamGUI/FlatCAMGUI.py:6134
+#: flatcamGUI/FlatCAMGUI.py:6199
msgid "The font size of the annotation text. In pixels."
msgstr "Dimensiunea fontului pt. textul cu notatii. In pixeli."
-#: flatcamGUI/FlatCAMGUI.py:6142
+#: flatcamGUI/FlatCAMGUI.py:6207
msgid "Annotation Color"
msgstr "Culoarea anotatii"
-#: flatcamGUI/FlatCAMGUI.py:6144
+#: flatcamGUI/FlatCAMGUI.py:6209
msgid "Set the font color for the annotation texts."
msgstr "Setează culoarea pentru textul cu anotatii."
-#: flatcamGUI/FlatCAMGUI.py:6167
+#: flatcamGUI/FlatCAMGUI.py:6232
msgid ""
"The number of circle steps for GCode \n"
"circle and arc shapes linear approximation."
@@ -8755,17 +8826,21 @@ msgstr ""
"Numărul de segmente utilizate pentru\n"
"aproximarea lineara a reprezentarilor GCodului circular."
-#: flatcamGUI/FlatCAMGUI.py:6177
+#: flatcamGUI/FlatCAMGUI.py:6240
+msgid "Travel dia"
+msgstr "Dia Deplasare"
+
+#: flatcamGUI/FlatCAMGUI.py:6242
msgid ""
-"Diameter of the tool to be\n"
+"The width of the travel lines to be\n"
"rendered in the plot."
-msgstr "Diametrul uneltei care să fie redat prin afișare."
+msgstr "Diametrul liniilor de deplasare care să fie redate prin afișare."
-#: flatcamGUI/FlatCAMGUI.py:6185
-msgid "Coords dec."
-msgstr "Coord. zec."
+#: flatcamGUI/FlatCAMGUI.py:6253
+msgid "Coordinates decimals"
+msgstr "Coord. zecimale"
-#: flatcamGUI/FlatCAMGUI.py:6187
+#: flatcamGUI/FlatCAMGUI.py:6255
msgid ""
"The number of decimals to be used for \n"
"the X, Y, Z coordinates in CNC code (GCODE, etc.)"
@@ -8773,11 +8848,11 @@ msgstr ""
"Numărul de zecimale care să fie folosit in \n"
"coordonatele X,Y,Z in codul CNC (GCode etc)."
-#: flatcamGUI/FlatCAMGUI.py:6195
-msgid "Feedrate dec."
-msgstr "Feedrate zec."
+#: flatcamGUI/FlatCAMGUI.py:6263
+msgid "Feedrate decimals"
+msgstr "Feedrate zecimale"
-#: flatcamGUI/FlatCAMGUI.py:6197
+#: flatcamGUI/FlatCAMGUI.py:6265
msgid ""
"The number of decimals to be used for \n"
"the Feedrate parameter in CNC code (GCODE, etc.)"
@@ -8785,16 +8860,40 @@ msgstr ""
"Numărul de zecimale care să fie folosit in \n"
"parametrul >Feedrate< in codul CNC (GCode etc)."
-#: flatcamGUI/FlatCAMGUI.py:6212
+#: flatcamGUI/FlatCAMGUI.py:6273
+msgid "Coordinates type"
+msgstr "Tip coordinate"
+
+#: flatcamGUI/FlatCAMGUI.py:6275
+msgid ""
+"The type of coordinates to be used in Gcode.\n"
+"Can be:\n"
+"- Absolute G90 -> the reference is the origin x=0, y=0\n"
+"- Incremental G91 -> the reference is the previous position"
+msgstr ""
+"Tipul de coordinate care să fie folosite in G-Code.\n"
+"Poate fi:\n"
+"- Absolut G90 -> referinta este originea x=0, y=0\n"
+"- Incrementator G91 -> referinta este pozitia anterioară"
+
+#: flatcamGUI/FlatCAMGUI.py:6281
+msgid "Absolute G90"
+msgstr "Absolut G90"
+
+#: flatcamGUI/FlatCAMGUI.py:6282
+msgid "Incremental G91"
+msgstr "Incrementator G91"
+
+#: flatcamGUI/FlatCAMGUI.py:6299
msgid "CNC Job Options"
msgstr "Opțiuni CNCJob"
-#: flatcamGUI/FlatCAMGUI.py:6215
+#: flatcamGUI/FlatCAMGUI.py:6302
msgid "Export G-Code"
msgstr "Exportă G-Code"
-#: flatcamGUI/FlatCAMGUI.py:6217 flatcamGUI/FlatCAMGUI.py:6258
-#: flatcamGUI/ObjectUI.py:1473
+#: flatcamGUI/FlatCAMGUI.py:6304 flatcamGUI/FlatCAMGUI.py:6345
+#: flatcamGUI/ObjectUI.py:1535
msgid ""
"Export and save G-Code to\n"
"make this object to a file."
@@ -8802,11 +8901,11 @@ msgstr ""
"Exportă și salvează codul G-Code intr-un fişier\n"
"care este salvat pe HDD."
-#: flatcamGUI/FlatCAMGUI.py:6223
+#: flatcamGUI/FlatCAMGUI.py:6310
msgid "Prepend to G-Code"
msgstr "Adaugă la inceputul G-Code"
-#: flatcamGUI/FlatCAMGUI.py:6225 flatcamGUI/ObjectUI.py:1481
+#: flatcamGUI/FlatCAMGUI.py:6312 flatcamGUI/ObjectUI.py:1543
msgid ""
"Type here any G-Code commands you would\n"
"like to add at the beginning of the G-Code file."
@@ -8814,11 +8913,11 @@ msgstr ""
"Adaugă aici orice comenzi G-Code care se dorește să fie\n"
"inserate la inceputul codului G-Code."
-#: flatcamGUI/FlatCAMGUI.py:6234
+#: flatcamGUI/FlatCAMGUI.py:6321
msgid "Append to G-Code"
msgstr "Adaugă la sfârşitul G-Code"
-#: flatcamGUI/FlatCAMGUI.py:6236 flatcamGUI/ObjectUI.py:1492
+#: flatcamGUI/FlatCAMGUI.py:6323 flatcamGUI/ObjectUI.py:1554
msgid ""
"Type here any G-Code commands you would\n"
"like to append to the generated file.\n"
@@ -8827,19 +8926,19 @@ msgstr ""
"Adaugă aici orice comenzi G-Code care se dorește să fie\n"
"inserate la sfârşitul codului G-Code."
-#: flatcamGUI/FlatCAMGUI.py:6253
+#: flatcamGUI/FlatCAMGUI.py:6340
msgid "CNC Job Adv. Options"
msgstr "Opțiuni Avans. CNCJob"
-#: flatcamGUI/FlatCAMGUI.py:6256 flatcamGUI/ObjectUI.py:1471
+#: flatcamGUI/FlatCAMGUI.py:6343 flatcamGUI/ObjectUI.py:1533
msgid "Export CNC Code"
msgstr "Exporta codul masina CNC"
-#: flatcamGUI/FlatCAMGUI.py:6264 flatcamGUI/ObjectUI.py:1509
+#: flatcamGUI/FlatCAMGUI.py:6351 flatcamGUI/ObjectUI.py:1571
msgid "Toolchange G-Code"
msgstr "G-Code pt schimb unealtă"
-#: flatcamGUI/FlatCAMGUI.py:6267 flatcamGUI/ObjectUI.py:1512
+#: flatcamGUI/FlatCAMGUI.py:6354 flatcamGUI/ObjectUI.py:1574
msgid ""
"Type here any G-Code commands you would\n"
"like to be executed when Toolchange event is encountered.\n"
@@ -8861,11 +8960,11 @@ msgstr ""
"'toolchange_custom'\n"
"in numele sau."
-#: flatcamGUI/FlatCAMGUI.py:6286 flatcamGUI/ObjectUI.py:1531
+#: flatcamGUI/FlatCAMGUI.py:6373 flatcamGUI/ObjectUI.py:1593
msgid "Use Toolchange Macro"
msgstr "Fol. Macro schimb unealtă"
-#: flatcamGUI/FlatCAMGUI.py:6288 flatcamGUI/ObjectUI.py:1533
+#: flatcamGUI/FlatCAMGUI.py:6375 flatcamGUI/ObjectUI.py:1595
msgid ""
"Check this box if you want to use\n"
"a Custom Toolchange GCode (macro)."
@@ -8873,7 +8972,7 @@ msgstr ""
"Bifează aici daca dorești să folosești Macro pentru\n"
"schimb unelte."
-#: flatcamGUI/FlatCAMGUI.py:6300 flatcamGUI/ObjectUI.py:1541
+#: flatcamGUI/FlatCAMGUI.py:6387 flatcamGUI/ObjectUI.py:1603
msgid ""
"A list of the FlatCAM variables that can be used\n"
"in the Toolchange event.\n"
@@ -8881,61 +8980,61 @@ msgid ""
msgstr ""
"O lista de variabile FlatCAM care se pot folosi in evenimentul \n"
"de schimb al uneltei (când se intalneste comanda M6).\n"
-"Este necesar să fie inconjurate de simbolul '%'."
+"Este necesar să fie inconjurate de simbolul '%'"
-#: flatcamGUI/FlatCAMGUI.py:6310 flatcamGUI/ObjectUI.py:1551
+#: flatcamGUI/FlatCAMGUI.py:6397 flatcamGUI/ObjectUI.py:1613
msgid "FlatCAM CNC parameters"
msgstr "Parametri FlatCAM CNC"
-#: flatcamGUI/FlatCAMGUI.py:6311 flatcamGUI/ObjectUI.py:1552
+#: flatcamGUI/FlatCAMGUI.py:6398 flatcamGUI/ObjectUI.py:1614
msgid "tool = tool number"
msgstr "tool = numărul uneltei"
-#: flatcamGUI/FlatCAMGUI.py:6312 flatcamGUI/ObjectUI.py:1553
+#: flatcamGUI/FlatCAMGUI.py:6399 flatcamGUI/ObjectUI.py:1615
msgid "tooldia = tool diameter"
msgstr "tooldia = dimaetrul uneltei"
-#: flatcamGUI/FlatCAMGUI.py:6313 flatcamGUI/ObjectUI.py:1554
+#: flatcamGUI/FlatCAMGUI.py:6400 flatcamGUI/ObjectUI.py:1616
msgid "t_drills = for Excellon, total number of drills"
msgstr "t_drills = pt Excellom, numărul total de operațiuni găurire"
-#: flatcamGUI/FlatCAMGUI.py:6314 flatcamGUI/ObjectUI.py:1555
+#: flatcamGUI/FlatCAMGUI.py:6401 flatcamGUI/ObjectUI.py:1617
msgid "x_toolchange = X coord for Toolchange"
msgstr "x_toolchange = coord. X pt schimb unealtă"
-#: flatcamGUI/FlatCAMGUI.py:6315 flatcamGUI/ObjectUI.py:1556
+#: flatcamGUI/FlatCAMGUI.py:6402 flatcamGUI/ObjectUI.py:1618
msgid "y_toolchange = Y coord for Toolchange"
msgstr "y_toolchange = coord. Y pt schimb unealtă"
-#: flatcamGUI/FlatCAMGUI.py:6316 flatcamGUI/ObjectUI.py:1557
+#: flatcamGUI/FlatCAMGUI.py:6403 flatcamGUI/ObjectUI.py:1619
msgid "z_toolchange = Z coord for Toolchange"
msgstr "z_toolchange = coord. Z pt schimb unealtă"
-#: flatcamGUI/FlatCAMGUI.py:6317
+#: flatcamGUI/FlatCAMGUI.py:6404
msgid "z_cut = Z depth for the cut"
msgstr "z_cut = Z adâncimea de tăiere"
-#: flatcamGUI/FlatCAMGUI.py:6318
+#: flatcamGUI/FlatCAMGUI.py:6405
msgid "z_move = Z height for travel"
msgstr "z_move = Z Înălţimea deplasare"
-#: flatcamGUI/FlatCAMGUI.py:6319 flatcamGUI/ObjectUI.py:1560
+#: flatcamGUI/FlatCAMGUI.py:6406 flatcamGUI/ObjectUI.py:1622
msgid "z_depthpercut = the step value for multidepth cut"
msgstr "z_depthpercut = pasul pentru taierea progresiva"
-#: flatcamGUI/FlatCAMGUI.py:6320 flatcamGUI/ObjectUI.py:1561
+#: flatcamGUI/FlatCAMGUI.py:6407 flatcamGUI/ObjectUI.py:1623
msgid "spindlesspeed = the value for the spindle speed"
msgstr "spindlesspeed = valoarea viteza motor"
-#: flatcamGUI/FlatCAMGUI.py:6322 flatcamGUI/ObjectUI.py:1562
+#: flatcamGUI/FlatCAMGUI.py:6409 flatcamGUI/ObjectUI.py:1624
msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
msgstr "dwelltime = durata de asteptare ca motorul să ajunga la turatia setată"
-#: flatcamGUI/FlatCAMGUI.py:6343
+#: flatcamGUI/FlatCAMGUI.py:6430
msgid "NCC Tool Options"
msgstr "Opțiuni Unealta NCC"
-#: flatcamGUI/FlatCAMGUI.py:6348 flatcamGUI/ObjectUI.py:384
+#: flatcamGUI/FlatCAMGUI.py:6435 flatcamGUI/ObjectUI.py:447
msgid ""
"Create a Geometry object with\n"
"toolpaths to cut all non-copper regions."
@@ -8944,19 +9043,78 @@ msgstr ""
"care să curete de cupru toate zonele unde se dorește să nu \n"
"fie cupru."
-#: flatcamGUI/FlatCAMGUI.py:6356 flatcamGUI/FlatCAMGUI.py:7211
+#: flatcamGUI/FlatCAMGUI.py:6443 flatcamGUI/FlatCAMGUI.py:7397
msgid "Tools dia"
msgstr "Dia unealtă"
-#: flatcamGUI/FlatCAMGUI.py:6364 flatcamGUI/FlatCAMGUI.py:6694
-#: flatcamTools/ToolNonCopperClear.py:137 flatcamTools/ToolPaint.py:136
-msgid "Tool order"
-msgstr "Ordine unelte:"
+#: flatcamGUI/FlatCAMGUI.py:6452 flatcamTools/ToolNonCopperClear.py:195
+msgid "Tool Type"
+msgstr "Tip Unealtă"
-#: flatcamGUI/FlatCAMGUI.py:6365 flatcamGUI/FlatCAMGUI.py:6375
-#: flatcamGUI/FlatCAMGUI.py:6695 flatcamGUI/FlatCAMGUI.py:6705
-#: flatcamTools/ToolNonCopperClear.py:138
-#: flatcamTools/ToolNonCopperClear.py:148 flatcamTools/ToolPaint.py:137
+#: flatcamGUI/FlatCAMGUI.py:6454 flatcamGUI/FlatCAMGUI.py:6462
+#: flatcamTools/ToolNonCopperClear.py:197
+#: flatcamTools/ToolNonCopperClear.py:205
+msgid ""
+"Default tool type:\n"
+"- 'V-shape'\n"
+"- Circular"
+msgstr ""
+"Tipul de unealtă default:\n"
+"- 'Forma-V'\n"
+"- Circular"
+
+#: flatcamGUI/FlatCAMGUI.py:6459 flatcamTools/ToolNonCopperClear.py:202
+msgid "V-shape"
+msgstr "Forma-V"
+
+#: flatcamGUI/FlatCAMGUI.py:6471 flatcamGUI/ObjectUI.py:1109
+#: flatcamTools/ToolNonCopperClear.py:220
+msgid "V-Tip Dia"
+msgstr "V-dia"
+
+#: flatcamGUI/FlatCAMGUI.py:6473 flatcamGUI/ObjectUI.py:1112
+#: flatcamTools/ToolNonCopperClear.py:222
+msgid "The tip diameter for V-Shape Tool"
+msgstr ""
+"Diametrul la vârf al uneltei tip V-Shape.\n"
+"Forma in V"
+
+#: flatcamGUI/FlatCAMGUI.py:6480 flatcamGUI/ObjectUI.py:1120
+#: flatcamTools/ToolNonCopperClear.py:227
+msgid "V-Tip Angle"
+msgstr "V-unghi"
+
+#: flatcamGUI/FlatCAMGUI.py:6482 flatcamGUI/ObjectUI.py:1123
+#: flatcamTools/ToolNonCopperClear.py:229
+msgid ""
+"The tip angle for V-Shape Tool.\n"
+"In degree."
+msgstr ""
+"Unghiul la vârf pentru unealta tip V-Shape. \n"
+"In grade."
+
+#: flatcamGUI/FlatCAMGUI.py:6492 flatcamGUI/FlatCAMGUI.py:6500
+#: flatcamTools/ToolNonCopperClear.py:149
+#: flatcamTools/ToolNonCopperClear.py:157
+msgid ""
+"Milling type when the selected tool is of type: 'iso_op':\n"
+"- climb / best for precision milling and to reduce tool usage\n"
+"- conventional / useful when there is no backlash compensation"
+msgstr ""
+"Tipul de frezare cand unealta selectată este de tipul: 'iso_op':\n"
+"- urcare -> potrivit pentru frezare de precizie și pt a reduce uzura "
+"uneltei\n"
+"- conventional -> pentru cazul când nu exista o compensare a 'backlash-ului'"
+
+#: flatcamGUI/FlatCAMGUI.py:6509 flatcamGUI/FlatCAMGUI.py:6869
+#: flatcamTools/ToolNonCopperClear.py:163 flatcamTools/ToolPaint.py:136
+msgid "Tool order"
+msgstr "Ordine unelte"
+
+#: flatcamGUI/FlatCAMGUI.py:6510 flatcamGUI/FlatCAMGUI.py:6520
+#: flatcamGUI/FlatCAMGUI.py:6870 flatcamGUI/FlatCAMGUI.py:6880
+#: flatcamTools/ToolNonCopperClear.py:164
+#: flatcamTools/ToolNonCopperClear.py:174 flatcamTools/ToolPaint.py:137
#: flatcamTools/ToolPaint.py:147
msgid ""
"This set the way that the tools in the tools table are used.\n"
@@ -8976,22 +9134,27 @@ msgstr ""
"AVERTIZARE: folosirea prelucrării 'resturi' va seta automat ordonarea\n"
"în sens invers și va dezactiva acest control."
-#: flatcamGUI/FlatCAMGUI.py:6373 flatcamGUI/FlatCAMGUI.py:6703
-#: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:145
+#: flatcamGUI/FlatCAMGUI.py:6518 flatcamGUI/FlatCAMGUI.py:6878
+#: flatcamTools/ToolNonCopperClear.py:172 flatcamTools/ToolPaint.py:145
msgid "Forward"
msgstr "Înainte"
-#: flatcamGUI/FlatCAMGUI.py:6374 flatcamGUI/FlatCAMGUI.py:6704
-#: flatcamTools/ToolNonCopperClear.py:147 flatcamTools/ToolPaint.py:146
+#: flatcamGUI/FlatCAMGUI.py:6519 flatcamGUI/FlatCAMGUI.py:6879
+#: flatcamTools/ToolNonCopperClear.py:173 flatcamTools/ToolPaint.py:146
msgid "Reverse"
msgstr "Înapoi"
-#: flatcamGUI/FlatCAMGUI.py:6384 flatcamGUI/FlatCAMGUI.py:6715
-#: flatcamTools/ToolPaint.py:205
-msgid "Overlap Rate"
-msgstr "Rată suprapunere"
+#: flatcamGUI/FlatCAMGUI.py:6532 flatcamGUI/FlatCAMGUI.py:6537
+#: flatcamTools/ToolNonCopperClear.py:271
+#: flatcamTools/ToolNonCopperClear.py:276
+msgid ""
+"Depth of cut into material. Negative value.\n"
+"In FlatCAM units."
+msgstr ""
+"Adancimea de tăiere in material. Valoare negative.\n"
+"In unitătile FlatCAM."
-#: flatcamGUI/FlatCAMGUI.py:6386 flatcamTools/ToolNonCopperClear.py:203
+#: flatcamGUI/FlatCAMGUI.py:6547 flatcamTools/ToolNonCopperClear.py:285
#, python-format
msgid ""
"How much (fraction) of the tool width to overlap each tool pass.\n"
@@ -9017,23 +9180,12 @@ msgstr ""
"Valori mari= procesare lenta cat și o execuţie la fel de lenta a PCB-ului,\n"
"datorita numărului mai mare de treceri-tăiere."
-#: flatcamGUI/FlatCAMGUI.py:6400 flatcamGUI/FlatCAMGUI.py:6548
-#: flatcamGUI/FlatCAMGUI.py:6732 flatcamTools/ToolNonCopperClear.py:217
-#: flatcamTools/ToolPaint.py:222
-msgid "Margin"
-msgstr "Margine"
-
-#: flatcamGUI/FlatCAMGUI.py:6402 flatcamTools/ToolNonCopperClear.py:219
+#: flatcamGUI/FlatCAMGUI.py:6564 flatcamTools/ToolNonCopperClear.py:301
msgid "Bounding box margin."
msgstr "Marginea pentru forma înconjurătoare."
-#: flatcamGUI/FlatCAMGUI.py:6409 flatcamGUI/FlatCAMGUI.py:6743
-#: flatcamTools/ToolNonCopperClear.py:226 flatcamTools/ToolPaint.py:233
-msgid "Method"
-msgstr "Metodă"
-
-#: flatcamGUI/FlatCAMGUI.py:6411 flatcamGUI/FlatCAMGUI.py:6745
-#: flatcamTools/ToolNonCopperClear.py:228 flatcamTools/ToolPaint.py:235
+#: flatcamGUI/FlatCAMGUI.py:6573 flatcamGUI/FlatCAMGUI.py:6920
+#: flatcamTools/ToolNonCopperClear.py:310
msgid ""
"Algorithm for non-copper clearing:
Standard: Fixed step inwards."
"
Seed-based: Outwards from seed.
Line-based: Parallel "
@@ -9043,22 +9195,22 @@ msgstr ""
"
Punct-samanta: De la punctul samanta, spre expterior.
Linii "
"drepte: Linii paralele."
-#: flatcamGUI/FlatCAMGUI.py:6425 flatcamGUI/FlatCAMGUI.py:6759
-#: flatcamTools/ToolNonCopperClear.py:242 flatcamTools/ToolPaint.py:249
+#: flatcamGUI/FlatCAMGUI.py:6587 flatcamGUI/FlatCAMGUI.py:6934
+#: flatcamTools/ToolNonCopperClear.py:324 flatcamTools/ToolPaint.py:249
msgid "Connect"
msgstr "Conectează"
-#: flatcamGUI/FlatCAMGUI.py:6434 flatcamGUI/FlatCAMGUI.py:6769
-#: flatcamTools/ToolNonCopperClear.py:251 flatcamTools/ToolPaint.py:258
+#: flatcamGUI/FlatCAMGUI.py:6597 flatcamGUI/FlatCAMGUI.py:6944
+#: flatcamTools/ToolNonCopperClear.py:333 flatcamTools/ToolPaint.py:258
msgid "Contour"
msgstr "Contur"
-#: flatcamGUI/FlatCAMGUI.py:6443 flatcamTools/ToolNonCopperClear.py:260
+#: flatcamGUI/FlatCAMGUI.py:6607 flatcamTools/ToolNonCopperClear.py:342
#: flatcamTools/ToolPaint.py:267
msgid "Rest M."
msgstr "Rest M."
-#: flatcamGUI/FlatCAMGUI.py:6445 flatcamTools/ToolNonCopperClear.py:262
+#: flatcamGUI/FlatCAMGUI.py:6609 flatcamTools/ToolNonCopperClear.py:344
msgid ""
"If checked, use 'rest machining'.\n"
"Basically it will clear copper outside PCB features,\n"
@@ -9076,9 +9228,9 @@ msgstr ""
"final. Aceasta deaorece unele unelte nu vor putea genera geometrie.\n"
"Daca nu este bifat, foloseşte algoritmul standard."
-#: flatcamGUI/FlatCAMGUI.py:6460 flatcamGUI/FlatCAMGUI.py:6472
-#: flatcamTools/ToolNonCopperClear.py:277
-#: flatcamTools/ToolNonCopperClear.py:289
+#: flatcamGUI/FlatCAMGUI.py:6624 flatcamGUI/FlatCAMGUI.py:6636
+#: flatcamTools/ToolNonCopperClear.py:359
+#: flatcamTools/ToolNonCopperClear.py:371
msgid ""
"If used, it will add an offset to the copper features.\n"
"The copper clearing will finish to a distance\n"
@@ -9090,28 +9242,27 @@ msgstr ""
"de traseele de cupru.\n"
"Valoarea poate fi cuprinsă între 0 și 10 unități FlatCAM."
-#: flatcamGUI/FlatCAMGUI.py:6470 flatcamTools/ToolNonCopperClear.py:287
+#: flatcamGUI/FlatCAMGUI.py:6634 flatcamTools/ToolNonCopperClear.py:369
msgid "Offset value"
msgstr "Valoare Ofset"
-#: flatcamGUI/FlatCAMGUI.py:6487 flatcamTools/ToolNonCopperClear.py:313
+#: flatcamGUI/FlatCAMGUI.py:6651 flatcamTools/ToolNonCopperClear.py:395
msgid "Itself"
msgstr "Însuşi"
-#: flatcamGUI/FlatCAMGUI.py:6488 flatcamGUI/FlatCAMGUI.py:6791
+#: flatcamGUI/FlatCAMGUI.py:6652 flatcamGUI/FlatCAMGUI.py:6965
msgid "Area"
msgstr "Aria"
-#: flatcamGUI/FlatCAMGUI.py:6489
-#| msgid "Ref."
+#: flatcamGUI/FlatCAMGUI.py:6653
msgid "Ref"
msgstr "Ref"
-#: flatcamGUI/FlatCAMGUI.py:6490
+#: flatcamGUI/FlatCAMGUI.py:6654
msgid "Reference"
msgstr "Referinţă"
-#: flatcamGUI/FlatCAMGUI.py:6492 flatcamTools/ToolNonCopperClear.py:319
+#: flatcamGUI/FlatCAMGUI.py:6656 flatcamTools/ToolNonCopperClear.py:401
msgid ""
"- 'Itself' - the non copper clearing extent\n"
"is based on the object that is copper cleared.\n"
@@ -9131,11 +9282,31 @@ msgstr ""
"- „Obiect de referință” - va face o curățare fără cupru în zona\n"
"specificată de un alt obiect."
-#: flatcamGUI/FlatCAMGUI.py:6510
+#: flatcamGUI/FlatCAMGUI.py:6667 flatcamGUI/FlatCAMGUI.py:6973
+msgid "Normal"
+msgstr "Normal"
+
+#: flatcamGUI/FlatCAMGUI.py:6668 flatcamGUI/FlatCAMGUI.py:6974
+msgid "Progressive"
+msgstr "Progresiv"
+
+#: flatcamGUI/FlatCAMGUI.py:6669
+msgid "NCC Plotting"
+msgstr "Afisare NCC"
+
+#: flatcamGUI/FlatCAMGUI.py:6671
+msgid ""
+"- 'Normal' - normal plotting, done at the end of the NCC job\n"
+"- 'Progressive' - after each shape is generated it will be plotted."
+msgstr ""
+"- 'Normal' - afisare normală, efectuată la sfarsitul activitătii NCC\n"
+"- 'Progresiv' - forma se afisează imediat ce a fost generată."
+
+#: flatcamGUI/FlatCAMGUI.py:6685
msgid "Cutout Tool Options"
msgstr "Opțiuni Unealta Decupare"
-#: flatcamGUI/FlatCAMGUI.py:6515 flatcamGUI/ObjectUI.py:400
+#: flatcamGUI/FlatCAMGUI.py:6690 flatcamGUI/ObjectUI.py:463
msgid ""
"Create toolpaths to cut around\n"
"the PCB and separate it from\n"
@@ -9145,7 +9316,7 @@ msgstr ""
"lasand punţi pentru a separa PCB-ul de \n"
"placa din care a fost taiat."
-#: flatcamGUI/FlatCAMGUI.py:6526 flatcamTools/ToolCutOut.py:94
+#: flatcamGUI/FlatCAMGUI.py:6701 flatcamTools/ToolCutOut.py:93
msgid ""
"Diameter of the tool used to cutout\n"
"the PCB shape out of the surrounding material."
@@ -9153,11 +9324,11 @@ msgstr ""
"Diametrul uneltei folosita pt decuparea\n"
"PCB-ului din materialului inconjurator."
-#: flatcamGUI/FlatCAMGUI.py:6534 flatcamTools/ToolCutOut.py:77
+#: flatcamGUI/FlatCAMGUI.py:6709 flatcamTools/ToolCutOut.py:76
msgid "Obj kind"
msgstr "Tipul de obiect"
-#: flatcamGUI/FlatCAMGUI.py:6536 flatcamTools/ToolCutOut.py:79
+#: flatcamGUI/FlatCAMGUI.py:6711 flatcamTools/ToolCutOut.py:78
msgid ""
"Choice of what kind the object we want to cutout is.
- Single: "
"contain a single PCB Gerber outline object.
- Panel: a panel PCB "
@@ -9169,16 +9340,16 @@ msgstr ""
"tip panel, care este făcut\n"
"din mai multe contururi PCB."
-#: flatcamGUI/FlatCAMGUI.py:6543 flatcamGUI/FlatCAMGUI.py:6790
-#: flatcamTools/ToolCutOut.py:85
+#: flatcamGUI/FlatCAMGUI.py:6718 flatcamGUI/FlatCAMGUI.py:6964
+#: flatcamTools/ToolCutOut.py:84
msgid "Single"
msgstr "Unic"
-#: flatcamGUI/FlatCAMGUI.py:6544 flatcamTools/ToolCutOut.py:86
+#: flatcamGUI/FlatCAMGUI.py:6719 flatcamTools/ToolCutOut.py:85
msgid "Panel"
msgstr "Panel"
-#: flatcamGUI/FlatCAMGUI.py:6550 flatcamTools/ToolCutOut.py:103
+#: flatcamGUI/FlatCAMGUI.py:6725 flatcamTools/ToolCutOut.py:102
msgid ""
"Margin over bounds. A positive value here\n"
"will make the cutout of the PCB further from\n"
@@ -9186,13 +9357,13 @@ msgid ""
msgstr ""
"Marginea (zona de siguranţă). O val. pozitivă\n"
"va face decuparea distanțat cu aceasta valoare \n"
-"fata de PCB-ul efectiv."
+"fata de PCB-ul efectiv"
-#: flatcamGUI/FlatCAMGUI.py:6558
+#: flatcamGUI/FlatCAMGUI.py:6733
msgid "Gap size"
msgstr "Dim. punte"
-#: flatcamGUI/FlatCAMGUI.py:6560 flatcamTools/ToolCutOut.py:113
+#: flatcamGUI/FlatCAMGUI.py:6735 flatcamTools/ToolCutOut.py:112
msgid ""
"The size of the bridge gaps in the cutout\n"
"used to keep the board connected to\n"
@@ -9203,11 +9374,11 @@ msgstr ""
"in a mentine ataşat PCB-ul la materialul de unde \n"
"este decupat."
-#: flatcamGUI/FlatCAMGUI.py:6569 flatcamTools/ToolCutOut.py:149
+#: flatcamGUI/FlatCAMGUI.py:6744 flatcamTools/ToolCutOut.py:148
msgid "Gaps"
msgstr "Punţi"
-#: flatcamGUI/FlatCAMGUI.py:6571
+#: flatcamGUI/FlatCAMGUI.py:6746
msgid ""
"Number of gaps used for the cutout.\n"
"There can be maximum 8 bridges/gaps.\n"
@@ -9231,11 +9402,11 @@ msgstr ""
"- 2tb = 2* sus - 2* jos\n"
"- 8 = 2* stânga - 2* dreapta - 2* sus - 2* jos"
-#: flatcamGUI/FlatCAMGUI.py:6593 flatcamTools/ToolCutOut.py:130
+#: flatcamGUI/FlatCAMGUI.py:6768 flatcamTools/ToolCutOut.py:129
msgid "Convex Sh."
msgstr "Formă Conv"
-#: flatcamGUI/FlatCAMGUI.py:6595 flatcamTools/ToolCutOut.py:132
+#: flatcamGUI/FlatCAMGUI.py:6770 flatcamTools/ToolCutOut.py:131
msgid ""
"Create a convex shape surrounding the entire PCB.\n"
"Used only if the source object type is Gerber."
@@ -9244,11 +9415,11 @@ msgstr ""
"tot PCB-ul. Forma sa este convexa.\n"
"Se foloseste doar daca obiectul sursă este de tip Gerber."
-#: flatcamGUI/FlatCAMGUI.py:6609
+#: flatcamGUI/FlatCAMGUI.py:6784
msgid "2Sided Tool Options"
msgstr "Opțiuni Unealta 2Fețe"
-#: flatcamGUI/FlatCAMGUI.py:6614
+#: flatcamGUI/FlatCAMGUI.py:6789
msgid ""
"A tool to help in creating a double sided\n"
"PCB using alignment holes."
@@ -9256,36 +9427,36 @@ msgstr ""
"O unealtă care ajuta in crearea de PCB-uri cu 2 fețe\n"
"folosind găuri de aliniere."
-#: flatcamGUI/FlatCAMGUI.py:6624 flatcamTools/ToolDblSided.py:234
+#: flatcamGUI/FlatCAMGUI.py:6799 flatcamTools/ToolDblSided.py:234
msgid "Drill dia"
msgstr "Dia gaură"
-#: flatcamGUI/FlatCAMGUI.py:6626 flatcamTools/ToolDblSided.py:225
+#: flatcamGUI/FlatCAMGUI.py:6801 flatcamTools/ToolDblSided.py:225
#: flatcamTools/ToolDblSided.py:236
msgid "Diameter of the drill for the alignment holes."
msgstr "Diametrul găurii pentru găurile de aliniere."
-#: flatcamGUI/FlatCAMGUI.py:6635 flatcamTools/ToolDblSided.py:120
+#: flatcamGUI/FlatCAMGUI.py:6810 flatcamTools/ToolDblSided.py:120
msgid "Mirror Axis:"
msgstr "Axe oglindire:"
-#: flatcamGUI/FlatCAMGUI.py:6637 flatcamTools/ToolDblSided.py:122
+#: flatcamGUI/FlatCAMGUI.py:6812 flatcamTools/ToolDblSided.py:122
msgid "Mirror vertically (X) or horizontally (Y)."
msgstr "Oglindește vertical (X) sau orizontal (Y)."
-#: flatcamGUI/FlatCAMGUI.py:6646 flatcamTools/ToolDblSided.py:131
+#: flatcamGUI/FlatCAMGUI.py:6821 flatcamTools/ToolDblSided.py:131
msgid "Point"
msgstr "Punct"
-#: flatcamGUI/FlatCAMGUI.py:6647 flatcamTools/ToolDblSided.py:132
+#: flatcamGUI/FlatCAMGUI.py:6822 flatcamTools/ToolDblSided.py:132
msgid "Box"
msgstr "Forma"
-#: flatcamGUI/FlatCAMGUI.py:6648
+#: flatcamGUI/FlatCAMGUI.py:6823
msgid "Axis Ref"
msgstr "Axa de ref."
-#: flatcamGUI/FlatCAMGUI.py:6650 flatcamTools/ToolDblSided.py:135
+#: flatcamGUI/FlatCAMGUI.py:6825 flatcamTools/ToolDblSided.py:135
msgid ""
"The axis should pass through a point or cut\n"
" a specified box (in a FlatCAM object) through \n"
@@ -9294,15 +9465,15 @@ msgstr ""
"Axa de referinţă ar trebui să treacă printr-un punct ori să strabata\n"
" o forma (obiect FlatCAM) prin mijloc."
-#: flatcamGUI/FlatCAMGUI.py:6666
+#: flatcamGUI/FlatCAMGUI.py:6841
msgid "Paint Tool Options"
msgstr "Opțiuni Unealta Paint"
-#: flatcamGUI/FlatCAMGUI.py:6671
+#: flatcamGUI/FlatCAMGUI.py:6846
msgid "Parameters:"
msgstr "Parametri:"
-#: flatcamGUI/FlatCAMGUI.py:6673 flatcamGUI/ObjectUI.py:1288
+#: flatcamGUI/FlatCAMGUI.py:6848 flatcamGUI/ObjectUI.py:1351
msgid ""
"Creates tool paths to cover the\n"
"whole area of a polygon (remove\n"
@@ -9315,11 +9486,12 @@ msgstr ""
"singur poligon se va cere să faceti click pe poligonul\n"
"dorit."
-#: flatcamGUI/FlatCAMGUI.py:6779 flatcamTools/ToolPaint.py:282
+#: flatcamGUI/FlatCAMGUI.py:6954 flatcamTools/ToolPaint.py:282
msgid "Selection"
msgstr "Selecţie"
-#: flatcamGUI/FlatCAMGUI.py:6781 flatcamTools/ToolPaint.py:300
+#: flatcamGUI/FlatCAMGUI.py:6956 flatcamTools/ToolPaint.py:284
+#: flatcamTools/ToolPaint.py:300
msgid ""
"How to select Polygons to be painted.\n"
"\n"
@@ -9341,15 +9513,27 @@ msgstr ""
"- „Obiect de referință” - va face o curățare fără cupru în zona\n"
"specificată de un alt obiect."
-#: flatcamGUI/FlatCAMGUI.py:6793
+#: flatcamGUI/FlatCAMGUI.py:6967
msgid "Ref."
msgstr "Ref."
-#: flatcamGUI/FlatCAMGUI.py:6805
+#: flatcamGUI/FlatCAMGUI.py:6975
+msgid "Paint Plotting"
+msgstr "Afisare Paint"
+
+#: flatcamGUI/FlatCAMGUI.py:6977
+msgid ""
+"- 'Normal' - normal plotting, done at the end of the Paint job\n"
+"- 'Progressive' - after each shape is generated it will be plotted."
+msgstr ""
+"- 'Normal' - afisare normală, efectuată la sfarsitul activitătii Paint\n"
+"- 'Progresiv' - forma se afisează imediat ce a fost generată."
+
+#: flatcamGUI/FlatCAMGUI.py:6991
msgid "Film Tool Options"
msgstr "Opțiuni Unealta Film"
-#: flatcamGUI/FlatCAMGUI.py:6810
+#: flatcamGUI/FlatCAMGUI.py:6996
msgid ""
"Create a PCB film from a Gerber or Geometry\n"
"FlatCAM object.\n"
@@ -9358,11 +9542,11 @@ msgstr ""
"Crează un film PCB dintr-un obiect Gerber sau tip Geometrie.\n"
"Fişierul este salvat in format SVG."
-#: flatcamGUI/FlatCAMGUI.py:6821 flatcamTools/ToolFilm.py:116
-msgid "Film Type:"
-msgstr "Tip film:"
+#: flatcamGUI/FlatCAMGUI.py:7007
+msgid "Film Type"
+msgstr "Tip film"
-#: flatcamGUI/FlatCAMGUI.py:6823 flatcamTools/ToolFilm.py:118
+#: flatcamGUI/FlatCAMGUI.py:7009 flatcamTools/ToolFilm.py:118
msgid ""
"Generate a Positive black film or a Negative film.\n"
"Positive means that it will print the features\n"
@@ -9376,11 +9560,11 @@ msgstr ""
"Negativ = traseele vor fi albe pe un fundal negru.\n"
"Formatul fişierului pt filmul salvat este SVG."
-#: flatcamGUI/FlatCAMGUI.py:6834 flatcamTools/ToolFilm.py:130
+#: flatcamGUI/FlatCAMGUI.py:7020 flatcamTools/ToolFilm.py:130
msgid "Border"
msgstr "Bordură"
-#: flatcamGUI/FlatCAMGUI.py:6836 flatcamTools/ToolFilm.py:132
+#: flatcamGUI/FlatCAMGUI.py:7022 flatcamTools/ToolFilm.py:132
msgid ""
"Specify a border around the object.\n"
"Only for negative film.\n"
@@ -9391,17 +9575,17 @@ msgid ""
"white color like the rest and which may confound with the\n"
"surroundings if not for this border."
msgstr ""
-"Specifica o bordura de jur imprejurul obiectului.\n"
+"Specifică o bordură de jur imprejurul obiectului.\n"
"Doar pt filmele negative.\n"
-"Ajuta daca folosim in Obiect Forma acelasi obiect ca in Obiect Film.\n"
-"Va crea o bara solida neagra in jurul printului efectiv permitand o\n"
-"delimitare exacta"
+"Ajută dacă folosim in Obiect Forma aceluiasi obiect ca in Obiect Film.\n"
+"Va crea o bara solidă neagră in jurul printului efectiv permitand o\n"
+"delimitare exactă."
-#: flatcamGUI/FlatCAMGUI.py:6849 flatcamTools/ToolFilm.py:144
+#: flatcamGUI/FlatCAMGUI.py:7035 flatcamTools/ToolFilm.py:144
msgid "Scale Stroke"
msgstr "Scalează"
-#: flatcamGUI/FlatCAMGUI.py:6851 flatcamTools/ToolFilm.py:146
+#: flatcamGUI/FlatCAMGUI.py:7037 flatcamTools/ToolFilm.py:146
msgid ""
"Scale the line stroke thickness of each feature in the SVG file.\n"
"It means that the line that envelope each SVG feature will be thicker or "
@@ -9411,11 +9595,11 @@ msgstr ""
"Scalează grosimea conturului fiecarui element din fişierul SVG.\n"
"Elementele mai mici vor fi afectate mai mult."
-#: flatcamGUI/FlatCAMGUI.py:6866
+#: flatcamGUI/FlatCAMGUI.py:7052
msgid "Panelize Tool Options"
msgstr "Opțiuni Unealta Panelizare"
-#: flatcamGUI/FlatCAMGUI.py:6871
+#: flatcamGUI/FlatCAMGUI.py:7057
msgid ""
"Create an object that contains an array of (x, y) elements,\n"
"each element is a copy of the source object spaced\n"
@@ -9425,11 +9609,11 @@ msgstr ""
"unde fiecare element este o copie a obiectului sursa, separat la o\n"
"distanţă X, Y unul de celalalt."
-#: flatcamGUI/FlatCAMGUI.py:6882 flatcamTools/ToolPanelize.py:147
+#: flatcamGUI/FlatCAMGUI.py:7068 flatcamTools/ToolPanelize.py:147
msgid "Spacing cols"
msgstr "Sep. coloane"
-#: flatcamGUI/FlatCAMGUI.py:6884 flatcamTools/ToolPanelize.py:149
+#: flatcamGUI/FlatCAMGUI.py:7070 flatcamTools/ToolPanelize.py:149
msgid ""
"Spacing between columns of the desired panel.\n"
"In current units."
@@ -9437,11 +9621,11 @@ msgstr ""
"Spatiul de separare între coloane.\n"
"In unitatile curente."
-#: flatcamGUI/FlatCAMGUI.py:6892 flatcamTools/ToolPanelize.py:156
+#: flatcamGUI/FlatCAMGUI.py:7078 flatcamTools/ToolPanelize.py:156
msgid "Spacing rows"
msgstr "Sep. linii"
-#: flatcamGUI/FlatCAMGUI.py:6894 flatcamTools/ToolPanelize.py:158
+#: flatcamGUI/FlatCAMGUI.py:7080 flatcamTools/ToolPanelize.py:158
msgid ""
"Spacing between rows of the desired panel.\n"
"In current units."
@@ -9449,35 +9633,35 @@ msgstr ""
"Spatiul de separare între linii.\n"
"In unitatile curente."
-#: flatcamGUI/FlatCAMGUI.py:6902 flatcamTools/ToolPanelize.py:165
+#: flatcamGUI/FlatCAMGUI.py:7088 flatcamTools/ToolPanelize.py:165
msgid "Columns"
msgstr "Coloane"
-#: flatcamGUI/FlatCAMGUI.py:6904 flatcamTools/ToolPanelize.py:167
+#: flatcamGUI/FlatCAMGUI.py:7090 flatcamTools/ToolPanelize.py:167
msgid "Number of columns of the desired panel"
-msgstr "Numărul de coloane ale panel-ului dorit."
+msgstr "Numărul de coloane ale panel-ului dorit"
-#: flatcamGUI/FlatCAMGUI.py:6911 flatcamTools/ToolPanelize.py:173
+#: flatcamGUI/FlatCAMGUI.py:7097 flatcamTools/ToolPanelize.py:173
msgid "Rows"
msgstr "Linii"
-#: flatcamGUI/FlatCAMGUI.py:6913 flatcamTools/ToolPanelize.py:175
+#: flatcamGUI/FlatCAMGUI.py:7099 flatcamTools/ToolPanelize.py:175
msgid "Number of rows of the desired panel"
-msgstr "Numărul de linii ale panel-ului dorit."
+msgstr "Numărul de linii ale panel-ului dorit"
-#: flatcamGUI/FlatCAMGUI.py:6919 flatcamTools/ToolPanelize.py:181
+#: flatcamGUI/FlatCAMGUI.py:7105 flatcamTools/ToolPanelize.py:181
msgid "Gerber"
msgstr "Gerber"
-#: flatcamGUI/FlatCAMGUI.py:6920 flatcamTools/ToolPanelize.py:182
+#: flatcamGUI/FlatCAMGUI.py:7106 flatcamTools/ToolPanelize.py:182
msgid "Geo"
msgstr "Geo"
-#: flatcamGUI/FlatCAMGUI.py:6921 flatcamTools/ToolPanelize.py:183
+#: flatcamGUI/FlatCAMGUI.py:7107 flatcamTools/ToolPanelize.py:183
msgid "Panel Type"
msgstr "Tip panel"
-#: flatcamGUI/FlatCAMGUI.py:6923
+#: flatcamGUI/FlatCAMGUI.py:7109
msgid ""
"Choose the type of object for the panel object:\n"
"- Gerber\n"
@@ -9487,11 +9671,11 @@ msgstr ""
"- Gerber\n"
"- Geometrie"
-#: flatcamGUI/FlatCAMGUI.py:6932
+#: flatcamGUI/FlatCAMGUI.py:7118
msgid "Constrain within"
msgstr "Constrange"
-#: flatcamGUI/FlatCAMGUI.py:6934 flatcamTools/ToolPanelize.py:195
+#: flatcamGUI/FlatCAMGUI.py:7120 flatcamTools/ToolPanelize.py:195
msgid ""
"Area define by DX and DY within to constrain the panel.\n"
"DX and DY values are in current units.\n"
@@ -9505,11 +9689,11 @@ msgstr ""
"panelul final va contine numai acel număr de linii/coloane care se inscrie\n"
"complet in aria desemnata."
-#: flatcamGUI/FlatCAMGUI.py:6943 flatcamTools/ToolPanelize.py:204
+#: flatcamGUI/FlatCAMGUI.py:7129 flatcamTools/ToolPanelize.py:204
msgid "Width (DX)"
msgstr "Lătime (Dx)"
-#: flatcamGUI/FlatCAMGUI.py:6945 flatcamTools/ToolPanelize.py:206
+#: flatcamGUI/FlatCAMGUI.py:7131 flatcamTools/ToolPanelize.py:206
msgid ""
"The width (DX) within which the panel must fit.\n"
"In current units."
@@ -9517,11 +9701,11 @@ msgstr ""
"Lăţimea (Dx) in care panelul trebuie să se inscrie.\n"
"In unitati curente."
-#: flatcamGUI/FlatCAMGUI.py:6952 flatcamTools/ToolPanelize.py:212
+#: flatcamGUI/FlatCAMGUI.py:7138 flatcamTools/ToolPanelize.py:212
msgid "Height (DY)"
msgstr "Inăltime (Dy)"
-#: flatcamGUI/FlatCAMGUI.py:6954 flatcamTools/ToolPanelize.py:214
+#: flatcamGUI/FlatCAMGUI.py:7140 flatcamTools/ToolPanelize.py:214
msgid ""
"The height (DY)within which the panel must fit.\n"
"In current units."
@@ -9529,15 +9713,15 @@ msgstr ""
"Înălţimea (Dy) in care panelul trebuie să se inscrie.\n"
"In unitati curente."
-#: flatcamGUI/FlatCAMGUI.py:6968
+#: flatcamGUI/FlatCAMGUI.py:7154
msgid "Calculators Tool Options"
msgstr "Opțiuni Unealta Calculatoare"
-#: flatcamGUI/FlatCAMGUI.py:6971 flatcamTools/ToolCalculators.py:25
+#: flatcamGUI/FlatCAMGUI.py:7157 flatcamTools/ToolCalculators.py:25
msgid "V-Shape Tool Calculator"
msgstr "Calculator Unealta V-Shape"
-#: flatcamGUI/FlatCAMGUI.py:6973
+#: flatcamGUI/FlatCAMGUI.py:7159
msgid ""
"Calculate the tool diameter for a given V-shape tool,\n"
"having the tip diameter, tip angle and\n"
@@ -9547,11 +9731,11 @@ msgstr ""
"avand diametrul vârfului și unghiul la vârf cat și\n"
"adâncimea de tăiere, ca parametri."
-#: flatcamGUI/FlatCAMGUI.py:6984 flatcamTools/ToolCalculators.py:92
+#: flatcamGUI/FlatCAMGUI.py:7170 flatcamTools/ToolCalculators.py:92
msgid "Tip Diameter"
msgstr "Dia vârf"
-#: flatcamGUI/FlatCAMGUI.py:6986 flatcamTools/ToolCalculators.py:97
+#: flatcamGUI/FlatCAMGUI.py:7172 flatcamTools/ToolCalculators.py:97
msgid ""
"This is the tool tip diameter.\n"
"It is specified by manufacturer."
@@ -9559,11 +9743,11 @@ msgstr ""
"Acesta este diametrul la vârf al uneltei.\n"
"Este specificat de producator."
-#: flatcamGUI/FlatCAMGUI.py:6994 flatcamTools/ToolCalculators.py:100
+#: flatcamGUI/FlatCAMGUI.py:7180 flatcamTools/ToolCalculators.py:100
msgid "Tip Angle"
msgstr "V-Unghi"
-#: flatcamGUI/FlatCAMGUI.py:6996
+#: flatcamGUI/FlatCAMGUI.py:7182
msgid ""
"This is the angle on the tip of the tool.\n"
"It is specified by manufacturer."
@@ -9571,7 +9755,7 @@ msgstr ""
"Acesta este unghiul la vârf al uneltei.\n"
"Este specificat de producator."
-#: flatcamGUI/FlatCAMGUI.py:7006
+#: flatcamGUI/FlatCAMGUI.py:7192
msgid ""
"This is depth to cut into material.\n"
"In the CNCJob object it is the CutZ parameter."
@@ -9579,11 +9763,11 @@ msgstr ""
"Aceasta este adâncimea la care se taie in material.\n"
"In obiectul CNCJob este parametrul >Z tăiere<."
-#: flatcamGUI/FlatCAMGUI.py:7013 flatcamTools/ToolCalculators.py:27
+#: flatcamGUI/FlatCAMGUI.py:7199 flatcamTools/ToolCalculators.py:27
msgid "ElectroPlating Calculator"
msgstr "Calculator ElectroPlacare"
-#: flatcamGUI/FlatCAMGUI.py:7015 flatcamTools/ToolCalculators.py:149
+#: flatcamGUI/FlatCAMGUI.py:7201 flatcamTools/ToolCalculators.py:149
msgid ""
"This calculator is useful for those who plate the via/pad/drill holes,\n"
"using a method like grahite ink or calcium hypophosphite ink or palladium "
@@ -9593,33 +9777,33 @@ msgstr ""
"folosind o metoda cum ar fi:\n"
"- cerneala grafitate (carbon)\n"
"- clorura paladiu\n"
-"- hipofosfit de calciu"
+"- hipofosfit de calciu."
-#: flatcamGUI/FlatCAMGUI.py:7025 flatcamTools/ToolCalculators.py:158
+#: flatcamGUI/FlatCAMGUI.py:7211 flatcamTools/ToolCalculators.py:158
msgid "Board Length"
msgstr "Lung. plăcii"
-#: flatcamGUI/FlatCAMGUI.py:7027 flatcamTools/ToolCalculators.py:162
+#: flatcamGUI/FlatCAMGUI.py:7213 flatcamTools/ToolCalculators.py:162
msgid "This is the board length. In centimeters."
msgstr ""
"Aceasta este lungimea PCB-ului.\n"
-"In centimetri. "
+"In centimetri."
-#: flatcamGUI/FlatCAMGUI.py:7033 flatcamTools/ToolCalculators.py:164
+#: flatcamGUI/FlatCAMGUI.py:7219 flatcamTools/ToolCalculators.py:164
msgid "Board Width"
msgstr "Lăt. plăcii"
-#: flatcamGUI/FlatCAMGUI.py:7035 flatcamTools/ToolCalculators.py:168
+#: flatcamGUI/FlatCAMGUI.py:7221 flatcamTools/ToolCalculators.py:168
msgid "This is the board width.In centimeters."
msgstr ""
"Aceasta este lăţimea PCB-ului.\n"
-"In centimetri. "
+"In centimetri."
-#: flatcamGUI/FlatCAMGUI.py:7040 flatcamTools/ToolCalculators.py:170
+#: flatcamGUI/FlatCAMGUI.py:7226 flatcamTools/ToolCalculators.py:170
msgid "Current Density"
msgstr "Densitate I"
-#: flatcamGUI/FlatCAMGUI.py:7043 flatcamTools/ToolCalculators.py:174
+#: flatcamGUI/FlatCAMGUI.py:7229 flatcamTools/ToolCalculators.py:174
msgid ""
"Current density to pass through the board. \n"
"In Amps per Square Feet ASF."
@@ -9627,11 +9811,11 @@ msgstr ""
"Densitatea de curent care să treaca prin placa.\n"
"In ASF (amperi pe picior la patrat)."
-#: flatcamGUI/FlatCAMGUI.py:7049 flatcamTools/ToolCalculators.py:177
+#: flatcamGUI/FlatCAMGUI.py:7235 flatcamTools/ToolCalculators.py:177
msgid "Copper Growth"
msgstr "Grosime Cu"
-#: flatcamGUI/FlatCAMGUI.py:7052 flatcamTools/ToolCalculators.py:181
+#: flatcamGUI/FlatCAMGUI.py:7238 flatcamTools/ToolCalculators.py:181
msgid ""
"How thick the copper growth is intended to be.\n"
"In microns."
@@ -9639,52 +9823,47 @@ msgstr ""
"Cat de gros se dorește să fie stratul de cupru depus.\n"
"In microni."
-#: flatcamGUI/FlatCAMGUI.py:7065
+#: flatcamGUI/FlatCAMGUI.py:7251
msgid "Transform Tool Options"
msgstr "Opțiuni Unealta Transformare"
-#: flatcamGUI/FlatCAMGUI.py:7070
+#: flatcamGUI/FlatCAMGUI.py:7256
msgid ""
"Various transformations that can be applied\n"
"on a FlatCAM object."
msgstr ""
"Diverse transformări care pot fi aplicate\n"
-"asupra unui obiect FlatCAM. Cum ar fi:\n"
-"- rotaţie,\n"
-"- scalare,\n"
-"- ofset,\n"
-"- deformare\n"
-"- oglindire"
+"asupra unui obiect FlatCAM."
-#: flatcamGUI/FlatCAMGUI.py:7080
+#: flatcamGUI/FlatCAMGUI.py:7266
msgid "Rotate Angle"
msgstr "Unghi Rotaţie"
-#: flatcamGUI/FlatCAMGUI.py:7092 flatcamTools/ToolTransform.py:107
+#: flatcamGUI/FlatCAMGUI.py:7278 flatcamTools/ToolTransform.py:107
msgid "Skew_X angle"
msgstr "Unghi Deform_X"
-#: flatcamGUI/FlatCAMGUI.py:7102 flatcamTools/ToolTransform.py:125
+#: flatcamGUI/FlatCAMGUI.py:7288 flatcamTools/ToolTransform.py:125
msgid "Skew_Y angle"
msgstr "Unghi Deform_Y"
-#: flatcamGUI/FlatCAMGUI.py:7112 flatcamTools/ToolTransform.py:164
+#: flatcamGUI/FlatCAMGUI.py:7298 flatcamTools/ToolTransform.py:164
msgid "Scale_X factor"
msgstr "Factor Scal_X"
-#: flatcamGUI/FlatCAMGUI.py:7114 flatcamTools/ToolTransform.py:166
+#: flatcamGUI/FlatCAMGUI.py:7300 flatcamTools/ToolTransform.py:166
msgid "Factor for scaling on X axis."
msgstr "Factor de scalare pe axa X."
-#: flatcamGUI/FlatCAMGUI.py:7121 flatcamTools/ToolTransform.py:181
+#: flatcamGUI/FlatCAMGUI.py:7307 flatcamTools/ToolTransform.py:181
msgid "Scale_Y factor"
msgstr "Factor Scal_Y"
-#: flatcamGUI/FlatCAMGUI.py:7123 flatcamTools/ToolTransform.py:183
+#: flatcamGUI/FlatCAMGUI.py:7309 flatcamTools/ToolTransform.py:183
msgid "Factor for scaling on Y axis."
msgstr "Factor de scalare pe axa Y."
-#: flatcamGUI/FlatCAMGUI.py:7131 flatcamTools/ToolTransform.py:202
+#: flatcamGUI/FlatCAMGUI.py:7317 flatcamTools/ToolTransform.py:202
msgid ""
"Scale the selected object(s)\n"
"using the Scale_X factor for both axis."
@@ -9692,7 +9871,7 @@ msgstr ""
"Scalează obiectele selectate folosind\n"
"Factor Scal_X pentru ambele axe."
-#: flatcamGUI/FlatCAMGUI.py:7139 flatcamTools/ToolTransform.py:211
+#: flatcamGUI/FlatCAMGUI.py:7325 flatcamTools/ToolTransform.py:211
msgid ""
"Scale the selected object(s)\n"
"using the origin reference when checked,\n"
@@ -9705,27 +9884,27 @@ msgstr ""
"centrul formei inconjuatoare care cuprinde\n"
"toate obiectele selectate."
-#: flatcamGUI/FlatCAMGUI.py:7148 flatcamTools/ToolTransform.py:239
+#: flatcamGUI/FlatCAMGUI.py:7334 flatcamTools/ToolTransform.py:239
msgid "Offset_X val"
msgstr "Ofset_X"
-#: flatcamGUI/FlatCAMGUI.py:7150 flatcamTools/ToolTransform.py:241
+#: flatcamGUI/FlatCAMGUI.py:7336 flatcamTools/ToolTransform.py:241
msgid "Distance to offset on X axis. In current units."
msgstr "Distanta la care se face ofset pe axa X. In unitatile curente."
-#: flatcamGUI/FlatCAMGUI.py:7157 flatcamTools/ToolTransform.py:256
+#: flatcamGUI/FlatCAMGUI.py:7343 flatcamTools/ToolTransform.py:256
msgid "Offset_Y val"
msgstr "Ofset_Y"
-#: flatcamGUI/FlatCAMGUI.py:7159 flatcamTools/ToolTransform.py:258
+#: flatcamGUI/FlatCAMGUI.py:7345 flatcamTools/ToolTransform.py:258
msgid "Distance to offset on Y axis. In current units."
msgstr "Distanta la care se face ofset pe axa Y. In unitatile curente."
-#: flatcamGUI/FlatCAMGUI.py:7165 flatcamTools/ToolTransform.py:313
+#: flatcamGUI/FlatCAMGUI.py:7351 flatcamTools/ToolTransform.py:313
msgid "Mirror Reference"
msgstr "Referinţă Oglindire"
-#: flatcamGUI/FlatCAMGUI.py:7167 flatcamTools/ToolTransform.py:315
+#: flatcamGUI/FlatCAMGUI.py:7353 flatcamTools/ToolTransform.py:315
msgid ""
"Flip the selected object(s)\n"
"around the point in Point Entry Field.\n"
@@ -9741,18 +9920,18 @@ msgstr ""
"de referinţă.\n"
"\n"
"Coordonatele punctului se pot obtine prin click pe \n"
-"canvas simultan cu apasarea tastei SHIFT.\n"
-"Apoi apasa pe butonul >Adaugă< pentru a insera\n"
+"canvas simultan cu apăsarea tastei SHIFT.\n"
+"Apoi apasă pe butonul >Adaugă< pentru a insera\n"
"coordonatele.\n"
"Alternativ se pot introduce coordonatele manual,\n"
"in forma (x, y).\n"
-"La final apasa butonul de oglindire pe axa dorita. "
+"La final apasă butonul de oglindire pe axa dorită"
-#: flatcamGUI/FlatCAMGUI.py:7178 flatcamTools/ToolTransform.py:326
+#: flatcamGUI/FlatCAMGUI.py:7364 flatcamTools/ToolTransform.py:326
msgid " Mirror Ref. Point"
-msgstr "Pt. Ref. Oglindire"
+msgstr " Pt. Ref. Oglindire"
-#: flatcamGUI/FlatCAMGUI.py:7180 flatcamTools/ToolTransform.py:328
+#: flatcamGUI/FlatCAMGUI.py:7366 flatcamTools/ToolTransform.py:328
msgid ""
"Coordinates in format (x, y) used as reference for mirroring.\n"
"The 'x' in (x, y) will be used when using Flip on X and\n"
@@ -9761,13 +9940,13 @@ msgstr ""
"Coordonatele in format (x, y) ale punctului de referinţă pentru\n"
"oglindire.\n"
"X din (x,y) se va folosi când se face oglindirea pe axa X\n"
-"Y din (x,y) se va folosi când se face oglindirea pe axa Y."
+"Y din (x,y) se va folosi când se face oglindirea pe axa Y si"
-#: flatcamGUI/FlatCAMGUI.py:7197
+#: flatcamGUI/FlatCAMGUI.py:7383
msgid "SolderPaste Tool Options"
msgstr "Opțiuni Unealta Pasta Fludor"
-#: flatcamGUI/FlatCAMGUI.py:7202
+#: flatcamGUI/FlatCAMGUI.py:7388
msgid ""
"A tool to create GCode for dispensing\n"
"solder paste onto a PCB."
@@ -9775,49 +9954,49 @@ msgstr ""
"O unealtă care crează cod G-Code pentru dispensarea de pastă de fludor\n"
"pe padurile unui PCB."
-#: flatcamGUI/FlatCAMGUI.py:7213
+#: flatcamGUI/FlatCAMGUI.py:7399
msgid "Diameters of nozzle tools, separated by ','"
msgstr "Diametrele uneltelor (nozzle), separate prin virgula."
-#: flatcamGUI/FlatCAMGUI.py:7220
+#: flatcamGUI/FlatCAMGUI.py:7406
msgid "New Nozzle Dia"
msgstr "Dia nou"
-#: flatcamGUI/FlatCAMGUI.py:7222 flatcamTools/ToolSolderPaste.py:103
+#: flatcamGUI/FlatCAMGUI.py:7408 flatcamTools/ToolSolderPaste.py:103
msgid "Diameter for the new Nozzle tool to add in the Tool Table"
msgstr ""
"Valoarea pentru diametrul unei noi unelte (nozzle) pentru adaugare in Tabela "
"de Unelte"
-#: flatcamGUI/FlatCAMGUI.py:7230 flatcamTools/ToolSolderPaste.py:166
+#: flatcamGUI/FlatCAMGUI.py:7416 flatcamTools/ToolSolderPaste.py:166
msgid "Z Dispense Start"
msgstr "Z start disp."
-#: flatcamGUI/FlatCAMGUI.py:7232 flatcamTools/ToolSolderPaste.py:168
+#: flatcamGUI/FlatCAMGUI.py:7418 flatcamTools/ToolSolderPaste.py:168
msgid "The height (Z) when solder paste dispensing starts."
msgstr "Înălţimea (Z) când incepe dispensarea de pastă de fludor."
-#: flatcamGUI/FlatCAMGUI.py:7239 flatcamTools/ToolSolderPaste.py:174
+#: flatcamGUI/FlatCAMGUI.py:7425 flatcamTools/ToolSolderPaste.py:174
msgid "Z Dispense"
msgstr "Z disp."
-#: flatcamGUI/FlatCAMGUI.py:7241 flatcamTools/ToolSolderPaste.py:176
+#: flatcamGUI/FlatCAMGUI.py:7427 flatcamTools/ToolSolderPaste.py:176
msgid "The height (Z) when doing solder paste dispensing."
msgstr "Înălţimea (Z) in timp ce se face dispensarea de pastă de fludor."
-#: flatcamGUI/FlatCAMGUI.py:7248 flatcamTools/ToolSolderPaste.py:182
+#: flatcamGUI/FlatCAMGUI.py:7434 flatcamTools/ToolSolderPaste.py:182
msgid "Z Dispense Stop"
msgstr "Z stop disp."
-#: flatcamGUI/FlatCAMGUI.py:7250 flatcamTools/ToolSolderPaste.py:184
+#: flatcamGUI/FlatCAMGUI.py:7436 flatcamTools/ToolSolderPaste.py:184
msgid "The height (Z) when solder paste dispensing stops."
msgstr "Înălţimea (Z) când se opreste dispensarea de pastă de fludor."
-#: flatcamGUI/FlatCAMGUI.py:7257 flatcamTools/ToolSolderPaste.py:190
+#: flatcamGUI/FlatCAMGUI.py:7443 flatcamTools/ToolSolderPaste.py:190
msgid "Z Travel"
msgstr "Z deplasare"
-#: flatcamGUI/FlatCAMGUI.py:7259 flatcamTools/ToolSolderPaste.py:192
+#: flatcamGUI/FlatCAMGUI.py:7445 flatcamTools/ToolSolderPaste.py:192
msgid ""
"The height (Z) for travel between pads\n"
"(without dispensing solder paste)."
@@ -9825,19 +10004,19 @@ msgstr ""
"Înălţimea (Z) când se face deplasare între pad-uri.\n"
"(fără dispensare de pastă de fludor)."
-#: flatcamGUI/FlatCAMGUI.py:7267 flatcamTools/ToolSolderPaste.py:199
+#: flatcamGUI/FlatCAMGUI.py:7453 flatcamTools/ToolSolderPaste.py:199
msgid "Z Toolchange"
msgstr "Z schimb. unealtă"
-#: flatcamGUI/FlatCAMGUI.py:7269 flatcamTools/ToolSolderPaste.py:201
+#: flatcamGUI/FlatCAMGUI.py:7455 flatcamTools/ToolSolderPaste.py:201
msgid "The height (Z) for tool (nozzle) change."
msgstr "Înălţimea (Z) când se schimbă unealta (nozzle-ul)."
-#: flatcamGUI/FlatCAMGUI.py:7276 flatcamTools/ToolSolderPaste.py:207
+#: flatcamGUI/FlatCAMGUI.py:7462 flatcamTools/ToolSolderPaste.py:207
msgid "Toolchange X-Y"
msgstr "X,Y schimb. unealtă"
-#: flatcamGUI/FlatCAMGUI.py:7278 flatcamTools/ToolSolderPaste.py:209
+#: flatcamGUI/FlatCAMGUI.py:7464 flatcamTools/ToolSolderPaste.py:209
msgid ""
"The X,Y location for tool (nozzle) change.\n"
"The format is (x, y) where x and y are real numbers."
@@ -9845,30 +10024,30 @@ msgstr ""
"Coordonatele X, Y pentru schimbarea uneltei (nozzle).\n"
"Formatul este (x,y) unde x și y sunt numere Reale."
-#: flatcamGUI/FlatCAMGUI.py:7286 flatcamTools/ToolSolderPaste.py:216
+#: flatcamGUI/FlatCAMGUI.py:7472 flatcamTools/ToolSolderPaste.py:216
msgid "Feedrate X-Y"
msgstr "Feedrate X-Y"
-#: flatcamGUI/FlatCAMGUI.py:7288 flatcamTools/ToolSolderPaste.py:218
+#: flatcamGUI/FlatCAMGUI.py:7474 flatcamTools/ToolSolderPaste.py:218
msgid "Feedrate (speed) while moving on the X-Y plane."
msgstr "Viteza de deplasare a uneltei când se deplasează in planul X-Y."
-#: flatcamGUI/FlatCAMGUI.py:7295 flatcamTools/ToolSolderPaste.py:224
+#: flatcamGUI/FlatCAMGUI.py:7481 flatcamTools/ToolSolderPaste.py:224
msgid "Feedrate Z"
msgstr "Feedrate Z"
-#: flatcamGUI/FlatCAMGUI.py:7297 flatcamTools/ToolSolderPaste.py:226
+#: flatcamGUI/FlatCAMGUI.py:7483 flatcamTools/ToolSolderPaste.py:226
msgid ""
"Feedrate (speed) while moving vertically\n"
"(on Z plane)."
msgstr ""
"Viteza de deplasare a uneltei când se misca in plan vertical (planul Z)."
-#: flatcamGUI/FlatCAMGUI.py:7305 flatcamTools/ToolSolderPaste.py:233
+#: flatcamGUI/FlatCAMGUI.py:7491 flatcamTools/ToolSolderPaste.py:233
msgid "Feedrate Z Dispense"
msgstr "Feedrate Z disp."
-#: flatcamGUI/FlatCAMGUI.py:7307
+#: flatcamGUI/FlatCAMGUI.py:7493
msgid ""
"Feedrate (speed) while moving up vertically\n"
"to Dispense position (on Z plane)."
@@ -9876,11 +10055,11 @@ msgstr ""
"Viteza de deplasare la mișcarea pe verticala spre\n"
"poziţia de dispensare (in planul Z)."
-#: flatcamGUI/FlatCAMGUI.py:7315 flatcamTools/ToolSolderPaste.py:242
+#: flatcamGUI/FlatCAMGUI.py:7501 flatcamTools/ToolSolderPaste.py:242
msgid "Spindle Speed FWD"
msgstr "Viteza motor inainte"
-#: flatcamGUI/FlatCAMGUI.py:7317 flatcamTools/ToolSolderPaste.py:244
+#: flatcamGUI/FlatCAMGUI.py:7503 flatcamTools/ToolSolderPaste.py:244
msgid ""
"The dispenser speed while pushing solder paste\n"
"through the dispenser nozzle."
@@ -9888,19 +10067,19 @@ msgstr ""
"Viteza motorului de dispensare in timp ce impinge pastă de fludor\n"
"prin orificiul uneltei de dispensare."
-#: flatcamGUI/FlatCAMGUI.py:7325 flatcamTools/ToolSolderPaste.py:251
+#: flatcamGUI/FlatCAMGUI.py:7511 flatcamTools/ToolSolderPaste.py:251
msgid "Dwell FWD"
msgstr "Pauza FWD"
-#: flatcamGUI/FlatCAMGUI.py:7327 flatcamTools/ToolSolderPaste.py:253
+#: flatcamGUI/FlatCAMGUI.py:7513 flatcamTools/ToolSolderPaste.py:253
msgid "Pause after solder dispensing."
msgstr "Pauza dupa dispensarea de pastă de fludor."
-#: flatcamGUI/FlatCAMGUI.py:7334 flatcamTools/ToolSolderPaste.py:259
+#: flatcamGUI/FlatCAMGUI.py:7520 flatcamTools/ToolSolderPaste.py:259
msgid "Spindle Speed REV"
msgstr "Viteza motor inapoi"
-#: flatcamGUI/FlatCAMGUI.py:7336 flatcamTools/ToolSolderPaste.py:261
+#: flatcamGUI/FlatCAMGUI.py:7522 flatcamTools/ToolSolderPaste.py:261
msgid ""
"The dispenser speed while retracting solder paste\n"
"through the dispenser nozzle."
@@ -9908,11 +10087,11 @@ msgstr ""
"Viteza motorului de dispensare in timp ce retrage pasta de fludor\n"
"prin orificiul uneltei de dispensare."
-#: flatcamGUI/FlatCAMGUI.py:7344 flatcamTools/ToolSolderPaste.py:268
+#: flatcamGUI/FlatCAMGUI.py:7530 flatcamTools/ToolSolderPaste.py:268
msgid "Dwell REV"
msgstr "Pauza REV"
-#: flatcamGUI/FlatCAMGUI.py:7346 flatcamTools/ToolSolderPaste.py:270
+#: flatcamGUI/FlatCAMGUI.py:7532 flatcamTools/ToolSolderPaste.py:270
msgid ""
"Pause after solder paste dispenser retracted,\n"
"to allow pressure equilibrium."
@@ -9920,20 +10099,20 @@ msgstr ""
"Pauza dupa ce pasta de fludor a fost retrasă,\n"
"necesară pt a ajunge la un echilibru al presiunilor."
-#: flatcamGUI/FlatCAMGUI.py:7353 flatcamGUI/ObjectUI.py:1234
+#: flatcamGUI/FlatCAMGUI.py:7539 flatcamGUI/ObjectUI.py:1297
#: flatcamTools/ToolSolderPaste.py:276
msgid "PostProcessor"
msgstr "Postprocesor"
-#: flatcamGUI/FlatCAMGUI.py:7355 flatcamTools/ToolSolderPaste.py:278
+#: flatcamGUI/FlatCAMGUI.py:7541 flatcamTools/ToolSolderPaste.py:278
msgid "Files that control the GCode generation."
msgstr "Fişiere care controlează generarea codului G-Code."
-#: flatcamGUI/FlatCAMGUI.py:7370
+#: flatcamGUI/FlatCAMGUI.py:7556
msgid "Substractor Tool Options"
msgstr "Opțiuni Unealta Substracţie"
-#: flatcamGUI/FlatCAMGUI.py:7375
+#: flatcamGUI/FlatCAMGUI.py:7561
msgid ""
"A tool to substract one Gerber or Geometry object\n"
"from another of the same type."
@@ -9941,26 +10120,65 @@ msgstr ""
"O unealtă pentru scăderea unui obiect Gerber sau Geometry\n"
"din altul de același tip."
-#: flatcamGUI/FlatCAMGUI.py:7380 flatcamTools/ToolSub.py:135
+#: flatcamGUI/FlatCAMGUI.py:7566 flatcamTools/ToolSub.py:135
msgid "Close paths"
msgstr "Închide căile"
-#: flatcamGUI/FlatCAMGUI.py:7381 flatcamTools/ToolSub.py:136
+#: flatcamGUI/FlatCAMGUI.py:7567 flatcamTools/ToolSub.py:136
msgid ""
"Checking this will close the paths cut by the Geometry substractor object."
msgstr ""
"Verificând aceasta, se vor închide căile tăiate de obiectul tăietor de tip "
"Geometrie."
-#: flatcamGUI/FlatCAMGUI.py:7407 flatcamGUI/FlatCAMGUI.py:7413
+#: flatcamGUI/FlatCAMGUI.py:7578
+msgid "Excellon File associations"
+msgstr "Asocieri fisiere Excellon"
+
+#: flatcamGUI/FlatCAMGUI.py:7581 flatcamGUI/FlatCAMGUI.py:7614
+#: flatcamGUI/FlatCAMGUI.py:7647
+msgid "Extensions list"
+msgstr "Lista de extensii"
+
+#: flatcamGUI/FlatCAMGUI.py:7583 flatcamGUI/FlatCAMGUI.py:7616
+#: flatcamGUI/FlatCAMGUI.py:7649
+msgid ""
+"List of file extensions to be\n"
+"associated with FlatCAM."
+msgstr ""
+"Listă de extensii fisiere care să fie\n"
+"associate cu FlatCAM."
+
+#: flatcamGUI/FlatCAMGUI.py:7597 flatcamGUI/FlatCAMGUI.py:7630
+#: flatcamGUI/FlatCAMGUI.py:7662
+msgid ""
+"Apply the file associations between\n"
+"FlatCAM and the files with above extensions.\n"
+"They will be active after next logon.\n"
+"This work only in Windows."
+msgstr ""
+"Aplică asocierea de fisiere intre\n"
+"FlatCAM si fisierele cu extensiile de mai sus.\n"
+"Vor fi active după următorul login.\n"
+"Functionează numai pt Windows."
+
+#: flatcamGUI/FlatCAMGUI.py:7611
+msgid "GCode File associations"
+msgstr "Asocierile de fisiere G-Code"
+
+#: flatcamGUI/FlatCAMGUI.py:7644
+msgid "Gerber File associations"
+msgstr "Asocierile de fisiere Gerber"
+
+#: flatcamGUI/FlatCAMGUI.py:7691 flatcamGUI/FlatCAMGUI.py:7697
msgid "Idle."
msgstr "Inactiv."
-#: flatcamGUI/FlatCAMGUI.py:7437
+#: flatcamGUI/FlatCAMGUI.py:7722
msgid "Application started ..."
msgstr "Aplicaţia a pornit ..."
-#: flatcamGUI/FlatCAMGUI.py:7438
+#: flatcamGUI/FlatCAMGUI.py:7723
msgid "Hello!"
msgstr "Bună!"
@@ -9978,13 +10196,13 @@ msgid ""
"Edit -> Preferences -> General and check:\n"
"'APP. LEVEL' radio button."
msgstr ""
-"Modul Baza este potrivit pt incepatori. Multi parametri sunt\n"
+"Modul de Bază este potrivit pt incepatori. Multi parametri sunt\n"
"ascunsi de user in acest mod.\n"
"Modul Avansat face disponibili toti parametrii programului.\n"
"\n"
"Pt a schimba modul de lucru al aplicaţiei mergi in:\n"
"Edit -> Preferințe -> General și bifează:\n"
-"butonul radio: >Nivel App<"
+"butonul radio: >Nivel App<."
#: flatcamGUI/ObjectUI.py:81
msgid "Change the size of the object."
@@ -10031,8 +10249,8 @@ msgstr "Efectuează operația de Ofset."
msgid "Gerber Object"
msgstr "Obiect Gerber"
-#: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:515
-#: flatcamGUI/ObjectUI.py:837 flatcamGUI/ObjectUI.py:1361
+#: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:574
+#: flatcamGUI/ObjectUI.py:900 flatcamGUI/ObjectUI.py:1423
msgid "Name"
msgstr "Nume"
@@ -10063,7 +10281,7 @@ msgstr ""
msgid "Mark the aperture instances on canvas."
msgstr "Marchează aperturile pe canvas."
-#: flatcamGUI/ObjectUI.py:261
+#: flatcamGUI/ObjectUI.py:266
msgid ""
"Diameter of the cutting tool.\n"
"If you want to have an isolation path\n"
@@ -10076,11 +10294,54 @@ msgstr ""
"in interiorul poligonului Gerber (traseu), foloseşte\n"
"o valoare negativă pt acest parametru."
-#: flatcamGUI/ObjectUI.py:323
+#: flatcamGUI/ObjectUI.py:324
+msgid "Except"
+msgstr "Exceptie"
+
+#: flatcamGUI/ObjectUI.py:325
+msgid ""
+"When the isolation geometry is generated,\n"
+"by checking this, the area of the object bellow\n"
+"will be subtracted from the isolation geometry."
+msgstr ""
+"Cand un obiect de geometrie tip Izolare este creat,\n"
+"prin bifarea aici, aria obiectului de mai jos va fi\n"
+"scăzută din geometrie de tip Izolare."
+
+#: flatcamGUI/ObjectUI.py:350 flatcamTools/ToolCutOut.py:53
+#: flatcamTools/ToolNonCopperClear.py:69 flatcamTools/ToolPaint.py:68
+msgid "Obj Type"
+msgstr "Tip obiect"
+
+#: flatcamGUI/ObjectUI.py:352
+msgid ""
+"Specify the type of object to be excepted from isolation.\n"
+"It can be of type: Gerber or Geometry.\n"
+"What is selected here will dictate the kind\n"
+"of objects that will populate the 'Object' combobox."
+msgstr ""
+"Specifica obiectul care va fi exceptat de la izolare.\n"
+"Poate fi de tip: Gerber sau Geometrie.\n"
+"Ce se va selecta aici va controla tipul de \n"
+"obiecte care vor aparea in combobox-ul\n"
+"numit >Obiect<."
+
+#: flatcamGUI/ObjectUI.py:365 flatcamTools/ToolCutOut.py:69
+#: flatcamTools/ToolNonCopperClear.py:87 flatcamTools/ToolPaint.py:86
+#: flatcamTools/ToolPanelize.py:71 flatcamTools/ToolPanelize.py:84
+msgid "Object"
+msgstr "Obiect"
+
+#: flatcamGUI/ObjectUI.py:366
+msgid "Object whose area will be removed from isolation geometry."
+msgstr ""
+"Obiectul a cărui suprafată va fi indepărtată din geometria tip Izolare."
+
+#: flatcamGUI/ObjectUI.py:370
msgid "Generate Isolation Geometry"
msgstr "Creează Geometrie de Izolare"
-#: flatcamGUI/ObjectUI.py:325
+#: flatcamGUI/ObjectUI.py:372
msgid ""
"Create a Geometry object with toolpaths to cut \n"
"isolation outside, inside or on both sides of the\n"
@@ -10099,11 +10360,27 @@ msgstr ""
"(traseu, zona etc) iar >in interior< inseamna efectiv in interiorul\n"
"acelui elem. Gerber (daca poate fi posibil)."
-#: flatcamGUI/ObjectUI.py:344
+#: flatcamGUI/ObjectUI.py:384
+msgid "Buffer Solid Geometry"
+msgstr "Creează Bufer Geometrie Solidă"
+
+#: flatcamGUI/ObjectUI.py:386
+msgid ""
+"This button is shown only when the Gerber file\n"
+"is loaded without buffering.\n"
+"Clicking this will create the buffered geometry\n"
+"required for isolation."
+msgstr ""
+"Acest control este afisat doar cand este incărcat un\n"
+"fisier Gerber fără să fie buferată geometria sa.\n"
+"Bifarea aici va crea această buferare care este necesară\n"
+"pentru a crea geometrie de tip Izolare."
+
+#: flatcamGUI/ObjectUI.py:393
msgid "FULL Geo"
msgstr "Geo Full"
-#: flatcamGUI/ObjectUI.py:346
+#: flatcamGUI/ObjectUI.py:395
msgid ""
"Create the Geometry Object\n"
"for isolation routing. It contains both\n"
@@ -10113,11 +10390,11 @@ msgstr ""
"Contine atat geometriile exterioare cat și\n"
"pe cele interioare."
-#: flatcamGUI/ObjectUI.py:355
+#: flatcamGUI/ObjectUI.py:404
msgid "Ext Geo"
msgstr "Geo Ext"
-#: flatcamGUI/ObjectUI.py:357
+#: flatcamGUI/ObjectUI.py:406
msgid ""
"Create the Geometry Object\n"
"for isolation routing containing\n"
@@ -10127,11 +10404,11 @@ msgstr ""
"pt izolare conținând doar\n"
"geometriile de exterior."
-#: flatcamGUI/ObjectUI.py:364
+#: flatcamGUI/ObjectUI.py:413
msgid "Int Geo"
msgstr "Geo Int"
-#: flatcamGUI/ObjectUI.py:366
+#: flatcamGUI/ObjectUI.py:415
msgid ""
"Create the Geometry Object\n"
"for isolation routing containing\n"
@@ -10141,11 +10418,11 @@ msgstr ""
"pt izolare conținând doar\n"
"geometriile de interior."
-#: flatcamGUI/ObjectUI.py:382
+#: flatcamGUI/ObjectUI.py:445
msgid "Clear N-copper"
msgstr "Curăță Non-Cu"
-#: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:360
+#: flatcamGUI/ObjectUI.py:454 flatcamTools/ToolNonCopperClear.py:442
msgid ""
"Create the Geometry Object\n"
"for non-copper routing."
@@ -10154,15 +10431,15 @@ msgstr ""
"pt rutare non-cupru (adica pt\n"
"curățare zone de cupru)."
-#: flatcamGUI/ObjectUI.py:398
+#: flatcamGUI/ObjectUI.py:461
msgid "Board cutout"
msgstr "Decupare PCB"
-#: flatcamGUI/ObjectUI.py:406 flatcamTools/ToolCutOut.py:337
+#: flatcamGUI/ObjectUI.py:468 flatcamTools/ToolCutOut.py:343
msgid "Cutout Tool"
msgstr "Unealta Decupare"
-#: flatcamGUI/ObjectUI.py:408
+#: flatcamGUI/ObjectUI.py:470
msgid ""
"Generate the geometry for\n"
"the board cutout."
@@ -10170,13 +10447,13 @@ msgstr ""
"Generează un obiect Geometrie\n"
"pt decuparea PCB."
-#: flatcamGUI/ObjectUI.py:448 flatcamGUI/ObjectUI.py:482
-#: flatcamTools/ToolCutOut.py:184 flatcamTools/ToolCutOut.py:204
-#: flatcamTools/ToolCutOut.py:255 flatcamTools/ToolSolderPaste.py:127
+#: flatcamGUI/ObjectUI.py:508 flatcamGUI/ObjectUI.py:540
+#: flatcamTools/ToolCutOut.py:183 flatcamTools/ToolCutOut.py:203
+#: flatcamTools/ToolCutOut.py:254 flatcamTools/ToolSolderPaste.py:127
msgid "Generate Geo"
msgstr "Crează Geo"
-#: flatcamGUI/ObjectUI.py:454
+#: flatcamGUI/ObjectUI.py:515
msgid ""
"Create a geometry surrounding the Gerber object.\n"
"Square shape."
@@ -10184,35 +10461,38 @@ msgstr ""
"Generează un obiect tip Geometrie care va inconjura\n"
"obiectul Gerber. Forma patratica (rectangulara)."
-#: flatcamGUI/ObjectUI.py:484
+#: flatcamGUI/ObjectUI.py:542
msgid "Generate the Geometry object."
msgstr "Generează obiectul Geometrie."
-#: flatcamGUI/ObjectUI.py:495
+#: flatcamGUI/ObjectUI.py:554
msgid "Excellon Object"
msgstr "Obiect Excellon"
-#: flatcamGUI/ObjectUI.py:506
+#: flatcamGUI/ObjectUI.py:565
msgid "Solid circles."
msgstr "Cercuri solide."
-#: flatcamGUI/ObjectUI.py:554
+#: flatcamGUI/ObjectUI.py:613
msgid "Drills"
msgstr "Găuri"
-#: flatcamGUI/ObjectUI.py:559
+#: flatcamGUI/ObjectUI.py:618
msgid ""
"This is the Tool Number.\n"
"When ToolChange is checked, on toolchange event this value\n"
-"will be showed as a T1, T2 ... Tn in the Machine Code."
+"will be showed as a T1, T2 ... Tn in the Machine Code.\n"
+"\n"
+"Here the tools are selected for G-code generation."
msgstr ""
"Acesta este numărul uneltei.\n"
"Când se foloseşte optiunea de pauza pt schimb unealtă,\n"
"la evenim. de schimb unealtă, va aparea sub forma T1, T2, etc\n"
-"in codul masina CNC."
+"in codul masina CNC.\n"
+"Aici se selectează uneltele pt generarea de G-Code."
-#: flatcamGUI/ObjectUI.py:563 flatcamGUI/ObjectUI.py:902
-#: flatcamTools/ToolNonCopperClear.py:121 flatcamTools/ToolPaint.py:120
+#: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:965
+#: flatcamTools/ToolPaint.py:120
msgid ""
"Tool Diameter. It's value (in current FlatCAM units) \n"
"is the cut width into the material."
@@ -10220,7 +10500,7 @@ msgstr ""
"Diametrul uneltei. Valoarea să (in unitati curente)\n"
"reprezinta lăţimea taieturii in material."
-#: flatcamGUI/ObjectUI.py:566
+#: flatcamGUI/ObjectUI.py:626
msgid ""
"The number of Drill holes. Holes that are drilled with\n"
"a drill bit."
@@ -10228,7 +10508,7 @@ msgstr ""
"Numărul de găuri. Sunt găuri efectuate prin\n"
"operațiuni de găurire efectuate cu un burghiu."
-#: flatcamGUI/ObjectUI.py:569
+#: flatcamGUI/ObjectUI.py:629
msgid ""
"The number of Slot holes. Holes that are created by\n"
"milling them with an endmill bit."
@@ -10236,11 +10516,15 @@ msgstr ""
"Numărul de sloturi. Sunt găuri efectuate\n"
"prin op. de frezare cu o freza."
-#: flatcamGUI/ObjectUI.py:576
-msgid "Toggle display of the drills for the current tool."
-msgstr "Comută afișarea găurilor pt unealta curentă."
+#: flatcamGUI/ObjectUI.py:636
+msgid ""
+"Toggle display of the drills for the current tool.\n"
+"This does not select the tools for G-code generation."
+msgstr ""
+"Comută afișarea găurilor pt unealta curentă.\n"
+"Aceata nu selectează uneltele pt generarea G-Code."
-#: flatcamGUI/ObjectUI.py:584
+#: flatcamGUI/ObjectUI.py:645
msgid ""
"Create a CNC Job object\n"
"for this drill object."
@@ -10248,19 +10532,21 @@ msgstr ""
"Crează un obiect CNCJob din\n"
"acest obiect."
-#: flatcamGUI/ObjectUI.py:621 flatcamGUI/ObjectUI.py:1114
+#: flatcamGUI/ObjectUI.py:682 flatcamGUI/ObjectUI.py:1177
msgid "Tool change Z"
msgstr "Z schimb unealtă"
-#: flatcamGUI/ObjectUI.py:738
+#: flatcamGUI/ObjectUI.py:799
msgid ""
"Select from the Tools Table above\n"
-"the tools you want to include."
+"the hole dias that are to be drilled.\n"
+"Use the # column to make the selection."
msgstr ""
-"Selectează din Tabela de Unelte de mai sus,\n"
-"uneltele care trebuie incluse."
+"Selecteaa din Tabela de Unelte de mai sus\n"
+"acele găuri care vor fi frezate.\n"
+"Foloseste coloanal # pt a face această selectie."
-#: flatcamGUI/ObjectUI.py:747
+#: flatcamGUI/ObjectUI.py:809
msgid ""
"Choose what to use for GCode generation:\n"
"'Drills', 'Slots' or 'Both'.\n"
@@ -10274,27 +10560,29 @@ msgstr ""
"Când se alege >Sloturi< sau >Ambele<, sloturile\n"
"vor fi convertite intr-o serie de găuriri."
-#: flatcamGUI/ObjectUI.py:762
-msgid "Create GCode"
-msgstr "Crează GCode"
+#: flatcamGUI/ObjectUI.py:824
+msgid "Create Drills GCode"
+msgstr "Crează GCode Găuri"
-#: flatcamGUI/ObjectUI.py:764
+#: flatcamGUI/ObjectUI.py:826
msgid "Generate the CNC Job."
msgstr "Generează un obiect CNCJob."
-#: flatcamGUI/ObjectUI.py:776
+#: flatcamGUI/ObjectUI.py:838
msgid ""
"Select from the Tools Table above\n"
-" the hole dias that are to be milled."
+"the hole dias that are to be milled.\n"
+"Use the # column to make the selection."
msgstr ""
"Selecteaa din Tabela de Unelte de mai sus\n"
-"acele găuri care vor fi frezate."
+"acele găuri care vor fi frezate.\n"
+"Foloseste coloana # pt a face această selectie."
-#: flatcamGUI/ObjectUI.py:790
+#: flatcamGUI/ObjectUI.py:853
msgid "Mill Drills Geo"
msgstr "Geo pt frezare găuri"
-#: flatcamGUI/ObjectUI.py:792
+#: flatcamGUI/ObjectUI.py:855
msgid ""
"Create the Geometry Object\n"
"for milling DRILLS toolpaths."
@@ -10302,11 +10590,11 @@ msgstr ""
"Crează un obiect tip Geometrie pt.\n"
"frezarea rutelor create din Găuri."
-#: flatcamGUI/ObjectUI.py:807
+#: flatcamGUI/ObjectUI.py:870
msgid "Mill Slots Geo"
msgstr "Geo pt. frezare sloturi"
-#: flatcamGUI/ObjectUI.py:809
+#: flatcamGUI/ObjectUI.py:872
msgid ""
"Create the Geometry Object\n"
"for milling SLOTS toolpaths."
@@ -10314,11 +10602,11 @@ msgstr ""
"Crează un obiect tip Geometrie pt.\n"
"frezarea rutelor create din Sloturi."
-#: flatcamGUI/ObjectUI.py:827
+#: flatcamGUI/ObjectUI.py:890
msgid "Geometry Object"
msgstr "Obiect Geometrie"
-#: flatcamGUI/ObjectUI.py:858
+#: flatcamGUI/ObjectUI.py:921
msgid ""
"Tools in this Geometry object used for cutting.\n"
"The 'Offset' entry will set an offset for the cut.\n"
@@ -10346,18 +10634,18 @@ msgstr ""
"in 'Izolare', prametrul >Z tăiere< din UI este dezactivat (gri) pt că\n"
"este acum calculat automat din doi noi parametri care sunt afisati:\n"
"- V-Dia \n"
-"- V-unghi"
+"- V-unghi."
-#: flatcamGUI/ObjectUI.py:889 flatcamGUI/ObjectUI.py:1455
+#: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
msgid "Dia"
msgstr "Dia"
-#: flatcamGUI/ObjectUI.py:889 flatcamGUI/ObjectUI.py:1455
+#: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
#: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
msgid "TT"
msgstr "TU"
-#: flatcamGUI/ObjectUI.py:896
+#: flatcamGUI/ObjectUI.py:959
msgid ""
"This is the Tool Number.\n"
"When ToolChange is checked, on toolchange event this value\n"
@@ -10368,7 +10656,7 @@ msgstr ""
"la evenim. de schimb unealtă, va aparea sub forma T1, T2, etc\n"
"in codul masina CNC."
-#: flatcamGUI/ObjectUI.py:907
+#: flatcamGUI/ObjectUI.py:970
msgid ""
"The value for the Offset can be:\n"
"- Path -> There is no offset, the tool cut will be done through the geometry "
@@ -10382,13 +10670,13 @@ msgstr ""
"geometrică\n"
"- În(ăuntru) -> Tăietura va urma geometria pe interior. Va crea un "
"'buzunar'\n"
-"- Afară-> Tăietura va urma geometria pe exterior"
+"- Afară-> Tăietura va urma geometria pe exterior."
-#: flatcamGUI/ObjectUI.py:914
+#: flatcamGUI/ObjectUI.py:977
msgid ""
"The (Operation) Type has only informative value. Usually the UI form "
"values \n"
-"are choosed based on the operation type and this will serve as a reminder.\n"
+"are choose based on the operation type and this will serve as a reminder.\n"
"Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
"For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
"For Finishing we may choose a higher Feedrate, without multiDepth.\n"
@@ -10407,7 +10695,7 @@ msgstr ""
"un\n"
"vârf fin, ascuțit."
-#: flatcamGUI/ObjectUI.py:923
+#: flatcamGUI/ObjectUI.py:986
msgid ""
"The Tool Type (TT) can be:\n"
"- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
@@ -10437,7 +10725,7 @@ msgstr ""
"Alegerea tipului V-Shape (forma in V) va selecta automat Tipul de Operaţie "
"ca Izolare."
-#: flatcamGUI/ObjectUI.py:935
+#: flatcamGUI/ObjectUI.py:998
msgid ""
"Plot column. It is visible only for MultiGeo geometries, meaning geometries "
"that holds the geometry\n"
@@ -10457,11 +10745,11 @@ msgstr ""
"se poate activa/dezactiva\n"
"afișarea in canvas."
-#: flatcamGUI/ObjectUI.py:948
+#: flatcamGUI/ObjectUI.py:1011
msgid "Tool Offset"
msgstr "Ofset unealtă"
-#: flatcamGUI/ObjectUI.py:951
+#: flatcamGUI/ObjectUI.py:1014
msgid ""
"The value to offset the cut when \n"
"the Offset type selected is 'Offset'.\n"
@@ -10472,12 +10760,7 @@ msgstr ""
"este >Ofset<. Aceasta valoare poate fi pozitivă pentru un ofset\n"
"in exterior sau poate fi negativă pentru un ofset in interior."
-#: flatcamGUI/ObjectUI.py:974 flatcamTools/ToolNonCopperClear.py:160
-#: flatcamTools/ToolPaint.py:162
-msgid "Tool Dia"
-msgstr "Dia Unealtă"
-
-#: flatcamGUI/ObjectUI.py:993 flatcamTools/ToolNonCopperClear.py:172
+#: flatcamGUI/ObjectUI.py:1056 flatcamTools/ToolNonCopperClear.py:239
#: flatcamTools/ToolPaint.py:178
msgid ""
"Add a new tool to the Tool Table\n"
@@ -10486,7 +10769,7 @@ msgstr ""
"Adaugă o noua unelata in Tabela de Unelte,\n"
"cu diametrul specificat mai sus."
-#: flatcamGUI/ObjectUI.py:1001
+#: flatcamGUI/ObjectUI.py:1064
msgid ""
"Copy a selection of tools in the Tool Table\n"
"by first selecting a row in the Tool Table."
@@ -10494,7 +10777,7 @@ msgstr ""
"Copiază o selecţie de unelte in Tabela de Unelte prin\n"
"selectarea unei linii (sau mai multe) in Tabela de Unelte."
-#: flatcamGUI/ObjectUI.py:1009
+#: flatcamGUI/ObjectUI.py:1072
msgid ""
"Delete a selection of tools in the Tool Table\n"
"by first selecting a row in the Tool Table."
@@ -10502,11 +10785,11 @@ msgstr ""
"Șterge o selecţie de unelte in Tabela de Unelte prin\n"
"selectarea unei linii (sau mai multe) in Tabela de Unelte."
-#: flatcamGUI/ObjectUI.py:1025
+#: flatcamGUI/ObjectUI.py:1088
msgid "Tool Data"
msgstr "Date unealtă"
-#: flatcamGUI/ObjectUI.py:1028
+#: flatcamGUI/ObjectUI.py:1091
msgid ""
"The data used for creating GCode.\n"
"Each tool store it's own set of such data."
@@ -10514,35 +10797,13 @@ msgstr ""
"Datele folosite pentru crearea codului GCode.\n"
"Fiecare unealtă stochează un subset de asemenea date."
-#: flatcamGUI/ObjectUI.py:1046
-msgid "V-Tip Dia"
-msgstr "V-dia"
-
-#: flatcamGUI/ObjectUI.py:1049
-msgid "The tip diameter for V-Shape Tool"
-msgstr ""
-"Diametrul la vârf al uneltei tip V-Shape.\n"
-"Forma in V."
-
-#: flatcamGUI/ObjectUI.py:1057
-msgid "V-Tip Angle"
-msgstr "V-unghi"
-
-#: flatcamGUI/ObjectUI.py:1060
-msgid ""
-"The tip angle for V-Shape Tool.\n"
-"In degree."
-msgstr ""
-"Unghiul la vârf pentru unealta tip V-Shape. \n"
-"In grade."
-
-#: flatcamGUI/ObjectUI.py:1095
+#: flatcamGUI/ObjectUI.py:1158
msgid "Depth of each pass (positive)."
msgstr ""
"Adâncimea pentru fiecare trecere.\n"
"Valoare pozitivă, in unitatile curente."
-#: flatcamGUI/ObjectUI.py:1269
+#: flatcamGUI/ObjectUI.py:1332
msgid ""
"Add at least one tool in the tool-table.\n"
"Click the header to select all, or Ctrl + LMB\n"
@@ -10552,37 +10813,33 @@ msgstr ""
"Click pe header pentru selectarea tuturora asu CTRL + LMB click\n"
"pentru o selecţie personalizata de unelte."
-#: flatcamGUI/ObjectUI.py:1276
+#: flatcamGUI/ObjectUI.py:1339
msgid "Generate"
msgstr "Generează"
-#: flatcamGUI/ObjectUI.py:1278
+#: flatcamGUI/ObjectUI.py:1341
msgid "Generate the CNC Job object."
msgstr "Generează un obiect CNCJob."
-#: flatcamGUI/ObjectUI.py:1285
+#: flatcamGUI/ObjectUI.py:1348
msgid "Paint Area"
msgstr "Unealta Paint"
-#: flatcamGUI/ObjectUI.py:1299
+#: flatcamGUI/ObjectUI.py:1362
msgid "Launch Paint Tool in Tools Tab."
msgstr ""
"Lansează unealta FlatCAM numita Paint și\n"
"o instalează in Tab-ul Unealta."
-#: flatcamGUI/ObjectUI.py:1315
+#: flatcamGUI/ObjectUI.py:1378
msgid "CNC Job Object"
msgstr "Obiect CNCJob"
-#: flatcamGUI/ObjectUI.py:1333
-msgid "Plot kind"
-msgstr "Tip afișare"
-
-#: flatcamGUI/ObjectUI.py:1367
+#: flatcamGUI/ObjectUI.py:1429
msgid "Travelled dist."
msgstr "Distanța parcursă"
-#: flatcamGUI/ObjectUI.py:1369 flatcamGUI/ObjectUI.py:1374
+#: flatcamGUI/ObjectUI.py:1431 flatcamGUI/ObjectUI.py:1436
msgid ""
"This is the total travelled distance on X-Y plane.\n"
"In current units."
@@ -10590,11 +10847,11 @@ msgstr ""
"Aceasta este distanţa totala parcursa in planul X-Y.\n"
"In unitatile curente."
-#: flatcamGUI/ObjectUI.py:1379
+#: flatcamGUI/ObjectUI.py:1441
msgid "Estimated time"
msgstr "Durată estimată"
-#: flatcamGUI/ObjectUI.py:1381 flatcamGUI/ObjectUI.py:1386
+#: flatcamGUI/ObjectUI.py:1443 flatcamGUI/ObjectUI.py:1448
msgid ""
"This is the estimated time to do the routing/drilling,\n"
"without the time spent in ToolChange events."
@@ -10602,11 +10859,11 @@ msgstr ""
"Acesta este timpul estimat pentru efectuarea traseului / găuririi,\n"
"fără timpul petrecut în evenimentele ToolChange."
-#: flatcamGUI/ObjectUI.py:1421
+#: flatcamGUI/ObjectUI.py:1483
msgid "CNC Tools Table"
msgstr "Tabela Unelte CNC"
-#: flatcamGUI/ObjectUI.py:1424
+#: flatcamGUI/ObjectUI.py:1486
msgid ""
"Tools in this CNCJob object used for cutting.\n"
"The tool diameter is used for plotting on canvas.\n"
@@ -10627,39 +10884,39 @@ msgstr ""
"Shape\n"
"(cu forma in V)."
-#: flatcamGUI/ObjectUI.py:1456
+#: flatcamGUI/ObjectUI.py:1518
msgid "P"
msgstr "P"
-#: flatcamGUI/ObjectUI.py:1462
+#: flatcamGUI/ObjectUI.py:1524
msgid "Update Plot"
msgstr "Actualiz. afișare"
-#: flatcamGUI/ObjectUI.py:1464
+#: flatcamGUI/ObjectUI.py:1526
msgid "Update the plot."
msgstr "Actualizează afișarea obiectelor."
-#: flatcamGUI/ObjectUI.py:1479
+#: flatcamGUI/ObjectUI.py:1541
msgid "Prepend to CNC Code"
msgstr "Adaugă la inceput in codul G-Code"
-#: flatcamGUI/ObjectUI.py:1490
+#: flatcamGUI/ObjectUI.py:1552
msgid "Append to CNC Code"
msgstr "Adaugă la sfârşit in codul G-Code"
-#: flatcamGUI/ObjectUI.py:1558
+#: flatcamGUI/ObjectUI.py:1620
msgid "z_cut = depth where to cut"
msgstr "z_cut = adâncimea de tăiere"
-#: flatcamGUI/ObjectUI.py:1559
+#: flatcamGUI/ObjectUI.py:1621
msgid "z_move = height where to travel"
msgstr "z_move = Înălţimea deplasare"
-#: flatcamGUI/ObjectUI.py:1578
+#: flatcamGUI/ObjectUI.py:1640
msgid "View CNC Code"
msgstr "Vizualiz. codul CNC"
-#: flatcamGUI/ObjectUI.py:1580
+#: flatcamGUI/ObjectUI.py:1642
msgid ""
"Opens TAB to view/modify/print G-Code\n"
"file."
@@ -10667,11 +10924,11 @@ msgstr ""
"Deschide un nou tab pentru a vizualiza, modifica\n"
"sau tipari codul G-Code."
-#: flatcamGUI/ObjectUI.py:1585
+#: flatcamGUI/ObjectUI.py:1647
msgid "Save CNC Code"
msgstr "Salvează codul CNC"
-#: flatcamGUI/ObjectUI.py:1587
+#: flatcamGUI/ObjectUI.py:1649
msgid ""
"Opens dialog to save G-Code\n"
"file."
@@ -10679,6 +10936,10 @@ msgstr ""
"Deshide o fereastra dialog pentru salvarea codului\n"
"G-Code intr-un fişier."
+#: flatcamParsers/ParseFont.py:305
+msgid "Font not supported, try another one."
+msgstr "Fontul nu este acceptat, incearcă altul."
+
#: flatcamTools/ToolCalculators.py:24
msgid "Calculators"
msgstr "Calculatoare"
@@ -10736,7 +10997,7 @@ msgid ""
msgstr ""
"Calculează ori valorea >Z tăiere< ori valoarea efectiva a diametrului "
"uneltei,\n"
-"depinzand de care dintre acestea este cunoscuta."
+"depinzand de care dintre acestea este cunoscuta. "
#: flatcamTools/ToolCalculators.py:186
msgid "Current Value"
@@ -10778,12 +11039,7 @@ msgstr "Unealta Calc."
msgid "Cutout PCB"
msgstr "Decupare PCB"
-#: flatcamTools/ToolCutOut.py:54 flatcamTools/ToolNonCopperClear.py:69
-#: flatcamTools/ToolPaint.py:68
-msgid "Obj Type"
-msgstr "Tip obiect"
-
-#: flatcamTools/ToolCutOut.py:56
+#: flatcamTools/ToolCutOut.py:55
msgid ""
"Specify the type of object to be cutout.\n"
"It can be of type: Gerber or Geometry.\n"
@@ -10796,31 +11052,29 @@ msgstr ""
"obiecte care vor aparea in combobox-ul\n"
"numit >Obiect<."
-#: flatcamTools/ToolCutOut.py:70 flatcamTools/ToolNonCopperClear.py:87
-#: flatcamTools/ToolPaint.py:86 flatcamTools/ToolPanelize.py:71
-#: flatcamTools/ToolPanelize.py:84
-msgid "Object"
-msgstr "Obiect"
-
-#: flatcamTools/ToolCutOut.py:72
+#: flatcamTools/ToolCutOut.py:71
msgid "Object to be cutout. "
msgstr "Obiectul FlatCAM care va fi decupat."
-#: flatcamTools/ToolCutOut.py:111
+#: flatcamTools/ToolCutOut.py:100
+msgid "Margin:"
+msgstr "Margine:"
+
+#: flatcamTools/ToolCutOut.py:110
msgid "Gap size:"
msgstr "Dim. punte:"
-#: flatcamTools/ToolCutOut.py:138
+#: flatcamTools/ToolCutOut.py:137
msgid "A. Automatic Bridge Gaps"
msgstr "A. Punţi realiz. automat"
-#: flatcamTools/ToolCutOut.py:140
+#: flatcamTools/ToolCutOut.py:139
msgid "This section handle creation of automatic bridge gaps."
msgstr ""
"Aceasta sectiune va permite crearea in mod automat\n"
"a pana la 8 punţi."
-#: flatcamTools/ToolCutOut.py:151
+#: flatcamTools/ToolCutOut.py:150
msgid ""
"Number of gaps used for the Automatic cutout.\n"
"There can be maximum 8 bridges/gaps.\n"
@@ -10844,11 +11098,11 @@ msgstr ""
"- 2tb = 2* sus - 2* jos\n"
"- 8 = 2* stânga - 2* dreapta - 2* sus - 2* jos"
-#: flatcamTools/ToolCutOut.py:175
+#: flatcamTools/ToolCutOut.py:174
msgid "FreeForm"
msgstr "Formă liberă"
-#: flatcamTools/ToolCutOut.py:177
+#: flatcamTools/ToolCutOut.py:176
msgid ""
"The cutout shape can be of ny shape.\n"
"Useful when the PCB has a non-rectangular shape."
@@ -10856,7 +11110,7 @@ msgstr ""
"Decupajul poate avea orice forma.\n"
"Folositor când PCB-ul are o forma neregulata."
-#: flatcamTools/ToolCutOut.py:186
+#: flatcamTools/ToolCutOut.py:185
msgid ""
"Cutout the selected object.\n"
"The cutout shape can be of any shape.\n"
@@ -10866,11 +11120,11 @@ msgstr ""
"Forma decupajului poate avea orice forma.\n"
"Folositor când PCB-ul are o forma neregulata."
-#: flatcamTools/ToolCutOut.py:195
+#: flatcamTools/ToolCutOut.py:194
msgid "Rectangular"
msgstr "Patrulater"
-#: flatcamTools/ToolCutOut.py:197
+#: flatcamTools/ToolCutOut.py:196
msgid ""
"The resulting cutout shape is\n"
"always a rectangle shape and it will be\n"
@@ -10880,7 +11134,7 @@ msgstr ""
"patratica și va fi forma înconjurătoare a\n"
"obiectului FlatCAM decupat."
-#: flatcamTools/ToolCutOut.py:206
+#: flatcamTools/ToolCutOut.py:205
msgid ""
"Cutout the selected object.\n"
"The resulting cutout shape is\n"
@@ -10890,11 +11144,11 @@ msgstr ""
"Decupează obiectul selectat.\n"
"Forma decupajului este tot timpul dreptunghiulara.."
-#: flatcamTools/ToolCutOut.py:214
+#: flatcamTools/ToolCutOut.py:213
msgid "B. Manual Bridge Gaps"
msgstr "B. Punţi realiz. manual"
-#: flatcamTools/ToolCutOut.py:216
+#: flatcamTools/ToolCutOut.py:215
msgid ""
"This section handle creation of manual bridge gaps.\n"
"This is done by mouse clicking on the perimeter of the\n"
@@ -10904,21 +11158,21 @@ msgstr ""
"Se apasa butonul corepsunzator și apoi click cu mouse-ul\n"
"pe perimetrul formei de decupaj. Daca se face simultan cu\n"
"apasarea tastei CTRL, operatia se va repeta automat pana când\n"
-"se va apasa tasta 'Escape'."
+"se va apasa tasta 'Escape'. "
-#: flatcamTools/ToolCutOut.py:232
+#: flatcamTools/ToolCutOut.py:231
msgid "Geo Obj"
msgstr "Obiect Geo"
-#: flatcamTools/ToolCutOut.py:234
+#: flatcamTools/ToolCutOut.py:233
msgid "Geometry object used to create the manual cutout."
msgstr "Obiect tip Geometrie folosit pentru crearea decupajului manual."
-#: flatcamTools/ToolCutOut.py:245
+#: flatcamTools/ToolCutOut.py:244
msgid "Manual Geo"
msgstr "Geo manual"
-#: flatcamTools/ToolCutOut.py:247 flatcamTools/ToolCutOut.py:257
+#: flatcamTools/ToolCutOut.py:246 flatcamTools/ToolCutOut.py:256
msgid ""
"If the object to be cutout is a Gerber\n"
"first create a Geometry that surrounds it,\n"
@@ -10931,11 +11185,11 @@ msgstr ""
"Selectează obiectul sursa Gerber in combobox-ul de mai sus,\n"
"numit >Obiect<."
-#: flatcamTools/ToolCutOut.py:267
+#: flatcamTools/ToolCutOut.py:266
msgid "Manual Add Bridge Gaps"
msgstr "Adaugă punţi manual"
-#: flatcamTools/ToolCutOut.py:269
+#: flatcamTools/ToolCutOut.py:268
msgid ""
"Use the left mouse button (LMB) click\n"
"to create a bridge gap to separate the PCB from\n"
@@ -10944,11 +11198,11 @@ msgstr ""
"Folosind click LMB se crează punţi de sustinere a PCB-ului\n"
"de materialul din care este decupat."
-#: flatcamTools/ToolCutOut.py:276
+#: flatcamTools/ToolCutOut.py:275
msgid "Generate Gap"
msgstr "Generează Punte"
-#: flatcamTools/ToolCutOut.py:278
+#: flatcamTools/ToolCutOut.py:277
msgid ""
"Use the left mouse button (LMB) click\n"
"to create a bridge gap to separate the PCB from\n"
@@ -10962,147 +11216,125 @@ msgstr ""
"apasarea tastei CTRL, operatia se va repeta automat pana când\n"
"se va apasa tasta 'Escape'."
-#: flatcamTools/ToolCutOut.py:367 flatcamTools/ToolCutOut.py:564
-#: flatcamTools/ToolNonCopperClear.py:836
-#: flatcamTools/ToolNonCopperClear.py:845
-#: flatcamTools/ToolNonCopperClear.py:1001 flatcamTools/ToolPaint.py:929
-#: flatcamTools/ToolPaint.py:1093 flatcamTools/ToolPanelize.py:358
-#: flatcamTools/ToolPanelize.py:373 flatcamTools/ToolSub.py:252
-#: flatcamTools/ToolSub.py:265 flatcamTools/ToolSub.py:448
-#: flatcamTools/ToolSub.py:461
-#, python-format
-msgid "[ERROR_NOTCL] Could not retrieve object: %s"
-msgstr "[ERROR_NOTCL] Nu s-a putut incărca obiectul: %s"
+#: flatcamTools/ToolCutOut.py:371 flatcamTools/ToolCutOut.py:571
+#: flatcamTools/ToolNonCopperClear.py:1124
+#: flatcamTools/ToolNonCopperClear.py:1265 flatcamTools/ToolPaint.py:1149
+#: flatcamTools/ToolPanelize.py:359 flatcamTools/ToolPanelize.py:376
+#: flatcamTools/ToolSub.py:254 flatcamTools/ToolSub.py:269
+#: flatcamTools/ToolSub.py:456 flatcamTools/ToolSub.py:471
+#: tclCommands/TclCommandCopperClear.py:131
+#: tclCommands/TclCommandCopperClear.py:207 tclCommands/TclCommandPaint.py:133
+msgid "Could not retrieve object"
+msgstr "Nu s-a putut incărca obiectul"
-#: flatcamTools/ToolCutOut.py:371
+#: flatcamTools/ToolCutOut.py:376
msgid ""
-"[ERROR_NOTCL] There is no object selected for Cutout.\n"
+"There is no object selected for Cutout.\n"
"Select one and try again."
msgstr ""
-"[ERROR_NOTCL] Nu este nici-un obiect selectat pentru decupaj.\n"
+"Nu este nici-un obiect selectat pentru decupaj.\n"
"Selectează unul și încearcă din nou."
-#: flatcamTools/ToolCutOut.py:386
-msgid ""
-"[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
-"number."
-msgstr ""
-"[WARNING_NOTCL] Diametrul uneltei este zero. Schimbă-l intr-o val. pozitivă "
-"Reala."
+#: flatcamTools/ToolCutOut.py:392 flatcamTools/ToolCutOut.py:590
+#: flatcamTools/ToolCutOut.py:760 flatcamTools/ToolCutOut.py:854
+msgid "Tool Diameter is zero value. Change it to a positive real number."
+msgstr "Diametrul uneltei este zero. Schimbă intr-o valoare pozitivă Reală."
-#: flatcamTools/ToolCutOut.py:401 flatcamTools/ToolCutOut.py:597
-#: flatcamTools/ToolCutOut.py:893
-msgid ""
-"[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
+#: flatcamTools/ToolCutOut.py:408 flatcamTools/ToolCutOut.py:606
+#: flatcamTools/ToolCutOut.py:870
+msgid "Margin value is missing or wrong format. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Valoarea marginii lipseste sau este in format gresit. Adaugă "
-"din nou și reîncearcă."
+"Valoarea marginii lipseste sau este in format gresit. Adaugă din nou și "
+"reîncearcă."
-#: flatcamTools/ToolCutOut.py:412 flatcamTools/ToolCutOut.py:608
-#: flatcamTools/ToolCutOut.py:758
-msgid ""
-"[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
+#: flatcamTools/ToolCutOut.py:419 flatcamTools/ToolCutOut.py:617
+#: flatcamTools/ToolCutOut.py:771
+msgid "Gap size value is missing or wrong format. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Valoarea dimensiunii punte lipseste sau este in format "
-"gresit. Adaugă din nou și reîncearcă."
+"Valoarea dimensiunii punte lipseste sau este in format gresit. Adaugă din "
+"nou și reîncearcă."
-#: flatcamTools/ToolCutOut.py:419 flatcamTools/ToolCutOut.py:615
-msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
+#: flatcamTools/ToolCutOut.py:425 flatcamTools/ToolCutOut.py:624
+msgid "Number of gaps value is missing. Add it and retry."
msgstr ""
-"[WARNING_NOTCL] Numărul de punţi lipseste sau este in format gresit. Adaugă "
-"din nou și reîncearcă."
+" Numărul de punţi lipseste sau este in format gresit. Adaugă din nou și "
+"reîncearcă."
-#: flatcamTools/ToolCutOut.py:423 flatcamTools/ToolCutOut.py:619
+#: flatcamTools/ToolCutOut.py:430 flatcamTools/ToolCutOut.py:628
msgid ""
-"[WARNING_NOTCL] Gaps value can be only one of: 'None', 'lr', 'tb', '2lr', "
-"'2tb', 4 or 8. Fill in a correct value and retry. "
+"Gaps value can be only one of: 'None', 'lr', 'tb', '2lr', '2tb', 4 or 8. "
+"Fill in a correct value and retry. "
msgstr ""
-"[WARNING_NOTCL] Valoarea spatiilor poate fi doar una dintre: „Niciuna”, "
-"„lr”, „tb”, „2lr”, „2tb”, 4 sau 8. Completați o valoare corectă și încercați "
-"din nou."
+"Valoarea spatiilor poate fi doar una dintre: „Niciuna”, „lr”, „tb”, „2lr”, "
+"„2tb”, 4 sau 8. Completați o valoare corectă și încercați din nou. "
-#: flatcamTools/ToolCutOut.py:429 flatcamTools/ToolCutOut.py:625
+#: flatcamTools/ToolCutOut.py:435 flatcamTools/ToolCutOut.py:634
msgid ""
-"[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
+"Cutout operation cannot be done on a multi-geo Geometry.\n"
"Optionally, this Multi-geo Geometry can be converted to Single-geo "
"Geometry,\n"
"and after that perform Cutout."
msgstr ""
-"[ERROR] Operatia de decupaj nu se poate efectua cu un obiect Geometrie tip "
+"Operatia de decupaj nu se poate efectua cu un obiect Geometrie tip "
"MultiGeo.\n"
"Se poate insa converti MultiGeo in tip SingleGeo și apoi se poate efectua "
"decupajul."
-#: flatcamTools/ToolCutOut.py:547 flatcamTools/ToolCutOut.py:728
-msgid "[success] Any form CutOut operation finished."
-msgstr "[success] Operatia de decupaj cu forma libera s-a terminat."
+#: flatcamTools/ToolCutOut.py:554 flatcamTools/ToolCutOut.py:739
+msgid "Any form CutOut operation finished."
+msgstr "Operatia de decupaj cu formă liberă s-a terminat."
-#: flatcamTools/ToolCutOut.py:568 flatcamTools/ToolPaint.py:933
-#: flatcamTools/ToolPanelize.py:364
+#: flatcamTools/ToolCutOut.py:575 flatcamTools/ToolNonCopperClear.py:1087
#, python-format
-msgid "[ERROR_NOTCL] Object not found: %s"
-msgstr "[ERROR_NOTCL] Obiectul nu a fost gasit: %s"
+msgid "Object not found: %s"
+msgstr "Obiectul nu a fost gasit: %s"
-#: flatcamTools/ToolCutOut.py:582 flatcamTools/ToolCutOut.py:748
-#: flatcamTools/ToolCutOut.py:878
-msgid ""
-"[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real "
-"number."
-msgstr ""
-"[ERROR_NOTCL] Diametrul uneltei este zero. Schimbă intr-o valoare pozitivă "
-"Reala."
-
-#: flatcamTools/ToolCutOut.py:733
+#: flatcamTools/ToolCutOut.py:744
msgid ""
"Click on the selected geometry object perimeter to create a bridge gap ..."
msgstr ""
"Click pe perimetrul obiectului tip Geometrie selectat\n"
"pentru a crea o punte separatoare."
-#: flatcamTools/ToolCutOut.py:768 flatcamTools/ToolCutOut.py:820
-#, python-format
-msgid "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
-msgstr "[ERROR_NOTCL] Nu s-a putut incărca obiectul Geometrie: %s"
+#: flatcamTools/ToolCutOut.py:780 flatcamTools/ToolCutOut.py:799
+msgid "Could not retrieve Geometry object"
+msgstr "Nu s-a putut incărca obiectul Geometrie"
-#: flatcamTools/ToolCutOut.py:783
-msgid "Making manual bridge gap..."
-msgstr "Se generează o punte separatoare in mod manual..."
+#: flatcamTools/ToolCutOut.py:804
+msgid "Geometry object for manual cutout not found"
+msgstr "Obiectul Geometrie pentru decupaj manual nu este găsit"
-#: flatcamTools/ToolCutOut.py:825
-#, python-format
-msgid "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
-msgstr ""
-"[ERROR_NOTCL] Obiectul Geometrie pentru decupaj manual nu este gasit: %s"
+#: flatcamTools/ToolCutOut.py:814
+msgid "Added manual Bridge Gap."
+msgstr "O punte a fost adăugată in mod manual."
-#: flatcamTools/ToolCutOut.py:835
-msgid "[success] Added manual Bridge Gap."
-msgstr "[success] O punte a fost adăugată in mod manual."
+#: flatcamTools/ToolCutOut.py:826
+msgid "Could not retrieve Gerber object"
+msgstr "Nu s-a putut incărca obiectul Gerber"
-#: flatcamTools/ToolCutOut.py:853
-#, python-format
-msgid "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
-msgstr "[ERROR_NOTCL] Nu s-a putut incărca obiectul Gerber: %s"
-
-#: flatcamTools/ToolCutOut.py:857
+#: flatcamTools/ToolCutOut.py:831
msgid ""
-"[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
+"There is no Gerber object selected for Cutout.\n"
"Select one and try again."
msgstr ""
-"[ERROR_NOTCL] Nu exista obiect selectat pt operatia de decupare.\n"
-"Selecteaza unul si incearcă din nou."
+"Nu există obiect selectat pt operatia de decupare.\n"
+"Selectează un obiect si incearcă din nou."
-#: flatcamTools/ToolCutOut.py:862
+#: flatcamTools/ToolCutOut.py:837
msgid ""
-"[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
+"The selected object has to be of Gerber type.\n"
"Select a Gerber file and try again."
msgstr ""
-"[ERROR_NOTCL] Obiectul selectat trebuie să fie de tip Gerber.\n"
-"Selecteaza un obiect Gerber si incearcă din nou."
+"Obiectul selectat trebuie să fie de tip Gerber.\n"
+"Selectează un obiect Gerber si incearcă din nou."
-#: flatcamTools/ToolCutOut.py:915
-#, python-format
-msgid "[ERROR_NOTCL] Geometry not supported for cutout: %s"
-msgstr "[ERROR_NOTCL] Geometria nu este acceptată pentru decupaj: %s"
+#: flatcamTools/ToolCutOut.py:892
+msgid "Geometry not supported for cutout"
+msgstr "Geometria nu este acceptată pentru decupaj"
+
+#: flatcamTools/ToolCutOut.py:928
+msgid "Making manual bridge gap..."
+msgstr "Se generează o punte separatoare in mod manual..."
#: flatcamTools/ToolDblSided.py:18
msgid "2-Sided PCB"
@@ -11170,17 +11402,17 @@ msgstr ""
"pe\n"
"canvas sau le puteti introduce manual."
-#: flatcamTools/ToolDblSided.py:182 flatcamTools/ToolNonCopperClear.py:338
+#: flatcamTools/ToolDblSided.py:182 flatcamTools/ToolNonCopperClear.py:420
#: flatcamTools/ToolPaint.py:318
msgid "Gerber Reference Box Object"
msgstr "Obiectul container al Gerber de referinţă"
-#: flatcamTools/ToolDblSided.py:183 flatcamTools/ToolNonCopperClear.py:339
+#: flatcamTools/ToolDblSided.py:183 flatcamTools/ToolNonCopperClear.py:421
#: flatcamTools/ToolPaint.py:319
msgid "Excellon Reference Box Object"
msgstr "Obiectul container al Excellon de referinţă"
-#: flatcamTools/ToolDblSided.py:184 flatcamTools/ToolNonCopperClear.py:340
+#: flatcamTools/ToolDblSided.py:184 flatcamTools/ToolNonCopperClear.py:422
#: flatcamTools/ToolPaint.py:320
msgid "Geometry Reference Box Object"
msgstr "Obiectul container al Geo de referinţă"
@@ -11203,7 +11435,7 @@ msgstr ""
"Pentru fiecare punct din lista de mai sus (cu coord. (x,y) )\n"
"un alt punct va fi creat in oglinda.\n"
"- un punct cu coord. specificate\n"
-"- un punct cu coord. in poziţia oglindita pe axa selectată mai sus"
+"- un punct cu coord. in poziţia oglindita pe axa selectată mai sus."
#: flatcamTools/ToolDblSided.py:209
msgid ""
@@ -11235,7 +11467,7 @@ msgstr "Dia. găuri de aliniere"
#: flatcamTools/ToolDblSided.py:246
msgid "Create Excellon Object"
-msgstr "Crează un obiect Excellon."
+msgstr "Crează un obiect Excellon"
#: flatcamTools/ToolDblSided.py:248
msgid ""
@@ -11260,102 +11492,79 @@ msgstr "Unealta 2-fețe"
#: flatcamTools/ToolDblSided.py:331
msgid ""
-"[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
-"missing. Add them and retry."
-msgstr ""
-"[WARNING_NOTCL] Referința 'Punct' este selectată dar coordonatele sale "
-"lipsesc. Adăugă-le is încearcă din nou."
-
-#: flatcamTools/ToolDblSided.py:350
-msgid ""
-"[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
-msgstr ""
-"[WARNING_NOTCL] Nici-un obiect container nu este incărcat. Încarcă unul și "
-"încearcă din nou."
-
-#: flatcamTools/ToolDblSided.py:372
-msgid ""
-"[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and "
-"retry."
-msgstr ""
-"[WARNING_NOTCL] Val. pt dia burghiu lipseste sau este in format gresit. "
-"Adaugă una și încearcă din nou."
-
-#: flatcamTools/ToolDblSided.py:379
-msgid ""
-"[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
+"'Point' reference is selected and 'Point' coordinates are missing. Add them "
"and retry."
msgstr ""
-"[WARNING_NOTCL] Nu exista coord. pentru găurile de aliniere. Adaugă-le și "
+"Referința 'Punct' este selectată dar coordonatele sale lipsesc. Adăugă-le si "
"încearcă din nou."
-#: flatcamTools/ToolDblSided.py:402
-msgid "[success] Excellon object with alignment drills created..."
+#: flatcamTools/ToolDblSided.py:350
+msgid "There is no Box reference object loaded. Load one and retry."
msgstr ""
-"[success] Obiectul Excellon conținând găurile de aliniere a fost creat ..."
+"Nici-un obiect container nu este incărcat. Încarcă unul și încearcă din nou."
-#: flatcamTools/ToolDblSided.py:411
-msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
-msgstr "[WARNING_NOTCL] Nu este nici-un obiect Gerber incărcat ..."
+#: flatcamTools/ToolDblSided.py:373
+msgid "No value or wrong format in Drill Dia entry. Add it and retry."
+msgstr ""
+"Val. pt dia burghiu lipseste sau este in format gresit. Adaugă una și "
+"încearcă din nou."
-#: flatcamTools/ToolDblSided.py:415 flatcamTools/ToolDblSided.py:458
-#: flatcamTools/ToolDblSided.py:502
+#: flatcamTools/ToolDblSided.py:380
+msgid "There are no Alignment Drill Coordinates to use. Add them and retry."
+msgstr ""
+"Nu exista coord. pentru găurile de aliniere. Adaugă-le și încearcă din nou."
+
+#: flatcamTools/ToolDblSided.py:403
+msgid "Excellon object with alignment drills created..."
+msgstr "Obiectul Excellon conținând găurile de aliniere a fost creat ..."
+
+#: flatcamTools/ToolDblSided.py:412
+msgid "There is no Gerber object loaded ..."
+msgstr "Nu este nici-un obiect Gerber incărcat ..."
+
+#: flatcamTools/ToolDblSided.py:416 flatcamTools/ToolDblSided.py:459
+#: flatcamTools/ToolDblSided.py:503
+msgid "Only Gerber, Excellon and Geometry objects can be mirrored."
+msgstr "Doar obiectele de tip Geometrie, Excellon și Gerber pot fi oglindite."
+
+#: flatcamTools/ToolDblSided.py:426
msgid ""
-"[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
+"'Point' coordinates missing. Using Origin (0, 0) as mirroring reference."
msgstr ""
-"[ERROR_NOTCL]Doar obiectele de tip Geometrie, Excellon și Gerber pot fi "
-"oglindite ..."
+"Coord. 'Punct'-ului lipsesc. Se folosesc coord. punctului Origine (0,0) ca "
+"ref. pt oglindire."
-#: flatcamTools/ToolDblSided.py:425
+#: flatcamTools/ToolDblSided.py:436 flatcamTools/ToolDblSided.py:480
+#: flatcamTools/ToolDblSided.py:517
+msgid "There is no Box object loaded ..."
+msgstr "Nu este incărcat nici-un obiect container ..."
+
+#: flatcamTools/ToolDblSided.py:446 flatcamTools/ToolDblSided.py:490
+#: flatcamTools/ToolDblSided.py:527
+msgid "was mirrored"
+msgstr "a fost oglindit"
+
+#: flatcamTools/ToolDblSided.py:455
+msgid "There is no Excellon object loaded ..."
+msgstr "Nici-un obiect tip Excellon nu este incărcat ..."
+
+#: flatcamTools/ToolDblSided.py:470
msgid ""
-"[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
-"mirroring reference."
+"There are no Point coordinates in the Point field. Add coords and try "
+"again ..."
msgstr ""
-"[WARNING_NOTCL] Coord. 'Punct'-ului lipsesc. Se folosesc coord. punctului "
-"Origine (0,0) ca ref. pt oglindire."
+"Nu există coord. in câmpul 'Punct'. Adaugă coord. și încearcă din nou..."
-#: flatcamTools/ToolDblSided.py:435 flatcamTools/ToolDblSided.py:479
-#: flatcamTools/ToolDblSided.py:516
-msgid "[WARNING_NOTCL] There is no Box object loaded ..."
-msgstr "[WARNING_NOTCL] Nu este incărcat nici-un obiect container ..."
-
-#: flatcamTools/ToolDblSided.py:445
-#, python-format
-msgid "[success] Gerber %s was mirrored..."
-msgstr "[success]Obiectul Gerberr %s a fost oglindit..."
-
-#: flatcamTools/ToolDblSided.py:454
-msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
-msgstr "[WARNING_NOTCL] Nici-un obiect tip Excellon nu este incărcat ..."
-
-#: flatcamTools/ToolDblSided.py:469
-msgid ""
-"[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
-"coords and try again ..."
-msgstr ""
-"[WARNING_NOTCL] Nu exista coord. in câmpul 'Punct'. Adaugă coord. și "
-"încearcă din nou..."
-
-#: flatcamTools/ToolDblSided.py:489
-#, python-format
-msgid "[success] Excellon %s was mirrored..."
-msgstr "[success] Obiectul Excellon %s a fost oglindit..."
-
-#: flatcamTools/ToolDblSided.py:498
-msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
-msgstr "[WARNING_NOTCL] Nici-un obiect tip Geometrie nu este incărcat ..."
-
-#: flatcamTools/ToolDblSided.py:526
-#, python-format
-msgid "[success] Geometry %s was mirrored..."
-msgstr "[success] Obiectul Geometrie %s a fost oglindit..."
+#: flatcamTools/ToolDblSided.py:499
+msgid "There is no Geometry object loaded ..."
+msgstr "Nici-un obiect tip Geometrie nu este incărcat ..."
#: flatcamTools/ToolFilm.py:25
msgid "Film PCB"
msgstr "Film PCB"
#: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
-#: flatcamTools/ToolPanelize.py:56 flatcamTools/ToolProperties.py:138
+#: flatcamTools/ToolPanelize.py:56 flatcamTools/ToolProperties.py:143
msgid "Object Type"
msgstr "Tip Obiect"
@@ -11418,6 +11627,10 @@ msgstr "Pozitiv"
msgid "Negative"
msgstr "Negativ"
+#: flatcamTools/ToolFilm.py:116
+msgid "Film Type:"
+msgstr "Tip film:"
+
#: flatcamTools/ToolFilm.py:157
msgid "Save Film"
msgstr "Salveaa filmul"
@@ -11434,19 +11647,17 @@ msgstr ""
"salvează pe HDD un fişier in format SVG care poate fi \n"
"deschis și prelucrat mai departe cu Inkscape."
-#: flatcamTools/ToolFilm.py:230
-msgid ""
-"[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
+#: flatcamTools/ToolFilm.py:231
+msgid "No FlatCAM object selected. Load an object for Film and retry."
msgstr ""
-"[ERROR_NOTCL] Nici-un obiect FlaCAM nu este selectat. Incărca un obiect pt "
-"Film și încearcă din nou."
+"Nici-un obiect FlaCAM nu este selectat. Incarcă un obiect pt Film și "
+"încearcă din nou."
-#: flatcamTools/ToolFilm.py:236
-msgid ""
-"[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
+#: flatcamTools/ToolFilm.py:238
+msgid "No FlatCAM object selected. Load an object for Box and retry."
msgstr ""
-"[ERROR_NOTCL] Nici-un obiect FlaCAM nu este selectat. Încarcă un obiect "
-"container și încearcă din nou."
+"Nici-un obiect FlatCAM nu este selectat. Încarcă un obiect container și "
+"încearcă din nou."
#: flatcamTools/ToolFilm.py:260
msgid "Generating Film ..."
@@ -11457,16 +11668,16 @@ msgid "Export SVG positive"
msgstr "Exporta SVG pozitiv"
#: flatcamTools/ToolFilm.py:274
-msgid "[WARNING_NOTCL] Export SVG positive cancelled."
-msgstr "[WARNING_NOTCL] Exportul unui fişier SVG pozitiv este anulat."
+msgid "Export SVG positive cancelled."
+msgstr "Exportul unui fişier SVG pozitiv este anulat."
#: flatcamTools/ToolFilm.py:281 flatcamTools/ToolFilm.py:285
msgid "Export SVG negative"
msgstr "Exporta SVG negativ"
#: flatcamTools/ToolFilm.py:290
-msgid "[WARNING_NOTCL] Export SVG negative cancelled."
-msgstr "[WARNING_NOTCL] Exportul unui fişier SVG negativ este anulat."
+msgid "Export SVG negative cancelled."
+msgstr "Exportul unui fişier SVG negativ este anulat."
#: flatcamTools/ToolImage.py:25
msgid "Image as Object"
@@ -11605,7 +11816,7 @@ msgstr "Start"
#: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:51
msgid "Coords"
-msgstr "Coordonate:"
+msgstr "Coordonate"
#: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:65
msgid "This is measuring Start point coordinates."
@@ -11637,7 +11848,7 @@ msgstr "Distanta masurata pe axa Y."
#: flatcamTools/ToolMeasurement.py:60
msgid "DISTANCE"
-msgstr "DISTANTA:"
+msgstr "DISTANTA"
#: flatcamTools/ToolMeasurement.py:61 flatcamTools/ToolMeasurement.py:81
msgid "This is the point to point Euclidian distance."
@@ -11645,11 +11856,11 @@ msgstr "Distanta euclidiana de la punct la punct."
#: flatcamTools/ToolMeasurement.py:83
msgid "Measure"
-msgstr "Masoara:"
+msgstr "Măsoară"
#: flatcamTools/ToolMeasurement.py:131
msgid "Meas. Tool"
-msgstr "Unealta Masur."
+msgstr "Unealta Măsur."
#: flatcamTools/ToolMeasurement.py:176
msgid "MEASURING: Click on the Start point ..."
@@ -11664,51 +11875,45 @@ msgstr "Masoara: Click pe punctul Destinaţie..."
msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
msgstr "Masoara: Rrezultat D(x) = {d_x} | D(y) = {d_y} | Distanta = {d_z}"
-#: flatcamTools/ToolMove.py:81
+#: flatcamTools/ToolMove.py:84
msgid "MOVE: Click on the Start point ..."
msgstr "MUTARE: Click pe punctul de Start ..."
-#: flatcamTools/ToolMove.py:88
-msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
+#: flatcamTools/ToolMove.py:91
+msgid "MOVE action cancelled. No object(s) to move."
msgstr ""
-"[WARNING_NOTCL] Actiunea de Mutare a fost anulată. Nu sunt obiecte care să "
-"fie mutate ..."
+"Actiunea de Mutare a fost anulată. Nu sunt obiecte care să fie mutate ..."
-#: flatcamTools/ToolMove.py:110
+#: flatcamTools/ToolMove.py:113
msgid "MOVE: Click on the Destination point ..."
msgstr "MUTARE: Click pe punctul Destinaţie..."
-#: flatcamTools/ToolMove.py:128
-msgid "Moving ..."
+#: flatcamTools/ToolMove.py:134
+msgid "Moving..."
msgstr "In mișcare ..."
-#: flatcamTools/ToolMove.py:135
-msgid "[WARNING_NOTCL] No object(s) selected."
-msgstr "[WARNING_NOTCL] Nu sunt obiecte selectate."
+#: flatcamTools/ToolMove.py:137
+msgid "No object(s) selected."
+msgstr "Nici-un obiect nu este selectat."
-#: flatcamTools/ToolMove.py:158
-#, python-format
-msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
-msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
+#: flatcamTools/ToolMove.py:162
+#| msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
+msgid "ToolMove.on_left_click()"
+msgstr "ToolMove.on_left_click()"
-#: flatcamTools/ToolMove.py:164
-#, python-format
-msgid "[success] %s object was moved ..."
-msgstr "[success] Obiectul %s a fost mutat ..."
+#: flatcamTools/ToolMove.py:179
+#| msgid ""
+#| "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
+msgid "ToolMove.on_left_click() --> Error when mouse left click."
+msgstr "ToolMove.on_left_click() --> Eroare la click mouse stanga."
-#: flatcamTools/ToolMove.py:174
-msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
-msgstr ""
-"[ERROR_NOTCL] ToolMove.on_left_click() --> Eroare când se face click cu "
-"butonul mouse stânga."
+#: flatcamTools/ToolMove.py:215
+msgid "Move action cancelled."
+msgstr "Actiunea de mutare a fost anulată."
-#: flatcamTools/ToolMove.py:202
-msgid "[WARNING_NOTCL] Move action cancelled."
-msgstr "[WARNING_NOTCL] Actiunea de mutare a fost anulată."
-
-#: flatcamTools/ToolMove.py:214
-msgid "[WARNING_NOTCL] Object(s) not selected"
-msgstr "[WARNING_NOTCL] Obiectele nu sunt selectate."
+#: flatcamTools/ToolMove.py:227
+msgid "Object(s) not selected"
+msgstr "Obiect(ele) neselectat(e)."
#: flatcamTools/ToolNonCopperClear.py:26
msgid "Non-Copper Clearing"
@@ -11738,6 +11943,10 @@ msgstr ""
"Un număr de unelte din care algoritmul va alege\n"
"pe acelea care vor fi folosite pentru curățarea de Cu."
+#: flatcamTools/ToolNonCopperClear.py:107
+msgid "Operation"
+msgstr "Operațiuni"
+
#: flatcamTools/ToolNonCopperClear.py:113
msgid ""
"This is the Tool Number.\n"
@@ -11754,34 +11963,69 @@ msgstr ""
"Doar uneltele care efectiv au creat geometrie vor fi prezente in obiectul\n"
"final. Aceasta deaorece unele unelte nu vor putea genera geometrie."
-#: flatcamTools/ToolNonCopperClear.py:125 flatcamTools/ToolPaint.py:124
+#: flatcamTools/ToolNonCopperClear.py:121
msgid ""
-"The Tool Type (TT) can be:
- Circular with 1 ... 4 teeth -> it is "
-"informative only. Being circular,
the cut width in material is exactly "
-"the tool diameter.
- Ball -> informative only and make reference "
-"to the Ball type endmill.
- V-Shape -> it will disable de Z-Cut "
-"parameter in the resulting geometry UI form and enable two additional UI "
-"form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
-"those two values will adjust the Z-Cut parameter such as the cut width into "
-"material will be equal with the value in the Tool Diameter column of this "
-"table.
Choosing the V-Shape Tool Type automatically will select "
-"the Operation Type in the resulting geometry as Isolation."
+"Tool Diameter. It's value (in current FlatCAM units)\n"
+"is the cut width into the material."
msgstr ""
-"Tipul uneltei (TU) poate fi::
- Circular cu 1 ... 4 dinti -> doar "
-"informativ. prin forma sa circulara,
lăţimea de tăiere este tot una cu "
-"diametrul sau
- Bila -> informativ și face referire la frezele cu "
-"cap rotund.
- V-Shape -> va dezactiva parametrul >Z tăiere< "
-"deoarece acesta este acum calculat și va afisa 2 noi parametri in UI: V_dia "
-"și V_unghi. Ajustarea acestor parametri va modifica param. calculat >Z "
-"tăiere< a.i lăţimea de tăiere in material va fi egală cu valoarea >Dia "
-"unealtă< din coloana tabelei de Unelte.
Alegerea tipului V-Shape "
-"va selecta automat Tipul Operaţiei ca fiind Izolare."
+"Diametrul uneltei. Valoarea să (in unitati curente FlatCAM)\n"
+"reprezintă lăţimea tăieturii in material."
-#: flatcamTools/ToolNonCopperClear.py:162
+#: flatcamTools/ToolNonCopperClear.py:125
+msgid ""
+"The Tool Type (TT) can be:\n"
+"- Circular with 1 ... 4 teeth -> it is informative only. Being circular,\n"
+"the cut width in material is exactly the tool diameter.\n"
+"- Ball -> informative only and make reference to the Ball type endmill.\n"
+"- V-Shape -> it will disable de Z-Cut parameter in the resulting geometry UI "
+"form\n"
+"and enable two additional UI form fields in the resulting geometry: V-Tip "
+"Dia and\n"
+"V-Tip Angle. Adjusting those two values will adjust the Z-Cut parameter "
+"such\n"
+"as the cut width into material will be equal with the value in the Tool "
+"Diameter\n"
+"column of this table.\n"
+"Choosing the 'V-Shape' Tool Type automatically will select the Operation "
+"Type\n"
+"in the resulting geometry as Isolation."
+msgstr ""
+"Tipul de instrument (TT) poate fi:\n"
+"- Circular cu 1 ... 4 dinți -> este doar informativ. Fiind circular,\n"
+"lățimea tăiată în material este exact diametrul sculei.\n"
+"- Ball -> numai informativ și face referire la freza de tip Ball.\n"
+"- V-Shape -> va dezactiva parametrul Z-Cut în GUI\n"
+"și v-a activa două câmpuri de GUII suplimentare în geometria rezultată: V-"
+"Tip Dia și\n"
+"V-Tip Angle. Ajustarea celor două valori va ajusta parametrul Z-Cut astfel\n"
+"incat lățimea tăiată în material va fi egală cu valoarea din coloana "
+"tabelului cu Diametrul sculei.\n"
+"Alegerea tipului de instrument „Forma V” va selecta automat tipul de "
+"operare\n"
+"în geometria rezultată ca fiind Izolare."
+
+#: flatcamTools/ToolNonCopperClear.py:138
+msgid ""
+"The 'Operation' can be:\n"
+"- Isolation -> will ensure that the non-copper clearing is always complete.\n"
+"If it's not successful then the non-copper clearing will fail, too.\n"
+"- Clear -> the regular non-copper clearing."
+msgstr ""
+"„Operațiunea” poate fi:\n"
+"- Izolare -> se va asigura că curățarea non-cupru este întotdeauna "
+"completă.\n"
+"Dacă nu are succes, atunci curățarea din cupru nu va reuși.\n"
+"- Curățare -> curățarea obișnuită de cupru"
+
+#: flatcamTools/ToolNonCopperClear.py:191
+msgid "Tool Selection"
+msgstr "Selecţie Unealtă"
+
+#: flatcamTools/ToolNonCopperClear.py:214
msgid "Diameter for the new tool to add in the Tool Table"
msgstr "Diametrul pentru noua unealtă care să fie adăugată in Tabela de Unelte"
-#: flatcamTools/ToolNonCopperClear.py:184 flatcamTools/ToolPaint.py:190
+#: flatcamTools/ToolNonCopperClear.py:251 flatcamTools/ToolPaint.py:190
#: flatcamTools/ToolSolderPaste.py:123
msgid ""
"Delete a selection of tools in the Tool Table\n"
@@ -11790,23 +12034,23 @@ msgstr ""
"Șterge o selecţie de unelte in Tabela de Unelte,\n"
"efectuata prin selectia liniilot din Tabela de Unelte."
-#: flatcamTools/ToolNonCopperClear.py:314 flatcamTools/ToolPaint.py:295
+#: flatcamTools/ToolNonCopperClear.py:396 flatcamTools/ToolPaint.py:295
msgid "Area Selection"
msgstr "Selecţie zonă"
-#: flatcamTools/ToolNonCopperClear.py:315 flatcamTools/ToolPaint.py:297
+#: flatcamTools/ToolNonCopperClear.py:397 flatcamTools/ToolPaint.py:297
msgid "Reference Object"
-msgstr "Obiect ref."
+msgstr "Obiect Ref."
-#: flatcamTools/ToolNonCopperClear.py:317
+#: flatcamTools/ToolNonCopperClear.py:399
msgid "Reference:"
msgstr "Referinţă:"
-#: flatcamTools/ToolNonCopperClear.py:332 flatcamTools/ToolPaint.py:312
+#: flatcamTools/ToolNonCopperClear.py:414 flatcamTools/ToolPaint.py:312
msgid "Ref. Type"
-msgstr "Tip ref."
+msgstr "Tip Ref."
-#: flatcamTools/ToolNonCopperClear.py:334
+#: flatcamTools/ToolNonCopperClear.py:416
msgid ""
"The type of FlatCAM object to be used as non copper clearing reference.\n"
"It can be Gerber, Excellon or Geometry."
@@ -11815,146 +12059,203 @@ msgstr ""
"non-cupru.\n"
"Poate fi Gerber, Excellon sau Geometry."
-#: flatcamTools/ToolNonCopperClear.py:343 flatcamTools/ToolPaint.py:323
+#: flatcamTools/ToolNonCopperClear.py:425 flatcamTools/ToolPaint.py:323
msgid "Ref. Object"
msgstr "Obiect Ref."
-#: flatcamTools/ToolNonCopperClear.py:345 flatcamTools/ToolPaint.py:325
+#: flatcamTools/ToolNonCopperClear.py:427 flatcamTools/ToolPaint.py:325
msgid "The FlatCAM object to be used as non copper clearing reference."
msgstr ""
-"Obiectul FlatCAM pentru a fi utilizat ca referință pt. curățarea de cupru"
+"Obiectul FlatCAM pentru a fi utilizat ca referință pt. curățarea de cupru."
-#: flatcamTools/ToolNonCopperClear.py:358
+#: flatcamTools/ToolNonCopperClear.py:440
msgid "Generate Geometry"
msgstr "Genereza Geometrie"
-#: flatcamTools/ToolNonCopperClear.py:689 flatcamTools/ToolPaint.py:700
-#: flatcamTools/ToolSolderPaste.py:768
-msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
+#: flatcamTools/ToolNonCopperClear.py:906 flatcamTools/ToolPaint.py:705
+#: flatcamTools/ToolSolderPaste.py:769
+msgid "Please enter a tool diameter to add, in Float format."
+msgstr "Introduce diametrul unei unelte pt a fi adăugată, in format Real."
+
+#: flatcamTools/ToolNonCopperClear.py:940 flatcamTools/ToolPaint.py:730
+msgid "Adding tool cancelled. Tool already in Tool Table."
msgstr ""
-"[WARNING_NOTCL] Introduce diametrul unei unelte pt a fi adăugată, in format "
-"Real."
+"Adăugarea unei unelte noi este anulată. Unealta există deja in Tabela de "
+"Unelte."
-#: flatcamTools/ToolNonCopperClear.py:718 flatcamTools/ToolPaint.py:724
-msgid "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
+#: flatcamTools/ToolNonCopperClear.py:945 flatcamTools/ToolPaint.py:736
+msgid "New tool added to Tool Table."
+msgstr "O noua unealtă a fost adăugată in Tabela de Unelte."
+
+#: flatcamTools/ToolNonCopperClear.py:989 flatcamTools/ToolPaint.py:782
+msgid "Tool from Tool Table was edited."
+msgstr "O unealtă din Tabela de Unelte a fost editata."
+
+#: flatcamTools/ToolNonCopperClear.py:1000 flatcamTools/ToolPaint.py:794
+#: flatcamTools/ToolSolderPaste.py:860
+msgid "Edit cancelled. New diameter value is already in the Tool Table."
msgstr ""
-"[WARNING_NOTCL] Adăugarea unei unelte noi este anulată. Unealta există deja "
-"in Tabela de Unelte."
+"Editare eșuată. Noua valoare pt diametrul uneltei este deja in Tabela de "
+"Unelte."
-#: flatcamTools/ToolNonCopperClear.py:723 flatcamTools/ToolPaint.py:729
-msgid "[success] New tool added to Tool Table."
-msgstr "[success] O noua unealtă a fost adăugată in Tabela de Unelte."
+#: flatcamTools/ToolNonCopperClear.py:1040 flatcamTools/ToolPaint.py:892
+msgid "Delete failed. Select a tool to delete."
+msgstr "Ștergere eșuată. Selectează o unealtă pt ștergere."
-#: flatcamTools/ToolNonCopperClear.py:765 flatcamTools/ToolPaint.py:774
-msgid "[success] Tool from Tool Table was edited."
-msgstr "[success] O unealtă din Tabela de Unelte a fost editata."
+#: flatcamTools/ToolNonCopperClear.py:1045 flatcamTools/ToolPaint.py:898
+msgid "Tool(s) deleted from Tool Table."
+msgstr "Au fost șterse unelte din Tabela de Unelte."
-#: flatcamTools/ToolNonCopperClear.py:776 flatcamTools/ToolPaint.py:785
-#: flatcamTools/ToolSolderPaste.py:855
-msgid ""
-"[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
-"Table."
+#: flatcamTools/ToolNonCopperClear.py:1053 flatcamTools/ToolPaint.py:906
+#| msgid "geometry_on_paint_button"
+msgid "on_paint_button_click"
+msgstr "on_paint_button_click"
+
+#: flatcamTools/ToolNonCopperClear.py:1067
+msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive), "
msgstr ""
-"[WARNING_NOTCL] Editare eșuata. Noua valoare pt diametrul uneltei este deja "
-"in Tabela de Unelte."
+"Valoarea de suprapunere trebuie sa ia valori intre 0 (inclusiv) si 1 "
+"(exclusiv), "
-#: flatcamTools/ToolNonCopperClear.py:816 flatcamTools/ToolPaint.py:884
-msgid "[WARNING_NOTCL] Delete failed. Select a tool to delete."
-msgstr "[WARNING_NOTCL] Ștergere eșuata. Selectează o unealtă pt ștergere."
-
-#: flatcamTools/ToolNonCopperClear.py:821 flatcamTools/ToolPaint.py:889
-msgid "[success] Tool(s) deleted from Tool Table."
-msgstr "[success] Au fost șterse unelte din Tabela de Unelte."
-
-#: flatcamTools/ToolNonCopperClear.py:849
-msgid "[WARNING_NOTCL] Click the start point of the area."
-msgstr "[WARNING_NOTCL] Faceți clic pe punctul de pornire al zonei."
-
-#: flatcamTools/ToolNonCopperClear.py:860 flatcamTools/ToolPaint.py:991
-msgid "[WARNING_NOTCL] Click the end point of the paint area."
-msgstr "[WARNING_NOTCL] Faceți clic pe punctul final al zonei de pictat."
-
-#: flatcamTools/ToolNonCopperClear.py:866 flatcamTools/ToolPaint.py:997
-msgid "Zone added. Right click to finish."
-msgstr "Zona adăugată. Faceți clic dreapta pentru a termina."
-
-#: flatcamTools/ToolNonCopperClear.py:959 flatcamTools/ToolPaint.py:912
-msgid ""
-"[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), "
-msgstr ""
-"[ERROR_NOTCL] Valoarea de suprapunere trrebuie sa ia valori intre 0 "
-"(inclusiv) si 1 (exclusiv)."
-
-#: flatcamTools/ToolNonCopperClear.py:1027 flatcamTools/ToolPaint.py:1109
-msgid "[ERROR_NOTCL] No object available."
-msgstr "[ERROR_NOTCL] Nici-un obiect disponibil."
-
-#: flatcamTools/ToolNonCopperClear.py:1033
-#: flatcamTools/ToolNonCopperClear.py:1042
-msgid "[WARNING_NOTCL] Buffering ..."
-msgstr "[WARNING_NOTCL] Buffering ..."
-
-#: flatcamTools/ToolNonCopperClear.py:1035
-#: flatcamTools/ToolNonCopperClear.py:1044
-msgid "[success] Buffering finished ..."
-msgstr "[success] Buferarea terminată ..."
-
-#: flatcamTools/ToolNonCopperClear.py:1049
-msgid "[ERROR_NOTCL] The selected object is not suitable for copper clearing."
-msgstr ""
-"[ERROR_NOTCL] Obiectul selectat nu este potrivit pentru curățarea cuprului."
-
-#: flatcamTools/ToolNonCopperClear.py:1056
-msgid ""
-"[ERROR_NOTCL] Could not get the extent of the area to be non copper cleared."
-msgstr ""
-"[ERROR_NOTCL] Nu s-a putut obtine intinderea suprafaței care să fie curățată "
-"de cupru."
-
-#: flatcamTools/ToolNonCopperClear.py:1096
-#: flatcamTools/ToolNonCopperClear.py:1217
-msgid "Clearing Non-Copper areas."
-msgstr "Se curăță PCB-ul de cuprul in exces."
-
-#: flatcamTools/ToolNonCopperClear.py:1115
+#: flatcamTools/ToolNonCopperClear.py:1083 flatcamTools/ToolPaint.py:945
#, python-format
-msgid "[success] Non-Copper Clearing with ToolDia = %s started."
-msgstr "[success] Curățarea de Cupru in exces cu Dia Unealtă = %s a inceput."
+msgid "Could not retrieve object: %s"
+msgstr "Nu s-a putut incărca obiectul: %s"
-#: flatcamTools/ToolNonCopperClear.py:1184
-#, python-format
-msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
-msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
+#: flatcamTools/ToolNonCopperClear.py:1103
+msgid "Wrong Tool Dia value format entered, use a number."
+msgstr "Diametrul uneltei este in format gresit, foloseşte un număr Real."
-#: flatcamTools/ToolNonCopperClear.py:1189
-msgid "[success] NCC Tool finished."
-msgstr "[success] Unealta NCC s-a terminat."
+#: flatcamTools/ToolNonCopperClear.py:1112 flatcamTools/ToolPaint.py:981
+msgid "No selected tools in Tool Table."
+msgstr "Nu sunt unelte selectate in Tabela de Unelte."
-#: flatcamTools/ToolNonCopperClear.py:1191
-msgid ""
-"[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
-"cleared. Check the result."
+#: flatcamTools/ToolNonCopperClear.py:1137
+msgid "Click the start point of the area."
+msgstr "Faceți clic pe punctul de pornire al zonei."
+
+#: flatcamTools/ToolNonCopperClear.py:1148 flatcamTools/ToolPaint.py:1037
+msgid "Click the end point of the paint area."
+msgstr "Faceți clic pe punctul final al zonei de pictat."
+
+#: flatcamTools/ToolNonCopperClear.py:1154 flatcamTools/ToolPaint.py:1043
+msgid "Zone added. Click to start adding next zone or right click to finish."
msgstr ""
-"[WARNING_NOTCL] Unealta NCC a terminat lucrul dar unele zone PCB nu au putut "
-"fi curățate de Cu. Verifică rezultatul."
+"Zona adăugată. Faceți clic stanga pt a continua adăugarea de zone sau click "
+"dreapta pentru a termina."
-#: flatcamTools/ToolNonCopperClear.py:1236
-#, python-format
-msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
-msgstr "[success] Curățarea de Cupru tip Rest cu dia unealtă = %s a inceput.."
+#: flatcamTools/ToolNonCopperClear.py:1318
+msgid "Non-Copper clearing ..."
+msgstr "Curățare Non-Cupru ..."
-#: flatcamTools/ToolNonCopperClear.py:1334
-#, python-format
-msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
-msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
+#: flatcamTools/ToolNonCopperClear.py:1327
+msgid "NCC Tool started. Reading parameters."
+msgstr "Unealta NCC a pornit. Se citesc parametrii."
-#: flatcamTools/ToolNonCopperClear.py:1342
+#: flatcamTools/ToolNonCopperClear.py:1395
+msgid "NCC Tool. Preparing non-copper polygons."
+msgstr "Unealta NCC. Se pregătesc poligoanele non-cupru."
+
+#: flatcamTools/ToolNonCopperClear.py:1423 flatcamTools/ToolPaint.py:2431
+msgid "No object available."
+msgstr "Nici-un obiect disponibil."
+
+#: flatcamTools/ToolNonCopperClear.py:1465
+msgid "The reference object type is not supported."
+msgstr "Tipul de obiect de referintă nu este acceptat."
+
+#: flatcamTools/ToolNonCopperClear.py:1487
msgid ""
-"[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
-"settings."
+"NCC Tool. Finished non-copper polygons. Normal copper clearing task started."
msgstr ""
-"[ERROR_NOTCL] Unealta NCC a termiant lucrul dar nu a fost posibil sa fie "
-"curățată de Cu obiectul cu setările curente."
+"Unelata NCC. S-a terminat pregătirea poligoanelor non-cupru. Taskul de "
+"curatare normal de cupru a inceput."
+
+#: flatcamTools/ToolNonCopperClear.py:1519
+msgid "NCC Tool. Calculate 'empty' area."
+msgstr "Unealta NCC. Calculează aria 'goală'."
+
+#: flatcamTools/ToolNonCopperClear.py:1534
+#: flatcamTools/ToolNonCopperClear.py:1628
+#: flatcamTools/ToolNonCopperClear.py:1640
+#: flatcamTools/ToolNonCopperClear.py:1867
+#: flatcamTools/ToolNonCopperClear.py:1959
+#: flatcamTools/ToolNonCopperClear.py:1971
+msgid "Buffering finished"
+msgstr "Buferarea terminată"
+
+#: flatcamTools/ToolNonCopperClear.py:1647
+#: flatcamTools/ToolNonCopperClear.py:1977
+msgid "The selected object is not suitable for copper clearing."
+msgstr "Obiectul selectat nu este potrivit pentru curățarea cuprului."
+
+#: flatcamTools/ToolNonCopperClear.py:1652
+#: flatcamTools/ToolNonCopperClear.py:1982
+msgid "Could not get the extent of the area to be non copper cleared."
+msgstr ""
+"Nu s-a putut obtine intinderea suprafaței care să fie curățată de cupru."
+
+#: flatcamTools/ToolNonCopperClear.py:1659
+msgid "NCC Tool. Finished calculation of 'empty' area."
+msgstr "Unealta NCC. S-a terminat calculul suprafetei 'goale'."
+
+#: flatcamTools/ToolNonCopperClear.py:1669
+#: flatcamTools/ToolNonCopperClear.py:2007
+msgid "NCC Tool clearing with tool diameter = "
+msgstr "Unealta NCC cu diametrul uneltei = "
+
+#: flatcamTools/ToolNonCopperClear.py:1672
+#: flatcamTools/ToolNonCopperClear.py:2010
+msgid "started."
+msgstr "a inceput."
+
+#: flatcamTools/ToolNonCopperClear.py:1810 flatcamTools/ToolPaint.py:1412
+#: flatcamTools/ToolPaint.py:1742 flatcamTools/ToolPaint.py:1890
+#: flatcamTools/ToolPaint.py:2203 flatcamTools/ToolPaint.py:2355
+msgid ""
+"There is no Painting Geometry in the file.\n"
+"Usually it means that the tool diameter is too big for the painted "
+"geometry.\n"
+"Change the painting parameters and try again."
+msgstr ""
+"Nu exista nici-o Geometrie rezultata din 'pictare' in acest fişier.\n"
+"De obicei inseamna că diametrul uneltei este prea mare pentru elemetele "
+"geometrice.\n"
+"Schimbă parametrii de 'pictare' și încearcă din nou."
+
+#: flatcamTools/ToolNonCopperClear.py:1820
+msgid "NCC Tool clear all done."
+msgstr "Unealta NCC curătare toate efectuată."
+
+#: flatcamTools/ToolNonCopperClear.py:1822
+msgid "NCC Tool clear all done but the copper features isolation is broken for"
+msgstr ""
+"Unealta NCC curătare toate efectuată dar izolatia este intreruptă pentru"
+
+#: flatcamTools/ToolNonCopperClear.py:1825
+#: flatcamTools/ToolNonCopperClear.py:2173
+msgid "tools"
+msgstr "unelte"
+
+#: flatcamTools/ToolNonCopperClear.py:2169
+msgid "NCC Tool Rest Machining clear all done."
+msgstr "Unealta NCC curătare cu prelucrare tip 'rest' efectuată."
+
+#: flatcamTools/ToolNonCopperClear.py:2172
+msgid ""
+"NCC Tool Rest Machining clear all done but the copper features isolation is "
+"broken for"
+msgstr ""
+"Unealta NCC curătare toate cu prelucrare tip 'rest' efectuată dar izolatia "
+"este intreruptă pentru"
+
+#: flatcamTools/ToolNonCopperClear.py:2596
+msgid ""
+"Try to use the Buffering Type = Full in Preferences -> Gerber General. "
+"Reload the Gerber file after this change."
+msgstr ""
+"Incearcă să folosesti optiunea Tipul de buffering = Complet in Preferinte -> "
+"Gerber General. Reincarcă fisierul Gerber după această schimbare."
#: flatcamTools/ToolPDF.py:38
msgid "PDF Import Tool"
@@ -11965,26 +12266,30 @@ msgid "Open PDF"
msgstr "Încarcă PDF"
#: flatcamTools/ToolPDF.py:159
-msgid "[WARNING_NOTCL] Open PDF cancelled."
-msgstr "[WARNING_NOTCL] Incărcarea fişier PDF anulată."
+msgid "Open PDF cancelled"
+msgstr "Deschidere PDF anulată"
-#: flatcamTools/ToolPDF.py:186
+#: flatcamTools/ToolPDF.py:190
msgid "Parsing PDF file ..."
msgstr "Se parsează fisierul PDF ..."
-#: flatcamTools/ToolPDF.py:265 flatcamTools/ToolPDF.py:338
+#: flatcamTools/ToolPDF.py:220
+#, python-format
+msgid "[success] Opened: %s"
+msgstr "[success] Incărcat: %s"
+
+#: flatcamTools/ToolPDF.py:273 flatcamTools/ToolPDF.py:348
#, python-format
msgid "Rendering PDF layer #%d ..."
msgstr "Se generează layer-ul PDF #%d ..."
-#: flatcamTools/ToolPDF.py:269 flatcamTools/ToolPDF.py:342
-msgid "[ERROR_NOTCL] Open PDF file failed."
-msgstr "[ERROR_NOTCL] Deschiderea unui fişier PDF a eșuat."
+#: flatcamTools/ToolPDF.py:278 flatcamTools/ToolPDF.py:353
+msgid "Open PDF file failed."
+msgstr "Deschiderea fişierului PDF a eşuat."
-#: flatcamTools/ToolPDF.py:274 flatcamTools/ToolPDF.py:347
-#, python-format
-msgid "[success] Rendered: %s"
-msgstr "[success] Analizat: %s"
+#: flatcamTools/ToolPDF.py:284 flatcamTools/ToolPDF.py:358
+msgid "Rendered"
+msgstr "Randat"
#: flatcamTools/ToolPaint.py:70
msgid ""
@@ -12026,10 +12331,45 @@ msgstr ""
"Doar uneltele care efectiv au creat geometrie vor fi prezente in obiectul\n"
"final. Aceasta deaorece unele unelte nu vor putea genera geometrie."
+#: flatcamTools/ToolPaint.py:124
+msgid ""
+"The Tool Type (TT) can be:
- Circular with 1 ... 4 teeth -> it is "
+"informative only. Being circular,
the cut width in material is exactly "
+"the tool diameter.
- Ball -> informative only and make reference "
+"to the Ball type endmill.
- V-Shape -> it will disable de Z-Cut "
+"parameter in the resulting geometry UI form and enable two additional UI "
+"form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
+"those two values will adjust the Z-Cut parameter such as the cut width into "
+"material will be equal with the value in the Tool Diameter column of this "
+"table.
Choosing the V-Shape Tool Type automatically will select "
+"the Operation Type in the resulting geometry as Isolation."
+msgstr ""
+"Tipul uneltei (TU) poate fi::
- Circular cu 1 ... 4 dinti -> doar "
+"informativ. prin forma sa circulara,
lăţimea de tăiere este tot una cu "
+"diametrul sau
- Bila -> informativ și face referire la frezele cu "
+"cap rotund.
- V-Shape -> va dezactiva parametrul >Z tăiere< "
+"deoarece acesta este acum calculat și va afisa 2 noi parametri in UI: V_dia "
+"și V_unghi. Ajustarea acestor parametri va modifica param. calculat >Z "
+"tăiere< a.i lăţimea de tăiere in material va fi egală cu valoarea >Dia "
+"unealtă< din coloana tabelei de Unelte.
Alegerea tipului V-Shape "
+"va selecta automat Tipul Operaţiei ca fiind Izolare."
+
#: flatcamTools/ToolPaint.py:164
msgid "Diameter for the new tool."
msgstr "Diametrul pt noua unealtă."
+#: flatcamTools/ToolPaint.py:235
+msgid ""
+"Algorithm for painting:\n"
+"- Standard: Fixed step inwards.\n"
+"- Seed-based: Outwards from seed.\n"
+"- Line-based: Parallel lines."
+msgstr ""
+"Algoritm pentru pictură:\n"
+"- Standard: pas fix spre interior.\n"
+"- Semințe: înspre exterior porning de la punctul sămanță.\n"
+"- Linii: linii paralele."
+
#: flatcamTools/ToolPaint.py:269
msgid ""
"If checked, use 'rest machining'.\n"
@@ -12050,21 +12390,6 @@ msgstr ""
"precedenta.\n"
"Daca nu este bifat, foloseşte algoritmul standard."
-#: flatcamTools/ToolPaint.py:284
-msgid ""
-"How to select the polygons to paint.
Options:
- Single Polygons"
-"B>: left mouse click on the polygon to be painted.
- Area Selection"
-"B>: left mouse click to start selection of the area to be painted.
- "
-"All Polygons: paint all polygons.
- Reference Object: paint "
-"an area described by an external reference object."
-msgstr ""
-"Cum să selectați poligoanele de pictat.
Opțiuni:
- Poligoane "
-"individuale : faceți clic stânga cu mouse pe poligonul care urmează să "
-"fie pictat.
-Selecția zonei: faceți clic stânga cu mouse-ul "
-"pentru a începe selecția zonei care urmează să fie pictată.
- Toate "
-"poligoanele : pictați toate poligoanele.
-Obiect de referință"
-"B>: pictați o zonă descrisă de un obiect de referință extern."
-
#: flatcamTools/ToolPaint.py:294
msgid "Single Polygon"
msgstr "Poligon unic"
@@ -12103,107 +12428,151 @@ msgstr ""
"- „Obiect de referință” - va face o curățare fără cupru în zona specificată "
"de un alt obiect."
-#: flatcamTools/ToolPaint.py:897
-msgid "geometry_on_paint_button"
-msgstr "geometry_on_paint_button"
+#: flatcamTools/ToolPaint.py:912
+msgid "Paint Tool. Reading parameters."
+msgstr "Unealta Paint. Se citesc parametrii."
-#: flatcamTools/ToolPaint.py:916 flatcamTools/ToolPaint.py:952
-msgid "[WARNING_NOTCL] Click inside the desired polygon."
+#: flatcamTools/ToolPaint.py:927
+msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive)"
msgstr ""
-"[WARNING_NOTCL] Click in interiorul poligonului care se dorește să fie "
-"'pictat'."
+"Valoarea de suprapunere trrebuie sa ia valori intre 0 (inclusiv) si 1 "
+"(exclusiv)."
-#: flatcamTools/ToolPaint.py:939
-msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
-msgstr "[ERROR_NOTCL] Nu se poate face 'pictare' pe geometrii MultiGeo ..."
+#: flatcamTools/ToolPaint.py:931 flatcamTools/ToolPaint.py:994
+msgid "Click inside the desired polygon."
+msgstr "Click in interiorul poligonului care se dorește să fie 'pictat'."
-#: flatcamTools/ToolPaint.py:961 flatcamTools/ToolPaint.py:1305
-#: flatcamTools/ToolPaint.py:1612
+#: flatcamTools/ToolPaint.py:951 flatcamTools/ToolPanelize.py:366
+#: tclCommands/TclCommandBbox.py:66 tclCommands/TclCommandNregions.py:65
+msgid "Object not found"
+msgstr "Obiectul nu a fost gasit"
+
+#: flatcamTools/ToolPaint.py:959
+msgid "Can't do Paint on MultiGeo geometries"
+msgstr "Nu se poate face 'pictare' pe geometrii MultiGeo"
+
+#: flatcamTools/ToolPaint.py:1003 flatcamTools/ToolPaint.py:1239
msgid "Painting polygon..."
msgstr "Se 'pictează' un poligon..."
-#: flatcamTools/ToolPaint.py:980
-msgid "[WARNING_NOTCL] Click the start point of the paint area."
-msgstr "[WARNING_NOTCL] Faceți clic pe punctul de pornire al zonei de pictat."
+#: flatcamTools/ToolPaint.py:1025
+msgid "Click the start point of the paint area."
+msgstr "Faceți clic pe punctul de pornire al zonei de pictat."
-#: flatcamTools/ToolPaint.py:1154
+#: flatcamTools/ToolPaint.py:1197 flatcamTools/ToolPaint.py:1200
+#: flatcamTools/ToolPaint.py:1202
+msgid "Paint Tool. Normal painting polygon task started."
+msgstr "Unealta Paint. Taskul de pictare normal a unui polygon a inceput."
+
+#: flatcamTools/ToolPaint.py:1198 flatcamTools/ToolPaint.py:1588
+#: flatcamTools/ToolPaint.py:1763 flatcamTools/ToolPaint.py:2045
+#: flatcamTools/ToolPaint.py:2224
+msgid "Buffering geometry..."
+msgstr "Crează o geometrie de tipul Bufer..."
+
+#: flatcamTools/ToolPaint.py:1236
msgid "[WARNING] No polygon found."
msgstr "[WARNING] Nu s-a gasit nici-un poligon."
-#: flatcamTools/ToolPaint.py:1157
-msgid "Painting polygon."
-msgstr "Se 'pictează' un poligon."
-
-#: flatcamTools/ToolPaint.py:1199
-msgid "[ERROR_NOTCL] Geometry could not be painted completely"
-msgstr "[ERROR_NOTCL] Geometria nu a fost posibil să fie 'pictata' complet."
-
-#: flatcamTools/ToolPaint.py:1225
+#: flatcamTools/ToolPaint.py:1240
#, python-format
+msgid "Paint Tool. Painting polygon at location: %s"
+msgstr "Unealta Paint. Se pictează poligonul aflat in pozitia: %s"
+
+#: flatcamTools/ToolPaint.py:1323
+msgid "Geometry could not be painted completely"
+msgstr "Geometria nu a fost posibil să fie 'pictată' complet"
+
+#: flatcamTools/ToolPaint.py:1368
msgid ""
-"[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
-"different strategy of paint\n"
-"%s"
+"Could not do Paint. Try a different combination of parameters. Or a "
+"different strategy of paint"
msgstr ""
-"[ERROR] Nu s-a putut face operatia de 'pictare'. Incearcă o combinaţie "
-"diferita de parametri. Sau o strategie diferita de 'pictare'.\n"
-"%s"
+"Nu s-a putut face operatia de 'pictare'. Incearcă o combinaţie diferita de "
+"parametri. Sau o strategie diferita de 'pictare'"
-#: flatcamTools/ToolPaint.py:1267
-#, python-format
-msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
-msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
+#: flatcamTools/ToolPaint.py:1417
+msgid "Paint Single Done."
+msgstr "Pictarea unui polygon efectuată."
-#: flatcamTools/ToolPaint.py:1273 flatcamTools/ToolPaint.py:1579
-#: flatcamTools/ToolPaint.py:1882
+#: flatcamTools/ToolPaint.py:1442
+#| msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
+msgid "PaintTool.paint_poly()"
+msgstr "PaintTool.paint_poly()"
+
+#: flatcamTools/ToolPaint.py:1449 flatcamTools/ToolPaint.py:1918
+#: flatcamTools/ToolPaint.py:2383
msgid "Polygon Paint started ..."
msgstr "Paint pt poligon a inceput ..."
-#: flatcamTools/ToolPaint.py:1433 flatcamTools/ToolPaint.py:1524
-#: flatcamTools/ToolPaint.py:1736 flatcamTools/ToolPaint.py:1827
-#, python-format
-msgid ""
-"[ERROR] Could not do Paint All. Try a different combination of parameters. "
-"Or a different Method of paint\n"
-"%s"
-msgstr ""
-"[ERROR] Nu s-a putut efectua op. 'Paint' pt toate poligoanele. Incearcă o "
-"combinaţie diferita de parametri. Sau încearcă o alta metoda de 'pictat'\n"
-"%s"
+#: flatcamTools/ToolPaint.py:1505 flatcamTools/ToolPaint.py:1975
+msgid "Painting polygons..."
+msgstr "Se 'pictează' poligoane..."
-#: flatcamTools/ToolPaint.py:1457 flatcamTools/ToolPaint.py:1760
-msgid ""
-"[ERROR] There is no Painting Geometry in the file.\n"
-"Usually it means that the tool diameter is too big for the painted "
-"geometry.\n"
-"Change the painting parameters and try again."
-msgstr ""
-"[ERROR] Nu exista nici-o Geometrie rezultata din 'pictare' in acest fişier.\n"
-"De obicei inseamna că diametrul uneltei este prea mare pentru elemetele "
-"geometrice.\n"
-"Schimbă parametrii de 'pictare' și încearcă din nou."
+#: flatcamTools/ToolPaint.py:1587 flatcamTools/ToolPaint.py:1590
+#: flatcamTools/ToolPaint.py:1592
+msgid "Paint Tool. Normal painting all task started."
+msgstr "Unealta Paint. Taskul de pictare a tuturor poligoanelor a inceput."
-#: flatcamTools/ToolPaint.py:1466 flatcamTools/ToolPaint.py:1769
+#: flatcamTools/ToolPaint.py:1626 flatcamTools/ToolPaint.py:1796
+#: flatcamTools/ToolPaint.py:2090 flatcamTools/ToolPaint.py:2264
+msgid "Painting with tool diameter = "
+msgstr "Pictand cu o unealtă cu diametrul = "
+
+#: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:1799
+#: flatcamTools/ToolPaint.py:2093 flatcamTools/ToolPaint.py:2267
+msgid "started"
+msgstr "a inceput"
+
+#: flatcamTools/ToolPaint.py:1691 flatcamTools/ToolPaint.py:1845
+msgid ""
+"Could not do Paint All. Try a different combination of parameters. Or a "
+"different Method of paint"
+msgstr ""
+"Nu s-a efectuat op. 'Paint' pt toate poligoanele. Incearcă o combinaţie "
+"diferită de parametri. Sau încearcă o alta metoda de 'pictat'"
+
+#: flatcamTools/ToolPaint.py:1751
msgid "[success] Paint All Done."
msgstr "[success] 'Paint' pt toate poligoanele a fost efectuata."
-#: flatcamTools/ToolPaint.py:1554 flatcamTools/ToolPaint.py:1857
-msgid ""
-"[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
-"Usually it means that the tool diameter is too big for the painted "
-"geometry.\n"
-"Change the painting parameters and try again."
+#: flatcamTools/ToolPaint.py:1762 flatcamTools/ToolPaint.py:1765
+#: flatcamTools/ToolPaint.py:1767
+msgid "Paint Tool. Rest machining painting all task started."
msgstr ""
-"[ERROR_NOTCL] Nu exista o geometrie 'pictata' in acest fişier.\n"
-"De obicei aceasta inseamna că diametrul uneltei este prea mare \n"
-"pt a fi folosit in obiectul Geometrie de 'pictat'.\n"
-"Schimbă parametrii de 'pictat' și încearcă din nou."
+"Unealta Paint. Taskul de pictare prin prelucrare 'rest' a tuturor "
+"poligoanelor a inceput."
-#: flatcamTools/ToolPaint.py:1563 flatcamTools/ToolPaint.py:1866
-msgid "[success] Paint All with Rest-Machining done."
+#: flatcamTools/ToolPaint.py:1899 flatcamTools/ToolPaint.py:2364
+msgid "Paint All with Rest-Machining done."
+msgstr "'Paint' pentru toate poligoanele cu strategia Rest a fost efectuată."
+
+#: flatcamTools/ToolPaint.py:2044 flatcamTools/ToolPaint.py:2047
+#: flatcamTools/ToolPaint.py:2049
+msgid "Paint Tool. Normal painting area task started."
+msgstr "Unealta Paint. Taskul de pictare normal a unei arii a inceput."
+
+#: flatcamTools/ToolPaint.py:2153 flatcamTools/ToolPaint.py:2311
+#, python-format
+msgid ""
+"Could not do Paint All. Try a different combination of parameters. Or a "
+"different Method of paint\n"
+"%s"
msgstr ""
-"[success] 'Paint' pentru toate poligoanele cu strategia Rest a fost "
-"efectuata."
+"Nu s-a putut efectua op. 'Paint' pt toate poligoanele. Incearcă o combinaţie "
+"diferita de parametri. Sau încearcă o alta metoda de 'pictat'\n"
+"%s"
+
+#: flatcamTools/ToolPaint.py:2212
+msgid "[success] Paint Area Done."
+msgstr "[success] 'Paint' pt poligoanele intr-o arie a fost efectuată."
+
+#: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2226
+#: flatcamTools/ToolPaint.py:2228
+msgid "Paint Tool. Rest machining painting area task started."
+msgstr ""
+"Unealta Paint. Taskul de pictare a unei arii cu strategia de masinare 'rest' "
+"a inceput."
#: flatcamTools/ToolPanelize.py:25
msgid "Panelize PCB"
@@ -12332,41 +12701,39 @@ msgstr ""
msgid "Panel. Tool"
msgstr "Unealta Panel"
-#: flatcamTools/ToolPanelize.py:377
-#, python-format
-msgid "[WARNING_NOTCL]No object Box. Using instead %s"
+#: flatcamTools/ToolPanelize.py:465
+msgid "Columns or Rows are zero value. Change them to a positive integer."
msgstr ""
-"[WARNING_NOTCL] Nu este disponibil nici-un container Box pentru obiect. Se "
-"foloseşte %s"
+"Val. coloane sau linii este zero. Schimbă aceasta val. intr-un număr pozitiv "
+"intreg."
-#: flatcamTools/ToolPanelize.py:460
-msgid ""
-"[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive "
-"integer."
-msgstr ""
-"[ERROR_NOTCL] Val. coloane sau linii este zero. Schimbă aceasta val. intr-un "
-"număr pozitiv intreg."
-
-#: flatcamTools/ToolPanelize.py:485 flatcamTools/ToolPanelize.py:642
+#: flatcamTools/ToolPanelize.py:490
msgid "Generating panel ... Please wait."
-msgstr "Se generează panelul ... Va rugam asteptati!"
+msgstr "Se generează panelul ... Va rugăm asteptati."
-#: flatcamTools/ToolPanelize.py:635
-msgid "[success] Panel done..."
-msgstr "[success] Panel executat ..."
+#: flatcamTools/ToolPanelize.py:631
+msgid "Panel done..."
+msgstr "Panel executat ..."
-#: flatcamTools/ToolPanelize.py:638
+#: flatcamTools/ToolPanelize.py:634
#, python-brace-format
+#| msgid ""
+#| "[WARNING] Too big for the constrain area. Final panel has {col} columns "
+#| "and {row} rows"
msgid ""
-"[WARNING] Too big for the constrain area. Final panel has {col} columns and "
+"{text} Too big for the constrain area. Final panel has {col} columns and "
"{row} rows"
msgstr ""
-"[WARNING] Prea mare pt aria desemnata. Panelul final are {col} coloane și "
-"{row} linii"
+"{text} Prea mare pt aria desemnată. Panelul final are {col} coloane si {row} "
+"linii"
-#: flatcamTools/ToolPanelize.py:647
-msgid "[success] Panel created successfully."
-msgstr "[success] Panel creat cu succes."
+#: flatcamTools/ToolPanelize.py:638
+msgid "Generating panel..."
+msgstr "Se generează Panel-ul..."
+
+#: flatcamTools/ToolPanelize.py:643
+msgid "Panel created successfully."
+msgstr "Panel creat cu succes."
#: flatcamTools/ToolPcbWizard.py:32
msgid "PcbWizard Import Tool"
@@ -12390,7 +12757,7 @@ msgid ""
"Usually it has a .DRL extension"
msgstr ""
"Incarcă fisierul Excellon.\n"
-"De obicei are extensia .DRL."
+"De obicei are extensia .DRL"
#: flatcamTools/ToolPcbWizard.py:65
msgid "INF file"
@@ -12402,7 +12769,7 @@ msgstr "Incarca fisierul INF."
#: flatcamTools/ToolPcbWizard.py:79
msgid "Tool Number"
-msgstr "Număr unealtă:"
+msgstr "Număr unealtă"
#: flatcamTools/ToolPcbWizard.py:81
msgid "Tool diameter in file units."
@@ -12424,7 +12791,7 @@ msgstr ""
#: flatcamTools/ToolPcbWizard.py:104
msgid "Frac. digits"
-msgstr "Partea zecimală:"
+msgstr "Partea zecimală"
#: flatcamTools/ToolPcbWizard.py:106
msgid "The number of digits for the fractional part of the coordinates."
@@ -12491,123 +12858,117 @@ msgstr "Incarcă un fisier Excellon tip PCBWizard"
msgid "Load PcbWizard INF file"
msgstr "Incarcă un fisier INF tip PCBWizard"
-#: flatcamTools/ToolPcbWizard.py:365
+#: flatcamTools/ToolPcbWizard.py:366
msgid ""
-"[ERROR] The INF file does not contain the tool table.\n"
+"The INF file does not contain the tool table.\n"
"Try to open the Excellon file from File -> Open -> Excellon\n"
"and edit the drill diameters manually."
msgstr ""
-"[ERROR] Fisierul INF nu contine tabela de unelte.\n"
+"Fisierul INF nu contine tabela de unelte.\n"
"Incearcă să deschizi fisierul Excellon din Fisier -> Deschide -> \n"
"Excellon si să editezi manual diametrele uneltelor."
-#: flatcamTools/ToolPcbWizard.py:385
-msgid "[success] PcbWizard .INF file loaded."
-msgstr "[success] Fisierul .INF tip PCBWizard a fost incărcat."
+#: flatcamTools/ToolPcbWizard.py:387
+msgid "PcbWizard .INF file loaded."
+msgstr "Fisierul .INF tip PCBWizard a fost incărcat."
-#: flatcamTools/ToolPcbWizard.py:389
-msgid "[success] Main PcbWizard Excellon file loaded."
-msgstr "[success] Fişierul Excellon tip PCBWizard a fost incărcat."
+#: flatcamTools/ToolPcbWizard.py:392
+msgid "Main PcbWizard Excellon file loaded."
+msgstr "Fişierul Excellon tip PCBWizard a fost incărcat."
-#: flatcamTools/ToolPcbWizard.py:426
-#, python-format
-msgid "[ERROR_NOTCL] Cannot parse file: %s"
-msgstr "[ERROR_NOTCL] Fişierul %s nu se poate parsa."
+#: flatcamTools/ToolPcbWizard.py:431
+msgid "Cannot parse file"
+msgstr "Nu se poate parsa fişierul"
-#: flatcamTools/ToolPcbWizard.py:450
+#: flatcamTools/ToolPcbWizard.py:456
msgid "Importing Excellon."
msgstr "Excellon in curs de import."
-#: flatcamTools/ToolPcbWizard.py:457
-msgid "[ERROR_NOTCL] Import Excellon file failed."
-msgstr "[ERROR_NOTCL] Fişierul Excellon nu a fost posibil să fie importat."
+#: flatcamTools/ToolPcbWizard.py:463
+msgid "Import Excellon file failed."
+msgstr "Fişierul Excellon nu a fost posibil să fie importat."
-#: flatcamTools/ToolPcbWizard.py:464
-#, python-format
-msgid "[success] Imported: %s"
-msgstr "[success] Importat: %s"
+#: flatcamTools/ToolPcbWizard.py:471
+msgid "Imported"
+msgstr "Importat"
-#: flatcamTools/ToolPcbWizard.py:467
-msgid "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
+#: flatcamTools/ToolPcbWizard.py:475
+msgid "Excellon merging is in progress. Please wait..."
+msgstr "Fuziunea fisiere Excellon este in curs. Vă rugăm aşteptați ..."
+
+#: flatcamTools/ToolPcbWizard.py:478
+msgid "The imported Excellon file is None."
+msgstr "Fişierul Excellon importat este gol."
+
+#: flatcamTools/ToolProperties.py:112
+msgid "Properties Tool was not displayed. No object selected."
msgstr ""
-"[WARNING_NOTCL] Fuziunea fisiere Excellon este in curs. Vă rugăm "
-"aşteptați ..."
+"Unealta Proprietati nu a fost afișată. Nici-un obiect nu este selectat."
-#: flatcamTools/ToolPcbWizard.py:469
-msgid "[ERROR_NOTCL] The imported Excellon file is None."
-msgstr "[ERROR_NOTCL] Fişierul Excellon importat este gol."
+#: flatcamTools/ToolProperties.py:120
+msgid "Object Properties are displayed."
+msgstr "Proprietatile obiectului sunt afisate in Tab-ul Unealta."
-#: flatcamTools/ToolProperties.py:108
-msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
-msgstr ""
-"[ERROR_NOTCL] Unealta Proprietati nu a fost afișată. Nici-un obiect nu este "
-"selectat."
-
-#: flatcamTools/ToolProperties.py:115
-msgid "[success] Object Properties are displayed."
-msgstr "[success] Proprietatile obiectului sunt afisate in Tab-ul Unealta."
-
-#: flatcamTools/ToolProperties.py:116
+#: flatcamTools/ToolProperties.py:121
msgid "Properties Tool"
msgstr "Unealta Proprietati"
-#: flatcamTools/ToolProperties.py:125
+#: flatcamTools/ToolProperties.py:130
msgid "TYPE"
msgstr "TIP"
-#: flatcamTools/ToolProperties.py:126
+#: flatcamTools/ToolProperties.py:131
msgid "NAME"
msgstr "NUME"
-#: flatcamTools/ToolProperties.py:127
+#: flatcamTools/ToolProperties.py:132
msgid "Dimensions"
msgstr "Dimensiuni"
-#: flatcamTools/ToolProperties.py:130
+#: flatcamTools/ToolProperties.py:135
msgid "Options"
msgstr "Opțiuni"
-#: flatcamTools/ToolProperties.py:141
+#: flatcamTools/ToolProperties.py:146
msgid "Geo Type"
msgstr "Tip Geo."
-#: flatcamTools/ToolProperties.py:142
+#: flatcamTools/ToolProperties.py:147
msgid "Single-Geo"
msgstr "Geo-Unică"
-#: flatcamTools/ToolProperties.py:142
+#: flatcamTools/ToolProperties.py:147
msgid "Multi-Geo"
msgstr "Geo-Multi"
-#: flatcamTools/ToolProperties.py:161
-msgid "Width"
-msgstr "Lătime"
+#: flatcamTools/ToolProperties.py:155
+msgid "Calculating dimensions ... Please wait."
+msgstr "Se calculează dimensiunile ... Aşteaptă."
-#: flatcamTools/ToolProperties.py:167 flatcamTools/ToolProperties.py:170
-msgid "Box Area"
-msgstr "Arie pătratică"
-
-#: flatcamTools/ToolProperties.py:187 flatcamTools/ToolProperties.py:190
-msgid "Convex_Hull Area"
-msgstr "Arie convexă"
-
-#: flatcamTools/ToolProperties.py:195
+#: flatcamTools/ToolProperties.py:246
msgid "Inch"
msgstr "Inch"
-#: flatcamTools/ToolProperties.py:196
+#: flatcamTools/ToolProperties.py:247
msgid "Metric"
msgstr "Metric"
-#: flatcamTools/ToolProperties.py:247 flatcamTools/ToolProperties.py:261
-#: flatcamTools/ToolProperties.py:264 flatcamTools/ToolProperties.py:267
+#: flatcamTools/ToolProperties.py:298 flatcamTools/ToolProperties.py:312
+#: flatcamTools/ToolProperties.py:315 flatcamTools/ToolProperties.py:318
msgid "Present"
msgstr "Prezent"
-#: flatcamTools/ToolProperties.py:247 flatcamTools/ToolProperties.py:261
-#: flatcamTools/ToolProperties.py:264 flatcamTools/ToolProperties.py:267
-msgid "None"
-msgstr "Nimic"
+#: flatcamTools/ToolProperties.py:352
+msgid "Width"
+msgstr "Lătime"
+
+#: flatcamTools/ToolProperties.py:357 flatcamTools/ToolProperties.py:361
+msgid "Box Area"
+msgstr "Arie pătratică"
+
+#: flatcamTools/ToolProperties.py:358 flatcamTools/ToolProperties.py:362
+msgid "Convex_Hull Area"
+msgstr "Arie convexă"
#: flatcamTools/ToolShell.py:69
msgid "...proccessing..."
@@ -12666,8 +13027,8 @@ msgid ""
"Add a new nozzle tool to the Tool Table\n"
"with the diameter specified above."
msgstr ""
-"Adaugă o unealtă nou tip Nozzle in Tabela de Unelte\n"
-"cu diametrul specificat mai sus,"
+"Adaugă o unealtă nouă tip Nozzle in Tabela de Unelte\n"
+"cu diametrul specificat mai sus."
#: flatcamTools/ToolSolderPaste.py:129
msgid "Generate solder paste dispensing geometry."
@@ -12819,106 +13180,99 @@ msgstr ""
msgid "Delete Object"
msgstr "Șterge Obiectul"
-#: flatcamTools/ToolSolderPaste.py:797
-msgid ""
-"[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
+#: flatcamTools/ToolSolderPaste.py:799
+msgid "Adding Nozzle tool cancelled. Tool already in Tool Table."
msgstr ""
-"[WARNING_NOTCL] Adăugarea unei unelte Nozzle a fost anulată. Unealta exista "
-"deja in Tabela de Unelte."
+"Adăugarea unei unelte Nozzle a fost anulată. Unealta există deja in Tabela "
+"de Unelte."
-#: flatcamTools/ToolSolderPaste.py:802
-msgid "[success] New Nozzle tool added to Tool Table."
-msgstr "[success] A fost adăugată o noua unealtă Nozzle in Tabela de Unelte."
+#: flatcamTools/ToolSolderPaste.py:805
+msgid "New Nozzle tool added to Tool Table."
+msgstr "A fost adăugată o noua unealtă Nozzle in Tabela de Unelte."
-#: flatcamTools/ToolSolderPaste.py:844
-msgid "[success] Nozzle tool from Tool Table was edited."
-msgstr "[success] Unealta Nozzle din Tabela de Unelte a fost editata."
-
-#: flatcamTools/ToolSolderPaste.py:901
-msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
-msgstr ""
-"[WARNING_NOTCL] Ștergerea a eșuat. Selectează o unealtă Nozzle pt a o șterge."
+#: flatcamTools/ToolSolderPaste.py:848
+msgid "Nozzle tool from Tool Table was edited."
+msgstr "Unealta Nozzle din Tabela de Unelte a fost editată."
#: flatcamTools/ToolSolderPaste.py:906
-msgid "[success] Nozzle tool(s) deleted from Tool Table."
-msgstr "[success] Uneltele (nozzle) au fost șterse din Tabela de Unelte."
+msgid "Delete failed. Select a Nozzle tool to delete."
+msgstr "Ștergerea a eșuat. Selectează o unealtă Nozzle pt a o șterge."
-#: flatcamTools/ToolSolderPaste.py:961
-msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
+#: flatcamTools/ToolSolderPaste.py:912
+msgid "Nozzle tool(s) deleted from Tool Table."
+msgstr "Uneltele (nozzle) au fost șterse din Tabela de Unelte."
+
+#: flatcamTools/ToolSolderPaste.py:968
+msgid "No SolderPaste mask Gerber object loaded."
msgstr ""
-"[WARNING_NOTCL] Nu este incărcat un obiect Gerber cu informatia mastii pt "
-"pastă de fludor."
+"Nu este incărcat ni-un obiect Gerber cu informatia măstii pt pasta de fludor."
-#: flatcamTools/ToolSolderPaste.py:979
+#: flatcamTools/ToolSolderPaste.py:986
msgid "Creating Solder Paste dispensing geometry."
msgstr "Se creează Geometrie pt dispensare pastă de fludor."
-#: flatcamTools/ToolSolderPaste.py:991
-msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
-msgstr "[WARNING_NOTCL] Nu sunt unelte Nozzle in Tabela de Unelte."
-
-#: flatcamTools/ToolSolderPaste.py:1120
-msgid "[success] Solder Paste geometry generated successfully..."
-msgstr ""
-"[success] Obiectul Geometrie pt dispens. de pastă de fludor a fost generat "
-"cu succes ..."
+#: flatcamTools/ToolSolderPaste.py:999
+msgid "No Nozzle tools in the tool table."
+msgstr "Nu sunt unelte Nozzle in Tabela de Unelte."
#: flatcamTools/ToolSolderPaste.py:1126
-msgid ""
-"[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
-"diameters..."
-msgstr ""
-"[WARNING_NOTCL] Cel puțin unele pad-uri nu au pastă de fludor datorita "
-"diametrelor uneltelor (nozzle) ne adecvate."
+msgid "Cancelled. Empty file, it has no geometry..."
+msgstr "Anulat. Fişier gol, nu are geometrie ..."
-#: flatcamTools/ToolSolderPaste.py:1140
+#: flatcamTools/ToolSolderPaste.py:1130
+msgid "Solder Paste geometry generated successfully"
+msgstr ""
+"Obiectul Geometrie pt dispens. de pastă de fludor a fost generat cu succes"
+
+#: flatcamTools/ToolSolderPaste.py:1137
+msgid "Some or all pads have no solder due of inadequate nozzle diameters..."
+msgstr ""
+"Cel puțin unele pad-uri nu au pastă de fludor datorita diametrelor uneltelor "
+"(nozzle) ne adecvate."
+
+#: flatcamTools/ToolSolderPaste.py:1151
msgid "Generating Solder Paste dispensing geometry..."
msgstr "Se generează Geometria de dispensare a pastei de fludor ..."
-#: flatcamTools/ToolSolderPaste.py:1160
-msgid "[WARNING_NOTCL] There is no Geometry object available."
-msgstr "[WARNING_NOTCL] Nu exista obiect Geometrie disponibil."
+#: flatcamTools/ToolSolderPaste.py:1172
+msgid "There is no Geometry object available."
+msgstr "Nu există obiect Geometrie disponibil."
-#: flatcamTools/ToolSolderPaste.py:1164
-msgid ""
-"[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
-"geometry."
+#: flatcamTools/ToolSolderPaste.py:1177
+msgid "This Geometry can't be processed. NOT a solder_paste_tool geometry."
msgstr ""
-"[WARNING_NOTCL] Acest obiect Geometrie nu poate fi procesat Nu este o "
-"Geometrie tip solder_paste_tool."
+"Acest obiect Geometrie nu poate fi procesat Nu este o Geometrie tip "
+"solder_paste_tool."
-#: flatcamTools/ToolSolderPaste.py:1270
-#, python-format
-msgid "[success] ToolSolderPaste CNCjob created: %s"
-msgstr "[success] Obiectul CNCJob tip solder_paste_tool a fost creat: %s"
+#: flatcamTools/ToolSolderPaste.py:1285
+#| msgid "[success] ToolSolderPaste CNCjob created: %s"
+msgid "ToolSolderPaste CNCjob created"
+msgstr "ToolSolderPaste CNCjob a fost creat"
+
+#: flatcamTools/ToolSolderPaste.py:1318 flatcamTools/ToolSolderPaste.py:1323
+#: flatcamTools/ToolSolderPaste.py:1378
+msgid ""
+"This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object."
+msgstr ""
+"Acest obiect CNCJob nu poate fi procesat. Nu este un obiect CNCJob tip "
+"'solder_paste_tool'."
+
+#: flatcamTools/ToolSolderPaste.py:1348
+msgid "No Gcode in the object"
+msgstr "Nu există cod GCode in acest obiect"
-#: flatcamTools/ToolSolderPaste.py:1302 flatcamTools/ToolSolderPaste.py:1306
#: flatcamTools/ToolSolderPaste.py:1358
-msgid ""
-"[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
-"solder_paste_tool CNCJob object."
-msgstr ""
-"[WARNING_NOTCL] Acest obiect CNCJob nu poate fi procesat. Nu este un obiect "
-"CNCJob tip 'solder_paste_tool'"
+#| msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
+msgid "ToolSolderPaste.on_view_gcode()"
+msgstr "ToolSolderPaste.on_view_gcode()"
-#: flatcamTools/ToolSolderPaste.py:1330
-msgid "[ERROR_NOTCL] No Gcode in the object..."
-msgstr "[ERROR_NOTCL] Nu exista cod GCode in acest obiect ..."
-
-#: flatcamTools/ToolSolderPaste.py:1339
-#, python-format
-msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
-msgstr "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
-
-#: flatcamTools/ToolSolderPaste.py:1368
+#: flatcamTools/ToolSolderPaste.py:1388
msgid "Export GCode ..."
msgstr "Exporta GCode ..."
-#: flatcamTools/ToolSolderPaste.py:1412
-#, python-format
-msgid "[success] Solder paste dispenser GCode file saved to: %s"
-msgstr ""
-"[success] Fişierul GCode pt dispensare pastă de fludor este salvat in: %s"
+#: flatcamTools/ToolSolderPaste.py:1436
+msgid "Solder paste dispenser GCode file saved to"
+msgstr "Fişierul GCode pt dispensare pastă de fludor este salvat in"
#: flatcamTools/ToolSub.py:57
msgid "Gerber Objects"
@@ -13000,45 +13354,41 @@ msgstr ""
msgid "Sub Tool"
msgstr "Unealta Scădere"
-#: flatcamTools/ToolSub.py:244 flatcamTools/ToolSub.py:440
-msgid "[ERROR_NOTCL] No Target object loaded."
-msgstr "[ERROR_NOTCL] Nu este incărcat obiect Tintă."
+#: flatcamTools/ToolSub.py:245 flatcamTools/ToolSub.py:447
+msgid "No Target object loaded."
+msgstr "Nu este incărcat un obiect Tintă."
-#: flatcamTools/ToolSub.py:257 flatcamTools/ToolSub.py:453
-msgid "[ERROR_NOTCL] No Substractor object loaded."
-msgstr "[ERROR_NOTCL] Nu este incărcat obiect Substractor (scăzător)."
+#: flatcamTools/ToolSub.py:260 flatcamTools/ToolSub.py:462
+msgid "No Substractor object loaded."
+msgstr "Nu este incărcat obiect Substractor (scăzător)."
-#: flatcamTools/ToolSub.py:310
+#: flatcamTools/ToolSub.py:314
#, python-format
msgid "Parsing aperture %s geometry ..."
msgstr "Se analizează geo pt. apertura: %s..."
-#: flatcamTools/ToolSub.py:412 flatcamTools/ToolSub.py:608
+#: flatcamTools/ToolSub.py:416 flatcamTools/ToolSub.py:619
msgid "Generating new object ..."
msgstr "Se generează un obiect nou ..."
-#: flatcamTools/ToolSub.py:415 flatcamTools/ToolSub.py:611
-#: flatcamTools/ToolSub.py:690
-msgid "[ERROR_NOTCL] Generating new object failed."
-msgstr "[ERROR_NOTCL] Generarea unui nou obiect a eșuat."
+#: flatcamTools/ToolSub.py:420 flatcamTools/ToolSub.py:623
+#: flatcamTools/ToolSub.py:704
+msgid "Generating new object failed."
+msgstr "Generarea unui obiect nou a esuat."
-#: flatcamTools/ToolSub.py:419 flatcamTools/ToolSub.py:616
-#, python-format
-msgid "[success] Created: %s"
-msgstr "[success] Creat: %s"
+#: flatcamTools/ToolSub.py:425 flatcamTools/ToolSub.py:629
+msgid "Created"
+msgstr "Creat"
-#: flatcamTools/ToolSub.py:465
-msgid ""
-"[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo."
-msgstr ""
-"[ERROR_NOTCL] Momentan, obiectul substractor Geometrie nu poate fi de tip "
-"Multigeo."
+#: flatcamTools/ToolSub.py:476
+msgid "Currently, the Substractor geometry cannot be of type Multigeo."
+msgstr "Momentan, obiectul substractor Geometrie nu poate fi de tip Multigeo."
-#: flatcamTools/ToolSub.py:510
+#: flatcamTools/ToolSub.py:521
msgid "Parsing solid_geometry ..."
msgstr "Analizează geometria solidă..."
-#: flatcamTools/ToolSub.py:512
+#: flatcamTools/ToolSub.py:523
#, python-format
msgid "Parsing tool %s geometry ..."
msgstr "Analizează geo a uneltei %s ..."
@@ -13094,63 +13444,472 @@ msgid ""
" "
msgstr ""
"Oglindește obiectele selectate pe axa X.\n"
-"Nu crează un obiect nou."
+"Nu crează un obiect nou.\n"
+" "
-#: flatcamTools/ToolTransform.py:642
-msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
+#: flatcamTools/ToolTransform.py:643
+msgid "No object selected. Please Select an object to rotate!"
msgstr ""
-"[WARNING_NOTCL] Nici-un obiect nu este selectat. Selectează un obiect pentru "
-"a fi Rotit!"
+"Nici-un obiect nu este selectat. Selectează un obiect pentru a fi Rotit!"
-#: flatcamTools/ToolTransform.py:670
+#: flatcamTools/ToolTransform.py:671
msgid "CNCJob objects can't be rotated."
msgstr "Obiectele tip CNCJob nu pot fi Rotite."
-#: flatcamTools/ToolTransform.py:678
-msgid "[success] Rotate done ..."
-msgstr "[success] Rotaţie executată ..."
+#: flatcamTools/ToolTransform.py:679
+msgid "Rotate done"
+msgstr "Rotaţie efectuată"
-#: flatcamTools/ToolTransform.py:693
-msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
+#: flatcamTools/ToolTransform.py:684 flatcamTools/ToolTransform.py:759
+#: flatcamTools/ToolTransform.py:808 flatcamTools/ToolTransform.py:867
+#: flatcamTools/ToolTransform.py:903
+msgid "Due of"
+msgstr "Datorită"
+
+#: flatcamTools/ToolTransform.py:684 flatcamTools/ToolTransform.py:759
+#: flatcamTools/ToolTransform.py:808 flatcamTools/ToolTransform.py:867
+#: flatcamTools/ToolTransform.py:903
+msgid "action was not executed."
+msgstr "actiunea nu a fost efectuată."
+
+#: flatcamTools/ToolTransform.py:696
+msgid "No object selected. Please Select an object to flip"
msgstr ""
-"[WARNING_NOTCL] Nici-un obiect nu este selectat. Selectează un obiect pentru "
-"a fi Oglindit!"
+"Nici-un obiect nu este selectat. Selectează un obiect pentru a fi Oglindit"
-#: flatcamTools/ToolTransform.py:728
+#: flatcamTools/ToolTransform.py:731
msgid "CNCJob objects can't be mirrored/flipped."
msgstr "Obiectele tip CNCJob nu pot fi Oglindite."
-#: flatcamTools/ToolTransform.py:762
-msgid ""
-"[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
+#: flatcamTools/ToolTransform.py:769
+msgid "No object selected. Please Select an object to shear/skew!"
msgstr ""
-"[WARNING_NOTCL] Nici-un obiect nu este selectat. Selectează un obiect pentru "
-"a fi Deformat!"
+"Nici-un obiect nu este selectat. Selectează un obiect pentru a fi Deformat!"
-#: flatcamTools/ToolTransform.py:784
+#: flatcamTools/ToolTransform.py:791
msgid "CNCJob objects can't be skewed."
msgstr "Obiectele tip CNCJob nu pot fi deformate."
-#: flatcamTools/ToolTransform.py:811
-msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
-msgstr ""
-"[WARNING_NOTCL] Nici-un obiect nu este selectat. Selectează un obiect pentru "
-"a fi Scalat!"
+#: flatcamTools/ToolTransform.py:803
+#, python-format
+msgid "[success] Skew on the %s axis done ..."
+msgstr "[success] Deformarea pe axa %s executată ..."
-#: flatcamTools/ToolTransform.py:844
+#: flatcamTools/ToolTransform.py:820
+msgid "No object selected. Please Select an object to scale!"
+msgstr ""
+"Nici-un obiect nu este selectat. Selectează un obiect pentru a fi Scalat!"
+
+#: flatcamTools/ToolTransform.py:853
msgid "CNCJob objects can't be scaled."
msgstr "Obiectele tip CNCJob nu pot fi scalate."
#: flatcamTools/ToolTransform.py:863
-msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
-msgstr ""
-"[WARNING_NOTCL] Nici-un obiect nu este selectat. Selectează un obiect pentru "
-"a fi Deplasat!"
+msgid "Scale on the"
+msgstr "Scalează pe"
-#: flatcamTools/ToolTransform.py:872
-msgid "CNCJob objects can't be offseted."
+#: flatcamTools/ToolTransform.py:863 flatcamTools/ToolTransform.py:898
+msgid "axis done"
+msgstr "axa efectuată"
+
+#: flatcamTools/ToolTransform.py:875
+msgid "No object selected. Please Select an object to offset!"
+msgstr ""
+"Nici-un obiect nu este selectat. Selectează un obiect pentru a fi Ofsetat!"
+
+#: flatcamTools/ToolTransform.py:884
+msgid "CNCJob objects can't be offset."
msgstr "Obiectele tip CNCJob nu pot fi deplasate."
+#: flatcamTools/ToolTransform.py:898
+msgid "Offset on the"
+msgstr "Ofset pe"
+
+#: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:68
+msgid "Expected FlatCAMGerber or FlatCAMGeometry, got"
+msgstr "Se astepta un obiect FlatCAMGerber sau FlatCAMGeometry, s-a primit"
+
+#: tclCommands/TclCommandCopperClear.py:234 tclCommands/TclCommandPaint.py:231
+msgid "Expected -box ."
+msgstr "Asteptăm -box ."
+
+#: tclCommands/TclCommandCopperClear.py:243 tclCommands/TclCommandPaint.py:240
+#: tclCommands/TclCommandScale.py:63
+msgid "Could not retrieve box object"
+msgstr "Nu s-a putut incărca obiectul"
+
+#: tclCommands/TclCommandCopperClear.py:263
+msgid ""
+"None of the following args: 'ref', 'all' were found or none was set to 1.\n"
+"Copper clearing failed."
+msgstr ""
+"Niciunul din următoarele argumente: „ref”, „toate” nu au fost găsite sau "
+"nici unul nu a fost setat la 1.\n"
+"Curatarea de cupru a eșuat."
+
+#: tclCommands/TclCommandPaint.py:210
+msgid "Expected -x and -y ."
+msgstr "Asteptam -x si -y ."
+
+#: tclCommands/TclCommandPaint.py:257
+msgid ""
+"There was none of the following args: 'ref', 'single', 'all'.\n"
+"Paint failed."
+msgstr ""
+"Nu a existat niciunul din următoarele argumente: „ref”, „single”, „all”.\n"
+"Pictura nu a reușit."
+
+#: tclCommands/TclCommandScale.py:83
+msgid "Expected -origin or -origin or -origin ."
+msgstr ""
+"Asteptam -origin sau -origin sau -origin ."
+
+#: tclCommands/TclCommandScale.py:92
+msgid "Expected -x -y ."
+msgstr "Asteptam -x -y ."
+
+#: tclCommands/TclCommandSubtractRectangle.py:49
+msgid "No Geometry name in args. Provide a name and try again."
+msgstr ""
+"Nici-un nume de Geometrie in argumente. Furnizați un nume și încercați din "
+"nou."
+
+#~ msgid "[ERROR_NOTCL] Could not load defaults file."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Nu a fost posibilă incărcarea fişierului cu valori default."
+
+#~ msgid "[ERROR_NOTCL] Failed to parse defaults file."
+#~ msgstr "[ERROR_NOTCL] Parsarea fişierului cu valori default a eșuat."
+
+#~ msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
+#~ msgstr ""
+#~ "[ERROR_NOTCL] A apărut o eroare internă. Verifică in TCL Shell pt mai "
+#~ "multe detalii.\n"
+
+#~ msgid "[success] Defaults saved."
+#~ msgstr "[success] Valorile default au fost salvate."
+
+#~ msgid "[success] Converted units to %s"
+#~ msgstr "[success] Conversie unitati la %s"
+
+#~ msgid "[WARNING_NOTCL] Export Code cancelled."
+#~ msgstr "[WARNING_NOTCL Exportul GCode este anulat."
+
+#~ msgid "[success] Origin set ..."
+#~ msgstr "[success] Originea a fost setată ..."
+
+#~ msgid "[success] Skew on X axis done."
+#~ msgstr "[success] Deformare pe axa X executată."
+
+#~ msgid "[success] Skew on Y axis done."
+#~ msgstr "[success] Deformare pe axa Y executată."
+
+#~ msgid "[success] New Grid added ..."
+#~ msgstr "[success] O noua valoare pt Grila a fost adăugată..."
+
+#~ msgid "[WARNING_NOTCL] Open Gerber cancelled."
+#~ msgstr "[WARNING_NOTCL] Incărcarea unui fişier Gerber este anulată."
+
+#~ msgid "[WARNING_NOTCL] Open G-Code cancelled."
+#~ msgstr "[WARNING_NOTCL] Incărcarea unui fişier G-Code este anulată."
+
+#~ msgid "[WARNING_NOTCL] Open Project cancelled."
+#~ msgstr "[WARNING_NOTCL] Incărcarea unui Proiect a fost anulată."
+
+#~ msgid "[WARNING_NOTCL] Open Config cancelled."
+#~ msgstr "[WARNING_NOTCL] Incărcarea unui fişier de Configurare este anulată."
+
+#~ msgid "[WARNING_NOTCL] No object selected."
+#~ msgstr "[WARNING_NOTCL] Nici-un obiect selectat."
+
+#~ msgid "[WARNING_NOTCL] Export SVG cancelled."
+#~ msgstr "[WARNING_NOTCL] Exportul SVG este anulat."
+
+#~ msgid "[WARNING_NOTCL] Export Excellon cancelled."
+#~ msgstr "[WARNING_NOTCL] Exportul Excellon anulat."
+
+#~ msgid "[WARNING_NOTCL] Export Gerber cancelled."
+#~ msgstr "[WARNING_NOTCL] Exportul Gerber este anulat."
+
+#~ msgid "[WARNING_NOTCL] Export DXF cancelled."
+#~ msgstr "[WARNING_NOTCL] Exportul DXF anulat."
+
+#~ msgid "[WARNING_NOTCL] Open SVG cancelled."
+#~ msgstr "[WARNING_NOTCL] Importul SVG anulat."
+
+#~ msgid "[WARNING_NOTCL] Open DXF cancelled."
+#~ msgstr "[WARNING_NOTCL] Incărcarea fişier DXF anulată."
+
+#~ msgid "[WARNING_NOTCL] No object Box. Using instead %s"
+#~ msgstr ""
+#~ "[WARNING_NOTCL] Nu este nici-un container Box pentru obiect. Se foloseşte "
+#~ "%s"
+
+#~ msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
+#~ msgstr "[ERROR_NOTCL] Eşec in parsarea fişierului: {name}. {error}"
+
+#~ msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
+#~ msgstr ""
+#~ "[ERROR_NOTCL] A apărut o eroare interna. Verifică in TCL Shell pt mai "
+#~ "multe detalii.\n"
+
+#~ msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Verificarea proiectului salvat a eșuat: %s. Incearcă să il "
+#~ "salvezi din nou."
+
+#~ msgid ""
+#~ "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Parsarea proiectului salvat a eșuat: %s. Incearcă să il "
+#~ "salvezi din nou."
+
+#~ msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Salvarea proiectului a eșuat: %s. Incearcă să il salvezi "
+#~ "din nou."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] O valoare gresita a fost introdusa. Foloseşte un număr."
+
+#~ msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
+#~ msgstr "[ERROR_NOTCL] Anulat. Fişier gol, nu are date geometrice."
+
+#~ msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
+#~ msgstr "[WARNING_NOTCL] Exportul codului masina CNC a fost anulat ..."
+
+#~ msgid "[WARNING_NOTCL] No such file or directory"
+#~ msgstr "[WARNING_NOTCL] Nu exista un asemenea fişier sau director"
+
+#~ msgid ""
+#~ "[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
+#~ "current_geometry.\n"
+#~ "Raise the value (in module) and try again."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Valoarea pentru >Offset unealtă< este prea negativă pentru "
+#~ "a fi folosita. \n"
+#~ "Mareste valoarea absoluta și încearcă din nou."
+
+#~ msgid "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
+#~ msgstr "[ERROR_NOTCL] Valoarea este gresita. Verifică valoarea. %s"
+
+#~ msgid "[ERROR_NOTCL] Cancelled."
+#~ msgstr "[ERROR_NOTCL] Anulat."
+
+#~ msgid "Tool Dia:"
+#~ msgstr "Dia. Unealtă:"
+
+#~ msgid "Nr of drills:"
+#~ msgstr "Nr. op. găurire"
+
+#~ msgid "Direction:"
+#~ msgstr "Direcţie:"
+
+#~ msgid "Pitch:"
+#~ msgstr "Pas:"
+
+#~ msgid "Length:"
+#~ msgstr "Lungime:"
+
+#~ msgid "Nr of slots:"
+#~ msgstr "Nr de sloturi:"
+
+#~ msgid "[success] Deleted tool with dia: {del_dia} {units}"
+#~ msgstr "[success] Unealta stearsa cu diametrul: {del_dia} {units}"
+
+#~ msgid "Tool dia:"
+#~ msgstr "Dia unealtă:"
+
+#~ msgid "Overlap Rate:"
+#~ msgstr "Rata suprapunere:"
+
+#~ msgid "Method:"
+#~ msgstr "Metoda:"
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Valoare incorecta intodusa pentru Rotaţie, foloseşte un "
+#~ "număr Real."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Valoare incorecta intodusa pentru Deformare X, foloseşte un "
+#~ "număr Real."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Valoare incorecta intodusa pentru Deformare Y, foloseşte un "
+#~ "număr Real."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Valoare incorecta intodusa pentru Scalare X, foloseşte un "
+#~ "număr Real."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Valoare incorecta intodusa pentru Scalare Y, foloseşte un "
+#~ "număr Real."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Valoare incorecta intodusa pentru Ofset pe X, foloseşte un "
+#~ "număr Real."
+
+#~ msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Valoare incorecta intodusa pentru Ofset pe Y, foloseşte un "
+#~ "număr Real."
+
+#~ msgid "[success] Flip on the Y axis done ..."
+#~ msgstr "Oglindirea pe axa X efectuata ..."
+
+#~ msgid "[success] Flip on the X axis done ..."
+#~ msgstr "Oglindirea pe axa Y efectuata ..."
+
+#~ msgid "[success] Offset on the %s axis done ..."
+#~ msgstr "[success] Deplasarea pe axa %s executată ..."
+
+#~ msgid ""
+#~ "[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: "
+#~ "{dia}"
+#~ msgstr ""
+#~ "[WARNING_NOTCL] Se editeaza un obiect tip Geometrie MultiGeo , unealta: "
+#~ "{tool} cu diametrul: {dia}"
+
+#~ msgid "Clear GUI Settings:"
+#~ msgstr "Șterge setările GUI:"
+
+#~ msgid "Duration:"
+#~ msgstr "Durata:"
+
+#~ msgid "Fast Plunge:"
+#~ msgstr "Plonjare rapida:"
+
+#~ msgid "Linear Dir.:"
+#~ msgstr "Dir. Lineara:"
+
+#~ msgid "Plot kind:"
+#~ msgstr "Tip afișare:"
+
+#~ msgid ""
+#~ "Select from the Tools Table above\n"
+#~ "the tools you want to include."
+#~ msgstr ""
+#~ "Selectează din Tabela de Unelte de mai sus,\n"
+#~ "uneltele care trebuie incluse."
+
+#~ msgid ""
+#~ "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
+#~ "number."
+#~ msgstr ""
+#~ "[WARNING_NOTCL] Diametrul uneltei este zero. Schimbă-l intr-o val. "
+#~ "pozitivă Reala."
+
+#~ msgid "[success] Gerber %s was mirrored..."
+#~ msgstr "[success]Obiectul Gerberr %s a fost oglindit..."
+
+#~ msgid "[success] Excellon %s was mirrored..."
+#~ msgstr "[success] Obiectul Excellon %s a fost oglindit..."
+
+#~ msgid "[success] Geometry %s was mirrored..."
+#~ msgstr "[success] Obiectul Geometrie %s a fost oglindit..."
+
+#~ msgid "[WARNING_NOTCL] No object(s) selected."
+#~ msgstr "[WARNING_NOTCL] Nu sunt obiecte selectate."
+
+#~ msgid "[success] %s object was moved ..."
+#~ msgstr "[success] Obiectul %s a fost mutat ..."
+
+#~ msgid "[WARNING_NOTCL] Object(s) not selected"
+#~ msgstr "[WARNING_NOTCL] Obiectele nu sunt selectate."
+
+#~ msgid "[WARNING_NOTCL] Buffering ..."
+#~ msgstr "[WARNING_NOTCL] Buffering ..."
+
+#~ msgid "[success] Non-Copper Clearing with ToolDia = %s started."
+#~ msgstr ""
+#~ "[success] Curățarea de Cupru in exces cu Dia Unealtă = %s a inceput."
+
+#~ msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
+#~ msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
+
+#~ msgid "[success] NCC Tool finished."
+#~ msgstr "[success] Unealta NCC s-a terminat."
+
+#~ msgid ""
+#~ "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
+#~ "cleared. Check the result."
+#~ msgstr ""
+#~ "[WARNING_NOTCL] Unealta NCC a terminat lucrul dar unele zone PCB nu au "
+#~ "putut fi curățate de Cu. Verifică rezultatul."
+
+#~ msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
+#~ msgstr ""
+#~ "[success] Curățarea de Cupru tip Rest cu dia unealtă = %s a inceput.."
+
+#~ msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
+#~ msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
+
+#~ msgid ""
+#~ "[ERROR_NOTCL] NCC Tool finished but could not clear the object with "
+#~ "current settings."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Unealta NCC a termiant lucrul dar nu a fost posibil sa fie "
+#~ "curățată de Cu obiectul cu setările curente."
+
+#~ msgid "[WARNING_NOTCL] Open PDF cancelled."
+#~ msgstr "[WARNING_NOTCL] Incărcarea fişier PDF anulată."
+
+#~ msgid "[ERROR_NOTCL] Open PDF file failed."
+#~ msgstr "[ERROR_NOTCL] Deschiderea unui fişier PDF a eșuat."
+
+#~ msgid "[success] Rendered: %s"
+#~ msgstr "[success] Analizat: %s"
+
+#~ msgid ""
+#~ "How to select the polygons to paint.
Options:
- Single Polygons"
+#~ "B>: left mouse click on the polygon to be painted.
- Area "
+#~ "Selection: left mouse click to start selection of the area to be "
+#~ "painted.
- All Polygons: paint all polygons.
- Reference "
+#~ "Object: paint an area described by an external reference object."
+#~ msgstr ""
+#~ "Cum să selectați poligoanele de pictat.
Opțiuni:
- Poligoane "
+#~ "individuale : faceți clic stânga cu mouse pe poligonul care urmează "
+#~ "să fie pictat.
-Selecția zonei: faceți clic stânga cu mouse-ul "
+#~ "pentru a începe selecția zonei care urmează să fie pictată.
- "
+#~ "Toate poligoanele : pictați toate poligoanele.
-Obiect de "
+#~ "referință: pictați o zonă descrisă de un obiect de referință extern."
+
+#~ msgid ""
+#~ "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
+#~ "Usually it means that the tool diameter is too big for the painted "
+#~ "geometry.\n"
+#~ "Change the painting parameters and try again."
+#~ msgstr ""
+#~ "[ERROR_NOTCL] Nu exista o geometrie 'pictata' in acest fişier.\n"
+#~ "De obicei aceasta inseamna că diametrul uneltei este prea mare \n"
+#~ "pt a fi folosit in obiectul Geometrie de 'pictat'.\n"
+#~ "Schimbă parametrii de 'pictat' și încearcă din nou."
+
+#~ msgid "[WARNING_NOTCL]No object Box. Using instead %s"
+#~ msgstr ""
+#~ "[WARNING_NOTCL] Nu este disponibil nici-un container Box pentru obiect. "
+#~ "Se foloseşte %s"
+
+#~ msgid "[success] Imported: %s"
+#~ msgstr "[success] Importat: %s"
+
+#~ msgid "[ERROR_NOTCL] Generating new object failed."
+#~ msgstr "[ERROR_NOTCL] Generarea unui nou obiect a eșuat."
+
+#~ msgid "[success] Created: %s"
+#~ msgstr "[success] Creat: %s"
+
+#~ msgid "[success] Rotate done ..."
+#~ msgstr "[success] Rotaţie executată ..."
+
#~ msgid ""
#~ "When choosing the 'Itself' option the non copper clearing extent\n"
#~ "is based on the object that is copper cleared.\n"
@@ -13200,9 +13959,6 @@ msgstr "Obiectele tip CNCJob nu pot fi deplasate."
#~ "pictată va fi descrisă de un obiect selectat.
Un nou obiect Geometrie "
#~ "cu traseele uneltei va fi creat."
-#~ msgid "Done."
-#~ msgstr "Executat."
-
#~ msgid "Apertures:"
#~ msgstr "Aperturi:"
@@ -13603,9 +14359,6 @@ msgstr "Obiectele tip CNCJob nu pot fi deplasate."
#~ "Valoare cu care se mareste/micsorează\n"
#~ "geometriile acestui obiect."
-#~ msgid "[WARNING]No object Box. Using instead %s"
-#~ msgstr "[WARNING] Nu exista container. Se foloseşte in schimb %s"
-
#~ msgid "In"
#~ msgstr "În"
@@ -14112,27 +14865,9 @@ msgstr "Obiectele tip CNCJob nu pot fi deplasate."
#~ msgstr ""
#~ "[ERROR_NOTCL] Nu a fost posibila incarcarea fişierului cu valori default."
-#~ msgid "[ERROR_NOTCL] Failed to parse project file: %s"
-#~ msgstr "[ERROR_NOTCL] Esec in incarcarea fişierului de configurare: %s"
-
-#~ msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
-#~ msgstr "[ERROR_NOTCL] Valoare in format incorect, foloseşte un număr."
-
-#~ msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
-#~ msgstr "[ERROR_NOTCL] Anulat. Fişier gol, nu are geometrie ..."
-
#~ msgid "[WARNING_NOTCL]Export Machine Code cancelled ..."
#~ msgstr "[WARNING_NOTCL] Exportul de cod CNC a fost anulat ..."
-#~ msgid "[success]Flip on the Y axis done ..."
-#~ msgstr "[success] Oglindire pe axa Y executată ..."
-
-#~ msgid "[success]Flip on the X axis done ..."
-#~ msgstr "[success] Oglindire pe axa X executată ..."
-
-#~ msgid "[success]Skew on the %s axis done ..."
-#~ msgstr "[success] Oglindire pe axa %s executată ..."
-
#~ msgid "[success]Offset on the %s axis done ..."
#~ msgstr "[success] Deplasarea de axa %s executată."
diff --git a/locale_template/strings.pot b/locale_template/strings.pot
index 184600c0..110be791 100644
--- a/locale_template/strings.pot
+++ b/locale_template/strings.pot
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"POT-Creation-Date: 2019-09-09 18:59+0300\n"
+"POT-Creation-Date: 2019-09-10 00:20+0300\n"
"PO-Revision-Date: 2019-03-25 15:08+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -15,7 +15,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
-"X-Generator: Poedit 2.0.7\n"
+"X-Generator: Poedit 2.2.3\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-SearchPath-0: .\n"
@@ -150,7 +150,7 @@ msgstr ""
#: FlatCAMApp.py:3296 FlatCAMApp.py:5531 FlatCAMApp.py:8113 FlatCAMApp.py:8229
#: FlatCAMApp.py:8355 FlatCAMApp.py:8414 FlatCAMApp.py:8528 FlatCAMApp.py:8657
-#: FlatCAMObj.py:6165 flatcamTools/ToolSolderPaste.py:1428
+#: FlatCAMObj.py:6167 flatcamTools/ToolSolderPaste.py:1428
msgid ""
"Permission denied, saving not possible.\n"
"Most likely another app is holding the file open and not accessible."
@@ -180,7 +180,7 @@ msgstr ""
msgid "Failed to open recent projects file for writing."
msgstr ""
-#: FlatCAMApp.py:3519 camlib.py:4797 flatcamTools/ToolSolderPaste.py:1214
+#: FlatCAMApp.py:3519 camlib.py:4806 flatcamTools/ToolSolderPaste.py:1214
msgid "An internal error has ocurred. See shell.\n"
msgstr ""
@@ -351,7 +351,7 @@ msgstr ""
msgid "Export Code cancelled."
msgstr ""
-#: FlatCAMApp.py:5527 FlatCAMObj.py:6161 flatcamTools/ToolSolderPaste.py:1424
+#: FlatCAMApp.py:5527 FlatCAMObj.py:6163 flatcamTools/ToolSolderPaste.py:1424
msgid "No such file or directory"
msgstr ""
@@ -429,7 +429,16 @@ msgstr ""
msgid "Wrong coordinates. Enter coordinates in format: X,Y"
msgstr ""
-#: FlatCAMApp.py:5873
+#: FlatCAMApp.py:5873 flatcamEditors/FlatCAMExcEditor.py:3445
+#: flatcamEditors/FlatCAMExcEditor.py:3453
+#: flatcamEditors/FlatCAMGeoEditor.py:3791
+#: flatcamEditors/FlatCAMGeoEditor.py:3806
+#: flatcamEditors/FlatCAMGrbEditor.py:1067
+#: flatcamEditors/FlatCAMGrbEditor.py:1171
+#: flatcamEditors/FlatCAMGrbEditor.py:1445
+#: flatcamEditors/FlatCAMGrbEditor.py:1703
+#: flatcamEditors/FlatCAMGrbEditor.py:4182
+#: flatcamEditors/FlatCAMGrbEditor.py:4197
msgid "Done."
msgstr ""
@@ -473,6 +482,7 @@ msgid "Flip on Y axis done."
msgstr ""
#: FlatCAMApp.py:6279 FlatCAMApp.py:6322
+#: flatcamEditors/FlatCAMGrbEditor.py:5624
msgid "Flip action was not executed."
msgstr ""
@@ -524,9 +534,9 @@ msgstr ""
msgid "Grid On/Off"
msgstr ""
-#: FlatCAMApp.py:6504 flatcamEditors/FlatCAMGeoEditor.py:939
-#: flatcamEditors/FlatCAMGrbEditor.py:2460
-#: flatcamEditors/FlatCAMGrbEditor.py:5102 flatcamGUI/ObjectUI.py:1053
+#: FlatCAMApp.py:6504 flatcamEditors/FlatCAMGeoEditor.py:940
+#: flatcamEditors/FlatCAMGrbEditor.py:2477
+#: flatcamEditors/FlatCAMGrbEditor.py:5134 flatcamGUI/ObjectUI.py:1053
#: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:207
#: flatcamTools/ToolNonCopperClear.py:237 flatcamTools/ToolPaint.py:176
#: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:483
@@ -534,8 +544,8 @@ msgstr ""
msgid "Add"
msgstr ""
-#: FlatCAMApp.py:6505 FlatCAMObj.py:3564
-#: flatcamEditors/FlatCAMGrbEditor.py:2465 flatcamGUI/FlatCAMGUI.py:545
+#: FlatCAMApp.py:6505 FlatCAMObj.py:3566
+#: flatcamEditors/FlatCAMGrbEditor.py:2482 flatcamGUI/FlatCAMGUI.py:545
#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:1719
#: flatcamGUI/FlatCAMGUI.py:2094 flatcamGUI/ObjectUI.py:1069
#: flatcamTools/ToolNonCopperClear.py:249 flatcamTools/ToolPaint.py:188
@@ -591,7 +601,7 @@ msgstr ""
msgid "Name copied on clipboard ..."
msgstr ""
-#: FlatCAMApp.py:6654
+#: FlatCAMApp.py:6654 flatcamEditors/FlatCAMGrbEditor.py:4122
msgid "Coordinates copied to clipboard."
msgstr ""
@@ -657,8 +667,8 @@ msgstr ""
msgid "Open Config cancelled."
msgstr ""
-#: FlatCAMApp.py:7415 FlatCAMApp.py:7684 FlatCAMApp.py:10117
-#: FlatCAMApp.py:10138 FlatCAMApp.py:10160 FlatCAMApp.py:10183
+#: FlatCAMApp.py:7415 FlatCAMApp.py:7684 FlatCAMApp.py:10115
+#: FlatCAMApp.py:10136 FlatCAMApp.py:10158 FlatCAMApp.py:10181
msgid "No object selected."
msgstr ""
@@ -795,7 +805,7 @@ msgstr ""
msgid "App.on_view_source() -->"
msgstr ""
-#: FlatCAMApp.py:7865 FlatCAMApp.py:9112 FlatCAMObj.py:5944
+#: FlatCAMApp.py:7865 FlatCAMApp.py:9110 FlatCAMObj.py:5946
#: flatcamTools/ToolSolderPaste.py:1304
msgid "Code Editor"
msgstr ""
@@ -923,8 +933,8 @@ msgstr ""
msgid "Importing SVG"
msgstr ""
-#: FlatCAMApp.py:8792 FlatCAMApp.py:8836 FlatCAMApp.py:8881 FlatCAMApp.py:8964
-#: FlatCAMApp.py:9031 FlatCAMApp.py:9098
+#: FlatCAMApp.py:8792 FlatCAMApp.py:8836 FlatCAMApp.py:8881 FlatCAMApp.py:8962
+#: FlatCAMApp.py:9029 FlatCAMApp.py:9096
msgid "Opened"
msgstr ""
@@ -940,97 +950,92 @@ msgstr ""
msgid "Failed to open file"
msgstr ""
-#: FlatCAMApp.py:8915
-#, python-brace-format
-msgid "{e_code} Failed to parse file: {name}. {error}"
-msgstr ""
-
#: FlatCAMApp.py:8916
-msgid "[ERROR_NOTCL]"
+msgid "Failed to parse file"
msgstr ""
-#: FlatCAMApp.py:8925 FlatCAMApp.py:8999 FlatCAMObj.py:4521
-#: flatcamTools/ToolPcbWizard.py:437
+#: FlatCAMApp.py:8923 FlatCAMApp.py:8997 FlatCAMObj.py:4523
+#: flatcamEditors/FlatCAMGrbEditor.py:3939 flatcamTools/ToolPcbWizard.py:437
msgid "An internal error has occurred. See shell.\n"
msgstr ""
-#: FlatCAMApp.py:8935
+#: FlatCAMApp.py:8933
msgid "Object is not Gerber file or empty. Aborting object creation."
msgstr ""
-#: FlatCAMApp.py:8943
+#: FlatCAMApp.py:8941
msgid "Opening Gerber"
msgstr ""
-#: FlatCAMApp.py:8954
+#: FlatCAMApp.py:8952
msgid " Open Gerber failed. Probable not a Gerber file."
msgstr ""
-#: FlatCAMApp.py:8989 flatcamTools/ToolPcbWizard.py:427
+#: FlatCAMApp.py:8987 flatcamTools/ToolPcbWizard.py:427
msgid "This is not Excellon file."
msgstr ""
-#: FlatCAMApp.py:8993
+#: FlatCAMApp.py:8991
msgid "Cannot open file"
msgstr ""
-#: FlatCAMApp.py:9013 flatcamTools/ToolPDF.py:270
+#: FlatCAMApp.py:9011 flatcamTools/ToolPDF.py:270
#: flatcamTools/ToolPcbWizard.py:451
msgid "No geometry found in file"
msgstr ""
-#: FlatCAMApp.py:9016
+#: FlatCAMApp.py:9014
msgid "Opening Excellon."
msgstr ""
-#: FlatCAMApp.py:9023
+#: FlatCAMApp.py:9021
msgid "Open Excellon file failed. Probable not an Excellon file."
msgstr ""
-#: FlatCAMApp.py:9062
+#: FlatCAMApp.py:9060
msgid "Failed to open"
msgstr ""
-#: FlatCAMApp.py:9073
+#: FlatCAMApp.py:9071
msgid "This is not GCODE"
msgstr ""
-#: FlatCAMApp.py:9079
+#: FlatCAMApp.py:9077
msgid "Opening G-Code."
msgstr ""
-#: FlatCAMApp.py:9088
+#: FlatCAMApp.py:9086
msgid ""
"Failed to create CNCJob Object. Probable not a GCode file.\n"
" Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
"processing"
msgstr ""
-#: FlatCAMApp.py:9130
+#: FlatCAMApp.py:9128
msgid "Failed to open config file"
msgstr ""
-#: FlatCAMApp.py:9151
+#: FlatCAMApp.py:9149
msgid "Loading Project ... Please Wait ..."
msgstr ""
-#: FlatCAMApp.py:9159 FlatCAMApp.py:9178
+#: FlatCAMApp.py:9157 FlatCAMApp.py:9176
msgid "Failed to open project file"
msgstr ""
-#: FlatCAMApp.py:9202
+#: FlatCAMApp.py:9200
msgid "Loading Project ... restoring"
msgstr ""
-#: FlatCAMApp.py:9212
+#: FlatCAMApp.py:9210
msgid "Project loaded from"
msgstr ""
-#: FlatCAMApp.py:9318
+#: FlatCAMApp.py:9316
msgid "Available commands:\n"
msgstr ""
-#: FlatCAMApp.py:9320
+#: FlatCAMApp.py:9318
msgid ""
"\n"
"\n"
@@ -1038,35 +1043,35 @@ msgid ""
" Example: help open_gerber"
msgstr ""
-#: FlatCAMApp.py:9470
+#: FlatCAMApp.py:9468
msgid "Shows list of commands."
msgstr ""
-#: FlatCAMApp.py:9528
+#: FlatCAMApp.py:9526
msgid "Failed to load recent item list."
msgstr ""
-#: FlatCAMApp.py:9536
+#: FlatCAMApp.py:9534
msgid "Failed to parse recent item list."
msgstr ""
-#: FlatCAMApp.py:9547
+#: FlatCAMApp.py:9545
msgid "Failed to load recent projects item list."
msgstr ""
-#: FlatCAMApp.py:9555
+#: FlatCAMApp.py:9553
msgid "Failed to parse recent project item list."
msgstr ""
-#: FlatCAMApp.py:9614 FlatCAMApp.py:9637
+#: FlatCAMApp.py:9612 FlatCAMApp.py:9635
msgid "Clear Recent files"
msgstr ""
-#: FlatCAMApp.py:9654 flatcamGUI/FlatCAMGUI.py:1006
+#: FlatCAMApp.py:9652 flatcamGUI/FlatCAMGUI.py:1006
msgid "Shortcut Key List"
msgstr ""
-#: FlatCAMApp.py:9666
+#: FlatCAMApp.py:9664
#, python-brace-format
msgid ""
"\n"
@@ -1117,85 +1122,85 @@ msgid ""
" "
msgstr ""
-#: FlatCAMApp.py:9745
+#: FlatCAMApp.py:9743
msgid "Failed checking for latest version. Could not connect."
msgstr ""
-#: FlatCAMApp.py:9753
+#: FlatCAMApp.py:9751
msgid "Could not parse information about latest version."
msgstr ""
-#: FlatCAMApp.py:9764
+#: FlatCAMApp.py:9762
msgid "FlatCAM is up to date!"
msgstr ""
-#: FlatCAMApp.py:9769
+#: FlatCAMApp.py:9767
msgid "Newer Version Available"
msgstr ""
-#: FlatCAMApp.py:9770
+#: FlatCAMApp.py:9768
msgid ""
"There is a newer version of FlatCAM available for download:\n"
"\n"
msgstr ""
-#: FlatCAMApp.py:9772
+#: FlatCAMApp.py:9770
msgid "info"
msgstr ""
-#: FlatCAMApp.py:9827
+#: FlatCAMApp.py:9825
msgid "All plots disabled."
msgstr ""
-#: FlatCAMApp.py:9834
+#: FlatCAMApp.py:9832
msgid "All non selected plots disabled."
msgstr ""
-#: FlatCAMApp.py:9841
+#: FlatCAMApp.py:9839
msgid "All plots enabled."
msgstr ""
-#: FlatCAMApp.py:9848
+#: FlatCAMApp.py:9846
msgid "Selected plots enabled..."
msgstr ""
-#: FlatCAMApp.py:9857
+#: FlatCAMApp.py:9855
msgid "Selected plots disabled..."
msgstr ""
-#: FlatCAMApp.py:9875
+#: FlatCAMApp.py:9873
msgid "Enabling plots ..."
msgstr ""
-#: FlatCAMApp.py:9909
+#: FlatCAMApp.py:9907
msgid "Disabling plots ..."
msgstr ""
-#: FlatCAMApp.py:9931
+#: FlatCAMApp.py:9929
msgid "Working ..."
msgstr ""
-#: FlatCAMApp.py:9969
+#: FlatCAMApp.py:9967
msgid "Saving FlatCAM Project"
msgstr ""
-#: FlatCAMApp.py:9991 FlatCAMApp.py:10026
+#: FlatCAMApp.py:9989 FlatCAMApp.py:10024
msgid "Project saved to"
msgstr ""
-#: FlatCAMApp.py:10010
+#: FlatCAMApp.py:10008
msgid "Failed to verify project file"
msgstr ""
-#: FlatCAMApp.py:10010 FlatCAMApp.py:10018 FlatCAMApp.py:10029
+#: FlatCAMApp.py:10008 FlatCAMApp.py:10016 FlatCAMApp.py:10027
msgid "Retry to save it."
msgstr ""
-#: FlatCAMApp.py:10018 FlatCAMApp.py:10029
+#: FlatCAMApp.py:10016 FlatCAMApp.py:10027
msgid "Failed to parse saved project file"
msgstr ""
-#: FlatCAMApp.py:10240
+#: FlatCAMApp.py:10238
msgid "The user requested a graceful exit of the current task."
msgstr ""
@@ -1216,11 +1221,11 @@ msgstr ""
msgid "Skewing..."
msgstr ""
-#: FlatCAMObj.py:600 FlatCAMObj.py:2291 FlatCAMObj.py:3569 FlatCAMObj.py:5835
+#: FlatCAMObj.py:600 FlatCAMObj.py:2293 FlatCAMObj.py:3571 FlatCAMObj.py:5837
msgid "Basic"
msgstr ""
-#: FlatCAMObj.py:613 FlatCAMObj.py:2307 FlatCAMObj.py:3591 FlatCAMObj.py:5841
+#: FlatCAMObj.py:613 FlatCAMObj.py:2309 FlatCAMObj.py:3593 FlatCAMObj.py:5843
msgid "Advanced"
msgstr ""
@@ -1248,7 +1253,7 @@ msgstr ""
msgid "Isolation geometry could not be generated."
msgstr ""
-#: FlatCAMObj.py:1108 FlatCAMObj.py:3259 FlatCAMObj.py:3526 FlatCAMObj.py:3802
+#: FlatCAMObj.py:1108 FlatCAMObj.py:3261 FlatCAMObj.py:3528 FlatCAMObj.py:3804
msgid "Rough"
msgstr ""
@@ -1260,17 +1265,32 @@ msgstr ""
msgid "Plotting Apertures"
msgstr ""
-#: FlatCAMObj.py:2119 flatcamEditors/FlatCAMExcEditor.py:2292
+#: FlatCAMObj.py:2121 flatcamEditors/FlatCAMExcEditor.py:2309
msgid "Total Drills"
msgstr ""
-#: FlatCAMObj.py:2151 flatcamEditors/FlatCAMExcEditor.py:2324
+#: FlatCAMObj.py:2153 flatcamEditors/FlatCAMExcEditor.py:2341
msgid "Total Slots"
msgstr ""
-#: FlatCAMObj.py:2365 FlatCAMObj.py:3642 FlatCAMObj.py:3936 FlatCAMObj.py:4127
-#: FlatCAMObj.py:4138 FlatCAMObj.py:4256 FlatCAMObj.py:4459 FlatCAMObj.py:4666
-#: FlatCAMObj.py:4905 FlatCAMObj.py:5403 flatcamTools/ToolCalculators.py:311
+#: FlatCAMObj.py:2367 FlatCAMObj.py:3644 FlatCAMObj.py:3938 FlatCAMObj.py:4129
+#: FlatCAMObj.py:4140 FlatCAMObj.py:4258 FlatCAMObj.py:4461 FlatCAMObj.py:4668
+#: FlatCAMObj.py:4907 FlatCAMObj.py:5405
+#: flatcamEditors/FlatCAMExcEditor.py:2416
+#: flatcamEditors/FlatCAMGeoEditor.py:1080
+#: flatcamEditors/FlatCAMGeoEditor.py:1117
+#: flatcamEditors/FlatCAMGeoEditor.py:1138
+#: flatcamEditors/FlatCAMGeoEditor.py:1159
+#: flatcamEditors/FlatCAMGeoEditor.py:1196
+#: flatcamEditors/FlatCAMGeoEditor.py:1228
+#: flatcamEditors/FlatCAMGeoEditor.py:1249
+#: flatcamEditors/FlatCAMGrbEditor.py:5283
+#: flatcamEditors/FlatCAMGrbEditor.py:5326
+#: flatcamEditors/FlatCAMGrbEditor.py:5353
+#: flatcamEditors/FlatCAMGrbEditor.py:5380
+#: flatcamEditors/FlatCAMGrbEditor.py:5421
+#: flatcamEditors/FlatCAMGrbEditor.py:5459
+#: flatcamEditors/FlatCAMGrbEditor.py:5485 flatcamTools/ToolCalculators.py:311
#: flatcamTools/ToolCalculators.py:322 flatcamTools/ToolCalculators.py:334
#: flatcamTools/ToolCalculators.py:349 flatcamTools/ToolCalculators.py:362
#: flatcamTools/ToolCalculators.py:376 flatcamTools/ToolCalculators.py:387
@@ -1283,10 +1303,10 @@ msgstr ""
#: flatcamTools/ToolNonCopperClear.py:980
#: flatcamTools/ToolNonCopperClear.py:1062
#: flatcamTools/ToolNonCopperClear.py:1341
-#: flatcamTools/ToolNonCopperClear.py:1371 flatcamTools/ToolPaint.py:697
-#: flatcamTools/ToolPaint.py:772 flatcamTools/ToolPaint.py:921
-#: flatcamTools/ToolPaint.py:975 flatcamTools/ToolPaint.py:1224
-#: flatcamTools/ToolPaint.py:1493 flatcamTools/ToolPaint.py:1963
+#: flatcamTools/ToolNonCopperClear.py:1371 flatcamTools/ToolPaint.py:699
+#: flatcamTools/ToolPaint.py:774 flatcamTools/ToolPaint.py:922
+#: flatcamTools/ToolPaint.py:976 flatcamTools/ToolPaint.py:1225
+#: flatcamTools/ToolPaint.py:1496 flatcamTools/ToolPaint.py:1966
#: flatcamTools/ToolPanelize.py:397 flatcamTools/ToolPanelize.py:409
#: flatcamTools/ToolPanelize.py:422 flatcamTools/ToolPanelize.py:435
#: flatcamTools/ToolPanelize.py:447 flatcamTools/ToolPanelize.py:458
@@ -1298,232 +1318,232 @@ msgstr ""
msgid "Wrong value format entered, use a number."
msgstr ""
-#: FlatCAMObj.py:2606 FlatCAMObj.py:2696 FlatCAMObj.py:2817
+#: FlatCAMObj.py:2608 FlatCAMObj.py:2698 FlatCAMObj.py:2819
msgid "Please select one or more tools from the list and try again."
msgstr ""
-#: FlatCAMObj.py:2612
+#: FlatCAMObj.py:2614
msgid "Milling tool for DRILLS is larger than hole size. Cancelled."
msgstr ""
-#: FlatCAMObj.py:2625 FlatCAMObj.py:2718 FlatCAMObj.py:2836
+#: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
msgid "Tool_nr"
msgstr ""
-#: FlatCAMObj.py:2625 FlatCAMObj.py:2718 FlatCAMObj.py:2836
-#: flatcamEditors/FlatCAMExcEditor.py:1483
-#: flatcamEditors/FlatCAMExcEditor.py:3116 flatcamGUI/ObjectUI.py:613
+#: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
+#: flatcamEditors/FlatCAMExcEditor.py:1500
+#: flatcamEditors/FlatCAMExcEditor.py:3133 flatcamGUI/ObjectUI.py:613
#: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
#: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolSolderPaste.py:81
msgid "Diameter"
msgstr ""
-#: FlatCAMObj.py:2625 FlatCAMObj.py:2718 FlatCAMObj.py:2836
+#: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
msgid "Drills_Nr"
msgstr ""
-#: FlatCAMObj.py:2625 FlatCAMObj.py:2718 FlatCAMObj.py:2836
+#: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
msgid "Slots_Nr"
msgstr ""
-#: FlatCAMObj.py:2705
+#: FlatCAMObj.py:2707
msgid "Milling tool for SLOTS is larger than hole size. Cancelled."
msgstr ""
-#: FlatCAMObj.py:2877 FlatCAMObj.py:4557 FlatCAMObj.py:4775 FlatCAMObj.py:5098
+#: FlatCAMObj.py:2879 FlatCAMObj.py:4559 FlatCAMObj.py:4777 FlatCAMObj.py:5100
msgid ""
"Wrong value format for self.defaults[\"z_pdepth\"] or self.options[\"z_pdepth"
"\"]"
msgstr ""
-#: FlatCAMObj.py:2888 FlatCAMObj.py:4568 FlatCAMObj.py:5109
+#: FlatCAMObj.py:2890 FlatCAMObj.py:4570 FlatCAMObj.py:5111
msgid ""
"Wrong value format for self.defaults[\"feedrate_probe\"] or self."
"options[\"feedrate_probe\"]"
msgstr ""
-#: FlatCAMObj.py:2918 FlatCAMObj.py:4985 FlatCAMObj.py:4991 FlatCAMObj.py:5143
+#: FlatCAMObj.py:2920 FlatCAMObj.py:4987 FlatCAMObj.py:4993 FlatCAMObj.py:5145
msgid "Generating CNC Code"
msgstr ""
-#: FlatCAMObj.py:2944 camlib.py:5649 camlib.py:6623
+#: FlatCAMObj.py:2946 camlib.py:5658 camlib.py:6632
msgid ""
"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
"y) \n"
"but now there is only one value, not two. "
msgstr ""
-#: FlatCAMObj.py:3259 FlatCAMObj.py:4178 FlatCAMObj.py:4179 FlatCAMObj.py:4188
+#: FlatCAMObj.py:3261 FlatCAMObj.py:4180 FlatCAMObj.py:4181 FlatCAMObj.py:4190
msgid "Iso"
msgstr ""
-#: FlatCAMObj.py:3259
+#: FlatCAMObj.py:3261
msgid "Finish"
msgstr ""
-#: FlatCAMObj.py:3562 flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:746
+#: FlatCAMObj.py:3564 flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:746
#: flatcamGUI/FlatCAMGUI.py:1718 flatcamGUI/FlatCAMGUI.py:2092
#: flatcamGUI/ObjectUI.py:1061
msgid "Copy"
msgstr ""
-#: FlatCAMObj.py:3773
+#: FlatCAMObj.py:3775
msgid "Please enter the desired tool diameter in Float format."
msgstr ""
-#: FlatCAMObj.py:3847
+#: FlatCAMObj.py:3849
msgid "Tool added in Tool Table."
msgstr ""
-#: FlatCAMObj.py:3851
+#: FlatCAMObj.py:3853
msgid "Default Tool added. Wrong value format entered."
msgstr ""
-#: FlatCAMObj.py:3884 FlatCAMObj.py:3893
+#: FlatCAMObj.py:3886 FlatCAMObj.py:3895
msgid "Failed. Select a tool to copy."
msgstr ""
-#: FlatCAMObj.py:3921
+#: FlatCAMObj.py:3923
msgid "Tool was copied in Tool Table."
msgstr ""
-#: FlatCAMObj.py:3951
+#: FlatCAMObj.py:3953
msgid "Tool was edited in Tool Table."
msgstr ""
-#: FlatCAMObj.py:3980 FlatCAMObj.py:3989
+#: FlatCAMObj.py:3982 FlatCAMObj.py:3991
msgid "Failed. Select a tool to delete."
msgstr ""
-#: FlatCAMObj.py:4012
+#: FlatCAMObj.py:4014
msgid "Tool was deleted in Tool Table."
msgstr ""
-#: FlatCAMObj.py:4442
+#: FlatCAMObj.py:4444
#, python-format
msgid "This Geometry can't be processed because it is %s geometry."
msgstr ""
-#: FlatCAMObj.py:4484
+#: FlatCAMObj.py:4486
msgid "Failed. No tool selected in the tool table ..."
msgstr ""
-#: FlatCAMObj.py:4522
+#: FlatCAMObj.py:4524
msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() -->"
msgstr ""
-#: FlatCAMObj.py:4671 FlatCAMObj.py:4911
+#: FlatCAMObj.py:4673 FlatCAMObj.py:4913
msgid ""
"Tool Offset is selected in Tool Table but no value is provided.\n"
"Add a Tool Offset or change the Offset Type."
msgstr ""
-#: FlatCAMObj.py:4722 FlatCAMObj.py:4952
+#: FlatCAMObj.py:4724 FlatCAMObj.py:4954
msgid "G-Code parsing in progress..."
msgstr ""
-#: FlatCAMObj.py:4724 FlatCAMObj.py:4954
+#: FlatCAMObj.py:4726 FlatCAMObj.py:4956
msgid "G-Code parsing finished..."
msgstr ""
-#: FlatCAMObj.py:4732 FlatCAMObj.py:4964 FlatCAMObj.py:5136
+#: FlatCAMObj.py:4734 FlatCAMObj.py:4966 FlatCAMObj.py:5138
msgid "Finished G-Code processing..."
msgstr ""
-#: FlatCAMObj.py:4734 FlatCAMObj.py:4966
+#: FlatCAMObj.py:4736 FlatCAMObj.py:4968
#, python-format
msgid "G-Code processing failed with error: %s"
msgstr ""
-#: FlatCAMObj.py:4786
+#: FlatCAMObj.py:4788
msgid ""
" Wrong value format for self.defaults[\"feedrate_probe\"] or self."
"options[\"feedrate_probe\"]"
msgstr ""
-#: FlatCAMObj.py:4797 flatcamTools/ToolSolderPaste.py:1187
+#: FlatCAMObj.py:4799 flatcamTools/ToolSolderPaste.py:1187
msgid "Cancelled. Empty file, it has no geometry"
msgstr ""
-#: FlatCAMObj.py:4988 FlatCAMObj.py:4994 FlatCAMObj.py:5146
+#: FlatCAMObj.py:4990 FlatCAMObj.py:4996 FlatCAMObj.py:5148
msgid "CNCjob created"
msgstr ""
-#: FlatCAMObj.py:5178 FlatCAMObj.py:5188 camlib.py:3572 camlib.py:3582
+#: FlatCAMObj.py:5180 FlatCAMObj.py:5190 camlib.py:3581 camlib.py:3591
msgid "Scale factor has to be a number: integer or float."
msgstr ""
-#: FlatCAMObj.py:5262
+#: FlatCAMObj.py:5264
msgid "Geometry Scale done."
msgstr ""
-#: FlatCAMObj.py:5279 camlib.py:3676
+#: FlatCAMObj.py:5281 camlib.py:3685
msgid ""
"An (x,y) pair of values are needed. Probable you entered only one value in "
"the Offset field."
msgstr ""
-#: FlatCAMObj.py:5333
+#: FlatCAMObj.py:5335
msgid "Geometry Offset done."
msgstr ""
-#: FlatCAMObj.py:5362
+#: FlatCAMObj.py:5364
msgid ""
"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
"y)\n"
"but now there is only one value, not two."
msgstr ""
-#: FlatCAMObj.py:5903 FlatCAMObj.py:5908 flatcamTools/ToolSolderPaste.py:1393
+#: FlatCAMObj.py:5905 FlatCAMObj.py:5910 flatcamTools/ToolSolderPaste.py:1393
msgid "Export Machine Code ..."
msgstr ""
-#: FlatCAMObj.py:5914 flatcamTools/ToolSolderPaste.py:1397
+#: FlatCAMObj.py:5916 flatcamTools/ToolSolderPaste.py:1397
msgid "Export Machine Code cancelled ..."
msgstr ""
-#: FlatCAMObj.py:5932
+#: FlatCAMObj.py:5934
msgid "Machine Code file saved to"
msgstr ""
-#: FlatCAMObj.py:5956
+#: FlatCAMObj.py:5958
msgid "FlatCAMCNNJob.on_edit_code_click() -->"
msgstr ""
-#: FlatCAMObj.py:5964
+#: FlatCAMObj.py:5966
msgid "Loaded Machine Code into Code Editor"
msgstr ""
-#: FlatCAMObj.py:6076
+#: FlatCAMObj.py:6078
msgid "This CNCJob object can't be processed because it is a"
msgstr ""
-#: FlatCAMObj.py:6078
+#: FlatCAMObj.py:6080
msgid "CNCJob object"
msgstr ""
-#: FlatCAMObj.py:6130
+#: FlatCAMObj.py:6132
msgid "G-code does not have a units code: either G20 or G21"
msgstr ""
-#: FlatCAMObj.py:6142
+#: FlatCAMObj.py:6144
msgid "Cancelled. The Toolchange Custom code is enabled but it's empty."
msgstr ""
-#: FlatCAMObj.py:6148
+#: FlatCAMObj.py:6150
msgid "Toolchange G-code was replaced by a custom code."
msgstr ""
-#: FlatCAMObj.py:6175
+#: FlatCAMObj.py:6177
msgid "Saved to"
msgstr ""
-#: FlatCAMObj.py:6185 FlatCAMObj.py:6195
+#: FlatCAMObj.py:6187 FlatCAMObj.py:6197
msgid ""
"The used postprocessor file has to have in it's name: 'toolchange_custom'"
msgstr ""
-#: FlatCAMObj.py:6199
+#: FlatCAMObj.py:6201
msgid "There is no postprocessor file."
msgstr ""
@@ -1611,49 +1631,49 @@ msgstr ""
msgid "polygons"
msgstr ""
-#: camlib.py:3390
+#: camlib.py:3399
msgid "Gerber Line"
msgstr ""
-#: camlib.py:3390
+#: camlib.py:3399
msgid "Gerber Line Content"
msgstr ""
-#: camlib.py:3392
+#: camlib.py:3401
msgid "Gerber Parser ERROR"
msgstr ""
-#: camlib.py:3640
+#: camlib.py:3649
msgid "Gerber Scale done."
msgstr ""
-#: camlib.py:3730
+#: camlib.py:3739
msgid "Gerber Offset done."
msgstr ""
-#: camlib.py:3807
+#: camlib.py:3816
msgid "Gerber Mirror done."
msgstr ""
-#: camlib.py:3876
+#: camlib.py:3885
msgid "Gerber Skew done."
msgstr ""
-#: camlib.py:3937
+#: camlib.py:3946
msgid "Gerber Rotate done."
msgstr ""
-#: camlib.py:4224
+#: camlib.py:4233
msgid "This is GCODE mark"
msgstr ""
-#: camlib.py:4340
+#: camlib.py:4349
msgid ""
"No tool diameter info's. See shell.\n"
"A tool change event: T"
msgstr ""
-#: camlib.py:4343
+#: camlib.py:4352
msgid ""
"was found but the Excellon file have no informations regarding the tool "
"diameters therefore the application will try to load it by using some 'fake' "
@@ -1662,25 +1682,25 @@ msgid ""
"diameters to reflect the real diameters."
msgstr ""
-#: camlib.py:4798
+#: camlib.py:4807
#, python-brace-format
msgid ""
"{e_code} Excellon Parser error.\n"
"Parsing Failed. Line {l_nr}: {line}\n"
msgstr ""
-#: camlib.py:4881
+#: camlib.py:4890
msgid ""
"Excellon.create_geometry() -> a drill location was skipped due of not having "
"a tool associated.\n"
"Check the resulting GCode."
msgstr ""
-#: camlib.py:5555
+#: camlib.py:5564
msgid "There is no such parameter"
msgstr ""
-#: camlib.py:5626
+#: camlib.py:5635
msgid ""
"The Cut Z parameter has positive value. It is the depth value to drill into "
"material.\n"
@@ -1689,52 +1709,52 @@ msgid ""
"CNC code (Gcode etc)."
msgstr ""
-#: camlib.py:5634 camlib.py:6307 camlib.py:6649
+#: camlib.py:5643 camlib.py:6316 camlib.py:6658
msgid "The Cut Z parameter is zero. There will be no cut, skipping file"
msgstr ""
-#: camlib.py:5686
+#: camlib.py:5695
msgid "Creating a list of points to drill..."
msgstr ""
-#: camlib.py:5769
+#: camlib.py:5778
msgid "Starting G-Code"
msgstr ""
-#: camlib.py:5865 camlib.py:6011 camlib.py:6117 camlib.py:6416 camlib.py:6758
+#: camlib.py:5874 camlib.py:6020 camlib.py:6126 camlib.py:6425 camlib.py:6767
msgid "Starting G-Code for tool with diameter"
msgstr ""
-#: camlib.py:5922 camlib.py:6068 camlib.py:6175
+#: camlib.py:5931 camlib.py:6077 camlib.py:6184
msgid "G91 coordinates not implemented"
msgstr ""
-#: camlib.py:5928 camlib.py:6074 camlib.py:6181
+#: camlib.py:5937 camlib.py:6083 camlib.py:6190
msgid "The loaded Excellon file has no drills"
msgstr ""
-#: camlib.py:6080
+#: camlib.py:6089
msgid "Wrong optimization type selected."
msgstr ""
-#: camlib.py:6203
+#: camlib.py:6212
msgid "Finished G-Code generation..."
msgstr ""
-#: camlib.py:6280
+#: camlib.py:6289
msgid ""
"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
"y) \n"
"but now there is only one value, not two."
msgstr ""
-#: camlib.py:6293 camlib.py:6635
+#: camlib.py:6302 camlib.py:6644
msgid ""
"Cut_Z parameter is None or zero. Most likely a bad combinations of other "
"parameters."
msgstr ""
-#: camlib.py:6299 camlib.py:6641
+#: camlib.py:6308 camlib.py:6650
msgid ""
"The Cut Z parameter has positive value. It is the depth value to cut into "
"material.\n"
@@ -1743,11 +1763,11 @@ msgid ""
"code (Gcode etc)."
msgstr ""
-#: camlib.py:6317 camlib.py:6655
+#: camlib.py:6326 camlib.py:6664
msgid "Travel Z parameter is None or zero."
msgstr ""
-#: camlib.py:6322 camlib.py:6660
+#: camlib.py:6331 camlib.py:6669
msgid ""
"The Travel Z parameter has negative value. It is the height value to travel "
"between cuts.\n"
@@ -1756,321 +1776,317 @@ msgid ""
"code (Gcode etc)."
msgstr ""
-#: camlib.py:6330 camlib.py:6668
+#: camlib.py:6339 camlib.py:6677
msgid "The Z Travel parameter is zero. This is dangerous, skipping file"
msgstr ""
-#: camlib.py:6345 camlib.py:6687
+#: camlib.py:6354 camlib.py:6696
msgid "Indexing geometry before generating G-Code..."
msgstr ""
-#: camlib.py:6399 camlib.py:6744
+#: camlib.py:6408 camlib.py:6753
msgid "Starting G-Code..."
msgstr ""
-#: camlib.py:6486 camlib.py:6828
+#: camlib.py:6495 camlib.py:6837
msgid "Finished G-Code generation"
msgstr ""
-#: camlib.py:6488
+#: camlib.py:6497
msgid "paths traced"
msgstr ""
-#: camlib.py:6523
+#: camlib.py:6532
msgid "Expected a Geometry, got"
msgstr ""
-#: camlib.py:6530
+#: camlib.py:6539
msgid ""
"Trying to generate a CNC Job from a Geometry object without solid_geometry."
msgstr ""
-#: camlib.py:6569
+#: camlib.py:6578
#, python-format
msgid "[ERROR_NOTCL] %s"
msgstr ""
-#: camlib.py:6830
+#: camlib.py:6839
msgid " paths traced."
msgstr ""
-#: camlib.py:6859
+#: camlib.py:6868
msgid "There is no tool data in the SolderPaste geometry."
msgstr ""
-#: camlib.py:6946
+#: camlib.py:6955
msgid "Finished SolderPste G-Code generation"
msgstr ""
-#: camlib.py:6948
+#: camlib.py:6957
msgid "paths traced."
msgstr ""
-#: camlib.py:7421 camlib.py:7699 camlib.py:7802 camlib.py:7849
+#: camlib.py:7430 camlib.py:7708 camlib.py:7811 camlib.py:7858
msgid "G91 coordinates not implemented ..."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:45 flatcamEditors/FlatCAMExcEditor.py:69
-#: flatcamEditors/FlatCAMExcEditor.py:150
-#: flatcamEditors/FlatCAMExcEditor.py:350
-#: flatcamEditors/FlatCAMExcEditor.py:540
-#: flatcamEditors/FlatCAMGrbEditor.py:237
-#: flatcamEditors/FlatCAMGrbEditor.py:242
+#: flatcamEditors/FlatCAMExcEditor.py:45 flatcamEditors/FlatCAMExcEditor.py:70
+#: flatcamEditors/FlatCAMExcEditor.py:152
+#: flatcamEditors/FlatCAMExcEditor.py:356
+#: flatcamEditors/FlatCAMExcEditor.py:548
+#: flatcamEditors/FlatCAMGrbEditor.py:238
+#: flatcamEditors/FlatCAMGrbEditor.py:243
msgid "Click to place ..."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:53
-msgid "[WARNING_NOTCL] To add a drill first select a tool"
+#: flatcamEditors/FlatCAMExcEditor.py:54
+msgid "To add a drill first select a tool"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:115
-msgid "[success] Done. Drill added."
+#: flatcamEditors/FlatCAMExcEditor.py:117
+msgid "Done. Drill added."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:157
-msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
+#: flatcamEditors/FlatCAMExcEditor.py:160
+msgid "To add an Drill Array first select a tool in Tool Table"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:173
-#: flatcamEditors/FlatCAMExcEditor.py:379
-#: flatcamEditors/FlatCAMExcEditor.py:587
-#: flatcamEditors/FlatCAMExcEditor.py:1083
-#: flatcamEditors/FlatCAMExcEditor.py:1108
-#: flatcamEditors/FlatCAMGrbEditor.py:459
-#: flatcamEditors/FlatCAMGrbEditor.py:1845
-#: flatcamEditors/FlatCAMGrbEditor.py:1873
+#: flatcamEditors/FlatCAMExcEditor.py:176
+#: flatcamEditors/FlatCAMExcEditor.py:386
+#: flatcamEditors/FlatCAMExcEditor.py:596
+#: flatcamEditors/FlatCAMExcEditor.py:1098
+#: flatcamEditors/FlatCAMExcEditor.py:1123
+#: flatcamEditors/FlatCAMGrbEditor.py:462
+#: flatcamEditors/FlatCAMGrbEditor.py:1859
+#: flatcamEditors/FlatCAMGrbEditor.py:1887
msgid "Click on target location ..."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:190
+#: flatcamEditors/FlatCAMExcEditor.py:193
msgid "Click on the Drill Circular Array Start position"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:212
-#: flatcamEditors/FlatCAMExcEditor.py:626
-#: flatcamEditors/FlatCAMGrbEditor.py:502
-msgid ""
-"[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
-"separator."
-msgstr ""
-
#: flatcamEditors/FlatCAMExcEditor.py:215
-#, python-format
-msgid "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
+#: flatcamEditors/FlatCAMExcEditor.py:635
+#: flatcamEditors/FlatCAMGrbEditor.py:505
+msgid "The value is not Float. Check for comma instead of dot separator."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:313
-msgid "[WARNING_NOTCL] Too many drills for the selected spacing angle."
+#: flatcamEditors/FlatCAMExcEditor.py:219
+msgid "The value is mistyped. Check the value"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:330
-msgid "[success] Done. Drill Array added."
+#: flatcamEditors/FlatCAMExcEditor.py:318
+msgid "Too many drills for the selected spacing angle."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:358
-msgid "[WARNING_NOTCL] To add a slot first select a tool"
+#: flatcamEditors/FlatCAMExcEditor.py:336
+msgid "Done. Drill Array added."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:415
-#: flatcamEditors/FlatCAMExcEditor.py:422
-#: flatcamEditors/FlatCAMExcEditor.py:690
-#: flatcamEditors/FlatCAMExcEditor.py:697
-msgid "[WARNING_NOTCL] Value is missing or wrong format. Add it and retry."
+#: flatcamEditors/FlatCAMExcEditor.py:365
+msgid "To add a slot first select a tool"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:521
-msgid "[success] Done. Adding Slot completed."
+#: flatcamEditors/FlatCAMExcEditor.py:423
+#: flatcamEditors/FlatCAMExcEditor.py:430
+#: flatcamEditors/FlatCAMExcEditor.py:701
+#: flatcamEditors/FlatCAMExcEditor.py:708
+msgid "Value is missing or wrong format. Add it and retry."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:547
-msgid "[WARNING_NOTCL] To add an Slot Array first select a tool in Tool Table"
+#: flatcamEditors/FlatCAMExcEditor.py:529
+msgid "Done. Adding Slot completed."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:604
+#: flatcamEditors/FlatCAMExcEditor.py:556
+msgid "To add an Slot Array first select a tool in Tool Table"
+msgstr ""
+
+#: flatcamEditors/FlatCAMExcEditor.py:613
msgid "Click on the Slot Circular Array Start position"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:629
-#: flatcamEditors/FlatCAMGrbEditor.py:505
-msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
+#: flatcamEditors/FlatCAMExcEditor.py:639
+#: flatcamEditors/FlatCAMGrbEditor.py:509
+msgid "The value is mistyped. Check the value."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:807
-msgid "[WARNING_NOTCL] Too many Slots for the selected spacing angle."
+#: flatcamEditors/FlatCAMExcEditor.py:818
+msgid "Too many Slots for the selected spacing angle."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:829
-msgid "[success] Done. Slot Array added."
+#: flatcamEditors/FlatCAMExcEditor.py:841
+msgid "Done. Slot Array added."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:846
+#: flatcamEditors/FlatCAMExcEditor.py:858
msgid "Click on the Drill(s) to resize ..."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:876
-msgid ""
-"[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
+#: flatcamEditors/FlatCAMExcEditor.py:888
+msgid "Resize drill(s) failed. Please enter a diameter for resize."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:966
-#: flatcamEditors/FlatCAMExcEditor.py:1035
-msgid "[ERROR_NOTCL] Cancelled."
+#: flatcamEditors/FlatCAMExcEditor.py:978
+#: flatcamEditors/FlatCAMExcEditor.py:1048
+msgid "Cancelled."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1055
-msgid "[success] Done. Drill/Slot Resize completed."
+#: flatcamEditors/FlatCAMExcEditor.py:1069
+msgid "Drill/Slot Resize completed."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1057
-msgid "[WARNING_NOTCL] Cancelled. No drills/slots selected for resize ..."
+#: flatcamEditors/FlatCAMExcEditor.py:1072
+msgid "Cancelled. No drills/slots selected for resize ..."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1085
-#: flatcamEditors/FlatCAMGrbEditor.py:1847
+#: flatcamEditors/FlatCAMExcEditor.py:1100
+#: flatcamEditors/FlatCAMGrbEditor.py:1861
msgid "Click on reference location ..."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1140
-msgid "[success] Done. Drill(s) Move completed."
+#: flatcamEditors/FlatCAMExcEditor.py:1156
+msgid "Done. Drill(s) Move completed."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1237
-msgid "[success] Done. Drill(s) copied."
+#: flatcamEditors/FlatCAMExcEditor.py:1254
+msgid "Done. Drill(s) copied."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1456 flatcamGUI/FlatCAMGUI.py:5510
+#: flatcamEditors/FlatCAMExcEditor.py:1473 flatcamGUI/FlatCAMGUI.py:5510
msgid "Excellon Editor"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1463
-#: flatcamEditors/FlatCAMGrbEditor.py:2344
+#: flatcamEditors/FlatCAMExcEditor.py:1480
+#: flatcamEditors/FlatCAMGrbEditor.py:2361
msgid "Name:"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1469 flatcamGUI/ObjectUI.py:593
+#: flatcamEditors/FlatCAMExcEditor.py:1486 flatcamGUI/ObjectUI.py:593
#: flatcamGUI/ObjectUI.py:919 flatcamTools/ToolNonCopperClear.py:96
#: flatcamTools/ToolPaint.py:95 flatcamTools/ToolSolderPaste.py:70
msgid "Tools Table"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1471 flatcamGUI/ObjectUI.py:595
+#: flatcamEditors/FlatCAMExcEditor.py:1488 flatcamGUI/ObjectUI.py:595
msgid ""
"Tools in this Excellon object\n"
"when are used for drilling."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1491
+#: flatcamEditors/FlatCAMExcEditor.py:1508
msgid "Add/Delete Tool"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1493
+#: flatcamEditors/FlatCAMExcEditor.py:1510
msgid ""
"Add/Delete a tool to the tool list\n"
"for this Excellon object."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1501 flatcamGUI/ObjectUI.py:1037
+#: flatcamEditors/FlatCAMExcEditor.py:1518 flatcamGUI/ObjectUI.py:1037
#: flatcamTools/ToolNonCopperClear.py:212 flatcamTools/ToolPaint.py:162
msgid "Tool Dia"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1503 flatcamGUI/FlatCAMGUI.py:5539
+#: flatcamEditors/FlatCAMExcEditor.py:1520 flatcamGUI/FlatCAMGUI.py:5539
#: flatcamGUI/ObjectUI.py:1040
msgid "Diameter for the new tool"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1511
+#: flatcamEditors/FlatCAMExcEditor.py:1528
msgid "Add Tool"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1513
+#: flatcamEditors/FlatCAMExcEditor.py:1530
msgid ""
"Add a new tool to the tool list\n"
"with the diameter specified above."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1525
+#: flatcamEditors/FlatCAMExcEditor.py:1542
msgid "Delete Tool"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1527
+#: flatcamEditors/FlatCAMExcEditor.py:1544
msgid ""
"Delete a tool in the tool list\n"
"by selecting a row in the tool table."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1545
+#: flatcamEditors/FlatCAMExcEditor.py:1562
msgid "Resize Drill(s)"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1547
+#: flatcamEditors/FlatCAMExcEditor.py:1564
msgid "Resize a drill or a selection of drills."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1554
+#: flatcamEditors/FlatCAMExcEditor.py:1571
msgid "Resize Dia"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1556
+#: flatcamEditors/FlatCAMExcEditor.py:1573
msgid "Diameter to resize to."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1564
+#: flatcamEditors/FlatCAMExcEditor.py:1581
msgid "Resize"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1566
+#: flatcamEditors/FlatCAMExcEditor.py:1583
msgid "Resize drill(s)"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1591 flatcamGUI/FlatCAMGUI.py:1710
+#: flatcamEditors/FlatCAMExcEditor.py:1608 flatcamGUI/FlatCAMGUI.py:1710
msgid "Add Drill Array"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1593
+#: flatcamEditors/FlatCAMExcEditor.py:1610
msgid "Add an array of drills (linear or circular array)"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1599
+#: flatcamEditors/FlatCAMExcEditor.py:1616
msgid ""
"Select the type of drills array to create.\n"
"It can be Linear X(Y) or Circular"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1602
-#: flatcamEditors/FlatCAMExcEditor.py:1804
-#: flatcamEditors/FlatCAMGrbEditor.py:2630
+#: flatcamEditors/FlatCAMExcEditor.py:1619
+#: flatcamEditors/FlatCAMExcEditor.py:1821
+#: flatcamEditors/FlatCAMGrbEditor.py:2647
msgid "Linear"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1603
-#: flatcamEditors/FlatCAMExcEditor.py:1805
-#: flatcamEditors/FlatCAMGrbEditor.py:2631 flatcamGUI/FlatCAMGUI.py:6460
+#: flatcamEditors/FlatCAMExcEditor.py:1620
+#: flatcamEditors/FlatCAMExcEditor.py:1822
+#: flatcamEditors/FlatCAMGrbEditor.py:2648 flatcamGUI/FlatCAMGUI.py:6460
#: flatcamTools/ToolNonCopperClear.py:203
msgid "Circular"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1611 flatcamGUI/FlatCAMGUI.py:5549
+#: flatcamEditors/FlatCAMExcEditor.py:1628 flatcamGUI/FlatCAMGUI.py:5549
msgid "Nr of drills"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1612 flatcamGUI/FlatCAMGUI.py:5551
+#: flatcamEditors/FlatCAMExcEditor.py:1629 flatcamGUI/FlatCAMGUI.py:5551
msgid "Specify how many drills to be in the array."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1629
-#: flatcamEditors/FlatCAMExcEditor.py:1676
-#: flatcamEditors/FlatCAMExcEditor.py:1740
-#: flatcamEditors/FlatCAMExcEditor.py:1831
-#: flatcamEditors/FlatCAMExcEditor.py:1878
-#: flatcamEditors/FlatCAMGrbEditor.py:2657
-#: flatcamEditors/FlatCAMGrbEditor.py:2702 flatcamGUI/FlatCAMGUI.py:5643
+#: flatcamEditors/FlatCAMExcEditor.py:1646
+#: flatcamEditors/FlatCAMExcEditor.py:1693
+#: flatcamEditors/FlatCAMExcEditor.py:1757
+#: flatcamEditors/FlatCAMExcEditor.py:1848
+#: flatcamEditors/FlatCAMExcEditor.py:1895
+#: flatcamEditors/FlatCAMGrbEditor.py:2674
+#: flatcamEditors/FlatCAMGrbEditor.py:2719 flatcamGUI/FlatCAMGUI.py:5643
msgid "Direction"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1631
-#: flatcamEditors/FlatCAMExcEditor.py:1833
-#: flatcamEditors/FlatCAMGrbEditor.py:2659 flatcamGUI/FlatCAMGUI.py:4717
+#: flatcamEditors/FlatCAMExcEditor.py:1648
+#: flatcamEditors/FlatCAMExcEditor.py:1850
+#: flatcamEditors/FlatCAMGrbEditor.py:2676 flatcamGUI/FlatCAMGUI.py:4717
#: flatcamGUI/FlatCAMGUI.py:5566 flatcamGUI/FlatCAMGUI.py:5697
msgid ""
"Direction on which the linear array is oriented:\n"
@@ -2079,35 +2095,35 @@ msgid ""
"- 'Angle' - a custom angle for the array inclination"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1638
-#: flatcamEditors/FlatCAMExcEditor.py:1749
-#: flatcamEditors/FlatCAMExcEditor.py:1840
-#: flatcamEditors/FlatCAMGrbEditor.py:2666 flatcamGUI/FlatCAMGUI.py:4723
+#: flatcamEditors/FlatCAMExcEditor.py:1655
+#: flatcamEditors/FlatCAMExcEditor.py:1766
+#: flatcamEditors/FlatCAMExcEditor.py:1857
+#: flatcamEditors/FlatCAMGrbEditor.py:2683 flatcamGUI/FlatCAMGUI.py:4723
#: flatcamGUI/FlatCAMGUI.py:5572 flatcamGUI/FlatCAMGUI.py:5652
#: flatcamGUI/FlatCAMGUI.py:5703
msgid "X"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1639
-#: flatcamEditors/FlatCAMExcEditor.py:1750
-#: flatcamEditors/FlatCAMExcEditor.py:1841
-#: flatcamEditors/FlatCAMGrbEditor.py:2667 flatcamGUI/FlatCAMGUI.py:4724
+#: flatcamEditors/FlatCAMExcEditor.py:1656
+#: flatcamEditors/FlatCAMExcEditor.py:1767
+#: flatcamEditors/FlatCAMExcEditor.py:1858
+#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:4724
#: flatcamGUI/FlatCAMGUI.py:5573 flatcamGUI/FlatCAMGUI.py:5653
#: flatcamGUI/FlatCAMGUI.py:5704
msgid "Y"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1640
-#: flatcamEditors/FlatCAMExcEditor.py:1654
-#: flatcamEditors/FlatCAMExcEditor.py:1688
-#: flatcamEditors/FlatCAMExcEditor.py:1751
-#: flatcamEditors/FlatCAMExcEditor.py:1755
-#: flatcamEditors/FlatCAMExcEditor.py:1842
-#: flatcamEditors/FlatCAMExcEditor.py:1856
-#: flatcamEditors/FlatCAMExcEditor.py:1890
-#: flatcamEditors/FlatCAMGrbEditor.py:2668
-#: flatcamEditors/FlatCAMGrbEditor.py:2681
-#: flatcamEditors/FlatCAMGrbEditor.py:2717 flatcamGUI/FlatCAMGUI.py:4725
+#: flatcamEditors/FlatCAMExcEditor.py:1657
+#: flatcamEditors/FlatCAMExcEditor.py:1671
+#: flatcamEditors/FlatCAMExcEditor.py:1705
+#: flatcamEditors/FlatCAMExcEditor.py:1768
+#: flatcamEditors/FlatCAMExcEditor.py:1772
+#: flatcamEditors/FlatCAMExcEditor.py:1859
+#: flatcamEditors/FlatCAMExcEditor.py:1873
+#: flatcamEditors/FlatCAMExcEditor.py:1907
+#: flatcamEditors/FlatCAMGrbEditor.py:2685
+#: flatcamEditors/FlatCAMGrbEditor.py:2698
+#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/FlatCAMGUI.py:4725
#: flatcamGUI/FlatCAMGUI.py:4742 flatcamGUI/FlatCAMGUI.py:5574
#: flatcamGUI/FlatCAMGUI.py:5591 flatcamGUI/FlatCAMGUI.py:5654
#: flatcamGUI/FlatCAMGUI.py:5659 flatcamGUI/FlatCAMGUI.py:5705
@@ -2115,23 +2131,23 @@ msgstr ""
msgid "Angle"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1644
-#: flatcamEditors/FlatCAMExcEditor.py:1846
-#: flatcamEditors/FlatCAMGrbEditor.py:2672 flatcamGUI/FlatCAMGUI.py:4731
+#: flatcamEditors/FlatCAMExcEditor.py:1661
+#: flatcamEditors/FlatCAMExcEditor.py:1863
+#: flatcamEditors/FlatCAMGrbEditor.py:2689 flatcamGUI/FlatCAMGUI.py:4731
#: flatcamGUI/FlatCAMGUI.py:5711
msgid "Pitch"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1646
-#: flatcamEditors/FlatCAMExcEditor.py:1848
-#: flatcamEditors/FlatCAMGrbEditor.py:2674 flatcamGUI/FlatCAMGUI.py:4733
+#: flatcamEditors/FlatCAMExcEditor.py:1663
+#: flatcamEditors/FlatCAMExcEditor.py:1865
+#: flatcamEditors/FlatCAMGrbEditor.py:2691 flatcamGUI/FlatCAMGUI.py:4733
#: flatcamGUI/FlatCAMGUI.py:5582 flatcamGUI/FlatCAMGUI.py:5713
msgid "Pitch = Distance between elements of the array."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1656
-#: flatcamEditors/FlatCAMExcEditor.py:1858
-#: flatcamEditors/FlatCAMGrbEditor.py:2683
+#: flatcamEditors/FlatCAMExcEditor.py:1673
+#: flatcamEditors/FlatCAMExcEditor.py:1875
+#: flatcamEditors/FlatCAMGrbEditor.py:2700
msgid ""
"Angle at which the linear array is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -2139,59 +2155,59 @@ msgid ""
"Max value is: 360.00 degrees."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1677
-#: flatcamEditors/FlatCAMExcEditor.py:1879
-#: flatcamEditors/FlatCAMGrbEditor.py:2704
+#: flatcamEditors/FlatCAMExcEditor.py:1694
+#: flatcamEditors/FlatCAMExcEditor.py:1896
+#: flatcamEditors/FlatCAMGrbEditor.py:2721
msgid ""
"Direction for circular array.Can be CW = clockwise or CCW = counter "
"clockwise."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1684
-#: flatcamEditors/FlatCAMExcEditor.py:1886
-#: flatcamEditors/FlatCAMGrbEditor.py:2712 flatcamGUI/FlatCAMGUI.py:4761
+#: flatcamEditors/FlatCAMExcEditor.py:1701
+#: flatcamEditors/FlatCAMExcEditor.py:1903
+#: flatcamEditors/FlatCAMGrbEditor.py:2729 flatcamGUI/FlatCAMGUI.py:4761
#: flatcamGUI/FlatCAMGUI.py:5152 flatcamGUI/FlatCAMGUI.py:5610
#: flatcamGUI/FlatCAMGUI.py:5741 flatcamGUI/FlatCAMGUI.py:5943
msgid "CW"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1685
-#: flatcamEditors/FlatCAMExcEditor.py:1887
-#: flatcamEditors/FlatCAMGrbEditor.py:2713 flatcamGUI/FlatCAMGUI.py:4762
+#: flatcamEditors/FlatCAMExcEditor.py:1702
+#: flatcamEditors/FlatCAMExcEditor.py:1904
+#: flatcamEditors/FlatCAMGrbEditor.py:2730 flatcamGUI/FlatCAMGUI.py:4762
#: flatcamGUI/FlatCAMGUI.py:5153 flatcamGUI/FlatCAMGUI.py:5611
#: flatcamGUI/FlatCAMGUI.py:5742 flatcamGUI/FlatCAMGUI.py:5944
msgid "CCW"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1689
-#: flatcamEditors/FlatCAMExcEditor.py:1891
-#: flatcamEditors/FlatCAMGrbEditor.py:2719 flatcamGUI/FlatCAMGUI.py:4744
+#: flatcamEditors/FlatCAMExcEditor.py:1706
+#: flatcamEditors/FlatCAMExcEditor.py:1908
+#: flatcamEditors/FlatCAMGrbEditor.py:2736 flatcamGUI/FlatCAMGUI.py:4744
#: flatcamGUI/FlatCAMGUI.py:4770 flatcamGUI/FlatCAMGUI.py:5593
#: flatcamGUI/FlatCAMGUI.py:5619 flatcamGUI/FlatCAMGUI.py:5724
#: flatcamGUI/FlatCAMGUI.py:5750
msgid "Angle at which each element in circular array is placed."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1719
+#: flatcamEditors/FlatCAMExcEditor.py:1736
msgid "Slot Parameters"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1721
+#: flatcamEditors/FlatCAMExcEditor.py:1738
msgid ""
"Parameters for adding a slot (hole with oval shape)\n"
"either single or as an part of an array."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1730 flatcamGUI/FlatCAMGUI.py:5632
+#: flatcamEditors/FlatCAMExcEditor.py:1747 flatcamGUI/FlatCAMGUI.py:5632
#: flatcamTools/ToolProperties.py:350
msgid "Length"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1732 flatcamGUI/FlatCAMGUI.py:5634
+#: flatcamEditors/FlatCAMExcEditor.py:1749 flatcamGUI/FlatCAMGUI.py:5634
msgid "Length = The length of the slot."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1742 flatcamGUI/FlatCAMGUI.py:5645
+#: flatcamEditors/FlatCAMExcEditor.py:1759 flatcamGUI/FlatCAMGUI.py:5645
msgid ""
"Direction on which the slot is oriented:\n"
"- 'X' - horizontal axis \n"
@@ -2199,7 +2215,7 @@ msgid ""
"- 'Angle' - a custom angle for the slot inclination"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1757 flatcamGUI/FlatCAMGUI.py:5661
+#: flatcamEditors/FlatCAMExcEditor.py:1774 flatcamGUI/FlatCAMGUI.py:5661
msgid ""
"Angle at which the slot is placed.\n"
"The precision is of max 2 decimals.\n"
@@ -2207,99 +2223,77 @@ msgid ""
"Max value is: 360.00 degrees."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1790
+#: flatcamEditors/FlatCAMExcEditor.py:1807
msgid "Slot Array Parameters"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1792
+#: flatcamEditors/FlatCAMExcEditor.py:1809
msgid "Parameters for the array of slots (linear or circular array)"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1801
+#: flatcamEditors/FlatCAMExcEditor.py:1818
msgid ""
"Select the type of slot array to create.\n"
"It can be Linear X(Y) or Circular"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1813 flatcamGUI/FlatCAMGUI.py:5683
+#: flatcamEditors/FlatCAMExcEditor.py:1830 flatcamGUI/FlatCAMGUI.py:5683
msgid "Nr of slots"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:1814 flatcamGUI/FlatCAMGUI.py:5685
+#: flatcamEditors/FlatCAMExcEditor.py:1831 flatcamGUI/FlatCAMGUI.py:5685
msgid "Specify how many slots to be in the array."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:2398
-msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
-msgstr ""
-
-#: flatcamEditors/FlatCAMExcEditor.py:2411
+#: flatcamEditors/FlatCAMExcEditor.py:2428
msgid ""
-"[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
+"Tool already in the original or actual tool list.\n"
"Save and reedit Excellon if you need to add this tool. "
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:2420 flatcamGUI/FlatCAMGUI.py:3164
-#, python-brace-format
-msgid "[success] Added new tool with dia: {dia} {units}"
+#: flatcamEditors/FlatCAMExcEditor.py:2437
+msgid "Added new tool with dia"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:2452
-msgid "[WARNING_NOTCL] Select a tool in Tool Table"
+#: flatcamEditors/FlatCAMExcEditor.py:2469
+msgid "Select a tool in Tool Table"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:2484
-#, python-brace-format
-msgid "[success] Deleted tool with dia: {del_dia} {units}"
+#: flatcamEditors/FlatCAMExcEditor.py:2502
+msgid "Deleted tool with diameter"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:2635
-msgid "[success] Done. Tool edit completed."
+#: flatcamEditors/FlatCAMExcEditor.py:2652
+msgid "Done. Tool edit completed."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:3170
-msgid ""
-"[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
-"creation."
+#: flatcamEditors/FlatCAMExcEditor.py:3187
+msgid "There are no Tools definitions in the file. Aborting Excellon creation."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:3173
-msgid "[ERROR] An internal error has ocurred. See shell.\n"
+#: flatcamEditors/FlatCAMExcEditor.py:3191
+msgid "An internal error has ocurred. See Shell.\n"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:3179
+#: flatcamEditors/FlatCAMExcEditor.py:3197
msgid "Creating Excellon."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:3188
-msgid "[success] Excellon editing finished."
+#: flatcamEditors/FlatCAMExcEditor.py:3207
+msgid "Excellon editing finished."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:3205
-msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
+#: flatcamEditors/FlatCAMExcEditor.py:3225
+msgid "Cancelled. There is no Tool/Drill selected"
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:3424
-#: flatcamEditors/FlatCAMExcEditor.py:3431
-#: flatcamEditors/FlatCAMGeoEditor.py:3741
-#: flatcamEditors/FlatCAMGeoEditor.py:3755
-#: flatcamEditors/FlatCAMGrbEditor.py:1057
-#: flatcamEditors/FlatCAMGrbEditor.py:1160
-#: flatcamEditors/FlatCAMGrbEditor.py:1433
-#: flatcamEditors/FlatCAMGrbEditor.py:1690
-#: flatcamEditors/FlatCAMGrbEditor.py:4156
-#: flatcamEditors/FlatCAMGrbEditor.py:4170 flatcamGUI/FlatCAMGUI.py:2560
-#: flatcamGUI/FlatCAMGUI.py:2572
-msgid "[success] Done."
+#: flatcamEditors/FlatCAMExcEditor.py:3810
+msgid "Done. Drill(s) deleted."
msgstr ""
-#: flatcamEditors/FlatCAMExcEditor.py:3787
-msgid "[success] Done. Drill(s) deleted."
-msgstr ""
-
-#: flatcamEditors/FlatCAMExcEditor.py:3859
-#: flatcamEditors/FlatCAMExcEditor.py:3869
-#: flatcamEditors/FlatCAMGrbEditor.py:4547
+#: flatcamEditors/FlatCAMExcEditor.py:3882
+#: flatcamEditors/FlatCAMExcEditor.py:3892
+#: flatcamEditors/FlatCAMGrbEditor.py:4576
msgid "Click on the circular array Center position"
msgstr ""
@@ -2321,17 +2315,17 @@ msgid ""
msgstr ""
#: flatcamEditors/FlatCAMGeoEditor.py:91
-#: flatcamEditors/FlatCAMGrbEditor.py:2505
+#: flatcamEditors/FlatCAMGrbEditor.py:2522
msgid "Round"
msgstr ""
#: flatcamEditors/FlatCAMGeoEditor.py:92
-#: flatcamEditors/FlatCAMGrbEditor.py:2506
+#: flatcamEditors/FlatCAMGrbEditor.py:2523
msgid "Square"
msgstr ""
#: flatcamEditors/FlatCAMGeoEditor.py:93
-#: flatcamEditors/FlatCAMGrbEditor.py:2507
+#: flatcamEditors/FlatCAMGrbEditor.py:2524
msgid "Beveled"
msgstr ""
@@ -2348,20 +2342,18 @@ msgid "Full Buffer"
msgstr ""
#: flatcamEditors/FlatCAMGeoEditor.py:129
-#: flatcamEditors/FlatCAMGeoEditor.py:2683 flatcamGUI/FlatCAMGUI.py:4777
+#: flatcamEditors/FlatCAMGeoEditor.py:2720 flatcamGUI/FlatCAMGUI.py:4777
msgid "Buffer Tool"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:140
-#: flatcamEditors/FlatCAMGeoEditor.py:157
-#: flatcamEditors/FlatCAMGeoEditor.py:174
-#: flatcamEditors/FlatCAMGeoEditor.py:2701
-#: flatcamEditors/FlatCAMGeoEditor.py:2729
-#: flatcamEditors/FlatCAMGeoEditor.py:2757
-#: flatcamEditors/FlatCAMGrbEditor.py:4599
-msgid ""
-"[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGeoEditor.py:141
+#: flatcamEditors/FlatCAMGeoEditor.py:158
+#: flatcamEditors/FlatCAMGeoEditor.py:175
+#: flatcamEditors/FlatCAMGeoEditor.py:2740
+#: flatcamEditors/FlatCAMGeoEditor.py:2770
+#: flatcamEditors/FlatCAMGeoEditor.py:2800
+#: flatcamEditors/FlatCAMGrbEditor.py:4629
+msgid "Buffer distance value is missing or wrong format. Add it and retry."
msgstr ""
#: flatcamEditors/FlatCAMGeoEditor.py:345
@@ -2481,95 +2473,92 @@ msgstr ""
#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:661
#: flatcamGUI/FlatCAMGUI.py:2004 flatcamGUI/ObjectUI.py:1360
-#: flatcamTools/ToolPaint.py:25 flatcamTools/ToolPaint.py:446
+#: flatcamTools/ToolPaint.py:25 flatcamTools/ToolPaint.py:448
msgid "Paint Tool"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:565
-msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
+#: flatcamEditors/FlatCAMGeoEditor.py:566
+msgid "Paint cancelled. No shape selected."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:576
-msgid ""
-"[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGeoEditor.py:578 flatcamTools/ToolCutOut.py:387
+#: flatcamTools/ToolCutOut.py:585 flatcamTools/ToolCutOut.py:755
+#: flatcamTools/ToolCutOut.py:849 flatcamTools/ToolDblSided.py:367
+msgid "Tool diameter value is missing or wrong format. Add it and retry."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:587
-msgid ""
-"[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
+#: flatcamEditors/FlatCAMGeoEditor.py:589
+msgid "Overlap value is missing or wrong format. Add it and retry."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:599
-msgid ""
-"[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGeoEditor.py:601
+msgid "Margin distance value is missing or wrong format. Add it and retry."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:608
-#: flatcamEditors/FlatCAMGeoEditor.py:2708
-#: flatcamEditors/FlatCAMGeoEditor.py:2736
-#: flatcamEditors/FlatCAMGeoEditor.py:2764 flatcamGUI/FlatCAMGUI.py:5792
+#: flatcamEditors/FlatCAMGeoEditor.py:609
+#: flatcamEditors/FlatCAMGeoEditor.py:2746
+#: flatcamEditors/FlatCAMGeoEditor.py:2776
+#: flatcamEditors/FlatCAMGeoEditor.py:2806 flatcamGUI/FlatCAMGUI.py:5792
#: flatcamTools/ToolProperties.py:113 flatcamTools/ToolProperties.py:139
msgid "Tools"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:619
-#: flatcamEditors/FlatCAMGeoEditor.py:992
-#: flatcamEditors/FlatCAMGrbEditor.py:4780
-#: flatcamEditors/FlatCAMGrbEditor.py:5165 flatcamGUI/FlatCAMGUI.py:672
+#: flatcamEditors/FlatCAMGeoEditor.py:620
+#: flatcamEditors/FlatCAMGeoEditor.py:993
+#: flatcamEditors/FlatCAMGrbEditor.py:4812
+#: flatcamEditors/FlatCAMGrbEditor.py:5197 flatcamGUI/FlatCAMGUI.py:672
#: flatcamGUI/FlatCAMGUI.py:2017 flatcamTools/ToolTransform.py:403
msgid "Transform Tool"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:620
-#: flatcamEditors/FlatCAMGeoEditor.py:681
-#: flatcamEditors/FlatCAMGrbEditor.py:4781
-#: flatcamEditors/FlatCAMGrbEditor.py:4843 flatcamTools/ToolTransform.py:24
+#: flatcamEditors/FlatCAMGeoEditor.py:621
+#: flatcamEditors/FlatCAMGeoEditor.py:682
+#: flatcamEditors/FlatCAMGrbEditor.py:4813
+#: flatcamEditors/FlatCAMGrbEditor.py:4875 flatcamTools/ToolTransform.py:24
#: flatcamTools/ToolTransform.py:82
msgid "Rotate"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:621
-#: flatcamEditors/FlatCAMGrbEditor.py:4782 flatcamTools/ToolTransform.py:25
+#: flatcamEditors/FlatCAMGeoEditor.py:622
+#: flatcamEditors/FlatCAMGrbEditor.py:4814 flatcamTools/ToolTransform.py:25
msgid "Skew/Shear"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:622
-#: flatcamEditors/FlatCAMGrbEditor.py:2552
-#: flatcamEditors/FlatCAMGrbEditor.py:4783 flatcamGUI/FlatCAMGUI.py:739
+#: flatcamEditors/FlatCAMGeoEditor.py:623
+#: flatcamEditors/FlatCAMGrbEditor.py:2569
+#: flatcamEditors/FlatCAMGrbEditor.py:4815 flatcamGUI/FlatCAMGUI.py:739
#: flatcamGUI/FlatCAMGUI.py:1700 flatcamGUI/FlatCAMGUI.py:2086
#: flatcamGUI/ObjectUI.py:79 flatcamGUI/ObjectUI.py:100
#: flatcamTools/ToolTransform.py:26
msgid "Scale"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:623
-#: flatcamEditors/FlatCAMGrbEditor.py:4784 flatcamTools/ToolTransform.py:27
+#: flatcamEditors/FlatCAMGeoEditor.py:624
+#: flatcamEditors/FlatCAMGrbEditor.py:4816 flatcamTools/ToolTransform.py:27
msgid "Mirror (Flip)"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:624
-#: flatcamEditors/FlatCAMGrbEditor.py:4785 flatcamGUI/FlatCAMGUI.py:6622
+#: flatcamEditors/FlatCAMGeoEditor.py:625
+#: flatcamEditors/FlatCAMGrbEditor.py:4817 flatcamGUI/FlatCAMGUI.py:6622
#: flatcamGUI/ObjectUI.py:108 flatcamGUI/ObjectUI.py:127
#: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
#: flatcamTools/ToolNonCopperClear.py:357 flatcamTools/ToolTransform.py:28
msgid "Offset"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:635
-#: flatcamEditors/FlatCAMGrbEditor.py:4797
+#: flatcamEditors/FlatCAMGeoEditor.py:636
+#: flatcamEditors/FlatCAMGrbEditor.py:4829
#, python-format
msgid "Editor %s"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:667
-#: flatcamEditors/FlatCAMGrbEditor.py:4829
+#: flatcamEditors/FlatCAMGeoEditor.py:668
+#: flatcamEditors/FlatCAMGrbEditor.py:4861
msgid "Angle:"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:669
-#: flatcamEditors/FlatCAMGrbEditor.py:4831 flatcamGUI/FlatCAMGUI.py:7268
+#: flatcamEditors/FlatCAMGeoEditor.py:670
+#: flatcamEditors/FlatCAMGrbEditor.py:4863 flatcamGUI/FlatCAMGUI.py:7268
#: flatcamTools/ToolTransform.py:70
msgid ""
"Angle for Rotation action, in degrees.\n"
@@ -2578,23 +2567,23 @@ msgid ""
"Negative numbers for CCW motion."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:683
-#: flatcamEditors/FlatCAMGrbEditor.py:4845
+#: flatcamEditors/FlatCAMGeoEditor.py:684
+#: flatcamEditors/FlatCAMGrbEditor.py:4877
msgid ""
"Rotate the selected shape(s).\n"
"The point of reference is the middle of\n"
"the bounding box for all selected shapes."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:706
-#: flatcamEditors/FlatCAMGrbEditor.py:4868
+#: flatcamEditors/FlatCAMGeoEditor.py:707
+#: flatcamEditors/FlatCAMGrbEditor.py:4900
msgid "Angle X:"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:708
-#: flatcamEditors/FlatCAMGeoEditor.py:726
-#: flatcamEditors/FlatCAMGrbEditor.py:4870
-#: flatcamEditors/FlatCAMGrbEditor.py:4888 flatcamGUI/FlatCAMGUI.py:7280
+#: flatcamEditors/FlatCAMGeoEditor.py:709
+#: flatcamEditors/FlatCAMGeoEditor.py:727
+#: flatcamEditors/FlatCAMGrbEditor.py:4902
+#: flatcamEditors/FlatCAMGrbEditor.py:4920 flatcamGUI/FlatCAMGUI.py:7280
#: flatcamGUI/FlatCAMGUI.py:7290 flatcamTools/ToolTransform.py:109
#: flatcamTools/ToolTransform.py:127
msgid ""
@@ -2602,92 +2591,92 @@ msgid ""
"Float number between -360 and 359."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:717
-#: flatcamEditors/FlatCAMGrbEditor.py:4879 flatcamTools/ToolTransform.py:118
+#: flatcamEditors/FlatCAMGeoEditor.py:718
+#: flatcamEditors/FlatCAMGrbEditor.py:4911 flatcamTools/ToolTransform.py:118
msgid "Skew X"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:719
-#: flatcamEditors/FlatCAMGeoEditor.py:737
-#: flatcamEditors/FlatCAMGrbEditor.py:4881
-#: flatcamEditors/FlatCAMGrbEditor.py:4899
+#: flatcamEditors/FlatCAMGeoEditor.py:720
+#: flatcamEditors/FlatCAMGeoEditor.py:738
+#: flatcamEditors/FlatCAMGrbEditor.py:4913
+#: flatcamEditors/FlatCAMGrbEditor.py:4931
msgid ""
"Skew/shear the selected shape(s).\n"
"The point of reference is the middle of\n"
"the bounding box for all selected shapes."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:724
-#: flatcamEditors/FlatCAMGrbEditor.py:4886
+#: flatcamEditors/FlatCAMGeoEditor.py:725
+#: flatcamEditors/FlatCAMGrbEditor.py:4918
msgid "Angle Y:"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:735
-#: flatcamEditors/FlatCAMGrbEditor.py:4897 flatcamTools/ToolTransform.py:136
+#: flatcamEditors/FlatCAMGeoEditor.py:736
+#: flatcamEditors/FlatCAMGrbEditor.py:4929 flatcamTools/ToolTransform.py:136
msgid "Skew Y"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:763
-#: flatcamEditors/FlatCAMGrbEditor.py:4925
+#: flatcamEditors/FlatCAMGeoEditor.py:764
+#: flatcamEditors/FlatCAMGrbEditor.py:4957
msgid "Factor X:"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:765
-#: flatcamEditors/FlatCAMGrbEditor.py:4927
+#: flatcamEditors/FlatCAMGeoEditor.py:766
+#: flatcamEditors/FlatCAMGrbEditor.py:4959
msgid "Factor for Scale action over X axis."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:773
-#: flatcamEditors/FlatCAMGrbEditor.py:4935 flatcamTools/ToolTransform.py:174
+#: flatcamEditors/FlatCAMGeoEditor.py:774
+#: flatcamEditors/FlatCAMGrbEditor.py:4967 flatcamTools/ToolTransform.py:174
msgid "Scale X"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:775
-#: flatcamEditors/FlatCAMGeoEditor.py:792
-#: flatcamEditors/FlatCAMGrbEditor.py:4937
-#: flatcamEditors/FlatCAMGrbEditor.py:4954
+#: flatcamEditors/FlatCAMGeoEditor.py:776
+#: flatcamEditors/FlatCAMGeoEditor.py:793
+#: flatcamEditors/FlatCAMGrbEditor.py:4969
+#: flatcamEditors/FlatCAMGrbEditor.py:4986
msgid ""
"Scale the selected shape(s).\n"
"The point of reference depends on \n"
"the Scale reference checkbox state."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:780
-#: flatcamEditors/FlatCAMGrbEditor.py:4942
+#: flatcamEditors/FlatCAMGeoEditor.py:781
+#: flatcamEditors/FlatCAMGrbEditor.py:4974
msgid "Factor Y:"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:782
-#: flatcamEditors/FlatCAMGrbEditor.py:4944
+#: flatcamEditors/FlatCAMGeoEditor.py:783
+#: flatcamEditors/FlatCAMGrbEditor.py:4976
msgid "Factor for Scale action over Y axis."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:790
-#: flatcamEditors/FlatCAMGrbEditor.py:4952 flatcamTools/ToolTransform.py:191
+#: flatcamEditors/FlatCAMGeoEditor.py:791
+#: flatcamEditors/FlatCAMGrbEditor.py:4984 flatcamTools/ToolTransform.py:191
msgid "Scale Y"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:799
-#: flatcamEditors/FlatCAMGrbEditor.py:4961 flatcamGUI/FlatCAMGUI.py:7315
+#: flatcamEditors/FlatCAMGeoEditor.py:800
+#: flatcamEditors/FlatCAMGrbEditor.py:4993 flatcamGUI/FlatCAMGUI.py:7315
#: flatcamTools/ToolTransform.py:200
msgid "Link"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:801
-#: flatcamEditors/FlatCAMGrbEditor.py:4963
+#: flatcamEditors/FlatCAMGeoEditor.py:802
+#: flatcamEditors/FlatCAMGrbEditor.py:4995
msgid ""
"Scale the selected shape(s)\n"
"using the Scale Factor X for both axis."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:807
-#: flatcamEditors/FlatCAMGrbEditor.py:4969 flatcamGUI/FlatCAMGUI.py:7323
+#: flatcamEditors/FlatCAMGeoEditor.py:808
+#: flatcamEditors/FlatCAMGrbEditor.py:5001 flatcamGUI/FlatCAMGUI.py:7323
#: flatcamTools/ToolTransform.py:209
msgid "Scale Reference"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:809
-#: flatcamEditors/FlatCAMGrbEditor.py:4971
+#: flatcamEditors/FlatCAMGeoEditor.py:810
+#: flatcamEditors/FlatCAMGrbEditor.py:5003
msgid ""
"Scale the selected shape(s)\n"
"using the origin reference when checked,\n"
@@ -2695,72 +2684,72 @@ msgid ""
"of the selected shapes when unchecked."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:837
-#: flatcamEditors/FlatCAMGrbEditor.py:5000
+#: flatcamEditors/FlatCAMGeoEditor.py:838
+#: flatcamEditors/FlatCAMGrbEditor.py:5032
msgid "Value X:"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:839
-#: flatcamEditors/FlatCAMGrbEditor.py:5002
+#: flatcamEditors/FlatCAMGeoEditor.py:840
+#: flatcamEditors/FlatCAMGrbEditor.py:5034
msgid "Value for Offset action on X axis."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:847
-#: flatcamEditors/FlatCAMGrbEditor.py:5010 flatcamTools/ToolTransform.py:249
+#: flatcamEditors/FlatCAMGeoEditor.py:848
+#: flatcamEditors/FlatCAMGrbEditor.py:5042 flatcamTools/ToolTransform.py:249
msgid "Offset X"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:849
-#: flatcamEditors/FlatCAMGeoEditor.py:867
-#: flatcamEditors/FlatCAMGrbEditor.py:5012
-#: flatcamEditors/FlatCAMGrbEditor.py:5030
+#: flatcamEditors/FlatCAMGeoEditor.py:850
+#: flatcamEditors/FlatCAMGeoEditor.py:868
+#: flatcamEditors/FlatCAMGrbEditor.py:5044
+#: flatcamEditors/FlatCAMGrbEditor.py:5062
msgid ""
"Offset the selected shape(s).\n"
"The point of reference is the middle of\n"
"the bounding box for all selected shapes.\n"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:855
-#: flatcamEditors/FlatCAMGrbEditor.py:5018
+#: flatcamEditors/FlatCAMGeoEditor.py:856
+#: flatcamEditors/FlatCAMGrbEditor.py:5050
msgid "Value Y:"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:857
-#: flatcamEditors/FlatCAMGrbEditor.py:5020
+#: flatcamEditors/FlatCAMGeoEditor.py:858
+#: flatcamEditors/FlatCAMGrbEditor.py:5052
msgid "Value for Offset action on Y axis."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:865
-#: flatcamEditors/FlatCAMGrbEditor.py:5028 flatcamTools/ToolTransform.py:266
+#: flatcamEditors/FlatCAMGeoEditor.py:866
+#: flatcamEditors/FlatCAMGrbEditor.py:5060 flatcamTools/ToolTransform.py:266
msgid "Offset Y"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:896
-#: flatcamEditors/FlatCAMGrbEditor.py:5059 flatcamTools/ToolTransform.py:296
+#: flatcamEditors/FlatCAMGeoEditor.py:897
+#: flatcamEditors/FlatCAMGrbEditor.py:5091 flatcamTools/ToolTransform.py:296
msgid "Flip on X"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:898
-#: flatcamEditors/FlatCAMGeoEditor.py:906
-#: flatcamEditors/FlatCAMGrbEditor.py:5061
-#: flatcamEditors/FlatCAMGrbEditor.py:5069
+#: flatcamEditors/FlatCAMGeoEditor.py:899
+#: flatcamEditors/FlatCAMGeoEditor.py:907
+#: flatcamEditors/FlatCAMGrbEditor.py:5093
+#: flatcamEditors/FlatCAMGrbEditor.py:5101
msgid ""
"Flip the selected shape(s) over the X axis.\n"
"Does not create a new shape."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:904
-#: flatcamEditors/FlatCAMGrbEditor.py:5067 flatcamTools/ToolTransform.py:304
+#: flatcamEditors/FlatCAMGeoEditor.py:905
+#: flatcamEditors/FlatCAMGrbEditor.py:5099 flatcamTools/ToolTransform.py:304
msgid "Flip on Y"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:913
-#: flatcamEditors/FlatCAMGrbEditor.py:5076
+#: flatcamEditors/FlatCAMGeoEditor.py:914
+#: flatcamEditors/FlatCAMGrbEditor.py:5108
msgid "Ref Pt"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:915
-#: flatcamEditors/FlatCAMGrbEditor.py:5078
+#: flatcamEditors/FlatCAMGeoEditor.py:916
+#: flatcamEditors/FlatCAMGrbEditor.py:5110
msgid ""
"Flip the selected shape(s)\n"
"around the point in Point Entry Field.\n"
@@ -2773,769 +2762,726 @@ msgid ""
"Point Entry field and click Flip on X(Y)"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:927
-#: flatcamEditors/FlatCAMGrbEditor.py:5090
+#: flatcamEditors/FlatCAMGeoEditor.py:928
+#: flatcamEditors/FlatCAMGrbEditor.py:5122
msgid "Point:"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:929
-#: flatcamEditors/FlatCAMGrbEditor.py:5092
+#: flatcamEditors/FlatCAMGeoEditor.py:930
+#: flatcamEditors/FlatCAMGrbEditor.py:5124
msgid ""
"Coordinates in format (x, y) used as reference for mirroring.\n"
"The 'x' in (x, y) will be used when using Flip on X and\n"
"the 'y' in (x, y) will be used when using Flip on Y."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:941
-#: flatcamEditors/FlatCAMGrbEditor.py:5104 flatcamTools/ToolTransform.py:340
+#: flatcamEditors/FlatCAMGeoEditor.py:942
+#: flatcamEditors/FlatCAMGrbEditor.py:5136 flatcamTools/ToolTransform.py:340
msgid ""
"The point coordinates can be captured by\n"
"left click on canvas together with pressing\n"
"SHIFT key. Then click Add button to insert."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1056
-#: flatcamEditors/FlatCAMGrbEditor.py:5229
-msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1077
-#: flatcamEditors/FlatCAMGrbEditor.py:5249
-msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1114
-#: flatcamEditors/FlatCAMGrbEditor.py:5292
-msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1135
-#: flatcamEditors/FlatCAMGrbEditor.py:5319
-msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1156
-#: flatcamEditors/FlatCAMGrbEditor.py:5346
-msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1193
-#: flatcamEditors/FlatCAMGrbEditor.py:5387
-msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1225
-#: flatcamEditors/FlatCAMGrbEditor.py:5425
-msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1246
-#: flatcamEditors/FlatCAMGrbEditor.py:5451
-msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1264
-#: flatcamEditors/FlatCAMGrbEditor.py:5474
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
+#: flatcamEditors/FlatCAMGeoEditor.py:1058
+#: flatcamEditors/FlatCAMGrbEditor.py:5262
+msgid "Transformation cancelled. No shape selected."
msgstr ""
#: flatcamEditors/FlatCAMGeoEditor.py:1267
-#: flatcamEditors/FlatCAMGrbEditor.py:5477 flatcamTools/ToolTransform.py:646
+#: flatcamEditors/FlatCAMGrbEditor.py:5508
+msgid "No shape selected. Please Select a shape to rotate!"
+msgstr ""
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1270
+#: flatcamEditors/FlatCAMGrbEditor.py:5511 flatcamTools/ToolTransform.py:646
msgid "Appying Rotate"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1295
-#: flatcamEditors/FlatCAMGrbEditor.py:5510
-msgid "[success] Done. Rotate completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:1299
+#: flatcamEditors/FlatCAMGrbEditor.py:5545
+msgid "Done. Rotate completed."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1300
-#: flatcamEditors/FlatCAMGrbEditor.py:5513
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
+#: flatcamEditors/FlatCAMGeoEditor.py:1305
+msgid "Rotation action was not executed"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1311
-#: flatcamEditors/FlatCAMGrbEditor.py:5529
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
+#: flatcamEditors/FlatCAMGeoEditor.py:1317
+#: flatcamEditors/FlatCAMGrbEditor.py:5566
+msgid "No shape selected. Please Select a shape to flip!"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1314
-#: flatcamEditors/FlatCAMGrbEditor.py:5532 flatcamTools/ToolTransform.py:699
+#: flatcamEditors/FlatCAMGeoEditor.py:1320
+#: flatcamEditors/FlatCAMGrbEditor.py:5569 flatcamTools/ToolTransform.py:699
msgid "Applying Flip"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1344
-#: flatcamEditors/FlatCAMGrbEditor.py:5571
-msgid "[success] Flip on the Y axis done ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1351
+#: flatcamEditors/FlatCAMGrbEditor.py:5609 flatcamTools/ToolTransform.py:742
+msgid "Flip on the Y axis done"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1347
-#: flatcamEditors/FlatCAMGrbEditor.py:5579
-msgid "[success] Flip on the X axis done ..."
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1357
-#: flatcamEditors/FlatCAMGrbEditor.py:5584
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
+#: flatcamEditors/FlatCAMGeoEditor.py:1355
+#: flatcamEditors/FlatCAMGrbEditor.py:5618 flatcamTools/ToolTransform.py:752
+msgid "Flip on the X axis done"
msgstr ""
#: flatcamEditors/FlatCAMGeoEditor.py:1366
-#: flatcamEditors/FlatCAMGrbEditor.py:5599
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
+msgid "Flip action was not executed"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1369
-#: flatcamEditors/FlatCAMGrbEditor.py:5602 flatcamTools/ToolTransform.py:772
+#: flatcamEditors/FlatCAMGeoEditor.py:1376
+#: flatcamEditors/FlatCAMGrbEditor.py:5640
+msgid "No shape selected. Please Select a shape to shear/skew!"
+msgstr ""
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1379
+#: flatcamEditors/FlatCAMGrbEditor.py:5643 flatcamTools/ToolTransform.py:772
msgid "Applying Skew"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1394
-#: flatcamEditors/FlatCAMGrbEditor.py:5637 flatcamTools/ToolTransform.py:803
-#, python-format
-msgid "[success] Skew on the %s axis done ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1405
+#: flatcamEditors/FlatCAMGrbEditor.py:5680
+msgid "Skew on the X axis done"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1398
-#: flatcamEditors/FlatCAMGrbEditor.py:5641
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
+#: flatcamEditors/FlatCAMGeoEditor.py:1408
+#: flatcamEditors/FlatCAMGrbEditor.py:5683
+msgid "Skew on the Y axis done"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1409
-#: flatcamEditors/FlatCAMGrbEditor.py:5660
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
+#: flatcamEditors/FlatCAMGeoEditor.py:1413
+msgid "Skew action was not executed"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1412
-#: flatcamEditors/FlatCAMGrbEditor.py:5663 flatcamTools/ToolTransform.py:823
+#: flatcamEditors/FlatCAMGeoEditor.py:1425
+#: flatcamEditors/FlatCAMGrbEditor.py:5708
+msgid "No shape selected. Please Select a shape to scale!"
+msgstr ""
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1428
+#: flatcamEditors/FlatCAMGrbEditor.py:5711 flatcamTools/ToolTransform.py:823
msgid "Applying Scale"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1445
-#: flatcamEditors/FlatCAMGrbEditor.py:5701
-#, python-format
-msgid "[success] Scale on the %s axis done ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1463
+#: flatcamEditors/FlatCAMGrbEditor.py:5751
+msgid "Scale on the X axis done"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1448
-#: flatcamEditors/FlatCAMGrbEditor.py:5704
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
+#: flatcamEditors/FlatCAMGeoEditor.py:1466
+#: flatcamEditors/FlatCAMGrbEditor.py:5754
+msgid "Scale on the Y axis done"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1457
-#: flatcamEditors/FlatCAMGrbEditor.py:5717
-msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1460
-#: flatcamEditors/FlatCAMGrbEditor.py:5720 flatcamTools/ToolTransform.py:878
-msgid "Applying Offset"
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1471
-#: flatcamEditors/FlatCAMGrbEditor.py:5742
-#, python-format
-msgid "[success] Offset on the %s axis done ..."
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1475
-#: flatcamEditors/FlatCAMGrbEditor.py:5746
-#, python-format
-msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1479
-#: flatcamEditors/FlatCAMGrbEditor.py:5750
-msgid "Rotate ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1470
+msgid "Scale action was not executed"
msgstr ""
#: flatcamEditors/FlatCAMGeoEditor.py:1480
-#: flatcamEditors/FlatCAMGeoEditor.py:1537
-#: flatcamEditors/FlatCAMGeoEditor.py:1554
-#: flatcamEditors/FlatCAMGrbEditor.py:5751
-#: flatcamEditors/FlatCAMGrbEditor.py:5808
-#: flatcamEditors/FlatCAMGrbEditor.py:5825
+#: flatcamEditors/FlatCAMGrbEditor.py:5772
+msgid "No shape selected. Please Select a shape to offset!"
+msgstr ""
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1483
+#: flatcamEditors/FlatCAMGrbEditor.py:5775 flatcamTools/ToolTransform.py:878
+msgid "Applying Offset"
+msgstr ""
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1496
+#: flatcamEditors/FlatCAMGrbEditor.py:5799
+msgid "Offset on the X axis done"
+msgstr ""
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1499
+#: flatcamEditors/FlatCAMGrbEditor.py:5802
+msgid "Offset on the Y axis done"
+msgstr ""
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1504
+msgid "Offset action was not executed"
+msgstr ""
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1508
+#: flatcamEditors/FlatCAMGrbEditor.py:5811
+msgid "Rotate ..."
+msgstr ""
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1509
+#: flatcamEditors/FlatCAMGeoEditor.py:1564
+#: flatcamEditors/FlatCAMGeoEditor.py:1581
+#: flatcamEditors/FlatCAMGrbEditor.py:5812
+#: flatcamEditors/FlatCAMGrbEditor.py:5867
+#: flatcamEditors/FlatCAMGrbEditor.py:5884
msgid "Enter an Angle Value (degrees)"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1489
-#: flatcamEditors/FlatCAMGrbEditor.py:5760
-msgid "[success] Geometry shape rotate done..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1518
+#: flatcamEditors/FlatCAMGrbEditor.py:5821
+msgid "Geometry shape rotate done"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1494
-#: flatcamEditors/FlatCAMGrbEditor.py:5765
-msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1522
+#: flatcamEditors/FlatCAMGrbEditor.py:5825
+msgid "Geometry shape rotate cancelled"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1500
-#: flatcamEditors/FlatCAMGrbEditor.py:5771
+#: flatcamEditors/FlatCAMGeoEditor.py:1527
+#: flatcamEditors/FlatCAMGrbEditor.py:5830
msgid "Offset on X axis ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1501
-#: flatcamEditors/FlatCAMGeoEditor.py:1520
-#: flatcamEditors/FlatCAMGrbEditor.py:5772
-#: flatcamEditors/FlatCAMGrbEditor.py:5791
+#: flatcamEditors/FlatCAMGeoEditor.py:1528
+#: flatcamEditors/FlatCAMGeoEditor.py:1547
+#: flatcamEditors/FlatCAMGrbEditor.py:5831
+#: flatcamEditors/FlatCAMGrbEditor.py:5850
msgid "Enter a distance Value"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1510
-#: flatcamEditors/FlatCAMGrbEditor.py:5781
-msgid "[success] Geometry shape offset on X axis done..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1537
+#: flatcamEditors/FlatCAMGrbEditor.py:5840
+msgid "Geometry shape offset on X axis done"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1514
-#: flatcamEditors/FlatCAMGrbEditor.py:5785
-msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1519
-#: flatcamEditors/FlatCAMGrbEditor.py:5790
-msgid "Offset on Y axis ..."
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1529
-#: flatcamEditors/FlatCAMGrbEditor.py:5800
-msgid "[success] Geometry shape offset on Y axis done..."
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1533
-#: flatcamEditors/FlatCAMGrbEditor.py:5804
-msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:1536
-#: flatcamEditors/FlatCAMGrbEditor.py:5807
-msgid "Skew on X axis ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1541
+#: flatcamEditors/FlatCAMGrbEditor.py:5844
+msgid "Geometry shape offset X cancelled"
msgstr ""
#: flatcamEditors/FlatCAMGeoEditor.py:1546
-#: flatcamEditors/FlatCAMGrbEditor.py:5817
-msgid "[success] Geometry shape skew on X axis done..."
+#: flatcamEditors/FlatCAMGrbEditor.py:5849
+msgid "Offset on Y axis ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1550
-#: flatcamEditors/FlatCAMGrbEditor.py:5821
-msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1556
+#: flatcamEditors/FlatCAMGrbEditor.py:5859
+msgid "Geometry shape offset on Y axis done"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1553
-#: flatcamEditors/FlatCAMGrbEditor.py:5824
-msgid "Skew on Y axis ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1560
+msgid "Geometry shape offset on Y axis canceled"
msgstr ""
#: flatcamEditors/FlatCAMGeoEditor.py:1563
-#: flatcamEditors/FlatCAMGrbEditor.py:5834
-msgid "[success] Geometry shape skew on Y axis done..."
+#: flatcamEditors/FlatCAMGrbEditor.py:5866
+msgid "Skew on X axis ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1567
-#: flatcamEditors/FlatCAMGrbEditor.py:5838
-msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
+#: flatcamEditors/FlatCAMGeoEditor.py:1573
+#: flatcamEditors/FlatCAMGrbEditor.py:5876
+msgid "Geometry shape skew on X axis done"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1931
-#: flatcamEditors/FlatCAMGeoEditor.py:1982
-#: flatcamEditors/FlatCAMGrbEditor.py:1385
-#: flatcamEditors/FlatCAMGrbEditor.py:1454
+#: flatcamEditors/FlatCAMGeoEditor.py:1577
+msgid "Geometry shape skew on X axis canceled"
+msgstr ""
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1580
+#: flatcamEditors/FlatCAMGrbEditor.py:5883
+msgid "Skew on Y axis ..."
+msgstr ""
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1590
+#: flatcamEditors/FlatCAMGrbEditor.py:5893
+msgid "Geometry shape skew on Y axis done"
+msgstr ""
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1594
+msgid "Geometry shape skew on Y axis canceled"
+msgstr ""
+
+#: flatcamEditors/FlatCAMGeoEditor.py:1958
+#: flatcamEditors/FlatCAMGeoEditor.py:2010
+#: flatcamEditors/FlatCAMGrbEditor.py:1396
+#: flatcamEditors/FlatCAMGrbEditor.py:1466
msgid "Click on Center point ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1938
-#: flatcamEditors/FlatCAMGrbEditor.py:1393
+#: flatcamEditors/FlatCAMGeoEditor.py:1965
+#: flatcamEditors/FlatCAMGrbEditor.py:1404
msgid "Click on Perimeter point to complete ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:1967
-msgid "[success] Done. Adding Circle completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:1995
+msgid "Done. Adding Circle completed."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2002
-#: flatcamEditors/FlatCAMGrbEditor.py:1486
+#: flatcamEditors/FlatCAMGeoEditor.py:2030
+#: flatcamEditors/FlatCAMGrbEditor.py:1498
msgid "Click on Start point ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2004
-#: flatcamEditors/FlatCAMGrbEditor.py:1488
+#: flatcamEditors/FlatCAMGeoEditor.py:2032
+#: flatcamEditors/FlatCAMGrbEditor.py:1500
msgid "Click on Point3 ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2006
-#: flatcamEditors/FlatCAMGrbEditor.py:1490
+#: flatcamEditors/FlatCAMGeoEditor.py:2034
+#: flatcamEditors/FlatCAMGrbEditor.py:1502
msgid "Click on Stop point ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2011
-#: flatcamEditors/FlatCAMGrbEditor.py:1495
+#: flatcamEditors/FlatCAMGeoEditor.py:2039
+#: flatcamEditors/FlatCAMGrbEditor.py:1507
msgid "Click on Stop point to complete ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2013
-#: flatcamEditors/FlatCAMGrbEditor.py:1497
+#: flatcamEditors/FlatCAMGeoEditor.py:2041
+#: flatcamEditors/FlatCAMGrbEditor.py:1509
msgid "Click on Point2 to complete ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2015
-#: flatcamEditors/FlatCAMGrbEditor.py:1499
+#: flatcamEditors/FlatCAMGeoEditor.py:2043
+#: flatcamEditors/FlatCAMGrbEditor.py:1511
msgid "Click on Center point to complete ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2027
-#: flatcamEditors/FlatCAMGrbEditor.py:1511
+#: flatcamEditors/FlatCAMGeoEditor.py:2055
+#: flatcamEditors/FlatCAMGrbEditor.py:1523
#, python-format
msgid "Direction: %s"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2037
-#: flatcamEditors/FlatCAMGrbEditor.py:1521
+#: flatcamEditors/FlatCAMGeoEditor.py:2065
+#: flatcamEditors/FlatCAMGrbEditor.py:1533
msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2040
-#: flatcamEditors/FlatCAMGrbEditor.py:1524
+#: flatcamEditors/FlatCAMGeoEditor.py:2068
+#: flatcamEditors/FlatCAMGrbEditor.py:1536
msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2043
-#: flatcamEditors/FlatCAMGrbEditor.py:1527
+#: flatcamEditors/FlatCAMGeoEditor.py:2071
+#: flatcamEditors/FlatCAMGrbEditor.py:1539
msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2181
-msgid "[success] Done. Arc completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2210
+msgid "Done. Arc completed."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2200
-#: flatcamEditors/FlatCAMGeoEditor.py:2253
-#: flatcamEditors/FlatCAMGeoEditor.py:2622
+#: flatcamEditors/FlatCAMGeoEditor.py:2229
+#: flatcamEditors/FlatCAMGeoEditor.py:2283
+#: flatcamEditors/FlatCAMGeoEditor.py:2656
msgid "Click on 1st corner ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2206
+#: flatcamEditors/FlatCAMGeoEditor.py:2235
msgid "Click on opposite corner to complete ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2234
-msgid "[success] Done. Rectangle completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2264
+msgid "Done. Rectangle completed."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2260
+#: flatcamEditors/FlatCAMGeoEditor.py:2290
msgid "Click on next Point or click right mouse button to complete ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2288
-msgid "[success] Done. Polygon completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2319
+msgid "Done. Polygon completed."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2298
-#: flatcamEditors/FlatCAMGeoEditor.py:2344
-#: flatcamEditors/FlatCAMGrbEditor.py:1075
-#: flatcamEditors/FlatCAMGrbEditor.py:1276
+#: flatcamEditors/FlatCAMGeoEditor.py:2329
+#: flatcamEditors/FlatCAMGeoEditor.py:2375
+#: flatcamEditors/FlatCAMGrbEditor.py:1085
+#: flatcamEditors/FlatCAMGrbEditor.py:1287
msgid "Backtracked one point ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2326
+#: flatcamEditors/FlatCAMGeoEditor.py:2357
msgid "[success] Done. Path completed."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2443
-msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
+#: flatcamEditors/FlatCAMGeoEditor.py:2475
+msgid "MOVE: No shape selected. Select a shape to move"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2445
-#: flatcamEditors/FlatCAMGeoEditor.py:2457
+#: flatcamEditors/FlatCAMGeoEditor.py:2477
+#: flatcamEditors/FlatCAMGeoEditor.py:2489
msgid " MOVE: Click on reference point ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2448
+#: flatcamEditors/FlatCAMGeoEditor.py:2480
msgid " Click on destination point ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2482
-msgid "[success] Done. Geometry(s) Move completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2515
+msgid "Done. Geometry(s) Move completed."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2602
-msgid "[success] Done. Geometry(s) Copy completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2636
+msgid "Done. Geometry(s) Copy completed."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2638
-#, python-format
+#: flatcamEditors/FlatCAMGeoEditor.py:2673
msgid ""
-"[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
-"supported. Error: %s"
+"Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
+"Error"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2645
-msgid "[WARNING_NOTCL] No text to add."
+#: flatcamEditors/FlatCAMGeoEditor.py:2681
+msgid "No text to add."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2651
-msgid "[success] Done. Adding Text completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2688
+msgid " Done. Adding Text completed."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2679
+#: flatcamEditors/FlatCAMGeoEditor.py:2716
msgid "Create buffer geometry ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2690
-#: flatcamEditors/FlatCAMGeoEditor.py:2718
-#: flatcamEditors/FlatCAMGeoEditor.py:2746
-msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
+#: flatcamEditors/FlatCAMGeoEditor.py:2728
+#: flatcamEditors/FlatCAMGeoEditor.py:2758
+#: flatcamEditors/FlatCAMGeoEditor.py:2788
+msgid "Buffer cancelled. No shape selected."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2714
-#: flatcamEditors/FlatCAMGrbEditor.py:4644
-msgid "[success] Done. Buffer Tool completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2753
+#: flatcamEditors/FlatCAMGrbEditor.py:4674
+msgid "Done. Buffer Tool completed."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2742
-msgid "[success] Done. Buffer Int Tool completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2783
+msgid "Done. Buffer Int Tool completed."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2770
-msgid "[success] Done. Buffer Ext Tool completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2813
+msgid "Done. Buffer Ext Tool completed."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2805
-#: flatcamEditors/FlatCAMGrbEditor.py:2052
+#: flatcamEditors/FlatCAMGeoEditor.py:2848
+#: flatcamEditors/FlatCAMGrbEditor.py:2068
msgid "Select a shape to act as deletion area ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2807
-#: flatcamEditors/FlatCAMGeoEditor.py:2826
-#: flatcamEditors/FlatCAMGeoEditor.py:2832
-#: flatcamEditors/FlatCAMGrbEditor.py:2054
+#: flatcamEditors/FlatCAMGeoEditor.py:2850
+#: flatcamEditors/FlatCAMGeoEditor.py:2869
+#: flatcamEditors/FlatCAMGeoEditor.py:2875
+#: flatcamEditors/FlatCAMGrbEditor.py:2070
msgid "Click to pick-up the erase shape..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2836
-#: flatcamEditors/FlatCAMGrbEditor.py:2111
+#: flatcamEditors/FlatCAMGeoEditor.py:2879
+#: flatcamEditors/FlatCAMGrbEditor.py:2127
msgid "Click to erase ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2865
-#: flatcamEditors/FlatCAMGrbEditor.py:2144
-msgid "[success] Done. Eraser tool action completed."
+#: flatcamEditors/FlatCAMGeoEditor.py:2909
+#: flatcamEditors/FlatCAMGrbEditor.py:2161
+msgid "Done. Eraser tool action completed."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2908
+#: flatcamEditors/FlatCAMGeoEditor.py:2952
msgid "Create Paint geometry ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:2922
-#: flatcamEditors/FlatCAMGrbEditor.py:2295
+#: flatcamEditors/FlatCAMGeoEditor.py:2966
+#: flatcamEditors/FlatCAMGrbEditor.py:2312
msgid "Shape transformations ..."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:3500
-#, python-brace-format
-msgid ""
-"[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
+#: flatcamEditors/FlatCAMGeoEditor.py:3545
+msgid "Editing MultiGeo Geometry, tool"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:3872
-msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
+#: flatcamEditors/FlatCAMGeoEditor.py:3547
+msgid "with diameter"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:3879 flatcamGUI/FlatCAMGUI.py:2882
+#: flatcamEditors/FlatCAMGeoEditor.py:3924
+msgid "Copy cancelled. No shape selected."
+msgstr ""
+
+#: flatcamEditors/FlatCAMGeoEditor.py:3931 flatcamGUI/FlatCAMGUI.py:2882
#: flatcamGUI/FlatCAMGUI.py:2928 flatcamGUI/FlatCAMGUI.py:2946
#: flatcamGUI/FlatCAMGUI.py:3077 flatcamGUI/FlatCAMGUI.py:3089
#: flatcamGUI/FlatCAMGUI.py:3123 flatcamGUI/FlatCAMGUI.py:3180
msgid "Click on target point."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:4123
-#: flatcamEditors/FlatCAMGeoEditor.py:4158
+#: flatcamEditors/FlatCAMGeoEditor.py:4175
+#: flatcamEditors/FlatCAMGeoEditor.py:4210
+msgid "A selection of at least 2 geo items is required to do Intersection."
+msgstr ""
+
+#: flatcamEditors/FlatCAMGeoEditor.py:4296
+#: flatcamEditors/FlatCAMGeoEditor.py:4405
msgid ""
-"[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
-"Intersection."
+"Negative buffer value is not accepted. Use Buffer interior to generate an "
+"'inside' shape"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:4244
-#: flatcamEditors/FlatCAMGeoEditor.py:4344
-msgid ""
-"[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to "
-"generate an 'inside' shape"
+#: flatcamEditors/FlatCAMGeoEditor.py:4306
+#: flatcamEditors/FlatCAMGeoEditor.py:4362
+#: flatcamEditors/FlatCAMGeoEditor.py:4414
+msgid "Nothing selected for buffering."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:4253
-#: flatcamEditors/FlatCAMGeoEditor.py:4305
-#: flatcamEditors/FlatCAMGeoEditor.py:4352
-msgid "[WARNING_NOTCL] Nothing selected for buffering."
+#: flatcamEditors/FlatCAMGeoEditor.py:4311
+#: flatcamEditors/FlatCAMGeoEditor.py:4367
+#: flatcamEditors/FlatCAMGeoEditor.py:4419
+msgid "Invalid distance for buffering."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:4257
-#: flatcamEditors/FlatCAMGeoEditor.py:4309
-#: flatcamEditors/FlatCAMGeoEditor.py:4356
-msgid "[WARNING_NOTCL] Invalid distance for buffering."
+#: flatcamEditors/FlatCAMGeoEditor.py:4335
+#: flatcamEditors/FlatCAMGeoEditor.py:4439
+msgid "Failed, the result is empty. Choose a different buffer value."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:4280
-#: flatcamEditors/FlatCAMGeoEditor.py:4375
-msgid ""
-"[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
+#: flatcamEditors/FlatCAMGeoEditor.py:4346
+msgid "Full buffer geometry created."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:4290
-msgid "[success] Full buffer geometry created."
+#: flatcamEditors/FlatCAMGeoEditor.py:4353
+msgid "Negative buffer value is not accepted."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:4297
-msgid "[ERROR_NOTCL] Negative buffer value is not accepted."
+#: flatcamEditors/FlatCAMGeoEditor.py:4387
+msgid "Failed, the result is empty. Choose a smaller buffer value."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:4328
-msgid ""
-"[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
+#: flatcamEditors/FlatCAMGeoEditor.py:4398
+msgid "Interior buffer geometry created."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:4338
-msgid "[success] Interior buffer geometry created."
+#: flatcamEditors/FlatCAMGeoEditor.py:4450
+msgid "Exterior buffer geometry created."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:4385
-msgid "[success] Exterior buffer geometry created."
+#: flatcamEditors/FlatCAMGeoEditor.py:4515
+msgid "Nothing selected for painting."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:4449
-msgid "[WARNING_NOTCL] Nothing selected for painting."
+#: flatcamEditors/FlatCAMGeoEditor.py:4522
+msgid "Invalid value for"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:4455
-msgid "[WARNING] Invalid value for {}"
+#: flatcamEditors/FlatCAMGeoEditor.py:4528
+#, python-format
+msgid "Could not do Paint. Overlap value has to be less than 1.00 (100%%)."
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:4461
-msgid ""
-"[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
-"(100%)."
-msgstr ""
-
-#: flatcamEditors/FlatCAMGeoEditor.py:4520
+#: flatcamEditors/FlatCAMGeoEditor.py:4587
#, python-format
msgid ""
-"[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
+"Could not do Paint. Try a different combination of parameters. Or a "
"different method of Paint\n"
"%s"
msgstr ""
-#: flatcamEditors/FlatCAMGeoEditor.py:4531
+#: flatcamEditors/FlatCAMGeoEditor.py:4598
msgid "[success] Paint done."
msgstr ""
#: flatcamEditors/FlatCAMGrbEditor.py:208
-msgid "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
+msgid "To add an Pad first select a aperture in Aperture Table"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:214
-#: flatcamEditors/FlatCAMGrbEditor.py:406
-msgid ""
-"[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
+#: flatcamEditors/FlatCAMGrbEditor.py:215
+#: flatcamEditors/FlatCAMGrbEditor.py:409
+msgid "Aperture size is zero. It needs to be greater than zero."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:365
-#: flatcamEditors/FlatCAMGrbEditor.py:670
+#: flatcamEditors/FlatCAMGrbEditor.py:366
+#: flatcamEditors/FlatCAMGrbEditor.py:674
msgid ""
"Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:377
-msgid "[success] Done. Adding Pad completed."
+#: flatcamEditors/FlatCAMGrbEditor.py:379
+msgid "Done. Adding Pad completed."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:399
-msgid ""
-"[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
+#: flatcamEditors/FlatCAMGrbEditor.py:401
+msgid "To add an Pad Array first select a aperture in Aperture Table"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:476
+#: flatcamEditors/FlatCAMGrbEditor.py:479
msgid "Click on the Pad Circular Array Start position"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:695
-msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
+#: flatcamEditors/FlatCAMGrbEditor.py:700
+msgid "Too many Pads for the selected spacing angle."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:717
-msgid "[success] Done. Pad Array added."
+#: flatcamEditors/FlatCAMGrbEditor.py:723
+msgid "Done. Pad Array added."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:738
+#: flatcamEditors/FlatCAMGrbEditor.py:744
msgid "Select shape(s) and then click ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:749
-msgid "[ERROR_NOTCL] Failed. Nothing selected."
+#: flatcamEditors/FlatCAMGrbEditor.py:756
+msgid "Failed. Nothing selected."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:764
+#: flatcamEditors/FlatCAMGrbEditor.py:772
msgid ""
-"[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the "
-"same aperture."
+"Failed. Poligonize works only on geometries belonging to the same aperture."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:817
-msgid "[success] Done. Poligonize completed."
+#: flatcamEditors/FlatCAMGrbEditor.py:826
+msgid "Done. Poligonize completed."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:870
-#: flatcamEditors/FlatCAMGrbEditor.py:1092
-#: flatcamEditors/FlatCAMGrbEditor.py:1116
+#: flatcamEditors/FlatCAMGrbEditor.py:879
+#: flatcamEditors/FlatCAMGrbEditor.py:1102
+#: flatcamEditors/FlatCAMGrbEditor.py:1126
msgid "Corner Mode 1: 45 degrees ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:872
+#: flatcamEditors/FlatCAMGrbEditor.py:881
msgid "Click on 1st point ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:882
-#: flatcamEditors/FlatCAMGrbEditor.py:1191
+#: flatcamEditors/FlatCAMGrbEditor.py:891
+#: flatcamEditors/FlatCAMGrbEditor.py:1202
msgid "Click on next Point or click Right mouse button to complete ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:1080
-#: flatcamEditors/FlatCAMGrbEditor.py:1113
+#: flatcamEditors/FlatCAMGrbEditor.py:1090
+#: flatcamEditors/FlatCAMGrbEditor.py:1123
msgid "Corner Mode 2: Reverse 45 degrees ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:1083
-#: flatcamEditors/FlatCAMGrbEditor.py:1110
+#: flatcamEditors/FlatCAMGrbEditor.py:1093
+#: flatcamEditors/FlatCAMGrbEditor.py:1120
msgid "Corner Mode 3: 90 degrees ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:1086
-#: flatcamEditors/FlatCAMGrbEditor.py:1107
+#: flatcamEditors/FlatCAMGrbEditor.py:1096
+#: flatcamEditors/FlatCAMGrbEditor.py:1117
msgid "Corner Mode 4: Reverse 90 degrees ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:1089
-#: flatcamEditors/FlatCAMGrbEditor.py:1104
+#: flatcamEditors/FlatCAMGrbEditor.py:1099
+#: flatcamEditors/FlatCAMGrbEditor.py:1114
msgid "Corner Mode 5: Free angle ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:1143
-#: flatcamEditors/FlatCAMGrbEditor.py:1308
-#: flatcamEditors/FlatCAMGrbEditor.py:1347
+#: flatcamEditors/FlatCAMGrbEditor.py:1153
+#: flatcamEditors/FlatCAMGrbEditor.py:1319
+#: flatcamEditors/FlatCAMGrbEditor.py:1358
msgid "Track Mode 1: 45 degrees ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:1288
-#: flatcamEditors/FlatCAMGrbEditor.py:1342
+#: flatcamEditors/FlatCAMGrbEditor.py:1299
+#: flatcamEditors/FlatCAMGrbEditor.py:1353
msgid "Track Mode 2: Reverse 45 degrees ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:1293
-#: flatcamEditors/FlatCAMGrbEditor.py:1337
+#: flatcamEditors/FlatCAMGrbEditor.py:1304
+#: flatcamEditors/FlatCAMGrbEditor.py:1348
msgid "Track Mode 3: 90 degrees ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:1298
-#: flatcamEditors/FlatCAMGrbEditor.py:1332
+#: flatcamEditors/FlatCAMGrbEditor.py:1309
+#: flatcamEditors/FlatCAMGrbEditor.py:1343
msgid "Track Mode 4: Reverse 90 degrees ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:1303
-#: flatcamEditors/FlatCAMGrbEditor.py:1327
+#: flatcamEditors/FlatCAMGrbEditor.py:1314
+#: flatcamEditors/FlatCAMGrbEditor.py:1338
msgid "Track Mode 5: Free angle ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:1707
+#: flatcamEditors/FlatCAMGrbEditor.py:1720
msgid "Scale the selected Gerber apertures ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:1749
+#: flatcamEditors/FlatCAMGrbEditor.py:1762
msgid "Buffer the selected apertures ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:1791
+#: flatcamEditors/FlatCAMGrbEditor.py:1804
msgid "Mark polygon areas in the edited Gerber ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:1838
-msgid "[WARNING_NOTCL] Nothing selected to move ..."
+#: flatcamEditors/FlatCAMGrbEditor.py:1852
+msgid "Nothing selected to move"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:1961
-msgid "[success] Done. Apertures Move completed."
+#: flatcamEditors/FlatCAMGrbEditor.py:1976
+msgid "Done. Apertures Move completed."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2037
-msgid "[success] Done. Apertures copied."
+#: flatcamEditors/FlatCAMGrbEditor.py:2053
+msgid "Done. Apertures copied."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2337 flatcamGUI/FlatCAMGUI.py:1686
+#: flatcamEditors/FlatCAMGrbEditor.py:2354 flatcamGUI/FlatCAMGUI.py:1686
#: flatcamGUI/FlatCAMGUI.py:4629
msgid "Gerber Editor"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2357 flatcamGUI/ObjectUI.py:192
+#: flatcamEditors/FlatCAMGrbEditor.py:2374 flatcamGUI/ObjectUI.py:192
#: flatcamTools/ToolProperties.py:137
msgid "Apertures"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2359 flatcamGUI/ObjectUI.py:194
+#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/ObjectUI.py:194
msgid "Apertures Table for the Gerber Object."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2370
-#: flatcamEditors/FlatCAMGrbEditor.py:3797 flatcamGUI/ObjectUI.py:227
+#: flatcamEditors/FlatCAMGrbEditor.py:2387
+#: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
msgid "Code"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2370
-#: flatcamEditors/FlatCAMGrbEditor.py:3797 flatcamGUI/ObjectUI.py:227
+#: flatcamEditors/FlatCAMGrbEditor.py:2387
+#: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
#: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
msgid "Type"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2370
-#: flatcamEditors/FlatCAMGrbEditor.py:3797 flatcamGUI/ObjectUI.py:227
+#: flatcamEditors/FlatCAMGrbEditor.py:2387
+#: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
msgid "Size"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2370
-#: flatcamEditors/FlatCAMGrbEditor.py:3797 flatcamGUI/ObjectUI.py:227
+#: flatcamEditors/FlatCAMGrbEditor.py:2387
+#: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
msgid "Dim"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2374 flatcamGUI/ObjectUI.py:231
+#: flatcamEditors/FlatCAMGrbEditor.py:2391 flatcamGUI/ObjectUI.py:231
msgid "Index"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2376
-#: flatcamEditors/FlatCAMGrbEditor.py:2403 flatcamGUI/ObjectUI.py:233
+#: flatcamEditors/FlatCAMGrbEditor.py:2393
+#: flatcamEditors/FlatCAMGrbEditor.py:2420 flatcamGUI/ObjectUI.py:233
msgid "Aperture Code"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2378 flatcamGUI/ObjectUI.py:235
+#: flatcamEditors/FlatCAMGrbEditor.py:2395 flatcamGUI/ObjectUI.py:235
msgid "Type of aperture: circular, rectangle, macros etc"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2380 flatcamGUI/ObjectUI.py:237
+#: flatcamEditors/FlatCAMGrbEditor.py:2397 flatcamGUI/ObjectUI.py:237
msgid "Aperture Size:"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2382 flatcamGUI/ObjectUI.py:239
+#: flatcamEditors/FlatCAMGrbEditor.py:2399 flatcamGUI/ObjectUI.py:239
msgid ""
"Aperture Dimensions:\n"
" - (width, height) for R, O type.\n"
" - (dia, nVertices) for P type"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2405 flatcamGUI/FlatCAMGUI.py:4658
+#: flatcamEditors/FlatCAMGrbEditor.py:2422 flatcamGUI/FlatCAMGUI.py:4658
msgid "Code for the new aperture"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2413
+#: flatcamEditors/FlatCAMGrbEditor.py:2430
msgid "Aperture Size"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2415
+#: flatcamEditors/FlatCAMGrbEditor.py:2432
msgid ""
"Size for the new aperture.\n"
"If aperture type is 'R' or 'O' then\n"
@@ -3544,11 +3490,11 @@ msgid ""
"sqrt(width**2 + height**2)"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2427
+#: flatcamEditors/FlatCAMGrbEditor.py:2444
msgid "Aperture Type"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2429
+#: flatcamEditors/FlatCAMGrbEditor.py:2446
msgid ""
"Select the type of new aperture. Can be:\n"
"C = circular\n"
@@ -3556,50 +3502,50 @@ msgid ""
"O = oblong"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2440
+#: flatcamEditors/FlatCAMGrbEditor.py:2457
msgid "Aperture Dim"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2442
+#: flatcamEditors/FlatCAMGrbEditor.py:2459
msgid ""
"Dimensions for the new aperture.\n"
"Active only for rectangular apertures (type R).\n"
"The format is (width, height)"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2451
+#: flatcamEditors/FlatCAMGrbEditor.py:2468
msgid "Add/Delete Aperture"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2453
+#: flatcamEditors/FlatCAMGrbEditor.py:2470
msgid "Add/Delete an aperture in the aperture table"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2462
+#: flatcamEditors/FlatCAMGrbEditor.py:2479
msgid "Add a new aperture to the aperture list."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2467
+#: flatcamEditors/FlatCAMGrbEditor.py:2484
msgid "Delete a aperture in the aperture list"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2484
+#: flatcamEditors/FlatCAMGrbEditor.py:2501
msgid "Buffer Aperture"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2486
+#: flatcamEditors/FlatCAMGrbEditor.py:2503
msgid "Buffer a aperture in the aperture list"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2496 flatcamGUI/FlatCAMGUI.py:4781
+#: flatcamEditors/FlatCAMGrbEditor.py:2513 flatcamGUI/FlatCAMGUI.py:4781
msgid "Buffer distance"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2497
+#: flatcamEditors/FlatCAMGrbEditor.py:2514
msgid "Buffer corner"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2499
+#: flatcamEditors/FlatCAMGrbEditor.py:2516
msgid ""
"There are 3 types of corners:\n"
" - 'Round': the corner is rounded.\n"
@@ -3608,201 +3554,204 @@ msgid ""
"meeting in the corner"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2514 flatcamGUI/FlatCAMGUI.py:738
+#: flatcamEditors/FlatCAMGrbEditor.py:2531 flatcamGUI/FlatCAMGUI.py:738
#: flatcamGUI/FlatCAMGUI.py:1672 flatcamGUI/FlatCAMGUI.py:1699
#: flatcamGUI/FlatCAMGUI.py:2085
msgid "Buffer"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2529
+#: flatcamEditors/FlatCAMGrbEditor.py:2546
msgid "Scale Aperture"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2531
+#: flatcamEditors/FlatCAMGrbEditor.py:2548
msgid "Scale a aperture in the aperture list"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2539 flatcamGUI/FlatCAMGUI.py:4794
+#: flatcamEditors/FlatCAMGrbEditor.py:2556 flatcamGUI/FlatCAMGUI.py:4794
msgid "Scale factor"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2541
+#: flatcamEditors/FlatCAMGrbEditor.py:2558
msgid ""
"The factor by which to scale the selected aperture.\n"
"Values can be between 0.0000 and 999.9999"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2567
+#: flatcamEditors/FlatCAMGrbEditor.py:2584
msgid "Mark polygon areas"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2569
+#: flatcamEditors/FlatCAMGrbEditor.py:2586
msgid "Mark the polygon areas."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2577
+#: flatcamEditors/FlatCAMGrbEditor.py:2594
msgid "Area UPPER threshold"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2579
+#: flatcamEditors/FlatCAMGrbEditor.py:2596
msgid ""
"The threshold value, all areas less than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2585
+#: flatcamEditors/FlatCAMGrbEditor.py:2602
msgid "Area LOWER threshold"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2587
+#: flatcamEditors/FlatCAMGrbEditor.py:2604
msgid ""
"The threshold value, all areas more than this are marked.\n"
"Can have a value between 0.0000 and 9999.9999"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2600
+#: flatcamEditors/FlatCAMGrbEditor.py:2617
msgid "Go"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2619 flatcamGUI/FlatCAMGUI.py:728
+#: flatcamEditors/FlatCAMGrbEditor.py:2636 flatcamGUI/FlatCAMGUI.py:728
#: flatcamGUI/FlatCAMGUI.py:2075
msgid "Add Pad Array"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2621
+#: flatcamEditors/FlatCAMGrbEditor.py:2638
msgid "Add an array of pads (linear or circular array)"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2627
+#: flatcamEditors/FlatCAMGrbEditor.py:2644
msgid ""
"Select the type of pads array to create.\n"
"It can be Linear X(Y) or Circular"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2638 flatcamGUI/FlatCAMGUI.py:4693
+#: flatcamEditors/FlatCAMGrbEditor.py:2655 flatcamGUI/FlatCAMGUI.py:4693
msgid "Nr of pads"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:2640 flatcamGUI/FlatCAMGUI.py:4695
+#: flatcamEditors/FlatCAMGrbEditor.py:2657 flatcamGUI/FlatCAMGUI.py:4695
msgid "Specify how many pads to be in the array."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:3135
-#: flatcamEditors/FlatCAMGrbEditor.py:3139
+#: flatcamEditors/FlatCAMGrbEditor.py:3153
+#: flatcamEditors/FlatCAMGrbEditor.py:3157
+msgid "Aperture code value is missing or wrong format. Add it and retry."
+msgstr ""
+
+#: flatcamEditors/FlatCAMGrbEditor.py:3193
msgid ""
-"[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and "
-"retry."
+"Aperture dimensions value is missing or wrong format. Add it in format "
+"(width, height) and retry."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:3175
-msgid ""
-"[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it "
-"in format (width, height) and retry."
+#: flatcamEditors/FlatCAMGrbEditor.py:3206
+msgid "Aperture size value is missing or wrong format. Add it and retry."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:3187
-msgid ""
-"[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGrbEditor.py:3217
+msgid "Aperture already in the aperture table."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:3198
-msgid "[WARNING_NOTCL] Aperture already in the aperture table."
+#: flatcamEditors/FlatCAMGrbEditor.py:3225
+msgid "Added new aperture with code"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:3205
-#, python-brace-format
-msgid "[success] Added new aperture with code: {apid}"
+#: flatcamEditors/FlatCAMGrbEditor.py:3254
+msgid " Select an aperture in Aperture Table"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:3233
-msgid "[WARNING_NOTCL] Select an aperture in Aperture Table"
+#: flatcamEditors/FlatCAMGrbEditor.py:3261
+msgid "Select an aperture in Aperture Table -->"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:3239
-#, python-format
-msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
+#: flatcamEditors/FlatCAMGrbEditor.py:3285
+msgid "Deleted aperture with code"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:3262
-#, python-brace-format
-msgid "[success] Deleted aperture with code: {del_dia}"
-msgstr ""
-
-#: flatcamEditors/FlatCAMGrbEditor.py:3726
+#: flatcamEditors/FlatCAMGrbEditor.py:3748
#, python-format
msgid "Adding aperture: %s geo ..."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:3914
+#: flatcamEditors/FlatCAMGrbEditor.py:3936
msgid ""
-"[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber "
-"creation."
+"There are no Aperture definitions in the file. Aborting Gerber creation."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:3917
-msgid "[ERROR] An internal error has occurred. See shell.\n"
-msgstr ""
-
-#: flatcamEditors/FlatCAMGrbEditor.py:3922
+#: flatcamEditors/FlatCAMGrbEditor.py:3944
msgid "Creating Gerber."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:3930
-msgid "[success] Gerber editing finished."
+#: flatcamEditors/FlatCAMGrbEditor.py:3953
+msgid "Done. Gerber editing finished."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:3946
-msgid "[WARNING_NOTCL] Cancelled. No aperture is selected"
+#: flatcamEditors/FlatCAMGrbEditor.py:3970
+msgid "Cancelled. No aperture is selected"
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:4097
-msgid "[success] Coordinates copied to clipboard."
+#: flatcamEditors/FlatCAMGrbEditor.py:4505
+msgid "Failed. No aperture geometry is selected."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:4477
-msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected."
+#: flatcamEditors/FlatCAMGrbEditor.py:4514
+msgid "Done. Apertures geometry deleted."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:4485
-msgid "[success] Done. Apertures geometry deleted."
+#: flatcamEditors/FlatCAMGrbEditor.py:4657
+msgid "No aperture to buffer. Select at least one aperture and try again."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:4628
-msgid ""
-"[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try "
-"again."
+#: flatcamEditors/FlatCAMGrbEditor.py:4670
+msgid "Failed."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:4641
-#, python-format
-msgid ""
-"[ERROR_NOTCL] Failed.\n"
-"%s"
+#: flatcamEditors/FlatCAMGrbEditor.py:4689
+msgid "Scale factor value is missing or wrong format. Add it and retry."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:4658
-msgid ""
-"[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
-"retry."
+#: flatcamEditors/FlatCAMGrbEditor.py:4721
+msgid "No aperture to scale. Select at least one aperture and try again."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:4691
-msgid ""
-"[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
-"again."
+#: flatcamEditors/FlatCAMGrbEditor.py:4737
+msgid "Done. Scale Tool completed."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:4707
-msgid "[success] Done. Scale Tool completed."
+#: flatcamEditors/FlatCAMGrbEditor.py:4775
+msgid "Polygon areas marked."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:4744
-msgid "[success] Polygon areas marked."
+#: flatcamEditors/FlatCAMGrbEditor.py:4778
+msgid "There are no polygons to mark area."
msgstr ""
-#: flatcamEditors/FlatCAMGrbEditor.py:4746
-msgid "[WARNING_NOTCL] There are no polygons to mark area."
+#: flatcamEditors/FlatCAMGrbEditor.py:5549
+msgid "Rotation action was not executed."
+msgstr ""
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5688
+msgid "Skew action was not executed."
+msgstr ""
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5758
+msgid "Scale action was not executed."
+msgstr ""
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5807
+msgid "Offset action was not executed."
+msgstr ""
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5863
+msgid "Geometry shape offset Y cancelled"
+msgstr ""
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5880
+msgid "Geometry shape skew X cancelled"
+msgstr ""
+
+#: flatcamEditors/FlatCAMGrbEditor.py:5897
+msgid "Geometry shape skew Y cancelled"
msgstr ""
#: flatcamGUI/FlatCAMGUI.py:52
@@ -5603,6 +5552,10 @@ msgstr ""
msgid "Warning"
msgstr ""
+#: flatcamGUI/FlatCAMGUI.py:2560 flatcamGUI/FlatCAMGUI.py:2572
+msgid "[success] Done."
+msgstr ""
+
#: flatcamGUI/FlatCAMGUI.py:2580 flatcamGUI/FlatCAMGUI.py:2788
#: flatcamGUI/FlatCAMGUI.py:2999
msgid "[WARNING_NOTCL] Cancelled."
@@ -5646,6 +5599,11 @@ msgstr ""
msgid "Enter a Tool Diameter"
msgstr ""
+#: flatcamGUI/FlatCAMGUI.py:3164
+#, python-brace-format
+msgid "[success] Added new tool with dia: {dia} {units}"
+msgstr ""
+
#: flatcamGUI/FlatCAMGUI.py:3211
msgid "Measurement Tool exit..."
msgstr ""
@@ -7725,7 +7683,7 @@ msgid "Normal"
msgstr ""
#: flatcamGUI/FlatCAMGUI.py:6668 flatcamGUI/FlatCAMGUI.py:6974
-msgid "progressive"
+msgid "Progressive"
msgstr ""
#: flatcamGUI/FlatCAMGUI.py:6669
@@ -9042,6 +9000,10 @@ msgid ""
"file."
msgstr ""
+#: flatcamParsers/ParseFont.py:305
+msgid "Font not supported, try another one."
+msgstr ""
+
#: flatcamTools/ToolCalculators.py:24
msgid "Calculators"
msgstr ""
@@ -9260,7 +9222,7 @@ msgstr ""
#: flatcamTools/ToolCutOut.py:371 flatcamTools/ToolCutOut.py:571
#: flatcamTools/ToolNonCopperClear.py:1124
-#: flatcamTools/ToolNonCopperClear.py:1265 flatcamTools/ToolPaint.py:1148
+#: flatcamTools/ToolNonCopperClear.py:1265 flatcamTools/ToolPaint.py:1149
#: flatcamTools/ToolPanelize.py:359 flatcamTools/ToolPanelize.py:376
#: flatcamTools/ToolSub.py:254 flatcamTools/ToolSub.py:269
#: flatcamTools/ToolSub.py:456 flatcamTools/ToolSub.py:471
@@ -9275,12 +9237,6 @@ msgid ""
"Select one and try again."
msgstr ""
-#: flatcamTools/ToolCutOut.py:387 flatcamTools/ToolCutOut.py:585
-#: flatcamTools/ToolCutOut.py:755 flatcamTools/ToolCutOut.py:849
-#: flatcamTools/ToolDblSided.py:367
-msgid "Tool diameter value is missing or wrong format. Add it and retry."
-msgstr ""
-
#: flatcamTools/ToolCutOut.py:392 flatcamTools/ToolCutOut.py:590
#: flatcamTools/ToolCutOut.py:760 flatcamTools/ToolCutOut.py:854
msgid "Tool Diameter is zero value. Change it to a positive real number."
@@ -9974,37 +9930,37 @@ msgstr ""
msgid "Generate Geometry"
msgstr ""
-#: flatcamTools/ToolNonCopperClear.py:906 flatcamTools/ToolPaint.py:703
+#: flatcamTools/ToolNonCopperClear.py:906 flatcamTools/ToolPaint.py:705
#: flatcamTools/ToolSolderPaste.py:769
msgid "Please enter a tool diameter to add, in Float format."
msgstr ""
-#: flatcamTools/ToolNonCopperClear.py:940 flatcamTools/ToolPaint.py:728
+#: flatcamTools/ToolNonCopperClear.py:940 flatcamTools/ToolPaint.py:730
msgid "Adding tool cancelled. Tool already in Tool Table."
msgstr ""
-#: flatcamTools/ToolNonCopperClear.py:945 flatcamTools/ToolPaint.py:734
+#: flatcamTools/ToolNonCopperClear.py:945 flatcamTools/ToolPaint.py:736
msgid "New tool added to Tool Table."
msgstr ""
-#: flatcamTools/ToolNonCopperClear.py:989 flatcamTools/ToolPaint.py:780
+#: flatcamTools/ToolNonCopperClear.py:989 flatcamTools/ToolPaint.py:782
msgid "Tool from Tool Table was edited."
msgstr ""
-#: flatcamTools/ToolNonCopperClear.py:1000 flatcamTools/ToolPaint.py:792
+#: flatcamTools/ToolNonCopperClear.py:1000 flatcamTools/ToolPaint.py:794
#: flatcamTools/ToolSolderPaste.py:860
msgid "Edit cancelled. New diameter value is already in the Tool Table."
msgstr ""
-#: flatcamTools/ToolNonCopperClear.py:1040 flatcamTools/ToolPaint.py:891
+#: flatcamTools/ToolNonCopperClear.py:1040 flatcamTools/ToolPaint.py:892
msgid "Delete failed. Select a tool to delete."
msgstr ""
-#: flatcamTools/ToolNonCopperClear.py:1045 flatcamTools/ToolPaint.py:897
+#: flatcamTools/ToolNonCopperClear.py:1045 flatcamTools/ToolPaint.py:898
msgid "Tool(s) deleted from Tool Table."
msgstr ""
-#: flatcamTools/ToolNonCopperClear.py:1053 flatcamTools/ToolPaint.py:905
+#: flatcamTools/ToolNonCopperClear.py:1053 flatcamTools/ToolPaint.py:906
msgid "on_paint_button_click"
msgstr ""
@@ -10012,7 +9968,7 @@ msgstr ""
msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive), "
msgstr ""
-#: flatcamTools/ToolNonCopperClear.py:1083 flatcamTools/ToolPaint.py:944
+#: flatcamTools/ToolNonCopperClear.py:1083 flatcamTools/ToolPaint.py:945
#, python-format
msgid "Could not retrieve object: %s"
msgstr ""
@@ -10021,7 +9977,7 @@ msgstr ""
msgid "Wrong Tool Dia value format entered, use a number."
msgstr ""
-#: flatcamTools/ToolNonCopperClear.py:1112 flatcamTools/ToolPaint.py:980
+#: flatcamTools/ToolNonCopperClear.py:1112 flatcamTools/ToolPaint.py:981
msgid "No selected tools in Tool Table."
msgstr ""
@@ -10029,11 +9985,11 @@ msgstr ""
msgid "Click the start point of the area."
msgstr ""
-#: flatcamTools/ToolNonCopperClear.py:1148 flatcamTools/ToolPaint.py:1036
+#: flatcamTools/ToolNonCopperClear.py:1148 flatcamTools/ToolPaint.py:1037
msgid "Click the end point of the paint area."
msgstr ""
-#: flatcamTools/ToolNonCopperClear.py:1154 flatcamTools/ToolPaint.py:1042
+#: flatcamTools/ToolNonCopperClear.py:1154 flatcamTools/ToolPaint.py:1043
msgid "Zone added. Click to start adding next zone or right click to finish."
msgstr ""
@@ -10099,9 +10055,9 @@ msgstr ""
msgid "started."
msgstr ""
-#: flatcamTools/ToolNonCopperClear.py:1810 flatcamTools/ToolPaint.py:1409
-#: flatcamTools/ToolPaint.py:1739 flatcamTools/ToolPaint.py:1887
-#: flatcamTools/ToolPaint.py:2202 flatcamTools/ToolPaint.py:2355
+#: flatcamTools/ToolNonCopperClear.py:1810 flatcamTools/ToolPaint.py:1412
+#: flatcamTools/ToolPaint.py:1742 flatcamTools/ToolPaint.py:1890
+#: flatcamTools/ToolPaint.py:2203 flatcamTools/ToolPaint.py:2355
msgid ""
"There is no Painting Geometry in the file.\n"
"Usually it means that the tool diameter is too big for the painted "
@@ -10132,7 +10088,7 @@ msgid ""
"broken for"
msgstr ""
-#: flatcamTools/ToolNonCopperClear.py:2593
+#: flatcamTools/ToolNonCopperClear.py:2596
msgid ""
"Try to use the Buffering Type = Full in Preferences -> Gerber General. "
"Reload the Gerber file after this change."
@@ -10267,122 +10223,122 @@ msgid ""
"specified by another object."
msgstr ""
-#: flatcamTools/ToolPaint.py:911
+#: flatcamTools/ToolPaint.py:912
msgid "Paint Tool. Reading parameters."
msgstr ""
-#: flatcamTools/ToolPaint.py:926
+#: flatcamTools/ToolPaint.py:927
msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive)"
msgstr ""
-#: flatcamTools/ToolPaint.py:930 flatcamTools/ToolPaint.py:993
+#: flatcamTools/ToolPaint.py:931 flatcamTools/ToolPaint.py:994
msgid "Click inside the desired polygon."
msgstr ""
-#: flatcamTools/ToolPaint.py:950 flatcamTools/ToolPanelize.py:366
+#: flatcamTools/ToolPaint.py:951 flatcamTools/ToolPanelize.py:366
#: tclCommands/TclCommandBbox.py:66 tclCommands/TclCommandNregions.py:65
msgid "Object not found"
msgstr ""
-#: flatcamTools/ToolPaint.py:958
+#: flatcamTools/ToolPaint.py:959
msgid "Can't do Paint on MultiGeo geometries"
msgstr ""
-#: flatcamTools/ToolPaint.py:1002 flatcamTools/ToolPaint.py:1238
+#: flatcamTools/ToolPaint.py:1003 flatcamTools/ToolPaint.py:1239
msgid "Painting polygon..."
msgstr ""
-#: flatcamTools/ToolPaint.py:1024
+#: flatcamTools/ToolPaint.py:1025
msgid "Click the start point of the paint area."
msgstr ""
-#: flatcamTools/ToolPaint.py:1196 flatcamTools/ToolPaint.py:1199
-#: flatcamTools/ToolPaint.py:1201
+#: flatcamTools/ToolPaint.py:1197 flatcamTools/ToolPaint.py:1200
+#: flatcamTools/ToolPaint.py:1202
msgid "Paint Tool. Normal painting polygon task started."
msgstr ""
-#: flatcamTools/ToolPaint.py:1197 flatcamTools/ToolPaint.py:1585
-#: flatcamTools/ToolPaint.py:1760 flatcamTools/ToolPaint.py:2042
-#: flatcamTools/ToolPaint.py:2223
+#: flatcamTools/ToolPaint.py:1198 flatcamTools/ToolPaint.py:1588
+#: flatcamTools/ToolPaint.py:1763 flatcamTools/ToolPaint.py:2045
+#: flatcamTools/ToolPaint.py:2224
msgid "Buffering geometry..."
msgstr ""
-#: flatcamTools/ToolPaint.py:1235
+#: flatcamTools/ToolPaint.py:1236
msgid "[WARNING] No polygon found."
msgstr ""
-#: flatcamTools/ToolPaint.py:1239
+#: flatcamTools/ToolPaint.py:1240
#, python-format
msgid "Paint Tool. Painting polygon at location: %s"
msgstr ""
-#: flatcamTools/ToolPaint.py:1322
+#: flatcamTools/ToolPaint.py:1323
msgid "Geometry could not be painted completely"
msgstr ""
-#: flatcamTools/ToolPaint.py:1367
+#: flatcamTools/ToolPaint.py:1368
msgid ""
"Could not do Paint. Try a different combination of parameters. Or a "
"different strategy of paint"
msgstr ""
-#: flatcamTools/ToolPaint.py:1414
+#: flatcamTools/ToolPaint.py:1417
msgid "Paint Single Done."
msgstr ""
-#: flatcamTools/ToolPaint.py:1439
+#: flatcamTools/ToolPaint.py:1442
msgid "PaintTool.paint_poly()"
msgstr ""
-#: flatcamTools/ToolPaint.py:1446 flatcamTools/ToolPaint.py:1915
+#: flatcamTools/ToolPaint.py:1449 flatcamTools/ToolPaint.py:1918
#: flatcamTools/ToolPaint.py:2383
msgid "Polygon Paint started ..."
msgstr ""
-#: flatcamTools/ToolPaint.py:1502 flatcamTools/ToolPaint.py:1972
+#: flatcamTools/ToolPaint.py:1505 flatcamTools/ToolPaint.py:1975
msgid "Painting polygons..."
msgstr ""
-#: flatcamTools/ToolPaint.py:1584 flatcamTools/ToolPaint.py:1587
-#: flatcamTools/ToolPaint.py:1589
+#: flatcamTools/ToolPaint.py:1587 flatcamTools/ToolPaint.py:1590
+#: flatcamTools/ToolPaint.py:1592
msgid "Paint Tool. Normal painting all task started."
msgstr ""
-#: flatcamTools/ToolPaint.py:1623 flatcamTools/ToolPaint.py:1793
-#: flatcamTools/ToolPaint.py:2087 flatcamTools/ToolPaint.py:2263
+#: flatcamTools/ToolPaint.py:1626 flatcamTools/ToolPaint.py:1796
+#: flatcamTools/ToolPaint.py:2090 flatcamTools/ToolPaint.py:2264
msgid "Painting with tool diameter = "
msgstr ""
-#: flatcamTools/ToolPaint.py:1626 flatcamTools/ToolPaint.py:1796
-#: flatcamTools/ToolPaint.py:2090 flatcamTools/ToolPaint.py:2266
+#: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:1799
+#: flatcamTools/ToolPaint.py:2093 flatcamTools/ToolPaint.py:2267
msgid "started"
msgstr ""
-#: flatcamTools/ToolPaint.py:1688 flatcamTools/ToolPaint.py:1842
+#: flatcamTools/ToolPaint.py:1691 flatcamTools/ToolPaint.py:1845
msgid ""
"Could not do Paint All. Try a different combination of parameters. Or a "
"different Method of paint"
msgstr ""
-#: flatcamTools/ToolPaint.py:1748
+#: flatcamTools/ToolPaint.py:1751
msgid "[success] Paint All Done."
msgstr ""
-#: flatcamTools/ToolPaint.py:1759 flatcamTools/ToolPaint.py:1762
-#: flatcamTools/ToolPaint.py:1764
+#: flatcamTools/ToolPaint.py:1762 flatcamTools/ToolPaint.py:1765
+#: flatcamTools/ToolPaint.py:1767
msgid "Paint Tool. Rest machining painting all task started."
msgstr ""
-#: flatcamTools/ToolPaint.py:1896 flatcamTools/ToolPaint.py:2364
+#: flatcamTools/ToolPaint.py:1899 flatcamTools/ToolPaint.py:2364
msgid "Paint All with Rest-Machining done."
msgstr ""
-#: flatcamTools/ToolPaint.py:2041 flatcamTools/ToolPaint.py:2044
-#: flatcamTools/ToolPaint.py:2046
+#: flatcamTools/ToolPaint.py:2044 flatcamTools/ToolPaint.py:2047
+#: flatcamTools/ToolPaint.py:2049
msgid "Paint Tool. Normal painting area task started."
msgstr ""
-#: flatcamTools/ToolPaint.py:2152 flatcamTools/ToolPaint.py:2311
+#: flatcamTools/ToolPaint.py:2153 flatcamTools/ToolPaint.py:2311
#, python-format
msgid ""
"Could not do Paint All. Try a different combination of parameters. Or a "
@@ -10390,12 +10346,12 @@ msgid ""
"%s"
msgstr ""
-#: flatcamTools/ToolPaint.py:2211
+#: flatcamTools/ToolPaint.py:2212
msgid "[success] Paint Area Done."
msgstr ""
-#: flatcamTools/ToolPaint.py:2222 flatcamTools/ToolPaint.py:2225
-#: flatcamTools/ToolPaint.py:2227
+#: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2226
+#: flatcamTools/ToolPaint.py:2228
msgid "Paint Tool. Rest machining painting area task started."
msgstr ""
@@ -10499,27 +10455,22 @@ msgstr ""
msgid "Generating panel ... Please wait."
msgstr ""
-#: flatcamTools/ToolPanelize.py:628
-#, python-format
-msgid "Found %s geometries. Creating a final panel geometry ..."
-msgstr ""
-
-#: flatcamTools/ToolPanelize.py:643
+#: flatcamTools/ToolPanelize.py:631
msgid "Panel done..."
msgstr ""
-#: flatcamTools/ToolPanelize.py:646
+#: flatcamTools/ToolPanelize.py:634
#, python-brace-format
msgid ""
"{text} Too big for the constrain area. Final panel has {col} columns and "
"{row} rows"
msgstr ""
-#: flatcamTools/ToolPanelize.py:650
+#: flatcamTools/ToolPanelize.py:638
msgid "Generating panel..."
msgstr ""
-#: flatcamTools/ToolPanelize.py:655
+#: flatcamTools/ToolPanelize.py:643
msgid "Panel created successfully."
msgstr ""
@@ -11159,14 +11110,6 @@ msgstr ""
msgid "CNCJob objects can't be mirrored/flipped."
msgstr ""
-#: flatcamTools/ToolTransform.py:742
-msgid "Flip on the Y axis done"
-msgstr ""
-
-#: flatcamTools/ToolTransform.py:752
-msgid "Flip on the X axis done"
-msgstr ""
-
#: flatcamTools/ToolTransform.py:769
msgid "No object selected. Please Select an object to shear/skew!"
msgstr ""
@@ -11175,6 +11118,11 @@ msgstr ""
msgid "CNCJob objects can't be skewed."
msgstr ""
+#: flatcamTools/ToolTransform.py:803
+#, python-format
+msgid "[success] Skew on the %s axis done ..."
+msgstr ""
+
#: flatcamTools/ToolTransform.py:820
msgid "No object selected. Please Select an object to scale!"
msgstr ""